diff --git a/desarrollo/.env b/desarrollo/.env index 7b629cea..5917e607 100644 --- a/desarrollo/.env +++ b/desarrollo/.env @@ -1,8 +1,8 @@ APP_NAME="La Pieza.DO" APP_ENV=local APP_KEY=base64:doBaoFE9npLSpSKbSJYDxRi9GTgV6eZyCX5eoop+hXI= -APP_DEBUG=true -APP_URL=http://localhost +APP_DEBUG=false +APP_URL="https://devs.lapieza.net" APP_TIMEZONE="America/Halifax" DEMO_MODE="Off" @@ -10,11 +10,11 @@ DEMO_MODE="Off" LOG_CHANNEL=stack DB_CONNECTION=mysql -DB_HOST=127.0.0.1 -DB_PORT=3306 -DB_DATABASE=lapiezado_lapiezado -DB_USERNAME=root -DB_PASSWORD= +DB_HOST="localhost" +DB_PORT="3306" +DB_DATABASE="lapiezado_lapiezado" +DB_USERNAME="lapiezado_lapiezado" +DB_PASSWORD="@LaPieza2023-24!#" BROADCAST_DRIVER=log CACHE_DRIVER="file" @@ -63,11 +63,11 @@ PAYSTACK_SECRET_KEY="" VOGUE_MERCHANT_ID="DEMO" -GOOGLE_CLIENT_ID="" -GOOGLE_CLIENT_SECRET="" +GOOGLE_CLIENT_ID="724795873332-h4dnpj7l5t98rtkdjdokcbs34eu4hc9t.apps.googleusercontent.com" +GOOGLE_CLIENT_SECRET="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" -FACEBOOK_CLIENT_ID="" -FACEBOOK_CLIENT_SECRET="" +FACEBOOK_CLIENT_ID="641344891425720" +FACEBOOK_CLIENT_SECRET="ec9df2420c4fc7a5f1a66193027f1ae1" TRACKING_ID="" @@ -153,6 +153,7 @@ BKASH_CHECKOUT_PASSWORD="@12345" MAILGUN_DOMAIN="" MAILGUN_SECRET="" +RECAPTCHA_SITE_KEY=6LeLn7MnAAAAAEG9wKdhz_h-xys05ZPohc4aPUki +RECAPTCHA_SECRET_KEY=6LeLn7MnAAAAAOg5erYJkp8dWxIIRHMbmk9fDdLS -RECAPTCHA_SITE_KEY=6Le0OJsnAAAAALJsc4xJaNot1HfSmHpYgJYDzTYT -RECAPTCHA_SECRET_KEY=6Le0OJsnAAAAAIVMI3KwkxeLsrhI8GF7BjRX9S +GOOGLE_MAPS_API_KEY=AIzaSyClSVgBcIeXFcWA0Rt-6z6OWoJHrJPl-tI \ No newline at end of file diff --git a/desarrollo/.gitattributes b/desarrollo/.gitattributes index 967315dd..e6c09cd7 100644 --- a/desarrollo/.gitattributes +++ b/desarrollo/.gitattributes @@ -3,3 +3,4 @@ *.scss linguist-vendored *.js linguist-vendored CHANGELOG.md export-ignore +*.blade.php filter=lfs diff=lfs merge=lfs -text diff --git a/desarrollo/.gitignore b/desarrollo/.gitignore index 61ead866..ec2d9658 100644 --- a/desarrollo/.gitignore +++ b/desarrollo/.gitignore @@ -1 +1,17 @@ +/public/storage +/storage/*.key /vendor +.env +/public/uploads +/source_code +updates.zip +uploads.zip +shop.sql +/sqlupdates +/diseno +/logs +/refs +/temp +/info +/hooks +/objects diff --git a/desarrollo/.vscode/settings.json b/desarrollo/.vscode/settings.json deleted file mode 100644 index 900106dd..00000000 --- a/desarrollo/.vscode/settings.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "githubPullRequests.ignoredPullRequestBranches": [ - "master" - ], - "git.ignoreLimitWarning": true -} \ No newline at end of file diff --git a/desarrollo/COMMIT_EDITMSG b/desarrollo/COMMIT_EDITMSG new file mode 100644 index 00000000..f503c13e --- /dev/null +++ b/desarrollo/COMMIT_EDITMSG @@ -0,0 +1 @@ +corrigiendo errores en admin diff --git a/desarrollo/FETCH_HEAD b/desarrollo/FETCH_HEAD new file mode 100644 index 00000000..81c5ef9b --- /dev/null +++ b/desarrollo/FETCH_HEAD @@ -0,0 +1,3 @@ +f8256bd57d1ed333573ef882ced037c984592ef0 branch 'alejandro' of https://github.com/lapieza-dev/main +fd3f3400a2919f3c89ad141f26b1771fe05519fd not-for-merge branch 'kquiroz' of https://github.com/lapieza-dev/main +5ef9b4848a57256d3ed507b6868aacb46b840a6b not-for-merge branch 'master' of https://github.com/lapieza-dev/main diff --git a/desarrollo/HEAD b/desarrollo/HEAD new file mode 100644 index 00000000..8e9b2548 --- /dev/null +++ b/desarrollo/HEAD @@ -0,0 +1 @@ +ref: refs/heads/alejandro diff --git a/desarrollo/ORIG_HEAD b/desarrollo/ORIG_HEAD new file mode 100644 index 00000000..4064b39e --- /dev/null +++ b/desarrollo/ORIG_HEAD @@ -0,0 +1 @@ +ea124233b1b915da86cde30e3cc8453e33d69fb6 diff --git a/desarrollo/app/Http/Controllers/AddressController.php b/desarrollo/app/Http/Controllers/AddressController.php index 91fe3837..6d99ecbc 100644 --- a/desarrollo/app/Http/Controllers/AddressController.php +++ b/desarrollo/app/Http/Controllers/AddressController.php @@ -126,7 +126,7 @@ class AddressController extends Controller $address->delete(); return back(); } - flash(translate('Default address can not be deleted'))->warning(); + flash(translate('Default address cannot be deleted'))->warning(); return back(); } diff --git a/desarrollo/app/Http/Controllers/AizUploadController.php b/desarrollo/app/Http/Controllers/AizUploadController.php index 5a5e97c8..c7c82595 100644 --- a/desarrollo/app/Http/Controllers/AizUploadController.php +++ b/desarrollo/app/Http/Controllers/AizUploadController.php @@ -145,6 +145,7 @@ class AizUploadController extends Controller // Get the MIME type of the file $file_mime = finfo_file($finfo, base_path('public/') . $path); + if ($type[$extension] == 'image' && get_setting('disable_image_optimization') != 1) { try { @@ -168,8 +169,9 @@ class AizUploadController extends Controller } } - if (env('FILESYSTEM_DRIVER') == 's3') { - Storage::disk('s3')->put( + if (env('FILESYSTEM_DRIVER') != 'local') { + + Storage::disk(env('FILESYSTEM_DRIVER'))->put( $path, file_get_contents(base_path('public/') . $path), [ @@ -177,6 +179,7 @@ class AizUploadController extends Controller 'ContentType' => $extension == 'svg' ? 'image/svg+xml' : $file_mime ] ); + // dd($storage); if ($arr[0] != 'updates') { unlink(base_path('public/') . $path); } @@ -230,8 +233,8 @@ class AizUploadController extends Controller return back(); } try { - if (env('FILESYSTEM_DRIVER') == 's3') { - Storage::disk('s3')->delete($upload->file_name); + if (env('FILESYSTEM_DRIVER') != 'local') { + Storage::disk(env('FILESYSTEM_DRIVER'))->delete($upload->file_name); if (file_exists(public_path() . '/' . $upload->file_name)) { unlink(public_path() . '/' . $upload->file_name); } @@ -281,8 +284,8 @@ class AizUploadController extends Controller $uploads = Upload::all(); foreach ($uploads as $upload) { try { - if (env('FILESYSTEM_DRIVER') == 's3') { - Storage::disk('s3')->delete($upload->file_name); + if (env('FILESYSTEM_DRIVER') != 'local') { + Storage::disk(env('FILESYSTEM_DRIVER'))->delete($upload->file_name); if (file_exists(public_path() . '/' . $upload->file_name)) { unlink(public_path() . '/' . $upload->file_name); } diff --git a/desarrollo/app/Http/Controllers/Api/V2/AuctionProductController.php b/desarrollo/app/Http/Controllers/Api/V2/AuctionProductController.php index 3013e587..b6d086e7 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/AuctionProductController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/AuctionProductController.php @@ -3,11 +3,14 @@ namespace App\Http\Controllers\Api\V2; use App\Http\Controllers\Controller; +use App\Http\Resources\V2\Auction\AuctionBidProducts; +use App\Http\Resources\V2\Auction\AuctionPurchaseHistory; use App\Http\Resources\V2\AuctionMiniCollection; use App\Http\Resources\V2\AuctionProductDetailCollection; -use App\Http\Resources\V2\ProductMiniCollection; +use App\Models\AuctionProductBid; use App\Models\Product; -use Request; +use Illuminate\Http\Request; +use Illuminate\Support\Facades\DB; class AuctionProductController extends Controller @@ -15,7 +18,6 @@ class AuctionProductController extends Controller public function index() { - $products = Product::latest()->where('published', 1)->where('auction_product', 1); if (get_setting('seller_auction_product') == 0) { $products = $products->where('added_by', 'admin'); @@ -32,4 +34,32 @@ class AuctionProductController extends Controller $detailedProduct = Product::where('id', $id)->get(); return new AuctionProductDetailCollection($detailedProduct); } + + public function bided_products_list() + { + $own_bids = AuctionProductBid::where('user_id', auth()->id())->orderBy('id', 'desc')->pluck('product_id'); + $bided_products = Product::whereIn('id', $own_bids)->paginate(10); + return AuctionBidProducts::collection($bided_products); + } + + public function user_purchase_history(Request $request) + { + + $orders = DB::table('orders') + ->orderBy('code', 'desc') + ->join('order_details', 'orders.id', '=', 'order_details.order_id') + ->join('products', 'order_details.product_id', '=', 'products.id') + ->where('orders.user_id', auth()->user()->id) + ->where('products.auction_product', '1'); + if ($request->payment_status != "" || $request->payment_status != null) { + $orders = $orders->where('orders.payment_status', $request->payment_status); + } + if ($request->delivery_status != "" || $request->delivery_status != null) { + $orders = $orders->where('orders.delivery_status', $request->delivery_status); + } + + $orders = $orders->select('order_details.order_id as id')->paginate(15); + + return AuctionPurchaseHistory::collection($orders); + } } diff --git a/desarrollo/app/Http/Controllers/Api/V2/AuthController.php b/desarrollo/app/Http/Controllers/Api/V2/AuthController.php index 8013a24c..f8c77aea 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/AuthController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/AuthController.php @@ -52,17 +52,23 @@ class AuthController extends Controller if ($validator->fails()) { return response()->json([ 'result' => false, - 'message' => $validator->errors() + 'message' => $validator->errors()->all() ]); } - $user = new User([ - 'name' => $request->name, - 'email' => $request->register_by == 'email' ? $request->email_or_phone : '', - 'phone' => $request->register_by == 'phone' ? $request->email_or_phone : '', - 'password' => bcrypt($request->password), - 'verification_code' => rand(100000, 999999) - ]); + $user = new User(); + $user->name = $request->name; + if ($request->register_by == 'email') { + + $user->email = $request->email_or_phone; + } + if ($request->register_by == 'phone') { + $user->phone = $request->email_or_phone; + } + $user->password = bcrypt($request->password); + $user->verification_code = rand(100000, 999999); + $user->save(); + $user->email_verified_at = null; if ($user->email != null) { @@ -172,9 +178,9 @@ class AuthController extends Controller if (!$user->banned) { if (Hash::check($request->password, $user->password)) { - if ($user->email_verified_at == null) { - return response()->json(['result' => false, 'message' => translate('Please verify your account'), 'user' => null], 401); - } + // if ($user->email_verified_at == null) { + // return response()->json(['result' => false, 'message' => translate('Please verify your account'), 'user' => null], 401); + // } return $this->loginSuccess($user); } else { return response()->json(['result' => false, 'message' => translate('Unauthorized'), 'user' => null], 401); diff --git a/desarrollo/app/Http/Controllers/Api/V2/CartController.php b/desarrollo/app/Http/Controllers/Api/V2/CartController.php index ec3c052d..c6c9458a 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/CartController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/CartController.php @@ -6,6 +6,8 @@ use App\Models\Cart; use App\Models\Product; use App\Models\Shop; use App\Models\User; +use App\Utility\CartUtility; +use App\Utility\NagadUtility; use Illuminate\Http\Request; use Illuminate\Support\Facades\DB; @@ -30,29 +32,29 @@ class CartController extends Controller $sum = 0.00; $subtotal = 0.00; - $tax = 0.00; + $tax = 0.00; foreach ($items as $cartItem) { $product = Product::find($cartItem['product_id']); $subtotal += cart_product_price($cartItem, $product, false, false) * $cartItem['quantity']; $tax += cart_product_tax($cartItem, $product, false) * $cartItem['quantity']; } - + $shipping_cost = $items->sum('shipping_cost'); - $sum = $subtotal + $tax + $shipping_cost; + $discount = $items->sum('discount'); + $sum = ($subtotal + $tax + $shipping_cost) - $discount; return response()->json([ - 'sub_total' => format_price($subtotal), - 'tax' => format_price($tax), - 'shipping_cost' => format_price($shipping_cost ), - 'discount' => format_price($items->sum('discount')), - 'grand_total' => format_price($sum), + 'sub_total' => single_price($subtotal), + 'tax' => single_price($tax), + 'shipping_cost' => single_price($shipping_cost), + 'discount' => single_price($discount), + 'grand_total' => single_price($sum), 'grand_total_value' => convert_price($sum), 'coupon_code' => $items[0]->coupon_code, 'coupon_applied' => $items[0]->coupon_applied == 1, ]); } - public function count() { $items = auth()->user()->carts; @@ -63,13 +65,13 @@ class CartController extends Controller ]); } - - public function getList() { $owner_ids = Cart::where('user_id', auth()->user()->id)->select('owner_id')->groupBy('owner_id')->pluck('owner_id')->toArray(); $currency_symbol = currency_symbol(); $shops = []; + $sub_total = 0.00; + $grand_total = 0.00; if (!empty($owner_ids)) { foreach ($owner_ids as $owner_id) { $shop = array(); @@ -78,124 +80,135 @@ class CartController extends Controller if (!empty($shop_items_raw_data)) { foreach ($shop_items_raw_data as $shop_items_raw_data_item) { $product = Product::where('id', $shop_items_raw_data_item["product_id"])->first(); - $shop_items_data_item["id"] = intval($shop_items_raw_data_item["id"]) ; - $shop_items_data_item["owner_id"] =intval($shop_items_raw_data_item["owner_id"]) ; - $shop_items_data_item["user_id"] =intval($shop_items_raw_data_item["user_id"]) ; - $shop_items_data_item["product_id"] =intval($shop_items_raw_data_item["product_id"]) ; + $price = cart_product_price($shop_items_raw_data_item, $product, false, false) * intval($shop_items_raw_data_item["quantity"]); + $tax = cart_product_tax($shop_items_raw_data_item, $product, false); + $shop_items_data_item["id"] = intval($shop_items_raw_data_item["id"]); + $shop_items_data_item["owner_id"] = intval($shop_items_raw_data_item["owner_id"]); + $shop_items_data_item["user_id"] = intval($shop_items_raw_data_item["user_id"]); + $shop_items_data_item["product_id"] = intval($shop_items_raw_data_item["product_id"]); $shop_items_data_item["product_name"] = $product->getTranslation('name'); + $shop_items_data_item["auction_product"] = $product->auction_product; $shop_items_data_item["product_thumbnail_image"] = uploaded_asset($product->thumbnail_img); $shop_items_data_item["variation"] = $shop_items_raw_data_item["variation"]; - $shop_items_data_item["price"] =(double) cart_product_price($shop_items_raw_data_item, $product, false, false); + $shop_items_data_item["price"] = (float) cart_product_price($shop_items_raw_data_item, $product, false, false); $shop_items_data_item["currency_symbol"] = $currency_symbol; - $shop_items_data_item["tax"] =(double) cart_product_tax($shop_items_raw_data_item, $product,false); - $shop_items_data_item["shipping_cost"] =(double) $shop_items_raw_data_item["shipping_cost"]; - $shop_items_data_item["quantity"] =intval($shop_items_raw_data_item["quantity"]) ; - $shop_items_data_item["lower_limit"] = intval($product->min_qty) ; - $shop_items_data_item["upper_limit"] = intval($product->stocks->where('variant', $shop_items_raw_data_item['variation'])->first()->qty) ; + $shop_items_data_item["tax"] = (float) cart_product_tax($shop_items_raw_data_item, $product, false); + $shop_items_data_item["price"] = single_price($price); + $shop_items_data_item["currency_symbol"] = $currency_symbol; + $shop_items_data_item["tax"] = single_price($tax); + // $shop_items_data_item["tax"] = (float) cart_product_tax($shop_items_raw_data_item, $product, false); + $shop_items_data_item["shipping_cost"] = (float) $shop_items_raw_data_item["shipping_cost"]; + $shop_items_data_item["quantity"] = intval($shop_items_raw_data_item["quantity"]); + $shop_items_data_item["lower_limit"] = intval($product->min_qty); + $shop_items_data_item["upper_limit"] = intval($product->stocks->where('variant', $shop_items_raw_data_item['variation'])->first()->qty); + $sub_total += $price + $tax; $shop_items_data[] = $shop_items_data_item; - } } - + $grand_total += $sub_total; $shop_data = Shop::where('user_id', $owner_id)->first(); if ($shop_data) { $shop['name'] = $shop_data->name; - $shop['owner_id'] =(int) $owner_id; + $shop['owner_id'] = (int) $owner_id; + $shop['sub_total'] = single_price($sub_total); $shop['cart_items'] = $shop_items_data; } else { $shop['name'] = "Inhouse"; - $shop['owner_id'] =(int) $owner_id; + $shop['owner_id'] = (int) $owner_id; + $shop['sub_total'] = single_price($sub_total); $shop['cart_items'] = $shop_items_data; } $shops[] = $shop; + $sub_total = 0.00; } } //dd($shops); - return response()->json($shops); + return response()->json([ + "grand_total" => single_price($grand_total), + "data" => + $shops + ]); } - public function add(Request $request) { + $carts = Cart::where('user_id', auth()->user()->id)->get(); + $check_auction_in_cart = CartUtility::check_auction_in_cart($carts); $product = Product::findOrFail($request->id); - $variant = $request->variant; - $tax = 0; - - if ($variant == '') - $price = $product->unit_price; - else { - $product_stock = $product->stocks->where('variant', $variant)->first(); - $price = $product_stock->price; + if ($check_auction_in_cart && $product->auction_product == 0) { + return response()->json([ + 'result' => false, + 'message' => translate('Remove auction product from cart to add this product.') + ], 200); } - - //discount calculation based on flash deal and regular discount - //calculation of taxes - $discount_applicable = false; - - if ($product->discount_start_date == null) { - $discount_applicable = true; - } - elseif (strtotime(date('d-m-Y H:i:s')) >= $product->discount_start_date && - strtotime(date('d-m-Y H:i:s')) <= $product->discount_end_date) { - $discount_applicable = true; - } - - if ($discount_applicable) { - if($product->discount_type == 'percent'){ - $price -= ($price*$product->discount)/100; - } - elseif($product->discount_type == 'amount'){ - $price -= $product->discount; - } - } - - foreach ($product->taxes as $product_tax) { - if ($product_tax->tax_type == 'percent') { - $tax += ($price * $product_tax->tax) / 100; - } elseif ($product_tax->tax_type == 'amount') { - $tax += $product_tax->tax; - } + if ($check_auction_in_cart == false && count($carts) > 0 && $product->auction_product == 1) { + return response()->json([ + 'result' => false, + 'message' => translate('Remove other products from cart to add this auction product.') + ], 200); } if ($product->min_qty > $request->quantity) { - return response()->json(['result' => false, 'message' => translate("Minimum")." {$product->min_qty} ".translate("item(s) should be ordered")], 200); + return response()->json([ + 'result' => false, + 'message' => translate("Minimum") . " {$product->min_qty} " . translate("item(s) should be ordered") + ], 200); } - $stock = $product->stocks->where('variant', $variant)->first()->qty; + $variant = $request->variant; + $tax = 0; + $quantity = $request->quantity; - $variant_string = $variant != null && $variant != "" ? translate("for")." ($variant)" : ""; - if ($stock < $request->quantity && $product->digital == 0) { - if ($stock == 0) { - return response()->json(['result' => false, 'message' => "Stock out"], 200); - } else { - return response()->json(['result' => false, 'message' => translate("Only") ." {$stock} ".translate("item(s) are available")." {$variant_string}"], 200); - } - } + $product_stock = $product->stocks->where('variant', $variant)->first(); - $cart_item = Cart::where('product_id', $request->id)->where("user_id",auth()->id())->first(); - if($cart_item && $cart_item->product->digital == 1) { - return response()->json(['result' => false, 'message' => 'Already added this product' ]); - } - - Cart::updateOrCreate([ + $cart = Cart::firstOrNew([ + 'variation' => $variant, 'user_id' => auth()->user()->id, - 'owner_id' => $product->user_id, - 'product_id' => $request->id, - 'variation' => $variant - ], [ - 'price' => $price, - 'tax' => $tax, - 'shipping_cost' => 0, - 'quantity' => DB::raw("quantity + $request->quantity") + 'product_id' => $request['id'] ]); - if(\App\Utility\NagadUtility::create_balance_reference($request->cost_matrix) == false){ - return response()->json(['result' => false, 'message' => 'Cost matrix error' ]); + $variant_string = $variant != null && $variant != "" ? translate("for") . " ($variant)" : ""; + + if ($cart->exists && $product->digital == 0) { + if ($product->auction_product == 1 && ($cart->product_id == $product->id)) { + return response()->json([ + 'result' => false, + 'message' => translate('This auction product is already added to your cart.') + ], 200); + } + if ($product_stock->qty < $cart->quantity + $request['quantity']) { + if ($product_stock->qty == 0) { + return response()->json([ + 'result' => false, + 'message' => translate("Stock out") + ], 200); + } else { + return response()->json([ + 'result' => false, + 'message' => translate("Only") . " {$product_stock->qty} " . translate("item(s) are available") . " {$variant_string}" + ], 200); + } + } + if ($product->digital == 1 && ($cart->product_id == $product->id)) { + return response()->json([ + 'result' => false, + 'message' => translate('Already added this product') + ]); + } + $quantity = $cart->quantity + $request['quantity']; + } + + $price = CartUtility::get_price($product, $product_stock, $request->quantity); + $tax = CartUtility::tax_calculation($product, $price); + CartUtility::save_cart_data($cart, $product, $price, $tax, $quantity); + + if (NagadUtility::create_balance_reference($request->cost_matrix) == false) { + return response()->json(['result' => false, 'message' => 'Cost matrix error']); } return response()->json([ @@ -208,7 +221,10 @@ class CartController extends Controller { $cart = Cart::find($request->id); if ($cart != null) { - + $product = Product::find($cart->product_id); + if ($product->auction_product == 1) { + return response()->json(['result' => false, 'message' => translate('Maximum available quantity reached')], 200); + } if ($cart->product->stocks->where('variant', $cart->variation)->first()->qty >= $request->quantity) { $cart->update([ 'quantity' => $request->quantity @@ -235,7 +251,7 @@ class CartController extends Controller $product = Product::where('id', $cart_item->product_id)->first(); if ($product->min_qty > $cart_quantities[$i]) { - return response()->json(['result' => false, 'message' => translate("Minimum")." {$product->min_qty} ".translate("item(s) should be ordered for")." {$product->name}"], 200); + return response()->json(['result' => false, 'message' => translate("Minimum") . " {$product->min_qty} " . translate("item(s) should be ordered for") . " {$product->name}"], 200); } $stock = $cart_item->product->stocks->where('variant', $cart_item->variation)->first()->qty; @@ -244,26 +260,21 @@ class CartController extends Controller $cart_item->update([ 'quantity' => $cart_quantities[$i] ]); - } else { - if ($stock == 0 ) { - return response()->json(['result' => false, 'message' => translate("No item is available for")." {$product->name}{$variant_string},".translate("remove this from cart")], 200); + if ($stock == 0) { + return response()->json(['result' => false, 'message' => translate("No item is available for") . " {$product->name}{$variant_string}," . translate("remove this from cart")], 200); } else { - return response()->json(['result' => false, 'message' => translate("Only")." {$stock} ".translate("item(s) are available for")." {$product->name}{$variant_string}"], 200); + return response()->json(['result' => false, 'message' => translate("Only") . " {$stock} " . translate("item(s) are available for") . " {$product->name}{$variant_string}"], 200); } - } $i++; } return response()->json(['result' => true, 'message' => translate('Cart updated')], 200); - } else { return response()->json(['result' => false, 'message' => translate('Cart is empty')], 200); } - - } public function destroy($id) diff --git a/desarrollo/app/Http/Controllers/Api/V2/CheckoutController.php b/desarrollo/app/Http/Controllers/Api/V2/CheckoutController.php index aae0bec1..5b163ddd 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/CheckoutController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/CheckoutController.php @@ -94,7 +94,7 @@ class CheckoutController } if($coupon_discount>0){ - Cart::where('user_id', auth()->user()->id)->update([ + Cart::where('user_id', auth()->user()->id)->where('owner_id', $coupon->user_id)->update([ 'discount' => $coupon_discount / count($cart_items), 'coupon_code' => $request->coupon_code, 'coupon_applied' => 1 diff --git a/desarrollo/app/Http/Controllers/Api/V2/CustomerPackageController.php b/desarrollo/app/Http/Controllers/Api/V2/CustomerPackageController.php index ae5afb68..107f10d7 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/CustomerPackageController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/CustomerPackageController.php @@ -32,7 +32,7 @@ public function purchase_package_free(Request $request) $user->save(); return $this->success(translate('Package purchasing successful')); } else { - return $this->failed(translate('You can not purchase this package anymore.')); + return $this->failed(translate('You cannot purchase this package anymore.')); } } diff --git a/desarrollo/app/Http/Controllers/Api/V2/DigitalProductController.php b/desarrollo/app/Http/Controllers/Api/V2/DigitalProductController.php index 78b2c70e..7dc66f03 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/DigitalProductController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/DigitalProductController.php @@ -16,20 +16,19 @@ class DigitalProductController extends Controller { $product = Product::findOrFail($request->id); $orders = Order::select("id")->where('user_id', auth()->user()->id)->pluck('id'); - $orderDetails = OrderDetail::where("product_id",$request->id)->whereIn("order_id",$orders)->get(); + $orderDetails = OrderDetail::where("product_id", $request->id)->whereIn("order_id", $orders)->get(); if (auth()->user()->user_type == 'admin' || auth()->user()->id == $product->user_id || $orderDetails) { $upload = Upload::findOrFail($product->file_name); if (env('FILESYSTEM_DRIVER') == "s3") { return \Storage::disk('s3')->download($upload->file_name, $upload->file_original_name . "." . $upload->extension); } else { if (file_exists(base_path('public/' . $upload->file_name))) { - $file = public_path()."/$upload->file_name"; - return response()->download($file,config('app.name')."_".$upload->file_original_name); + $file = public_path() . "/$upload->file_name"; + return response()->download($file, config('app.name') . "_" . $upload->file_original_name . "." . $upload->extension); } } } else { - return response()->download(File("dd.pdf"),"failed.jpg"); + return response()->download(File("dd.pdf"), "failed.jpg"); } } } - diff --git a/desarrollo/app/Http/Controllers/Api/V2/PaymentTypesController.php b/desarrollo/app/Http/Controllers/Api/V2/PaymentTypesController.php index 1ddc531c..226b6002 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/PaymentTypesController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/PaymentTypesController.php @@ -31,11 +31,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'paypal'; $payment_type['image'] = static_asset('assets/img/cards/paypal.png'); $payment_type['name'] = "Paypal"; - $payment_type['title'] = "Checkout with Paypal"; + $payment_type['title'] = translate("Checkout with Paypal"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Paypal"; + $payment_type['title'] = translate("Recharge with Paypal"); } $payment_types[] = $payment_type; @@ -47,11 +47,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'stripe'; $payment_type['image'] = static_asset('assets/img/cards/stripe.png'); $payment_type['name'] = "Stripe"; - $payment_type['title'] = "Checkout with Stripe"; + $payment_type['title'] = translate("Checkout with Stripe"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Stripe"; + $payment_type['title'] = translate("Recharge with Stripe"); } $payment_types[] = $payment_type; @@ -62,11 +62,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'instamojo_payment'; $payment_type['image'] = static_asset('assets/img/cards/instamojo.png'); $payment_type['name'] = "Instamojo"; - $payment_type['title'] = "Checkout with Instamojo"; + $payment_type['title'] = translate("Checkout with Instamojo"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Stripe"; + $payment_type['title'] = translate("Recharge with Instamojo"); } $payment_types[] = $payment_type; @@ -78,11 +78,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'razorpay'; $payment_type['image'] = static_asset('assets/img/cards/rozarpay.png'); $payment_type['name'] = "Razorpay"; - $payment_type['title'] = "Checkout with Razorpay"; + $payment_type['title'] = translate("Checkout with Razorpay"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Razorpay"; + $payment_type['title'] = translate("Recharge with Razorpay"); } $payment_types[] = $payment_type; @@ -94,11 +94,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'paystack'; $payment_type['image'] = static_asset('assets/img/cards/paystack.png'); $payment_type['name'] = "Paystack"; - $payment_type['title'] = "Checkout with Paystack"; + $payment_type['title'] = translate("Checkout with Paystack"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Paystack"; + $payment_type['title'] = translate("Recharge with Paystack"); } $payment_types[] = $payment_type; @@ -110,11 +110,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'iyzico'; $payment_type['image'] = static_asset('assets/img/cards/iyzico.png'); $payment_type['name'] = "Iyzico"; - $payment_type['title'] = "Checkout with Iyzico"; + $payment_type['title'] = translate("Checkout with Iyzico"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Iyzico"; + $payment_type['title'] = translate("Recharge with Iyzico"); } $payment_types[] = $payment_type; @@ -126,11 +126,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'bkash'; $payment_type['image'] = static_asset('assets/img/cards/bkash.png'); $payment_type['name'] = "Bkash"; - $payment_type['title'] = "Checkout with Bkash"; + $payment_type['title'] = translate("Checkout with Bkash"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Bkash"; + $payment_type['title'] = translate("Recharge with Bkash"); } $payment_types[] = $payment_type; @@ -142,11 +142,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'nagad'; $payment_type['image'] = static_asset('assets/img/cards/nagad.png'); $payment_type['name'] = "Nagad"; - $payment_type['title'] = "Checkout with Nagad"; + $payment_type['title'] = translate("Checkout with Nagad"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Nagad"; + $payment_type['title'] = translate("Recharge with Nagad"); } $payment_types[] = $payment_type; @@ -158,11 +158,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'sslcommerz'; $payment_type['image'] = static_asset('assets/img/cards/sslcommerz.png'); $payment_type['name'] = "Sslcommerz"; - $payment_type['title'] = "Checkout with Sslcommerz"; + $payment_type['title'] = translate("Checkout with Sslcommerz"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Sslcommerz"; + $payment_type['title'] = translate("Recharge with Sslcommerz"); } $payment_types[] = $payment_type; @@ -176,11 +176,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'flutterwave'; $payment_type['image'] = static_asset('assets/img/cards/flutterwave.png'); $payment_type['name'] = "Flutterwave"; - $payment_type['title'] = "Checkout with Flutterwave"; + $payment_type['title'] = translate("Checkout with Flutterwave"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Flutterwave"; + $payment_type['title'] = translate("Recharge with Flutterwave"); } $payment_types[] = $payment_type; @@ -194,11 +194,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'paytm'; $payment_type['image'] = static_asset('assets/img/cards/paytm.jpg'); $payment_type['name'] = "Paytm"; - $payment_type['title'] = "Checkout with Paytm"; + $payment_type['title'] = translate("Checkout with Paytm"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Paytm"; + $payment_type['title'] = translate("Recharge with Paytm"); } $payment_types[] = $payment_type; @@ -209,11 +209,11 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'khalti'; $payment_type['image'] = static_asset('assets/img/cards/khalti.png'); $payment_type['name'] = "Khalti"; - $payment_type['title'] = "Checkout with Khalti"; + $payment_type['title'] = translate("Checkout with Khalti"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; if ($mode == 'wallet') { - $payment_type['title'] = "Recharge with Khalti"; + $payment_type['title'] = translate("Recharge with Khalti"); } $payment_types[] = $payment_type; @@ -229,7 +229,7 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'wallet'; $payment_type['image'] = static_asset('assets/img/cards/wallet.png'); $payment_type['name'] = "Wallet"; - $payment_type['title'] = "Wallet Payment"; + $payment_type['title'] = translate("Wallet Payment"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; @@ -257,7 +257,7 @@ class PaymentTypesController $payment_type['payment_type_key'] = 'cash_on_delivery'; $payment_type['image'] = static_asset('assets/img/cards/cod.png'); $payment_type['name'] = "Cash Payment"; - $payment_type['title'] = "Cash on delivery"; + $payment_type['title'] = translate("Cash on delivery"); $payment_type['offline_payment_id'] = 0; $payment_type['details'] = ""; diff --git a/desarrollo/app/Http/Controllers/Api/V2/PurchaseHistoryController.php b/desarrollo/app/Http/Controllers/Api/V2/PurchaseHistoryController.php index abb8acf7..79e0cff6 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/PurchaseHistoryController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/PurchaseHistoryController.php @@ -6,11 +6,13 @@ use App\Http\Resources\V2\PurchasedResource; use App\Http\Resources\V2\PurchaseHistoryMiniCollection; use App\Http\Resources\V2\PurchaseHistoryCollection; use App\Http\Resources\V2\PurchaseHistoryItemsCollection; +use App\Models\Cart; use App\Models\Order; use App\Models\OrderDetail; use App\Models\Product; use Illuminate\Http\Request; use App\Models\User; +use App\Utility\CartUtility; use Illuminate\Support\Facades\DB; class PurchaseHistoryController extends Controller @@ -77,4 +79,87 @@ class PurchaseHistoryController extends Controller return PurchasedResource::collection($order_detail_products); } + + public function re_order($id) + { + $user_id = auth()->user()->id; + $success_msgs = []; + $failed_msgs = []; + + $carts = Cart::where('user_id', auth()->user()->id)->get(); + $check_auction_in_cart = CartUtility::check_auction_in_cart($carts); + if ($check_auction_in_cart) { + array_push($failed_msgs, translate('Remove auction product from cart to add products.')); + return response()->json([ + 'success_msgs' => $success_msgs, + 'failed_msgs' => $failed_msgs + ]); + } + + $order = Order::findOrFail($id); + + $data['user_id'] = $user_id; + foreach ($order->orderDetails as $key => $orderDetail) { + $product = $orderDetail->product; + + if ( + !$product || $product->published == 0 || + $product->approved == 0 || ($product->wholesale_product && !addon_is_activated("wholesale")) + ) { + array_push($failed_msgs, translate('An item from this order is not available now.')); + continue; + } + + if ($product->auction_product == 1) { + array_push($failed_msgs, translate('You can not re order an auction product.')); + break; + } + + + + // If product min qty is greater then the ordered qty, then update the order qty + $order_qty = $orderDetail->quantity; + if ($product->digital == 0 && $order_qty < $product->min_qty) { + $order_qty = $product->min_qty; + } + + $cart = Cart::firstOrNew([ + 'variation' => $orderDetail->variation, + 'user_id' => $user_id, + 'product_id' => $product->id + ]); + + $product_stock = $product->stocks->where('variant', $orderDetail->variation)->first(); + if ($product_stock) { + $quantity = 1; + + if ($product->digital != 1) { + $quantity = $product_stock->qty; + if ($quantity > 0) { + if ($cart->exists) { + $order_qty = $cart->quantity + $order_qty; + } + //If order qty is greater then the product stock, set order qty = current product stock qty + $quantity = ($quantity >= $order_qty) ? $order_qty : $quantity; + } else { + array_push($failed_msgs, $product->getTranslation('name') . ' ' . translate('is stock out.')); + continue; + } + } + + $price = CartUtility::get_price($product, $product_stock, $quantity); + $tax = CartUtility::tax_calculation($product, $price); + + CartUtility::save_cart_data($cart, $product, $price, $tax, $quantity); + array_push($success_msgs, $product->getTranslation('name') . ' ' . translate('added to cart.')); + } else { + array_push($failed_msgs, $product->getTranslation('name') . ' ' . translate(' is stock out.')); + } + } + + return response()->json([ + 'success_msgs' => $success_msgs, + 'failed_msgs' => $failed_msgs + ]); + } } diff --git a/desarrollo/app/Http/Controllers/Api/V2/Seller/ConversationController.php b/desarrollo/app/Http/Controllers/Api/V2/Seller/ConversationController.php index a0060231..33dc993e 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/Seller/ConversationController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/Seller/ConversationController.php @@ -55,7 +55,7 @@ class ConversationController extends Controller return $this->success(translate('Message send successfully')); }else{ - return $this->failed(translate('You can not send this message.')); + return $this->failed(translate('You cannot send this message.')); } } @@ -87,7 +87,7 @@ class ConversationController extends Controller return new MessageCollection($messages); } else { - return $this->failed(translate('You can not see this message.')); + return $this->failed(translate('You cannot see this message.')); } diff --git a/desarrollo/app/Http/Controllers/Api/V2/Seller/DigitalProductController.php b/desarrollo/app/Http/Controllers/Api/V2/Seller/DigitalProductController.php new file mode 100644 index 00000000..d99044ef --- /dev/null +++ b/desarrollo/app/Http/Controllers/Api/V2/Seller/DigitalProductController.php @@ -0,0 +1,157 @@ +where('user_id', Auth::user()->id)->orderBy('created_at', 'desc'); + return new DigitalProductCollection($products->paginate(10)); + } + + public function getCategory() + { + $categories = Category::where('parent_id', 0) + ->where('digital', 1) + ->with('childrenCategories') + ->get(); + return CategoriesCollection::collection($categories); + } + + public function store(Request $request) + { + if (addon_is_activated('seller_subscription')) { + if (!seller_package_validity_check(auth()->user()->id)) { + return $this->failed(translate('Please upgrade your package.')); + } + } + + if (auth()->user()->user_type != 'seller') { + return $this->failed(translate('Unauthenticated User.')); + } + + // Product Store + $product = (new ProductService)->store($request->except([ + '_token', 'tax_id', 'tax', 'tax_type' + ])); + + $request->merge(['product_id' => $product->id, 'current_stock' => 0]); + + //Product Stock + (new ProductStockService)->store($request->only([ + 'unit_price', 'current_stock', 'product_id' + ]), $product); + + //VAT & Tax + if ($request->tax_id) { + (new ProductTaxService)->store($request->only([ + 'tax_id', 'tax', 'tax_type', 'product_id' + ])); + } + + // Product Translations + $request->merge(['lang' => env('DEFAULT_LANGUAGE')]); + ProductTranslation::create($request->only([ + 'lang', 'name', 'unit', 'description', 'product_id' + ])); + + return $this->success(translate('Digital Product has been inserted successfully')); + } + + public function edit(Request $request, $id) + { + $product = Product::findOrFail($id); + $product->lang = $request->lang == null ? env("DEFAULT_LANGUAGE") : $request->lang; + + return new DigitalProductDetailsResource($product); + } + + public function update(Request $request, Product $product) + { + //Product Update + $product = (new ProductService)->update($request->except([ + '_token', 'tax_id', 'tax', 'tax_type' + ]), $product); + + //Product Stock + foreach ($product->stocks as $key => $stock) { + $stock->delete(); + } + + $request->merge(['product_id' => $product->id, 'current_stock' => 0]); + + (new ProductStockService)->store($request->only([ + 'unit_price', 'current_stock', 'product_id' + ]), $product); + + //VAT & Tax + if ($request->tax_id) { + ProductTax::where('product_id', $product->id)->delete(); + (new ProductTaxService)->store($request->only([ + 'tax_id', 'tax', 'tax_type', 'product_id' + ])); + } + + // Product Translations + ProductTranslation::updateOrCreate( + $request->only(['lang', 'product_id']), + $request->only(['name', 'description']) + ); + + return $this->success(translate('Digital Product has been Updated successfully')); + } + + public function destroy($id) + { + $product_destroy = (new ProductService)->destroy($id); + + if ($product_destroy) { + Artisan::call('view:clear'); + Artisan::call('cache:clear'); + return $this->success(translate('Digital Product deleted successfully')); + } + return $this->failed(translate('Something Went Wrong.')); + } + + // Digital Product File Download + public function download($id) + { + if (auth()->user()->user_type != 'seller') { + return $this->failed(translate('Unauthenticated User.')); + } + + $product = Product::where('id', $id)->where('user_id', auth()->user()->id)->first(); + if (!$product) { + return $this->failed(translate('This product is not yours')); + } + + $upload = Upload::findOrFail($product->file_name); + if (env('FILESYSTEM_DRIVER') == "s3") { + return \Storage::disk('s3')->download($upload->file_name, $upload->file_original_name . "." . $upload->extension); + } else { + if (file_exists(base_path('public/' . $upload->file_name))) { + $file = public_path() . "/$upload->file_name"; + return response()->download($file, config('app.name') . "_" . $upload->file_original_name . "." . $upload->extension); + } + } + } +} diff --git a/desarrollo/app/Http/Controllers/Api/V2/Seller/ProductController.php b/desarrollo/app/Http/Controllers/Api/V2/Seller/ProductController.php index d6f8821c..bb8c9c85 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/Seller/ProductController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/Seller/ProductController.php @@ -196,6 +196,12 @@ class ProductController extends Controller public function change_status(Request $request) { + if (addon_is_activated('seller_subscription')) { + if (!seller_package_validity_check()) { + return $this->failed(translate('Please upgrade your package')); + } + } + $product = Product::where('user_id', auth()->user()->id) ->where('id', $request->id) ->update([ diff --git a/desarrollo/app/Http/Controllers/Api/V2/Seller/ShopController.php b/desarrollo/app/Http/Controllers/Api/V2/Seller/ShopController.php index 5333db97..dcb9faf6 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/Seller/ShopController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/Seller/ShopController.php @@ -122,12 +122,11 @@ class ShopController extends Controller ->select(DB::raw("sum(grand_total) as total, DATE_FORMAT(created_at, '%b-%d') as date")) ->groupBy(DB::raw("DATE_FORMAT(created_at, '%Y-%m-%d')")) ->get()->toArray(); - //dd($data->toArray()); //$array_date = []; $sales_array = []; - for ($i = 0; $i < 7; $i++) { - $new_date = date("M-d", strtotime(($i + 1) . " days ago")); + for ($i = 1; $i < 8; $i++) { + $new_date = date("M-d", strtotime(($i - 1) . " days ago")); //$array_date[] = date("M-d", strtotime($i." days ago")); $sales_array[$i]['date'] = $new_date; diff --git a/desarrollo/app/Http/Controllers/Api/V2/SellerController.php b/desarrollo/app/Http/Controllers/Api/V2/SellerController.php index d32b807a..8f7f1874 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/SellerController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/SellerController.php @@ -1,4 +1,5 @@ \ No newline at end of file diff --git a/desarrollo/app/Http/Controllers/Api/V2/ShippingController.php b/desarrollo/app/Http/Controllers/Api/V2/ShippingController.php index 85f228c2..10470389 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/ShippingController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/ShippingController.php @@ -27,39 +27,39 @@ class ShippingController extends Controller foreach ($request->seller_list as $key => $seller) { $seller['shipping_cost'] = 0; - + $carts = Cart::where('user_id', auth()->user()->id)->where("owner_id", $seller['seller_id'])->get(); foreach ($carts as $key => $cartItem) { $cartItem['shipping_cost'] = 0; - - if($seller['shipping_type'] == 'pickup_point') { + + if ($seller['shipping_type'] == 'pickup_point') { $cartItem['shipping_type'] = 'pickup_point'; $cartItem['pickup_point'] = $seller['shipping_id']; - }else + } else if ($seller['shipping_type'] == 'home_delivery') { $cartItem['shipping_type'] = 'home_delivery'; $cartItem['pickup_point'] = 0; - + $cartItem['shipping_cost'] = getShippingCost($main_carts, $key); - }else + } else if ($seller['shipping_type'] == 'carrier') { $cartItem['shipping_type'] = 'carrier'; $cartItem['pickup_point'] = 0; $cartItem['carrier_id'] = $seller['shipping_id']; - $cartItem['shipping_cost'] = getShippingCost($carts, $key,$seller['shipping_id']); + $cartItem['shipping_cost'] = getShippingCost($carts, $key, $seller['shipping_id']); } - + $cartItem->save(); } } //Total shipping cost $calculate_shipping $total_shipping_cost = Cart::where('user_id', auth()->user()->id)->sum('shipping_cost'); - return response()->json(['result' => true, 'shipping_type' => get_setting('shipping_type'), 'value' => convert_price($total_shipping_cost), 'value_string' => format_price($total_shipping_cost)], 200); + return response()->json(['result' => true, 'shipping_type' => get_setting('shipping_type'), 'value' => convert_price($total_shipping_cost), 'value_string' => format_price(convert_price($total_shipping_cost))], 200); } - + public function getDeliveryInfo() { $owner_ids = Cart::where('user_id', auth()->user()->id)->select('owner_id')->groupBy('owner_id')->pluck('owner_id')->toArray(); @@ -73,13 +73,14 @@ class ShippingController extends Controller if (!empty($shop_items_raw_data)) { foreach ($shop_items_raw_data as $shop_items_raw_data_item) { $product = Product::where('id', $shop_items_raw_data_item["product_id"])->first(); - $shop_items_data_item["id"] = intval($shop_items_raw_data_item["id"]) ; - $shop_items_data_item["owner_id"] =intval($shop_items_raw_data_item["owner_id"]) ; - $shop_items_data_item["user_id"] =intval($shop_items_raw_data_item["user_id"]) ; - $shop_items_data_item["product_id"] =intval($shop_items_raw_data_item["product_id"]) ; + $shop_items_data_item["id"] = intval($shop_items_raw_data_item["id"]); + $shop_items_data_item["owner_id"] = intval($shop_items_raw_data_item["owner_id"]); + $shop_items_data_item["user_id"] = intval($shop_items_raw_data_item["user_id"]); + $shop_items_data_item["product_id"] = intval($shop_items_raw_data_item["product_id"]); $shop_items_data_item["product_name"] = $product->getTranslation('name'); $shop_items_data_item["product_thumbnail_image"] = uploaded_asset($product->thumbnail_img); -/* + $shop_items_data_item["product_is_digital"] = $product->digital == 1; + /* $shop_items_data_item["variation"] = $shop_items_raw_data_item["variation"]; $shop_items_data_item["price"] =(double) cart_product_price($shop_items_raw_data_item, $product, false, false); $shop_items_data_item["currency_symbol"] = $currency_symbol; @@ -90,7 +91,6 @@ class ShippingController extends Controller $shop_items_data_item["upper_limit"] = intval($product->stocks->where('variant', $shop_items_raw_data_item['variation'])->first()->qty) ; */ $shop_items_data[] = $shop_items_data_item; - } } @@ -100,18 +100,16 @@ class ShippingController extends Controller if ($shop_data) { $shop['name'] = $shop_data->name; - $shop['owner_id'] =(int) $owner_id; + $shop['owner_id'] = (int) $owner_id; $shop['cart_items'] = $shop_items_data; - } else { $shop['name'] = "Inhouse"; - $shop['owner_id'] =(int) $owner_id; + $shop['owner_id'] = (int) $owner_id; $shop['cart_items'] = $shop_items_data; - } $shop['carriers'] = seller_base_carrier_list($owner_id); - $shop['pickup_points']=[]; - if(get_setting('pickup_point') == 1){ + $shop['pickup_points'] = []; + if (get_setting('pickup_point') == 1) { $pickup_point_list = PickupPoint::where('pick_up_status', '=', 1)->get(); $shop['pickup_points'] = PickupPointResource::collection($pickup_point_list); } diff --git a/desarrollo/app/Http/Controllers/Api/V2/WalletController.php b/desarrollo/app/Http/Controllers/Api/V2/WalletController.php index 4c0c9418..2fbf85a3 100644 --- a/desarrollo/app/Http/Controllers/Api/V2/WalletController.php +++ b/desarrollo/app/Http/Controllers/Api/V2/WalletController.php @@ -14,7 +14,7 @@ class WalletController extends Controller $user = User::find(auth()->user()->id); $latest = Wallet::where('user_id', auth()->user()->id)->latest()->first(); return response()->json([ - 'balance' => format_price($user->balance), + 'balance' => single_price($user->balance), 'last_recharged' => $latest == null ? "Not Available" : $latest->created_at->diffForHumans(), ]); } diff --git a/desarrollo/app/Http/Controllers/Auth/RegisterController.php b/desarrollo/app/Http/Controllers/Auth/RegisterController.php index c37690af..bda1863e 100644 --- a/desarrollo/app/Http/Controllers/Auth/RegisterController.php +++ b/desarrollo/app/Http/Controllers/Auth/RegisterController.php @@ -44,134 +44,134 @@ class RegisterController extends Controller * * @var string */ - // protected $redirectTo = '/'; + protected $redirectTo = '/'; - // /** - // * Create a new controller instance. - // * - // * @return void - // */ - // public function __construct() - // { - // $this->middleware('guest'); - // } + /** + * Create a new controller instance. + * + * @return void + */ + public function __construct() + { + $this->middleware('guest'); + } - // /** - // * Get a validator for an incoming registration request. - // * - // * @param array $data - // * @return \Illuminate\Contracts\Validation\Validator - // */ - // protected function validator(array $data) - // { - // return Validator::make($data, [ - // 'name' => 'required|string|max:255', - // 'password' => 'required|string|min:6|confirmed', - // 'g-recaptcha-response' => [ - // Rule::when(get_setting('google_recaptcha') == 1, ['required', new Recaptcha()], ['sometimes']) - // ] - // ]); - // } + /** + * Get a validator for an incoming registration request. + * + * @param array $data + * @return \Illuminate\Contracts\Validation\Validator + */ + protected function validator(array $data) + { + return Validator::make($data, [ + 'name' => 'required|string|max:255', + 'password' => 'required|string|min:6|confirmed', + 'g-recaptcha-response' => [ + Rule::when(get_setting('google_recaptcha') == 1, ['required', new Recaptcha()], ['sometimes']) + ] + ]); + } - // /** - // * Create a new user instance after a valid registration. - // * - // * @param array $data - // * @return \App\Models\User - // */ - // protected function create(array $data) - // { - // if (filter_var($data['email'], FILTER_VALIDATE_EMAIL)) { - // $user = User::create([ - // 'name' => $data['name'], - // 'email' => $data['email'], - // 'password' => Hash::make($data['password']), - // ]); - // } - // else { - // if (addon_is_activated('otp_system')){ - // $user = User::create([ - // 'name' => $data['name'], - // 'phone' => '+'.$data['country_code'].$data['phone'], - // 'password' => Hash::make($data['password']), - // 'verification_code' => rand(100000, 999999) - // ]); + /** + * Create a new user instance after a valid registration. + * + * @param array $data + * @return \App\Models\User + */ + protected function create(array $data) + { + if (filter_var($data['email'], FILTER_VALIDATE_EMAIL)) { + $user = User::create([ + 'name' => $data['name'], + 'email' => $data['email'], + 'password' => Hash::make($data['password']), + ]); + } + else { + if (addon_is_activated('otp_system')){ + $user = User::create([ + 'name' => $data['name'], + 'phone' => '+'.$data['country_code'].$data['phone'], + 'password' => Hash::make($data['password']), + 'verification_code' => rand(100000, 999999) + ]); - // $otpController = new OTPVerificationController; - // $otpController->send_code($user); - // } - // } + $otpController = new OTPVerificationController; + $otpController->send_code($user); + } + } - // if(session('temp_user_id') != null){ - // Cart::where('temp_user_id', session('temp_user_id')) - // ->update([ - // 'user_id' => $user->id, - // 'temp_user_id' => null - // ]); + if(session('temp_user_id') != null){ + Cart::where('temp_user_id', session('temp_user_id')) + ->update([ + 'user_id' => $user->id, + 'temp_user_id' => null + ]); - // Session::forget('temp_user_id'); - // } + Session::forget('temp_user_id'); + } - // if(Cookie::has('referral_code')){ - // $referral_code = Cookie::get('referral_code'); - // $referred_by_user = User::where('referral_code', $referral_code)->first(); - // if($referred_by_user != null){ - // $user->referred_by = $referred_by_user->id; - // $user->save(); - // } - // } + if(Cookie::has('referral_code')){ + $referral_code = Cookie::get('referral_code'); + $referred_by_user = User::where('referral_code', $referral_code)->first(); + if($referred_by_user != null){ + $user->referred_by = $referred_by_user->id; + $user->save(); + } + } - // return $user; - // } + return $user; + } - // public function register(Request $request) - // { - // if (filter_var($request->email, FILTER_VALIDATE_EMAIL)) { - // if(User::where('email', $request->email)->first() != null){ - // flash(translate('Email or Phone already exists.')); - // return back(); - // } - // } - // elseif (User::where('phone', '+'.$request->country_code.$request->phone)->first() != null) { - // flash(translate('Phone already exists.')); - // return back(); - // } + public function register(Request $request) + { + if (filter_var($request->email, FILTER_VALIDATE_EMAIL)) { + if(User::where('email', $request->email)->first() != null){ + flash(translate('Email or Phone already exists.')); + return back(); + } + } + elseif (User::where('phone', '+'.$request->country_code.$request->phone)->first() != null) { + flash(translate('Phone already exists.')); + return back(); + } - // $this->validator($request->all())->validate(); + $this->validator($request->all())->validate(); - // $user = $this->create($request->all()); + $user = $this->create($request->all()); - // $this->guard()->login($user); + $this->guard()->login($user); - // if($user->email != null){ - // if(BusinessSetting::where('type', 'email_verification')->first()->value != 1){ - // $user->email_verified_at = date('Y-m-d H:m:s'); - // $user->save(); - // flash(translate('Registration successful.'))->success(); - // } - // else { - // try { - // $user->sendEmailVerificationNotification(); - // flash(translate('Registration successful. Please verify your email.'))->success(); - // } catch (\Throwable $th) { - // $user->delete(); - // flash(translate('Registration failed. Please try again later.'))->error(); - // } - // } - // } + if($user->email != null){ + if(BusinessSetting::where('type', 'email_verification')->first()->value != 1){ + $user->email_verified_at = date('Y-m-d H:m:s'); + $user->save(); + flash(translate('Registration successful.'))->success(); + } + else { + try { + $user->sendEmailVerificationNotification(); + flash(translate('Registration successful. Please verify your email.'))->success(); + } catch (\Throwable $th) { + $user->delete(); + flash(translate('Registration failed. Please try again later.'))->error(); + } + } + } - // return $this->registered($request, $user) - // ?: redirect($this->redirectPath()); - // } + return $this->registered($request, $user) + ?: redirect($this->redirectPath()); + } - // protected function registered(Request $request, $user) - // { - // if ($user->email == null) { - // return redirect()->route('verification'); - // }elseif(session('link') != null){ - // return redirect(session('link')); - // }else { - // return redirect()->route('home'); - // } - // } + protected function registered(Request $request, $user) + { + if ($user->email == null) { + return redirect()->route('verification'); + }elseif(session('link') != null){ + return redirect(session('link')); + }else { + return redirect()->route('home'); + } + } } diff --git a/desarrollo/app/Http/Controllers/Auth/VerificationController.php b/desarrollo/app/Http/Controllers/Auth/VerificationController.php index 573952f5..6b0c6ef5 100644 --- a/desarrollo/app/Http/Controllers/Auth/VerificationController.php +++ b/desarrollo/app/Http/Controllers/Auth/VerificationController.php @@ -8,31 +8,95 @@ use App\Models\User; use Carbon\Carbon; use Illuminate\Http\Request; use App\Http\Controllers\OTPVerificationController; + class VerificationController extends Controller { + /* + |-------------------------------------------------------------------------- + | Email Verification Controller + |-------------------------------------------------------------------------- + | + | This controller is responsible for handling email verification for any + | user that recently registered with the application. Emails may also + | be re-sent if the user didn't receive the original email message. + | + */ - public function verify(Request $request, $id, $hash) - { - // Aquí debes implementar la lógica para verificar el token y marcar el correo electrónico como verificado - // Puedes usar el $id y $hash para buscar el usuario en la base de datos y realizar la verificación + use VerifiesEmails; - // Ejemplo de implementación: - $user = User::find($id); + /** + * Where to redirect users after verification. + * + * @var string + */ + protected $redirectTo = '/'; - if ($user && hash_equals($hash, $user->confirmation_code)) { - $user->email_verified_at = now(); - $user->save(); - - // Inicia sesión al usuario si lo deseas - auth()->login($user); - - // Redirige al usuario a la página de éxito o a donde desees - return redirect()->route('shop.view.signup.complete'); + /** + * Create a new controller instance. + * + * @return void + */ + public function __construct() + { + //$this->middleware('auth'); + $this->middleware('signed')->only('verify'); + $this->middleware('throttle:6,1')->only('verify', 'resend'); } - // Si la verificación falla, puedes redirigir al usuario a una página de error o mostrar un mensaje de error - return redirect()->route('shop.view.email.verification'); - } + /** + * Show the email verification notice. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\Response + */ + public function show(Request $request) + { + if ($request->user()->email != null) { + return $request->user()->hasVerifiedEmail() + ? redirect($this->redirectPath()) + : view('auth.verify'); + } + else { + $otpController = new OTPVerificationController; + $otpController->send_code($request->user()); + return redirect()->route('verification'); + } + } - -} \ No newline at end of file + + /** + * Resend the email verification notification. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\Response + */ + public function resend(Request $request) + { + if ($request->user()->hasVerifiedEmail()) { + return redirect($this->redirectPath()); + } + + $request->user()->sendEmailVerificationNotification(); + + return back()->with('resent', true); + } + + public function verification_confirmation($code){ + $user = User::where('verification_code', $code)->first(); + if($user != null){ + $user->email_verified_at = Carbon::now(); + $user->save(); + auth()->login($user, true); + flash(translate('Your email has been verified successfully'))->success(); + } + else { + flash(translate('Sorry, we could not verifiy you. Please try again'))->error(); + } + + if($user->user_type == 'seller') { + return redirect()->route('seller.dashboard'); + } + + return redirect()->route('dashboard'); + } +} diff --git a/desarrollo/app/Http/Controllers/BusinessSettingsController.php b/desarrollo/app/Http/Controllers/BusinessSettingsController.php index d1978c91..fa02c8d2 100644 --- a/desarrollo/app/Http/Controllers/BusinessSettingsController.php +++ b/desarrollo/app/Http/Controllers/BusinessSettingsController.php @@ -489,11 +489,8 @@ class BusinessSettingsController extends Controller } } - elseif ($request->type == 'FILESYSTEM_DRIVER' && $request->value == '1') { - $this->overWriteEnvFile($request->type, 's3'); - } - elseif ($request->type == 'FILESYSTEM_DRIVER' && $request->value == '0') { - $this->overWriteEnvFile($request->type, 'local'); + elseif ($request->type == 'FILESYSTEM_DRIVER') { + $this->overWriteEnvFile($request->type, $request->value); } return '1'; diff --git a/desarrollo/app/Http/Controllers/CartController.php b/desarrollo/app/Http/Controllers/CartController.php index d8c693c1..d799ff9a 100644 --- a/desarrollo/app/Http/Controllers/CartController.php +++ b/desarrollo/app/Http/Controllers/CartController.php @@ -7,6 +7,7 @@ use App\Models\Product; use App\Models\Category; use App\Models\Cart; use Auth; +use App\Utility\CartUtility; use Session; use Cookie; @@ -14,16 +15,16 @@ class CartController extends Controller { public function index(Request $request) { - if(auth()->user() != null) { + if (auth()->user() != null) { $user_id = Auth::user()->id; - if($request->session()->get('temp_user_id')) { + if ($request->session()->get('temp_user_id')) { Cart::where('temp_user_id', $request->session()->get('temp_user_id')) - ->update( - [ - 'user_id' => $user_id, - 'temp_user_id' => null - ] - ); + ->update( + [ + 'user_id' => $user_id, + 'temp_user_id' => null + ] + ); Session::forget('temp_user_id'); } @@ -31,7 +32,7 @@ class CartController extends Controller } else { $temp_user_id = $request->session()->get('temp_user_id'); // $carts = Cart::where('temp_user_id', $temp_user_id)->get(); - $carts = ($temp_user_id != null) ? Cart::where('temp_user_id', $temp_user_id)->get() : [] ; + $carts = ($temp_user_id != null) ? Cart::where('temp_user_id', $temp_user_id)->get() : []; } return view('frontend.view_cart', compact('carts')); @@ -51,72 +52,51 @@ class CartController extends Controller public function addToCart(Request $request) { + $carts = Cart::where('user_id', auth()->user()->id)->get(); + $check_auction_in_cart = CartUtility::check_auction_in_cart($carts); $product = Product::find($request->id); $carts = array(); - $data = array(); + + if($check_auction_in_cart && $product->auction_product == 0) { + return array( + 'status' => 0, + 'cart_count' => count($carts), + 'modal_view' => view('frontend.partials.removeAuctionProductFromCart')->render(), + 'nav_cart_view' => view('frontend.partials.cart')->render(), + ); + } + + $quantity = $request['quantity']; - if(auth()->user() != null) { - $user_id = Auth::user()->id; - $data['user_id'] = $user_id; - $carts = Cart::where('user_id', $user_id)->get(); - } else { - if($request->session()->get('temp_user_id')) { - $temp_user_id = $request->session()->get('temp_user_id'); - } else { - $temp_user_id = bin2hex(random_bytes(10)); - $request->session()->put('temp_user_id', $temp_user_id); - } - $data['temp_user_id'] = $temp_user_id; - $carts = Cart::where('temp_user_id', $temp_user_id)->get(); + if ($quantity < $product->min_qty) { + return array( + 'status' => 0, + 'cart_count' => count($carts), + 'modal_view' => view('frontend.partials.minQtyNotSatisfied', ['min_qty' => $product->min_qty])->render(), + 'nav_cart_view' => view('frontend.partials.cart')->render(), + ); } - $data['product_id'] = $product->id; - $data['owner_id'] = $product->user_id; + //check the color enabled or disabled for the product + $str = CartUtility::create_cart_variant($product, $request->all()); + $product_stock = $product->stocks->where('variant', $str)->first(); - $str = ''; - $tax = 0; - if($product->auction_product == 0){ - if($product->digital != 1 && $request->quantity < $product->min_qty) { + $cart = Cart::firstOrNew([ + 'variation' => $str, + 'user_id' => auth()->user()->id, + 'product_id' => $request['id'] + ]); + + if ($cart->exists && $product->digital == 0) { + if ($product->auction_product == 1 && ($cart->product_id == $product->id)) { return array( 'status' => 0, 'cart_count' => count($carts), - 'modal_view' => view('frontend.partials.minQtyNotSatisfied', [ 'min_qty' => $product->min_qty ])->render(), + 'modal_view' => view('frontend.partials.auctionProductAlredayAddedCart')->render(), 'nav_cart_view' => view('frontend.partials.cart')->render(), ); } - - //check the color enabled or disabled for the product - if($request->has('color')) { - $str = $request['color']; - } - - if ($product->digital != 1) { - //Gets all the choice values of customer choice option and generate a string like Black-S-Cotton - foreach (json_decode($product->choice_options) as $key => $choice) { - if($str != null){ - $str .= '-'.str_replace(' ', '', $request['attribute_id_'.$choice->attribute_id]); - } - else{ - $str .= str_replace(' ', '', $request['attribute_id_'.$choice->attribute_id]); - } - } - } - - $data['variation'] = $str; - - $product_stock = $product->stocks->where('variant', $str)->first(); - $price = $product_stock->price; - - if($product->wholesale_product){ - $wholesalePrice = $product_stock->wholesalePrices->where('min_qty', '<=', $request->quantity)->where('max_qty', '>=', $request->quantity)->first(); - if($wholesalePrice){ - $price = $wholesalePrice->price; - } - } - - $quantity = $product_stock->qty; - - if($quantity < $request['quantity']) { + if ($product_stock->qty < $cart->quantity + $request['quantity']) { return array( 'status' => 0, 'cart_count' => count($carts), @@ -124,164 +104,28 @@ class CartController extends Controller 'nav_cart_view' => view('frontend.partials.cart')->render(), ); } - - //discount calculation - $discount_applicable = false; - - if ($product->discount_start_date == null) { - $discount_applicable = true; - } - elseif (strtotime(date('d-m-Y H:i:s')) >= $product->discount_start_date && - strtotime(date('d-m-Y H:i:s')) <= $product->discount_end_date) { - $discount_applicable = true; - } - - if ($discount_applicable) { - if($product->discount_type == 'percent'){ - $price -= ($price*$product->discount)/100; - } - elseif($product->discount_type == 'amount'){ - $price -= $product->discount; - } - } - - //calculation of taxes - foreach ($product->taxes as $product_tax) { - if($product_tax->tax_type == 'percent'){ - $tax += ($price * $product_tax->tax) / 100; - } - elseif($product_tax->tax_type == 'amount'){ - $tax += $product_tax->tax; - } - } - - $data['quantity'] = $request['quantity']; - $data['price'] = $price; - $data['tax'] = $tax; - //$data['shipping'] = 0; - $data['shipping_cost'] = 0; - $data['product_referral_code'] = null; - $data['cash_on_delivery'] = $product->cash_on_delivery; - $data['digital'] = $product->digital; - - if ($request['quantity'] == null){ - $data['quantity'] = 1; - } - - if(Cookie::has('referred_product_id') && Cookie::get('referred_product_id') == $product->id) { - $data['product_referral_code'] = Cookie::get('product_referral_code'); - } - - if($carts && count($carts) > 0){ - $foundInCart = false; - - foreach ($carts as $key => $cartItem){ - $cart_product = Product::where('id', $cartItem['product_id'])->first(); - if($cart_product->auction_product == 1){ - return array( - 'status' => 0, - 'cart_count' => count($carts), - 'modal_view' => view('frontend.partials.auctionProductAlredayAddedCart')->render(), - 'nav_cart_view' => view('frontend.partials.cart')->render(), - ); - } - - if($cartItem['product_id'] == $request->id) { - $product_stock = $cart_product->stocks->where('variant', $str)->first(); - $quantity = $product_stock->qty; - if($quantity < $cartItem['quantity'] + $request['quantity']){ - return array( - 'status' => 0, - 'cart_count' => count($carts), - 'modal_view' => view('frontend.partials.outOfStockCart')->render(), - 'nav_cart_view' => view('frontend.partials.cart')->render(), - ); - } - if(($str != null && $cartItem['variation'] == $str) || $str == null){ - $foundInCart = true; - - $cartItem['quantity'] += $request['quantity']; - - if($cart_product->wholesale_product){ - $wholesalePrice = $product_stock->wholesalePrices->where('min_qty', '<=', $request->quantity)->where('max_qty', '>=', $request->quantity)->first(); - if($wholesalePrice){ - $price = $wholesalePrice->price; - } - } - - $cartItem['price'] = $price; - - $cartItem->save(); - } - } - } - if (!$foundInCart) { - Cart::create($data); - } - } - else{ - Cart::create($data); - } - - if(auth()->user() != null) { - $user_id = Auth::user()->id; - $carts = Cart::where('user_id', $user_id)->get(); - } else { - $temp_user_id = $request->session()->get('temp_user_id'); - $carts = Cart::where('temp_user_id', $temp_user_id)->get(); - } - - return array( - 'status' => 1, - 'cart_count' => count($carts), - 'modal_view' => view('frontend.partials.addedToCart', compact('product', 'data'))->render(), - 'nav_cart_view' => view('frontend.partials.cart')->render(), - ); + $quantity = $cart->quantity + $request['quantity']; } - else{ - $price = $product->bids->max('amount'); - foreach ($product->taxes as $product_tax) { - if($product_tax->tax_type == 'percent'){ - $tax += ($price * $product_tax->tax) / 100; - } - elseif($product_tax->tax_type == 'amount'){ - $tax += $product_tax->tax; - } - } - - $data['quantity'] = 1; - $data['price'] = $price; - $data['tax'] = $tax; - $data['shipping_cost'] = 0; - $data['product_referral_code'] = null; - $data['cash_on_delivery'] = $product->cash_on_delivery; - $data['digital'] = $product->digital; - - if(count($carts) == 0){ - Cart::create($data); - } - if(auth()->user() != null) { - $user_id = Auth::user()->id; - $carts = Cart::where('user_id', $user_id)->get(); - } else { - $temp_user_id = $request->session()->get('temp_user_id'); - $carts = Cart::where('temp_user_id', $temp_user_id)->get(); - } - return array( - 'status' => 1, - 'cart_count' => count($carts), - 'modal_view' => view('frontend.partials.addedToCart', compact('product', 'data'))->render(), - 'nav_cart_view' => view('frontend.partials.cart')->render(), - ); - } + $price = CartUtility::get_price($product, $product_stock, $request->quantity); + $tax = CartUtility::tax_calculation($product, $price); + + CartUtility::save_cart_data($cart, $product, $price, $tax, $quantity); + + $carts = Cart::where('user_id', auth()->user()->id)->get(); + return array( + 'status' => 1, + 'cart_count' => count($carts), + 'modal_view' => view('frontend.partials.addedToCart', compact('product', 'cart'))->render(), + 'nav_cart_view' => view('frontend.partials.cart')->render(), + ); } //removes from Cart public function removeFromCart(Request $request) { Cart::destroy($request->id); - if(auth()->user() != null) { + if (auth()->user() != null) { $user_id = Auth::user()->id; $carts = Cart::where('user_id', $user_id)->get(); } else { @@ -301,41 +145,41 @@ class CartController extends Controller { $cartItem = Cart::findOrFail($request->id); - if($cartItem['id'] == $request->id){ + if ($cartItem['id'] == $request->id) { $product = Product::find($cartItem['product_id']); $product_stock = $product->stocks->where('variant', $cartItem['variation'])->first(); $quantity = $product_stock->qty; $price = $product_stock->price; - - //discount calculation + + //discount calculation $discount_applicable = false; if ($product->discount_start_date == null) { $discount_applicable = true; - } - elseif (strtotime(date('d-m-Y H:i:s')) >= $product->discount_start_date && - strtotime(date('d-m-Y H:i:s')) <= $product->discount_end_date) { + } elseif ( + strtotime(date('d-m-Y H:i:s')) >= $product->discount_start_date && + strtotime(date('d-m-Y H:i:s')) <= $product->discount_end_date + ) { $discount_applicable = true; } if ($discount_applicable) { - if($product->discount_type == 'percent'){ - $price -= ($price*$product->discount)/100; - } - elseif($product->discount_type == 'amount'){ + if ($product->discount_type == 'percent') { + $price -= ($price * $product->discount) / 100; + } elseif ($product->discount_type == 'amount') { $price -= $product->discount; } } - if($quantity >= $request->quantity) { - if($request->quantity >= $product->min_qty){ + if ($quantity >= $request->quantity) { + if ($request->quantity >= $product->min_qty) { $cartItem['quantity'] = $request->quantity; } } - if($product->wholesale_product){ + if ($product->wholesale_product) { $wholesalePrice = $product_stock->wholesalePrices->where('min_qty', '<=', $request->quantity)->where('max_qty', '>=', $request->quantity)->first(); - if($wholesalePrice){ + if ($wholesalePrice) { $price = $wholesalePrice->price; } } @@ -344,7 +188,7 @@ class CartController extends Controller $cartItem->save(); } - if(auth()->user() != null) { + if (auth()->user() != null) { $user_id = Auth::user()->id; $carts = Cart::where('user_id', $user_id)->get(); } else { diff --git a/desarrollo/app/Http/Controllers/CheckoutController.php b/desarrollo/app/Http/Controllers/CheckoutController.php index a9cc0922..b424c0a2 100644 --- a/desarrollo/app/Http/Controllers/CheckoutController.php +++ b/desarrollo/app/Http/Controllers/CheckoutController.php @@ -37,7 +37,7 @@ class CheckoutController extends Controller $subtotal += cart_product_price($cartItem, $product, false, false) * $cartItem['quantity']; } if ($subtotal < get_setting('minimum_order_amount')) { - flash(translate('You order amount is less then the minimum order amount'))->warning(); + flash(translate('You order amount is less than the minimum order amount'))->warning(); return redirect()->route('home'); } } diff --git a/desarrollo/app/Http/Controllers/CommissionController.php b/desarrollo/app/Http/Controllers/CommissionController.php index 235a5129..938f2e82 100644 --- a/desarrollo/app/Http/Controllers/CommissionController.php +++ b/desarrollo/app/Http/Controllers/CommissionController.php @@ -7,7 +7,10 @@ use Illuminate\Http\Request; use App\Models\SellerWithdrawRequest; use App\Models\Payment; use App\Models\Shop; +use App\Models\User; use Session; +use Illuminate\Support\Facades\Notification; +use App\Notifications\PayoutNotification; class CommissionController extends Controller { @@ -77,6 +80,9 @@ class CommissionController extends Controller $seller_withdraw_request->save(); } + $users = User::findMany([$shop->user->id, User::where('user_type', 'admin')->first()->id]); + Notification::send($users, new PayoutNotification($shop->user, $payment_data['amount'], 'paid')); + Session::forget('payment_data'); Session::forget('payment_type'); diff --git a/desarrollo/app/Http/Controllers/CustomerPackageController.php b/desarrollo/app/Http/Controllers/CustomerPackageController.php index 1008ea99..31ab9e72 100644 --- a/desarrollo/app/Http/Controllers/CustomerPackageController.php +++ b/desarrollo/app/Http/Controllers/CustomerPackageController.php @@ -149,7 +149,7 @@ class CustomerPackageController extends Controller if ($user->customer_package_id != $customer_package->id) { return $this->purchase_payment_done(Session::get('payment_data'), null); } else { - flash(translate('You can not purchase this package anymore.'))->warning(); + flash(translate('You cannot purchase this package anymore.'))->warning(); return back(); } } diff --git a/desarrollo/app/Http/Controllers/DigitalProductController.php b/desarrollo/app/Http/Controllers/DigitalProductController.php index 34c0196d..44308651 100644 --- a/desarrollo/app/Http/Controllers/DigitalProductController.php +++ b/desarrollo/app/Http/Controllers/DigitalProductController.php @@ -4,19 +4,20 @@ namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\Product; -use App\Models\ProductStock; use App\Models\Category; use App\Models\ProductTax; use App\Models\ProductTranslation; use App\Models\Upload; +use Artisan; + +use App\Services\ProductService; +use App\Services\ProductStockService; use App\Services\ProductTaxService; -use Auth; class DigitalProductController extends Controller { public function __construct() { - // Staff Permission Check $this->middleware(['permission:show_digital_products'])->only('index'); $this->middleware(['permission:add_digital_product'])->only('create'); @@ -33,13 +34,15 @@ class DigitalProductController extends Controller public function index(Request $request) { $sort_search = null; - $products = Product::orderBy('created_at', 'desc'); + $products = Product::query(); + $products->where('added_by', 'admin'); if ($request->has('search')) { $sort_search = $request->search; $products = $products->where('name', 'like', '%' . $sort_search . '%'); } - $products = $products->where('digital', 1)->paginate(10); - return view('backend.product.digital_products.index', compact('products', 'sort_search')); + $products = $products->where('digital', 1)->orderBy('created_at', 'desc')->paginate(10); + $type = 'Admin'; + return view('backend.product.digital_products.index', compact('products', 'sort_search', 'type')); } /** @@ -64,66 +67,36 @@ class DigitalProductController extends Controller */ public function store(Request $request) { - $product = new Product; - $product->name = $request->name; - $product->added_by = 'admin'; - $product->user_id = Auth::user()->id; - $product->category_id = $request->category_id; - $product->digital = 1; - $product->photos = $request->photos; - $product->thumbnail_img = $request->thumbnail_img; + // Product Store + $product = (new ProductService)->store($request->except([ + '_token', 'tax_id', 'tax', 'tax_type' + ])); - $tags = array(); - if ($request->tags[0] != null) { - foreach (json_decode($request->tags[0]) as $key => $tag) { - array_push($tags, $tag->value); - } + $request->merge(['product_id' => $product->id, 'current_stock' => 0]); + + //Product Stock + (new ProductStockService)->store($request->only([ + 'unit_price', 'current_stock', 'product_id' + ]), $product); + + //VAT & Tax + if ($request->tax_id) { + (new ProductTaxService)->store($request->only([ + 'tax_id', 'tax', 'tax_type', 'product_id' + ])); } - $product->tags = implode(',', $tags); - $product->description = $request->description; - $product->unit_price = $request->unit_price; - $product->purchase_price = $request->purchase_price; - $product->discount = $request->discount; - $product->discount_type = $request->discount_type; + // Product Translations + $request->merge(['lang' => env('DEFAULT_LANGUAGE')]); + ProductTranslation::create($request->only([ + 'lang', 'name', 'unit', 'description', 'product_id' + ])); - $product->meta_title = $request->meta_title; - $product->meta_description = $request->meta_description; - $product->meta_img = $request->meta_img; + flash(translate('Product has been inserted successfully'))->success(); - $product->file_name = $request->file; - - $product->slug = preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', $request->name)) . '-' . rand(10000, 99999); - - if ($product->save()) { - $request->merge(['product_id' => $product->id]); - //VAT & Tax - if ($request->tax_id) { - (new ProductTaxService)->store($request->only([ - 'tax_id', 'tax', 'tax_type', 'product_id' - ])); - } - - $product_stock = new ProductStock; - $product_stock->product_id = $product->id; - $product_stock->variant = ''; - $product_stock->price = $request->unit_price; - $product_stock->sku = ''; - $product_stock->qty = 0; - $product_stock->save(); - - // Product Translations - $product_translation = ProductTranslation::firstOrNew(['lang' => env('DEFAULT_LANGUAGE'), 'product_id' => $product->id]); - $product_translation->name = $request->name; - $product_translation->description = $request->description; - $product_translation->save(); - - flash(translate('Digital Product has been inserted successfully'))->success(); - return redirect()->route('digitalproducts.index'); - } else { - flash(translate('Something went wrong'))->error(); - return back(); - } + Artisan::call('view:clear'); + Artisan::call('cache:clear'); + return redirect()->route('digitalproducts.index'); } /** @@ -164,71 +137,42 @@ class DigitalProductController extends Controller public function update(Request $request, $id) { $product = Product::findOrFail($id); - if ($request->lang == env("DEFAULT_LANGUAGE")) { - $product->name = $request->name; - $product->description = $request->description; - } - $product->category_id = $request->category_id; - $product->digital = 1; - $product->photos = $request->photos; - $product->thumbnail_img = $request->thumbnail_img; + //Product Update + $product = (new ProductService)->update($request->except([ + '_token', 'tax_id', 'tax', 'tax_type' + ]), $product); - $tags = array(); - if ($request->tags[0] != null) { - foreach (json_decode($request->tags[0]) as $key => $tag) { - array_push($tags, $tag->value); - } - } - $product->tags = implode(',', $tags); - - $product->unit_price = $request->unit_price; - $product->purchase_price = $request->purchase_price; - $product->discount = $request->discount; - $product->discount_type = $request->discount_type; - - $product->meta_title = $request->meta_title; - $product->meta_description = $request->meta_description; - $product->meta_img = $request->meta_img; - $product->slug = strtolower($request->slug); - - $product->file_name = $request->file; - - // Delete From Product Stock + //Product Stock foreach ($product->stocks as $key => $stock) { $stock->delete(); } - if ($product->save()) { - $request->merge(['product_id' => $product->id]); - //VAT & Tax - if ($request->tax_id) { - ProductTax::where('product_id', $product->id)->delete(); - (new ProductTaxService)->store($request->only([ - 'tax_id', 'tax', 'tax_type', 'product_id' - ])); - } - // Insert Into Product Stock - $product_stock = new ProductStock; - $product_stock->product_id = $product->id; - $product_stock->variant = ''; - $product_stock->price = $request->unit_price; - $product_stock->sku = ''; - $product_stock->qty = 0; - $product_stock->save(); + $request->merge(['product_id' => $product->id,'current_stock' => 0]); - // Product Translations - $product_translation = ProductTranslation::firstOrNew(['lang' => $request->lang, 'product_id' => $product->id]); - $product_translation->name = $request->name; - $product_translation->description = $request->description; - $product_translation->save(); + (new ProductStockService)->store($request->only([ + 'unit_price', 'current_stock', 'product_id' + ]), $product); - flash(translate('Digital Product has been updated successfully'))->success(); - return back(); - } else { - flash(translate('Something went wrong'))->error(); - return back(); + //VAT & Tax + if ($request->tax_id) { + ProductTax::where('product_id', $product->id)->delete(); + (new ProductTaxService)->store($request->only([ + 'tax_id', 'tax', 'tax_type', 'product_id' + ])); } + + // Product Translations + ProductTranslation::updateOrCreate( + $request->only(['lang', 'product_id']), + $request->only(['name', 'description']) + ); + + flash(translate('Product has been updated successfully'))->success(); + + Artisan::call('view:clear'); + Artisan::call('cache:clear'); + return back(); } /** @@ -239,15 +183,16 @@ class DigitalProductController extends Controller */ public function destroy($id) { - $product = Product::findOrFail($id); - - $product->product_translations()->delete(); - $product->stocks()->delete(); - - Product::destroy($id); - - flash(translate('Product has been deleted successfully'))->success(); - return redirect()->route('digitalproducts.index'); + $product_destroy = (new ProductService)->destroy($id); + + if ($product_destroy) { + flash(translate('Product has been deleted successfully'))->success(); + Artisan::call('view:clear'); + Artisan::call('cache:clear'); + } else { + flash(translate('Something went wrong'))->error(); + } + return back(); } diff --git a/desarrollo/app/Http/Controllers/HomeController.php b/desarrollo/app/Http/Controllers/HomeController.php index 78430401..ac1e71e6 100644 --- a/desarrollo/app/Http/Controllers/HomeController.php +++ b/desarrollo/app/Http/Controllers/HomeController.php @@ -44,15 +44,50 @@ class HomeController extends Controller return Category::where('featured', 1)->get(); }); - $todays_deal_products = Cache::rememberForever('todays_deal_products', function () { - return filter_products(Product::where('todays_deal', '1'))->get(); - }); + return view('frontend.index', compact('featured_categories')); + } + + public function load_todays_deal_section() + { + $todays_deal_products = filter_products(Product::where('todays_deal', '1'))->get(); + // dd($todays_deal_products); + return view('frontend.partials.todays_deal', compact('todays_deal_products')); + } + public function load_newest_product_section() + { $newest_products = Cache::remember('newest_products', 3600, function () { return filter_products(Product::latest())->limit(12)->get(); }); + return view('frontend.partials.newest_products_section', compact('newest_products')); + } - return view('frontend.index', compact('featured_categories', 'todays_deal_products', 'newest_products')); + public function load_featured_section() + { + return view('frontend.partials.featured_products_section'); + } + + public function load_best_selling_section() + { + return view('frontend.partials.best_selling_section'); + } + + public function load_auction_products_section() + { + if (!addon_is_activated('auction')) { + return; + } + return view('auction.frontend.auction_products_section'); + } + + public function load_home_categories_section() + { + return view('frontend.partials.home_categories_section'); + } + + public function load_best_sellers_section() + { + return view('frontend.partials.best_sellers_section'); } public function login() @@ -69,29 +104,29 @@ class HomeController extends Controller return view('frontend.user_login'); } - // public function registration(Request $request) - // { - // if (Auth::check()) { - // return redirect()->route('home'); - // } - // if ($request->has('referral_code') && addon_is_activated('affiliate_system')) { - // try { - // $affiliate_validation_time = AffiliateConfig::where('type', 'validation_time')->first(); - // $cookie_minute = 30 * 24; - // if ($affiliate_validation_time) { - // $cookie_minute = $affiliate_validation_time->value * 60; - // } + public function registration(Request $request) + { + if (Auth::check()) { + return redirect()->route('home'); + } + if ($request->has('referral_code') && addon_is_activated('affiliate_system')) { + try { + $affiliate_validation_time = AffiliateConfig::where('type', 'validation_time')->first(); + $cookie_minute = 30 * 24; + if ($affiliate_validation_time) { + $cookie_minute = $affiliate_validation_time->value * 60; + } - // Cookie::queue('referral_code', $request->referral_code, $cookie_minute); - // $referred_by_user = User::where('referral_code', $request->referral_code)->first(); + Cookie::queue('referral_code', $request->referral_code, $cookie_minute); + $referred_by_user = User::where('referral_code', $request->referral_code)->first(); - // $affiliateController = new AffiliateController; - // $affiliateController->processAffiliateStats($referred_by_user->id, 1, 0, 0, 0); - // } catch (\Exception $e) { - // } - // } - // return view('frontend.user_registration'); - // } + $affiliateController = new AffiliateController; + $affiliateController->processAffiliateStats($referred_by_user->id, 1, 0, 0, 0); + } catch (\Exception $e) { + } + } + return view('frontend.user_registration'); + } public function cart_login(Request $request) { @@ -133,9 +168,6 @@ class HomeController extends Controller * * @return \Illuminate\Http\Response */ - - //AQUI AGREGO LOS DIFERENTES TIPOS DE USUARIOS - public function dashboard() { if (Auth::user()->user_type == 'seller') { @@ -148,8 +180,6 @@ class HomeController extends Controller return view('frontend.user.customer.dashboard'); } elseif (Auth::user()->user_type == 'delivery_boy') { return view('delivery_boys.dashboard'); - } elseif (Auth::user()->user_type == 'repair') { - return view('workshop.dashboard'); } else { abort(404); } @@ -202,34 +232,6 @@ class HomeController extends Controller } } - public function load_featured_section() - { - return view('frontend.partials.featured_products_section'); - } - - public function load_best_selling_section() - { - return view('frontend.partials.best_selling_section'); - } - - public function load_auction_products_section() - { - if (!addon_is_activated('auction')) { - return; - } - return view('auction.frontend.auction_products_section'); - } - - public function load_home_categories_section() - { - return view('frontend.partials.home_categories_section'); - } - - public function load_best_sellers_section() - { - return view('frontend.partials.best_sellers_section'); - } - public function trackOrder(Request $request) { if ($request->has('order_code')) { @@ -595,37 +597,37 @@ class HomeController extends Controller return back(); } - // public function send_email_change_verification_mail($request, $email) - // { - // $response['status'] = 0; - // $response['message'] = 'Unknown'; + public function send_email_change_verification_mail($request, $email) + { + $response['status'] = 0; + $response['message'] = 'Unknown'; - // $verification_code = Str::random(32); + $verification_code = Str::random(32); - // $array['subject'] = translate('Email Verification'); - // $array['from'] = env('MAIL_FROM_ADDRESS'); - // $array['content'] = translate('Verify your account'); - // $array['link'] = route('email_change.callback') . '?new_email_verificiation_code=' . $verification_code . '&email=' . $email; - // $array['sender'] = Auth::user()->name; - // $array['details'] = translate("Email Second"); + $array['subject'] = translate('Email Verification'); + $array['from'] = env('MAIL_FROM_ADDRESS'); + $array['content'] = translate('Verify your account'); + $array['link'] = route('email_change.callback') . '?new_email_verificiation_code=' . $verification_code . '&email=' . $email; + $array['sender'] = Auth::user()->name; + $array['details'] = translate("Email Second"); - // $user = Auth::user(); - // $user->new_email_verificiation_code = $verification_code; - // $user->save(); + $user = Auth::user(); + $user->new_email_verificiation_code = $verification_code; + $user->save(); - // try { - // Mail::to($email)->queue(new SecondEmailVerifyMailManager($array)); + try { + Mail::to($email)->queue(new SecondEmailVerifyMailManager($array)); - // $response['status'] = 1; - // $response['message'] = translate("Your verification mail has been Sent to your email."); - // } catch (\Exception $e) { - // // return $e->getMessage(); - // $response['status'] = 0; - // $response['message'] = $e->getMessage(); - // } + $response['status'] = 1; + $response['message'] = translate("Your verification mail has been Sent to your email."); + } catch (\Exception $e) { + // return $e->getMessage(); + $response['status'] = 0; + $response['message'] = $e->getMessage(); + } - // return $response; - // } + return $response; + } public function email_change_callback(Request $request) { @@ -697,7 +699,7 @@ class HomeController extends Controller public function todays_deal() { $todays_deal_products = Cache::rememberForever('todays_deal_products', function () { - return filter_products(Product::where('todays_deal', '1'))->get(); + return filter_products(Product::with('thumbnail')->where('todays_deal', '1'))->get(); }); return view("frontend.todays_deal", compact('todays_deal_products')); diff --git a/desarrollo/app/Http/Controllers/LanguageController.php b/desarrollo/app/Http/Controllers/LanguageController.php index a1d00085..63899cf9 100644 --- a/desarrollo/app/Http/Controllers/LanguageController.php +++ b/desarrollo/app/Http/Controllers/LanguageController.php @@ -85,10 +85,10 @@ class LanguageController extends Controller } $language = Language::findOrFail($id); if (env('DEFAULT_LANGUAGE') == $language->code && env('DEFAULT_LANGUAGE') != $request->code) { - flash(translate('Default language code can not be edited'))->error(); + flash(translate('Default language code cannot be edited'))->error(); return back(); } elseif ($language->code == 'en' && $request->code != 'en') { - flash(translate('English language code can not be edited'))->error(); + flash(translate('English language code cannot be edited'))->error(); return back(); } @@ -129,7 +129,7 @@ class LanguageController extends Controller { $language = Language::findOrFail($request->id); if($language->code == env('DEFAULT_LANGUAGE') && $request->status == 0) { - flash(translate('Default language can not be inactive'))->error(); + flash(translate('Default language cannot be inactive'))->error(); return 1; } $language->status = $request->status; @@ -155,9 +155,9 @@ class LanguageController extends Controller { $language = Language::findOrFail($id); if (env('DEFAULT_LANGUAGE') == $language->code) { - flash(translate('Default language can not be deleted'))->error(); + flash(translate('Default language cannot be deleted'))->error(); } elseif($language->code == 'en') { - flash(translate('English language can not be deleted'))->error(); + flash(translate('English language cannot be deleted'))->error(); } else { if($language->code == Session::get('locale')){ diff --git a/desarrollo/app/Http/Controllers/Payment/RazorpayController.php b/desarrollo/app/Http/Controllers/Payment/RazorpayController.php index 1fea872e..b6400b22 100644 --- a/desarrollo/app/Http/Controllers/Payment/RazorpayController.php +++ b/desarrollo/app/Http/Controllers/Payment/RazorpayController.php @@ -77,7 +77,7 @@ class RazorpayController extends Controller $response = $api->payment->fetch($input['razorpay_payment_id'])->capture(array('amount' => $payment['amount'])); $payment_detalis = json_encode(array('id' => $response['id'], 'method' => $response['method'], 'amount' => $response['amount'], 'currency' => $response['currency'])); } catch (\Exception $e) { - return $e->getMessage(); + // return $e->getMessage(); \Session::put('error', $e->getMessage()); return redirect()->back(); } diff --git a/desarrollo/app/Http/Controllers/ProductController.php b/desarrollo/app/Http/Controllers/ProductController.php index 899db357..0e4f23e2 100644 --- a/desarrollo/app/Http/Controllers/ProductController.php +++ b/desarrollo/app/Http/Controllers/ProductController.php @@ -11,6 +11,9 @@ use App\Models\Category; use App\Models\ProductTax; use App\Models\AttributeValue; use App\Models\Cart; +use App\Models\Wishlist; +use App\Models\User; +use App\Notifications\ShopProductNotification; use Carbon\Carbon; use Combinations; use CoreComponentRepository; @@ -21,6 +24,7 @@ use App\Services\ProductService; use App\Services\ProductTaxService; use App\Services\ProductFlashDealService; use App\Services\ProductStockService; +use Illuminate\Support\Facades\Notification; class ProductController extends Controller { @@ -91,7 +95,7 @@ class ProductController extends Controller * * @return \Illuminate\Http\Response */ - public function seller_products(Request $request) + public function seller_products(Request $request, $product_type) { $col_name = null; $query = null; @@ -114,11 +118,16 @@ class ProductController extends Controller $products = $products->orderBy($col_name, $query); $sort_type = $request->type; } - - $products = $products->where('digital', 0)->orderBy('created_at', 'desc')->paginate(15); + $products = $product_type == 'physical' ? $products->where('digital', 0) : $products->where('digital', 1); + $products = $products->orderBy('created_at', 'desc')->paginate(15); $type = 'Seller'; + if($product_type == 'digital'){ + return view('backend.product.digital_products.index', compact('products', 'sort_search', 'type')); + } return view('backend.product.products.index', compact('products', 'type', 'col_name', 'query', 'seller_id', 'sort_search')); + + } public function all_products(Request $request) @@ -127,7 +136,7 @@ class ProductController extends Controller $query = null; $seller_id = null; $sort_search = null; - $products = Product::orderBy('created_at', 'desc')->where('auction_product', 0)->where('wholesale_product', 0); + $products = Product::where('auction_product', 0)->where('wholesale_product', 0); if ($request->has('user_id') && $request->user_id != null) { $products = $products->where('user_id', $request->user_id); $seller_id = $request->user_id; @@ -148,7 +157,7 @@ class ProductController extends Controller $sort_type = $request->type; } - $products = $products->paginate(15); + $products = $products->orderBy('created_at', 'desc')->paginate(15); $type = 'All'; return view('backend.product.products.index', compact('products', 'type', 'col_name', 'query', 'seller_id', 'sort_search')); @@ -358,6 +367,7 @@ class ProductController extends Controller if (Product::destroy($id)) { Cart::where('product_id', $id)->delete(); + Wishlist::where('product_id', $id)->delete(); flash(translate('Product has been deleted successfully'))->success(); @@ -466,6 +476,11 @@ class ProductController extends Controller $product->save(); + $product_type = $product->digital == 0 ? 'physical' : 'digital'; + $status = $request->approved == 1 ? 'approved' : 'rejected'; + $users = User::findMany([User::where('user_type', 'admin')->first()->id, $product->user_id]); + Notification::send($users, new ShopProductNotification($product_type, $product, $status)); + Artisan::call('view:clear'); Artisan::call('cache:clear'); return 1; diff --git a/desarrollo/app/Http/Controllers/PurchaseHistoryController.php b/desarrollo/app/Http/Controllers/PurchaseHistoryController.php index b626ee9e..ed8ba780 100644 --- a/desarrollo/app/Http/Controllers/PurchaseHistoryController.php +++ b/desarrollo/app/Http/Controllers/PurchaseHistoryController.php @@ -2,11 +2,14 @@ namespace App\Http\Controllers; +use App\Models\Cart; use DB; use Auth; use App\Models\Order; use App\Models\Upload; use App\Models\Product; +use App\Utility\CartUtility; +use Cookie; use Illuminate\Http\Request; class PurchaseHistoryController extends Controller @@ -25,14 +28,14 @@ class PurchaseHistoryController extends Controller public function digital_index() { $orders = DB::table('orders') - ->orderBy('code', 'desc') - ->join('order_details', 'orders.id', '=', 'order_details.order_id') - ->join('products', 'order_details.product_id', '=', 'products.id') - ->where('orders.user_id', Auth::user()->id) - ->where('products.digital', '1') - ->where('order_details.payment_status', 'paid') - ->select('order_details.id') - ->paginate(15); + ->orderBy('code', 'desc') + ->join('order_details', 'orders.id', '=', 'order_details.order_id') + ->join('products', 'order_details.product_id', '=', 'products.id') + ->where('orders.user_id', Auth::user()->id) + ->where('products.digital', '1') + ->where('order_details.payment_status', 'paid') + ->select('order_details.id') + ->paginate(15); return view('frontend.user.digital_purchase_history', compact('orders')); } @@ -67,7 +70,7 @@ class PurchaseHistoryController extends Controller } } } else { - flash(translate('You cannot download this product at this product.'))->success(); + flash(translate('You cannot download this product.'))->success(); } } @@ -80,7 +83,7 @@ class PurchaseHistoryController extends Controller public function order_cancel($id) { $order = Order::where('id', $id)->where('user_id', auth()->user()->id)->first(); - if($order && ($order->delivery_status == 'pending' && $order->payment_status == 'unpaid')) { + if ($order && ($order->delivery_status == 'pending' && $order->payment_status == 'unpaid')) { $order->delivery_status = 'cancelled'; $order->save(); @@ -97,4 +100,87 @@ class PurchaseHistoryController extends Controller return back(); } + + public function re_order($id) + { + $user_id = Auth::user()->id; + + // if Cart has auction product check + $carts = Cart::where('user_id', $user_id)->get(); + foreach ($carts as $cartItem) { + $cart_product = Product::where('id', $cartItem['product_id'])->first(); + if ($cart_product->auction_product == 1) { + flash(translate('Remove auction product from cart to add products.'))->error(); + return back(); + } + } + + $order = Order::findOrFail(decrypt($id)); + $success_msgs = []; + $failed_msgs = []; + $data['user_id'] = $user_id; + foreach ($order->orderDetails as $key => $orderDetail) { + $product = $orderDetail->product; + + if ( + !$product || $product->published == 0 || + $product->approved == 0 || ($product->wholesale_product && !addon_is_activated("wholesale")) + ) { + array_push($failed_msgs, translate('An item from this order is not available now.')); + continue; + } + + if ($product->auction_product == 0) { + + // If product min qty is greater then the ordered qty, then update the order qty + $order_qty = $orderDetail->quantity; + if ($product->digital == 0 && $order_qty < $product->min_qty) { + $order_qty = $product->min_qty; + } + + $cart = Cart::firstOrNew([ + 'variation' => $orderDetail->variation, + 'user_id' => auth()->user()->id, + 'product_id' => $product->id + ]); + + $product_stock = $product->stocks->where('variant', $orderDetail->variation)->first(); + if ($product_stock) { + $quantity = 1; + if ($product->digital != 1) { + $quantity = $product_stock->qty; + if ($quantity > 0) { + if ($cart->exists) { + $order_qty = $cart->quantity + $order_qty; + } + //If order qty is greater then the product stock, set order qty = current product stock qty + $quantity = $quantity >= $order_qty ? $order_qty : $quantity; + } else { + array_push($failed_msgs, $product->getTranslation('name') . ' ' . translate(' is stock out.')); + continue; + } + } + $price = CartUtility::get_price($product, $product_stock, $quantity); + $tax = CartUtility::tax_calculation($product, $price); + + CartUtility::save_cart_data($cart, $product, $price, $tax, $quantity); + array_push($success_msgs, $product->getTranslation('name') . ' ' . translate('added to cart.')); + } else { + array_push($failed_msgs, $product->getTranslation('name') . ' ' . translate('is stock out.')); + } + } else { + array_push($failed_msgs, translate('You can not re order an auction product.')); + break; + } + } + + foreach ($failed_msgs as $msg) { + flash($msg)->warning(); + } + foreach ($success_msgs as $msg) { + flash($msg)->success(); + } + + return redirect()->route('cart'); + } } diff --git a/desarrollo/app/Http/Controllers/Seller/AddressController.php b/desarrollo/app/Http/Controllers/Seller/AddressController.php index 8f5d9051..c007f1ed 100644 --- a/desarrollo/app/Http/Controllers/Seller/AddressController.php +++ b/desarrollo/app/Http/Controllers/Seller/AddressController.php @@ -89,7 +89,7 @@ class AddressController extends Controller $address->delete(); return back(); } - flash(translate('Default address can not be deleted'))->warning(); + flash(translate('Default address cannot be deleted'))->warning(); return back(); } diff --git a/desarrollo/app/Http/Controllers/Seller/DigitalProductController.php b/desarrollo/app/Http/Controllers/Seller/DigitalProductController.php index 26d34004..e4bb82ed 100644 --- a/desarrollo/app/Http/Controllers/Seller/DigitalProductController.php +++ b/desarrollo/app/Http/Controllers/Seller/DigitalProductController.php @@ -4,14 +4,22 @@ namespace App\Http\Controllers\Seller; use Illuminate\Http\Request; use App\Models\Product; -use App\Models\ProductStock; use App\Models\Category; +use App\Models\ProductStock; use App\Models\ProductTax; use App\Models\ProductTranslation; use App\Models\Upload; +use Artisan; +use App\Models\User; use App\Services\ProductTaxService; +use App\Notifications\ShopProductNotification; +use Illuminate\Support\Facades\Notification; use Auth; +use App\Services\ProductService; + +use App\Services\ProductStockService; + class DigitalProductController extends Controller { /** @@ -60,33 +68,34 @@ class DigitalProductController extends Controller return redirect()->route('seller.digitalproducts'); } } + + // Product Store + $product = (new ProductService)->store($request->except([ + '_token', 'tax_id', 'tax', 'tax_type' + ])); - $product = new Product; - $product->name = $request->name; - $product->added_by = 'seller'; - $product->user_id = Auth::user()->id; - $product->category_id = $request->category_id; - $product->digital = 1; - $product->photos = $request->photos; - $product->thumbnail_img = $request->thumbnail_img; + $request->merge(['product_id' => $product->id, 'current_stock' => 0]); - $tags = array(); - if($request->tags[0] != null){ - foreach (json_decode($request->tags[0]) as $key => $tag) { - array_push($tags, $tag->value); - } + //Product Stock + (new ProductStockService)->store($request->only([ + 'unit_price', 'current_stock', 'product_id' + ]), $product); + + //VAT & Tax + if ($request->tax_id) { + (new ProductTaxService)->store($request->only([ + 'tax_id', 'tax', 'tax_type', 'product_id' + ])); } - $product->tags = implode(',', $tags); - $product->description = $request->description; - $product->unit_price = $request->unit_price; - $product->purchase_price = $request->purchase_price; - $product->discount = $request->discount; - $product->discount_type = $request->discount_type; + // Product Translations + $request->merge(['lang' => env('DEFAULT_LANGUAGE')]); + ProductTranslation::create($request->only([ + 'lang', 'name', 'unit', 'description', 'product_id' + ])); + + flash(translate('Product has been inserted successfully'))->success(); - $product->meta_title = $request->meta_title; - $product->meta_description = $request->meta_description; - $product->meta_img = $request->meta_img; $product->file_name = $request->file; @@ -101,7 +110,7 @@ class DigitalProductController extends Controller ])); } - $product_stock = new ProductStock; + $product_stock = new ProductStock(); $product_stock->product_id = $product->id; $product_stock->variant = ''; $product_stock->price = $request->unit_price; @@ -115,13 +124,21 @@ class DigitalProductController extends Controller $product_translation->description = $request->description; $product_translation->save(); + if(get_setting('product_approve_by_admin') == 1){ + $users = User::findMany([auth()->user()->id, User::where('user_type', 'admin')->first()->id]); + Notification::send($users, new ShopProductNotification('digital', $product)); + } + flash(translate('Digital Product has been inserted successfully'))->success(); + Artisan::call('view:clear'); + Artisan::call('cache:clear'); return redirect()->route('seller.digitalproducts'); } else{ flash(translate('Something went wrong'))->error(); return back(); } + } /** @@ -145,84 +162,44 @@ class DigitalProductController extends Controller * @param int $id * @return \Illuminate\Http\Response */ - public function update(Request $request, $id) + public function update(Request $request, Product $product) { - $product = Product::findOrFail($id); - if($request->lang == env("DEFAULT_LANGUAGE")){ - $product->name = $request->name; - $product->description = $request->description; - } + //Product Update + $product = (new ProductService)->update($request->except([ + '_token', 'tax_id', 'tax', 'tax_type' + ]), $product); - $product->category_id = $request->category_id; - $product->photos = $request->photos; - $product->thumbnail_img = $request->thumbnail_img; - - $tags = array(); - if($request->tags[0] != null){ - foreach (json_decode($request->tags[0]) as $key => $tag) { - array_push($tags, $tag->value); - } - } - $product->tags = implode(',', $tags); - - $product->unit_price = $request->unit_price; - $product->purchase_price = $request->purchase_price; - $product->discount = $request->discount; - $product->discount_type = $request->discount_type; - - $product->meta_title = $request->meta_title; - $product->meta_description = $request->meta_description; - $product->meta_img = $request->meta_img; - $product->slug = strtolower($request->slug); - - // if($request->hasFile('file')){ - // $product->file_name = $request->file('file')->getClientOriginalName(); - // $product->file_path = $request->file('file')->store('uploads/products/digital'); - // } - - $product->file_name = $request->file; - - // Delete From Product Stock + //Product Stock foreach ($product->stocks as $key => $stock) { $stock->delete(); } - - if($product->save()){ - $request->merge(['product_id' => $product->id]); - //VAT & Tax - if ($request->tax_id) { - ProductTax::where('product_id', $product->id)->delete(); - (new ProductTaxService)->store($request->only([ - 'tax_id', 'tax', 'tax_type', 'product_id' - ])); - } - // Insert Into Product Stock - $product_stock = new ProductStock; - $product_stock->product_id = $product->id; - $product_stock->variant = ''; - $product_stock->price = $request->unit_price; - $product_stock->sku = ''; - $product_stock->qty = 0; - $product_stock->save(); - - // Product Translations - $product_translation = ProductTranslation::firstOrNew(['lang' => $request->lang, 'product_id' => $product->id]); - $product_translation->name = $request->name; - $product_translation->description = $request->description; - $product_translation->save(); - flash(translate('Digital Product has been updated successfully'))->success(); - if(Auth::user()->user_type == 'admin' || Auth::user()->user_type == 'staff'){ - return back(); - } - else{ - return back(); - } - } - else{ - flash(translate('Something went wrong'))->error(); - return back(); + $request->merge(['product_id' => $product->id,'current_stock' => 0]); + + (new ProductStockService)->store($request->only([ + 'unit_price', 'current_stock', 'product_id' + ]), $product); + + //VAT & Tax + if ($request->tax_id) { + ProductTax::where('product_id', $product->id)->delete(); + (new ProductTaxService)->store($request->only([ + 'tax_id', 'tax', 'tax_type', 'product_id' + ])); } + + // Product Translations + ProductTranslation::updateOrCreate( + $request->only(['lang', 'product_id']), + $request->only(['name', 'description']) + ); + + flash(translate('Product has been updated successfully'))->success(); + + Artisan::call('view:clear'); + Artisan::call('cache:clear'); + + return back(); } /** @@ -233,15 +210,16 @@ class DigitalProductController extends Controller */ public function destroy($id) { - $product = Product::findOrFail($id); - - $product->product_translations()->delete(); - $product->stocks()->delete(); - - Product::destroy($id); - - flash(translate('Product has been deleted successfully'))->success(); - return redirect()->route('seller.digitalproducts'); + $product_destroy = (new ProductService)->destroy($id); + + if ($product_destroy) { + flash(translate('Product has been deleted successfully'))->success(); + Artisan::call('view:clear'); + Artisan::call('cache:clear'); + } else { + flash(translate('Something went wrong'))->error(); + } + return back(); } diff --git a/desarrollo/app/Http/Controllers/Seller/ProductController.php b/desarrollo/app/Http/Controllers/Seller/ProductController.php index 14f5caf2..79053f89 100644 --- a/desarrollo/app/Http/Controllers/Seller/ProductController.php +++ b/desarrollo/app/Http/Controllers/Seller/ProductController.php @@ -11,6 +11,9 @@ use App\Models\Category; use App\Models\Product; use App\Models\ProductTax; use App\Models\ProductTranslation; +use App\Models\Wishlist; +use App\Models\User; +use App\Notifications\ShopProductNotification; use Carbon\Carbon; use Combinations; use Artisan; @@ -21,6 +24,7 @@ use App\Services\ProductService; use App\Services\ProductTaxService; use App\Services\ProductFlashDealService; use App\Services\ProductStockService; +use Illuminate\Support\Facades\Notification; class ProductController extends Controller { @@ -55,15 +59,8 @@ class ProductController extends Controller public function create(Request $request) { - if (addon_is_activated('seller_subscription')) { - if (seller_package_validity_check()) { - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - return view('seller.product.products.create', compact('categories')); - } else { + if (!seller_package_validity_check()) { flash(translate('Please upgrade your package.'))->warning(); return back(); } @@ -107,6 +104,11 @@ class ProductController extends Controller 'lang', 'name', 'unit', 'description', 'product_id' ])); + if(get_setting('product_approve_by_admin') == 1){ + $users = User::findMany([auth()->user()->id, User::where('user_type', 'admin')->first()->id]); + Notification::send($users, new ShopProductNotification('physical', $product)); + } + flash(translate('Product has been inserted successfully'))->success(); Artisan::call('view:clear'); @@ -254,11 +256,7 @@ class ProductController extends Controller $product->published = $request->status; if (addon_is_activated('seller_subscription') && $request->status == 1) { $shop = $product->user->shop; - if ( - $shop->package_invalid_at == null - || Carbon::now()->diffInDays(Carbon::parse($shop->package_invalid_at), false) < 0 - || $shop->product_upload_limit <= $shop->user->products()->where('published', 1)->count() - ) { + if (!seller_package_validity_check()) { return 2; } } @@ -323,6 +321,7 @@ class ProductController extends Controller if (Product::destroy($id)) { Cart::where('product_id', $id)->delete(); + Wishlist::where('product_id', $id)->delete(); flash(translate('Product has been deleted successfully'))->success(); diff --git a/desarrollo/app/Http/Controllers/Seller/SellerWithdrawRequestController.php b/desarrollo/app/Http/Controllers/Seller/SellerWithdrawRequestController.php index ab0cf874..b1ec18e2 100644 --- a/desarrollo/app/Http/Controllers/Seller/SellerWithdrawRequestController.php +++ b/desarrollo/app/Http/Controllers/Seller/SellerWithdrawRequestController.php @@ -3,7 +3,10 @@ namespace App\Http\Controllers\Seller; use Illuminate\Http\Request; +use Illuminate\Support\Facades\Notification; +use App\Notifications\PayoutNotification; use App\Models\SellerWithdrawRequest; +use App\Models\User; use Auth; class SellerWithdrawRequestController extends Controller @@ -35,6 +38,10 @@ class SellerWithdrawRequestController extends Controller $seller_withdraw_request->status = '0'; $seller_withdraw_request->viewed = '0'; if ($seller_withdraw_request->save()) { + + $users = User::findMany([auth()->user()->id, User::where('user_type', 'admin')->first()->id]); + Notification::send($users, new PayoutNotification(Auth::user(), $request->amount, 'pending')); + flash(translate('Request has been sent successfully'))->success(); return redirect()->route('seller.money_withdraw_requests.index'); } diff --git a/desarrollo/app/Http/Controllers/Seller/ShopController.php b/desarrollo/app/Http/Controllers/Seller/ShopController.php index 787e02c8..ad9e9eeb 100644 --- a/desarrollo/app/Http/Controllers/Seller/ShopController.php +++ b/desarrollo/app/Http/Controllers/Seller/ShopController.php @@ -5,7 +5,10 @@ namespace App\Http\Controllers\Seller; use App\Models\BusinessSetting; use Illuminate\Http\Request; use App\Models\Shop; +use App\Models\User; +use App\Notifications\ShopVerificationNotification; use Auth; +use Illuminate\Support\Facades\Notification; class ShopController extends Controller { @@ -51,9 +54,9 @@ class ShopController extends Controller $shop->youtube = $request->youtube; } elseif ( $request->has('top_banner') || - $request->has('sliders') || - $request->has('banner_full_width_1') || - $request->has('banners_half_width') || + $request->has('sliders') || + $request->has('banner_full_width_1') || + $request->has('banners_half_width') || $request->has('banner_full_width_2') ) { $shop->top_banner = $request->top_banner; @@ -72,7 +75,7 @@ class ShopController extends Controller return back(); } - public function verify_form () + public function verify_form() { if (Auth::user()->shop->verification_info == null) { $shop = Auth::user()->shop; @@ -112,6 +115,9 @@ class ShopController extends Controller $shop = Auth::user()->shop; $shop->verification_info = json_encode($data); if ($shop->save()) { + $users = User::findMany([auth()->user()->id, User::where('user_type', 'admin')->first()->id]); + Notification::send($users, new ShopVerificationNotification($shop)); + flash(translate('Your shop verification request has been submitted successfully!'))->success(); return redirect()->route('seller.dashboard'); } diff --git a/desarrollo/app/Http/Controllers/SellerController.php b/desarrollo/app/Http/Controllers/SellerController.php index e326d18b..0e58fb4c 100644 --- a/desarrollo/app/Http/Controllers/SellerController.php +++ b/desarrollo/app/Http/Controllers/SellerController.php @@ -11,11 +11,14 @@ use App\Models\Order; use App\Models\OrderDetail; use Illuminate\Support\Facades\Hash; use App\Notifications\EmailVerificationNotification; +use App\Notifications\ShopVerificationNotification; use Cache; +use Illuminate\Support\Facades\Notification; class SellerController extends Controller { - public function __construct() { + public function __construct() + { // Staff Permission Check $this->middleware(['permission:view_all_seller'])->only('index'); $this->middleware(['permission:view_seller_profile'])->only('profile_modal'); @@ -36,9 +39,9 @@ class SellerController extends Controller $sort_search = null; $approved = null; $shops = Shop::whereIn('user_id', function ($query) { - $query->select('id') - ->from(with(new User)->getTable()); - })->latest(); + $query->select('id') + ->from(with(new User)->getTable()); + })->latest(); if ($request->has('search')) { $sort_search = $request->search; @@ -209,13 +212,14 @@ class SellerController extends Controller { $shop = Shop::findOrFail($id); $shop->verification_status = 1; - if ($shop->save()) { - Cache::forget('verified_sellers_id'); - flash(translate('Seller has been approved successfully'))->success(); - return redirect()->route('sellers.index'); - } - flash(translate('Something went wrong'))->error(); - return back(); + $shop->save(); + Cache::forget('verified_sellers_id'); + + $users = User::findMany([$shop->user->id, User::where('user_type', 'admin')->first()->id]); + Notification::send($users, new ShopVerificationNotification($shop, 'approved')); + + flash(translate('Seller has been approved successfully'))->success(); + return redirect()->route('sellers.index'); } public function reject_seller($id) @@ -223,13 +227,14 @@ class SellerController extends Controller $shop = Shop::findOrFail($id); $shop->verification_status = 0; $shop->verification_info = null; - if ($shop->save()) { - Cache::forget('verified_sellers_id'); - flash(translate('Seller verification request has been rejected successfully'))->success(); - return redirect()->route('sellers.index'); - } - flash(translate('Something went wrong'))->error(); - return back(); + $shop->save(); + Cache::forget('verified_sellers_id'); + + $users = User::findMany([$shop->user->id, User::where('user_type', 'admin')->first()->id]); + Notification::send($users, new ShopVerificationNotification($shop, 'rejected')); + + flash(translate('Seller verification request has been rejected successfully'))->success(); + return redirect()->route('sellers.index'); } @@ -249,11 +254,13 @@ class SellerController extends Controller { $shop = Shop::findOrFail($request->id); $shop->verification_status = $request->status; - if ($shop->save()) { - Cache::forget('verified_sellers_id'); - return 1; - } - return 0; + $shop->save(); + Cache::forget('verified_sellers_id'); + + $status = $request->status == 1 ? 'approved' : 'rejected'; + $users = User::findMany([$shop->user->id, User::where('user_type', 'admin')->first()->id]); + Notification::send($users, new ShopVerificationNotification($shop, $status)); + return 1; } public function login($id) diff --git a/desarrollo/app/Http/Controllers/ShopController.php b/desarrollo/app/Http/Controllers/ShopController.php index fddda12e..4b2c5be4 100644 --- a/desarrollo/app/Http/Controllers/ShopController.php +++ b/desarrollo/app/Http/Controllers/ShopController.php @@ -10,6 +10,7 @@ use App\Models\BusinessSetting; use Auth; use Hash; use App\Notifications\EmailVerificationNotification; +use Illuminate\Support\Facades\Notification; class ShopController extends Controller { @@ -27,8 +28,6 @@ class ShopController extends Controller public function index() { $shop = Auth::user()->shop; - - /* by joan */ return view('seller.shop', compact('shop')); } @@ -41,7 +40,7 @@ class ShopController extends Controller { if (Auth::check()) { if((Auth::user()->user_type == 'admin' || Auth::user()->user_type == 'customer')) { - flash(translate('Admin or Customer can not be a seller'))->error(); + flash(translate('Admin or Customer cannot be a seller'))->error(); return back(); } if(Auth::user()->user_type == 'seller'){ flash(translate('This user already a seller'))->error(); @@ -72,11 +71,11 @@ class ShopController extends Controller $shop->user_id = $user->id; $shop->name = $request->shop_name; $shop->address = $request->address; - $shop->slug = preg_replace('/\s+/', '-', str_replace("/"," ", $request->shop_name)); + $shop->slug = preg_replace('/\s+/', '-', str_replace("/", " ", $request->shop_name)); $shop->save(); - + auth()->login($user, false); - if (BusinessSetting::where('type', 'email_verification')->first()->value != 1) { + if (BusinessSetting::where('type', 'email_verification')->first()->value == 0) { $user->email_verified_at = date('Y-m-d H:m:s'); $user->save(); } else { diff --git a/desarrollo/app/Http/Controllers/TypeBusinessController.php b/desarrollo/app/Http/Controllers/TypeBusinessController.php index c7d77165..91bde8e0 100644 --- a/desarrollo/app/Http/Controllers/TypeBusinessController.php +++ b/desarrollo/app/Http/Controllers/TypeBusinessController.php @@ -4,6 +4,7 @@ namespace App\Http\Controllers; use App\Mail\VerificationEmail; use App\Models\Category; +use App\Models\CategoryTranslation; use App\Models\Shop; use App\Models\User; use Illuminate\Http\Request; @@ -25,9 +26,12 @@ class TypeBusinessController extends Controller public function index() { - $categories = Category::all(); + $categories = CategoryTranslation::all(); - return view('frontend.registro-comercio.views.business.index', compact('categories')); + $apiKey = env('GOOGLE_MAPS_API_KEY'); + + + return view('frontend.registro-comercio.views.business.index', compact('categories', 'apiKey')); } @@ -47,49 +51,100 @@ class TypeBusinessController extends Controller * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ - public function store(Request $request, User $user) + public function store(Request $request, User $user, Shop $shop) { + + // Validación de los campos de registro - $validator = Validator::make($request->all(), [ + // $validator = Validator::make($request->all(), [ + // 'name' => ['required'], + // 'address' => ['required'], + // 'categories_id' => ['required'], + // 'email' => ['required', 'string', 'email', 'max:255', 'unique:'.User::class, 'regex:/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.(com|do|net|com.do)$/'], + // 'password' => ['required', 'confirmed', Password::defaults()], + // 'terms' => ['required'], // Agrega esta línea para hacer el campo 'terms' requerido + // 'g-recaptcha-response' => ['required', function ($attribute, $value, $fail) { + // $recaptcha = new Recaptcha(env('RECAPTCHA_SECRET_KEY')); + // $recaptcha->verify($value); + // }], + // ]); + + $validator = Validator::make($request->all(), [ + 'name_user' => ['required'], 'name' => ['required'], 'address' => ['required'], 'categories_id' => ['required'], - 'email' => ['required', 'string', 'email', 'max:255', 'unique:'.User::class, 'regex:/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.(com|do|net|com.do)$/'], + 'email' => [ + 'required', + 'string', + 'email', + 'max:255', + 'unique:'.User::class, + //VALIDA EL TIPO DE extencion del dominio permitido + 'regex:/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.(com|do|net|com.do)$/', + //valida si el correo existe, a traves de los dns + //La función filter_var($value, FILTER_VALIDATE_EMAIL) verifica si la cadena de correo electrónico es una dirección de correo electrónico válida según el filtro FILTER_VALIDATE_EMAIL de PHP. + //La función checkdnsrr($domain, 'MX') verifica si el dominio del correo electrónico tiene registros MX en el sistema de nombres de dominio (DNS). Esto se hace utilizando la función checkdnsrr de PHP con el tipo de registro 'MX'. + //Los tipos de registro DNS válidos son: 'A', 'MX', 'NS', 'SOA', 'PTR', 'CNAME', 'AAAA', 'A6', 'SRV', 'NAPTR', 'TXT', 'ANY'. + function ($attribute, $value, $fail) { + $domain = explode('@', $value)[1]; + if (!filter_var($value, FILTER_VALIDATE_EMAIL) || !checkdnsrr($domain, 'MX')) { + $fail('El correo electrónico no existe.'); + } + }, + ], 'password' => ['required', 'confirmed', Password::defaults()], - 'terms' => ['required'], // Agrega esta línea para hacer el campo 'terms' requerido - 'g-recaptcha-response' => ['required', function ($attribute, $value, $fail) { - $recaptcha = new Recaptcha(env('RECAPTCHA_SECRET_KEY')); - $recaptcha->verify($value); - }], + 'terms' => ['required'], + 'g-recaptcha-response' => [ + 'required', + function ($attribute, $value, $fail) { + $recaptcha = new Recaptcha(env('RECAPTCHA_SECRET_KEY')); + $recaptcha->verify($value); + }, + ], ]); - // if ($validator->fails()) { - // // Si la validación falla, puedes redirigir o devolver una respuesta con los errores - // return redirect()->back()->withErrors($validator)->withInput(); - // } + if ($validator->fails()) { + // Si la validación falla, puedes redirigir o devolver una respuesta con los errores + return redirect()->back()->withErrors($validator)->withInput(); + } - // $confirmation_code = Str::random(25); + $confirmation_code = Str::random(25); - // $user = new User(); - // $user->email = $request->input('email'); - // $user->password = Hash::make($request->input('password')); - // $user->user_type = 'seller'; - // $user->confirmation_code = $confirmation_code; - // $user->save(); + $user = new User(); + $user->name = $request->input('name_user'); + $user->email = $request->input('email'); + $user->password = Hash::make($request->input('password')); + $user->user_type = 'seller'; + $user->confirmation_code = $confirmation_code; + $user->category_translation_id = $request->input('categories_id'); + $user->save(); + + // Guardar los campos en el modelo Shop + $shop->user_id = $user->id; + $shop->name = $request->name; + $shop->slug = Str::slug($request->name); // Genera el slug a partir del nombre + $shop->address = $request->address; + $shop->delivery_pickup_latitude = $request->latitude; + $shop->delivery_pickup_longitude = $request->longitude; + // Aquí puedes guardar otros campos si los tienes + + // Guardar el modelo Shop en la base de datos + $shop->save(); - // Mail::to($user->email)->send(new VerificationEmail($user)); + Mail::to($user->email)->send(new VerificationEmail($user)); - // // Intentar iniciar sesión automáticamente - // if (Auth::attempt($request->only('email', 'password'))) { - // if (Auth::user()->email_verified_at) { - // // La cuenta está verificada, redirige a la página deseada - // return redirect()->route('shop.view.signup.complete'); - // } else { - // // La cuenta no está verificada, redirige a la página de verificación de correo electrónico - // return redirect()->route('shop.view.email.verification'); - // } - // } + // Intentar iniciar sesión automáticamente + if (Auth::attempt($request->only('email', 'password'))) { + if (Auth::user()->email_verified_at) { + // La cuenta está verificada, redirige a la página deseada + return redirect()->route('seller.dashboard'); + } else { + // La cuenta no está verificada, redirige a la página de verificación de correo electrónico + return redirect()->route('shop.view.email.verification'); + } + } } /** @@ -137,41 +192,41 @@ class TypeBusinessController extends Controller // } - public function business_complete_index() - { - $user = auth()->user(); + // public function business_complete_index() + // { + // $user = auth()->user(); - return view('frontend.registro-comercio.views.business.business_complete', compact('user')); - } + // return view('frontend.registro-comercio.views.business.business_complete', compact('user')); + // } - public function business_complete_store(Request $request, Shop $shop) - { - // Validación de los campos - $validator = Validator::make($request->all(), [ - 'name' => ['required'], - 'address' => ['required'], - ]); + // public function business_complete_store(Request $request, Shop $shop) + // { + // // Validación de los campos + // $validator = Validator::make($request->all(), [ + // 'name' => ['required'], + // 'address' => ['required'], + // ]); - // Si la validación falla, puedes redirigir de vuelta con los errores - if ($validator->fails()) { - return redirect()->back()->withErrors($validator)->withInput(); - } + // // Si la validación falla, puedes redirigir de vuelta con los errores + // if ($validator->fails()) { + // return redirect()->back()->withErrors($validator)->withInput(); + // } - // Guardar los campos en el modelo Shop - $shop->user_id = $request->user()->id; - $shop->name = $request->name; - $shop->address = $request->address; - // Aquí puedes guardar otros campos si los tienes + // // Guardar los campos en el modelo Shop + // $shop->user_id = $request->user()->id; + // $shop->name = $request->name; + // $shop->address = $request->address; + // // Aquí puedes guardar otros campos si los tienes - // Guardar el modelo Shop en la base de datos - $shop->save(); + // // Guardar el modelo Shop en la base de datos + // $shop->save(); - // Marcar el campo "shop_verified_at" como verificado en el modelo User - $request->user()->shop_verified_at = now(); // Puedes usar la función "now()" para establecer la fecha y hora actual + // // Marcar el campo "shop_verified_at" como verificado en el modelo User + // $request->user()->shop_verified_at = now(); // Puedes usar la función "now()" para establecer la fecha y hora actual - // Guardar el modelo User en la base de datos - $request->user()->save(); + // // Guardar el modelo User en la base de datos + // $request->user()->save(); - return redirect()->route('seller.dashboard'); - } + // return redirect()->route('seller.dashboard'); + // } } diff --git a/desarrollo/app/Http/Controllers/TypeBuyerController.php b/desarrollo/app/Http/Controllers/TypeBuyerController.php index 3c341f86..3177198e 100644 --- a/desarrollo/app/Http/Controllers/TypeBuyerController.php +++ b/desarrollo/app/Http/Controllers/TypeBuyerController.php @@ -3,6 +3,7 @@ namespace App\Http\Controllers; use App\Mail\VerificationEmail; +use App\Models\Buyer; use App\Models\User; use Auth; use \ReCaptcha\ReCaptcha; @@ -23,6 +24,8 @@ class TypeBuyerController extends Controller */ public function index() { + + return view('frontend.registro-comercio.views.buyers.index'); } @@ -42,12 +45,16 @@ class TypeBuyerController extends Controller * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ - public function store(Request $request, User $user) + public function store(Request $request, User $user, Buyer $buyer) { + // Validación de los campos de registro $validator = Validator::make($request->all(), [ + 'name_user' => ['required'], 'email' => ['required', 'string', 'email', 'max:255', 'unique:'.User::class], 'password' => ['required', 'confirmed', Password::defaults()], + 'address' => ['required'], + 'terms' => ['required'], 'g-recaptcha-response' => ['required', function ($attribute, $value, $fail) { $recaptcha = new Recaptcha(env('RECAPTCHA_SECRET_KEY')); $recaptcha->verify($value); @@ -62,11 +69,23 @@ class TypeBuyerController extends Controller $confirmation_code = Str::random(25); $user = new User; + $user->name = $request->input('name_user'); $user->email = $request->input('email'); $user->password = Hash::make($request->input('password')); $user->user_type = 'customer'; $user->confirmation_code = $confirmation_code; $user->save(); + + + // Guardar los campos en el modelo Shop + $buyer->user_id = $user->id; + $buyer->address = $request->address; + $buyer->delivery_pickup_latitude = $request->latitude; + $buyer->delivery_pickup_longitude = $request->longitude; + // Aquí puedes guardar otros campos si los tienes + + // Guardar el modelo Shop en la base de datos + $buyer->save(); Mail::to($user->email)->send(new VerificationEmail($user)); diff --git a/desarrollo/app/Http/Controllers/TypeWorkshopController.php b/desarrollo/app/Http/Controllers/TypeWorkshopController.php index 48934ce4..c91d543f 100644 --- a/desarrollo/app/Http/Controllers/TypeWorkshopController.php +++ b/desarrollo/app/Http/Controllers/TypeWorkshopController.php @@ -3,6 +3,7 @@ namespace App\Http\Controllers; use App\Mail\VerificationEmail; +use App\Models\CategoryTranslation; use App\Models\Shop; use App\Models\User; use App\Models\Workshop; @@ -24,7 +25,10 @@ class TypeWorkshopController extends Controller */ public function index() { - return view('frontend.registro-comercio.views.workshops.index'); + + $categories = CategoryTranslation::all(); + + return view('frontend.registro-comercio.views.workshops.index', compact('categories')); } /** @@ -43,16 +47,42 @@ class TypeWorkshopController extends Controller * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ - public function store(Request $request, User $user) + public function store(Request $request, User $user, Workshop $workshop) { - // Validación de los campos de registro - $validator = Validator::make($request->all(), [ - 'email' => ['required', 'string', 'email', 'max:255', 'unique:'.User::class], + + $validator = Validator::make($request->all(), [ + 'name_user' => ['required'], + 'name' => ['required'], + 'address' => ['required'], + 'categories_id' => ['required'], + 'email' => [ + 'required', + 'string', + 'email', + 'max:255', + 'unique:'.User::class, + //VALIDA EL TIPO DE extencion del dominio permitido + 'regex:/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+.(com|do|net|com.do)$/', + //valida si el correo existe, a traves de los dns + //La función filter_var($value, FILTER_VALIDATE_EMAIL) verifica si la cadena de correo electrónico es una dirección de correo electrónico válida según el filtro FILTER_VALIDATE_EMAIL de PHP. + //La función checkdnsrr($domain, 'MX') verifica si el dominio del correo electrónico tiene registros MX en el sistema de nombres de dominio (DNS). Esto se hace utilizando la función checkdnsrr de PHP con el tipo de registro 'MX'. + //Los tipos de registro DNS válidos son: 'A', 'MX', 'NS', 'SOA', 'PTR', 'CNAME', 'AAAA', 'A6', 'SRV', 'NAPTR', 'TXT', 'ANY'. + function ($attribute, $value, $fail) { + $domain = explode('@', $value)[1]; + if (!filter_var($value, FILTER_VALIDATE_EMAIL) || !checkdnsrr($domain, 'MX')) { + $fail('El correo electrónico no existe.'); + } + }, + ], 'password' => ['required', 'confirmed', Password::defaults()], - 'g-recaptcha-response' => ['required', function ($attribute, $value, $fail) { - $recaptcha = new Recaptcha(env('RECAPTCHA_SECRET_KEY')); - $recaptcha->verify($value); - }], + 'terms' => ['required'], + 'g-recaptcha-response' => [ + 'required', + function ($attribute, $value, $fail) { + $recaptcha = new Recaptcha(env('RECAPTCHA_SECRET_KEY')); + $recaptcha->verify($value); + }, + ], ]); if ($validator->fails()) { @@ -60,14 +90,28 @@ class TypeWorkshopController extends Controller return redirect()->back()->withErrors($validator)->withInput(); } + //crear el token de verificacion de correo $confirmation_code = Str::random(25); $user = new User(); + $user->name = $request->input('name_user'); $user->email = $request->input('email'); $user->password = Hash::make($request->input('password')); $user->user_type = 'repair'; $user->confirmation_code = $confirmation_code; + $user->category_translation_id = $request->input('categories_id'); $user->save(); + + // Guardar los campos en el modelo Shop + $workshop->user_id = $user->id; + $workshop->name = $request->name; + $workshop->address = $request->address; + $workshop->delivery_pickup_latitude = $request->latitude; + $workshop->delivery_pickup_longitude = $request->longitude; + // Aquí puedes guardar otros campos si los tienes + + // Guardar el modelo Shop en la base de datos + $workshop->save(); Mail::to($user->email)->send(new VerificationEmail($user)); @@ -76,12 +120,72 @@ class TypeWorkshopController extends Controller if (Auth::attempt($request->only('email', 'password'))) { if (Auth::user()->email_verified_at) { // La cuenta está verificada, redirige a la página deseada - return redirect()->route('shop.view.signup.complete'); + return redirect()->route('workshop.dashboard'); } else { // La cuenta no está verificada, redirige a la página de verificación de correo electrónico return redirect()->route('shop.view.email.verification'); } } + + + + + + + + + + + + + + + + + + + + + + + + // // Validación de los campos de registro + // $validator = Validator::make($request->all(), [ + // 'email' => ['required', 'string', 'email', 'max:255', 'unique:'.User::class], + // 'password' => ['required', 'confirmed', Password::defaults()], + // 'g-recaptcha-response' => ['required', function ($attribute, $value, $fail) { + // $recaptcha = new Recaptcha(env('RECAPTCHA_SECRET_KEY')); + // $recaptcha->verify($value); + // }], + // ]); + + // if ($validator->fails()) { + // // Si la validación falla, puedes redirigir o devolver una respuesta con los errores + // return redirect()->back()->withErrors($validator)->withInput(); + // } + + // $confirmation_code = Str::random(25); + + // $user = new User(); + // $user->email = $request->input('email'); + // $user->password = Hash::make($request->input('password')); + // $user->user_type = 'repair'; + // $user->confirmation_code = $confirmation_code; + // $user->save(); + + + // Mail::to($user->email)->send(new VerificationEmail($user)); + + // // Intentar iniciar sesión automáticamente + // if (Auth::attempt($request->only('email', 'password'))) { + // if (Auth::user()->email_verified_at) { + // // La cuenta está verificada, redirige a la página deseada + // return redirect()->route('shop.view.signup.complete'); + // } else { + // // La cuenta no está verificada, redirige a la página de verificación de correo electrónico + // return redirect()->route('shop.view.email.verification'); + // } + // } } /** @@ -129,41 +233,41 @@ class TypeWorkshopController extends Controller // } - public function workshop_complete_index() - { - $user = auth()->user(); + // public function workshop_complete_index() + // { + // $user = auth()->user(); - return view('frontend.registro-comercio.views.workshops.workshop_complete', compact('user')); - } + // return view('frontend.registro-comercio.views.workshops.workshop_complete', compact('user')); + // } - public function workshop_complete_store(Request $request, Workshop $workshop) - { - // Validación de los campos - $validator = Validator::make($request->all(), [ - 'name' => ['required'], - 'address' => ['required'], - ]); + // public function workshop_complete_store(Request $request, Workshop $workshop) + // { + // // Validación de los campos + // $validator = Validator::make($request->all(), [ + // 'name' => ['required'], + // 'address' => ['required'], + // ]); - // Si la validación falla, puedes redirigir de vuelta con los errores - if ($validator->fails()) { - return redirect()->back()->withErrors($validator)->withInput(); - } + // // Si la validación falla, puedes redirigir de vuelta con los errores + // if ($validator->fails()) { + // return redirect()->back()->withErrors($validator)->withInput(); + // } - // Guardar los campos en el modelo Workshop - $workshop->name = $request->name; - $workshop->address = $request->address; - // Aquí puedes guardar otros campos si los tienes + // // Guardar los campos en el modelo Workshop + // $workshop->name = $request->name; + // $workshop->address = $request->address; + // // Aquí puedes guardar otros campos si los tienes - // Guardar el modelo Workshop en la base de datos - $workshop->save(); + // // Guardar el modelo Workshop en la base de datos + // $workshop->save(); - // Asignar el ID del taller al campo "workshop_id" en el modelo User + // // Asignar el ID del taller al campo "workshop_id" en el modelo User - // Marcar el campo "shop_verified_at" como verificado en el modelo User - $request->user()->shop_verified_at = now(); // Puedes usar la función "now()" para establecer la fecha y hora actual - $request->user()->workshop_id = $workshop->id; - $request->user()->save(); + // // Marcar el campo "shop_verified_at" como verificado en el modelo User + // $request->user()->shop_verified_at = now(); // Puedes usar la función "now()" para establecer la fecha y hora actual + // $request->user()->workshop_id = $workshop->id; + // $request->user()->save(); - return redirect()->route('workshop.dashboard'); - } + // return redirect()->route('workshop.dashboard'); + // } } diff --git a/desarrollo/app/Http/Controllers/UpdateController.php b/desarrollo/app/Http/Controllers/UpdateController.php index eef5c574..7d5cb233 100644 --- a/desarrollo/app/Http/Controllers/UpdateController.php +++ b/desarrollo/app/Http/Controllers/UpdateController.php @@ -86,22 +86,67 @@ class UpdateController extends Controller public function step2() { - if (get_setting('current_version') == '7.5.0') { - $sql_path = base_path('sqlupdates/v760.sql'); + if (get_setting('current_version') == '7.8.0') { + $sql_path = base_path('sqlupdates/v790.sql'); DB::unprepared(file_get_contents($sql_path)); return redirect()->route('update.step3'); } - if (get_setting('current_version') == '7.4.0') { + if (get_setting('current_version') == '7.7.0') { + $sql_path = base_path('sqlupdates/v780.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v790.sql'); + DB::unprepared(file_get_contents($sql_path)); + + return redirect()->route('update.step3'); + } + elseif (get_setting('current_version') == '7.6.0') { + $sql_path = base_path('sqlupdates/v770.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v780.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v790.sql'); + DB::unprepared(file_get_contents($sql_path)); + + return redirect()->route('update.step3'); + } + elseif (get_setting('current_version') == '7.5.0') { + $sql_path = base_path('sqlupdates/v760.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v770.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v780.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v790.sql'); + DB::unprepared(file_get_contents($sql_path)); + + return redirect()->route('update.step3'); + } + elseif (get_setting('current_version') == '7.4.0') { $sql_path = base_path('sqlupdates/v750.sql'); DB::unprepared(file_get_contents($sql_path)); $sql_path = base_path('sqlupdates/v760.sql'); DB::unprepared(file_get_contents($sql_path)); + $sql_path = base_path('sqlupdates/v770.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v780.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v790.sql'); + DB::unprepared(file_get_contents($sql_path)); + return redirect()->route('update.step3'); } - if (get_setting('current_version') == '7.3.0') { + elseif (get_setting('current_version') == '7.3.0') { $sql_path = base_path('sqlupdates/v740.sql'); DB::unprepared(file_get_contents($sql_path)); @@ -111,9 +156,18 @@ class UpdateController extends Controller $sql_path = base_path('sqlupdates/v760.sql'); DB::unprepared(file_get_contents($sql_path)); + $sql_path = base_path('sqlupdates/v770.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v780.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v790.sql'); + DB::unprepared(file_get_contents($sql_path)); + return redirect()->route('update.step3'); } - if (get_setting('current_version') == '7.2.0') { + elseif (get_setting('current_version') == '7.2.0') { $sql_path = base_path('sqlupdates/v730.sql'); DB::unprepared(file_get_contents($sql_path)); @@ -126,9 +180,18 @@ class UpdateController extends Controller $sql_path = base_path('sqlupdates/v760.sql'); DB::unprepared(file_get_contents($sql_path)); + $sql_path = base_path('sqlupdates/v770.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v780.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v790.sql'); + DB::unprepared(file_get_contents($sql_path)); + return redirect()->route('update.step3'); } - if (get_setting('current_version') == '7.1.0') { + elseif (get_setting('current_version') == '7.1.0') { $sql_path = base_path('sqlupdates/v720.sql'); DB::unprepared(file_get_contents($sql_path)); @@ -144,9 +207,18 @@ class UpdateController extends Controller $sql_path = base_path('sqlupdates/v760.sql'); DB::unprepared(file_get_contents($sql_path)); + $sql_path = base_path('sqlupdates/v770.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v780.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v790.sql'); + DB::unprepared(file_get_contents($sql_path)); + return redirect()->route('update.step3'); } - if (get_setting('current_version') == '7.0.0') { + elseif (get_setting('current_version') == '7.0.0') { $sql_path = base_path('sqlupdates/v710.sql'); DB::unprepared(file_get_contents($sql_path)); @@ -165,6 +237,15 @@ class UpdateController extends Controller $sql_path = base_path('sqlupdates/v760.sql'); DB::unprepared(file_get_contents($sql_path)); + $sql_path = base_path('sqlupdates/v770.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v780.sql'); + DB::unprepared(file_get_contents($sql_path)); + + $sql_path = base_path('sqlupdates/v790.sql'); + DB::unprepared(file_get_contents($sql_path)); + return redirect()->route('update.step3'); } elseif (get_setting('current_version') == '6.5.0') { @@ -189,593 +270,18 @@ class UpdateController extends Controller $sql_path = base_path('sqlupdates/v760.sql'); DB::unprepared(file_get_contents($sql_path)); - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.4.0') { - $sql_path = base_path('sqlupdates/v650.sql'); + $sql_path = base_path('sqlupdates/v770.sql'); DB::unprepared(file_get_contents($sql_path)); - $sql_path = base_path('sqlupdates/v700.sql'); + $sql_path = base_path('sqlupdates/v780.sql'); DB::unprepared(file_get_contents($sql_path)); - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.3.3') { - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.3.2') { - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.3.1') { - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.3.0') { - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.2.0') { - $sql_path = base_path('sqlupdates/v630.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.1.5') { - $sql_path = base_path('sqlupdates/v620.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v630.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.1.4') { - $sql_path = base_path('sqlupdates/v615.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v620.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v630.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.1.3') { - $sql_path = base_path('sqlupdates/v614.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v615.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v620.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v630.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.1.2') { - $sql_path = base_path('sqlupdates/v613.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v614.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v615.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v620.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v630.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.1.1') { - $sql_path = base_path('sqlupdates/v612.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v613.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v614.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v615.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v620.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v630.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.1') { - $sql_path = base_path('sqlupdates/v611.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v612.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v613.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v614.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v615.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v620.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v630.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); - DB::unprepared(file_get_contents($sql_path)); - - return redirect()->route('update.step3'); - } - elseif (get_setting('current_version') == '6.0') { - $sql_path = base_path('sqlupdates/v61.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v611.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v612.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v613.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v614.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v615.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v620.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v630.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v631.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v632.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v633.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v640.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v650.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v700.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v710.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v720.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v730.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v740.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v750.sql'); - DB::unprepared(file_get_contents($sql_path)); - - $sql_path = base_path('sqlupdates/v760.sql'); + $sql_path = base_path('sqlupdates/v790.sql'); DB::unprepared(file_get_contents($sql_path)); return redirect()->route('update.step3'); } + else { Artisan::call('view:clear'); Artisan::call('cache:clear'); @@ -792,11 +298,11 @@ class UpdateController extends Controller Artisan::call('view:clear'); Artisan::call('cache:clear'); - $this->setAdmnRole(); - $this->convertSellerIntoShop(); - $this->convertSellerIntoUser(); - $this->convertSellerPackageIntoShop(); - $this->convertTrasnalations(); + // $this->setAdmnRole(); + // $this->convertSellerIntoShop(); + // $this->convertSellerIntoUser(); + // $this->convertSellerPackageIntoShop(); + // $this->convertTrasnalations(); // $this->convertColorsName(); $previousRouteServiceProvier = base_path('app/Providers/RouteServiceProvider.php'); diff --git a/desarrollo/app/Http/Controllers/WalletController.php b/desarrollo/app/Http/Controllers/WalletController.php index 4ba3d8a2..feca37be 100644 --- a/desarrollo/app/Http/Controllers/WalletController.php +++ b/desarrollo/app/Http/Controllers/WalletController.php @@ -27,9 +27,6 @@ class WalletController extends Controller $request->session()->put('payment_type', 'wallet_payment'); $request->session()->put('payment_data', $data); - $request->session()->put('payment_type', 'wallet_payment'); - $request->session()->put('payment_data', $data); - $decorator = __NAMESPACE__ . '\\Payment\\' . str_replace(' ', '', ucwords(str_replace('_', ' ', $request->payment_option))) . "Controller"; if (class_exists($decorator)) { return (new $decorator)->pay($request); diff --git a/desarrollo/app/Http/Helpers.php b/desarrollo/app/Http/Helpers.php index a45aacb6..cd63f868 100644 --- a/desarrollo/app/Http/Helpers.php +++ b/desarrollo/app/Http/Helpers.php @@ -1,27 +1,50 @@ isEnabled()->get(); + } +} + //filter products based on vendor activation system if (!function_exists('filter_products')) { function filter_products($products) @@ -214,7 +241,6 @@ if (!function_exists('format_price')) { } } - //formats price to home default price with convertion if (!function_exists('single_price')) { function single_price($price) @@ -1145,11 +1171,11 @@ if (!function_exists('my_asset')) { */ function my_asset($path, $secure = null) { - if (env('FILESYSTEM_DRIVER') == 's3') { - return Storage::disk('s3')->url($path); - } else { - return app('url')->asset('public/' . $path, $secure); - } + if (env('FILESYSTEM_DRIVER') != 'local') { + return Storage::disk(env('FILESYSTEM_DRIVER'))->url($path); + } + + return app('url')->asset('public/' . $path, $secure); } } @@ -1189,11 +1215,11 @@ if (!function_exists('getBaseURL')) { if (!function_exists('getFileBaseURL')) { function getFileBaseURL() { - if (env('FILESYSTEM_DRIVER') == 's3') { - return env('AWS_URL') . '/'; - } else { - return getBaseURL() . 'public/'; + if (env('FILESYSTEM_DRIVER') != 'local') { + return env(Str::upper(env('FILESYSTEM_DRIVER')).'_URL') . '/'; } + + return getBaseURL() . 'public/'; } } @@ -1328,6 +1354,20 @@ if (!function_exists('checkout_done')) { } } +// get user total ordered products +if (!function_exists('get_user_total_ordered_products')) { + function get_user_total_ordered_products() + { + $orders_query = Order::query(); + $orders = $orders_query->where('user_id', Auth::user()->id)->get(); + $total = 0; + foreach ($orders as $order) { + $total += count($order->orderDetails); + } + return $total; + } +} + //for api if (!function_exists('wallet_payment_done')) { function wallet_payment_done($user_id, $amount, $payment_method, $payment_details) @@ -1475,11 +1515,20 @@ if (!function_exists('get_url_params')) { } } +// get Admin +if (!function_exists('get_admin')) { + function get_admin() + { + $admin_query = User::query(); + return $admin_query->where('user_type', 'admin')->first(); + } +} + if (!function_exists('get_featured_flash_deal')) { function get_featured_flash_deal() { $featured_flash_deal_query = FlashDeal::query(); - $featured_flash_deal = $featured_flash_deal_query->where('status', 1)->where('featured', 1) + $featured_flash_deal = $featured_flash_deal_query->isActiveAndFeatured() ->where('start_date', '<=', strtotime(date('Y-m-d H:i:s'))) ->where('end_date', '>=', strtotime(date('Y-m-d H:i:s'))) ->first(); @@ -1488,6 +1537,26 @@ if (!function_exists('get_featured_flash_deal')) { } } +if (!function_exists('get_active_flash_deals')) { + function get_active_flash_deals() + { + $activated_flash_deal_query = FlashDeal::query(); + $activated_flash_deal_query = $activated_flash_deal_query->where("status", 1); + + return $activated_flash_deal_query->get(); + } +} + +if (!function_exists('get_active_taxes')) { + function get_active_taxes() + { + $activated_tax_query = Tax::query(); + $activated_tax_query = $activated_tax_query->where("tax_status", 1); + + return $activated_tax_query->get(); + } +} + if (!function_exists('get_system_language')) { function get_system_language() { @@ -1514,6 +1583,15 @@ if (!function_exists('get_all_active_language')) { } } +// get Session langauge +if (!function_exists('get_session_language')) { + function get_session_language() + { + $language_query = Language::query(); + return $language_query->where('code', Session::get('locale', Config::get('app.locale')))->first(); + } +} + if (!function_exists('get_system_currency')) { function get_system_currency() { @@ -1532,34 +1610,131 @@ if (!function_exists('get_system_currency')) { if (!function_exists('get_all_active_currency')) { function get_all_active_currency() { - $language_query = Currency::query(); - $language_query->where('status', 1); + $currency_query = Currency::query(); + $currency_query->where('status', 1); - return $language_query->get(); + return $currency_query->get(); } } if (!function_exists('get_single_product')) { function get_single_product($product_id) { - $product_query = Product::query(); + $product_query = Product::query()->with('thumbnail'); return $product_query->find($product_id); } } -if (!function_exists('get_single_brand')) { - function get_single_brand($brand_id) +// get multiple Products +if (!function_exists('get_multiple_products')) { + function get_multiple_products($product_ids) { - $brand_query = Brand::query(); - return $brand_query->find($brand_id); + $products_query = Product::query(); + return $products_query->whereIn('id', $product_ids)->get(); } } -if (!function_exists('get_single_category')) { - function get_single_category($category_id) +// get count of products +if (!function_exists('get_products_count')) { + function get_products_count($user_id = null) { - $category_query = Category::query(); - return $category_query->find($category_id); + $products_query = Product::query(); + if($user_id){ + $products_query = $products_query->where('user_id', $user_id); + } + return $products_query->isApprovedPublished()->count(); + } +} + +// get minimum unit price of products +if (!function_exists('get_product_min_unit_price')) { + function get_product_min_unit_price($user_id = null) + { + $product_query = Product::query(); + if($user_id){ + $product_query = $product_query->where('user_id', $user_id); + } + return $product_query->isApprovedPublished()->min('unit_price'); + } +} + +// get maximum unit price of products +if (!function_exists('get_product_max_unit_price')) { + function get_product_max_unit_price($user_id = null) + { + $product_query = Product::query(); + if($user_id){ + $product_query = $product_query->where('user_id', $user_id); + } + return $product_query->isApprovedPublished()->max('unit_price'); + } +} + +if (!function_exists('get_featured_products')) { + function get_featured_products() + { + return Cache::remember('featured_products', 3600, function () { + $product_query = Product::query(); + return filter_products($product_query->where('featured', '1'))->latest()->limit(12)->get(); + }); + } +} + +if (!function_exists('get_best_selling_products')) { + function get_best_selling_products($limit, $user_id=null) + { + $product_query = Product::query(); + if($user_id){ + $product_query = $product_query->where('user_id', $user_id); + } + return filter_products($product_query->orderBy('num_of_sale', 'desc'))->limit($limit)->get(); + } +} + +// Get Seller Products +if (!function_exists('get_all_sellers')) { + function get_all_sellers() + { + $seller_query = Seller::query(); + return $seller_query->get(); + } +} + +// Get Seller Products +if (!function_exists('get_seller_products')) { + function get_seller_products($user_id) + { + $product_query = Product::query(); + return $product_query->where('user_id', $user_id)->isApprovedPublished()->orderBy('created_at', 'desc')->limit(15)->get(); + } +} + +// Get Seller Best Selling Products +if (!function_exists('get_shop_best_selling_products')) { + function get_shop_best_selling_products($user_id) + { + $product_query = Product::query(); + return $product_query->where('user_id', $user_id)->isApprovedPublished()->orderBy('num_of_sale', 'desc')->paginate(24); + } +} + +// Get all auction Products +if (!function_exists('get_all_auction_products')) { + function get_auction_products($limit=null, $paginate=null) + { + $product_query = Product::query(); + $products = $product_query->latest()->where('published', 1)->where('auction_product', 1); + if (get_setting('seller_auction_product') == 0) { + $products = $products->where('added_by', 'admin'); + } + $products = $products->where('auction_start_date', '<=', strtotime("now"))->where('auction_end_date', '>=', strtotime("now")); + + if($limit){ + $products = $products->limit($limit); + }elseif($paginate){ + return $products->paginate($paginate); + } + return $products->get(); } } @@ -1597,6 +1772,119 @@ if (!function_exists('get_home_page_classified_products')) { } } +// Get related product +if (!function_exists('get_related_products')) { + function get_related_products($product) + { + $product_query = Product::query(); + return filter_products($product_query->where('id', '!=', $product->id)->where('category_id', $product->category_id))->limit(10)->get(); + } +} + +// Get all brands +if (!function_exists('get_all_brands')) { + function get_all_brands() + { + $brand_query = Brand::query(); + return $brand_query->get(); + } +} + +// Get single brands +if (!function_exists('get_single_brand')) { + function get_single_brand($brand_id) + { + $brand_query = Brand::query(); + return $brand_query->find($brand_id); + } +} + +// Get Brands by products +if (!function_exists('get_brands_by_products')) { + function get_brands_by_products($usrt_id) + { + $product_query = Product::query(); + $brand_ids = $product_query->where('user_id', $usrt_id)->isApprovedPublished()->whereNotNull('brand_id')->pluck('brand_id')->toArray(); + + $brand_query = Brand::query(); + return $brand_query->whereIn('id', $brand_ids)->get(); + } +} + +// Get single category +if (!function_exists('get_single_category')) { + function get_single_category($category_id) + { + $category_query = Category::query()->with('coverImage'); + return $category_query->find($category_id); + } +} + +// Get categories by level zero +if (!function_exists('get_level_zero_categories')) { + function get_level_zero_categories() + { + $categories_query = Category::query(); + return $categories_query->where('level', 0)->orderBy('order_level', 'desc')->get(); + } +} + +// Get categories by products +if (!function_exists('get_categories_by_products')) { + function get_categories_by_products($user_id) + { + $product_query = Product::query(); + $category_ids = $product_query->where('user_id', $user_id)->isApprovedPublished()->pluck('category_id')->toArray(); + + $category_query = Category::query(); + return $category_query->whereIn('id', $category_ids)->get(); + } +} + +// Get single Color name +if (!function_exists('get_single_color_name')) { + function get_single_color_name($color) + { + $color_query = Color::query(); + return $color_query->where('code', $color)->first()->name; + } +} + +// Get single Attribute +if (!function_exists('get_single_attribute_name')) { + function get_single_attribute_name($attribute) + { + $attribute_query = Attribute::query(); + return $attribute_query->find($attribute)->getTranslation('name'); + } +} + +// Get user cart +if (!function_exists('get_user_cart')) { + function get_user_cart() + { + $cart = null; + if (auth()->user() != null) { + $cart = Cart::where('user_id', Auth::user()->id)->get(); + } else { + $temp_user_id = Session()->get('temp_user_id'); + if ($temp_user_id) { + $cart = Cart::where('temp_user_id', $temp_user_id)->get(); + } + } + return $cart; + } +} + +// Get user Wishlist +if (!function_exists('get_user_wishlist')) { + function get_user_wishlist() + { + $wishlist_query = Wishlist::query(); + return $wishlist_query->where('user_id', Auth::user()->id)->get(); + } +} + //Get best seller if (!function_exists('get_best_sellers')) { function get_best_sellers($limit = '') @@ -1607,6 +1895,271 @@ if (!function_exists('get_best_sellers')) { } } +//Get users followed sellers +if (!function_exists('get_followed_sellers')) { + function get_followed_sellers() + { + $followed_seller_query = FollowSeller::query(); + return $followed_seller_query->where('user_id', Auth::user()->id)->pluck('shop_id')->toArray(); + } +} + +// Get Order Details +if (!function_exists('get_order_details')) { + function get_order_details($order_id) + { + $order_detail_query = OrderDetail::query(); + return $order_detail_query->find($order_id); + } +} + +// Get Order Details by review +if (!function_exists('get_order_details_by_review')) { + function get_order_details_by_review($review) + { + $order_detail_query = OrderDetail::query(); + return $order_detail_query->with(['order' => function ($q) use($review) { + $q->where('user_id', $review->user_id); + }])->where('product_id', $review->product_id)->where('delivery_status', 'delivered')->first(); + } +} + + +// Get user total expenditure +if (!function_exists('get_user_total_expenditure')) { + function get_user_total_expenditure() + { + $user_expenditure_query = Order::query(); + return $user_expenditure_query->where('user_id', Auth::user()->id)->where('payment_status', 'paid')->sum('grand_total'); + } +} + +// Get count by delivery viewed +if (!function_exists('get_count_by_delivery_viewed')) { + function get_count_by_delivery_viewed() + { + $order_query = Order::query(); + return $order_query->where('user_id', Auth::user()->id)->where('delivery_viewed', 0)->get()->count(); + } +} + +// Get delivery boy info +if (!function_exists('get_delivery_boy_info')) { + function get_delivery_boy_info() + { + $delivery_boy_info_query = DeliveryBoy::query(); + return $delivery_boy_info_query->where('user_id', Auth::user()->id)->first(); + } +} + +// Get count by completed delivery +if (!function_exists('get_delivery_boy_total_completed_delivery')) { + function get_delivery_boy_total_completed_delivery() + { + $delivery_boy_delivery_query = Order::query(); + return $delivery_boy_delivery_query->where('assign_delivery_boy', Auth::user()->id) + ->where('delivery_status', 'delivered') + ->count(); + } +} + +// Get count by pending delivery +if (!function_exists('get_delivery_boy_total_pending_delivery')) { + function get_delivery_boy_total_pending_delivery() + { + $delivery_boy_delivery_query = Order::query(); + return $delivery_boy_delivery_query->where('assign_delivery_boy', Auth::user()->id) + ->where('delivery_status', '!=', 'delivered') + ->where('delivery_status', '!=', 'cancelled') + ->where('cancel_request', '0') + ->count(); + } +} + +// Get count by cancelled delivery +if (!function_exists('get_delivery_boy_total_cancelled_delivery')) { + function get_delivery_boy_total_cancelled_delivery() + { + $delivery_boy_delivery_query = Order::query(); + return $delivery_boy_delivery_query->where('assign_delivery_boy', Auth::user()->id) + ->where('delivery_status', 'cancelled') + ->count(); + } +} + +// Get count by payment status viewed +if (!function_exists('get_order_info')) { + function get_order_info($order_id = null) + { + $order_query = Order::query(); + return $order_query->where('id',$order_id)->first(); + } +} + +// Get count by payment status viewed +if (!function_exists('get_user_order_by_id')) { + function get_user_order_by_id($order_id = null) + { + $order_query = Order::query(); + return $order_query->where('id',$order_id)->where('user_id',Auth::user()->id)->first(); + } +} + +// Get Auction Product Bid Info +if (!function_exists('get_auction_product_bid_info')) { + function get_auction_product_bid_info($bid_id = null) + { + $product_bid_info_query = AuctionProductBid::query(); + return $product_bid_info_query->where('id',$bid_id)->first(); + } +} + +// Get count by payment status viewed +if (!function_exists('get_count_by_payment_status_viewed')) { + function get_count_by_payment_status_viewed() + { + $order_query = Order::query(); + return $order_query->where('user_id', Auth::user()->id)->where('payment_status_viewed', 0)->get()->count(); + } +} + +// Get Uploaded file +if (!function_exists('get_single_uploaded_file')) { + function get_single_uploaded_file($file_id) + { + $file_query = Upload::query(); + return $file_query->find($file_id); + } +} + +// Get single customer package file +if (!function_exists('get_single_customer_package')) { + function get_single_customer_package($package_id) + { + $customer_package_query = CustomerPackage::query(); + return $customer_package_query->find($package_id); + } +} + +// Get single Seller package file +if (!function_exists('get_single_seller_package')) { + function get_single_seller_package($package_id) + { + $seller_package_query = SellerPackage::query(); + return $seller_package_query->find($package_id); + } +} + +// Get user last wallet recharge +if (!function_exists('get_user_last_wallet_recharge')) { + function get_user_last_wallet_recharge() + { + $recharge_query = Wallet::query(); + return $recharge_query->where('user_id', Auth::user()->id)->orderBy('id', 'desc')->first(); + } +} + +// Get user total Club point +if (!function_exists('get_user_total_club_point')) { + function get_user_total_club_point() + { + $club_point_query = ClubPoint::query(); + return $club_point_query->where('user_id', Auth::user()->id)->where('convert_status', 0)->sum('points'); + } +} + +// Get all manual payment methods +if (!function_exists('get_all_manual_payment_methods')) { + function get_all_manual_payment_methods() + { + $manual_payment_methods_query = ManualPaymentMethod::query(); + return $manual_payment_methods_query->get(); + } +} + +// Get all blog category +if (!function_exists('get_all_blog_categories')) { + function get_all_blog_categories() + { + $blog_category_query = BlogCategory::query(); + return $blog_category_query->get(); + } +} + +// Get all Pickup Points +if (!function_exists('get_all_pickup_points')) { + function get_all_pickup_points() + { + $pickup_points_query = PickupPoint::query(); + return $pickup_points_query->isActive()->get(); + } +} + +// get Shop by user id +if (!function_exists('get_shop_by_user_id')) { + function get_shop_by_user_id($user_id) + { + $shop_query = Shop::query(); + return $shop_query->where('user_id', $user_id)->first(); + } +} + +// get Coupons +if (!function_exists('get_coupons')) { + function get_coupons($user_id = null, $paginate = null) + { + $coupon_query = Coupon::query(); + $coupon_query = $coupon_query->where('start_date', '<=', strtotime(date('d-m-Y')))->where('end_date', '>=', strtotime(date('d-m-Y'))); + if($user_id){ + $coupon_query = $coupon_query-> where('user_id', $user_id); + } + if($paginate){ + return $coupon_query->paginate($paginate); + } + return $coupon_query->get(); + } +} + +// get non-viewed Conversations +if (!function_exists('get_non_viewed_conversations')) { + function get_non_viewed_conversations() + { + $Conversation_query = Conversation::query(); + return $Conversation_query->where('sender_id', Auth::user()->id)->where('sender_viewed', 0)->get(); + } +} + +// get affliate option status +if (!function_exists('get_affliate_option_status')) { + function get_affliate_option_status($status = false) + { + if(AffiliateOption::where('type', 'product_sharing')->first()->status || + AffiliateOption::where('type', 'category_wise_affiliate')->first()->status){ + $status = true; + } + return $status; + } +} + +// get affliate option purchase status +if (!function_exists('get_affliate_purchase_option_status')) { + function get_affliate_purchase_option_status($status = false) + { + if(AffiliateOption::where('type', 'user_registration_first_purchase')->first()->status){ + $status = true; + } + return $status; + } +} + +// get affliate config +if (!function_exists('get_Affiliate_onfig_value')) { + function get_Affiliate_onfig_value() + { + return AffiliateConfig::where('type', 'verification_form')->first()->value; + } +} + if (!function_exists('timezones')) { function timezones() { diff --git a/desarrollo/app/Http/Kernel.php b/desarrollo/app/Http/Kernel.php index 61b13a37..6a58fb4f 100644 --- a/desarrollo/app/Http/Kernel.php +++ b/desarrollo/app/Http/Kernel.php @@ -29,7 +29,6 @@ class Kernel extends HttpKernel \App\Http\Middleware\TrustProxies::class, \Illuminate\Session\Middleware\StartSession::class, \Illuminate\View\Middleware\ShareErrorsFromSession::class, - \App\Http\Middleware\CorsMiddleware::class, ]; /** @@ -89,7 +88,6 @@ class Kernel extends HttpKernel 'permission' => \Spatie\Permission\Middlewares\PermissionMiddleware::class, 'role_or_permission' => \Spatie\Permission\Middlewares\RoleOrPermissionMiddleware::class, 'prevent-back-history' => \App\Http\Middleware\PreventBackHistory::class, - /* 'cors' => \App\Http\Middleware\CorsMiddleware::class, */ ]; /** diff --git a/desarrollo/app/Http/Middleware/IsUser.php b/desarrollo/app/Http/Middleware/IsUser.php index 85d63417..e378b822 100644 --- a/desarrollo/app/Http/Middleware/IsUser.php +++ b/desarrollo/app/Http/Middleware/IsUser.php @@ -14,15 +14,12 @@ class IsUser * @param \Closure $next * @return mixed */ - //AQUI AGREGO LOS DIFERENTES TIPOS DE USUARIOS - public function handle($request, Closure $next) { if (Auth::check() && (Auth::user()->user_type == 'customer' || Auth::user()->user_type == 'seller' || - Auth::user()->user_type == 'delivery_boy'|| - Auth::user()->user_type == 'repair') ) { + Auth::user()->user_type == 'delivery_boy') ) { return $next($request); } diff --git a/desarrollo/app/Http/Requests/ProductRequest.php b/desarrollo/app/Http/Requests/ProductRequest.php index c204bced..eaaac880 100644 --- a/desarrollo/app/Http/Requests/ProductRequest.php +++ b/desarrollo/app/Http/Requests/ProductRequest.php @@ -60,7 +60,7 @@ class ProductRequest extends FormRequest 'unit_price.numeric' => 'Unit price must be numeric', 'discount.required' => 'Discount is required', 'discount.numeric' => 'Discount must be numeric', - 'discount.lt:unit_price' => 'Discount can not be gretaer than unit price', + 'discount.lt:unit_price' => 'Discount cannot be gretaer than unit price', 'current_stock.required' => 'Current stock is required', 'current_stock.numeric' => 'Current stock must be numeric', ]; diff --git a/desarrollo/app/Http/Requests/SellerRegistrationRequest.php b/desarrollo/app/Http/Requests/SellerRegistrationRequest.php index 87b126dc..ca89f96f 100644 --- a/desarrollo/app/Http/Requests/SellerRegistrationRequest.php +++ b/desarrollo/app/Http/Requests/SellerRegistrationRequest.php @@ -31,7 +31,7 @@ class SellerRegistrationRequest extends FormRequest $rules['name'] = 'required|string|max:255'; $rules['email'] = 'required|email|unique:users|max:255'; - $rules['password' ] = 'required|string|min:6'; /* |confirmed */ + $rules['password' ] = 'required|string|min:6|confirmed'; $rules['shop_name' ] = 'required|max:255'; $rules['address'] = 'required'; diff --git a/desarrollo/app/Http/Resources/V2/Auction/AuctionBidProducts.php b/desarrollo/app/Http/Resources/V2/Auction/AuctionBidProducts.php new file mode 100644 index 00000000..b5a82bf8 --- /dev/null +++ b/desarrollo/app/Http/Resources/V2/Auction/AuctionBidProducts.php @@ -0,0 +1,48 @@ +bids->where('user_id', auth()->id())->first(); + $highest_bid = $this->bids->max('amount'); + $order_detail = OrderDetail::where('product_id', $this->id)->first(); + if ($order_detail != null) { + $order = Order::where('id', $order_detail->order_id)->where('user_id', auth()->id())->first(); + } + + if ($my_bided_product->product->auction_end_date < strtotime("now") && $my_bided_product->amount == $highest_bid && $order == null) { + $action = 'Buy'; + $isBuyable = true; + } elseif ($order != null) { + $action = 'Purchased'; + } else { + $action = 'N/A'; + } + + return [ + 'id' => $this->id, + 'name' => $this->name, + 'thumbnail_image' => uploaded_asset($this->thumbnail_img), + 'my_bid' => single_price($my_bided_product->amount), + 'highest_bid' => single_price($highest_bid), + 'auction_end_date' => $this->auction_end_date < strtotime("now") ? translate('Ended') : date('d.m.Y H:i:s', $this->auction_end_date), + 'action' => $action, + 'isBuyable' => $isBuyable, + ]; + } +} diff --git a/desarrollo/app/Http/Resources/V2/Auction/AuctionPurchaseHistory.php b/desarrollo/app/Http/Resources/V2/Auction/AuctionPurchaseHistory.php new file mode 100644 index 00000000..a6d03a99 --- /dev/null +++ b/desarrollo/app/Http/Resources/V2/Auction/AuctionPurchaseHistory.php @@ -0,0 +1,27 @@ +id); + return [ + 'id' => $order->id, + 'code' => $order->code, + 'date' => date('d-m-Y', $order->date), + 'amount' => single_price($order->grand_total), + 'delivery_status' => translate(ucfirst(str_replace('_', ' ', $order->orderDetails->first()->delivery_status))), + 'payment_status' => $order->payment_status == 'paid' ? translate('Paid') : translate('Unpaid'), + ]; + } +} diff --git a/desarrollo/app/Http/Resources/V2/PurchaseHistoryCollection.php b/desarrollo/app/Http/Resources/V2/PurchaseHistoryCollection.php index 0ec12127..ca640b0c 100644 --- a/desarrollo/app/Http/Resources/V2/PurchaseHistoryCollection.php +++ b/desarrollo/app/Http/Resources/V2/PurchaseHistoryCollection.php @@ -28,13 +28,13 @@ class PurchaseHistoryCollection extends ResourceCollection 'payment_status' => $data->payment_status, 'payment_status_string' => ucwords(str_replace('_', ' ', $data->payment_status)), 'delivery_status' => $data->delivery_status, - 'delivery_status_string' => $data->delivery_status == 'pending'? "Order Placed" : ucwords(str_replace('_', ' ', $data->delivery_status)), - 'grand_total' => format_price($data->grand_total), + 'delivery_status_string' => $data->delivery_status == 'pending' ? "Order Placed" : ucwords(str_replace('_', ' ', $data->delivery_status)), + 'grand_total' => format_price(convert_price($data->grand_total)), 'plane_grand_total' => $data->grand_total, - 'coupon_discount' => format_price($data->coupon_discount), - 'shipping_cost' => format_price($data->orderDetails->sum('shipping_cost')), - 'subtotal' => format_price($data->orderDetails->sum('price')), - 'tax' => format_price($data->orderDetails->sum('tax')), + 'coupon_discount' => format_price(convert_price($data->coupon_discount)), + 'shipping_cost' => format_price(convert_price($data->orderDetails->sum('shipping_cost'))), + 'subtotal' => format_price(convert_price($data->orderDetails->sum('price'))), + 'tax' => format_price(convert_price($data->orderDetails->sum('tax'))), 'date' => Carbon::createFromTimestamp($data->date)->format('d-m-Y'), 'cancel_request' => $data->cancel_request == 1, 'manually_payable' => $data->manual_payment && $data->manual_payment_data == null, diff --git a/desarrollo/app/Http/Resources/V2/PurchaseHistoryItemsCollection.php b/desarrollo/app/Http/Resources/V2/PurchaseHistoryItemsCollection.php index cfa0520e..62922f7d 100644 --- a/desarrollo/app/Http/Resources/V2/PurchaseHistoryItemsCollection.php +++ b/desarrollo/app/Http/Resources/V2/PurchaseHistoryItemsCollection.php @@ -20,12 +20,14 @@ class PurchaseHistoryItemsCollection extends ResourceCollection $no_of_max_day = get_setting('refund_request_time'); $last_refund_date = $data->created_at->addDays($no_of_max_day); $today_date = \Carbon\Carbon::now(); - if ($data->product != null && + if ( + $data->product != null && $data->product->refundable != 0 && $data->refund_request == null && $today_date <= $last_refund_date && $data->payment_status == 'paid' && - $data->delivery_status == 'delivered') { + $data->delivery_status == 'delivered' + ) { $refund_button = true; } else if ($data->refund_request != null && $data->refund_request->refund_status == 0) { $refund_label = "Pending"; @@ -47,10 +49,10 @@ class PurchaseHistoryItemsCollection extends ResourceCollection 'product_id' => $data->product->id, 'product_name' => $data->product->name, 'variation' => $data->variation, - 'price' => format_price($data->price), - 'tax' => format_price($data->tax), - 'shipping_cost' => format_price($data->shipping_cost), - 'coupon_discount' => format_price($data->coupon_discount), + 'price' => format_price(convert_price($data->price)), + 'tax' => format_price(convert_price($data->tax)), + 'shipping_cost' => format_price(convert_price($data->shipping_cost)), + 'coupon_discount' => format_price(convert_price($data->coupon_discount)), 'quantity' => (int)$data->quantity, 'payment_status' => $data->payment_status, 'payment_status_string' => ucwords(str_replace('_', ' ', $data->payment_status)), diff --git a/desarrollo/app/Http/Resources/V2/PurchaseHistoryMiniCollection.php b/desarrollo/app/Http/Resources/V2/PurchaseHistoryMiniCollection.php index 6bf91257..590a939e 100644 --- a/desarrollo/app/Http/Resources/V2/PurchaseHistoryMiniCollection.php +++ b/desarrollo/app/Http/Resources/V2/PurchaseHistoryMiniCollection.php @@ -10,17 +10,17 @@ class PurchaseHistoryMiniCollection extends ResourceCollection public function toArray($request) { return [ - 'data' => $this->collection->map(function($data) { + 'data' => $this->collection->map(function ($data) { return [ 'id' => $data->id, 'code' => $data->code, 'user_id' => intval($data->user_id), - 'payment_type' => ucwords(str_replace('_', ' ', $data->payment_type)) , - 'payment_status' => $data->payment_status, + 'payment_type' => ucwords(str_replace('_', ' ', $data->payment_type)), + 'payment_status' => translate($data->payment_status), 'payment_status_string' => ucwords(str_replace('_', ' ', $data->payment_status)), - 'delivery_status' => $data->delivery_status, - 'delivery_status_string' => $data->delivery_status == 'pending'? "Order Placed" : ucwords(str_replace('_', ' ', $data->delivery_status)), - 'grand_total' => format_price($data->grand_total) , + 'delivery_status' => translate($data->delivery_status), + 'delivery_status_string' => $data->delivery_status == 'pending' ? "Order Placed" : ucwords(str_replace('_', ' ', $data->delivery_status)), + 'grand_total' => format_price(convert_price($data->grand_total)), 'date' => Carbon::createFromTimestamp($data->date)->format('d-m-Y'), 'links' => [ 'details' => '' diff --git a/desarrollo/app/Http/Resources/V2/Seller/AuctionProductCollection.php b/desarrollo/app/Http/Resources/V2/Seller/AuctionProductCollection.php index 28b921cd..969ae7e2 100644 --- a/desarrollo/app/Http/Resources/V2/Seller/AuctionProductCollection.php +++ b/desarrollo/app/Http/Resources/V2/Seller/AuctionProductCollection.php @@ -24,6 +24,8 @@ class AuctionProductCollection extends ResourceCollection 'start_date' => date('Y-m-d H:i:s', $data->auction_start_date), 'end_date' => date('Y-m-d H:i:s', $data->auction_end_date), 'total_bids' => (int) $data->bids->count(), + 'can_edit' => $data->auction_start_date > strtotime("now"), + 'links' => [ 'details' => route('products.show', $data->id), ] diff --git a/desarrollo/app/Http/Resources/V2/Seller/DigitalProductCollection.php b/desarrollo/app/Http/Resources/V2/Seller/DigitalProductCollection.php new file mode 100644 index 00000000..c5a82c7f --- /dev/null +++ b/desarrollo/app/Http/Resources/V2/Seller/DigitalProductCollection.php @@ -0,0 +1,31 @@ + $this->collection->map(function ($data) { + return [ + 'id' => $data->id, + 'name' => $data->getTranslation('name'), + 'thumbnail_img' => uploaded_asset($data->thumbnail_img), + 'category' => $data->category->getTranslation('name'), + 'price ' => $data->unit_price, + 'status' => $data->published == 0 ? false : true, + 'featured' => $data->seller_featured == 0 ? false : true + ]; + }) + ]; + } +} diff --git a/desarrollo/app/Http/Resources/V2/Seller/DigitalProductDetailsResource.php b/desarrollo/app/Http/Resources/V2/Seller/DigitalProductDetailsResource.php new file mode 100644 index 00000000..352d35ce --- /dev/null +++ b/desarrollo/app/Http/Resources/V2/Seller/DigitalProductDetailsResource.php @@ -0,0 +1,51 @@ + $this->id, + 'lang' => $this->lang, + 'product_name' => $this->getTranslation('name', $this->lang), + "category_id" => $this->category_id, + "product_file" => new UploadedFileCollection(Upload::whereIn("id",explode(",",$this->file_name))->get()), + "tags" => $this->tags, + "photos" => new UploadedFileCollection(Upload::whereIn("id",explode(",",$this->photos))->get()), + "thumbnail_img" => new UploadedFileCollection(Upload::whereIn("id",explode(",",$this->thumbnail_img))->get()), + "meta_title" => $this->meta_title, + "meta_description" => $this->meta_description, + "meta_img" => new UploadedFileCollection(Upload::where("id",$this->meta_img)->get()), + "slug" => $this->slug, + "unit_price" => $this->unit_price, + "purchase_price" => $this->purchase_price, + "tax" => $this->taxes, + "discount" => $this->discount, + "discount_type" => $this->discount_type, + "discount_start_date" => date("Y-m-d", $this->discount_start_date), + "discount_end_date" => date("Y-m-d", $this->discount_end_date), + "description" => $this->getTranslation('description', $this->lang), + ]; + } + + public function with($request) + { + return [ + 'result' => true, + 'status' => 200 + ]; + } + +} diff --git a/desarrollo/app/Http/Resources/V2/WalletCollection.php b/desarrollo/app/Http/Resources/V2/WalletCollection.php index 219b07d8..bcb0dd32 100644 --- a/desarrollo/app/Http/Resources/V2/WalletCollection.php +++ b/desarrollo/app/Http/Resources/V2/WalletCollection.php @@ -10,9 +10,9 @@ class WalletCollection extends ResourceCollection public function toArray($request) { return [ - 'data' => $this->collection->map(function($data) { + 'data' => $this->collection->map(function ($data) { return [ - 'amount' => format_price ($data->amount) , + 'amount' => single_price(($data->amount)), 'payment_method' => ucwords(str_replace('_', ' ', $data->payment_method)), 'approval_string' => $data->offline_payment ? ($data->approval == 1 ? "Approved" : "Decliend") : "N/A", 'date' => Carbon::createFromTimestamp(strtotime($data->created_at))->format('d-m-Y'), diff --git a/desarrollo/app/Models/Buyer.php b/desarrollo/app/Models/Buyer.php new file mode 100644 index 00000000..27567099 --- /dev/null +++ b/desarrollo/app/Models/Buyer.php @@ -0,0 +1,19 @@ +hasMany(CategoryTranslation::class); } + public function coverImage(){ + return $this->belongsTo(Upload::class, 'cover_image'); + } + public function products(){ return $this->hasMany(Product::class); } diff --git a/desarrollo/app/Models/Country.php b/desarrollo/app/Models/Country.php index 9850ab0b..9efaaf17 100644 --- a/desarrollo/app/Models/Country.php +++ b/desarrollo/app/Models/Country.php @@ -6,14 +6,19 @@ use Illuminate\Database\Eloquent\Model; class Country extends Model { - /** - * Get the Zone that owns the Country - * - * @return \Illuminate\Database\Eloquent\Relations\BelongsTo - */ - public function zone() - { - return $this->belongsTo(Zone::class); - } + /** + * Get the Zone that owns the Country + * + * @return \Illuminate\Database\Eloquent\Relations\BelongsTo + */ + public function zone() + { + return $this->belongsTo(Zone::class); + } + + public function scopeIsEnabled($query) + { + return $query->where('status', '1'); + } } diff --git a/desarrollo/app/Models/FlashDeal.php b/desarrollo/app/Models/FlashDeal.php index 09f4ce30..1eb413db 100644 --- a/desarrollo/app/Models/FlashDeal.php +++ b/desarrollo/app/Models/FlashDeal.php @@ -23,4 +23,10 @@ class FlashDeal extends Model { return $this->hasMany(FlashDealProduct::class); } + + public function scopeIsActiveAndFeatured($query) + { + return $query->where('status', '1') + ->where('featured', '1'); + } } diff --git a/desarrollo/app/Models/PickupPoint.php b/desarrollo/app/Models/PickupPoint.php index 333d15db..64971c3d 100644 --- a/desarrollo/app/Models/PickupPoint.php +++ b/desarrollo/app/Models/PickupPoint.php @@ -22,4 +22,9 @@ class PickupPoint extends Model public function staff(){ return $this->belongsTo(Staff::class); } + + public function scopeIsActive($query) + { + return $query->where('pick_up_status', '1'); + } } diff --git a/desarrollo/app/Models/Product.php b/desarrollo/app/Models/Product.php index d030e7d9..575e0c75 100644 --- a/desarrollo/app/Models/Product.php +++ b/desarrollo/app/Models/Product.php @@ -2,15 +2,15 @@ namespace App\Models; -use Illuminate\Database\Eloquent\Model; use App; +use Illuminate\Database\Eloquent\Model; class Product extends Model { protected $guarded = ['choice_attributes']; - protected $with = ['product_translations', 'taxes']; + protected $with = ['product_translations', 'taxes', 'thumbnail']; public function getTranslation($field = '', $lang = false) { @@ -74,6 +74,11 @@ class Product extends Model return $this->hasMany(AuctionProductBid::class); } + public function thumbnail() + { + return $this->belongsTo(Upload::class, 'thumbnail_img'); + } + public function scopePhysical($query) { return $query->where('digital', 0); @@ -83,4 +88,14 @@ class Product extends Model { return $query->where('digital', 1); } + + public function carts() + { + return $this->hasMany(Cart::class); + } + + public function scopeIsApprovedPublished($query) + { + return $query->where('approved', '1')->where('published', 1); + } } diff --git a/desarrollo/app/Models/ProductsExport.php b/desarrollo/app/Models/ProductsExport.php index 9d602dc9..065a8ee6 100644 --- a/desarrollo/app/Models/ProductsExport.php +++ b/desarrollo/app/Models/ProductsExport.php @@ -30,6 +30,7 @@ class ProductsExport implements FromCollection, WithMapping, WithHeadings 'purchase_price', 'unit', 'current_stock', + 'est_shipping_days', 'meta_title', 'meta_description', ]; @@ -58,6 +59,7 @@ class ProductsExport implements FromCollection, WithMapping, WithHeadings $product->unit, // $product->current_stock, $qty, + $product->est_shipping_days, $product->meta_title, $product->meta_description, ]; diff --git a/desarrollo/app/Models/ProductsImport.php b/desarrollo/app/Models/ProductsImport.php index 601674ea..5afc7ce4 100644 --- a/desarrollo/app/Models/ProductsImport.php +++ b/desarrollo/app/Models/ProductsImport.php @@ -56,6 +56,7 @@ class ProductsImport implements ToCollection, WithHeadingRow, WithValidation, To 'unit' => $row['unit'], 'meta_title' => $row['meta_title'], 'meta_description' => $row['meta_description'], + 'est_shipping_days' => $row['est_shipping_days'], 'colors' => json_encode(array()), 'choice_options' => json_encode(array()), 'variations' => json_encode(array()), diff --git a/desarrollo/app/Models/Shop.php b/desarrollo/app/Models/Shop.php index 775e2afc..662bf03b 100644 --- a/desarrollo/app/Models/Shop.php +++ b/desarrollo/app/Models/Shop.php @@ -9,8 +9,6 @@ class Shop extends Model protected $with = ['user']; - protected $fillable = ['name', 'address', 'user_id']; - public function user() { return $this->belongsTo(User::class); @@ -22,10 +20,4 @@ class Shop extends Model public function followers(){ return $this->hasMany(FollowSeller::class); } - - //URL AMIGABLES - public function getRouteKeyName() - { - return 'slug'; - } } diff --git a/desarrollo/app/Models/User.php b/desarrollo/app/Models/User.php index 142e75bc..e8af027b 100644 --- a/desarrollo/app/Models/User.php +++ b/desarrollo/app/Models/User.php @@ -14,7 +14,10 @@ class User extends Authenticatable implements MustVerifyEmail { use Notifiable, HasApiTokens, HasRoles; - + public function sendEmailVerificationNotification() + { + $this->notify(new EmailVerificationNotification()); + } /** * The attributes that are mass assignable. @@ -22,7 +25,7 @@ class User extends Authenticatable implements MustVerifyEmail * @var array */ protected $fillable = [ - 'name', 'email', 'password', 'user_type', 'confirmation_code', 'address', 'city', 'postal_code', 'phone', 'country', 'provider_id', 'email_verified_at', 'verification_code' + 'name', 'email', 'password', 'address', 'city', 'postal_code', 'phone', 'country', 'provider_id', 'email_verified_at', 'verification_code' ]; /** @@ -148,10 +151,5 @@ class User extends Authenticatable implements MustVerifyEmail public function uploads(){ return $this->hasMany(Upload::class); } - - public function workshop() - { - return $this->hasOne(Workshop::class); - } } diff --git a/desarrollo/app/Models/Workshop.php b/desarrollo/app/Models/Workshop.php index 448ab8ca..86c41a74 100644 --- a/desarrollo/app/Models/Workshop.php +++ b/desarrollo/app/Models/Workshop.php @@ -9,7 +9,7 @@ class Workshop extends Model { use HasFactory; - protected $fillable = ['name', 'address']; + protected $fillable = ['name', 'address', 'delivery_pickup_latitude', 'delivery_pickup_longitude', 'user_id']; public function user() { diff --git a/desarrollo/app/Notifications/EmailVerificationNotification.php b/desarrollo/app/Notifications/EmailVerificationNotification.php index f9444796..9121d4d2 100644 --- a/desarrollo/app/Notifications/EmailVerificationNotification.php +++ b/desarrollo/app/Notifications/EmailVerificationNotification.php @@ -2,55 +2,18 @@ namespace App\Notifications; -use Carbon\Carbon; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Illuminate\Notifications\Messages\MailMessage; -use Illuminate\Support\Facades\URL; -use App\Mail\EmailManager; -use Auth; -use App\Models\User; class EmailVerificationNotification extends Notification { use Queueable; - // public $verificationCode; - - // public function __construct($verificationCode) - // { - // $this->verificationCode = $verificationCode; - // } - - // public function via($notifiable) - // { - // return ['mail']; - // } - - // public function toMail($notifiable) - // { - // $verificationCode = $this->verificationCode; - - // return (new MailMessage) - // ->subject(translate('Email Verification - ') . env('APP_NAME')) - // ->line('Your verification code is: ' . $verificationCode); // Mostrar el código de verificación en el correo - // } - - // public function toArray($notifiable) - // { - // return [ - // // - // ]; - // } -} - - -/* class EmailVerificationNotification extends Notification -{ - use Queueable; public function __construct() { + } public function via($notifiable) @@ -70,13 +33,10 @@ class EmailVerificationNotification extends Notification return (new MailMessage) ->view('emails.verification', ['array' => $array]) - ->subject(translate('Email Verification - ').env('APP_NAME')); + ->subject(translate('Email Verification - ') . env('APP_NAME')); } public function toArray($notifiable) { - return [ - // - ]; } -} */ +} diff --git a/desarrollo/app/Notifications/PayoutNotification.php b/desarrollo/app/Notifications/PayoutNotification.php new file mode 100644 index 00000000..a3f582a3 --- /dev/null +++ b/desarrollo/app/Notifications/PayoutNotification.php @@ -0,0 +1,70 @@ +user = $user; + $this->amount = $amount; + $this->status = $status; + } + + /** + * Get the notification's delivery channels. + * + * @param mixed $notifiable + * @return array + */ + public function via($notifiable) + { + return ['database']; + } + + /** + * Get the mail representation of the notification. + * + * @param mixed $notifiable + * @return \Illuminate\Notifications\Messages\MailMessage + */ + public function toMail($notifiable) + { + return (new MailMessage) + ->line('The introduction to the notification.') + ->action('Notification Action', url('/')) + ->line('Thank you for using our application!'); + } + + /** + * Get the array representation of the notification. + * + * @param mixed $notifiable + * @return array + */ + public function toArray($notifiable) + { + return [ + 'user_id' => $this->user['id'], + 'user_type' => $this->user['user_type'], + 'name' => $this->user['name'], + 'payment_amount' => $this->amount, + 'status' => $this->status + ]; + } +} diff --git a/desarrollo/app/Notifications/ShopProductNotification.php b/desarrollo/app/Notifications/ShopProductNotification.php new file mode 100644 index 00000000..959f92b0 --- /dev/null +++ b/desarrollo/app/Notifications/ShopProductNotification.php @@ -0,0 +1,69 @@ +type = $type; + $this->product = $product; + $this->status = $status; + } + + /** + * Get the notification's delivery channels. + * + * @param mixed $notifiable + * @return array + */ + public function via($notifiable) + { + return ['database']; + } + + /** + * Get the mail representation of the notification. + * + * @param mixed $notifiable + * @return \Illuminate\Notifications\Messages\MailMessage + */ + public function toMail($notifiable) + { + return (new MailMessage) + ->line('The introduction to the notification.') + ->action('Notification Action', url('/')) + ->line('Thank you for using our application!'); + } + + /** + * Get the array representation of the notification. + * + * @param mixed $notifiable + * @return array + */ + public function toArray($notifiable) + { + return [ + 'id' => $this->product['id'], + 'name' => $this->product['name'], + 'status' => $this->status, + 'type' => $this->type + ]; + } +} diff --git a/desarrollo/app/Notifications/ShopVerificationNotification.php b/desarrollo/app/Notifications/ShopVerificationNotification.php new file mode 100644 index 00000000..7536f06f --- /dev/null +++ b/desarrollo/app/Notifications/ShopVerificationNotification.php @@ -0,0 +1,66 @@ +shop = $shop; + $this->status = $status; + } + + /** + * Get the notification's delivery channels. + * + * @param mixed $notifiable + * @return array + */ + public function via($notifiable) + { + return ['database']; + } + + /** + * Get the mail representation of the notification. + * + * @param mixed $notifiable + * @return \Illuminate\Notifications\Messages\MailMessage + */ + public function toMail($notifiable) + { + return (new MailMessage) + ->line('The introduction to the notification.') + ->action('Notification Action', url('/')) + ->line('Thank you for using our application!'); + } + + /** + * Get the array representation of the notification. + * + * @param mixed $notifiable + * @return array + */ + public function toArray($notifiable) + { + return [ + 'name' => $this->shop['name'], + 'id' => $this->shop['id'], + 'status'=> $this->status + ]; + } +} diff --git a/desarrollo/app/Services/ProductService.php b/desarrollo/app/Services/ProductService.php index 2aea6d0d..aafd0885 100644 --- a/desarrollo/app/Services/ProductService.php +++ b/desarrollo/app/Services/ProductService.php @@ -3,9 +3,11 @@ namespace App\Services; use AizPackages\CombinationGenerate\Services\CombinationService; +use App\Models\Cart; use App\Models\Color; use App\Models\Product; use App\Models\User; +use App\Models\Wishlist; use App\Utility\ProductUtility; use Combinations; use Illuminate\Support\Str; @@ -301,4 +303,19 @@ class ProductService return $product_new; } + + public function destroy($id) + { + $product = Product::findOrFail($id); + $product->product_translations()->delete(); + $product->stocks()->delete(); + $product->taxes()->delete(); + $product->wishlists()->delete(); + $product->carts()->delete(); + + if(Product::destroy($id)){ + return true; + } + return false; + } } \ No newline at end of file diff --git a/desarrollo/app/Utility/CartUtility.php b/desarrollo/app/Utility/CartUtility.php new file mode 100644 index 00000000..71a33f0f --- /dev/null +++ b/desarrollo/app/Utility/CartUtility.php @@ -0,0 +1,113 @@ +choice_options) && count(json_decode($product->choice_options)) > 0) { + //Gets all the choice values of customer choice option and generate a string like Black-S-Cotton + foreach (json_decode($product->choice_options) as $key => $choice) { + if ($str != null) { + $str .= '-' . str_replace(' ', '', $request['attribute_id_' . $choice->attribute_id]); + } else { + $str .= str_replace(' ', '', $request['attribute_id_' . $choice->attribute_id]); + } + } + } + return $str; + } + + public static function get_price($product, $product_stock, $quantity) + { + $price = $product_stock->price; + if ($product->auction_product == 1) { + $price = $product->bids->max('amount'); + } + + if ($product->wholesale_product) { + $wholesalePrice = $product_stock->wholesalePrices->where('min_qty', '<=', $quantity) + ->where('max_qty', '>=', $quantity) + ->first(); + if ($wholesalePrice) { + $price = $wholesalePrice->price; + } + } + + $price = self::discount_calculation($product, $price); + } + + public static function discount_calculation($product, $price) + { + $discount_applicable = false; + + if ( + $product->discount_start_date == null || + (strtotime(date('d-m-Y H:i:s')) >= $product->discount_start_date && + strtotime(date('d-m-Y H:i:s')) <= $product->discount_end_date) + ) { + $discount_applicable = true; + } + + if ($discount_applicable) { + if ($product->discount_type == 'percent') { + $price -= ($price * $product->discount) / 100; + } elseif ($product->discount_type == 'amount') { + $price -= $product->discount; + } + } + return $price; + } + + public static function tax_calculation($product, $price) + { + $tax = 0; + foreach ($product->taxes as $product_tax) { + if ($product_tax->tax_type == 'percent') { + $tax += ($price * $product_tax->tax) / 100; + } elseif ($product_tax->tax_type == 'amount') { + $tax += $product_tax->tax; + } + } + + return $tax; + } + + public static function save_cart_data($cart, $product, $price, $tax, $quantity) + { + $cart->quantity = $quantity; + $cart->product_id = $product->id; + $cart->owner_id = $product->user_id; + $cart->price = $price; + $cart->tax = $tax; + $cart->product_referral_code = null; + + if (Cookie::has('referred_product_id') && Cookie::get('referred_product_id') == $product->id) { + $cart->product_referral_code = Cookie::get('product_referral_code'); + } + + // Cart::create($data); + $cart->save(); + } + + public static function check_auction_in_cart($carts) + { + foreach ($carts as $cart) { + if ($cart->product->auction_product == 1) { + return true; + } + } + + return false; + } +} diff --git a/desarrollo/composer.json b/desarrollo/composer.json index ceeaede6..59bd5819 100644 --- a/desarrollo/composer.json +++ b/desarrollo/composer.json @@ -5,7 +5,7 @@ "license": "MIT", "type": "project", "require": { - "php": "^8.1", + "php": "^8.0.2", "aiz-packages/color-code-converter": "dev-main", "aiz-packages/combination-generate": "dev-main", "anandsiddharth/laravel-paytm-wallet": "^2.0", @@ -14,7 +14,6 @@ "fideloper/proxy": "^4.4", "genealabs/laravel-sign-in-with-apple": "*", "genealabs/laravel-socialiter": "*", - "google/recaptcha": "^1.3", "guzzlehttp/guzzle": "^7.5", "instamojo/instamojo-php": "^0.4.0", "intervention/image": "^2.5", @@ -30,6 +29,7 @@ "league/flysystem-aws-s3-v3": "^3.12", "maatwebsite/excel": "^3.1", "mehedi-iitdu/core-component-repository": "^2.2", + "mercadopago/dx-php": "^2.5", "mpdf/mpdf": "^8.1", "myfatoorah/laravel-package": "^2.1", "niklasravnsborg/laravel-pdf": "^4.1", diff --git a/desarrollo/composer.lock b/desarrollo/composer.lock index 98f1d378..2abb2d62 100644 --- a/desarrollo/composer.lock +++ b/desarrollo/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "f7e9a8c5cf2ab93e41048aa7a84af823", + "content-hash": "daf2578c1101fb8b2e4f9f9a7b2753d0", "packages": [ { "name": "aiz-packages/color-code-converter", @@ -252,16 +252,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.279.4", + "version": "3.280.0", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "ed0f0f73896c359c5a801ba145f1c0adc5b90047" + "reference": "bf4f3079bc59af44a752677cfbcd43f7953c4343" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/ed0f0f73896c359c5a801ba145f1c0adc5b90047", - "reference": "ed0f0f73896c359c5a801ba145f1c0adc5b90047", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/bf4f3079bc59af44a752677cfbcd43f7953c4343", + "reference": "bf4f3079bc59af44a752677cfbcd43f7953c4343", "shasum": "" }, "require": { @@ -341,9 +341,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.279.4" + "source": "https://github.com/aws/aws-sdk-php/tree/3.280.0" }, - "time": "2023-08-22T18:12:03+00:00" + "time": "2023-08-30T18:19:33+00:00" }, { "name": "bacon/bacon-qr-code", @@ -537,16 +537,16 @@ }, { "name": "dasprid/enum", - "version": "1.0.4", + "version": "1.0.5", "source": { "type": "git", "url": "https://github.com/DASPRiD/Enum.git", - "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f" + "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f", - "reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f", + "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016", + "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016", "shasum": "" }, "require": { @@ -581,9 +581,9 @@ ], "support": { "issues": "https://github.com/DASPRiD/Enum/issues", - "source": "https://github.com/DASPRiD/Enum/tree/1.0.4" + "source": "https://github.com/DASPRiD/Enum/tree/1.0.5" }, - "time": "2023-03-01T18:44:03+00:00" + "time": "2023-08-25T16:18:39+00:00" }, { "name": "dflydev/dot-access-data", @@ -660,6 +660,311 @@ }, "time": "2022-10-27T11:44:00+00:00" }, + { + "name": "doctrine/annotations", + "version": "1.14.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1 || ^2", + "ext-tokenizer": "*", + "php": "^7.1 || ^8.0", + "psr/cache": "^1 || ^2 || ^3" + }, + "require-dev": { + "doctrine/cache": "^1.11 || ^2.0", + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "~1.4.10 || ^1.8.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "symfony/cache": "^4.4 || ^5.4 || ^6", + "vimeo/psalm": "^4.10" + }, + "suggest": { + "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Docblock Annotations Parser", + "homepage": "https://www.doctrine-project.org/projects/annotations.html", + "keywords": [ + "annotations", + "docblock", + "parser" + ], + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/1.14.3" + }, + "time": "2023-02-01T09:20:38+00:00" + }, + { + "name": "doctrine/common", + "version": "3.4.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/common.git", + "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced", + "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced", + "shasum": "" + }, + "require": { + "doctrine/persistence": "^2.0 || ^3.0", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9.0 || ^10.0", + "doctrine/collections": "^1", + "phpstan/phpstan": "^1.4.1", + "phpstan/phpstan-phpunit": "^1", + "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0", + "squizlabs/php_codesniffer": "^3.0", + "symfony/phpunit-bridge": "^6.1", + "vimeo/psalm": "^4.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.", + "homepage": "https://www.doctrine-project.org/projects/common.html", + "keywords": [ + "common", + "doctrine", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/common/issues", + "source": "https://github.com/doctrine/common/tree/3.4.3" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon", + "type": "tidelift" + } + ], + "time": "2022-10-09T11:47:59+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", + "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/v1.1.1" + }, + "time": "2023-06-03T09:27:29+00:00" + }, + { + "name": "doctrine/event-manager", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/event-manager.git", + "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32", + "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "conflict": { + "doctrine/common": "<2.9" + }, + "require-dev": { + "doctrine/coding-standard": "^10", + "phpstan/phpstan": "^1.8.8", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^4.28" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", + "homepage": "https://www.doctrine-project.org/projects/event-manager.html", + "keywords": [ + "event", + "event dispatcher", + "event manager", + "event system", + "events" + ], + "support": { + "issues": "https://github.com/doctrine/event-manager/issues", + "source": "https://github.com/doctrine/event-manager/tree/2.0.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager", + "type": "tidelift" + } + ], + "time": "2022-10-12T20:59:15+00:00" + }, { "name": "doctrine/inflector", "version": "2.0.8", @@ -753,27 +1058,28 @@ }, { "name": "doctrine/lexer", - "version": "3.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "84a527db05647743d50373e0ec53a152f2cde568" + "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/84a527db05647743d50373e0ec53a152f2cde568", - "reference": "84a527db05647743d50373e0ec53a152f2cde568", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", + "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124", "shasum": "" }, "require": { - "php": "^8.1" + "doctrine/deprecations": "^1.0", + "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^10", - "phpstan/phpstan": "^1.9", - "phpunit/phpunit": "^9.5", + "doctrine/coding-standard": "^9 || ^10", + "phpstan/phpstan": "^1.3", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", "psalm/plugin-phpunit": "^0.18.3", - "vimeo/psalm": "^5.0" + "vimeo/psalm": "^4.11 || ^5.0" }, "type": "library", "autoload": { @@ -810,7 +1116,7 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/3.0.0" + "source": "https://github.com/doctrine/lexer/tree/2.1.0" }, "funding": [ { @@ -826,7 +1132,105 @@ "type": "tidelift" } ], - "time": "2022-12-15T16:57:16+00:00" + "time": "2022-12-14T08:49:07+00:00" + }, + { + "name": "doctrine/persistence", + "version": "3.2.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/persistence.git", + "reference": "63fee8c33bef740db6730eb2a750cd3da6495603" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603", + "reference": "63fee8c33bef740db6730eb2a750cd3da6495603", + "shasum": "" + }, + "require": { + "doctrine/event-manager": "^1 || ^2", + "php": "^7.2 || ^8.0", + "psr/cache": "^1.0 || ^2.0 || ^3.0" + }, + "conflict": { + "doctrine/common": "<2.10" + }, + "require-dev": { + "composer/package-versions-deprecated": "^1.11", + "doctrine/coding-standard": "^11", + "doctrine/common": "^3.0", + "phpstan/phpstan": "1.9.4", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.5", + "symfony/cache": "^4.4 || ^5.4 || ^6.0", + "vimeo/psalm": "4.30.0 || 5.3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Persistence\\": "src/Persistence" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", + "homepage": "https://www.doctrine-project.org/projects/persistence.html", + "keywords": [ + "mapper", + "object", + "odm", + "orm", + "persistence" + ], + "support": { + "issues": "https://github.com/doctrine/persistence/issues", + "source": "https://github.com/doctrine/persistence/tree/3.2.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence", + "type": "tidelift" + } + ], + "time": "2023-05-17T18:32:04+00:00" }, { "name": "dragonmantank/cron-expression", @@ -1357,58 +1761,6 @@ ], "time": "2022-02-17T11:44:43+00:00" }, - { - "name": "google/recaptcha", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://github.com/google/recaptcha.git", - "reference": "d59a801e98a4e9174814a6d71bbc268dff1202df" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/google/recaptcha/zipball/d59a801e98a4e9174814a6d71bbc268dff1202df", - "reference": "d59a801e98a4e9174814a6d71bbc268dff1202df", - "shasum": "" - }, - "require": { - "php": ">=8" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^3.14", - "php-coveralls/php-coveralls": "^2.5", - "phpunit/phpunit": "^10" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3.x-dev" - } - }, - "autoload": { - "psr-4": { - "ReCaptcha\\": "src/ReCaptcha" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.", - "homepage": "https://www.google.com/recaptcha/", - "keywords": [ - "Abuse", - "captcha", - "recaptcha", - "spam" - ], - "support": { - "forum": "https://groups.google.com/forum/#!forum/recaptcha", - "issues": "https://github.com/google/recaptcha/issues", - "source": "https://github.com/google/recaptcha" - }, - "time": "2023-02-18T17:41:46+00:00" - }, { "name": "graham-campbell/result-type", "version": "v1.1.1", @@ -1473,22 +1825,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.7.0", + "version": "7.8.0", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5" + "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5", - "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9", + "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0", - "guzzlehttp/psr7": "^1.9.1 || ^2.4.5", + "guzzlehttp/promises": "^1.5.3 || ^2.0.1", + "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -1579,7 +1931,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.7.0" + "source": "https://github.com/guzzle/guzzle/tree/7.8.0" }, "funding": [ { @@ -1595,7 +1947,7 @@ "type": "tidelift" } ], - "time": "2023-05-21T14:04:53+00:00" + "time": "2023-08-27T10:20:53+00:00" }, { "name": "guzzlehttp/promises", @@ -1682,16 +2034,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "2.6.0", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "8bd7c33a0734ae1c5d074360512beb716bef3f77" + "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/8bd7c33a0734ae1c5d074360512beb716bef3f77", - "reference": "8bd7c33a0734ae1c5d074360512beb716bef3f77", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727", + "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727", "shasum": "" }, "require": { @@ -1778,7 +2130,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.6.0" + "source": "https://github.com/guzzle/psr7/tree/2.6.1" }, "funding": [ { @@ -1794,20 +2146,20 @@ "type": "tidelift" } ], - "time": "2023-08-03T15:06:02+00:00" + "time": "2023-08-27T10:13:57+00:00" }, { "name": "guzzlehttp/uri-template", - "version": "v1.0.1", + "version": "v1.0.2", "source": { "type": "git", "url": "https://github.com/guzzle/uri-template.git", - "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2" + "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2", - "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2", + "url": "https://api.github.com/repos/guzzle/uri-template/zipball/61bf437fc2197f587f6857d3ff903a24f1731b5d", + "reference": "61bf437fc2197f587f6857d3ff903a24f1731b5d", "shasum": "" }, "require": { @@ -1815,15 +2167,11 @@ "symfony/polyfill-php80": "^1.17" }, "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.1", "phpunit/phpunit": "^8.5.19 || ^9.5.8", "uri-template/tests": "1.0.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, "autoload": { "psr-4": { "GuzzleHttp\\UriTemplate\\": "src" @@ -1862,7 +2210,7 @@ ], "support": { "issues": "https://github.com/guzzle/uri-template/issues", - "source": "https://github.com/guzzle/uri-template/tree/v1.0.1" + "source": "https://github.com/guzzle/uri-template/tree/v1.0.2" }, "funding": [ { @@ -1878,7 +2226,7 @@ "type": "tidelift" } ], - "time": "2021-10-07T12:57:01+00:00" + "time": "2023-08-27T10:19:19+00:00" }, { "name": "instamojo/instamojo-php", @@ -2016,16 +2364,16 @@ }, { "name": "iyzico/iyzipay-php", - "version": "v2.0.53", + "version": "v2.0.54", "source": { "type": "git", "url": "https://github.com/iyzico/iyzipay-php.git", - "reference": "fbec3750b70f627f10eaeb1afd7512e843406a1c" + "reference": "4a5874a63582e92338662782887da757de62c646" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/iyzico/iyzipay-php/zipball/fbec3750b70f627f10eaeb1afd7512e843406a1c", - "reference": "fbec3750b70f627f10eaeb1afd7512e843406a1c", + "url": "https://api.github.com/repos/iyzico/iyzipay-php/zipball/4a5874a63582e92338662782887da757de62c646", + "reference": "4a5874a63582e92338662782887da757de62c646", "shasum": "" }, "require": { @@ -2066,9 +2414,9 @@ ], "support": { "issues": "https://github.com/iyzico/iyzipay-php/issues", - "source": "https://github.com/iyzico/iyzipay-php/tree/v2.0.53" + "source": "https://github.com/iyzico/iyzipay-php/tree/v2.0.54" }, - "time": "2023-07-21T10:01:02+00:00" + "time": "2023-08-25T08:49:48+00:00" }, { "name": "kingflamez/laravelrave", @@ -2596,16 +2944,16 @@ }, { "name": "laravel/tinker", - "version": "v2.8.1", + "version": "v2.8.2", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10" + "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", - "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10", + "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3", + "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3", "shasum": "" }, "require": { @@ -2618,6 +2966,7 @@ }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^8.5.8|^9.3.3" }, "suggest": { @@ -2658,9 +3007,9 @@ ], "support": { "issues": "https://github.com/laravel/tinker/issues", - "source": "https://github.com/laravel/tinker/tree/v2.8.1" + "source": "https://github.com/laravel/tinker/tree/v2.8.2" }, - "time": "2023-02-15T16:40:09+00:00" + "time": "2023-08-15T14:27:00+00:00" }, { "name": "laravel/ui", @@ -2866,16 +3215,16 @@ }, { "name": "league/commonmark", - "version": "2.4.0", + "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048" + "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d44a24690f16b8c1808bf13b1bd54ae4c63ea048", - "reference": "d44a24690f16b8c1808bf13b1bd54ae4c63ea048", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5", + "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5", "shasum": "" }, "require": { @@ -2968,7 +3317,7 @@ "type": "tidelift" } ], - "time": "2023-03-24T15:16:10+00:00" + "time": "2023-08-30T16:55:00+00:00" }, { "name": "league/config", @@ -3730,6 +4079,57 @@ }, "time": "2023-02-14T07:23:35+00:00" }, + { + "name": "mercadopago/dx-php", + "version": "2.6.0", + "source": { + "type": "git", + "url": "https://github.com/mercadopago/sdk-php.git", + "reference": "be9cf1cb29f1a78f9dc15f5548f47af6a9a897e4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mercadopago/sdk-php/zipball/be9cf1cb29f1a78f9dc15f5548f47af6a9a897e4", + "reference": "be9cf1cb29f1a78f9dc15f5548f47af6a9a897e4", + "shasum": "" + }, + "require": { + "doctrine/annotations": "^1.8", + "doctrine/common": "^2.6 || ^3.0", + "php": ">=7.1.0" + }, + "require-dev": { + "doctrine/orm": "^2.3", + "phpmd/phpmd": "@stable", + "phpunit/phpunit": "^7", + "sebastian/phpcpd": "*", + "squizlabs/php_codesniffer": "2.8.1", + "symfony/yaml": "~2.5", + "vlucas/phpdotenv": "^2.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "MercadoPago\\": [ + "src/MercadoPago/", + "tests/", + "src/MercadoPago/Generic/", + "src/MercadoPago/Entities/", + "src/MercadoPago/Entities/Shared/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Mercado Pago PHP SDK", + "homepage": "https://github.com/mercadopago/sdk-php", + "support": { + "source": "https://github.com/mercadopago/sdk-php/tree/2.6.0" + }, + "time": "2023-08-03T17:33:17+00:00" + }, { "name": "monolog/monolog", "version": "2.9.1", @@ -3955,25 +4355,25 @@ }, { "name": "mtdowling/jmespath.php", - "version": "2.6.1", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/jmespath/jmespath.php.git", - "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb" + "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb", - "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb", + "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b", + "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b", "shasum": "" }, "require": { - "php": "^5.4 || ^7.0 || ^8.0", + "php": "^7.2.5 || ^8.0", "symfony/polyfill-mbstring": "^1.17" }, "require-dev": { - "composer/xdebug-handler": "^1.4 || ^2.0", - "phpunit/phpunit": "^4.8.36 || ^7.5.15" + "composer/xdebug-handler": "^3.0.3", + "phpunit/phpunit": "^8.5.33" }, "bin": [ "bin/jp.php" @@ -3981,7 +4381,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.6-dev" + "dev-master": "2.7-dev" } }, "autoload": { @@ -3997,6 +4397,11 @@ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", @@ -4010,9 +4415,9 @@ ], "support": { "issues": "https://github.com/jmespath/jmespath.php/issues", - "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1" + "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0" }, - "time": "2021-06-14T00:11:39+00:00" + "time": "2023-08-25T10:54:48+00:00" }, { "name": "myclabs/deep-copy", @@ -5031,6 +5436,55 @@ ], "time": "2023-08-15T23:01:46+00:00" }, + { + "name": "psr/cache", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/cache.git", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "shasum": "" + }, + "require": { + "php": ">=8.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for caching libraries", + "keywords": [ + "cache", + "psr", + "psr-6" + ], + "support": { + "source": "https://github.com/php-fig/cache/tree/3.0.0" + }, + "time": "2021-02-03T23:26:27+00:00" + }, { "name": "psr/clock", "version": "1.0.0", @@ -6341,16 +6795,16 @@ }, { "name": "symfony/console", - "version": "v6.3.2", + "version": "v6.3.4", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "aa5d64ad3f63f2e48964fc81ee45cb318a723898" + "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/aa5d64ad3f63f2e48964fc81ee45cb318a723898", - "reference": "aa5d64ad3f63f2e48964fc81ee45cb318a723898", + "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6", + "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6", "shasum": "" }, "require": { @@ -6411,7 +6865,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.3.2" + "source": "https://github.com/symfony/console/tree/v6.3.4" }, "funding": [ { @@ -6427,7 +6881,7 @@ "type": "tidelift" } ], - "time": "2023-07-19T20:17:28+00:00" + "time": "2023-08-16T10:10:12+00:00" }, { "name": "symfony/css-selector", @@ -6857,16 +7311,16 @@ }, { "name": "symfony/http-foundation", - "version": "v6.3.2", + "version": "v6.3.4", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "43ed99d30f5f466ffa00bdac3f5f7aa9cd7617c3" + "reference": "cac1556fdfdf6719668181974104e6fcfa60e844" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/43ed99d30f5f466ffa00bdac3f5f7aa9cd7617c3", - "reference": "43ed99d30f5f466ffa00bdac3f5f7aa9cd7617c3", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cac1556fdfdf6719668181974104e6fcfa60e844", + "reference": "cac1556fdfdf6719668181974104e6fcfa60e844", "shasum": "" }, "require": { @@ -6914,7 +7368,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.3.2" + "source": "https://github.com/symfony/http-foundation/tree/v6.3.4" }, "funding": [ { @@ -6930,20 +7384,20 @@ "type": "tidelift" } ], - "time": "2023-07-23T21:58:39+00:00" + "time": "2023-08-22T08:20:46+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.3.3", + "version": "v6.3.4", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "d3b567f0addf695e10b0c6d57564a9bea2e058ee" + "reference": "36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d3b567f0addf695e10b0c6d57564a9bea2e058ee", - "reference": "d3b567f0addf695e10b0c6d57564a9bea2e058ee", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb", + "reference": "36abb425b4af863ae1fe54d8a8b8b4c76a2bccdb", "shasum": "" }, "require": { @@ -6952,7 +7406,7 @@ "symfony/deprecation-contracts": "^2.5|^3", "symfony/error-handler": "^6.3", "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/http-foundation": "^6.2.7", + "symfony/http-foundation": "^6.3.4", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -6960,7 +7414,7 @@ "symfony/cache": "<5.4", "symfony/config": "<6.1", "symfony/console": "<5.4", - "symfony/dependency-injection": "<6.3", + "symfony/dependency-injection": "<6.3.4", "symfony/doctrine-bridge": "<5.4", "symfony/form": "<5.4", "symfony/http-client": "<5.4", @@ -6984,7 +7438,7 @@ "symfony/config": "^6.1", "symfony/console": "^5.4|^6.0", "symfony/css-selector": "^5.4|^6.0", - "symfony/dependency-injection": "^6.3", + "symfony/dependency-injection": "^6.3.4", "symfony/dom-crawler": "^5.4|^6.0", "symfony/expression-language": "^5.4|^6.0", "symfony/finder": "^5.4|^6.0", @@ -7027,7 +7481,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.3.3" + "source": "https://github.com/symfony/http-kernel/tree/v6.3.4" }, "funding": [ { @@ -7043,7 +7497,7 @@ "type": "tidelift" } ], - "time": "2023-07-31T10:33:00+00:00" + "time": "2023-08-26T13:54:49+00:00" }, { "name": "symfony/mailer", @@ -7211,16 +7665,16 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", - "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", "shasum": "" }, "require": { @@ -7235,7 +7689,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7273,7 +7727,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" }, "funding": [ { @@ -7289,20 +7743,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "511a08c03c1960e08a883f4cffcacd219b758354" + "reference": "875e90aeea2777b6f135677f618529449334a612" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354", - "reference": "511a08c03c1960e08a883f4cffcacd219b758354", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", + "reference": "875e90aeea2777b6f135677f618529449334a612", "shasum": "" }, "require": { @@ -7314,7 +7768,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7354,7 +7808,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0" }, "funding": [ { @@ -7370,20 +7824,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "639084e360537a19f9ee352433b84ce831f3d2da" + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", - "reference": "639084e360537a19f9ee352433b84ce831f3d2da", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", "shasum": "" }, "require": { @@ -7397,7 +7851,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7441,7 +7895,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0" }, "funding": [ { @@ -7457,20 +7911,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:30:37+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", - "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", "shasum": "" }, "require": { @@ -7482,7 +7936,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7525,7 +7979,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" }, "funding": [ { @@ -7541,20 +7995,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" + "reference": "42292d99c55abe617799667f454222c54c60e229" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", "shasum": "" }, "require": { @@ -7569,7 +8023,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7608,7 +8062,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" }, "funding": [ { @@ -7624,20 +8078,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-07-28T09:04:16+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", - "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", "shasum": "" }, "require": { @@ -7646,7 +8100,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7684,7 +8138,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0" }, "funding": [ { @@ -7700,20 +8154,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", "shasum": "" }, "require": { @@ -7722,7 +8176,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7767,7 +8221,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" }, "funding": [ { @@ -7783,20 +8237,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-php83", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "508c652ba3ccf69f8c97f251534f229791b52a57" + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57", - "reference": "508c652ba3ccf69f8c97f251534f229791b52a57", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", + "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", "shasum": "" }, "require": { @@ -7806,7 +8260,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7819,7 +8273,10 @@ ], "psr-4": { "Symfony\\Polyfill\\Php83\\": "" - } + }, + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -7844,7 +8301,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0" }, "funding": [ { @@ -7860,20 +8317,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-08-16T06:22:46+00:00" }, { "name": "symfony/polyfill-uuid", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-uuid.git", - "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166" + "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166", - "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166", + "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/9c44518a5aff8da565c8a55dbe85d2769e6f630e", + "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e", "shasum": "" }, "require": { @@ -7888,7 +8345,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -7926,7 +8383,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-uuid/tree/v1.28.0" }, "funding": [ { @@ -7942,20 +8399,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/process", - "version": "v6.3.2", + "version": "v6.3.4", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d" + "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d", - "reference": "c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d", + "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54", + "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54", "shasum": "" }, "require": { @@ -7987,7 +8444,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.3.2" + "source": "https://github.com/symfony/process/tree/v6.3.4" }, "funding": [ { @@ -8003,7 +8460,7 @@ "type": "tidelift" } ], - "time": "2023-07-12T16:00:22+00:00" + "time": "2023-08-07T10:39:22+00:00" }, { "name": "symfony/routing", @@ -8566,16 +9023,16 @@ }, { "name": "symfony/var-dumper", - "version": "v6.3.3", + "version": "v6.3.4", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "77fb4f2927f6991a9843633925d111147449ee7a" + "reference": "2027be14f8ae8eae999ceadebcda5b4909b81d45" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/77fb4f2927f6991a9843633925d111147449ee7a", - "reference": "77fb4f2927f6991a9843633925d111147449ee7a", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2027be14f8ae8eae999ceadebcda5b4909b81d45", + "reference": "2027be14f8ae8eae999ceadebcda5b4909b81d45", "shasum": "" }, "require": { @@ -8630,7 +9087,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.3.3" + "source": "https://github.com/symfony/var-dumper/tree/v6.3.4" }, "funding": [ { @@ -8646,7 +9103,7 @@ "type": "tidelift" } ], - "time": "2023-07-31T07:08:24+00:00" + "time": "2023-08-24T14:51:05+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -9048,16 +9505,16 @@ "packages-dev": [ { "name": "barryvdh/laravel-debugbar", - "version": "v3.8.2", + "version": "v3.9.2", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-debugbar.git", - "reference": "56a2dc1da9d3219164074713983eef68996386cf" + "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/56a2dc1da9d3219164074713983eef68996386cf", - "reference": "56a2dc1da9d3219164074713983eef68996386cf", + "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/bfd0131c146973cab164e50f5cdd8a67cc60cab1", + "reference": "bfd0131c146973cab164e50f5cdd8a67cc60cab1", "shasum": "" }, "require": { @@ -9116,7 +9573,7 @@ ], "support": { "issues": "https://github.com/barryvdh/laravel-debugbar/issues", - "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.8.2" + "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.9.2" }, "funding": [ { @@ -9128,7 +9585,7 @@ "type": "github" } ], - "time": "2023-07-26T04:57:49+00:00" + "time": "2023-08-25T18:43:57+00:00" }, { "name": "barryvdh/laravel-ide-helper", @@ -9626,144 +10083,6 @@ ], "time": "2023-08-17T05:38:17+00:00" }, - { - "name": "doctrine/deprecations", - "version": "v1.1.1", - "source": { - "type": "git", - "url": "https://github.com/doctrine/deprecations.git", - "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", - "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", - "shasum": "" - }, - "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "doctrine/coding-standard": "^9", - "phpstan/phpstan": "1.4.10 || 1.10.15", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "psalm/plugin-phpunit": "0.18.4", - "psr/log": "^1 || ^2 || ^3", - "vimeo/psalm": "4.30.0 || 5.12.0" - }, - "suggest": { - "psr/log": "Allows logging deprecations via PSR-3 logger implementation" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", - "homepage": "https://www.doctrine-project.org/", - "support": { - "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/v1.1.1" - }, - "time": "2023-06-03T09:27:29+00:00" - }, - { - "name": "doctrine/event-manager", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/event-manager.git", - "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32", - "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32", - "shasum": "" - }, - "require": { - "php": "^8.1" - }, - "conflict": { - "doctrine/common": "<2.9" - }, - "require-dev": { - "doctrine/coding-standard": "^10", - "phpstan/phpstan": "^1.8.8", - "phpunit/phpunit": "^9.5", - "vimeo/psalm": "^4.28" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Common\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - } - ], - "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", - "homepage": "https://www.doctrine-project.org/projects/event-manager.html", - "keywords": [ - "event", - "event dispatcher", - "event manager", - "event system", - "events" - ], - "support": { - "issues": "https://github.com/doctrine/event-manager/issues", - "source": "https://github.com/doctrine/event-manager/tree/2.0.0" - }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager", - "type": "tidelift" - } - ], - "time": "2022-10-12T20:59:15+00:00" - }, { "name": "doctrine/instantiator", "version": "2.0.0", @@ -10026,16 +10345,16 @@ }, { "name": "laravel/sail", - "version": "v1.23.4", + "version": "v1.24.0", "source": { "type": "git", "url": "https://github.com/laravel/sail.git", - "reference": "cfa1ad579349110a87f9412eb65ecba94d682ac2" + "reference": "c8a621d7b69ab2e568d97a20f837ca733a224006" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sail/zipball/cfa1ad579349110a87f9412eb65ecba94d682ac2", - "reference": "cfa1ad579349110a87f9412eb65ecba94d682ac2", + "url": "https://api.github.com/repos/laravel/sail/zipball/c8a621d7b69ab2e568d97a20f837ca733a224006", + "reference": "c8a621d7b69ab2e568d97a20f837ca733a224006", "shasum": "" }, "require": { @@ -10087,7 +10406,7 @@ "issues": "https://github.com/laravel/sail/issues", "source": "https://github.com/laravel/sail" }, - "time": "2023-08-17T12:49:32+00:00" + "time": "2023-08-27T14:26:11+00:00" }, { "name": "maximebf/debugbar", @@ -11019,55 +11338,6 @@ ], "time": "2023-08-19T07:10:56+00:00" }, - { - "name": "psr/cache", - "version": "3.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", - "shasum": "" - }, - "require": { - "php": ">=8.0.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Cache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interface for caching libraries", - "keywords": [ - "cache", - "psr", - "psr-6" - ], - "support": { - "source": "https://github.com/php-fig/cache/tree/3.0.0" - }, - "time": "2021-02-03T23:26:27+00:00" - }, { "name": "sebastian/cli-parser", "version": "1.0.1", @@ -12471,7 +12741,7 @@ "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^8.1" + "php": "^8.0.2" }, "platform-dev": [], "plugin-api-version": "2.3.0" diff --git a/desarrollo/config/app.php b/desarrollo/config/app.php index 7d725bcf..ae996226 100644 --- a/desarrollo/config/app.php +++ b/desarrollo/config/app.php @@ -100,7 +100,7 @@ return [ | */ - 'locale' => env('DEFAULT_LANGUAGE', 'es'), + 'locale' => env('DEFAULT_LANGUAGE', 'en'), /* |-------------------------------------------------------------------------- @@ -113,7 +113,7 @@ return [ | */ - 'fallback_locale' => 'es', + 'fallback_locale' => 'en', /* |-------------------------------------------------------------------------- @@ -169,8 +169,6 @@ return [ Illuminate\Validation\ValidationServiceProvider::class, Illuminate\View\ViewServiceProvider::class, KingFlamez\Rave\RaveServiceProvider::class, - - /* * Package Service Providers... @@ -186,7 +184,6 @@ return [ App\Providers\RouteServiceProvider::class, Spatie\Permission\PermissionServiceProvider::class, - ], @@ -239,8 +236,6 @@ return [ 'PDF' => niklasravnsborg\LaravelPdf\Facades\Pdf::class, 'Str' => Illuminate\Support\Str::class, 'Rave' => KingFlamez\Rave\Facades\Rave::class, - 'Recaptcha' => \ReCaptcha\ReCaptcha::class, - ], ]; diff --git a/desarrollo/config/filesystems.php b/desarrollo/config/filesystems.php index 910571af..992a0e3a 100644 --- a/desarrollo/config/filesystems.php +++ b/desarrollo/config/filesystems.php @@ -55,13 +55,24 @@ return [ 'visibility' => 'public', ], - 's3' => [ - 'driver' => 's3', - 'key' => env('AWS_ACCESS_KEY_ID'), - 'secret' => env('AWS_SECRET_ACCESS_KEY'), - 'region' => env('AWS_DEFAULT_REGION'), - 'bucket' => env('AWS_BUCKET'), - 'url' => env('AWS_URL'), + 'aws' => [ + 'driver' => 's3', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_DEFAULT_REGION'), + 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), + // 'scheme' => 'http', + ], + + 'backblaze' => [ + 'driver' => 's3', + 'key' => env('BACKBLAZE_ACCESS_KEY_ID'), + 'secret' => env('BACKBLAZE_SECRET_ACCESS_KEY'), + 'region' => env('BACKBLAZE_DEFAULT_REGION'), + 'bucket' => env('BACKBLAZE_BUCKET'), + 'url' => env('BACKBLAZE_URL'), + 'endpoint' => env('BACKBLAZE_ENDPOINT'), ], ], diff --git a/desarrollo/config/session.php b/desarrollo/config/session.php index fbb9b4d7..60c5c450 100644 --- a/desarrollo/config/session.php +++ b/desarrollo/config/session.php @@ -162,7 +162,7 @@ return [ | | By setting this option to true, session cookies will only be sent back | to the server if the browser has a HTTPS connection. This will keep - | the cookie from being sent to you if it can not be done securely. + | the cookie from being sent to you if it cannot be done securely. | */ diff --git a/desarrollo/description b/desarrollo/description new file mode 100644 index 00000000..498b267a --- /dev/null +++ b/desarrollo/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/desarrollo/diseno/login-clientes/css/.editorconfig b/desarrollo/diseno/login-clientes/css/.editorconfig deleted file mode 100644 index 6f313c6a..00000000 --- a/desarrollo/diseno/login-clientes/css/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -root = true - -[*] -charset = utf-8 -end_of_line = lf -insert_final_newline = true -indent_style = space -indent_size = 4 -trim_trailing_whitespace = true - -[*.md] -trim_trailing_whitespace = false - -[*.yml] -indent_size = 2 diff --git a/desarrollo/diseno/login-clientes/css/aos.css b/desarrollo/diseno/login-clientes/css/aos.css deleted file mode 100644 index 66923fe6..00000000 --- a/desarrollo/diseno/login-clientes/css/aos.css +++ /dev/null @@ -1 +0,0 @@ -[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)} \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/css/bootstrap.min.css b/desarrollo/diseno/login-clientes/css/bootstrap.min.css deleted file mode 100644 index 6ee59568..00000000 --- a/desarrollo/diseno/login-clientes/css/bootstrap.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item,.nav-fill>.nav-link{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.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:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/css/icofont.min.css b/desarrollo/diseno/login-clientes/css/icofont.min.css deleted file mode 100644 index 91bdd564..00000000 --- a/desarrollo/diseno/login-clientes/css/icofont.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! -* @package IcoFont -* @version 1.0.1 -* @author IcoFont https://icofont.com -* @copyright Copyright (c) 2015 - 2018 IcoFont -* @license - https://icofont.com/license/ -*/@font-face{font-family:IcoFont;font-weight:400;font-style:Regular;src:url(../fonts/icofont.woff2) format("woff2"),url(../fonts/icofont.woff) format("woff")}[class*=" icofont-"],[class^=icofont-]{font-family:IcoFont!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;line-height:1;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased}.icofont-angry-monster:before{content:"\e800"}.icofont-bathtub:before{content:"\e801"}.icofont-bird-wings:before{content:"\e802"}.icofont-bow:before{content:"\e803"}.icofont-castle:before{content:"\e804"}.icofont-circuit:before{content:"\e805"}.icofont-crown-king:before{content:"\e806"}.icofont-crown-queen:before{content:"\e807"}.icofont-dart:before{content:"\e808"}.icofont-disability-race:before{content:"\e809"}.icofont-diving-goggle:before{content:"\e80a"}.icofont-eye-open:before{content:"\e80b"}.icofont-flora-flower:before{content:"\e80c"}.icofont-flora:before{content:"\e80d"}.icofont-gift-box:before{content:"\e80e"}.icofont-halloween-pumpkin:before{content:"\e80f"}.icofont-hand-power:before{content:"\e810"}.icofont-hand-thunder:before{content:"\e811"}.icofont-king-monster:before{content:"\e812"}.icofont-love:before{content:"\e813"}.icofont-magician-hat:before{content:"\e814"}.icofont-native-american:before{content:"\e815"}.icofont-owl-look:before{content:"\e816"}.icofont-phoenix:before{content:"\e817"}.icofont-robot-face:before{content:"\e818"}.icofont-sand-clock:before{content:"\e819"}.icofont-shield-alt:before{content:"\e81a"}.icofont-ship-wheel:before{content:"\e81b"}.icofont-skull-danger:before{content:"\e81c"}.icofont-skull-face:before{content:"\e81d"}.icofont-snowmobile:before{content:"\e81e"}.icofont-space-shuttle:before{content:"\e81f"}.icofont-star-shape:before{content:"\e820"}.icofont-swirl:before{content:"\e821"}.icofont-tattoo-wing:before{content:"\e822"}.icofont-throne:before{content:"\e823"}.icofont-tree-alt:before{content:"\e824"}.icofont-triangle:before{content:"\e825"}.icofont-unity-hand:before{content:"\e826"}.icofont-weed:before{content:"\e827"}.icofont-woman-bird:before{content:"\e828"}.icofont-bat:before{content:"\e829"}.icofont-bear-face:before{content:"\e82a"}.icofont-bear-tracks:before{content:"\e82b"}.icofont-bear:before{content:"\e82c"}.icofont-bird-alt:before{content:"\e82d"}.icofont-bird-flying:before{content:"\e82e"}.icofont-bird:before{content:"\e82f"}.icofont-birds:before{content:"\e830"}.icofont-bone:before{content:"\e831"}.icofont-bull:before{content:"\e832"}.icofont-butterfly-alt:before{content:"\e833"}.icofont-butterfly:before{content:"\e834"}.icofont-camel-alt:before{content:"\e835"}.icofont-camel-head:before{content:"\e836"}.icofont-camel:before{content:"\e837"}.icofont-cat-alt-1:before{content:"\e838"}.icofont-cat-alt-2:before{content:"\e839"}.icofont-cat-alt-3:before{content:"\e83a"}.icofont-cat-dog:before{content:"\e83b"}.icofont-cat-face:before{content:"\e83c"}.icofont-cat:before{content:"\e83d"}.icofont-cow-head:before{content:"\e83e"}.icofont-cow:before{content:"\e83f"}.icofont-crab:before{content:"\e840"}.icofont-crocodile:before{content:"\e841"}.icofont-deer-head:before{content:"\e842"}.icofont-dog-alt:before{content:"\e843"}.icofont-dog-barking:before{content:"\e844"}.icofont-dog:before{content:"\e845"}.icofont-dolphin:before{content:"\e846"}.icofont-duck-tracks:before{content:"\e847"}.icofont-eagle-head:before{content:"\e848"}.icofont-eaten-fish:before{content:"\e849"}.icofont-elephant-alt:before{content:"\e84a"}.icofont-elephant-head-alt:before{content:"\e84b"}.icofont-elephant-head:before{content:"\e84c"}.icofont-elephant:before{content:"\e84d"}.icofont-elk:before{content:"\e84e"}.icofont-fish-1:before{content:"\e84f"}.icofont-fish-2:before{content:"\e850"}.icofont-fish-3:before{content:"\e851"}.icofont-fish-4:before{content:"\e852"}.icofont-fish-5:before{content:"\e853"}.icofont-fish:before{content:"\e854"}.icofont-fox-alt:before{content:"\e855"}.icofont-fox:before{content:"\e856"}.icofont-frog-tracks:before{content:"\e857"}.icofont-frog:before{content:"\e858"}.icofont-froggy:before{content:"\e859"}.icofont-giraffe-head-1:before{content:"\e85a"}.icofont-giraffe-head-2:before{content:"\e85b"}.icofont-giraffe-head:before{content:"\e85c"}.icofont-giraffe:before{content:"\e85d"}.icofont-goat-head:before{content:"\e85e"}.icofont-gorilla:before{content:"\e85f"}.icofont-hen-tracks:before{content:"\e860"}.icofont-horse-head-1:before{content:"\e861"}.icofont-horse-head-2:before{content:"\e862"}.icofont-horse-head:before{content:"\e863"}.icofont-horse-tracks:before{content:"\e864"}.icofont-jellyfish:before{content:"\e865"}.icofont-kangaroo:before{content:"\e866"}.icofont-lemur:before{content:"\e867"}.icofont-lion-head-1:before{content:"\e868"}.icofont-lion-head-2:before{content:"\e869"}.icofont-lion-head:before{content:"\e86a"}.icofont-lion:before{content:"\e86b"}.icofont-monkey-2:before{content:"\e86c"}.icofont-monkey-3:before{content:"\e86d"}.icofont-monkey-face:before{content:"\e86e"}.icofont-monkey:before{content:"\e86f"}.icofont-octopus-alt:before{content:"\e870"}.icofont-octopus:before{content:"\e871"}.icofont-owl:before{content:"\e872"}.icofont-panda-face:before{content:"\e873"}.icofont-panda:before{content:"\e874"}.icofont-panther:before{content:"\e875"}.icofont-parrot-lip:before{content:"\e876"}.icofont-parrot:before{content:"\e877"}.icofont-paw:before{content:"\e878"}.icofont-pelican:before{content:"\e879"}.icofont-penguin:before{content:"\e87a"}.icofont-pig-face:before{content:"\e87b"}.icofont-pig:before{content:"\e87c"}.icofont-pigeon-1:before{content:"\e87d"}.icofont-pigeon-2:before{content:"\e87e"}.icofont-pigeon:before{content:"\e87f"}.icofont-rabbit:before{content:"\e880"}.icofont-rat:before{content:"\e881"}.icofont-rhino-head:before{content:"\e882"}.icofont-rhino:before{content:"\e883"}.icofont-rooster:before{content:"\e884"}.icofont-seahorse:before{content:"\e885"}.icofont-seal:before{content:"\e886"}.icofont-shrimp-alt:before{content:"\e887"}.icofont-shrimp:before{content:"\e888"}.icofont-snail-1:before{content:"\e889"}.icofont-snail-2:before{content:"\e88a"}.icofont-snail-3:before{content:"\e88b"}.icofont-snail:before{content:"\e88c"}.icofont-snake:before{content:"\e88d"}.icofont-squid:before{content:"\e88e"}.icofont-squirrel:before{content:"\e88f"}.icofont-tiger-face:before{content:"\e890"}.icofont-tiger:before{content:"\e891"}.icofont-turtle:before{content:"\e892"}.icofont-whale:before{content:"\e893"}.icofont-woodpecker:before{content:"\e894"}.icofont-zebra:before{content:"\e895"}.icofont-brand-acer:before{content:"\e896"}.icofont-brand-adidas:before{content:"\e897"}.icofont-brand-adobe:before{content:"\e898"}.icofont-brand-air-new-zealand:before{content:"\e899"}.icofont-brand-airbnb:before{content:"\e89a"}.icofont-brand-aircell:before{content:"\e89b"}.icofont-brand-airtel:before{content:"\e89c"}.icofont-brand-alcatel:before{content:"\e89d"}.icofont-brand-alibaba:before{content:"\e89e"}.icofont-brand-aliexpress:before{content:"\e89f"}.icofont-brand-alipay:before{content:"\e8a0"}.icofont-brand-amazon:before{content:"\e8a1"}.icofont-brand-amd:before{content:"\e8a2"}.icofont-brand-american-airlines:before{content:"\e8a3"}.icofont-brand-android-robot:before{content:"\e8a4"}.icofont-brand-android:before{content:"\e8a5"}.icofont-brand-aol:before{content:"\e8a6"}.icofont-brand-apple:before{content:"\e8a7"}.icofont-brand-appstore:before{content:"\e8a8"}.icofont-brand-asus:before{content:"\e8a9"}.icofont-brand-ati:before{content:"\e8aa"}.icofont-brand-att:before{content:"\e8ab"}.icofont-brand-audi:before{content:"\e8ac"}.icofont-brand-axiata:before{content:"\e8ad"}.icofont-brand-bada:before{content:"\e8ae"}.icofont-brand-bbc:before{content:"\e8af"}.icofont-brand-bing:before{content:"\e8b0"}.icofont-brand-blackberry:before{content:"\e8b1"}.icofont-brand-bmw:before{content:"\e8b2"}.icofont-brand-box:before{content:"\e8b3"}.icofont-brand-burger-king:before{content:"\e8b4"}.icofont-brand-business-insider:before{content:"\e8b5"}.icofont-brand-buzzfeed:before{content:"\e8b6"}.icofont-brand-cannon:before{content:"\e8b7"}.icofont-brand-casio:before{content:"\e8b8"}.icofont-brand-china-mobile:before{content:"\e8b9"}.icofont-brand-china-telecom:before{content:"\e8ba"}.icofont-brand-china-unicom:before{content:"\e8bb"}.icofont-brand-cisco:before{content:"\e8bc"}.icofont-brand-citibank:before{content:"\e8bd"}.icofont-brand-cnet:before{content:"\e8be"}.icofont-brand-cnn:before{content:"\e8bf"}.icofont-brand-cocal-cola:before{content:"\e8c0"}.icofont-brand-compaq:before{content:"\e8c1"}.icofont-brand-debian:before{content:"\e8c2"}.icofont-brand-delicious:before{content:"\e8c3"}.icofont-brand-dell:before{content:"\e8c4"}.icofont-brand-designbump:before{content:"\e8c5"}.icofont-brand-designfloat:before{content:"\e8c6"}.icofont-brand-disney:before{content:"\e8c7"}.icofont-brand-dodge:before{content:"\e8c8"}.icofont-brand-dove:before{content:"\e8c9"}.icofont-brand-drupal:before{content:"\e8ca"}.icofont-brand-ebay:before{content:"\e8cb"}.icofont-brand-eleven:before{content:"\e8cc"}.icofont-brand-emirates:before{content:"\e8cd"}.icofont-brand-espn:before{content:"\e8ce"}.icofont-brand-etihad-airways:before{content:"\e8cf"}.icofont-brand-etisalat:before{content:"\e8d0"}.icofont-brand-etsy:before{content:"\e8d1"}.icofont-brand-fastrack:before{content:"\e8d2"}.icofont-brand-fedex:before{content:"\e8d3"}.icofont-brand-ferrari:before{content:"\e8d4"}.icofont-brand-fitbit:before{content:"\e8d5"}.icofont-brand-flikr:before{content:"\e8d6"}.icofont-brand-forbes:before{content:"\e8d7"}.icofont-brand-foursquare:before{content:"\e8d8"}.icofont-brand-foxconn:before{content:"\e8d9"}.icofont-brand-fujitsu:before{content:"\e8da"}.icofont-brand-general-electric:before{content:"\e8db"}.icofont-brand-gillette:before{content:"\e8dc"}.icofont-brand-gizmodo:before{content:"\e8dd"}.icofont-brand-gnome:before{content:"\e8de"}.icofont-brand-google:before{content:"\e8df"}.icofont-brand-gopro:before{content:"\e8e0"}.icofont-brand-gucci:before{content:"\e8e1"}.icofont-brand-hallmark:before{content:"\e8e2"}.icofont-brand-hi5:before{content:"\e8e3"}.icofont-brand-honda:before{content:"\e8e4"}.icofont-brand-hp:before{content:"\e8e5"}.icofont-brand-hsbc:before{content:"\e8e6"}.icofont-brand-htc:before{content:"\e8e7"}.icofont-brand-huawei:before{content:"\e8e8"}.icofont-brand-hulu:before{content:"\e8e9"}.icofont-brand-hyundai:before{content:"\e8ea"}.icofont-brand-ibm:before{content:"\e8eb"}.icofont-brand-icofont:before{content:"\e8ec"}.icofont-brand-icq:before{content:"\e8ed"}.icofont-brand-ikea:before{content:"\e8ee"}.icofont-brand-imdb:before{content:"\e8ef"}.icofont-brand-indiegogo:before{content:"\e8f0"}.icofont-brand-intel:before{content:"\e8f1"}.icofont-brand-ipair:before{content:"\e8f2"}.icofont-brand-jaguar:before{content:"\e8f3"}.icofont-brand-java:before{content:"\e8f4"}.icofont-brand-joomla:before{content:"\e8f5"}.icofont-brand-kickstarter:before{content:"\e8f6"}.icofont-brand-kik:before{content:"\e8f7"}.icofont-brand-lastfm:before{content:"\e8f8"}.icofont-brand-lego:before{content:"\e8f9"}.icofont-brand-lenovo:before{content:"\e8fa"}.icofont-brand-levis:before{content:"\e8fb"}.icofont-brand-lexus:before{content:"\e8fc"}.icofont-brand-lg:before{content:"\e8fd"}.icofont-brand-life-hacker:before{content:"\e8fe"}.icofont-brand-linux-mint:before{content:"\e8ff"}.icofont-brand-linux:before{content:"\e900"}.icofont-brand-lionix:before{content:"\e901"}.icofont-brand-loreal:before{content:"\e902"}.icofont-brand-louis-vuitton:before{content:"\e903"}.icofont-brand-mac-os:before{content:"\e904"}.icofont-brand-marvel-app:before{content:"\e905"}.icofont-brand-mashable:before{content:"\e906"}.icofont-brand-mazda:before{content:"\e907"}.icofont-brand-mcdonals:before{content:"\e908"}.icofont-brand-mercedes:before{content:"\e909"}.icofont-brand-micromax:before{content:"\e90a"}.icofont-brand-microsoft:before{content:"\e90b"}.icofont-brand-mobileme:before{content:"\e90c"}.icofont-brand-mobily:before{content:"\e90d"}.icofont-brand-motorola:before{content:"\e90e"}.icofont-brand-msi:before{content:"\e90f"}.icofont-brand-mts:before{content:"\e910"}.icofont-brand-myspace:before{content:"\e911"}.icofont-brand-mytv:before{content:"\e912"}.icofont-brand-nasa:before{content:"\e913"}.icofont-brand-natgeo:before{content:"\e914"}.icofont-brand-nbc:before{content:"\e915"}.icofont-brand-nescafe:before{content:"\e916"}.icofont-brand-nestle:before{content:"\e917"}.icofont-brand-netflix:before{content:"\e918"}.icofont-brand-nexus:before{content:"\e919"}.icofont-brand-nike:before{content:"\e91a"}.icofont-brand-nokia:before{content:"\e91b"}.icofont-brand-nvidia:before{content:"\e91c"}.icofont-brand-omega:before{content:"\e91d"}.icofont-brand-opensuse:before{content:"\e91e"}.icofont-brand-oracle:before{content:"\e91f"}.icofont-brand-panasonic:before{content:"\e920"}.icofont-brand-paypal:before{content:"\e921"}.icofont-brand-pepsi:before{content:"\e922"}.icofont-brand-philips:before{content:"\e923"}.icofont-brand-pizza-hut:before{content:"\e924"}.icofont-brand-playstation:before{content:"\e925"}.icofont-brand-puma:before{content:"\e926"}.icofont-brand-qatar-air:before{content:"\e927"}.icofont-brand-qvc:before{content:"\e928"}.icofont-brand-readernaut:before{content:"\e929"}.icofont-brand-redbull:before{content:"\e92a"}.icofont-brand-reebok:before{content:"\e92b"}.icofont-brand-reuters:before{content:"\e92c"}.icofont-brand-samsung:before{content:"\e92d"}.icofont-brand-sap:before{content:"\e92e"}.icofont-brand-saudia-airlines:before{content:"\e92f"}.icofont-brand-scribd:before{content:"\e930"}.icofont-brand-shell:before{content:"\e931"}.icofont-brand-siemens:before{content:"\e932"}.icofont-brand-sk-telecom:before{content:"\e933"}.icofont-brand-slideshare:before{content:"\e934"}.icofont-brand-smashing-magazine:before{content:"\e935"}.icofont-brand-snapchat:before{content:"\e936"}.icofont-brand-sony-ericsson:before{content:"\e937"}.icofont-brand-sony:before{content:"\e938"}.icofont-brand-soundcloud:before{content:"\e939"}.icofont-brand-sprint:before{content:"\e93a"}.icofont-brand-squidoo:before{content:"\e93b"}.icofont-brand-starbucks:before{content:"\e93c"}.icofont-brand-stc:before{content:"\e93d"}.icofont-brand-steam:before{content:"\e93e"}.icofont-brand-suzuki:before{content:"\e93f"}.icofont-brand-symbian:before{content:"\e940"}.icofont-brand-t-mobile:before{content:"\e941"}.icofont-brand-tango:before{content:"\e942"}.icofont-brand-target:before{content:"\e943"}.icofont-brand-tata-indicom:before{content:"\e944"}.icofont-brand-techcrunch:before{content:"\e945"}.icofont-brand-telenor:before{content:"\e946"}.icofont-brand-teliasonera:before{content:"\e947"}.icofont-brand-tesla:before{content:"\e948"}.icofont-brand-the-verge:before{content:"\e949"}.icofont-brand-thenextweb:before{content:"\e94a"}.icofont-brand-toshiba:before{content:"\e94b"}.icofont-brand-toyota:before{content:"\e94c"}.icofont-brand-tribenet:before{content:"\e94d"}.icofont-brand-ubuntu:before{content:"\e94e"}.icofont-brand-unilever:before{content:"\e94f"}.icofont-brand-vaio:before{content:"\e950"}.icofont-brand-verizon:before{content:"\e951"}.icofont-brand-viber:before{content:"\e952"}.icofont-brand-vodafone:before{content:"\e953"}.icofont-brand-volkswagen:before{content:"\e954"}.icofont-brand-walmart:before{content:"\e955"}.icofont-brand-warnerbros:before{content:"\e956"}.icofont-brand-whatsapp:before{content:"\e957"}.icofont-brand-wikipedia:before{content:"\e958"}.icofont-brand-windows:before{content:"\e959"}.icofont-brand-wire:before{content:"\e95a"}.icofont-brand-wordpress:before{content:"\e95b"}.icofont-brand-xiaomi:before{content:"\e95c"}.icofont-brand-yahoobuzz:before{content:"\e95d"}.icofont-brand-yamaha:before{content:"\e95e"}.icofont-brand-youtube:before{content:"\e95f"}.icofont-brand-zain:before{content:"\e960"}.icofont-bank-alt:before{content:"\e961"}.icofont-bank:before{content:"\e962"}.icofont-barcode:before{content:"\e963"}.icofont-bill-alt:before{content:"\e964"}.icofont-billboard:before{content:"\e965"}.icofont-briefcase-1:before{content:"\e966"}.icofont-briefcase-2:before{content:"\e967"}.icofont-businessman:before{content:"\e968"}.icofont-businesswoman:before{content:"\e969"}.icofont-chair:before{content:"\e96a"}.icofont-coins:before{content:"\e96b"}.icofont-company:before{content:"\e96c"}.icofont-contact-add:before{content:"\e96d"}.icofont-files-stack:before{content:"\e96e"}.icofont-handshake-deal:before{content:"\e96f"}.icofont-id-card:before{content:"\e970"}.icofont-meeting-add:before{content:"\e971"}.icofont-money-bag:before{content:"\e972"}.icofont-pie-chart:before{content:"\e973"}.icofont-presentation-alt:before{content:"\e974"}.icofont-presentation:before{content:"\e975"}.icofont-stamp:before{content:"\e976"}.icofont-stock-mobile:before{content:"\e977"}.icofont-chart-arrows-axis:before{content:"\e978"}.icofont-chart-bar-graph:before{content:"\e979"}.icofont-chart-flow-1:before{content:"\e97a"}.icofont-chart-flow-2:before{content:"\e97b"}.icofont-chart-flow:before{content:"\e97c"}.icofont-chart-growth:before{content:"\e97d"}.icofont-chart-histogram-alt:before{content:"\e97e"}.icofont-chart-histogram:before{content:"\e97f"}.icofont-chart-line-alt:before{content:"\e980"}.icofont-chart-line:before{content:"\e981"}.icofont-chart-pie-alt:before{content:"\e982"}.icofont-chart-pie:before{content:"\e983"}.icofont-chart-radar-graph:before{content:"\e984"}.icofont-architecture-alt:before{content:"\e985"}.icofont-architecture:before{content:"\e986"}.icofont-barricade:before{content:"\e987"}.icofont-bolt:before{content:"\e988"}.icofont-bricks:before{content:"\e989"}.icofont-building-alt:before{content:"\e98a"}.icofont-bull-dozer:before{content:"\e98b"}.icofont-calculations:before{content:"\e98c"}.icofont-cement-mix:before{content:"\e98d"}.icofont-cement-mixer:before{content:"\e98e"}.icofont-concrete-mixer:before{content:"\e98f"}.icofont-danger-zone:before{content:"\e990"}.icofont-drill:before{content:"\e991"}.icofont-eco-energy:before{content:"\e992"}.icofont-eco-environmen:before{content:"\e993"}.icofont-energy-air:before{content:"\e994"}.icofont-energy-oil:before{content:"\e995"}.icofont-energy-savings:before{content:"\e996"}.icofont-energy-solar:before{content:"\e997"}.icofont-energy-water:before{content:"\e998"}.icofont-engineer:before{content:"\e999"}.icofont-fire-extinguisher-alt:before{content:"\e99a"}.icofont-fire-extinguisher:before{content:"\e99b"}.icofont-fix-tools:before{content:"\e99c"}.icofont-fork-lift:before{content:"\e99d"}.icofont-glue-oil:before{content:"\e99e"}.icofont-hammer-alt:before{content:"\e99f"}.icofont-hammer:before{content:"\e9a0"}.icofont-help-robot:before{content:"\e9a1"}.icofont-industries-1:before{content:"\e9a2"}.icofont-industries-2:before{content:"\e9a3"}.icofont-industries-3:before{content:"\e9a4"}.icofont-industries-4:before{content:"\e9a5"}.icofont-industries-5:before{content:"\e9a6"}.icofont-industries:before{content:"\e9a7"}.icofont-labour:before{content:"\e9a8"}.icofont-mining:before{content:"\e9a9"}.icofont-paint-brush:before{content:"\e9aa"}.icofont-pollution:before{content:"\e9ab"}.icofont-power-zone:before{content:"\e9ac"}.icofont-radio-active:before{content:"\e9ad"}.icofont-recycle-alt:before{content:"\e9ae"}.icofont-recycling-man:before{content:"\e9af"}.icofont-safety-hat-light:before{content:"\e9b0"}.icofont-safety-hat:before{content:"\e9b1"}.icofont-saw:before{content:"\e9b2"}.icofont-screw-driver:before{content:"\e9b3"}.icofont-tools-1:before{content:"\e9b4"}.icofont-tools-bag:before{content:"\e9b5"}.icofont-tow-truck:before{content:"\e9b6"}.icofont-trolley:before{content:"\e9b7"}.icofont-trowel:before{content:"\e9b8"}.icofont-under-construction-alt:before{content:"\e9b9"}.icofont-under-construction:before{content:"\e9ba"}.icofont-vehicle-cement:before{content:"\e9bb"}.icofont-vehicle-crane:before{content:"\e9bc"}.icofont-vehicle-delivery-van:before{content:"\e9bd"}.icofont-vehicle-dozer:before{content:"\e9be"}.icofont-vehicle-excavator:before{content:"\e9bf"}.icofont-vehicle-trucktor:before{content:"\e9c0"}.icofont-vehicle-wrecking:before{content:"\e9c1"}.icofont-worker:before{content:"\e9c2"}.icofont-workers-group:before{content:"\e9c3"}.icofont-wrench:before{content:"\e9c4"}.icofont-afghani-false:before{content:"\e9c5"}.icofont-afghani-minus:before{content:"\e9c6"}.icofont-afghani-plus:before{content:"\e9c7"}.icofont-afghani-true:before{content:"\e9c8"}.icofont-afghani:before{content:"\e9c9"}.icofont-baht-false:before{content:"\e9ca"}.icofont-baht-minus:before{content:"\e9cb"}.icofont-baht-plus:before{content:"\e9cc"}.icofont-baht-true:before{content:"\e9cd"}.icofont-baht:before{content:"\e9ce"}.icofont-bitcoin-false:before{content:"\e9cf"}.icofont-bitcoin-minus:before{content:"\e9d0"}.icofont-bitcoin-plus:before{content:"\e9d1"}.icofont-bitcoin-true:before{content:"\e9d2"}.icofont-bitcoin:before{content:"\e9d3"}.icofont-dollar-flase:before{content:"\e9d4"}.icofont-dollar-minus:before{content:"\e9d5"}.icofont-dollar-plus:before{content:"\e9d6"}.icofont-dollar-true:before{content:"\e9d7"}.icofont-dollar:before{content:"\e9d8"}.icofont-dong-false:before{content:"\e9d9"}.icofont-dong-minus:before{content:"\e9da"}.icofont-dong-plus:before{content:"\e9db"}.icofont-dong-true:before{content:"\e9dc"}.icofont-dong:before{content:"\e9dd"}.icofont-euro-false:before{content:"\e9de"}.icofont-euro-minus:before{content:"\e9df"}.icofont-euro-plus:before{content:"\e9e0"}.icofont-euro-true:before{content:"\e9e1"}.icofont-euro:before{content:"\e9e2"}.icofont-frank-false:before{content:"\e9e3"}.icofont-frank-minus:before{content:"\e9e4"}.icofont-frank-plus:before{content:"\e9e5"}.icofont-frank-true:before{content:"\e9e6"}.icofont-frank:before{content:"\e9e7"}.icofont-hryvnia-false:before{content:"\e9e8"}.icofont-hryvnia-minus:before{content:"\e9e9"}.icofont-hryvnia-plus:before{content:"\e9ea"}.icofont-hryvnia-true:before{content:"\e9eb"}.icofont-hryvnia:before{content:"\e9ec"}.icofont-lira-false:before{content:"\e9ed"}.icofont-lira-minus:before{content:"\e9ee"}.icofont-lira-plus:before{content:"\e9ef"}.icofont-lira-true:before{content:"\e9f0"}.icofont-lira:before{content:"\e9f1"}.icofont-peseta-false:before{content:"\e9f2"}.icofont-peseta-minus:before{content:"\e9f3"}.icofont-peseta-plus:before{content:"\e9f4"}.icofont-peseta-true:before{content:"\e9f5"}.icofont-peseta:before{content:"\e9f6"}.icofont-peso-false:before{content:"\e9f7"}.icofont-peso-minus:before{content:"\e9f8"}.icofont-peso-plus:before{content:"\e9f9"}.icofont-peso-true:before{content:"\e9fa"}.icofont-peso:before{content:"\e9fb"}.icofont-pound-false:before{content:"\e9fc"}.icofont-pound-minus:before{content:"\e9fd"}.icofont-pound-plus:before{content:"\e9fe"}.icofont-pound-true:before{content:"\e9ff"}.icofont-pound:before{content:"\ea00"}.icofont-renminbi-false:before{content:"\ea01"}.icofont-renminbi-minus:before{content:"\ea02"}.icofont-renminbi-plus:before{content:"\ea03"}.icofont-renminbi-true:before{content:"\ea04"}.icofont-renminbi:before{content:"\ea05"}.icofont-riyal-false:before{content:"\ea06"}.icofont-riyal-minus:before{content:"\ea07"}.icofont-riyal-plus:before{content:"\ea08"}.icofont-riyal-true:before{content:"\ea09"}.icofont-riyal:before{content:"\ea0a"}.icofont-rouble-false:before{content:"\ea0b"}.icofont-rouble-minus:before{content:"\ea0c"}.icofont-rouble-plus:before{content:"\ea0d"}.icofont-rouble-true:before{content:"\ea0e"}.icofont-rouble:before{content:"\ea0f"}.icofont-rupee-false:before{content:"\ea10"}.icofont-rupee-minus:before{content:"\ea11"}.icofont-rupee-plus:before{content:"\ea12"}.icofont-rupee-true:before{content:"\ea13"}.icofont-rupee:before{content:"\ea14"}.icofont-taka-false:before{content:"\ea15"}.icofont-taka-minus:before{content:"\ea16"}.icofont-taka-plus:before{content:"\ea17"}.icofont-taka-true:before{content:"\ea18"}.icofont-taka:before{content:"\ea19"}.icofont-turkish-lira-false:before{content:"\ea1a"}.icofont-turkish-lira-minus:before{content:"\ea1b"}.icofont-turkish-lira-plus:before{content:"\ea1c"}.icofont-turkish-lira-true:before{content:"\ea1d"}.icofont-turkish-lira:before{content:"\ea1e"}.icofont-won-false:before{content:"\ea1f"}.icofont-won-minus:before{content:"\ea20"}.icofont-won-plus:before{content:"\ea21"}.icofont-won-true:before{content:"\ea22"}.icofont-won:before{content:"\ea23"}.icofont-yen-false:before{content:"\ea24"}.icofont-yen-minus:before{content:"\ea25"}.icofont-yen-plus:before{content:"\ea26"}.icofont-yen-true:before{content:"\ea27"}.icofont-yen:before{content:"\ea28"}.icofont-android-nexus:before{content:"\ea29"}.icofont-android-tablet:before{content:"\ea2a"}.icofont-apple-watch:before{content:"\ea2b"}.icofont-drawing-tablet:before{content:"\ea2c"}.icofont-earphone:before{content:"\ea2d"}.icofont-flash-drive:before{content:"\ea2e"}.icofont-game-console:before{content:"\ea2f"}.icofont-game-controller:before{content:"\ea30"}.icofont-game-pad:before{content:"\ea31"}.icofont-game:before{content:"\ea32"}.icofont-headphone-alt-1:before{content:"\ea33"}.icofont-headphone-alt-2:before{content:"\ea34"}.icofont-headphone-alt-3:before{content:"\ea35"}.icofont-headphone-alt:before{content:"\ea36"}.icofont-headphone:before{content:"\ea37"}.icofont-htc-one:before{content:"\ea38"}.icofont-imac:before{content:"\ea39"}.icofont-ipad:before{content:"\ea3a"}.icofont-iphone:before{content:"\ea3b"}.icofont-ipod-nano:before{content:"\ea3c"}.icofont-ipod-touch:before{content:"\ea3d"}.icofont-keyboard-alt:before{content:"\ea3e"}.icofont-keyboard-wireless:before{content:"\ea3f"}.icofont-keyboard:before{content:"\ea40"}.icofont-laptop-alt:before{content:"\ea41"}.icofont-laptop:before{content:"\ea42"}.icofont-macbook:before{content:"\ea43"}.icofont-magic-mouse:before{content:"\ea44"}.icofont-micro-chip:before{content:"\ea45"}.icofont-microphone-alt:before{content:"\ea46"}.icofont-microphone:before{content:"\ea47"}.icofont-monitor:before{content:"\ea48"}.icofont-mouse:before{content:"\ea49"}.icofont-mp3-player:before{content:"\ea4a"}.icofont-nintendo:before{content:"\ea4b"}.icofont-playstation-alt:before{content:"\ea4c"}.icofont-psvita:before{content:"\ea4d"}.icofont-radio-mic:before{content:"\ea4e"}.icofont-radio:before{content:"\ea4f"}.icofont-refrigerator:before{content:"\ea50"}.icofont-samsung-galaxy:before{content:"\ea51"}.icofont-surface-tablet:before{content:"\ea52"}.icofont-ui-head-phone:before{content:"\ea53"}.icofont-ui-keyboard:before{content:"\ea54"}.icofont-washing-machine:before{content:"\ea55"}.icofont-wifi-router:before{content:"\ea56"}.icofont-wii-u:before{content:"\ea57"}.icofont-windows-lumia:before{content:"\ea58"}.icofont-wireless-mouse:before{content:"\ea59"}.icofont-xbox-360:before{content:"\ea5a"}.icofont-arrow-down:before{content:"\ea5b"}.icofont-arrow-left:before{content:"\ea5c"}.icofont-arrow-right:before{content:"\ea5d"}.icofont-arrow-up:before{content:"\ea5e"}.icofont-block-down:before{content:"\ea5f"}.icofont-block-left:before{content:"\ea60"}.icofont-block-right:before{content:"\ea61"}.icofont-block-up:before{content:"\ea62"}.icofont-bubble-down:before{content:"\ea63"}.icofont-bubble-left:before{content:"\ea64"}.icofont-bubble-right:before{content:"\ea65"}.icofont-bubble-up:before{content:"\ea66"}.icofont-caret-down:before{content:"\ea67"}.icofont-caret-left:before{content:"\ea68"}.icofont-caret-right:before{content:"\ea69"}.icofont-caret-up:before{content:"\ea6a"}.icofont-circled-down:before{content:"\ea6b"}.icofont-circled-left:before{content:"\ea6c"}.icofont-circled-right:before{content:"\ea6d"}.icofont-circled-up:before{content:"\ea6e"}.icofont-collapse:before{content:"\ea6f"}.icofont-cursor-drag:before{content:"\ea70"}.icofont-curved-double-left:before{content:"\ea71"}.icofont-curved-double-right:before{content:"\ea72"}.icofont-curved-down:before{content:"\ea73"}.icofont-curved-left:before{content:"\ea74"}.icofont-curved-right:before{content:"\ea75"}.icofont-curved-up:before{content:"\ea76"}.icofont-dotted-down:before{content:"\ea77"}.icofont-dotted-left:before{content:"\ea78"}.icofont-dotted-right:before{content:"\ea79"}.icofont-dotted-up:before{content:"\ea7a"}.icofont-double-left:before{content:"\ea7b"}.icofont-double-right:before{content:"\ea7c"}.icofont-expand-alt:before{content:"\ea7d"}.icofont-hand-down:before{content:"\ea7e"}.icofont-hand-drag:before{content:"\ea7f"}.icofont-hand-drag1:before{content:"\ea80"}.icofont-hand-drag2:before{content:"\ea81"}.icofont-hand-drawn-alt-down:before{content:"\ea82"}.icofont-hand-drawn-alt-left:before{content:"\ea83"}.icofont-hand-drawn-alt-right:before{content:"\ea84"}.icofont-hand-drawn-alt-up:before{content:"\ea85"}.icofont-hand-drawn-down:before{content:"\ea86"}.icofont-hand-drawn-left:before{content:"\ea87"}.icofont-hand-drawn-right:before{content:"\ea88"}.icofont-hand-drawn-up:before{content:"\ea89"}.icofont-hand-grippers:before{content:"\ea8a"}.icofont-hand-left:before{content:"\ea8b"}.icofont-hand-right:before{content:"\ea8c"}.icofont-hand-up:before{content:"\ea8d"}.icofont-line-block-down:before{content:"\ea8e"}.icofont-line-block-left:before{content:"\ea8f"}.icofont-line-block-right:before{content:"\ea90"}.icofont-line-block-up:before{content:"\ea91"}.icofont-long-arrow-down:before{content:"\ea92"}.icofont-long-arrow-left:before{content:"\ea93"}.icofont-long-arrow-right:before{content:"\ea94"}.icofont-long-arrow-up:before{content:"\ea95"}.icofont-rounded-collapse:before{content:"\ea96"}.icofont-rounded-double-left:before{content:"\ea97"}.icofont-rounded-double-right:before{content:"\ea98"}.icofont-rounded-down:before{content:"\ea99"}.icofont-rounded-expand:before{content:"\ea9a"}.icofont-rounded-left-down:before{content:"\ea9b"}.icofont-rounded-left-up:before{content:"\ea9c"}.icofont-rounded-left:before{content:"\ea9d"}.icofont-rounded-right-down:before{content:"\ea9e"}.icofont-rounded-right-up:before{content:"\ea9f"}.icofont-rounded-right:before{content:"\eaa0"}.icofont-rounded-up:before{content:"\eaa1"}.icofont-scroll-bubble-down:before{content:"\eaa2"}.icofont-scroll-bubble-left:before{content:"\eaa3"}.icofont-scroll-bubble-right:before{content:"\eaa4"}.icofont-scroll-bubble-up:before{content:"\eaa5"}.icofont-scroll-double-down:before{content:"\eaa6"}.icofont-scroll-double-left:before{content:"\eaa7"}.icofont-scroll-double-right:before{content:"\eaa8"}.icofont-scroll-double-up:before{content:"\eaa9"}.icofont-scroll-down:before{content:"\eaaa"}.icofont-scroll-left:before{content:"\eaab"}.icofont-scroll-long-down:before{content:"\eaac"}.icofont-scroll-long-left:before{content:"\eaad"}.icofont-scroll-long-right:before{content:"\eaae"}.icofont-scroll-long-up:before{content:"\eaaf"}.icofont-scroll-right:before{content:"\eab0"}.icofont-scroll-up:before{content:"\eab1"}.icofont-simple-down:before{content:"\eab2"}.icofont-simple-left-down:before{content:"\eab3"}.icofont-simple-left-up:before{content:"\eab4"}.icofont-simple-left:before{content:"\eab5"}.icofont-simple-right-down:before{content:"\eab6"}.icofont-simple-right-up:before{content:"\eab7"}.icofont-simple-right:before{content:"\eab8"}.icofont-simple-up:before{content:"\eab9"}.icofont-square-down:before{content:"\eaba"}.icofont-square-left:before{content:"\eabb"}.icofont-square-right:before{content:"\eabc"}.icofont-square-up:before{content:"\eabd"}.icofont-stylish-down:before{content:"\eabe"}.icofont-stylish-left:before{content:"\eabf"}.icofont-stylish-right:before{content:"\eac0"}.icofont-stylish-up:before{content:"\eac1"}.icofont-swoosh-down:before{content:"\eac2"}.icofont-swoosh-left:before{content:"\eac3"}.icofont-swoosh-right:before{content:"\eac4"}.icofont-swoosh-up:before{content:"\eac5"}.icofont-thin-double-left:before{content:"\eac6"}.icofont-thin-double-right:before{content:"\eac7"}.icofont-thin-down:before{content:"\eac8"}.icofont-thin-left:before{content:"\eac9"}.icofont-thin-right:before{content:"\eaca"}.icofont-thin-up:before{content:"\eacb"}.icofont-abc:before{content:"\eacc"}.icofont-atom:before{content:"\eacd"}.icofont-award:before{content:"\eace"}.icofont-bell-alt:before{content:"\eacf"}.icofont-black-board:before{content:"\ead0"}.icofont-book-alt:before{content:"\ead1"}.icofont-book:before{content:"\ead2"}.icofont-brainstorming:before{content:"\ead3"}.icofont-certificate-alt-1:before{content:"\ead4"}.icofont-certificate-alt-2:before{content:"\ead5"}.icofont-certificate:before{content:"\ead6"}.icofont-education:before{content:"\ead7"}.icofont-electron:before{content:"\ead8"}.icofont-fountain-pen:before{content:"\ead9"}.icofont-globe-alt:before{content:"\eada"}.icofont-graduate-alt:before{content:"\eadb"}.icofont-graduate:before{content:"\eadc"}.icofont-group-students:before{content:"\eadd"}.icofont-hat-alt:before{content:"\eade"}.icofont-hat:before{content:"\eadf"}.icofont-instrument:before{content:"\eae0"}.icofont-lamp-light:before{content:"\eae1"}.icofont-medal:before{content:"\eae2"}.icofont-microscope-alt:before{content:"\eae3"}.icofont-microscope:before{content:"\eae4"}.icofont-paper:before{content:"\eae5"}.icofont-pen-alt-4:before{content:"\eae6"}.icofont-pen-nib:before{content:"\eae7"}.icofont-pencil-alt-5:before{content:"\eae8"}.icofont-quill-pen:before{content:"\eae9"}.icofont-read-book-alt:before{content:"\eaea"}.icofont-read-book:before{content:"\eaeb"}.icofont-school-bag:before{content:"\eaec"}.icofont-school-bus:before{content:"\eaed"}.icofont-student-alt:before{content:"\eaee"}.icofont-student:before{content:"\eaef"}.icofont-teacher:before{content:"\eaf0"}.icofont-test-bulb:before{content:"\eaf1"}.icofont-test-tube-alt:before{content:"\eaf2"}.icofont-university:before{content:"\eaf3"}.icofont-angry:before{content:"\eaf4"}.icofont-astonished:before{content:"\eaf5"}.icofont-confounded:before{content:"\eaf6"}.icofont-confused:before{content:"\eaf7"}.icofont-crying:before{content:"\eaf8"}.icofont-dizzy:before{content:"\eaf9"}.icofont-expressionless:before{content:"\eafa"}.icofont-heart-eyes:before{content:"\eafb"}.icofont-laughing:before{content:"\eafc"}.icofont-nerd-smile:before{content:"\eafd"}.icofont-open-mouth:before{content:"\eafe"}.icofont-rage:before{content:"\eaff"}.icofont-rolling-eyes:before{content:"\eb00"}.icofont-sad:before{content:"\eb01"}.icofont-simple-smile:before{content:"\eb02"}.icofont-slightly-smile:before{content:"\eb03"}.icofont-smirk:before{content:"\eb04"}.icofont-stuck-out-tongue:before{content:"\eb05"}.icofont-wink-smile:before{content:"\eb06"}.icofont-worried:before{content:"\eb07"}.icofont-file-alt:before{content:"\eb08"}.icofont-file-audio:before{content:"\eb09"}.icofont-file-avi-mp4:before{content:"\eb0a"}.icofont-file-bmp:before{content:"\eb0b"}.icofont-file-code:before{content:"\eb0c"}.icofont-file-css:before{content:"\eb0d"}.icofont-file-document:before{content:"\eb0e"}.icofont-file-eps:before{content:"\eb0f"}.icofont-file-excel:before{content:"\eb10"}.icofont-file-exe:before{content:"\eb11"}.icofont-file-file:before{content:"\eb12"}.icofont-file-flv:before{content:"\eb13"}.icofont-file-gif:before{content:"\eb14"}.icofont-file-html5:before{content:"\eb15"}.icofont-file-image:before{content:"\eb16"}.icofont-file-iso:before{content:"\eb17"}.icofont-file-java:before{content:"\eb18"}.icofont-file-javascript:before{content:"\eb19"}.icofont-file-jpg:before{content:"\eb1a"}.icofont-file-midi:before{content:"\eb1b"}.icofont-file-mov:before{content:"\eb1c"}.icofont-file-mp3:before{content:"\eb1d"}.icofont-file-pdf:before{content:"\eb1e"}.icofont-file-php:before{content:"\eb1f"}.icofont-file-png:before{content:"\eb20"}.icofont-file-powerpoint:before{content:"\eb21"}.icofont-file-presentation:before{content:"\eb22"}.icofont-file-psb:before{content:"\eb23"}.icofont-file-psd:before{content:"\eb24"}.icofont-file-python:before{content:"\eb25"}.icofont-file-ruby:before{content:"\eb26"}.icofont-file-spreadsheet:before{content:"\eb27"}.icofont-file-sql:before{content:"\eb28"}.icofont-file-svg:before{content:"\eb29"}.icofont-file-text:before{content:"\eb2a"}.icofont-file-tiff:before{content:"\eb2b"}.icofont-file-video:before{content:"\eb2c"}.icofont-file-wave:before{content:"\eb2d"}.icofont-file-wmv:before{content:"\eb2e"}.icofont-file-word:before{content:"\eb2f"}.icofont-file-zip:before{content:"\eb30"}.icofont-cycling-alt:before{content:"\eb31"}.icofont-cycling:before{content:"\eb32"}.icofont-dumbbell:before{content:"\eb33"}.icofont-dumbbells:before{content:"\eb34"}.icofont-gym-alt-1:before{content:"\eb35"}.icofont-gym-alt-2:before{content:"\eb36"}.icofont-gym-alt-3:before{content:"\eb37"}.icofont-gym:before{content:"\eb38"}.icofont-muscle-weight:before{content:"\eb39"}.icofont-muscle:before{content:"\eb3a"}.icofont-apple:before{content:"\eb3b"}.icofont-arabian-coffee:before{content:"\eb3c"}.icofont-artichoke:before{content:"\eb3d"}.icofont-asparagus:before{content:"\eb3e"}.icofont-avocado:before{content:"\eb3f"}.icofont-baby-food:before{content:"\eb40"}.icofont-banana:before{content:"\eb41"}.icofont-bbq:before{content:"\eb42"}.icofont-beans:before{content:"\eb43"}.icofont-beer:before{content:"\eb44"}.icofont-bell-pepper-capsicum:before{content:"\eb45"}.icofont-birthday-cake:before{content:"\eb46"}.icofont-bread:before{content:"\eb47"}.icofont-broccoli:before{content:"\eb48"}.icofont-burger:before{content:"\eb49"}.icofont-cabbage:before{content:"\eb4a"}.icofont-carrot:before{content:"\eb4b"}.icofont-cauli-flower:before{content:"\eb4c"}.icofont-cheese:before{content:"\eb4d"}.icofont-chef:before{content:"\eb4e"}.icofont-cherry:before{content:"\eb4f"}.icofont-chicken-fry:before{content:"\eb50"}.icofont-chicken:before{content:"\eb51"}.icofont-cocktail:before{content:"\eb52"}.icofont-coconut-water:before{content:"\eb53"}.icofont-coconut:before{content:"\eb54"}.icofont-coffee-alt:before{content:"\eb55"}.icofont-coffee-cup:before{content:"\eb56"}.icofont-coffee-mug:before{content:"\eb57"}.icofont-coffee-pot:before{content:"\eb58"}.icofont-cola:before{content:"\eb59"}.icofont-corn:before{content:"\eb5a"}.icofont-croissant:before{content:"\eb5b"}.icofont-crop-plant:before{content:"\eb5c"}.icofont-cucumber:before{content:"\eb5d"}.icofont-culinary:before{content:"\eb5e"}.icofont-cup-cake:before{content:"\eb5f"}.icofont-dining-table:before{content:"\eb60"}.icofont-donut:before{content:"\eb61"}.icofont-egg-plant:before{content:"\eb62"}.icofont-egg-poached:before{content:"\eb63"}.icofont-farmer-alt:before{content:"\eb64"}.icofont-farmer:before{content:"\eb65"}.icofont-fast-food:before{content:"\eb66"}.icofont-food-basket:before{content:"\eb67"}.icofont-food-cart:before{content:"\eb68"}.icofont-fork-and-knife:before{content:"\eb69"}.icofont-french-fries:before{content:"\eb6a"}.icofont-fruits:before{content:"\eb6b"}.icofont-grapes:before{content:"\eb6c"}.icofont-honey:before{content:"\eb6d"}.icofont-hot-dog:before{content:"\eb6e"}.icofont-ice-cream-alt:before{content:"\eb6f"}.icofont-ice-cream:before{content:"\eb70"}.icofont-juice:before{content:"\eb71"}.icofont-ketchup:before{content:"\eb72"}.icofont-kiwi:before{content:"\eb73"}.icofont-layered-cake:before{content:"\eb74"}.icofont-lemon-alt:before{content:"\eb75"}.icofont-lemon:before{content:"\eb76"}.icofont-lobster:before{content:"\eb77"}.icofont-mango:before{content:"\eb78"}.icofont-milk:before{content:"\eb79"}.icofont-mushroom:before{content:"\eb7a"}.icofont-noodles:before{content:"\eb7b"}.icofont-onion:before{content:"\eb7c"}.icofont-orange:before{content:"\eb7d"}.icofont-pear:before{content:"\eb7e"}.icofont-peas:before{content:"\eb7f"}.icofont-pepper:before{content:"\eb80"}.icofont-pie-alt:before{content:"\eb81"}.icofont-pie:before{content:"\eb82"}.icofont-pineapple:before{content:"\eb83"}.icofont-pizza-slice:before{content:"\eb84"}.icofont-pizza:before{content:"\eb85"}.icofont-plant:before{content:"\eb86"}.icofont-popcorn:before{content:"\eb87"}.icofont-potato:before{content:"\eb88"}.icofont-pumpkin:before{content:"\eb89"}.icofont-raddish:before{content:"\eb8a"}.icofont-restaurant-menu:before{content:"\eb8b"}.icofont-restaurant:before{content:"\eb8c"}.icofont-salt-and-pepper:before{content:"\eb8d"}.icofont-sandwich:before{content:"\eb8e"}.icofont-sausage:before{content:"\eb8f"}.icofont-soft-drinks:before{content:"\eb90"}.icofont-soup-bowl:before{content:"\eb91"}.icofont-spoon-and-fork:before{content:"\eb92"}.icofont-steak:before{content:"\eb93"}.icofont-strawberry:before{content:"\eb94"}.icofont-sub-sandwich:before{content:"\eb95"}.icofont-sushi:before{content:"\eb96"}.icofont-taco:before{content:"\eb97"}.icofont-tea-pot:before{content:"\eb98"}.icofont-tea:before{content:"\eb99"}.icofont-tomato:before{content:"\eb9a"}.icofont-watermelon:before{content:"\eb9b"}.icofont-wheat:before{content:"\eb9c"}.icofont-baby-backpack:before{content:"\eb9d"}.icofont-baby-cloth:before{content:"\eb9e"}.icofont-baby-milk-bottle:before{content:"\eb9f"}.icofont-baby-trolley:before{content:"\eba0"}.icofont-baby:before{content:"\eba1"}.icofont-candy:before{content:"\eba2"}.icofont-holding-hands:before{content:"\eba3"}.icofont-infant-nipple:before{content:"\eba4"}.icofont-kids-scooter:before{content:"\eba5"}.icofont-safety-pin:before{content:"\eba6"}.icofont-teddy-bear:before{content:"\eba7"}.icofont-toy-ball:before{content:"\eba8"}.icofont-toy-cat:before{content:"\eba9"}.icofont-toy-duck:before{content:"\ebaa"}.icofont-toy-elephant:before{content:"\ebab"}.icofont-toy-hand:before{content:"\ebac"}.icofont-toy-horse:before{content:"\ebad"}.icofont-toy-lattu:before{content:"\ebae"}.icofont-toy-train:before{content:"\ebaf"}.icofont-burglar:before{content:"\ebb0"}.icofont-cannon-firing:before{content:"\ebb1"}.icofont-cc-camera:before{content:"\ebb2"}.icofont-cop-badge:before{content:"\ebb3"}.icofont-cop:before{content:"\ebb4"}.icofont-court-hammer:before{content:"\ebb5"}.icofont-court:before{content:"\ebb6"}.icofont-finger-print:before{content:"\ebb7"}.icofont-gavel:before{content:"\ebb8"}.icofont-handcuff-alt:before{content:"\ebb9"}.icofont-handcuff:before{content:"\ebba"}.icofont-investigation:before{content:"\ebbb"}.icofont-investigator:before{content:"\ebbc"}.icofont-jail:before{content:"\ebbd"}.icofont-judge:before{content:"\ebbe"}.icofont-law-alt-1:before{content:"\ebbf"}.icofont-law-alt-2:before{content:"\ebc0"}.icofont-law-alt-3:before{content:"\ebc1"}.icofont-law-book:before{content:"\ebc2"}.icofont-law-document:before{content:"\ebc3"}.icofont-law-order:before{content:"\ebc4"}.icofont-law-protect:before{content:"\ebc5"}.icofont-law-scales:before{content:"\ebc6"}.icofont-law:before{content:"\ebc7"}.icofont-lawyer-alt-1:before{content:"\ebc8"}.icofont-lawyer-alt-2:before{content:"\ebc9"}.icofont-lawyer:before{content:"\ebca"}.icofont-legal:before{content:"\ebcb"}.icofont-pistol:before{content:"\ebcc"}.icofont-police-badge:before{content:"\ebcd"}.icofont-police-cap:before{content:"\ebce"}.icofont-police-car-alt-1:before{content:"\ebcf"}.icofont-police-car-alt-2:before{content:"\ebd0"}.icofont-police-car:before{content:"\ebd1"}.icofont-police-hat:before{content:"\ebd2"}.icofont-police-van:before{content:"\ebd3"}.icofont-police:before{content:"\ebd4"}.icofont-thief-alt:before{content:"\ebd5"}.icofont-thief:before{content:"\ebd6"}.icofont-abacus-alt:before{content:"\ebd7"}.icofont-abacus:before{content:"\ebd8"}.icofont-angle-180:before{content:"\ebd9"}.icofont-angle-45:before{content:"\ebda"}.icofont-angle-90:before{content:"\ebdb"}.icofont-angle:before{content:"\ebdc"}.icofont-calculator-alt-1:before{content:"\ebdd"}.icofont-calculator-alt-2:before{content:"\ebde"}.icofont-calculator:before{content:"\ebdf"}.icofont-circle-ruler-alt:before{content:"\ebe0"}.icofont-circle-ruler:before{content:"\ebe1"}.icofont-compass-alt-1:before{content:"\ebe2"}.icofont-compass-alt-2:before{content:"\ebe3"}.icofont-compass-alt-3:before{content:"\ebe4"}.icofont-compass-alt-4:before{content:"\ebe5"}.icofont-golden-ratio:before{content:"\ebe6"}.icofont-marker-alt-1:before{content:"\ebe7"}.icofont-marker-alt-2:before{content:"\ebe8"}.icofont-marker-alt-3:before{content:"\ebe9"}.icofont-marker:before{content:"\ebea"}.icofont-math:before{content:"\ebeb"}.icofont-mathematical-alt-1:before{content:"\ebec"}.icofont-mathematical-alt-2:before{content:"\ebed"}.icofont-mathematical:before{content:"\ebee"}.icofont-pen-alt-1:before{content:"\ebef"}.icofont-pen-alt-2:before{content:"\ebf0"}.icofont-pen-alt-3:before{content:"\ebf1"}.icofont-pen-holder-alt-1:before{content:"\ebf2"}.icofont-pen-holder:before{content:"\ebf3"}.icofont-pen:before{content:"\ebf4"}.icofont-pencil-alt-1:before{content:"\ebf5"}.icofont-pencil-alt-2:before{content:"\ebf6"}.icofont-pencil-alt-3:before{content:"\ebf7"}.icofont-pencil-alt-4:before{content:"\ebf8"}.icofont-pencil:before{content:"\ebf9"}.icofont-ruler-alt-1:before{content:"\ebfa"}.icofont-ruler-alt-2:before{content:"\ebfb"}.icofont-ruler-compass-alt:before{content:"\ebfc"}.icofont-ruler-compass:before{content:"\ebfd"}.icofont-ruler-pencil-alt-1:before{content:"\ebfe"}.icofont-ruler-pencil-alt-2:before{content:"\ebff"}.icofont-ruler-pencil:before{content:"\ec00"}.icofont-ruler:before{content:"\ec01"}.icofont-rulers-alt:before{content:"\ec02"}.icofont-rulers:before{content:"\ec03"}.icofont-square-root:before{content:"\ec04"}.icofont-ui-calculator:before{content:"\ec05"}.icofont-aids:before{content:"\ec06"}.icofont-ambulance-crescent:before{content:"\ec07"}.icofont-ambulance-cross:before{content:"\ec08"}.icofont-ambulance:before{content:"\ec09"}.icofont-autism:before{content:"\ec0a"}.icofont-bandage:before{content:"\ec0b"}.icofont-blind:before{content:"\ec0c"}.icofont-blood-drop:before{content:"\ec0d"}.icofont-blood-test:before{content:"\ec0e"}.icofont-blood:before{content:"\ec0f"}.icofont-brain-alt:before{content:"\ec10"}.icofont-brain:before{content:"\ec11"}.icofont-capsule:before{content:"\ec12"}.icofont-crutch:before{content:"\ec13"}.icofont-disabled:before{content:"\ec14"}.icofont-dna-alt-1:before{content:"\ec15"}.icofont-dna-alt-2:before{content:"\ec16"}.icofont-dna:before{content:"\ec17"}.icofont-doctor-alt:before{content:"\ec18"}.icofont-doctor:before{content:"\ec19"}.icofont-drug-pack:before{content:"\ec1a"}.icofont-drug:before{content:"\ec1b"}.icofont-first-aid-alt:before{content:"\ec1c"}.icofont-first-aid:before{content:"\ec1d"}.icofont-heart-beat-alt:before{content:"\ec1e"}.icofont-heart-beat:before{content:"\ec1f"}.icofont-heartbeat:before{content:"\ec20"}.icofont-herbal:before{content:"\ec21"}.icofont-hospital:before{content:"\ec22"}.icofont-icu:before{content:"\ec23"}.icofont-injection-syringe:before{content:"\ec24"}.icofont-laboratory:before{content:"\ec25"}.icofont-medical-sign-alt:before{content:"\ec26"}.icofont-medical-sign:before{content:"\ec27"}.icofont-nurse-alt:before{content:"\ec28"}.icofont-nurse:before{content:"\ec29"}.icofont-nursing-home:before{content:"\ec2a"}.icofont-operation-theater:before{content:"\ec2b"}.icofont-paralysis-disability:before{content:"\ec2c"}.icofont-patient-bed:before{content:"\ec2d"}.icofont-patient-file:before{content:"\ec2e"}.icofont-pills:before{content:"\ec2f"}.icofont-prescription:before{content:"\ec30"}.icofont-pulse:before{content:"\ec31"}.icofont-stethoscope-alt:before{content:"\ec32"}.icofont-stethoscope:before{content:"\ec33"}.icofont-stretcher:before{content:"\ec34"}.icofont-surgeon-alt:before{content:"\ec35"}.icofont-surgeon:before{content:"\ec36"}.icofont-tablets:before{content:"\ec37"}.icofont-test-bottle:before{content:"\ec38"}.icofont-test-tube:before{content:"\ec39"}.icofont-thermometer-alt:before{content:"\ec3a"}.icofont-thermometer:before{content:"\ec3b"}.icofont-tooth:before{content:"\ec3c"}.icofont-xray:before{content:"\ec3d"}.icofont-ui-add:before{content:"\ec3e"}.icofont-ui-alarm:before{content:"\ec3f"}.icofont-ui-battery:before{content:"\ec40"}.icofont-ui-block:before{content:"\ec41"}.icofont-ui-bluetooth:before{content:"\ec42"}.icofont-ui-brightness:before{content:"\ec43"}.icofont-ui-browser:before{content:"\ec44"}.icofont-ui-calendar:before{content:"\ec45"}.icofont-ui-call:before{content:"\ec46"}.icofont-ui-camera:before{content:"\ec47"}.icofont-ui-cart:before{content:"\ec48"}.icofont-ui-cell-phone:before{content:"\ec49"}.icofont-ui-chat:before{content:"\ec4a"}.icofont-ui-check:before{content:"\ec4b"}.icofont-ui-clip-board:before{content:"\ec4c"}.icofont-ui-clip:before{content:"\ec4d"}.icofont-ui-clock:before{content:"\ec4e"}.icofont-ui-close:before{content:"\ec4f"}.icofont-ui-contact-list:before{content:"\ec50"}.icofont-ui-copy:before{content:"\ec51"}.icofont-ui-cut:before{content:"\ec52"}.icofont-ui-delete:before{content:"\ec53"}.icofont-ui-dial-phone:before{content:"\ec54"}.icofont-ui-edit:before{content:"\ec55"}.icofont-ui-email:before{content:"\ec56"}.icofont-ui-file:before{content:"\ec57"}.icofont-ui-fire-wall:before{content:"\ec58"}.icofont-ui-flash-light:before{content:"\ec59"}.icofont-ui-flight:before{content:"\ec5a"}.icofont-ui-folder:before{content:"\ec5b"}.icofont-ui-game:before{content:"\ec5c"}.icofont-ui-handicapped:before{content:"\ec5d"}.icofont-ui-home:before{content:"\ec5e"}.icofont-ui-image:before{content:"\ec5f"}.icofont-ui-laoding:before{content:"\ec60"}.icofont-ui-lock:before{content:"\ec61"}.icofont-ui-love-add:before{content:"\ec62"}.icofont-ui-love-broken:before{content:"\ec63"}.icofont-ui-love-remove:before{content:"\ec64"}.icofont-ui-love:before{content:"\ec65"}.icofont-ui-map:before{content:"\ec66"}.icofont-ui-message:before{content:"\ec67"}.icofont-ui-messaging:before{content:"\ec68"}.icofont-ui-movie:before{content:"\ec69"}.icofont-ui-music-player:before{content:"\ec6a"}.icofont-ui-music:before{content:"\ec6b"}.icofont-ui-mute:before{content:"\ec6c"}.icofont-ui-network:before{content:"\ec6d"}.icofont-ui-next:before{content:"\ec6e"}.icofont-ui-note:before{content:"\ec6f"}.icofont-ui-office:before{content:"\ec70"}.icofont-ui-password:before{content:"\ec71"}.icofont-ui-pause:before{content:"\ec72"}.icofont-ui-play-stop:before{content:"\ec73"}.icofont-ui-play:before{content:"\ec74"}.icofont-ui-pointer:before{content:"\ec75"}.icofont-ui-power:before{content:"\ec76"}.icofont-ui-press:before{content:"\ec77"}.icofont-ui-previous:before{content:"\ec78"}.icofont-ui-rate-add:before{content:"\ec79"}.icofont-ui-rate-blank:before{content:"\ec7a"}.icofont-ui-rate-remove:before{content:"\ec7b"}.icofont-ui-rating:before{content:"\ec7c"}.icofont-ui-record:before{content:"\ec7d"}.icofont-ui-remove:before{content:"\ec7e"}.icofont-ui-reply:before{content:"\ec7f"}.icofont-ui-rotation:before{content:"\ec80"}.icofont-ui-rss:before{content:"\ec81"}.icofont-ui-search:before{content:"\ec82"}.icofont-ui-settings:before{content:"\ec83"}.icofont-ui-social-link:before{content:"\ec84"}.icofont-ui-tag:before{content:"\ec85"}.icofont-ui-text-chat:before{content:"\ec86"}.icofont-ui-text-loading:before{content:"\ec87"}.icofont-ui-theme:before{content:"\ec88"}.icofont-ui-timer:before{content:"\ec89"}.icofont-ui-touch-phone:before{content:"\ec8a"}.icofont-ui-travel:before{content:"\ec8b"}.icofont-ui-unlock:before{content:"\ec8c"}.icofont-ui-user-group:before{content:"\ec8d"}.icofont-ui-user:before{content:"\ec8e"}.icofont-ui-v-card:before{content:"\ec8f"}.icofont-ui-video-chat:before{content:"\ec90"}.icofont-ui-video-message:before{content:"\ec91"}.icofont-ui-video-play:before{content:"\ec92"}.icofont-ui-video:before{content:"\ec93"}.icofont-ui-volume:before{content:"\ec94"}.icofont-ui-weather:before{content:"\ec95"}.icofont-ui-wifi:before{content:"\ec96"}.icofont-ui-zoom-in:before{content:"\ec97"}.icofont-ui-zoom-out:before{content:"\ec98"}.icofont-cassette-player:before{content:"\ec99"}.icofont-cassette:before{content:"\ec9a"}.icofont-forward:before{content:"\ec9b"}.icofont-guiter:before{content:"\ec9c"}.icofont-movie:before{content:"\ec9d"}.icofont-multimedia:before{content:"\ec9e"}.icofont-music-alt:before{content:"\ec9f"}.icofont-music-disk:before{content:"\eca0"}.icofont-music-note:before{content:"\eca1"}.icofont-music-notes:before{content:"\eca2"}.icofont-music:before{content:"\eca3"}.icofont-mute-volume:before{content:"\eca4"}.icofont-pause:before{content:"\eca5"}.icofont-play-alt-1:before{content:"\eca6"}.icofont-play-alt-2:before{content:"\eca7"}.icofont-play-alt-3:before{content:"\eca8"}.icofont-play-pause:before{content:"\eca9"}.icofont-play:before{content:"\ecaa"}.icofont-record:before{content:"\ecab"}.icofont-retro-music-disk:before{content:"\ecac"}.icofont-rewind:before{content:"\ecad"}.icofont-song-notes:before{content:"\ecae"}.icofont-sound-wave-alt:before{content:"\ecaf"}.icofont-sound-wave:before{content:"\ecb0"}.icofont-stop:before{content:"\ecb1"}.icofont-video-alt:before{content:"\ecb2"}.icofont-video-cam:before{content:"\ecb3"}.icofont-video-clapper:before{content:"\ecb4"}.icofont-video:before{content:"\ecb5"}.icofont-volume-bar:before{content:"\ecb6"}.icofont-volume-down:before{content:"\ecb7"}.icofont-volume-mute:before{content:"\ecb8"}.icofont-volume-off:before{content:"\ecb9"}.icofont-volume-up:before{content:"\ecba"}.icofont-youtube-play:before{content:"\ecbb"}.icofont-2checkout-alt:before{content:"\ecbc"}.icofont-2checkout:before{content:"\ecbd"}.icofont-amazon-alt:before{content:"\ecbe"}.icofont-amazon:before{content:"\ecbf"}.icofont-american-express-alt:before{content:"\ecc0"}.icofont-american-express:before{content:"\ecc1"}.icofont-apple-pay-alt:before{content:"\ecc2"}.icofont-apple-pay:before{content:"\ecc3"}.icofont-bank-transfer-alt:before{content:"\ecc4"}.icofont-bank-transfer:before{content:"\ecc5"}.icofont-braintree-alt:before{content:"\ecc6"}.icofont-braintree:before{content:"\ecc7"}.icofont-cash-on-delivery-alt:before{content:"\ecc8"}.icofont-cash-on-delivery:before{content:"\ecc9"}.icofont-diners-club-alt-1:before{content:"\ecca"}.icofont-diners-club-alt-2:before{content:"\eccb"}.icofont-diners-club-alt-3:before{content:"\eccc"}.icofont-diners-club:before{content:"\eccd"}.icofont-discover-alt:before{content:"\ecce"}.icofont-discover:before{content:"\eccf"}.icofont-eway-alt:before{content:"\ecd0"}.icofont-eway:before{content:"\ecd1"}.icofont-google-wallet-alt-1:before{content:"\ecd2"}.icofont-google-wallet-alt-2:before{content:"\ecd3"}.icofont-google-wallet-alt-3:before{content:"\ecd4"}.icofont-google-wallet:before{content:"\ecd5"}.icofont-jcb-alt:before{content:"\ecd6"}.icofont-jcb:before{content:"\ecd7"}.icofont-maestro-alt:before{content:"\ecd8"}.icofont-maestro:before{content:"\ecd9"}.icofont-mastercard-alt:before{content:"\ecda"}.icofont-mastercard:before{content:"\ecdb"}.icofont-payoneer-alt:before{content:"\ecdc"}.icofont-payoneer:before{content:"\ecdd"}.icofont-paypal-alt:before{content:"\ecde"}.icofont-paypal:before{content:"\ecdf"}.icofont-sage-alt:before{content:"\ece0"}.icofont-sage:before{content:"\ece1"}.icofont-skrill-alt:before{content:"\ece2"}.icofont-skrill:before{content:"\ece3"}.icofont-stripe-alt:before{content:"\ece4"}.icofont-stripe:before{content:"\ece5"}.icofont-visa-alt:before{content:"\ece6"}.icofont-visa-electron:before{content:"\ece7"}.icofont-visa:before{content:"\ece8"}.icofont-western-union-alt:before{content:"\ece9"}.icofont-western-union:before{content:"\ecea"}.icofont-boy:before{content:"\eceb"}.icofont-business-man-alt-1:before{content:"\ecec"}.icofont-business-man-alt-2:before{content:"\eced"}.icofont-business-man-alt-3:before{content:"\ecee"}.icofont-business-man:before{content:"\ecef"}.icofont-female:before{content:"\ecf0"}.icofont-funky-man:before{content:"\ecf1"}.icofont-girl-alt:before{content:"\ecf2"}.icofont-girl:before{content:"\ecf3"}.icofont-group:before{content:"\ecf4"}.icofont-hotel-boy-alt:before{content:"\ecf5"}.icofont-hotel-boy:before{content:"\ecf6"}.icofont-kid:before{content:"\ecf7"}.icofont-man-in-glasses:before{content:"\ecf8"}.icofont-people:before{content:"\ecf9"}.icofont-support:before{content:"\ecfa"}.icofont-user-alt-1:before{content:"\ecfb"}.icofont-user-alt-2:before{content:"\ecfc"}.icofont-user-alt-3:before{content:"\ecfd"}.icofont-user-alt-4:before{content:"\ecfe"}.icofont-user-alt-5:before{content:"\ecff"}.icofont-user-alt-6:before{content:"\ed00"}.icofont-user-alt-7:before{content:"\ed01"}.icofont-user-female:before{content:"\ed02"}.icofont-user-male:before{content:"\ed03"}.icofont-user-suited:before{content:"\ed04"}.icofont-user:before{content:"\ed05"}.icofont-users-alt-1:before{content:"\ed06"}.icofont-users-alt-2:before{content:"\ed07"}.icofont-users-alt-3:before{content:"\ed08"}.icofont-users-alt-4:before{content:"\ed09"}.icofont-users-alt-5:before{content:"\ed0a"}.icofont-users-alt-6:before{content:"\ed0b"}.icofont-users-social:before{content:"\ed0c"}.icofont-users:before{content:"\ed0d"}.icofont-waiter-alt:before{content:"\ed0e"}.icofont-waiter:before{content:"\ed0f"}.icofont-woman-in-glasses:before{content:"\ed10"}.icofont-search-1:before{content:"\ed11"}.icofont-search-2:before{content:"\ed12"}.icofont-search-document:before{content:"\ed13"}.icofont-search-folder:before{content:"\ed14"}.icofont-search-job:before{content:"\ed15"}.icofont-search-map:before{content:"\ed16"}.icofont-search-property:before{content:"\ed17"}.icofont-search-restaurant:before{content:"\ed18"}.icofont-search-stock:before{content:"\ed19"}.icofont-search-user:before{content:"\ed1a"}.icofont-search:before{content:"\ed1b"}.icofont-500px:before{content:"\ed1c"}.icofont-aim:before{content:"\ed1d"}.icofont-badoo:before{content:"\ed1e"}.icofont-baidu-tieba:before{content:"\ed1f"}.icofont-bbm-messenger:before{content:"\ed20"}.icofont-bebo:before{content:"\ed21"}.icofont-behance:before{content:"\ed22"}.icofont-blogger:before{content:"\ed23"}.icofont-bootstrap:before{content:"\ed24"}.icofont-brightkite:before{content:"\ed25"}.icofont-cloudapp:before{content:"\ed26"}.icofont-concrete5:before{content:"\ed27"}.icofont-delicious:before{content:"\ed28"}.icofont-designbump:before{content:"\ed29"}.icofont-designfloat:before{content:"\ed2a"}.icofont-deviantart:before{content:"\ed2b"}.icofont-digg:before{content:"\ed2c"}.icofont-dotcms:before{content:"\ed2d"}.icofont-dribbble:before{content:"\ed2e"}.icofont-dribble:before{content:"\ed2f"}.icofont-dropbox:before{content:"\ed30"}.icofont-ebuddy:before{content:"\ed31"}.icofont-ello:before{content:"\ed32"}.icofont-ember:before{content:"\ed33"}.icofont-envato:before{content:"\ed34"}.icofont-evernote:before{content:"\ed35"}.icofont-facebook-messenger:before{content:"\ed36"}.icofont-facebook:before{content:"\ed37"}.icofont-feedburner:before{content:"\ed38"}.icofont-flikr:before{content:"\ed39"}.icofont-folkd:before{content:"\ed3a"}.icofont-foursquare:before{content:"\ed3b"}.icofont-friendfeed:before{content:"\ed3c"}.icofont-ghost:before{content:"\ed3d"}.icofont-github:before{content:"\ed3e"}.icofont-gnome:before{content:"\ed3f"}.icofont-google-buzz:before{content:"\ed40"}.icofont-google-hangouts:before{content:"\ed41"}.icofont-google-map:before{content:"\ed42"}.icofont-google-plus:before{content:"\ed43"}.icofont-google-talk:before{content:"\ed44"}.icofont-hype-machine:before{content:"\ed45"}.icofont-instagram:before{content:"\ed46"}.icofont-kakaotalk:before{content:"\ed47"}.icofont-kickstarter:before{content:"\ed48"}.icofont-kik:before{content:"\ed49"}.icofont-kiwibox:before{content:"\ed4a"}.icofont-line-messenger:before{content:"\ed4b"}.icofont-line:before{content:"\ed4c"}.icofont-linkedin:before{content:"\ed4d"}.icofont-linux-mint:before{content:"\ed4e"}.icofont-live-messenger:before{content:"\ed4f"}.icofont-livejournal:before{content:"\ed50"}.icofont-magento:before{content:"\ed51"}.icofont-meetme:before{content:"\ed52"}.icofont-meetup:before{content:"\ed53"}.icofont-mixx:before{content:"\ed54"}.icofont-newsvine:before{content:"\ed55"}.icofont-nimbuss:before{content:"\ed56"}.icofont-odnoklassniki:before{content:"\ed57"}.icofont-opencart:before{content:"\ed58"}.icofont-oscommerce:before{content:"\ed59"}.icofont-pandora:before{content:"\ed5a"}.icofont-photobucket:before{content:"\ed5b"}.icofont-picasa:before{content:"\ed5c"}.icofont-pinterest:before{content:"\ed5d"}.icofont-prestashop:before{content:"\ed5e"}.icofont-qik:before{content:"\ed5f"}.icofont-qq:before{content:"\ed60"}.icofont-readernaut:before{content:"\ed61"}.icofont-reddit:before{content:"\ed62"}.icofont-renren:before{content:"\ed63"}.icofont-rss:before{content:"\ed64"}.icofont-shopify:before{content:"\ed65"}.icofont-silverstripe:before{content:"\ed66"}.icofont-skype:before{content:"\ed67"}.icofont-slack:before{content:"\ed68"}.icofont-slashdot:before{content:"\ed69"}.icofont-slidshare:before{content:"\ed6a"}.icofont-smugmug:before{content:"\ed6b"}.icofont-snapchat:before{content:"\ed6c"}.icofont-soundcloud:before{content:"\ed6d"}.icofont-spotify:before{content:"\ed6e"}.icofont-stack-exchange:before{content:"\ed6f"}.icofont-stack-overflow:before{content:"\ed70"}.icofont-steam:before{content:"\ed71"}.icofont-stumbleupon:before{content:"\ed72"}.icofont-tagged:before{content:"\ed73"}.icofont-technorati:before{content:"\ed74"}.icofont-telegram:before{content:"\ed75"}.icofont-tinder:before{content:"\ed76"}.icofont-trello:before{content:"\ed77"}.icofont-tumblr:before{content:"\ed78"}.icofont-twitch:before{content:"\ed79"}.icofont-twitter:before{content:"\ed7a"}.icofont-typo3:before{content:"\ed7b"}.icofont-ubercart:before{content:"\ed7c"}.icofont-viber:before{content:"\ed7d"}.icofont-viddler:before{content:"\ed7e"}.icofont-vimeo:before{content:"\ed7f"}.icofont-vine:before{content:"\ed80"}.icofont-virb:before{content:"\ed81"}.icofont-virtuemart:before{content:"\ed82"}.icofont-vk:before{content:"\ed83"}.icofont-wechat:before{content:"\ed84"}.icofont-weibo:before{content:"\ed85"}.icofont-whatsapp:before{content:"\ed86"}.icofont-xing:before{content:"\ed87"}.icofont-yahoo:before{content:"\ed88"}.icofont-yelp:before{content:"\ed89"}.icofont-youku:before{content:"\ed8a"}.icofont-youtube:before{content:"\ed8b"}.icofont-zencart:before{content:"\ed8c"}.icofont-badminton-birdie:before{content:"\ed8d"}.icofont-baseball:before{content:"\ed8e"}.icofont-baseballer:before{content:"\ed8f"}.icofont-basketball-hoop:before{content:"\ed90"}.icofont-basketball:before{content:"\ed91"}.icofont-billiard-ball:before{content:"\ed92"}.icofont-boot-alt-1:before{content:"\ed93"}.icofont-boot-alt-2:before{content:"\ed94"}.icofont-boot:before{content:"\ed95"}.icofont-bowling-alt:before{content:"\ed96"}.icofont-bowling:before{content:"\ed97"}.icofont-canoe:before{content:"\ed98"}.icofont-cheer-leader:before{content:"\ed99"}.icofont-climbing:before{content:"\ed9a"}.icofont-corner:before{content:"\ed9b"}.icofont-field-alt:before{content:"\ed9c"}.icofont-field:before{content:"\ed9d"}.icofont-football-alt:before{content:"\ed9e"}.icofont-football-american:before{content:"\ed9f"}.icofont-football:before{content:"\eda0"}.icofont-foul:before{content:"\eda1"}.icofont-goal-keeper:before{content:"\eda2"}.icofont-goal:before{content:"\eda3"}.icofont-golf-alt:before{content:"\eda4"}.icofont-golf-bag:before{content:"\eda5"}.icofont-golf-cart:before{content:"\eda6"}.icofont-golf-field:before{content:"\eda7"}.icofont-golf:before{content:"\eda8"}.icofont-golfer:before{content:"\eda9"}.icofont-helmet:before{content:"\edaa"}.icofont-hockey-alt:before{content:"\edab"}.icofont-hockey:before{content:"\edac"}.icofont-ice-skate:before{content:"\edad"}.icofont-jersey-alt:before{content:"\edae"}.icofont-jersey:before{content:"\edaf"}.icofont-jumping:before{content:"\edb0"}.icofont-kick:before{content:"\edb1"}.icofont-leg:before{content:"\edb2"}.icofont-match-review:before{content:"\edb3"}.icofont-medal-sport:before{content:"\edb4"}.icofont-offside:before{content:"\edb5"}.icofont-olympic-logo:before{content:"\edb6"}.icofont-olympic:before{content:"\edb7"}.icofont-padding:before{content:"\edb8"}.icofont-penalty-card:before{content:"\edb9"}.icofont-racer:before{content:"\edba"}.icofont-racing-car:before{content:"\edbb"}.icofont-racing-flag-alt:before{content:"\edbc"}.icofont-racing-flag:before{content:"\edbd"}.icofont-racings-wheel:before{content:"\edbe"}.icofont-referee:before{content:"\edbf"}.icofont-refree-jersey:before{content:"\edc0"}.icofont-result-sport:before{content:"\edc1"}.icofont-rugby-ball:before{content:"\edc2"}.icofont-rugby-player:before{content:"\edc3"}.icofont-rugby:before{content:"\edc4"}.icofont-runner-alt-1:before{content:"\edc5"}.icofont-runner-alt-2:before{content:"\edc6"}.icofont-runner:before{content:"\edc7"}.icofont-score-board:before{content:"\edc8"}.icofont-skiing-man:before{content:"\edc9"}.icofont-skydiving-goggles:before{content:"\edca"}.icofont-snow-mobile:before{content:"\edcb"}.icofont-steering:before{content:"\edcc"}.icofont-stopwatch:before{content:"\edcd"}.icofont-substitute:before{content:"\edce"}.icofont-swimmer:before{content:"\edcf"}.icofont-table-tennis:before{content:"\edd0"}.icofont-team-alt:before{content:"\edd1"}.icofont-team:before{content:"\edd2"}.icofont-tennis-player:before{content:"\edd3"}.icofont-tennis:before{content:"\edd4"}.icofont-tracking:before{content:"\edd5"}.icofont-trophy-alt:before{content:"\edd6"}.icofont-trophy:before{content:"\edd7"}.icofont-volleyball-alt:before{content:"\edd8"}.icofont-volleyball-fire:before{content:"\edd9"}.icofont-volleyball:before{content:"\edda"}.icofont-water-bottle:before{content:"\eddb"}.icofont-whistle-alt:before{content:"\eddc"}.icofont-whistle:before{content:"\eddd"}.icofont-win-trophy:before{content:"\edde"}.icofont-align-center:before{content:"\eddf"}.icofont-align-left:before{content:"\ede0"}.icofont-align-right:before{content:"\ede1"}.icofont-all-caps:before{content:"\ede2"}.icofont-bold:before{content:"\ede3"}.icofont-brush:before{content:"\ede4"}.icofont-clip-board:before{content:"\ede5"}.icofont-code-alt:before{content:"\ede6"}.icofont-color-bucket:before{content:"\ede7"}.icofont-color-picker:before{content:"\ede8"}.icofont-copy-invert:before{content:"\ede9"}.icofont-copy:before{content:"\edea"}.icofont-cut:before{content:"\edeb"}.icofont-delete-alt:before{content:"\edec"}.icofont-edit-alt:before{content:"\eded"}.icofont-eraser-alt:before{content:"\edee"}.icofont-font:before{content:"\edef"}.icofont-heading:before{content:"\edf0"}.icofont-indent:before{content:"\edf1"}.icofont-italic-alt:before{content:"\edf2"}.icofont-italic:before{content:"\edf3"}.icofont-justify-all:before{content:"\edf4"}.icofont-justify-center:before{content:"\edf5"}.icofont-justify-left:before{content:"\edf6"}.icofont-justify-right:before{content:"\edf7"}.icofont-link-broken:before{content:"\edf8"}.icofont-outdent:before{content:"\edf9"}.icofont-paper-clip:before{content:"\edfa"}.icofont-paragraph:before{content:"\edfb"}.icofont-pin:before{content:"\edfc"}.icofont-printer:before{content:"\edfd"}.icofont-redo:before{content:"\edfe"}.icofont-rotation:before{content:"\edff"}.icofont-save:before{content:"\ee00"}.icofont-small-cap:before{content:"\ee01"}.icofont-strike-through:before{content:"\ee02"}.icofont-sub-listing:before{content:"\ee03"}.icofont-subscript:before{content:"\ee04"}.icofont-superscript:before{content:"\ee05"}.icofont-table:before{content:"\ee06"}.icofont-text-height:before{content:"\ee07"}.icofont-text-width:before{content:"\ee08"}.icofont-trash:before{content:"\ee09"}.icofont-underline:before{content:"\ee0a"}.icofont-undo:before{content:"\ee0b"}.icofont-air-balloon:before{content:"\ee0c"}.icofont-airplane-alt:before{content:"\ee0d"}.icofont-airplane:before{content:"\ee0e"}.icofont-articulated-truck:before{content:"\ee0f"}.icofont-auto-mobile:before{content:"\ee10"}.icofont-auto-rickshaw:before{content:"\ee11"}.icofont-bicycle-alt-1:before{content:"\ee12"}.icofont-bicycle-alt-2:before{content:"\ee13"}.icofont-bicycle:before{content:"\ee14"}.icofont-bus-alt-1:before{content:"\ee15"}.icofont-bus-alt-2:before{content:"\ee16"}.icofont-bus-alt-3:before{content:"\ee17"}.icofont-bus:before{content:"\ee18"}.icofont-cab:before{content:"\ee19"}.icofont-cable-car:before{content:"\ee1a"}.icofont-car-alt-1:before{content:"\ee1b"}.icofont-car-alt-2:before{content:"\ee1c"}.icofont-car-alt-3:before{content:"\ee1d"}.icofont-car-alt-4:before{content:"\ee1e"}.icofont-car:before{content:"\ee1f"}.icofont-delivery-time:before{content:"\ee20"}.icofont-fast-delivery:before{content:"\ee21"}.icofont-fire-truck-alt:before{content:"\ee22"}.icofont-fire-truck:before{content:"\ee23"}.icofont-free-delivery:before{content:"\ee24"}.icofont-helicopter:before{content:"\ee25"}.icofont-motor-bike-alt:before{content:"\ee26"}.icofont-motor-bike:before{content:"\ee27"}.icofont-motor-biker:before{content:"\ee28"}.icofont-oil-truck:before{content:"\ee29"}.icofont-rickshaw:before{content:"\ee2a"}.icofont-rocket-alt-1:before{content:"\ee2b"}.icofont-rocket-alt-2:before{content:"\ee2c"}.icofont-rocket:before{content:"\ee2d"}.icofont-sail-boat-alt-1:before{content:"\ee2e"}.icofont-sail-boat-alt-2:before{content:"\ee2f"}.icofont-sail-boat:before{content:"\ee30"}.icofont-scooter:before{content:"\ee31"}.icofont-sea-plane:before{content:"\ee32"}.icofont-ship-alt:before{content:"\ee33"}.icofont-ship:before{content:"\ee34"}.icofont-speed-boat:before{content:"\ee35"}.icofont-taxi:before{content:"\ee36"}.icofont-tractor:before{content:"\ee37"}.icofont-train-line:before{content:"\ee38"}.icofont-train-steam:before{content:"\ee39"}.icofont-tram:before{content:"\ee3a"}.icofont-truck-alt:before{content:"\ee3b"}.icofont-truck-loaded:before{content:"\ee3c"}.icofont-truck:before{content:"\ee3d"}.icofont-van-alt:before{content:"\ee3e"}.icofont-van:before{content:"\ee3f"}.icofont-yacht:before{content:"\ee40"}.icofont-5-star-hotel:before{content:"\ee41"}.icofont-air-ticket:before{content:"\ee42"}.icofont-beach-bed:before{content:"\ee43"}.icofont-beach:before{content:"\ee44"}.icofont-camping-vest:before{content:"\ee45"}.icofont-direction-sign:before{content:"\ee46"}.icofont-hill-side:before{content:"\ee47"}.icofont-hill:before{content:"\ee48"}.icofont-hotel:before{content:"\ee49"}.icofont-island-alt:before{content:"\ee4a"}.icofont-island:before{content:"\ee4b"}.icofont-sandals-female:before{content:"\ee4c"}.icofont-sandals-male:before{content:"\ee4d"}.icofont-travelling:before{content:"\ee4e"}.icofont-breakdown:before{content:"\ee4f"}.icofont-celsius:before{content:"\ee50"}.icofont-clouds:before{content:"\ee51"}.icofont-cloudy:before{content:"\ee52"}.icofont-dust:before{content:"\ee53"}.icofont-eclipse:before{content:"\ee54"}.icofont-fahrenheit:before{content:"\ee55"}.icofont-forest-fire:before{content:"\ee56"}.icofont-full-night:before{content:"\ee57"}.icofont-full-sunny:before{content:"\ee58"}.icofont-hail-night:before{content:"\ee59"}.icofont-hail-rainy-night:before{content:"\ee5a"}.icofont-hail-rainy-sunny:before{content:"\ee5b"}.icofont-hail-rainy:before{content:"\ee5c"}.icofont-hail-sunny:before{content:"\ee5d"}.icofont-hail-thunder-night:before{content:"\ee5e"}.icofont-hail-thunder-sunny:before{content:"\ee5f"}.icofont-hail-thunder:before{content:"\ee60"}.icofont-hail:before{content:"\ee61"}.icofont-hill-night:before{content:"\ee62"}.icofont-hill-sunny:before{content:"\ee63"}.icofont-hurricane:before{content:"\ee64"}.icofont-meteor:before{content:"\ee65"}.icofont-night:before{content:"\ee66"}.icofont-rainy-night:before{content:"\ee67"}.icofont-rainy-sunny:before{content:"\ee68"}.icofont-rainy-thunder:before{content:"\ee69"}.icofont-rainy:before{content:"\ee6a"}.icofont-snow-alt:before{content:"\ee6b"}.icofont-snow-flake:before{content:"\ee6c"}.icofont-snow-temp:before{content:"\ee6d"}.icofont-snow:before{content:"\ee6e"}.icofont-snowy-hail:before{content:"\ee6f"}.icofont-snowy-night-hail:before{content:"\ee70"}.icofont-snowy-night-rainy:before{content:"\ee71"}.icofont-snowy-night:before{content:"\ee72"}.icofont-snowy-rainy:before{content:"\ee73"}.icofont-snowy-sunny-hail:before{content:"\ee74"}.icofont-snowy-sunny-rainy:before{content:"\ee75"}.icofont-snowy-sunny:before{content:"\ee76"}.icofont-snowy-thunder-night:before{content:"\ee77"}.icofont-snowy-thunder-sunny:before{content:"\ee78"}.icofont-snowy-thunder:before{content:"\ee79"}.icofont-snowy-windy-night:before{content:"\ee7a"}.icofont-snowy-windy-sunny:before{content:"\ee7b"}.icofont-snowy-windy:before{content:"\ee7c"}.icofont-snowy:before{content:"\ee7d"}.icofont-sun-alt:before{content:"\ee7e"}.icofont-sun-rise:before{content:"\ee7f"}.icofont-sun-set:before{content:"\ee80"}.icofont-sun:before{content:"\ee81"}.icofont-sunny-day-temp:before{content:"\ee82"}.icofont-sunny:before{content:"\ee83"}.icofont-thunder-light:before{content:"\ee84"}.icofont-tornado:before{content:"\ee85"}.icofont-umbrella-alt:before{content:"\ee86"}.icofont-umbrella:before{content:"\ee87"}.icofont-volcano:before{content:"\ee88"}.icofont-wave:before{content:"\ee89"}.icofont-wind-scale-0:before{content:"\ee8a"}.icofont-wind-scale-1:before{content:"\ee8b"}.icofont-wind-scale-10:before{content:"\ee8c"}.icofont-wind-scale-11:before{content:"\ee8d"}.icofont-wind-scale-12:before{content:"\ee8e"}.icofont-wind-scale-2:before{content:"\ee8f"}.icofont-wind-scale-3:before{content:"\ee90"}.icofont-wind-scale-4:before{content:"\ee91"}.icofont-wind-scale-5:before{content:"\ee92"}.icofont-wind-scale-6:before{content:"\ee93"}.icofont-wind-scale-7:before{content:"\ee94"}.icofont-wind-scale-8:before{content:"\ee95"}.icofont-wind-scale-9:before{content:"\ee96"}.icofont-wind-waves:before{content:"\ee97"}.icofont-wind:before{content:"\ee98"}.icofont-windy-hail:before{content:"\ee99"}.icofont-windy-night:before{content:"\ee9a"}.icofont-windy-raining:before{content:"\ee9b"}.icofont-windy-sunny:before{content:"\ee9c"}.icofont-windy-thunder-raining:before{content:"\ee9d"}.icofont-windy-thunder:before{content:"\ee9e"}.icofont-windy:before{content:"\ee9f"}.icofont-addons:before{content:"\eea0"}.icofont-address-book:before{content:"\eea1"}.icofont-adjust:before{content:"\eea2"}.icofont-alarm:before{content:"\eea3"}.icofont-anchor:before{content:"\eea4"}.icofont-archive:before{content:"\eea5"}.icofont-at:before{content:"\eea6"}.icofont-attachment:before{content:"\eea7"}.icofont-audio:before{content:"\eea8"}.icofont-automation:before{content:"\eea9"}.icofont-badge:before{content:"\eeaa"}.icofont-bag-alt:before{content:"\eeab"}.icofont-bag:before{content:"\eeac"}.icofont-ban:before{content:"\eead"}.icofont-bar-code:before{content:"\eeae"}.icofont-bars:before{content:"\eeaf"}.icofont-basket:before{content:"\eeb0"}.icofont-battery-empty:before{content:"\eeb1"}.icofont-battery-full:before{content:"\eeb2"}.icofont-battery-half:before{content:"\eeb3"}.icofont-battery-low:before{content:"\eeb4"}.icofont-beaker:before{content:"\eeb5"}.icofont-beard:before{content:"\eeb6"}.icofont-bed:before{content:"\eeb7"}.icofont-bell:before{content:"\eeb8"}.icofont-beverage:before{content:"\eeb9"}.icofont-bill:before{content:"\eeba"}.icofont-bin:before{content:"\eebb"}.icofont-binary:before{content:"\eebc"}.icofont-binoculars:before{content:"\eebd"}.icofont-bluetooth:before{content:"\eebe"}.icofont-bomb:before{content:"\eebf"}.icofont-book-mark:before{content:"\eec0"}.icofont-box:before{content:"\eec1"}.icofont-briefcase:before{content:"\eec2"}.icofont-broken:before{content:"\eec3"}.icofont-bucket:before{content:"\eec4"}.icofont-bucket1:before{content:"\eec5"}.icofont-bucket2:before{content:"\eec6"}.icofont-bug:before{content:"\eec7"}.icofont-building:before{content:"\eec8"}.icofont-bulb-alt:before{content:"\eec9"}.icofont-bullet:before{content:"\eeca"}.icofont-bullhorn:before{content:"\eecb"}.icofont-bullseye:before{content:"\eecc"}.icofont-calendar:before{content:"\eecd"}.icofont-camera-alt:before{content:"\eece"}.icofont-camera:before{content:"\eecf"}.icofont-card:before{content:"\eed0"}.icofont-cart-alt:before{content:"\eed1"}.icofont-cart:before{content:"\eed2"}.icofont-cc:before{content:"\eed3"}.icofont-charging:before{content:"\eed4"}.icofont-chat:before{content:"\eed5"}.icofont-check-alt:before{content:"\eed6"}.icofont-check-circled:before{content:"\eed7"}.icofont-check:before{content:"\eed8"}.icofont-checked:before{content:"\eed9"}.icofont-children-care:before{content:"\eeda"}.icofont-clip:before{content:"\eedb"}.icofont-clock-time:before{content:"\eedc"}.icofont-close-circled:before{content:"\eedd"}.icofont-close-line-circled:before{content:"\eede"}.icofont-close-line-squared-alt:before{content:"\eedf"}.icofont-close-line-squared:before{content:"\eee0"}.icofont-close-line:before{content:"\eee1"}.icofont-close-squared-alt:before{content:"\eee2"}.icofont-close-squared:before{content:"\eee3"}.icofont-close:before{content:"\eee4"}.icofont-cloud-download:before{content:"\eee5"}.icofont-cloud-refresh:before{content:"\eee6"}.icofont-cloud-upload:before{content:"\eee7"}.icofont-cloud:before{content:"\eee8"}.icofont-code-not-allowed:before{content:"\eee9"}.icofont-code:before{content:"\eeea"}.icofont-comment:before{content:"\eeeb"}.icofont-compass-alt:before{content:"\eeec"}.icofont-compass:before{content:"\eeed"}.icofont-computer:before{content:"\eeee"}.icofont-connection:before{content:"\eeef"}.icofont-console:before{content:"\eef0"}.icofont-contacts:before{content:"\eef1"}.icofont-contrast:before{content:"\eef2"}.icofont-copyright:before{content:"\eef3"}.icofont-credit-card:before{content:"\eef4"}.icofont-crop:before{content:"\eef5"}.icofont-crown:before{content:"\eef6"}.icofont-cube:before{content:"\eef7"}.icofont-cubes:before{content:"\eef8"}.icofont-dashboard-web:before{content:"\eef9"}.icofont-dashboard:before{content:"\eefa"}.icofont-data:before{content:"\eefb"}.icofont-database-add:before{content:"\eefc"}.icofont-database-locked:before{content:"\eefd"}.icofont-database-remove:before{content:"\eefe"}.icofont-database:before{content:"\eeff"}.icofont-delete:before{content:"\ef00"}.icofont-diamond:before{content:"\ef01"}.icofont-dice-multiple:before{content:"\ef02"}.icofont-dice:before{content:"\ef03"}.icofont-disc:before{content:"\ef04"}.icofont-diskette:before{content:"\ef05"}.icofont-document-folder:before{content:"\ef06"}.icofont-download-alt:before{content:"\ef07"}.icofont-download:before{content:"\ef08"}.icofont-downloaded:before{content:"\ef09"}.icofont-drag:before{content:"\ef0a"}.icofont-drag1:before{content:"\ef0b"}.icofont-drag2:before{content:"\ef0c"}.icofont-drag3:before{content:"\ef0d"}.icofont-earth:before{content:"\ef0e"}.icofont-ebook:before{content:"\ef0f"}.icofont-edit:before{content:"\ef10"}.icofont-eject:before{content:"\ef11"}.icofont-email:before{content:"\ef12"}.icofont-envelope-open:before{content:"\ef13"}.icofont-envelope:before{content:"\ef14"}.icofont-eraser:before{content:"\ef15"}.icofont-error:before{content:"\ef16"}.icofont-excavator:before{content:"\ef17"}.icofont-exchange:before{content:"\ef18"}.icofont-exclamation-circle:before{content:"\ef19"}.icofont-exclamation-square:before{content:"\ef1a"}.icofont-exclamation-tringle:before{content:"\ef1b"}.icofont-exclamation:before{content:"\ef1c"}.icofont-exit:before{content:"\ef1d"}.icofont-expand:before{content:"\ef1e"}.icofont-external-link:before{content:"\ef1f"}.icofont-external:before{content:"\ef20"}.icofont-eye-alt:before{content:"\ef21"}.icofont-eye-blocked:before{content:"\ef22"}.icofont-eye-dropper:before{content:"\ef23"}.icofont-eye:before{content:"\ef24"}.icofont-favourite:before{content:"\ef25"}.icofont-fax:before{content:"\ef26"}.icofont-file-fill:before{content:"\ef27"}.icofont-film:before{content:"\ef28"}.icofont-filter:before{content:"\ef29"}.icofont-fire-alt:before{content:"\ef2a"}.icofont-fire-burn:before{content:"\ef2b"}.icofont-fire:before{content:"\ef2c"}.icofont-flag-alt-1:before{content:"\ef2d"}.icofont-flag-alt-2:before{content:"\ef2e"}.icofont-flag:before{content:"\ef2f"}.icofont-flame-torch:before{content:"\ef30"}.icofont-flash-light:before{content:"\ef31"}.icofont-flash:before{content:"\ef32"}.icofont-flask:before{content:"\ef33"}.icofont-focus:before{content:"\ef34"}.icofont-folder-open:before{content:"\ef35"}.icofont-folder:before{content:"\ef36"}.icofont-foot-print:before{content:"\ef37"}.icofont-garbage:before{content:"\ef38"}.icofont-gear-alt:before{content:"\ef39"}.icofont-gear:before{content:"\ef3a"}.icofont-gears:before{content:"\ef3b"}.icofont-gift:before{content:"\ef3c"}.icofont-glass:before{content:"\ef3d"}.icofont-globe:before{content:"\ef3e"}.icofont-graffiti:before{content:"\ef3f"}.icofont-grocery:before{content:"\ef40"}.icofont-hand:before{content:"\ef41"}.icofont-hanger:before{content:"\ef42"}.icofont-hard-disk:before{content:"\ef43"}.icofont-heart-alt:before{content:"\ef44"}.icofont-heart:before{content:"\ef45"}.icofont-history:before{content:"\ef46"}.icofont-home:before{content:"\ef47"}.icofont-horn:before{content:"\ef48"}.icofont-hour-glass:before{content:"\ef49"}.icofont-id:before{content:"\ef4a"}.icofont-image:before{content:"\ef4b"}.icofont-inbox:before{content:"\ef4c"}.icofont-infinite:before{content:"\ef4d"}.icofont-info-circle:before{content:"\ef4e"}.icofont-info-square:before{content:"\ef4f"}.icofont-info:before{content:"\ef50"}.icofont-institution:before{content:"\ef51"}.icofont-interface:before{content:"\ef52"}.icofont-invisible:before{content:"\ef53"}.icofont-jacket:before{content:"\ef54"}.icofont-jar:before{content:"\ef55"}.icofont-jewlery:before{content:"\ef56"}.icofont-karate:before{content:"\ef57"}.icofont-key-hole:before{content:"\ef58"}.icofont-key:before{content:"\ef59"}.icofont-label:before{content:"\ef5a"}.icofont-lamp:before{content:"\ef5b"}.icofont-layers:before{content:"\ef5c"}.icofont-layout:before{content:"\ef5d"}.icofont-leaf:before{content:"\ef5e"}.icofont-leaflet:before{content:"\ef5f"}.icofont-learn:before{content:"\ef60"}.icofont-lego:before{content:"\ef61"}.icofont-lens:before{content:"\ef62"}.icofont-letter:before{content:"\ef63"}.icofont-letterbox:before{content:"\ef64"}.icofont-library:before{content:"\ef65"}.icofont-license:before{content:"\ef66"}.icofont-life-bouy:before{content:"\ef67"}.icofont-life-buoy:before{content:"\ef68"}.icofont-life-jacket:before{content:"\ef69"}.icofont-life-ring:before{content:"\ef6a"}.icofont-light-bulb:before{content:"\ef6b"}.icofont-lighter:before{content:"\ef6c"}.icofont-lightning-ray:before{content:"\ef6d"}.icofont-like:before{content:"\ef6e"}.icofont-line-height:before{content:"\ef6f"}.icofont-link-alt:before{content:"\ef70"}.icofont-link:before{content:"\ef71"}.icofont-list:before{content:"\ef72"}.icofont-listening:before{content:"\ef73"}.icofont-listine-dots:before{content:"\ef74"}.icofont-listing-box:before{content:"\ef75"}.icofont-listing-number:before{content:"\ef76"}.icofont-live-support:before{content:"\ef77"}.icofont-location-arrow:before{content:"\ef78"}.icofont-location-pin:before{content:"\ef79"}.icofont-lock:before{content:"\ef7a"}.icofont-login:before{content:"\ef7b"}.icofont-logout:before{content:"\ef7c"}.icofont-lollipop:before{content:"\ef7d"}.icofont-long-drive:before{content:"\ef7e"}.icofont-look:before{content:"\ef7f"}.icofont-loop:before{content:"\ef80"}.icofont-luggage:before{content:"\ef81"}.icofont-lunch:before{content:"\ef82"}.icofont-lungs:before{content:"\ef83"}.icofont-magic-alt:before{content:"\ef84"}.icofont-magic:before{content:"\ef85"}.icofont-magnet:before{content:"\ef86"}.icofont-mail-box:before{content:"\ef87"}.icofont-mail:before{content:"\ef88"}.icofont-male:before{content:"\ef89"}.icofont-map-pins:before{content:"\ef8a"}.icofont-map:before{content:"\ef8b"}.icofont-maximize:before{content:"\ef8c"}.icofont-measure:before{content:"\ef8d"}.icofont-medicine:before{content:"\ef8e"}.icofont-mega-phone:before{content:"\ef8f"}.icofont-megaphone-alt:before{content:"\ef90"}.icofont-megaphone:before{content:"\ef91"}.icofont-memorial:before{content:"\ef92"}.icofont-memory-card:before{content:"\ef93"}.icofont-mic-mute:before{content:"\ef94"}.icofont-mic:before{content:"\ef95"}.icofont-military:before{content:"\ef96"}.icofont-mill:before{content:"\ef97"}.icofont-minus-circle:before{content:"\ef98"}.icofont-minus-square:before{content:"\ef99"}.icofont-minus:before{content:"\ef9a"}.icofont-mobile-phone:before{content:"\ef9b"}.icofont-molecule:before{content:"\ef9c"}.icofont-money:before{content:"\ef9d"}.icofont-moon:before{content:"\ef9e"}.icofont-mop:before{content:"\ef9f"}.icofont-muffin:before{content:"\efa0"}.icofont-mustache:before{content:"\efa1"}.icofont-navigation-menu:before{content:"\efa2"}.icofont-navigation:before{content:"\efa3"}.icofont-network-tower:before{content:"\efa4"}.icofont-network:before{content:"\efa5"}.icofont-news:before{content:"\efa6"}.icofont-newspaper:before{content:"\efa7"}.icofont-no-smoking:before{content:"\efa8"}.icofont-not-allowed:before{content:"\efa9"}.icofont-notebook:before{content:"\efaa"}.icofont-notepad:before{content:"\efab"}.icofont-notification:before{content:"\efac"}.icofont-numbered:before{content:"\efad"}.icofont-opposite:before{content:"\efae"}.icofont-optic:before{content:"\efaf"}.icofont-options:before{content:"\efb0"}.icofont-package:before{content:"\efb1"}.icofont-page:before{content:"\efb2"}.icofont-paint:before{content:"\efb3"}.icofont-paper-plane:before{content:"\efb4"}.icofont-paperclip:before{content:"\efb5"}.icofont-papers:before{content:"\efb6"}.icofont-pay:before{content:"\efb7"}.icofont-penguin-linux:before{content:"\efb8"}.icofont-pestle:before{content:"\efb9"}.icofont-phone-circle:before{content:"\efba"}.icofont-phone:before{content:"\efbb"}.icofont-picture:before{content:"\efbc"}.icofont-pine:before{content:"\efbd"}.icofont-pixels:before{content:"\efbe"}.icofont-plugin:before{content:"\efbf"}.icofont-plus-circle:before{content:"\efc0"}.icofont-plus-square:before{content:"\efc1"}.icofont-plus:before{content:"\efc2"}.icofont-polygonal:before{content:"\efc3"}.icofont-power:before{content:"\efc4"}.icofont-price:before{content:"\efc5"}.icofont-print:before{content:"\efc6"}.icofont-puzzle:before{content:"\efc7"}.icofont-qr-code:before{content:"\efc8"}.icofont-queen:before{content:"\efc9"}.icofont-question-circle:before{content:"\efca"}.icofont-question-square:before{content:"\efcb"}.icofont-question:before{content:"\efcc"}.icofont-quote-left:before{content:"\efcd"}.icofont-quote-right:before{content:"\efce"}.icofont-random:before{content:"\efcf"}.icofont-recycle:before{content:"\efd0"}.icofont-refresh:before{content:"\efd1"}.icofont-repair:before{content:"\efd2"}.icofont-reply-all:before{content:"\efd3"}.icofont-reply:before{content:"\efd4"}.icofont-resize:before{content:"\efd5"}.icofont-responsive:before{content:"\efd6"}.icofont-retweet:before{content:"\efd7"}.icofont-road:before{content:"\efd8"}.icofont-robot:before{content:"\efd9"}.icofont-royal:before{content:"\efda"}.icofont-rss-feed:before{content:"\efdb"}.icofont-safety:before{content:"\efdc"}.icofont-sale-discount:before{content:"\efdd"}.icofont-satellite:before{content:"\efde"}.icofont-send-mail:before{content:"\efdf"}.icofont-server:before{content:"\efe0"}.icofont-settings-alt:before{content:"\efe1"}.icofont-settings:before{content:"\efe2"}.icofont-share-alt:before{content:"\efe3"}.icofont-share-boxed:before{content:"\efe4"}.icofont-share:before{content:"\efe5"}.icofont-shield:before{content:"\efe6"}.icofont-shopping-cart:before{content:"\efe7"}.icofont-sign-in:before{content:"\efe8"}.icofont-sign-out:before{content:"\efe9"}.icofont-signal:before{content:"\efea"}.icofont-site-map:before{content:"\efeb"}.icofont-smart-phone:before{content:"\efec"}.icofont-soccer:before{content:"\efed"}.icofont-sort-alt:before{content:"\efee"}.icofont-sort:before{content:"\efef"}.icofont-space:before{content:"\eff0"}.icofont-spanner:before{content:"\eff1"}.icofont-speech-comments:before{content:"\eff2"}.icofont-speed-meter:before{content:"\eff3"}.icofont-spinner-alt-1:before{content:"\eff4"}.icofont-spinner-alt-2:before{content:"\eff5"}.icofont-spinner-alt-3:before{content:"\eff6"}.icofont-spinner-alt-4:before{content:"\eff7"}.icofont-spinner-alt-5:before{content:"\eff8"}.icofont-spinner-alt-6:before{content:"\eff9"}.icofont-spinner:before{content:"\effa"}.icofont-spreadsheet:before{content:"\effb"}.icofont-square:before{content:"\effc"}.icofont-ssl-security:before{content:"\effd"}.icofont-star-alt-1:before{content:"\effe"}.icofont-star-alt-2:before{content:"\efff"}.icofont-star:before{content:"\f000"}.icofont-street-view:before{content:"\f001"}.icofont-support-faq:before{content:"\f002"}.icofont-tack-pin:before{content:"\f003"}.icofont-tag:before{content:"\f004"}.icofont-tags:before{content:"\f005"}.icofont-tasks-alt:before{content:"\f006"}.icofont-tasks:before{content:"\f007"}.icofont-telephone:before{content:"\f008"}.icofont-telescope:before{content:"\f009"}.icofont-terminal:before{content:"\f00a"}.icofont-thumbs-down:before{content:"\f00b"}.icofont-thumbs-up:before{content:"\f00c"}.icofont-tick-boxed:before{content:"\f00d"}.icofont-tick-mark:before{content:"\f00e"}.icofont-ticket:before{content:"\f00f"}.icofont-tie:before{content:"\f010"}.icofont-toggle-off:before{content:"\f011"}.icofont-toggle-on:before{content:"\f012"}.icofont-tools-alt-2:before{content:"\f013"}.icofont-tools:before{content:"\f014"}.icofont-touch:before{content:"\f015"}.icofont-traffic-light:before{content:"\f016"}.icofont-transparent:before{content:"\f017"}.icofont-tree:before{content:"\f018"}.icofont-unique-idea:before{content:"\f019"}.icofont-unlock:before{content:"\f01a"}.icofont-unlocked:before{content:"\f01b"}.icofont-upload-alt:before{content:"\f01c"}.icofont-upload:before{content:"\f01d"}.icofont-usb-drive:before{content:"\f01e"}.icofont-usb:before{content:"\f01f"}.icofont-vector-path:before{content:"\f020"}.icofont-verification-check:before{content:"\f021"}.icofont-wall-clock:before{content:"\f022"}.icofont-wall:before{content:"\f023"}.icofont-wallet:before{content:"\f024"}.icofont-warning-alt:before{content:"\f025"}.icofont-warning:before{content:"\f026"}.icofont-water-drop:before{content:"\f027"}.icofont-web:before{content:"\f028"}.icofont-wheelchair:before{content:"\f029"}.icofont-wifi-alt:before{content:"\f02a"}.icofont-wifi:before{content:"\f02b"}.icofont-world:before{content:"\f02c"}.icofont-zigzag:before{content:"\f02d"}.icofont-zipped:before{content:"\f02e"}.icofont-xs{font-size:.5em}.icofont-sm{font-size:.75em}.icofont-md{font-size:1.25em}.icofont-lg{font-size:1.5em}.icofont-1x{font-size:1em}.icofont-2x{font-size:2em}.icofont-3x{font-size:3em}.icofont-4x{font-size:4em}.icofont-5x{font-size:5em}.icofont-6x{font-size:6em}.icofont-7x{font-size:7em}.icofont-8x{font-size:8em}.icofont-9x{font-size:9em}.icofont-10x{font-size:10em}.icofont-fw{text-align:center;width:1.25em}.icofont-ul{list-style-type:none;padding-left:0;margin-left:0}.icofont-ul>li{position:relative;line-height:2em}.icofont-ul>li .icofont{display:inline-block;vertical-align:middle}.icofont-border{border:solid .08em #f1f1f1;border-radius:.1em;padding:.2em .25em .15em}.icofont-pull-left{float:left}.icofont-pull-right{float:right}.icofont.icofont-pull-left{margin-right:.3em}.icofont.icofont-pull-right{margin-left:.3em}.icofont-spin{-webkit-animation:icofont-spin 2s infinite linear;animation:icofont-spin 2s infinite linear;display:inline-block}.icofont-pulse{-webkit-animation:icofont-spin 1s infinite steps(8);animation:icofont-spin 1s infinite steps(8);display:inline-block}@-webkit-keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.icofont-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.icofont-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.icofont-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.icofont-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.icofont-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.icofont-flip-horizontal.icofont-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .icofont-flip-horizontal,:root .icofont-flip-vertical,:root .icofont-rotate-180,:root .icofont-rotate-270,:root .icofont-rotate-90{-webkit-filter:none;filter:none;display:inline-block}.icofont-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/css/magnific-popup.min.css b/desarrollo/diseno/login-clientes/css/magnific-popup.min.css deleted file mode 100644 index c00c6ff9..00000000 --- a/desarrollo/diseno/login-clientes/css/magnific-popup.min.css +++ /dev/null @@ -1 +0,0 @@ -.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/css/owl.carousel.min.css b/desarrollo/diseno/login-clientes/css/owl.carousel.min.css deleted file mode 100644 index a71df11c..00000000 --- a/desarrollo/diseno/login-clientes/css/owl.carousel.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/** - * 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 .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .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%;top: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 .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 .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/css/responsive.css b/desarrollo/diseno/login-clientes/css/responsive.css deleted file mode 100644 index fcf3f1d2..00000000 --- a/desarrollo/diseno/login-clientes/css/responsive.css +++ /dev/null @@ -1,440 +0,0 @@ -:root { - --light-purple: #F6F4FE; - --purple: #6A49F2; - --bg-purple: #6A49F2; - --dark-purple: #32236F; - --body-text-purple: #3E3F66; - --text-white: #ffffff; - --bg-white: #ffffff; - --slider-dots-color: #D4D2DD; - --light-bg: #DFDAF3; -} - -/* ------Media-Query-Start--------- */ -@media screen and (max-width:1600px) { - - footer .top_footer.has_bg {background-repeat: repeat-y; background-position: 0 50px;} - - .why_we_section .why_inner {margin: 0 15px;} - .youtube-video .modal-dialog {max-width: 1040px !important;} -} - - -@media screen and (max-width:1300px) { - - /* features section */ - .features_section .feature_detail .feature_box {width: 350px;} - .features_section .feature_detail .left_data {padding-left: 75px;} - .features_section .feature_detail .right_data {padding-right: 75px;} -} - - -@media screen and (max-width:1200px) { - - .row_am {padding: 50px 0;} - - /* navigation bar section */ - .navbar-expand-lg .navbar-nav .nav-link {padding: 5px 8px;} - .navbar-expand-lg .navbar-nav .nav-link.dark_btn {padding: 9px 30px;} - .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {right: 5px;} - .banner_section .banner_slider .right_icon {right: -30px;} - - /* features section */ - .features_section .feature_detail .feature_box {width: 300px;} - .features_section .feature_detail .left_data {padding-left: 15px;} - .features_section .feature_detail .right_data {padding-right: 15px;} - - /* about app section */ - .about_app_section .about_text .app_statstic li {width: 210px; padding-left: 20px;} - .about_app_section .about_text .app_statstic li p:first-child {font-size: 30px;} - - /* modern ui section */ - .modern_ui_section .ui_images::before {width: 475px; height: 475px;} - .modern_ui_section .ui_images .right_img img:nth-child(1) {margin-left: -60px;} - .modern_ui_section .ui_images .right_img img:nth-child(2) {margin-left: -140px;} - - /* download app section */ - .free_app_section .container .free_app_inner .free_img img {transform: scale(.8);} - .free_app_section .container .free_app_inner .free_img img:last-child {margin-left: -120px;} - .free_app_section .container .free_app_inner .free_img {margin-top: -180px;} - - /* newsletter section */ - .newsletter_box .section_title {width: 60%;} - .newsletter_box .section_title h2 {font-size: 24px; letter-spacing: 1px;} - .newsletter_box form .form-group .form-control {width: 250px;} - - .youtube-video .modal-dialog {max-width: 940px !important;} - - .app_solution_section .app_images ul li:nth-child(2) {width: 45%; left: 0;} - .app_solution_section .app_images ul li:nth-child(3) {width: 50%; right: 0;} - - .experts_team_section .experts_box .text span {min-height: 50px; display: block; margin-bottom: 10px;} - - .review_list_section .review_box h3 {font-size: 16px;} - .review_list_section .review_box p {font-size: 14px;} - .review_list_section .review_box .reviewer .text span {font-size: 14px;} - - .contact_page_section .contact_inner {margin-top: -120px;} - .contact_page_section .contact_inner .contact_form {width: 520px; padding: 50px 30px;} - .contact_page_section .contact_inner .contact_info {width: 350px;} - .contact_page_section .contact_inner .section_title h2 {font-size: 34px;} - - .bred_crumb {min-height: 400px;} - .bred_crumb::after {background-size: 100%; height: 110px;} - - .blog_detail_section .blog_inner_pannel {margin-top: -100px; padding: 30px;} - - -} - -@media screen and (max-width:992px) { - - /* navigation section */ - .navbar-toggler-icon {display: flex; align-items: center; color: var(--body-text-purple); justify-content: flex-end;} - .white_header .toggle-bar {color: var(--text-white);} - .free_app_section .container .free_app_inner .free_text .section_title h2 , .section_title h2 {font-size: 30px;} - header.fix_style {padding: 5px 0;} - - .white_header .navbar-collapse {position: absolute; top: 110%; width: 100%;} - - .white_header .navbar-expand-lg .navbar-nav .nav-link, .white_header .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {color: var(--body-text-purple);} - .white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn {background-color: var(--bg-purple); color: var(--text-white);} - - .banner_section {text-align: center;} - .banner_section .app_btn , .banner_section .used_app {justify-content: center;} - - /* navigation section */ - .navbar-expand-lg .navbar-nav {align-items: flex-start;} - .navbar-toggler {padding-right: 0; line-height: 1.7;} - .navbar-expand-lg .navbar-nav {padding: 20px 15px; background-color: var(--bg-white); border-radius: 15px; box-shadow: 0 4px 10px #EDE9FE;} - .navbar-expand-lg .navbar-nav .nav-link.dark_btn {margin-left: 0; margin-top: 15px;} - .navbar-expand-lg .navbar-nav .has_dropdown {flex-direction: column; align-items: flex-start; width: 100%; box-shadow: none;} - .navbar-expand-lg .navbar-nav .has_dropdown:hover {box-shadow: none;} - .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {position: absolute; right: 0; padding: 0 10px;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {position: relative; opacity: 1; pointer-events: all; top: auto; background-color: transparent; width: 100%; border-bottom: 1px solid #6b49f268; border-radius: 0; width: 100%; min-width: 100%; max-width: 100%; margin-left: 10px; display: none; box-shadow: none; margin-top: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {padding: 0; margin-top: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {padding: 5px 10px; display: block; padding-left: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {margin-top: 0;} - - /* banner section */ - .banner_section .banner_text h1 {font-size: 40px;} - .banner_section .banner_slider {margin-top: 50px;} - .banner_section .banner_slider .left_icon {left: 0;} - .banner_section .banner_slider .right_icon {right: 0;} - - /* features section */ - .features_section .feature_detail .feature_img {width: 275px;} - .features_section .feature_detail .feature_box .data_block {margin-bottom: 30px;} - .features_section .feature_detail .feature_box {width: 200px;} - - /* about app section */ - .about_app_section .row {flex-direction: column-reverse;} - .about_app_section .about_img {justify-content: flex-start; margin-top: 75px; margin-left: 0;} - .about_app_section .about_img::before {left: 50%;} - .about_app_section .about_img .screen_img {margin-left: -170px;} - .about_app_section .about_text .app_statstic {justify-content: flex-start;} - .about_app_section .about_text .app_statstic li {width: 35%; margin-right: 30px;} - .about_app_section .about_img::before {left: 35%;} - - /* modern ui section */ - .modern_ui_section .ui_images {margin-top: 30px;} - .modern_ui_section .ui_text {padding-right: 0;} - .modern_ui_section .ui_images .right_img {display: flex; flex-direction: column; align-items: center;} - - /* how it work section */ - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 280px;} - .how_it_works .yt_video .thumbnil a {top: 57%;} - .how_it_works .yt_video .thumbnil a span {font-size: 20px;} - - /* testimonial section */ - #testimonial_slider {max-width: 500px;} - - /* pricing section */ - .pricing_section .pricing_pannel .pricing_block {padding-left: 15px; padding-right: 15px; min-height: 600px; padding-top: 30px;} - .pricing_section .pricing_pannel .pricing_block .price {font-size: 36px;} - .pricing_section .pricing_pannel .pricing_block .benifits li p {font-size: 14px;} - - /* interface section */ - .interface_section .screen_slider {min-height: 550px;} - - /* download app section */ - .free_app_section .container .free_app_inner {padding: 20px 15px;} - .free_app_section .container .free_app_inner .free_img img {transform: scale(.7);} - .free_app_section .container .free_app_inner .free_img img:last-child {margin-left: -180px;} - .free_app_section .container .free_app_inner .free_text .app_btn li a {padding: 10px 20px;} - - /* latest story section */ - .latest_story {margin-bottom: 40px;} - .latest_story .story_box .story_text {padding: 15px;} - - /* newsletter section */ - .newsletter_box {flex-direction: column; padding: 30px 20px;} - .newsletter_box .section_title , .newsletter_box form {width: 100%; margin: 10px 0; justify-content: center;} - .newsletter_box form .form-group .form-control {width: 350px;} - .newsletter_box .section_title h2, .newsletter_box .section_title p {text-align: center;} - - /* footer section */ - footer .top_footer .logo , footer h3 {margin-bottom: 20px;} - footer .abt_side {margin-bottom: 50px;} - footer .top_footer .try_out {margin-left: 0;} - footer .top_footer .col-md-6 {margin-bottom: 15px;} - footer .top_footer.has_bg {background-position: center;} - - /* Bred Crumb */ - .bred_crumb {min-height: 350px;} - .bred_crumb .bred_text h1 {font-size: 30px;} - .bred_crumb::after {background-size: 100%; height: 90px; bottom: -5px;} - .bred_crumb .bred_text .search_bar form .form-group {height: 50px;} - .bred_crumb .bred_text .search_bar form .form-group .btn {width: 46px; height: 46px; line-height: 46px;} - - .bred_crumb .banner_shape3 { top: 240px; animation: mymove 3s infinite; } - - - .app_solution_section .app_images {margin-top: 30px;} - .app_solution_section .app_images ul li:nth-child(2) {text-align: right;} - .app_solution_section .app_text p {padding-right: 0;} - .app_solution_section .app_text .section_title {text-align: center;} - .app_solution_section .app_images {margin-top: 70px;} - .app_solution_section .app_images::before {width: 350px; height: 350px;} - - .why_we_section .why_inner {padding: 35px 0; padding-bottom: 0px;} - .why_we_section .why_inner .why_box {margin-bottom: 50px; text-align: center;} - .why_we_section .why_inner .why_box .icon {margin-bottom: 30px;} - - - .experts_team_section .experts_box .text span {min-height: auto;} - .query_inner .white_btn {font-size: 14px;} - - - .blog_list_main .blog_text {margin-top: 30px;} - .blog_detail_section .blog_inner_pannel {margin-top: -100px; padding: 30px;} - .blog_detail_section .blog_inner_pannel .info ul {padding-left: 30px;} - .comment_section ul li .comment { width: calc(100% - 280px); margin-left: 20px;} - .blog_detail_section .blog_inner_pannel .quote_block {padding: 55px 30px 35px 30px;} - - .contact_page_section .contact_inner {flex-direction: column; margin-top: 60px;} - .contact_page_section .contact_inner .contact_form {width: 100%;} - .contact_page_section .contact_inner .contact_info {width: 100%; margin-top: 50px;} - - -} - -@media screen and (max-width:767px) { - - body {font-size: 14px; text-align: center;} - .row_am {padding: 30px 0;} - .section_title p br {display: none;} - .free_app_section .container .free_app_inner .free_text .section_title h2, .section_title h2 {font-size: 24px;} - - /* navbar section */ - .navbar {padding-top: 15px;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {text-align: left; line-height: 1.5; font-size: 14px;} - - /* banner section */ - .banner_section {margin-top: 60px;} - .banner_section .banner_text h1 {font-size: 30px;} - .banner_section .app_btn , .banner_section .used_app {justify-content: center;} - .banner_section .app_btn li:last-child {margin-left: 0;} - .banner_section .app_btn li {margin: 0 15px;} - .banner_section .app_btn li a {padding: 10px 20px;} - .banner_section .app_btn li a img {height: 25px;} - .banner_section .banner_slider .left_icon {left: -40px;} - .banner_section .banner_slider .right_icon {right: -40px; z-index: 1000;} - .banner_section .banner_slider::before {width: 350px; height: 350px;} - - /* trusted logo section */ - .trusted_section .company_logos {padding-top: 0;} - .trusted_section .company_logos img {max-width: 70%;} - - /* features section */ - .features_section .feature_detail {flex-direction: column-reverse; padding-top: 30px; margin-top: 0;} - .features_section .feature_detail .feature_img {position: relative; top: auto; left: auto; transform: none; width: 75%; margin: 0 auto;} - .features_section .feature_detail .feature_box {width: 100%; padding: 0 15px; text-align: center;} - .features_section .feature_detail .left_data .data_block .icon {margin-right: 0;} - .features_section .feature_detail .right_data .data_block .icon {margin-left: 0;} - .features_section .feature_detail .feature_box .data_block {margin-bottom: 0; margin-top: 30px;} - - /* about app section */ - .about_app_section .about_text , .about_app_section .about_text .section_title {text-align: center;} - .about_app_section .about_text .app_statstic {margin-top: 0; justify-content: space-between;} - .about_app_section .about_text .app_statstic li {width: 48%; margin-right: 0;} - .about_app_section .about_text .app_statstic li p:first-child {font-size: 18px;} - .about_app_section .about_img {margin: 0; margin-top: 50px; justify-content: center;} - .about_app_section .about_img::before {width: 350px; height: 350px;} - - /* modern ui section */ - .modern_ui_section .ui_images {margin-top: 10px;} - .modern_ui_section .section_title {text-align: center;} - .modern_ui_section .design_block li {padding-left: 0; margin-bottom: 30px;} - .modern_ui_section .design_block li::before {position: relative; left: auto; top: auto; display: inline-block;} - - .modern_ui_section .ui_images img {max-width: 100%;} - .modern_ui_section .ui_images::before {width: 350px; height: 350px;} - .modern_ui_section .ui_images .left_img {width: 70%;} - .modern_ui_section .ui_images .right_img {justify-content: center;} - .modern_ui_section .ui_images .right_img img:nth-child(1) {top: 0; width: 100px;} - .modern_ui_section .ui_images .right_img img:nth-child(3) {margin-top: 0;} - - /* how it work section */ - .how_it_works .how_it_inner {padding: 50px 15px;} - .how_it_works .step_block ul {padding-top: 30px;} - .how_it_works .step_block ul li , .how_it_works .step_block ul li:nth-child(2) {flex-direction: column; padding-left: 30px;} - .how_it_works .step_block ul li .step_text h4 {font-size: 18px;} - .how_it_works .step_block ul li::before {left: 0; transform: none; height: calc(100% + 10px); top: 40px;} - .how_it_works .step_block ul li:first-child::before {height: calc(100% + 50px);} - .how_it_works .step_block ul li:first-child::after {left: -5px; transform: none; display: none;} - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img , - .how_it_works .step_block ul li:nth-child(2) .step_text, .how_it_works .step_block ul li:nth-child(2) .step_img {text-align: center;} - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 100%;} - .how_it_works .step_block ul li .step_number {position: absolute; top: -5px; left: -23px; width: 50px; height: 50px;} - .how_it_works .step_block ul li:last-child::before {opacity: 0;} - .how_it_works .step_block ul li .step_number h3 {font-size: 15px; margin-bottom: 0; margin-top: -2px;} - .how_it_works .yt_video {margin-top: -50px;} - .how_it_works .yt_video .thumbnil {height: 300px; border-radius: 15px;} - .how_it_works .yt_video .thumbnil img {height: 100%; object-fit: cover; object-position: center; border-radius: 15px;} - .how_it_works .yt_video .thumbnil a {width: 100%;} - .how_it_works .yt_video .thumbnil a .play_btn::after {width: 140px; height: 140px;} - .how_it_works .yt_video .thumbnil a .play_btn::before {width: 120px; height: 120px;} - .how_it_works .yt_video .thumbnil a .play_btn img {height: auto;} - - /* testimonial section */ - .testimonial_section .testimonial_block {margin: 0;} - .testimonial_section .testimonial_block .avtar_faces {display: none;} - .testimonial_section .testimonial_block .testimonial_slide_box {width: 100%;} - - /* pricing section */ - .pricing_section .pricing_pannel .pricing_block {min-height: auto; padding: 30px 15px;} - .pricing_section .pricing_pannel .pricing_block .icon {margin-bottom: 15px;} - .pricing_section .contact_text {margin-top: -20px;} - - /* faq section */ - .faq_section .faq_panel .card-header h2 {text-align: left;} - .faq_section .faq_panel .card-header .btn {font-size: 16px; padding-right: 30px; text-align: left;} - .faq_section .faq_panel .card-body p {text-align: left;} - - /* interface section */ - .interface_section .screen_slider { /*min-height: 720px;*/} - .interface_section .owl-item .screen_frame_img img {transform: scale(1);} - - /* download section */ - .free_app_section .container .free_app_inner {padding: 50px 15px; padding-bottom: 0; z-index: 99;} - .free_app_section .container .free_app_inner .free_img {margin-top: 0; justify-content: center;} - .free_app_section .container .free_app_inner .free_img img {max-width: 100%;} - .free_app_section .container .free_app_inner .free_text .section_title {text-align: center;} - .free_app_section .container .free_app_inner .free_text .app_btn {flex-direction: column;} - .free_app_section .container .free_app_inner .free_text .app_btn li a {width: 200px; text-align: center;} - .free_app_section .container .free_app_inner .free_text .app_btn li:last-child {margin-left: 0; margin-top: 15px;} - - /* latest story section */ - .latest_story .story_box {margin-bottom: 30px;} - - /* newsletter section */ - .newsletter_box form {flex-direction: column; align-items: center;} - .newsletter_box form .form-group {width: 100%;} - .newsletter_box form .form-group .form-control {width: 100%; margin-bottom: 15px;} - .newsletter_box .section_title p {font-size: 13px;} - - /* footer section */ - footer .links , footer .abt_side {margin-bottom: 30px;} - footer .top_footer .social_media {justify-content: center;} - footer .top_footer .social_media li a {margin: 0 5px;} - footer .top_footer .try_out {margin-left: 0;} - footer .app_btn li a {margin: 0 auto;} - footer .bottom_footer .developer_text {text-align: center; margin-top: 10px;} - footer .go_top {right: 10px;} - footer .top_footer .col-md-6 {margin-bottom: 0px;} - - /* animation line section */ - .anim_line , .anim_line.dark_bg {width: 140%;} - - /* latest story section */ - .latest_story .story_box .story_img img {width: 100%;} - - /* go top button section */ - .go_top {bottom: 30px; z-index: 999;} - - .purple_backdrop {display: none;} - - - /* Bread-Crumb */ - .bred_crumb {min-height: 330px;} - .bred_crumb .bred_text h1 {font-size: 24px;} - .bred_crumb .bred_text .search_bar form .form-group {height: 50px;} - .bred_crumb .bred_text .search_bar form .form-group .btn {width: 46px; height: 46px; line-height: 46px;} - .bred_crumb .bred_text {padding: 0 15px; margin-top: 15px;} - .bred_crumb::after {background-size: cover; height: 100px;} - - - - .blog_list_main .blog_text .section_title , .blog_list_story .story_box {text-align: center;} - - .why_we_section .why_inner {padding-bottom: 10px;} - - .experts_team_section .experts_box {padding: 20px; margin-bottom: 15px;} - .pagination_block ul li:not(:first-child , :last-child) a {width: 24px; height: 24px; line-height: 24px; margin: 0 3px; font-size: 12px;} - - .blog_detail_bredcrumb.bred_crumb .bred_text {margin-top: -10px;} - .blog_detail_section .blog_inner_pannel {margin-top: -70px; padding: 25px 20px;} - .blog_detail_section .blog_inner_pannel .section_title {margin-bottom: 20px;} - .blog_detail_section .blog_inner_pannel .section_title h2 {font-size: 22px;} - .blog_detail_section .blog_inner_pannel .info h3 {font-size: 18px;} - .blog_detail_section .blog_inner_pannel .info ul {text-align: left; padding-left: 0;} - .blog_detail_section .blog_inner_pannel .two_img {margin-bottom: 0;} - .blog_detail_section .blog_inner_pannel .two_img img {margin: 10px 0;} - .blog_detail_section .blog_inner_pannel .quote_block .q_icon {left: 50%; transform: translateX(-50%);} - .blog_detail_section .blog_inner_pannel .quote_block {padding: 55px 20px 35px 20px;} - .blog_detail_section .blog_inner_pannel .quote_block h2 {font-size: 18px; line-height: 1.4;} - .blog_detail_section .blog_inner_pannel .blog_authore {flex-direction: column;} - .blog_detail_section .blog_inner_pannel .blog_authore .authore_info {margin-bottom: 30px;} - .blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 {font-size: 18px;} - - .comment_section ul li {flex-direction: column; padding: 20px 0; text-align: left;} - .comment_section ul li .comment {width: 100%; margin-left: 0;} - .comment_section ul li .authore_info {width: 100%; margin-bottom: 15px;} - .comment_section ul li.replay_comment {margin-left: 30px;} - .comment_section ul li .authore_info .text {width: auto;} - - .comment_form_section form .form-group .form-control {height: 45px; font-size: 14px; margin-bottom: 15px;} - - - .signup_form {width: calc(100% - 30px); margin: 0 15px;} - .signup_form form {padding: 0 20px;} - .signup_form form .form-group .form-control {font-size: 14px; height: 50px;} - .signup_form .or_option .google_btn {min-width: 275px; padding: 12px 10px;} - .signup_section .back_btn {top: 15px;} - .signup_section .top_part {padding-top: 35px; padding-bottom: 35px;} - - .review_freeapp {margin: 0 0 40px 0;} - .review_list_section .review_box .rating ul , - .review_list_section .review_box .reviewer {justify-content: flex-start; text-align: center;} - .review_list_section .review_box .reviewer .text {width: auto; text-align: left;} - .review_list_section .review_box {text-align: left;} - - .contact_page_section .contact_inner {margin-top: 40px;} - .contact_page_section .contact_inner .contact_form {padding: 30px 20px;} - .contact_page_section .contact_inner .section_title h2 {font-size: 24px;} - .contact_page_section .contact_inner .contact_form form .form-group .form-control {height: 50px; font-size: 14px;} - .contact_page_section .contact_inner .contact_form form .term_check label {text-align: left; line-height: 1.3;} - .contact_page_section .contact_inner .contact_form form .term_check {align-items: flex-start;} - .contact_page_section .contact_inner .contact_info .section_title {text-align: center;} - .contact_page_section .contact_inner .contact_info .btn {margin-bottom: 30px;} - .contact_page_section .contact_inner .contact_info .contact_info_list li {flex-direction: column;} - .contact_page_section .contact_inner .contact_info .contact_info_list li .img {width: 100%; margin: 0;} - .contact_page_section .contact_inner .contact_info .contact_info_list li .text {width: 100%; margin-top: 10px;} - - .map_section {margin: 15px 0;} - -} - -@media screen and (max-width:640px) { - .features_section .feature_detail .feature_box { justify-content: center; margin: 0 auto; } - .bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 { display: none;} - .query_section .banner_shape1, .banner_shape2, .banner_shape3 { display: none;} - -} - -@media screen and (max-width:479px) { - - /* about app section */ - .about_app_section .about_img::before {left: 49%;} -} \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/css/style.css b/desarrollo/diseno/login-clientes/css/style.css deleted file mode 100644 index 2f0489b2..00000000 --- a/desarrollo/diseno/login-clientes/css/style.css +++ /dev/null @@ -1,3506 +0,0 @@ -/*----------------------------------------------------------------------------------- - -[Table of contents] - -1. Font -2. Css Variable for colors -3. Common CSS -4. Preloader CSS -5. Header - Main Navigation ( section ) -6. Hero Slider ( section ) -7. Trusted Logo Slider ( section ) -8. Features ( section ) -9. About us ( section ) -10. Modern UI ( section ) -11. How it works ( section ) -12. Testimonials ( section ) -13. Pricing ( section ) -14. Faq ( section ) -15. Interface ( section ) -16. Download app ( section ) -17. Latest story ( section ) -18. Newsletter ( section ) -19. Footer ( section ) -20. Animation CSS ( section ) - - ------------------------------------------------------------------------------------*/ - - -/* --------Font--------------- */ -/* poppins-300 - latin */ -@font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 300; - src: url('../fonts/poppins-v20-latin-300.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-300.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-300.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-regular - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 400; - src: url('../fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-italic - latin */ - @font-face { - font-family: 'Poppins'; - font-style: italic; - font-weight: 400; - src: url('../fonts/poppins-v20-latin-italic.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-italic.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-500 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 500; - src: url('../fonts/poppins-v20-latin-500.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-500.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-500italic - latin */ - @font-face { - font-family: 'Poppins'; - font-style: italic; - font-weight: 500; - src: url('../fonts/poppins-v20-latin-500italic.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-500italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-500italic.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-600 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 600; - src: url('../fonts/poppins-v20-latin-600.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-600.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-700 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 700; - src: url('../fonts/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-800 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 800; - src: url('../fonts/poppins-v20-latin-800.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-800.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-800.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */ - } - -/* -----------Css-variable------ */ - -:root { - --light-purple: #F6F4FE; - --purple: #6A49F2; - --bg-purple: #6A49F2; - --dark-purple: #32236F; - --body-text-purple: #3E3F66; - --text-white: #ffffff; - --bg-white: #ffffff; - --slider-dots-color: #D4D2DD; - --light-bg: #DFDAF3; -} - - - -/* ------Common-Css------------- */ - -html{scroll-behavior:smooth} - -body { - margin: 0; - padding: 0; - box-sizing: border-box; - font-size: 16px; - line-height: 1.7; - font-family: 'Poppins', sans-serif; - color: var(--body-text-purple); - background-color: var(--light-purple); -} - -.page_wrapper { - width: 100%; - overflow-x: hidden; -} - -a { - text-decoration: none; - color: var(--body-text-purple); -} - -a:hover { - text-decoration: none; - color: var(--body-text-purple); -} - -ul, -li { - padding: 0; - list-style-type: none; - margin: 0; -} - -button:focus, -.btn.focus, -.btn:focus { - outline: none; - box-shadow: none; -} - -@media screen and (min-width:1200px) { - .container { - max-width: 1170px; - } -} - -.section_title { - text-align: center; -} - -/* section heading h2 */ -.section_title h2 { - font-size: 40px; - font-weight: 700; - color: var(--dark-purple); -} - -.section_title h2 span { - color: var(--purple); -} - -.row_am { - padding: 50px 0; -} - -/* purple button */ -.puprple_btn { - background-color: #003b73; - color: var(--text-white); - border-radius: 50px; - padding: 10px 40px; - position: relative; - overflow: hidden; - z-index: 1; - font-weight: 500; -} - -.puprple_btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-white); - border-radius: 50px; - transition: .6s all; - z-index: -1; -} - -.puprple_btn:hover::before { - width: 100%; -} - -.puprple_btn:hover { - color: #003b73; -} - -/* white button */ -.white_btn { - padding: 10px 45px; - border: 1px solid var(--purple); - color: var(--purple); - border-radius: 50px; - background-color: var(--bg-white); - font-weight: 700; - position: relative; - z-index: 1; - overflow: hidden; - font-weight: 500; -} - -.white_btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-purple); - border-radius: 50px; - transition: .6s all; - z-index: -1; -} - -.white_btn:hover::before { - width: 110%; -} - -.white_btn:hover { - color: var(--text-white); -} - -.highlited_block .white_btn:hover { - border-color: var(--bg-white); -} - -/* slider controls */ -.owl-carousel .owl-dots { - display: flex; - align-items: center; - justify-content: center; - position: relative; - margin-top: 20px; -} - -.owl-carousel .owl-dots button { - display: block; - width: 15px; - height: 15px; - background-color: var(--slider-dots-color); - border-radius: 15px; - margin: 0 5px; -} - -.owl-carousel .owl-dots button.active { - background-color: var(--purple); -} - -/* -------------Preloader-Css-Start-------------- */ - -/* Preloader */ -#preloader { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: rgba(255, 255, 255, 0.9); - z-index: 999999; -} - -#loader { - display: block; - position: relative; - left: 50%; - top: 50%; - width: 150px; - height: 150px; - margin: -75px 0 0 -75px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #E62E04; - -webkit-animation: spin 2s linear infinite; - animation: spin 2s linear infinite; -} - -#loader:before { - content: ""; - position: absolute; - top: 5px; - left: 5px; - right: 5px; - bottom: 5px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #003b73; - -webkit-animation: spin 3s linear infinite; - animation: spin 3s linear infinite; -} - -#loader:after { - content: ""; - position: absolute; - top: 15px; - left: 15px; - right: 15px; - bottom: 15px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #003b73; - -webkit-animation: spin 1.5s linear infinite; - animation: spin 1.5s linear infinite; -} - -@-webkit-keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - - - - -/* -----------Header-Css-Start------------------- */ -/* header wraper */ -header { - position: relative; - width: 100%; - z-index: 99999; - transition: .4s all; -} - -header.fix_style { - position: fixed; - top: 0; - backdrop-filter: blur(5px); - background-color: #ffffffb4; - padding: 15px 0; - transition: none; - opacity: 0; - pointer-events: none; -} - -header.fixed { - pointer-events: all; - opacity: 1; - transition: .4s all; -} - -header.fixed .navbar { - padding: 0; -} - -/* navigation bar */ -.navbar { - padding-left: 0; - padding-right: 0; - padding-top: 35px; -} - -.navbar-expand-lg .navbar-nav { - align-items: center; -} - -.navbar-expand-lg .navbar-nav .nav-link { - padding: 5px 20px; - font-weight: 500; -} - -.navbar-expand-lg .navbar-nav .nav-link:hover { - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn { - color: var(--text-white); - background-color: var(--purple); - font-size: 16px; - padding: 9px 40px; - border-radius: 25px; - margin-left: 20px; - position: relative; -} - - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before, -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - content: ''; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 42px; - z-index: -1; -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before { - animation: pulse-blue-medium-sm 3.5s infinite -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - animation: pulse-blue-small-sm 3.5s infinite -} - -.navbar-brand img { - width: 238px; -} - -/* navigation bar dropdown */ -.navbar-expand-lg .navbar-nav .has_dropdown { - display: flex; - align-items: center; - position: relative; - border-radius: 10px 10px 0 0; - transition: .4s all; -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover { - background-color: var(--bg-white); - box-shadow: 0px 4px 10px #c5c5c580; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn { - position: relative; - right: 15px; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu { - position: absolute; - top: 100%; - background-color: var(--bg-white); - border-radius: 0 10px 10px 10px; - min-width: 210px; - max-width: 230px; - margin-top: -10px; - transition: .4s all; - opacity: 0; - pointer-events: none; - box-shadow: 0px 4px 10px #c5c5c580; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul { - margin-left: 0; - padding: 10px 20px; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a { - font-size: 15px; - position: relative; - transition: .4s all; - line-height: 35px; - font-weight: 500; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before { - content: ""; - width: 10px; - height: 10px; - display: inline-block; - border: 2px solid var(--purple); - border-radius: 10px; - margin-right: 5px; - position: absolute; - left: -10px; - top: 50%; - transform: translateY(-50%); - opacity: 0; - transition: .4s all; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover { - padding-left: 15px; - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before { - opacity: 1; - left: 0; -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover>a, -.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn { - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu { - opacity: 1; - pointer-events: all; - margin-top: -1px; -} - -/* navigation toggle menu */ -.toggle-wrap { - padding: 10px; - position: relative; - cursor: pointer; - - /*disable selection*/ - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - } - - .toggle-bar, - .toggle-bar::before, - .toggle-bar::after, - .toggle-wrap.active .toggle-bar, - .toggle-wrap.active .toggle-bar::before, - .toggle-wrap.active .toggle-bar::after { - -webkit-transition: all .2s ease-in-out; - -moz-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; - } - - .toggle-bar { - width: 25px; - margin: 10px 0; - position: relative; - border-top: 4px solid var(--body-text-purple); - display: block; - } - - .toggle-bar::before, - .toggle-bar::after { - content: ""; - display: block; - background: var(--body-text-purple); - height: 4px; - width: 30px; - position: absolute; - top: -12px; - right: 0px; - -ms-transform: rotate(0deg); - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - -ms-transform-origin: 13%; - -webkit-transform-origin: 13%; - transform-origin: 13%; - } - - .white_header .toggle-bar , - .white_header .toggle-bar::before, - .white_header .toggle-bar::after { - border-top: 4px solid var(--bg-white); - } - - .toggle-bar::after { - top: 4px; - } - - .toggle-wrap.active .toggle-bar { - border-top: 6px solid transparent; - } - - .toggle-wrap.active .toggle-bar::before { - -ms-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - } - - .toggle-wrap.active .toggle-bar::after { - -ms-transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - } - - -/* ---------Hero-Slider-Css-Start------------------ */ -/* hero slider wraper */ -.banner_section { - margin-top: 70px; - position: relative; -} - -.banner_section .container { - position: relative; -} - -/* wave backgound after banner */ -.banner_section::after { - content: ""; - display: block; - background-image: url(../images/banner-shape.svg); - background-size: cover; - background-repeat: no-repeat; - width: 100%; - height: 200px; - background-position: center; - margin-top: -50px; -} - -.banner_section .row { - align-items: center; -} - -/* hero slider text */ -.banner_section .banner_text { - margin-top: -50px; -} - -/* hero slider heading h1 */ -.banner_section .banner_text h1 { - font-size: 55px; - color: var(--dark-purple); - letter-spacing: -1.5px; - font-weight: 700; -} - -.banner_section .banner_text h1 span { - color: var(--purple); -} - -/* hero slider button */ -.banner_section .app_btn { - display: flex; - align-items: center; -} - -/* hero slider list */ -.banner_section .app_btn li a { - display: block; - padding: 12px 30px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; -} - -.banner_section .app_btn li:last-child { - margin-left: 25px; -} - -.banner_section .app_btn li a img { - transition: .4s all; -} - -.banner_section .app_btn li a .white_img { - position: absolute; - left: 50%; - transform: translateX(-50%); - opacity: 0; -} - -.banner_section .app_btn li a:hover { - background-color: var(--purple); -} - -.banner_section .app_btn li a:hover .blue_img { - opacity: 0; -} - -.banner_section .app_btn li a:hover .white_img { - opacity: 1; -} - -/* hero slider users */ -.banner_section .used_app { - display: flex; - align-items: center; - margin-top: 35px; -} - -.banner_section .used_app ul { - display: flex; - align-items: center; - margin-right: 10px; -} - -.banner_section .used_app ul li:not(:first-child) { - margin-left: -15px; -} - -.banner_section .used_app p { - font-size: 15px; - line-height: 19px; - margin-bottom: 0; -} - -/* hero slider images */ -.banner_section .banner_slider { - display: flex; - position: relative; -} - -.banner_section .banner_slider .left_icon { - position: absolute; - left: 15px; - bottom: 70px; - z-index: 9999; -} - -.banner_section .banner_slider .right_icon { - position: absolute; - right: 15px; - top: 70px; -} - -/* hero slider mobile frame */ -.banner_section .banner_slider .slider_frame { - position: absolute; - left: 50%; - transform: translateX(-50%); - z-index: 999; - width: 315px; -} - -.banner_section .banner_slider #frmae_slider::before { - content: ""; - position: absolute; - left: 5px; - top: 5px; - background-color: #fff; - width: calc(100% - 10px); - height: 92%; -} - -.banner_section .banner_slider::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 475px; - height: 475px; - border-radius: 100%; - background-color: var(--purple); - z-index: -5; -} - -.banner_section .banner_slider #frmae_slider { - width: 305px; - margin: 0 auto; -} - -/* hero slider control dots */ -.banner_section .owl-dots { - margin-top: 40px; -} - -.owl-carousel .owl-item img { - max-width: 100%; - width: auto; -} - - - - -/* ------------Trusted-Section-Css-Start----------- */ - -/* trusted logos wraper */ -.trusted_section { - margin-top: 40px; -} - -.trusted_section .company_logos { - padding-top: 20px; -} - -.trusted_section .company_logos img { - filter: grayscale(1); - margin: 0 auto; - transition: .4s all; -} - -.trusted_section .company_logos img:hover { - filter: grayscale(0); -} - - - -/* ----------Feature-Detail-Section-start------ */ - -/* features section wraper */ -.features_section .feature_detail { - background-color: var(--bg-white); - border-radius: 30px; - position: relative; - display: flex; - justify-content: space-between; - margin-top: 120px; - padding-top: 60px; - padding-bottom: 20px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* features section image */ -.features_section .feature_detail .feature_img { - position: absolute; - left: 50%; - transform: translateX(-50%); - top: -75px; -} - -.features_section .feature_detail .feature_img img { - max-width: 100%; -} - -/* features section box */ - -.features_section .feature_detail .feature_box { - max-width: 410px; -} - -.features_section .feature_detail .feature_box .data_block { - margin-bottom: 50px; -} - -.features_section .feature_detail .feature_box .data_block h4 { - font-size: 20px; - color: var(--dark-purple); - font-weight: 600; -} - -.features_section .feature_detail .left_data { - text-align: right; - padding-left: 130px; -} - -.features_section .feature_detail .right_data { - padding-right: 130px; -} - -.features_section .feature_detail .left_data .data_block .icon { - margin-right: -15px; -} - -.features_section .feature_detail .right_data .data_block .icon { - margin-left: -15px; -} - -.features_section .container { - max-width: 1370px; -} - - - -/* -----------------About-App-Section-Css-Start------------------ */ - -/* about us section wraper */ -.about_app_section .about_img { - display: flex; - align-items: center; - position: relative; -} - -/* about us section images*/ -.about_app_section .about_img img { - max-width: 100%; -} - -.about_app_section .about_img::before { - content: ""; - position: absolute; - left: 38%; - top: 50%; - transform: translate(-50%, -50%); - width: 500px; - height: 500px; - background-color: var(--bg-white); - border-radius: 100%; - z-index: -1; -} - -.about_app_section .about_img .screen_img { - margin-left: -135px; - margin-top: 110px; -} - -.about_app_section .about_text .section_title { - text-align: left; -} - -.about_app_section .about_text .section_title h2 { - margin-bottom: 15px; -} - -/* about us section statastics nomber */ -.about_app_section .about_text .app_statstic { - display: flex; - flex-wrap: wrap; - justify-content: space-between; - margin-bottom: 10px; - margin-top: 40px; -} - -.about_app_section .about_text .app_statstic li { - width: 248px; - background-color: var(--bg-white); - margin-bottom: 30px; - display: flex; - align-items: center; - border-radius: 12px; - padding: 15px 10px; - padding-left: 35px; - box-shadow: 0px 4px 10px #EDE9FE; -} - -.about_app_section .about_text .app_statstic li .icon { - margin-right: 9px; -} - -.about_app_section .about_text .app_statstic li p { - margin-bottom: 0; - line-height: 1; - color: var(--dark-purple); -} - -.about_app_section .about_text .app_statstic li p:first-child { - font-size: 40px; - font-weight: 600; - margin-bottom: 3px; -} - - -/* -------------Modern-Ui-Section-Css-Start---------------- */ -/* modern ui section wraper */ -.modern_ui_section .row { - align-items: center; -} - -.modern_ui_section .design_block { - margin-top: 45px; -} - -/* modern ui text */ -.modern_ui_section .section_title { - text-align: left; -} - -.modern_ui_section .ui_text { - padding-right: 75px; -} - -/* modern ui list */ -.modern_ui_section .design_block li { - padding-left: 40px; - position: relative; - margin-bottom: 25px; -} - -.modern_ui_section .design_block li::before { - content: ""; - position: absolute; - left: 0; - top: 5px; - background-image: url(../images/right_icon.png); - width: 22px; - height: 22px; - background-repeat: no-repeat; - background-position: center; - background-size: contain; -} - -.modern_ui_section .design_block li h4 { - font-size: 20px; - color: var(--dark-purple); - font-weight: 600; - margin-bottom: 8px; -} - -.modern_ui_section .design_block li p { - margin-bottom: 0; -} - -/* modern ui images */ -.modern_ui_section .ui_images { - display: flex; - position: relative; -} - -.modern_ui_section .ui_images::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 570px; - height: 570px; - border-radius: 100%; - background-color: var(--bg-white); - z-index: -1; -} - -.modern_ui_section .ui_images .right_img img:nth-child(3) { - margin-left: -140px; - margin-top: -20px; -} - -.modern_ui_section .ui_images .right_img img:nth-child(2) { - margin-left: -90px; - margin-top: -20px; -} - -.modern_ui_section .ui_images .right_img img:nth-child(1) { - position: relative; - top: 15px; - z-index: 99; - margin-left: -15px; -} - - -/* -------------How_It_Works-Section-Css-Start------------------ */ - -/* how it works wraper */ -.how_it_works .container { - max-width: 1370px; -} - -.how_it_works .how_it_inner { - background-color: var(--bg-white); - padding: 70px 0; - padding-bottom: 250px; - border-radius: 30px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* how it works list */ -.how_it_works .step_block ul { - max-width: 1080px; - margin: 0 auto; - padding: 10px; -} - -.how_it_works .step_block ul li { - display: flex; - align-items: center; - justify-content: space-between; - position: relative; - margin-bottom: 50px; -} - -.how_it_works .step_block ul li::before { - content: ""; - position: absolute; - left: 50%; - top: 50px; - transform: translateX(-50%); - width: 4px; - height: calc(100% + 100px); - background-color: var(--light-bg); -} - -.how_it_works .step_block ul li:first-child::after { - content: ""; - position: absolute; - left: 50%; - top: 0; - transform: translateX(-50%); - width: 14px; - height: 14px; - background-color: var(--light-bg); - border-radius: 15px; -} - -.how_it_works .step_block ul li:first-child::before { - top: 0; -} - -.how_it_works .step_block ul li:last-child::before { - height: 50%; - top: 0; -} - -.how_it_works .step_block ul li .step_text, -.how_it_works .step_block ul li .step_img { - width: 360px; - text-align: right; -} - -/* how it works image */ -.how_it_works .step_block ul li .step_img img { - max-width: 100%; -} - -/* how it works heading h4 */ -.how_it_works .step_block ul li .step_text h4 { - font-size: 20px; - font-weight: 600; -} - -.how_it_works .step_block ul li .step_text .app_icon { - margin-bottom: 10px; -} - -.how_it_works .step_block ul li .step_text .app_icon a { - display: inline-block; - width: 40px; - height: 40px; - border-radius: 100%; - background-color: var(--light-bg); - color: var(--text-white); - font-size: 20px; - text-align: center; - line-height: 40px; - transition: .4s all; -} - -.how_it_works .step_block ul li .step_text .app_icon a:hover { - background-color: var(--purple); -} - -.how_it_works .step_block ul li .step_text span { - font-weight: 600; -} - -.how_it_works .step_block ul li .step_text span a { - color: var(--purple); - text-decoration: underline; -} - -.how_it_works .step_block ul li:nth-child(2) { - flex-direction: row-reverse; -} - -.how_it_works .step_block ul li:nth-child(2) .step_text, -.how_it_works .step_block ul li:nth-child(2) .step_img { - text-align: left; -} - -/* how it works numbers */ -.how_it_works .step_block ul li .step_number { - background-image: url(../images/icon_bg.png); - background-size: cover; - background-repeat: no-repeat; - background-position: center; - width: 110px; - height: 110px; - display: flex; - justify-content: center; - align-items: center; - position: relative; -} - -/* how it works numbers heading h3 */ -.how_it_works .step_block ul li .step_number h3 { - font-size: 30px; - font-weight: 600; -} - -/* how it works video */ -.how_it_works .yt_video { - max-width: 1170px; - margin: 0 auto; - margin-top: -200px; - position: relative; - overflow: hidden; -} - -/* how it works video animation line */ -.how_it_works .yt_video .anim_line { - z-index: 999; -} - -.how_it_works .yt_video .thumbnil { - position: relative; -} - -.how_it_works .yt_video .thumbnil img { - max-width: 100%; -} - -.how_it_works .yt_video .thumbnil a { - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - text-align: center; - color: var(--text-white); - font-weight: 600; - z-index: 999; - cursor: pointer; -} - -.how_it_works .yt_video .thumbnil a span { - display: block; - font-weight: 700; - font-size: 30px; -} - -.how_it_works .yt_video .thumbnil a .play_btn { - background-color: rgba(255, 255, 255, 0.1); - width: 96px; - height: 96px; - border-radius: 100px; - text-align: center; - margin: 0 auto; - line-height: 96px; - position: relative; - display: block; - margin-bottom: 40px; -} - -.how_it_works .yt_video .thumbnil a .play_btn img { - width: 50px; - position: relative; - z-index: 999; -} - -/* how it works video model */ -.modal { - z-index: 999999; -} - -.modal-backdrop.show { - z-index: 99999; - opacity: .7; -} - -.youtube-video .modal-dialog { - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - margin: auto; - width: 100%; - padding: 0 15px; - height: 100%; - max-width: 1240px !important; - display: flex; - flex-direction: column; - justify-content: center; -} - -#video-container { - position: relative; - padding-bottom: 50%; - padding-top: 30px; - height: 0; - overflow: hidden; -} - -iframe#youtubevideo { - position: absolute; - top: 0; - left: 0; - height: 100%; - width: 100%; -} -.youtube-video .modal-footer { - border: none; - text-align: center; - display: block; - padding: 0; -} - -.youtube-video .modal-content { - background: none !important; - border: none; -} - -#close-video { - color: #fff; - font-size: 30px; -} - -/* ------------Testimonial-Slider-Css-Start------------- */ -/* testimonials wraper */ -#testimonial_slider { - max-width: 550px; - margin: 0 auto; -} - -.testimonial_section .testimonial_block { - background-image: url(../images/testimonial_bg.png); - background-size: cover; - background-position: center; - position: relative; - margin-top: 65px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box { - text-align: center; - width: 430px; - padding: 10px; - margin: 0 auto; -} - -/* testimonials rating */ -.testimonial_section .testimonial_block .rating span { - color: #FC9400; - font-size: 18px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box .review { - margin-top: 10px; - margin-bottom: 30px; -} - -/* testimonials image */ -.testimonial_section .testimonial_block .testimonial_slide_box .testimonial_img img { - margin: 0 auto; -} - -/* testimonials heading h3 */ -.testimonial_section .testimonial_block .testimonial_slide_box h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 0; - margin-top: 10px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box .designation { - font-size: 15px; -} - -/* testimonials total review */ -.testimonial_section .total_review { - text-align: center; - margin-top: 60px; -} - -.testimonial_section .total_review .rating { - display: flex; - align-items: center; - justify-content: center; -} - -/* testimonials paragraph */ -.testimonial_section .total_review .rating p { - margin-bottom: 0; - font-weight: 600; - margin-left: 5px; - color: var(--dark-purple); -} - -/* testimonials heading */ -.testimonial_section .total_review h3 { - font-size: 50px; - font-weight: 600; - margin-bottom: 0; - color: var(--dark-purple); -} - -.testimonial_section .total_review a { - color: var(--purple); - font-weight: 700; -} - -.testimonial_section .testimonial_block .avtar_faces { - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); - z-index: -1; - width: 100%; -} - -.testimonial_section .testimonial_block .avtar_faces img { - max-width: 100%; -} - - -/* -------------------Pricing-Section---------------------- */ - -/* pricing wraper */ -.pricing_section .toggle_block { - display: flex; - align-items: center; - justify-content: center; -} - -/* pricing toggle button */ -.pricing_section .toggle_block span { - color: var(--dark-purple); - font-weight: 600; - display: block; - margin: 0 5px; -} - -.tog_btn.month_active { - left: 35px !important; -} - -.pricing_section .toggle_block span.deactive { - color: var(--body-text-purple); -} - -.pricing_section .toggle_block .offer { - background-color: var(--bg-white); - border-radius: 5px; - padding: 2px 10px; - font-weight: 400; - font-size: 13px; - color: var(--purple); -} - -.pricing_section .toggle_block .tog_block { - width: 70px; - height: 35px; - background-color: var(--bg-white); - border-radius: 18px; - margin: 0 10px; - position: relative; - cursor: pointer; -} - -.pricing_section .toggle_block .tog_block .tog_btn { - height: 23px; - width: 23px; - border-radius: 25px; - display: block; - background-color: var(--purple); - position: absolute; - left: 3px; - top: 50%; - transform: translateY(-50%); - transition: .4s all; -} - -.pricing_section .toggle_block .month.active, -.pricing_section .toggle_block .years.active { - color: var(--purple); -} - -/* pricing pannel */ -.pricing_section .pricing_pannel { - margin-top: 50px; - display: none; -} - -.pricing_section .pricing_pannel.active { - display: block; -} - -.pricing_section .pricing_pannel .pricing_block { - text-align: center; - background-color: var(--bg-white); - min-height: 700px; - border-radius: 12px; - padding-top: 60px; - margin-bottom: 40px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -.pricing_section .pricing_pannel .pricing_block.highlited_block { - background-color: var(--purple); -} - -.pricing_section .pricing_pannel .pricing_block.highlited_block p, -.pricing_section .pricing_pannel .pricing_block.highlited_block h3, -.pricing_section .pricing_pannel .pricing_block.highlited_block span, -.pricing_section .pricing_pannel .pricing_block.highlited_block .pkg_name span { - color: var(--text-white); -} - -.pricing_section .pricing_pannel .pricing_block .icon { - margin-bottom: 35px; -} - -/* pricing box image */ -.pricing_section .pricing_pannel .pricing_block .icon img { - width: 120px; -} - -/* pricing box heading h3 */ -.pricing_section .pricing_pannel .pricing_block .pkg_name h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 0; -} - -.pricing_section .pricing_pannel .pricing_block .pkg_name span { - color: var(--body-text-purple); - font-size: 15px; -} - -.pricing_section .pricing_pannel .pricing_block .price { - font-size: 48px; - color: var(--purple); - margin: 25px 0; - display: block; - font-weight: 600; -} - -/* pricing box list */ -.pricing_section .pricing_pannel .pricing_block .benifits { - margin-bottom: 40px; -} - -.pricing_section .pricing_pannel .pricing_block .benifits li p { - margin-bottom: 5px; -} - -.pricing_section .contact_text { - text-align: center; - margin-bottom: 0; -} - -.pricing_section .contact_text a { - color: var(--purple); - text-decoration: underline; -} - - -/* -------------FAQ-Section-Css-Start----------------- */ - -/* faq wraper */ -.faq_section .faq_panel { - margin-top: 40px; -} - -/* faq box */ -.faq_section .faq_panel .card { - border: none; - margin-bottom: 20px; - border-radius: 12px; - box-shadow: 0 4px 10px #EDE9FE; - padding: 16px 0; -} - -.faq_section .faq_panel .card:last-child { - margin-bottom: 0; -} - -.faq_section .faq_panel .card-header { - background-color: transparent; - border: none; - padding-bottom: 0; - padding-top: 0; -} - -.faq_section .faq_panel .card-header .btn { - padding: 0; - color: var(--dark-purple); - font-weight: 600; - font-size: 20px; -} - -.faq_section .faq_panel .card-header .btn.active { - color: var(--purple); -} - -.faq_panel .accordion button, -.faq_panel .accordion button:hover, -.faq_panel .accordion button:focus { - text-decoration: none; -} - -.faq_section .faq_panel .card-header .icon_faq { - position: absolute; - right: 20px; - color: #839BC0; -} - -/* faq heading h2 */ -.faq_section .faq_panel .card-header h2 { - line-height: 1; -} - -/* faq paragraph */ -.faq_section .faq_panel .card-body { - padding-bottom: 0; -} - - -/* -----------Interface_Section-Css-Start----------------- */ - -/* interface wraper */ -.interface_section .screen_slider { - margin-top: 35px; - min-height: 720px; -} - -/* interface images */ -.interface_section .owl-item .screen_frame_img img { - transform: scale(.9); - border: 2px solid #000; - border-radius: 20px; - transition: 1s all; - margin: 0 auto; -} - -.interface_section .owl-item.center .screen_frame_img img { - transform: scale(1); - border: 3px solid #000; - -} - - -/* -----------Download_App_Section-Start------------------ */ - -/* download app wraper */ -.free_app_section { - padding-top: 70px; - position: relative; -} - -.free_app_section .container { - max-width: 1370px; -} - -.free_app_section .container .free_app_inner { - background-color: var(--bg-purple); - border-radius: 30px; - padding: 20px 100px; - padding-bottom: 50px; - position: relative; - z-index: 999999; -} - -/* download app dark background */ -.free_app_section .container .free_app_inner .dark_bg { - overflow: hidden; -} - -.free_app_section .container .free_app_inner .dark_bg span { - z-index: 9999; -} - -.free_app_section .container .free_app_inner .row { - align-items: center; -} - -.free_app_section .container .free_app_inner .free_text .section_title { - text-align: left; -} - -/* download app heading h2 */ -.free_app_section .container .free_app_inner .free_text .section_title h2 { - margin-bottom: 20px; -} - -.free_app_section .container .free_app_inner .free_text .section_title h2, -.free_app_section .container .free_app_inner .free_text .section_title p { - color: var(--text-white); -} - -.free_app_section .container .free_app_inner .free_text .app_btn { - display: flex; - align-items: center; -} - -.free_app_section .container .free_app_inner .free_text .app_btn li a { - display: block; - padding: 12px 30px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; -} - -.free_app_section .container .free_app_inner .free_text .app_btn li a:hover { - -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); --moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -} - -.free_app_section .container .free_app_inner .free_text .app_btn li:last-child { - margin-left: 25px; -} - -.free_app_section .container .free_app_inner .free_img { - display: flex; - align-items: center; - margin-top: -120px; -} - -.free_app_section .container .free_app_inner .free_img img:last-child { - margin-left: -65px; -} - -.purple_backdrop { - content: ""; - position: fixed; - left: 0; - top: 0; - background-color: rgba(50, 35, 111, 0.95); - width: 100%; - height: 100%; - z-index: 99999; - opacity: 0; - transition: .4s all; - pointer-events: none; -} - -/* ---------------Latest_Story-Css-Start------------- */ - -/* latest story wraper */ -.latest_story { - margin-bottom: 80px; -} - -/* latest story box */ -.latest_story .story_box { - background-color: var(--bg-white); - text-align: center; - border-radius: 10px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* latest story image */ -.latest_story .story_box .story_img { - position: relative; -} - -.latest_story .story_box .story_img img { - max-width: 100%; - border-radius: 12px; -} - -.latest_story .story_box .story_img span { - position: absolute; - left: 15px; - top: 15px; - font-size: 14px; - color: var(--text-white); -} - -/* latest story pargraph */ -.latest_story .story_box .story_text { - padding: 20px 30px; -} - -/* latest story heading h3 */ -.latest_story .story_box .story_text h3 { - color: var(--dark-purple); - font-size: 20px; - margin-bottom: 15px; - font-weight: 600; -} - -/* latest story link text */ -.latest_story .story_box .story_text a { - color: var(--purple); - margin-top: 25px; - display: block; - font-size: 14px; - margin-bottom: 10px; - font-weight: 600; -} - -.latest_story .story_box .story_text a:hover { - text-decoration:underline; -} - - - -/* -------------Newsletter-Section-Css-Start------------- */ - -/* newsletter wraper */ -.newsletter_box { - background-color: var(--bg-purple); - padding: 50px; - border-radius: 12px; - box-shadow: 0 4px 10px #0c0c0c21; - display: flex; - justify-content: space-between; - align-items: center; - margin-bottom: -95px; - position: relative; - z-index: 99; -} - -.newsletter_box .section_title { - width: 45%; -} - -.newsletter_box form { - width: 60%; -} - -/* newsletter heading h2 */ -.newsletter_box .section_title h2 { - margin-bottom: 5px; - letter-spacing: -1px; -} - -.newsletter_box .section_title h2, -.newsletter_box .section_title p { - color: var(--text-white); - text-align: left; -} - -/* newsletter paragraph */ -.newsletter_box .section_title p { - margin-bottom: 0; -} - -/* newsletter input */ -.newsletter_box form { - display: flex; -} - -.newsletter_box form .form-group { - margin-bottom: 0; -} - -.newsletter_box form .form-group .form-control { - width: 430px; - height: 55px; - border-radius: 6px; - color: var(--dark-purple); -} - -.newsletter_box form .form-group .form-control::placeholder { - color: var(--dark-purple); -} - -/* newsletter button */ -.newsletter_box form .form-group .btn { - height: 55px; - width: 170px; - text-transform: uppercase; - color: var(--purple); - background-color: var(--bg-white); - border-radius: 6px; - margin-left: 10px; - font-weight: 600; - position: relative; - overflow: hidden; - z-index: 1; -} - -.newsletter_box form .form-group .btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-purple); - border-radius: 0; - transition: .6s all; - z-index: -1; -} - -.newsletter_box form .form-group .btn:hover::before { - width: 100%; -} - -.newsletter_box form .form-group .btn:hover { - color: var(--text-white); -} - - -/* ------Footer-Css-Start-------------- */ -/* footer wraper */ -footer { - position: relative; -} - -footer .top_footer { - background-color: #583BD3; - padding: 180px 0 60px 0; - position: relative; - overflow: hidden; -} - -footer .top_footer.has_bg { - background-image: url(../images/footer_bg.png); - background-size: cover; - background-repeat: no-repeat; - background-position: center; -} - -/* footer logo */ -footer .top_footer .logo { - margin-bottom: 40px; -} - -footer .top_footer .logo img { - width: 150px; -} - -footer .top_footer .abt_side li { - padding: 0 0 10px 0; -} - -/* footer social media icon */ -footer .top_footer .social_media { - display: flex; - margin-top: 20px; -} - -/* footer link list */ -footer .top_footer .social_media li a { - display: block; - width: 37px; - height: 37px; - text-align: center; - line-height: 37px; - font-size: 15px; - border: 1px solid rgba(255, 255, 255, 0.3); - border-radius: 50px; - margin-right: 10px; - transition: .4s all; -} - -footer .top_footer .social_media li a:hover { - background-color: var(--bg-white); - color: var(--purple); -} - -footer .top_footer .try_out { - margin-left: -20px; -} - -footer .app_btn li a { - display: block; - padding: 12px 10px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; - width: 175px; - text-align: center; -} - -footer .app_btn li a:hover { - -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); - -moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); - box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -} - -footer .app_btn li:last-child { - margin-top: 20px; -} - -footer .bottom_footer { - background-color: var(--bg-purple); -} - -/* footer heading and text colors variable */ -footer h2, -footer h3, -footer p, -footer a { - color: var(--text-white); -} - -footer a:hover { - color: var(--text-white); -} - -/* footer heading h3 */ -footer h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 50px; - padding-top: 10px; -} - -footer .links ul li a { - display: block; - margin-bottom: 10px; -} - -/* footer last */ -footer .bottom_footer { - padding: 20px 0; -} - -footer .bottom_footer p { - margin-bottom: 0; - font-size: 15px; -} - -footer .bottom_footer .developer_text { - text-align: right; -} - -footer .bottom_footer .developer_text a { - text-decoration: underline; -} - -/* footer go top button */ -.go_top { - position: fixed; - right: 30px; - bottom: 75px; - cursor: pointer; - transition: .4s all; - opacity: 0; -} - -.go_top:hover { - bottom: 80px; -} - -/* -----------Animation-Css-Start-------------- */ - -/* animation line wraper */ -.anim_line { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); -} - -.anim_line span { - position: absolute; - z-index: 99999; - top: -275px; - animation: star_down_one 6s infinite linear; - opacity: 0; -} - -.anim_line.dark_bg { - max-width: 1170px; -} - -.anim_line.dark_bg span { - transform: rotate(180deg); -} - -.anim_line span:first-child { - left: -17%; - animation-delay: 3s; -} - -.anim_line span:nth-child(2) { - left: 0%; - animation-delay: 5s; -} - -.anim_line span:nth-child(3) { - left: 17%; - animation-delay: 1s; -} - -.anim_line span:nth-child(4) { - left: 34%; - animation-delay: 4s; -} - -.anim_line span:nth-child(5) { - left: 51%; - animation-delay: 7s; -} - -.anim_line span:nth-child(6) { - left: 68%; -} - -.anim_line span:nth-child(7) { - left: 85%; - animation-delay: 3s; -} - -.anim_line span:nth-child(8) { - left: 99%; - animation-delay: 2s; -} - -.anim_line span:nth-child(9) { - left: 117%; - animation-delay: 5s; -} - -/* footer .top_footer .anim_line span:first-child { - left: 5%; -} - -footer .top_footer .anim_line span:nth-child(2) { - left: 13%; -} */ - -@keyframes star_down_one { - 0% { - opacity: 0; - top: -250px; - } - - 10% { - opacity: 1; - } - - 90% { - opacity: 1; - } - - 100% { - top: 100%; - opacity: 0; - } -} - - - - -/* --------Object-Moving-Animation-Css-Start----- */ -.moving_animation { - animation: moving_object 6s infinite linear; -} - -.moving_position_animatin { - position: relative; - animation: moving_position_animatin 6s infinite linear; - z-index: -1; -} - -.about_app_section .about_img .screen_img img { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(3) { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(2) { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(1) { - animation-delay: 3s; -} - -@keyframes moving_object { - 0% { - transform: translateY(0); - } - - 50% { - transform: translateY(-30px); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes moving_position_animatin { - 0% { - transform: translateY(0); - } - - 50% { - transform: translateY(-30px); - } - - 100% { - transform: translateY(0); - } -} - - -/* ------------Waves-Animation---------------- */ -.waves-block { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50% , -50%); - width: 150px; - height: 150px; -} - -.waves { - width: 150px; - height: 150px; - background: rgba(255, 255, 255, 0.3); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - border-radius: 100%; - z-index: -1; - -webkit-animation: waves 3s ease-in-out infinite; - animation: waves 3s ease-in-out infinite; -} - -.wave-1 { - -webkit-animation-delay: 0s; - animation-delay: 0s; -} - -.wave-2 { - -webkit-animation-delay: 1s; - animation-delay: 1s; - position: absolute; - top: 0; -} - -.wave-3 { - -webkit-animation-delay: 2s; - animation-delay: 2s; - position: absolute; - top: 0; -} - -@keyframes waves { - 0% { - -webkit-transform: scale(0.2, 0.2); - transform: scale(0.2, 0.2); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - } - - 50% { - opacity: 0.9; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; - } - - 100% { - -webkit-transform: scale(0.9, 0.9); - transform: scale(0.9, 0.9); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - } -} - - - -/*------Header Btn Animation------*/ -@keyframes pulse-blue-small-sm { - 0% { - box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.7); - } - - 100%, - 30% { - box-shadow: 0 0 0 12px transparent - } -} - -@keyframes pulse-blue-medium-sm { - 0% { - box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.4); - } - - 100%, - 30% { - box-shadow: 0 0 0 20px transparent - } -} - - -/*------WhiteHeader Btn Animation------*/ -@keyframes pulse-white-small-sm { - 0% { - box-shadow: 0 0 0 0 rgba(253, 253, 253, 0.7); - } - - 100%, - 30% { - box-shadow: 0 0 0 12px transparent - } -} - -@keyframes pulse-white-medium-sm { - 0% { - box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); - } - - 100%, - 30% { - box-shadow: 0 0 0 20px transparent - } -} - - -/* Inner Page banner shape animation */ -.bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 { - position: absolute; } - -.bred_crumb .banner_shape1 { - top: 200px; - left: 15%; - animation: mymove 10s infinite; -} - -.bred_crumb .banner_shape2 { - top: 100px; - right: 10%; - animation: mymove 5s infinite; -} - -.bred_crumb .banner_shape3 { - top: 350px; - right: 20%; - animation: mymove 3s infinite; -} - - -/* CTA section Shape animation */ - -.query_section .banner_shape1, .banner_shape2, .banner_shape3 { - position: absolute; } - -.query_section .banner_shape1 { - top: 200px; - left: 15%; - animation: mymove 10s infinite; -} - -.query_section .banner_shape2 { - top: 100px; - right: 10%; - animation: mymove 5s infinite; -} - -.query_section .banner_shape3 { - top: 350px; - right: 20%; - animation: mymove 3s infinite; -} - - -@keyframes mymove { - 50% {transform: rotate(180deg);} -} - - - - -/* ----------Other-Page-Css-Start---------- */ - -/* White Header Css Satart */ - -.white_header .navbar-expand-lg .navbar-nav .nav-link ,.white_header .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn { - color: var(--text-white); -} - -.white_header .navbar-expand-lg .navbar-nav .has_dropdown:hover .drp_btn { - color: var(--purple); -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn { - background-color: var(--bg-white); - color: var(--purple); -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn::before { - animation: pulse-white-medium-sm 3.5s infinite -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - animation: pulse-white-small-sm 3.5s infinite -} - -header.fix_style.white_header { - background-color: #664bece0; -} - - -/* About Us Page Css Start */ - -/* Bredcrumb Css Start */ -.bred_crumb { - background-image: url(../images/bread_crumb_bg.png); - /*background: var(--purple);*/ - background-repeat: no-repeat; - background-size: cover; - background-position: center; - min-height: 500px; - width: 100%; - display: flex; - align-items: center; - position: relative; - margin-top: -96px; -} - -.bred_crumb::after { - content: ""; - background-image: url(../images/inner_page_banner_overlay.svg); - position: absolute; - bottom: -1px; - left: 0; - background-size: cover; - background-repeat: no-repeat; - width: 100%; - height: 200px; - background-position: center; -} - -.bred_crumb .bred_text { - text-align: center; - z-index: 1000; - position: relative; -} - -.bred_crumb .bred_text h1 { - color: var(--text-white); - font-size: 55px; - font-weight: 700; -} - -.bred_crumb .bred_text h1 + p { - color: var(--text-white); - margin-top: -5px; -} - -.bred_crumb .bred_text ul { - display: flex; - justify-content: center; - align-items: center; -} - -.bred_crumb .bred_text ul li { - margin: 0 5px; -} - -.bred_crumb .bred_text ul li a, .bred_crumb .bred_text ul li span { - color: var(--text-white); - font-size: 14px; - transition: .4s all; -} - -.bred_crumb .bred_text ul li a:hover { - text-decoration: underline; -} - -.bred_crumb .bred_text .search_bar { - margin-top: 25px; - position: relative; - z-index: 1000; -} - -.bred_crumb .bred_text .search_bar form .form-group { - position: relative; - max-width: 600px; - height: 60px; - margin: 0 auto; -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control { - width: 100%; - height: 100%; - border-radius: 100px; - border: 1px solid var(--bg-purple); - font-size: 16px; - padding-left: 30px; - color: var(--body-text-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control::placeholder { - color: var(--body-text-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control:focus { - outline: none; - box-shadow: none; - border-color: var(--dark-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .btn { - position: absolute; - right: 2px; - top: 2px; - background-color: var(--bg-purple); - width: 56px; - height: 56px; - padding: 0; - border-radius: 100px; - text-align: center; - line-height: 56px; - font-size: 23px; - color: var(--text-white); -} - -.bred_crumb .bred_text .search_bar form .form-group .btn:hover { - background-color: var(--dark-purple); -} - -/* ----About App Soluction Section--- */ - -.app_solution_section .row { - align-items: center; -} - -.app_solution_section .app_text .section_title { - text-align: left; - margin-bottom: 20px; -} - -.app_solution_section .app_text .section_title h2 { - letter-spacing: -1px; -} - -.app_solution_section .app_text p { - padding-right: 40px; -} - -.app_solution_section .app_images { - position: relative; -} - -.app_solution_section .app_images ul { - display: flex; - flex-wrap: wrap; - align-items: flex-start; - justify-content: space-between; -} - -.app_solution_section .app_images ul li { - position: relative; -} - -.app_solution_section .app_images ul li a { - position: relative; -} - -.app_solution_section .app_images ul li a .play_icon { - background-color: rgba(255, 255, 255, 0.1); - width: 96px; - height: 96px; - border-radius: 100px; - text-align: center; - margin: 0 auto; - line-height: 96px; - position: absolute; - display: block; - top: 50%; - left: 50%; - transform: translate(-50% , -50%); - -} - -.app_solution_section .app_images ul li img { - max-width: 100%; -} - -.app_solution_section .app_images li:first-child { - margin-bottom: 30px; - text-align: center; - width: 100%; -} - -.app_solution_section .app_images ul li:nth-child(2) { - left: -5px; - cursor: pointer; -} - -.app_solution_section .app_images ul li:nth-child(3) { - right: -5px; -} - -.app_solution_section .app_images::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 570px; - height: 570px; - border-radius: 100%; - background-color: var(--bg-white); - z-index: -1; -} - - -/* ------Why Section CSS Start------ */ - -.why_we_section { - display: flex; - justify-content: center; -} - -.why_we_section .why_inner { - background-color: var(--bg-white); - border-radius: 30px; - width: 1370px; - margin: 0 15px; - box-shadow: 0 4px 30px #EDE9FE; - padding: 85px 0; -} - -.why_we_section .why_inner .section_title { - margin-bottom: 50px; -} - -.why_we_section .why_inner .why_box .icon { - margin-bottom: 45px; -} - -.why_we_section .why_inner .why_box .icon img { - max-width: 100%; -} - -.why_we_section .why_inner .why_box .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 10px; -} - -.why_we_section .why_inner .why_box .text p { - margin-bottom: 0; -} - - -/* About-Page-Sectino */ - -.about_page_sectino img {max-width: 100%;} - -/* -----------experts_team_sectio---------- */ - -.experts_team_section .experts_box { - position: relative; - text-align: center; - padding: 35px 30px; - border-radius: 12px; - background-color: transparent; - transition: .4s all; -} - -.experts_team_section .experts_box img { - margin-bottom: 30px; - max-width: 100%; -} - -.experts_team_section .experts_box .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - transition: .4s all; -} - -.experts_team_section .experts_box .text span { - color: var(--body-text-purple); -} - -.experts_team_section .experts_box .social_media { - display: flex; - justify-content: center; - align-items: center; - margin-top: 5px; -} - -.experts_team_section .experts_box .social_media a { - display: block; - width: 33px; - height: 33px; - border: 1px solid #CCCCE2; - border-radius: 50px; - text-align: center; - line-height: 31px; - color: #898AAE; - margin: 0 5px; - transition: .4s all; - font-size: 15px; -} - -.experts_team_section .experts_box .social_media a:hover { - border-color: var(--purple); - background-color: var(--bg-purple); - color: var(--text-white); -} - -.experts_team_section .experts_box:hover { - background-color: var(--bg-white); - box-shadow: 0 4px 10px #EDE9FE; -} - -.experts_team_section .experts_box:hover h3 { - color: var(--purple); -} - - -/* ---------Query-Section-Css-Start-------- */ -.query_section { - display: flex; - justify-content: center; -} - -.query_inner { - width: 1370px; - margin: 0 15px; - /*background-image: url(../images/query_bg.png);*/ - background: var(--purple); - background-size: cover; - background-repeat: no-repeat; - border-radius: 30px; - min-height: 420px; - text-align: center; - display: flex; - justify-content: center; - align-items: center; -} - -.query_inner .section_title h2 , -.query_inner .section_title p { - color: #fff; -} - -.query_inner .section_title { - margin-bottom: 40px; -} - -.query_inner .white_btn { - font-size: 25px; - font-weight: 700; -} - -.query_inner .white_btn:hover { - border-color: #fff; -} - -.about_trust_section { - margin-bottom: 40px; -} - - -/* Blog List Css Start */ -.blog_list_story { - margin-bottom: 50px; -} - -.blog_list_main { - position: relative; -} - -.blog_list_main > .container > .row { - align-items: center; -} - -.blog_list_main .blog_img { - position: relative; -} - -.blog_list_main .blog_img img { - max-width: 100%; - border-radius: 12px; -} - -.blog_list_main .blog_img span { - position: absolute; - left: 15px; - top: 15px; - font-size: 14px; - color: var(--text-white); -} - -.blog_list_main .blog_text .section_title { - text-align: left; -} - -.blog_list_main .blog_text .choice_badge { - font-size: 12px; - background-color: #F8D979; - display: inline-block; - padding: 1px 10px; - border-radius: 4px; - color: var(--dark-purple); - font-weight: 700; - margin-bottom: 10px; -} - -.blog_list_main .blog_text a { - color: var(--purple); - margin-top: 25px; - display: block; - font-size: 14px; - margin-bottom: 10px; - font-weight: 600; -} - -.blog_list_main .blog_text a:hover { - text-decoration: underline; -} - -.blog_list_story.row_am { - padding-top: 30px; -} - -.blog_list_story .story_box { - margin-bottom: 40px; - text-align: left; -} - -/* Pagination Css Start */ -.pagination_block ul {display: flex; - justify-content: center; - align-items: center; - margin-top: 10px; -} - -.pagination_block ul li:not(:first-child , :last-child) a {margin: 0 5px; - transition: .4s all; - display: block; - width: 35px; - height: 35px; - background-color: transparent; - border-radius: 50px; - text-align: center; - line-height: 35px; -} - -.pagination_block ul li:first-child { - margin-right: 20px; -} - -.pagination_block ul li:last-child { - margin-left: 20px; -} - -.pagination_block ul li:not(:first-child , :last-child) a:hover , .pagination_block ul li:not(:first-child , :last-child) a.active { - background-color: var(--bg-purple); - color: var(--text-white); -} - -.pagination_block ul li:first-child a:hover { - color: var(--purple); -} - -.pagination_block ul li:last-child a:hover { - color: var(--purple); -} - -/* Blog Detail Css Start */ -.blog_detail_section { - margin-bottom: 40px; -} - -.blog_detail_bredcrumb.bred_crumb .bred_text { - margin-top: -30px; -} - -.blog_detail_section .blog_inner_pannel { - background-color: #FFFFFF; - border-radius: 30px; - padding: 45px 60px; - margin-top: -120px; - position: relative; - box-shadow: 0 8px 30px #c0bad76b; -} - -.blog_detail_section .blog_inner_pannel .review { - display: flex; - justify-content: center; - margin-bottom: 15px; -} - -.blog_detail_section .blog_inner_pannel .review span { - line-height: 1; -} - -.blog_detail_section .blog_inner_pannel .review span:first-child { - color: var(--purple); - display: inline-block; - font-weight: 700; -} - -.blog_detail_section .blog_inner_pannel .review span:last-child { - color: var(--dark-purple); - display: inline-block; - margin-left: 15px; - padding-left: 15px; - border-left: 1px solid var(--dark-purple); -} - -.blog_detail_section .blog_inner_pannel .section_title { - margin-bottom: 40px; -} - -.blog_detail_section .blog_inner_pannel .section_title h2 { - margin-bottom: 0; -} - -.blog_detail_section .blog_inner_pannel img { - max-width: 100%; -} - -.blog_detail_section .blog_inner_pannel .main_img { - margin-bottom: 30px; -} - -.blog_detail_section .blog_inner_pannel .info h3 { - font-weight: 700; - color: var(--dark-purple); - margin-top: 30px; - font-size: 25px; - margin-bottom: 15px; -} - -.blog_detail_section .blog_inner_pannel .info ul { - padding-left: 50px; - padding-top: 10px; - margin-bottom: 30px; -} - -.blog_detail_section .blog_inner_pannel .info ul li p { - position: relative; - padding-left: 25px; - margin-bottom: 0; -} - -.blog_detail_section .blog_inner_pannel .info ul li p .icon { - position: absolute; - left: 0; - color: var(--purple); -} - -.blog_detail_section .blog_inner_pannel .two_img { - margin-bottom: 70px; -} - -.blog_detail_section .blog_inner_pannel .quote_block { - background-color: #F6F4FE; - border-radius: 12px; - padding: 55px 35px 35px 60px; - position: relative; - margin-top: 50px; - margin-bottom: 35px; -} - -.blog_detail_section .blog_inner_pannel .quote_block h2 { - font-size: 25px; - line-height: 37px; -} - -.blog_detail_section .blog_inner_pannel .quote_block p { - margin-bottom: 0; - margin-top: 15px; -} - -.blog_detail_section .blog_inner_pannel .quote_block .name { - color: var(--purple); - font-weight: 700; -} - -.blog_detail_section .blog_inner_pannel .quote_block .q_icon { - position: absolute; - top: -20px; - width: 63px; - height: 63px; - background-color: var(--bg-white); - border-radius: 100px; - display: flex; - justify-content: center; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .quote_block .q_icon img { - width: 35px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore { - display: flex; - justify-content: space-between; - align-items: center; - padding: 40px 0; - border-top: 1px solid #D6D3E3; - border-bottom: 1px solid #D6D3E3; - margin: 35px 0; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info { - display: flex; - justify-content: space-between; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text { - margin-left: 20px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 5px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text span { - font-size: 14px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul { - display: flex; -} - -/* Social Media link list */ -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a { - display: block; - width: 37px; - height: 37px; - text-align: center; - line-height: 37px; - font-size: 15px; - border: 1px solid #CCC9D7; - border-radius: 50px; - margin-right: 10px; - transition: .4s all; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li:last-child a { - margin-right: 0; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a:hover { - background-color: var(--bg-purple); - color: var(--text-white); -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul { - display: flex; - justify-content: center; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul .tags p { - margin-bottom: 0; - color: var(--dark-purple); - font-weight: 500; - margin-right: 5px; -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul li span { - color: var(--purple); - font-weight: 500; -} - - -/* comment section Css Start */ -.comment_section ul { - margin-top: 30px; -} - -.comment_section ul li { - display: flex; - align-items: center; - padding: 30px 0; - border-top: 1px solid #D6D3E3; -} - -.comment_section ul li:last-child { - padding-bottom: 0; -} - -.comment_section ul li.replay_comment { - margin-left: 110px; -} - -.comment_section ul li .authore_info { - display: flex; - align-items: center; - width: 260px; -} - -.comment_section ul li .authore_info .avtar { - width: 88px; - margin-right: 20px; -} - -.comment_section ul li .authore_info .text { - width: calc(100% - 108px); -} - -.comment_section ul li .authore_info .text h4 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); -} - -.comment_section ul li .authore_info .text span { - font-size: 14px; -} - -.comment_section ul li .comment { - width: calc(100% - 310px); - margin-left: 50px; -} - -.comment_section ul li .comment p { - margin-bottom: 0; -} - - - -/* comment-form-section */ - -.comment_form_section form { - margin-top: 30px; -} - -.comment_form_section form .form-group .form-control { - border-radius: 12px; - height: 60px; - box-shadow: 0 3px 6px #EDE9FE; - border: transparent; - margin-bottom: 30px; - color: var(--body-text-purple); - padding: 15px; -} - -.comment_form_section form .form-group .form-control::placeholder { - color: var(--body-text-purple); -} - -.comment_form_section form .form-group textarea.form-control { - height: 140px; - padding-top: 15px; - resize: none; -} - - -/* Sign Up Css Start */ -.full_bg { - /*background-image: url(../images/form_bg.png);*/ - background-size: cover; - background: #E62E04; - width: 100%; - height: 100vh; - overflow-y: auto; - padding-bottom: 50px; -} - -.signup_section { - position: relative; -} - -.signup_section .back_btn { - position: absolute; - left: 0; - top: 92px; - color: #fff; - font-weight: 500; -} - -.signup_section .top_part { - text-align: center; - padding-top: 30px; - padding-bottom: 15px; -} - -.signup_form { - width: 570px; - margin: 0 auto; - padding: 40px 0; - border-radius: 12px; - box-shadow: 0 4px 10px #00000054; - background-color: var(--bg-white); -} - -.signup_form form { - padding: 0 60px; -} - -.signup_form .section_title { - padding: 0 15px; -} - -.signup_form .section_title h2 { - font-weight: 600; -} - -.signup_form form .form-group { - margin-bottom: 20px; -} - -.signup_form form .form-group .form-control { - height: 60px; - padding: 5px 20px; - color: var(--body-text-purple); - border: 2px solid #E1DBF4; - border-radius: 12px; - font-weight: 500; -} - -.signup_form form .form-group .form-control:focus { - box-shadow: none; - border-color: var(--purple); - color: var(--purple); -} - -.signup_form form .form-group .puprple_btn { - min-width: 240px; - display: block; - margin: 40px auto; - margin-bottom: 30px; - font-weight: 600; -} - -.signup_form .or_block { - display: block; - text-align: center; - border-bottom: 1px solid #E3E1ED; -} - -.signup_form .or_block span { - position: relative; - top: 14px; - padding: 0 5px; - background-color: var(--bg-white); - color: #8081AD; -} - -.signup_form .or_option { - text-align: center; -} - -.signup_form .or_option > p { - color: #8081AD; - margin-top: 30px; -} - -.signup_form .or_option .google_btn { - min-width: 330px; - border: 2px solid #E1DBF4; - text-align: center; - color: var(--body-text-purple); - padding: 16px; - border-radius: 100px; - transition: .4s all; -} - -.signup_form .or_option .google_btn:hover { - border-color: var(--light-purple); -} - -.signup_form .or_option .google_btn img { - margin-right: 20px; -} - -.signup_form .or_option p a { - color: #003b73; - text-decoration: underline; - transition: .4s all; -} - -.signup_form .or_option p a:hover { - color: #E62E04; -} - - -/* Review List Section Css Start */ - -.review_list_section .review_box { - padding: 40px 30px; - background-color: #fff; - border-radius: 12px; - box-shadow: 0 4px 10px #EDE9FE; - margin: 20px 0; -} - -.review_list_section .review_box .rating ul { - display: flex; -} - -.review_list_section .review_box .rating ul li span { - color: #FC9400; - font-size: 18px; -} - -.review_list_section .review_box h3 { - font-size: 20px; - color: var(--purple); - margin: 10px 0; -} - -.review_list_section .review_box .reviewer { - display: flex; - align-items: center; - margin-top: 35px; -} - -.review_list_section .review_box .reviewer .avtar { - width: 80px; -} - -.review_list_section .review_box .reviewer .text { - margin-left: 20px; - width: calc(100% - 100px); -} - -.review_list_section .review_box .reviewer .text h3 { - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 0; -} - -/* review-freeapp */ - -.review_freeapp { - margin: 60px 0; -} - -.review_freeapp .free_app_inner { - background: url(../images/free_review_bg.png); - background-size: cover; - background-position: 90%; -} - -/* Contact Page Css Start */ - -.contact_page_section .contact_inner { - display: flex; - justify-content: space-between; - align-items: center; - position: relative; - margin-top: -150px; -} - -.contact_page_section .contact_inner .section_title h2 { - font-weight: 600; -} - -.contact_page_section .contact_inner .contact_form { - width: 570px; - padding: 50px 60px; - border-radius: 22px; - background-color: #fff; - box-shadow: 0 4px 10px #EDE9FE; -} - -.contact_page_section .contact_inner .contact_form h2 { - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_form form { - margin-top: 30px; -} - -.contact_page_section .contact_inner .contact_form form .form-group { - margin-bottom: 20px; -} - -.contact_page_section .contact_inner .contact_form form .form-group .form-control { - height: 60px; - padding: 5px 20px; - color: var(--body-text-purple); - border: 2px solid #E1DBF4; - border-radius: 12px; - font-weight: 500; -} - -.contact_page_section .contact_inner .contact_form form .form-group .form-control:focus { - box-shadow: none; - border-color: var(--purple); - color: var(--purple); -} - -.contact_page_section .contact_inner .contact_form form .form-group textarea.form-control { - height: 140px; - padding-top: 15px; -} - -.contact_page_section .contact_inner .contact_form form .term_check { - display: flex; - align-items: center; -} - -.contact_page_section .contact_inner .contact_form form .term_check input { - width: 17px; - height: 17px; - accent-color: var(--purple); -} - -.contact_page_section .contact_inner .contact_form form .term_check label { - font-size: 13px; - margin-bottom: 0; - margin-left: 7px; -} - -.contact_page_section .contact_inner .contact_form form .form-group button { - width: 240px; - margin: 0 auto; - display: block; - margin-top: 10px; - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_info { - width: 480px; -} - -.contact_page_section .contact_inner .contact_info .section_title { - text-align: left; - margin-top: 15px; -} - -.contact_page_section .contact_inner .contact_info .section_title p a { - color: var(--purple); - text-decoration: underline; -} - -.contact_page_section .contact_inner .contact_info .btn { - width: 180px; - margin: 10px 0 50px 0; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li { - display: flex; - align-items: center; - margin-bottom: 30px; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li:last-child { - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .img { - width: 65px; - margin-right: 20px; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text { - width: calc(100% - 85px); -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text span { - display: block; - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text p , -.contact_page_section .contact_inner .contact_info .contact_info_list li .text a {margin: 0;} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text a:hover { - color: var(--dark-purple); -} - -.map_section { - margin: 50px 0; -} - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/desktop.ini b/desarrollo/diseno/login-clientes/fonts/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/icofont.eot b/desarrollo/diseno/login-clientes/fonts/icofont.eot deleted file mode 100644 index 56e15db4..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/icofont.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/icofont.svg b/desarrollo/diseno/login-clientes/fonts/icofont.svg deleted file mode 100644 index 8535ec67..00000000 --- a/desarrollo/diseno/login-clientes/fonts/icofont.svg +++ /dev/null @@ -1,2105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/fonts/icofont.ttf b/desarrollo/diseno/login-clientes/fonts/icofont.ttf deleted file mode 100644 index ba6d2356..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/icofont.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/icofont.woff b/desarrollo/diseno/login-clientes/fonts/icofont.woff deleted file mode 100644 index 48002ce2..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/icofont.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/icofont.woff2 b/desarrollo/diseno/login-clientes/fonts/icofont.woff2 deleted file mode 100644 index 75f03d7b..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/icofont.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.eot b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.eot deleted file mode 100644 index bbfdbf30..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.svg b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.svg deleted file mode 100644 index ce805153..00000000 --- a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.svg +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.ttf b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.ttf deleted file mode 100644 index dafd4e09..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.woff b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.woff deleted file mode 100644 index 482673b3..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.woff2 b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.woff2 deleted file mode 100644 index 962b734e..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-300.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.eot b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.eot deleted file mode 100644 index a41067bf..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.svg b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.svg deleted file mode 100644 index a00b27cb..00000000 --- a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.ttf b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.ttf deleted file mode 100644 index 81ef3c85..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.woff b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.woff deleted file mode 100644 index f0334422..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.woff2 b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.woff2 deleted file mode 100644 index c6603368..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.eot b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.eot deleted file mode 100644 index c53b28fc..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.svg b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.svg deleted file mode 100644 index fac9b18f..00000000 --- a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.svg +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.ttf b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.ttf deleted file mode 100644 index 20854052..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.woff b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.woff deleted file mode 100644 index ed570119..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.woff2 b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.woff2 deleted file mode 100644 index b995ebb6..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-500italic.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.eot b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.eot deleted file mode 100644 index 7bbdbbab..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.svg b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.svg deleted file mode 100644 index 63d4ce3d..00000000 --- a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.ttf b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.ttf deleted file mode 100644 index 5cfa4913..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.woff b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.woff deleted file mode 100644 index 2370956d..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.woff2 b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.woff2 deleted file mode 100644 index 921e962b..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-600.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.eot b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.eot deleted file mode 100644 index 09db74db..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.svg b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.svg deleted file mode 100644 index 9056a3d5..00000000 --- a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.ttf b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.ttf deleted file mode 100644 index 2cc94c2a..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.woff b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.woff deleted file mode 100644 index b8b8ce59..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.woff2 b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.woff2 deleted file mode 100644 index bf022fc7..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-700.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.eot b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.eot deleted file mode 100644 index 4425744a..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.svg b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.svg deleted file mode 100644 index 2ac71d9b..00000000 --- a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.svg +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.ttf b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.ttf deleted file mode 100644 index 7a65fc54..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.woff b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.woff deleted file mode 100644 index 30728f54..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.woff2 b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.woff2 deleted file mode 100644 index f107b369..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-800.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.eot b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.eot deleted file mode 100644 index cde85654..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.svg b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.svg deleted file mode 100644 index 78aacea8..00000000 --- a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.svg +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.ttf b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.ttf deleted file mode 100644 index e9f8ce6d..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.woff b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.woff deleted file mode 100644 index 772d71ca..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.woff2 b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.woff2 deleted file mode 100644 index 11123368..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-italic.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.eot b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.eot deleted file mode 100644 index e23dd26e..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.eot and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.svg b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.svg deleted file mode 100644 index bc983e49..00000000 --- a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.ttf b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.ttf deleted file mode 100644 index dfb38c42..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.woff b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.woff deleted file mode 100644 index 2a04ae32..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.woff and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.woff2 b/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.woff2 deleted file mode 100644 index b69e0091..00000000 Binary files a/desarrollo/diseno/login-clientes/fonts/poppins-v20-latin-regular.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/about-frame.png b/desarrollo/diseno/login-clientes/images/about-frame.png deleted file mode 100644 index eb7e4257..00000000 Binary files a/desarrollo/diseno/login-clientes/images/about-frame.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/about-screen.png b/desarrollo/diseno/login-clientes/images/about-screen.png deleted file mode 100644 index 8d3f57dd..00000000 Binary files a/desarrollo/diseno/login-clientes/images/about-screen.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/about_main.png b/desarrollo/diseno/login-clientes/images/about_main.png deleted file mode 100644 index fae0ef8d..00000000 Binary files a/desarrollo/diseno/login-clientes/images/about_main.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/abt_01.png b/desarrollo/diseno/login-clientes/images/abt_01.png deleted file mode 100644 index 334ffcaf..00000000 Binary files a/desarrollo/diseno/login-clientes/images/abt_01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/abt_02.png b/desarrollo/diseno/login-clientes/images/abt_02.png deleted file mode 100644 index b3cc79fe..00000000 Binary files a/desarrollo/diseno/login-clientes/images/abt_02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/abt_03.png b/desarrollo/diseno/login-clientes/images/abt_03.png deleted file mode 100644 index 546e9d21..00000000 Binary files a/desarrollo/diseno/login-clientes/images/abt_03.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/abt_functional.png b/desarrollo/diseno/login-clientes/images/abt_functional.png deleted file mode 100644 index 108b8c5d..00000000 Binary files a/desarrollo/diseno/login-clientes/images/abt_functional.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/abt_support.png b/desarrollo/diseno/login-clientes/images/abt_support.png deleted file mode 100644 index 0e7515ac..00000000 Binary files a/desarrollo/diseno/login-clientes/images/abt_support.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/anim_line.png b/desarrollo/diseno/login-clientes/images/anim_line.png deleted file mode 100644 index ced15363..00000000 Binary files a/desarrollo/diseno/login-clientes/images/anim_line.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/appstore_blue.png b/desarrollo/diseno/login-clientes/images/appstore_blue.png deleted file mode 100644 index 46af9d05..00000000 Binary files a/desarrollo/diseno/login-clientes/images/appstore_blue.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/appstore_white.png b/desarrollo/diseno/login-clientes/images/appstore_white.png deleted file mode 100644 index 3fbe733a..00000000 Binary files a/desarrollo/diseno/login-clientes/images/appstore_white.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/avtar_testimonial.png b/desarrollo/diseno/login-clientes/images/avtar_testimonial.png deleted file mode 100644 index 9388ea8f..00000000 Binary files a/desarrollo/diseno/login-clientes/images/avtar_testimonial.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/banner-shape.svg b/desarrollo/diseno/login-clientes/images/banner-shape.svg deleted file mode 100644 index efb2df7b..00000000 --- a/desarrollo/diseno/login-clientes/images/banner-shape.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/images/banner-shape1.png b/desarrollo/diseno/login-clientes/images/banner-shape1.png deleted file mode 100644 index a16e9820..00000000 Binary files a/desarrollo/diseno/login-clientes/images/banner-shape1.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/banner-shape2.png b/desarrollo/diseno/login-clientes/images/banner-shape2.png deleted file mode 100644 index 3e9ea7a9..00000000 Binary files a/desarrollo/diseno/login-clientes/images/banner-shape2.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/banner-shape3.png b/desarrollo/diseno/login-clientes/images/banner-shape3.png deleted file mode 100644 index cfdadbe2..00000000 Binary files a/desarrollo/diseno/login-clientes/images/banner-shape3.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/blod-detail.png b/desarrollo/diseno/login-clientes/images/blod-detail.png deleted file mode 100644 index 4e83ca2d..00000000 Binary files a/desarrollo/diseno/login-clientes/images/blod-detail.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/blog_d01.png b/desarrollo/diseno/login-clientes/images/blog_d01.png deleted file mode 100644 index 6b9537df..00000000 Binary files a/desarrollo/diseno/login-clientes/images/blog_d01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/blog_d02.png b/desarrollo/diseno/login-clientes/images/blog_d02.png deleted file mode 100644 index 9e610cc5..00000000 Binary files a/desarrollo/diseno/login-clientes/images/blog_d02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/blog_d03.png b/desarrollo/diseno/login-clientes/images/blog_d03.png deleted file mode 100644 index ecd404ae..00000000 Binary files a/desarrollo/diseno/login-clientes/images/blog_d03.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/blog_detail_main.png b/desarrollo/diseno/login-clientes/images/blog_detail_main.png deleted file mode 100644 index e7d6de0b..00000000 Binary files a/desarrollo/diseno/login-clientes/images/blog_detail_main.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/blog_sub_01.png b/desarrollo/diseno/login-clientes/images/blog_sub_01.png deleted file mode 100644 index ba52af5b..00000000 Binary files a/desarrollo/diseno/login-clientes/images/blog_sub_01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/blog_sub_02.png b/desarrollo/diseno/login-clientes/images/blog_sub_02.png deleted file mode 100644 index f9e814f7..00000000 Binary files a/desarrollo/diseno/login-clientes/images/blog_sub_02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/bread_crumb_bg.png b/desarrollo/diseno/login-clientes/images/bread_crumb_bg.png deleted file mode 100644 index 9a59ecd1..00000000 Binary files a/desarrollo/diseno/login-clientes/images/bread_crumb_bg.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/bredcrumb_overlay.png b/desarrollo/diseno/login-clientes/images/bredcrumb_overlay.png deleted file mode 100644 index 93bb57c8..00000000 Binary files a/desarrollo/diseno/login-clientes/images/bredcrumb_overlay.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/call_icon.png b/desarrollo/diseno/login-clientes/images/call_icon.png deleted file mode 100644 index 30066959..00000000 Binary files a/desarrollo/diseno/login-clientes/images/call_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/communication.png b/desarrollo/diseno/login-clientes/images/communication.png deleted file mode 100644 index 9140294d..00000000 Binary files a/desarrollo/diseno/login-clientes/images/communication.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/contact_message_icon.png b/desarrollo/diseno/login-clientes/images/contact_message_icon.png deleted file mode 100644 index 06f3d518..00000000 Binary files a/desarrollo/diseno/login-clientes/images/contact_message_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/countries.png b/desarrollo/diseno/login-clientes/images/countries.png deleted file mode 100644 index 54c64bdc..00000000 Binary files a/desarrollo/diseno/login-clientes/images/countries.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/create_account.jpg b/desarrollo/diseno/login-clientes/images/create_account.jpg deleted file mode 100644 index 1d49331d..00000000 Binary files a/desarrollo/diseno/login-clientes/images/create_account.jpg and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/desktop.ini b/desarrollo/diseno/login-clientes/images/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/login-clientes/images/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/download-screen01.png b/desarrollo/diseno/login-clientes/images/download-screen01.png deleted file mode 100644 index a09a9876..00000000 Binary files a/desarrollo/diseno/login-clientes/images/download-screen01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/download-screen02.png b/desarrollo/diseno/login-clientes/images/download-screen02.png deleted file mode 100644 index c0a4ec76..00000000 Binary files a/desarrollo/diseno/login-clientes/images/download-screen02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/download.png b/desarrollo/diseno/login-clientes/images/download.png deleted file mode 100644 index 1d9cd9de..00000000 Binary files a/desarrollo/diseno/login-clientes/images/download.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/download_app.jpg b/desarrollo/diseno/login-clientes/images/download_app.jpg deleted file mode 100644 index 449850f7..00000000 Binary files a/desarrollo/diseno/login-clientes/images/download_app.jpg and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/enjoy_app.jpg b/desarrollo/diseno/login-clientes/images/enjoy_app.jpg deleted file mode 100644 index f9ff64e5..00000000 Binary files a/desarrollo/diseno/login-clientes/images/enjoy_app.jpg and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/envato.png b/desarrollo/diseno/login-clientes/images/envato.png deleted file mode 100644 index 5f41512c..00000000 Binary files a/desarrollo/diseno/login-clientes/images/envato.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/experts_01.png b/desarrollo/diseno/login-clientes/images/experts_01.png deleted file mode 100644 index 0d76e124..00000000 Binary files a/desarrollo/diseno/login-clientes/images/experts_01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/experts_02.png b/desarrollo/diseno/login-clientes/images/experts_02.png deleted file mode 100644 index 197875a5..00000000 Binary files a/desarrollo/diseno/login-clientes/images/experts_02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/experts_03.png b/desarrollo/diseno/login-clientes/images/experts_03.png deleted file mode 100644 index b719e207..00000000 Binary files a/desarrollo/diseno/login-clientes/images/experts_03.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/experts_04.png b/desarrollo/diseno/login-clientes/images/experts_04.png deleted file mode 100644 index e813c2a5..00000000 Binary files a/desarrollo/diseno/login-clientes/images/experts_04.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/favicon.ico b/desarrollo/diseno/login-clientes/images/favicon.ico deleted file mode 100644 index e69de29b..00000000 diff --git a/desarrollo/diseno/login-clientes/images/favicon.png b/desarrollo/diseno/login-clientes/images/favicon.png deleted file mode 100644 index 0799fa75..00000000 Binary files a/desarrollo/diseno/login-clientes/images/favicon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/features_frame.png b/desarrollo/diseno/login-clientes/images/features_frame.png deleted file mode 100644 index c9735b7a..00000000 Binary files a/desarrollo/diseno/login-clientes/images/features_frame.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/featurescreen.png b/desarrollo/diseno/login-clientes/images/featurescreen.png deleted file mode 100644 index f7b2e2fd..00000000 Binary files a/desarrollo/diseno/login-clientes/images/featurescreen.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/followers.png b/desarrollo/diseno/login-clientes/images/followers.png deleted file mode 100644 index 51587199..00000000 Binary files a/desarrollo/diseno/login-clientes/images/followers.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/footer_logo.png b/desarrollo/diseno/login-clientes/images/footer_logo.png deleted file mode 100644 index 0578f44f..00000000 Binary files a/desarrollo/diseno/login-clientes/images/footer_logo.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/functional.png b/desarrollo/diseno/login-clientes/images/functional.png deleted file mode 100644 index e91f9164..00000000 Binary files a/desarrollo/diseno/login-clientes/images/functional.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/go_top.png b/desarrollo/diseno/login-clientes/images/go_top.png deleted file mode 100644 index 3186901b..00000000 Binary files a/desarrollo/diseno/login-clientes/images/go_top.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/go_top2.png b/desarrollo/diseno/login-clientes/images/go_top2.png deleted file mode 100644 index 258951ef..00000000 Binary files a/desarrollo/diseno/login-clientes/images/go_top2.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/google.png b/desarrollo/diseno/login-clientes/images/google.png deleted file mode 100644 index aec284eb..00000000 Binary files a/desarrollo/diseno/login-clientes/images/google.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/googleplay_blue.png b/desarrollo/diseno/login-clientes/images/googleplay_blue.png deleted file mode 100644 index 57f7a2b4..00000000 Binary files a/desarrollo/diseno/login-clientes/images/googleplay_blue.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/googleplay_white.png b/desarrollo/diseno/login-clientes/images/googleplay_white.png deleted file mode 100644 index fc71ad3f..00000000 Binary files a/desarrollo/diseno/login-clientes/images/googleplay_white.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/icon_bg.png b/desarrollo/diseno/login-clientes/images/icon_bg.png deleted file mode 100644 index 50f18dca..00000000 Binary files a/desarrollo/diseno/login-clientes/images/icon_bg.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/inner_page_banner_overlay.svg b/desarrollo/diseno/login-clientes/images/inner_page_banner_overlay.svg deleted file mode 100644 index b6ec148f..00000000 --- a/desarrollo/diseno/login-clientes/images/inner_page_banner_overlay.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - diff --git a/desarrollo/diseno/login-clientes/images/lapieza_azul_blanco.png b/desarrollo/diseno/login-clientes/images/lapieza_azul_blanco.png deleted file mode 100644 index 4e93e0f9..00000000 Binary files a/desarrollo/diseno/login-clientes/images/lapieza_azul_blanco.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/live-chat.png b/desarrollo/diseno/login-clientes/images/live-chat.png deleted file mode 100644 index dc96945d..00000000 Binary files a/desarrollo/diseno/login-clientes/images/live-chat.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/location_icon.png b/desarrollo/diseno/login-clientes/images/location_icon.png deleted file mode 100644 index 36a9587b..00000000 Binary files a/desarrollo/diseno/login-clientes/images/location_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/logo-black.png b/desarrollo/diseno/login-clientes/images/logo-black.png deleted file mode 100644 index e73030c9..00000000 Binary files a/desarrollo/diseno/login-clientes/images/logo-black.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/logo.jpg b/desarrollo/diseno/login-clientes/images/logo.jpg deleted file mode 100644 index 60fd6dcf..00000000 Binary files a/desarrollo/diseno/login-clientes/images/logo.jpg and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/logo.png b/desarrollo/diseno/login-clientes/images/logo.png deleted file mode 100644 index 4ad8758c..00000000 Binary files a/desarrollo/diseno/login-clientes/images/logo.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/logo.svg b/desarrollo/diseno/login-clientes/images/logo.svg deleted file mode 100644 index 37f83438..00000000 --- a/desarrollo/diseno/login-clientes/images/logo.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-clientes/images/logo_blanco.png b/desarrollo/diseno/login-clientes/images/logo_blanco.png deleted file mode 100644 index 877fa92a..00000000 Binary files a/desarrollo/diseno/login-clientes/images/logo_blanco.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/mail_icon.png b/desarrollo/diseno/login-clientes/images/mail_icon.png deleted file mode 100644 index 77d49083..00000000 Binary files a/desarrollo/diseno/login-clientes/images/mail_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/message_icon.png b/desarrollo/diseno/login-clientes/images/message_icon.png deleted file mode 100644 index 4ffeb3a7..00000000 Binary files a/desarrollo/diseno/login-clientes/images/message_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/mobile_frame.png b/desarrollo/diseno/login-clientes/images/mobile_frame.png deleted file mode 100644 index f7f5249e..00000000 Binary files a/desarrollo/diseno/login-clientes/images/mobile_frame.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/mobile_frame1.png b/desarrollo/diseno/login-clientes/images/mobile_frame1.png deleted file mode 100644 index 1c5864f7..00000000 Binary files a/desarrollo/diseno/login-clientes/images/mobile_frame1.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/mobile_frame_svg.svg b/desarrollo/diseno/login-clientes/images/mobile_frame_svg.svg deleted file mode 100644 index e05c0a2c..00000000 --- a/desarrollo/diseno/login-clientes/images/mobile_frame_svg.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/desarrollo/diseno/login-clientes/images/modern01.png b/desarrollo/diseno/login-clientes/images/modern01.png deleted file mode 100644 index c9627675..00000000 Binary files a/desarrollo/diseno/login-clientes/images/modern01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/modern02.png b/desarrollo/diseno/login-clientes/images/modern02.png deleted file mode 100644 index 0ac01974..00000000 Binary files a/desarrollo/diseno/login-clientes/images/modern02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/modern03.png b/desarrollo/diseno/login-clientes/images/modern03.png deleted file mode 100644 index a962b88e..00000000 Binary files a/desarrollo/diseno/login-clientes/images/modern03.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/paypal.png b/desarrollo/diseno/login-clientes/images/paypal.png deleted file mode 100644 index bc9ec711..00000000 Binary files a/desarrollo/diseno/login-clientes/images/paypal.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/play_black.png b/desarrollo/diseno/login-clientes/images/play_black.png deleted file mode 100644 index 1cd3c042..00000000 Binary files a/desarrollo/diseno/login-clientes/images/play_black.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/play_icon.png b/desarrollo/diseno/login-clientes/images/play_icon.png deleted file mode 100644 index feb549d4..00000000 Binary files a/desarrollo/diseno/login-clientes/images/play_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/play_icon1.png b/desarrollo/diseno/login-clientes/images/play_icon1.png deleted file mode 100644 index 028255ea..00000000 Binary files a/desarrollo/diseno/login-clientes/images/play_icon1.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/play_icon22.png b/desarrollo/diseno/login-clientes/images/play_icon22.png deleted file mode 100644 index 377debfd..00000000 Binary files a/desarrollo/diseno/login-clientes/images/play_icon22.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/premium.png b/desarrollo/diseno/login-clientes/images/premium.png deleted file mode 100644 index 69e77891..00000000 Binary files a/desarrollo/diseno/login-clientes/images/premium.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/query_bg.png b/desarrollo/diseno/login-clientes/images/query_bg.png deleted file mode 100644 index 80013e56..00000000 Binary files a/desarrollo/diseno/login-clientes/images/query_bg.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/quote_icon.png b/desarrollo/diseno/login-clientes/images/quote_icon.png deleted file mode 100644 index 3a201787..00000000 Binary files a/desarrollo/diseno/login-clientes/images/quote_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_01.png b/desarrollo/diseno/login-clientes/images/review_01.png deleted file mode 100644 index fa8a8094..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_02.png b/desarrollo/diseno/login-clientes/images/review_02.png deleted file mode 100644 index 2334011c..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_03.png b/desarrollo/diseno/login-clientes/images/review_03.png deleted file mode 100644 index 31532a26..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_03.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_04.png b/desarrollo/diseno/login-clientes/images/review_04.png deleted file mode 100644 index 3d22d56b..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_04.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_05.png b/desarrollo/diseno/login-clientes/images/review_05.png deleted file mode 100644 index a8ab3056..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_05.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_06.png b/desarrollo/diseno/login-clientes/images/review_06.png deleted file mode 100644 index e7e2ef1c..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_06.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_07.png b/desarrollo/diseno/login-clientes/images/review_07.png deleted file mode 100644 index 1a69a370..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_07.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_08.png b/desarrollo/diseno/login-clientes/images/review_08.png deleted file mode 100644 index bbbb39f1..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_08.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/review_09.png b/desarrollo/diseno/login-clientes/images/review_09.png deleted file mode 100644 index ccacf883..00000000 Binary files a/desarrollo/diseno/login-clientes/images/review_09.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/reviews.png b/desarrollo/diseno/login-clientes/images/reviews.png deleted file mode 100644 index 4f7867a9..00000000 Binary files a/desarrollo/diseno/login-clientes/images/reviews.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/right_icon.png b/desarrollo/diseno/login-clientes/images/right_icon.png deleted file mode 100644 index 704fee02..00000000 Binary files a/desarrollo/diseno/login-clientes/images/right_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/screen-1.png b/desarrollo/diseno/login-clientes/images/screen-1.png deleted file mode 100644 index 539f84f0..00000000 Binary files a/desarrollo/diseno/login-clientes/images/screen-1.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/screen-2.png b/desarrollo/diseno/login-clientes/images/screen-2.png deleted file mode 100644 index 38d04bd5..00000000 Binary files a/desarrollo/diseno/login-clientes/images/screen-2.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/screen-3.png b/desarrollo/diseno/login-clientes/images/screen-3.png deleted file mode 100644 index 2bf96891..00000000 Binary files a/desarrollo/diseno/login-clientes/images/screen-3.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/screen-4.png b/desarrollo/diseno/login-clientes/images/screen-4.png deleted file mode 100644 index 90c8af2b..00000000 Binary files a/desarrollo/diseno/login-clientes/images/screen-4.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/screen-5.png b/desarrollo/diseno/login-clientes/images/screen-5.png deleted file mode 100644 index ee8e8543..00000000 Binary files a/desarrollo/diseno/login-clientes/images/screen-5.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/screen.png b/desarrollo/diseno/login-clientes/images/screen.png deleted file mode 100644 index 9f593329..00000000 Binary files a/desarrollo/diseno/login-clientes/images/screen.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/screen1.png b/desarrollo/diseno/login-clientes/images/screen1.png deleted file mode 100644 index 166f4920..00000000 Binary files a/desarrollo/diseno/login-clientes/images/screen1.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/secure.png b/desarrollo/diseno/login-clientes/images/secure.png deleted file mode 100644 index e33eec87..00000000 Binary files a/desarrollo/diseno/login-clientes/images/secure.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/secure_data.png b/desarrollo/diseno/login-clientes/images/secure_data.png deleted file mode 100644 index 26227527..00000000 Binary files a/desarrollo/diseno/login-clientes/images/secure_data.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/shield_icon.png b/desarrollo/diseno/login-clientes/images/shield_icon.png deleted file mode 100644 index 3310a4e1..00000000 Binary files a/desarrollo/diseno/login-clientes/images/shield_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/shopboat.png b/desarrollo/diseno/login-clientes/images/shopboat.png deleted file mode 100644 index 3d95f087..00000000 Binary files a/desarrollo/diseno/login-clientes/images/shopboat.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/slack.png b/desarrollo/diseno/login-clientes/images/slack.png deleted file mode 100644 index 1dd64f1d..00000000 Binary files a/desarrollo/diseno/login-clientes/images/slack.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/spoty.png b/desarrollo/diseno/login-clientes/images/spoty.png deleted file mode 100644 index 0b6b5d0f..00000000 Binary files a/desarrollo/diseno/login-clientes/images/spoty.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/standard.png b/desarrollo/diseno/login-clientes/images/standard.png deleted file mode 100644 index ac294b4c..00000000 Binary files a/desarrollo/diseno/login-clientes/images/standard.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story01.png b/desarrollo/diseno/login-clientes/images/story01.png deleted file mode 100644 index 6e6892ac..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story02.png b/desarrollo/diseno/login-clientes/images/story02.png deleted file mode 100644 index d202c54d..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story03.png b/desarrollo/diseno/login-clientes/images/story03.png deleted file mode 100644 index bcc07757..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story03.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story04.png b/desarrollo/diseno/login-clientes/images/story04.png deleted file mode 100644 index 3165b2a7..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story04.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story05.png b/desarrollo/diseno/login-clientes/images/story05.png deleted file mode 100644 index 5ec172be..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story05.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story06.png b/desarrollo/diseno/login-clientes/images/story06.png deleted file mode 100644 index 2ca821a6..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story06.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story07.png b/desarrollo/diseno/login-clientes/images/story07.png deleted file mode 100644 index b3de1382..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story07.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story08.png b/desarrollo/diseno/login-clientes/images/story08.png deleted file mode 100644 index cbcee902..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story08.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/story09.png b/desarrollo/diseno/login-clientes/images/story09.png deleted file mode 100644 index d99e57af..00000000 Binary files a/desarrollo/diseno/login-clientes/images/story09.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/support.png b/desarrollo/diseno/login-clientes/images/support.png deleted file mode 100644 index 5d924db3..00000000 Binary files a/desarrollo/diseno/login-clientes/images/support.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/telefono.png b/desarrollo/diseno/login-clientes/images/telefono.png deleted file mode 100644 index d99e2985..00000000 Binary files a/desarrollo/diseno/login-clientes/images/telefono.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/testimonial_bg.png b/desarrollo/diseno/login-clientes/images/testimonial_bg.png deleted file mode 100644 index 5f7e4374..00000000 Binary files a/desarrollo/diseno/login-clientes/images/testimonial_bg.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/testimonial_user1.png b/desarrollo/diseno/login-clientes/images/testimonial_user1.png deleted file mode 100644 index 6fff6259..00000000 Binary files a/desarrollo/diseno/login-clientes/images/testimonial_user1.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/testimonial_user2.png b/desarrollo/diseno/login-clientes/images/testimonial_user2.png deleted file mode 100644 index cace92fa..00000000 Binary files a/desarrollo/diseno/login-clientes/images/testimonial_user2.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/testimonial_user3.png b/desarrollo/diseno/login-clientes/images/testimonial_user3.png deleted file mode 100644 index c1f22602..00000000 Binary files a/desarrollo/diseno/login-clientes/images/testimonial_user3.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/unlimited.png b/desarrollo/diseno/login-clientes/images/unlimited.png deleted file mode 100644 index 52cdf7ac..00000000 Binary files a/desarrollo/diseno/login-clientes/images/unlimited.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/used01.png b/desarrollo/diseno/login-clientes/images/used01.png deleted file mode 100644 index 471fc0cf..00000000 Binary files a/desarrollo/diseno/login-clientes/images/used01.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/used02.png b/desarrollo/diseno/login-clientes/images/used02.png deleted file mode 100644 index bed846b0..00000000 Binary files a/desarrollo/diseno/login-clientes/images/used02.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/used03.png b/desarrollo/diseno/login-clientes/images/used03.png deleted file mode 100644 index 6fd9c30f..00000000 Binary files a/desarrollo/diseno/login-clientes/images/used03.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/used04.png b/desarrollo/diseno/login-clientes/images/used04.png deleted file mode 100644 index 83a52217..00000000 Binary files a/desarrollo/diseno/login-clientes/images/used04.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/images/yt_thumb.png b/desarrollo/diseno/login-clientes/images/yt_thumb.png deleted file mode 100644 index 185b05b1..00000000 Binary files a/desarrollo/diseno/login-clientes/images/yt_thumb.png and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/js/aos.js b/desarrollo/diseno/login-clientes/js/aos.js deleted file mode 100644 index 0ba1c7b6..00000000 --- a/desarrollo/diseno/login-clientes/js/aos.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,x),(0,b.default)(w,x.once),w},O=function(){w=(0,h.default)(),j()},_=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},S=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},z=function(e){x=i(x,e),w=(0,h.default)();var t=document.all&&!window.atob;return S(x.disable)||t?_():(document.querySelector("body").setAttribute("data-aos-easing",x.easing),document.querySelector("body").setAttribute("data-aos-duration",x.duration),document.querySelector("body").setAttribute("data-aos-delay",x.delay),"DOMContentLoaded"===x.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?j(!0):"load"===x.startEvent?window.addEventListener(x.startEvent,function(){j(!0)}):document.addEventListener(x.startEvent,function(){j(!0)}),window.addEventListener("resize",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("orientationchange",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,x.once)},x.throttleDelay)),x.disableMutationObserver||(0,d.default)("[data-aos]",O),w)};e.exports={init:z,refresh:j,refreshHard:O}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),_?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,z&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(_=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(f);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return s;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f="Expected a function",s=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),_?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,z&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(_=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==s}function a(e){if("number"==typeof e)return e;if(r(e))return f;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",f=NaN,s="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e,t){var n=window.document,r=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,a=new r(o);i=t,a.observe(n.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}function o(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),n=Array.prototype.slice.call(e.removedNodes),o=t.concat(n).filter(function(e){return e.hasAttribute&&e.hasAttribute("data-aos")}).length;o&&i()})}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){};t.default=n},function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;ne.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])}); \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/js/bootstrap.min.js b/desarrollo/diseno/login-clientes/js/bootstrap.min.js deleted file mode 100644 index 50720ead..00000000 --- a/desarrollo/diseno/login-clientes/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var o=i(e),a=i(n);function s(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};d.jQueryDetection(),o.default.fn.emulateTransitionEnd=function(t){var e=this,n=!1;return o.default(this).one(d.TRANSITION_END,(function(){n=!0})),setTimeout((function(){n||d.triggerTransitionEnd(e)}),t),this},o.default.event.special[d.TRANSITION_END]={bindType:f,delegateType:f,handle:function(t){if(o.default(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var c="bs.alert",h=o.default.fn.alert,g=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){o.default.removeData(this._element,c),this._element=null},e._getRootElement=function(t){var e=d.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=o.default(t).closest(".alert")[0]),n},e._triggerCloseEvent=function(t){var e=o.default.Event("close.bs.alert");return o.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(o.default(t).removeClass("show"),o.default(t).hasClass("fade")){var n=d.getTransitionDurationFromElement(t);o.default(t).one(d.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){o.default(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(c);i||(i=new t(this),n.data(c,i)),"close"===e&&i[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',g._handleDismiss(new g)),o.default.fn.alert=g._jQueryInterface,o.default.fn.alert.Constructor=g,o.default.fn.alert.noConflict=function(){return o.default.fn.alert=h,g._jQueryInterface};var m="bs.button",p=o.default.fn.button,_="active",v='[data-toggle^="button"]',y='input:not([type="hidden"])',b=".btn",E=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=o.default(this._element).closest('[data-toggle="buttons"]')[0];if(n){var i=this._element.querySelector(y);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(_))t=!1;else{var a=n.querySelector(".active");a&&o.default(a).removeClass(_)}t&&("checkbox"!==i.type&&"radio"!==i.type||(i.checked=!this._element.classList.contains(_)),this.shouldAvoidTriggerChange||o.default(i).trigger("change")),i.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(_)),t&&o.default(this._element).toggleClass(_))},e.dispose=function(){o.default.removeData(this._element,m),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var i=o.default(this),a=i.data(m);a||(a=new t(this),i.data(m,a)),a.shouldAvoidTriggerChange=n,"toggle"===e&&a[e]()}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.button.data-api",v,(function(t){var e=t.target,n=e;if(o.default(e).hasClass("btn")||(e=o.default(e).closest(b)[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var i=e.querySelector(y);if(i&&(i.hasAttribute("disabled")||i.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||E._jQueryInterface.call(o.default(e),"toggle","INPUT"===n.tagName)}})).on("focus.bs.button.data-api blur.bs.button.data-api",v,(function(t){var e=o.default(t.target).closest(b)[0];o.default(e).toggleClass("focus",/^focus(in)?$/.test(t.type))})),o.default(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide(N)},e.nextWhenVisible=function(){var t=o.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide(D)},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(d.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(I);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)o.default(this._element).one(A,(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var i=t>n?N:D;this._slide(i,this._items[t])}},e.dispose=function(){o.default(this._element).off(".bs.carousel"),o.default.removeData(this._element,w),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=r({},k,t),d.typeCheckConfig(T,t,O),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&o.default(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&o.default(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};o.default(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(o.default(this._element).on("pointerdown.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("pointerup.bs.carousel",(function(t){return n(t)})),this._element.classList.add("pointer-event")):(o.default(this._element).on("touchstart.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("touchmove.bs.carousel",(function(e){return function(e){t.touchDeltaX=e.originalEvent.touches&&e.originalEvent.touches.length>1?0:e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),o.default(this._element).on("touchend.bs.carousel",(function(t){return n(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n=t===N,i=t===D,o=this._getItemIndex(e),a=this._items.length-1;if((i&&0===o||n&&o===a)&&!this._config.wrap)return e;var s=(o+(t===D?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(I)),a=o.default.Event("slide.bs.carousel",{relatedTarget:t,direction:e,from:i,to:n});return o.default(this._element).trigger(a),a},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));o.default(e).removeClass(S);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&o.default(n).addClass(S)}},e._updateInterval=function(){var t=this._activeElement||this._element.querySelector(I);if(t){var e=parseInt(t.getAttribute("data-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}},e._slide=function(t,e){var n,i,a,s=this,l=this._element.querySelector(I),r=this._getItemIndex(l),u=e||l&&this._getItemByDirection(t,l),f=this._getItemIndex(u),c=Boolean(this._interval);if(t===N?(n="carousel-item-left",i="carousel-item-next",a="left"):(n="carousel-item-right",i="carousel-item-prev",a="right"),u&&o.default(u).hasClass(S))this._isSliding=!1;else if(!this._triggerSlideEvent(u,a).isDefaultPrevented()&&l&&u){this._isSliding=!0,c&&this.pause(),this._setActiveIndicatorElement(u),this._activeElement=u;var h=o.default.Event(A,{relatedTarget:u,direction:a,from:r,to:f});if(o.default(this._element).hasClass("slide")){o.default(u).addClass(i),d.reflow(u),o.default(l).addClass(n),o.default(u).addClass(n);var g=d.getTransitionDurationFromElement(l);o.default(l).one(d.TRANSITION_END,(function(){o.default(u).removeClass(n+" "+i).addClass(S),o.default(l).removeClass("active "+i+" "+n),s._isSliding=!1,setTimeout((function(){return o.default(s._element).trigger(h)}),0)})).emulateTransitionEnd(g)}else o.default(l).removeClass(S),o.default(u).addClass(S),this._isSliding=!1,o.default(this._element).trigger(h);c&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(w),i=r({},k,o.default(this).data());"object"==typeof e&&(i=r({},i,e));var a="string"==typeof e?e:i.slide;if(n||(n=new t(this,i),o.default(this).data(w,n)),"number"==typeof e)n.to(e);else if("string"==typeof a){if("undefined"==typeof n[a])throw new TypeError('No method named "'+a+'"');n[a]()}else i.interval&&i.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=d.getSelectorFromElement(this);if(n){var i=o.default(n)[0];if(i&&o.default(i).hasClass("carousel")){var a=r({},o.default(i).data(),o.default(this).data()),s=this.getAttribute("data-slide-to");s&&(a.interval=!1),t._jQueryInterface.call(o.default(i),a),s&&o.default(i).data(w).to(s),e.preventDefault()}}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return k}}]),t}();o.default(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",P._dataApiClickHandler),o.default(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),e=0,n=t.length;e0&&(this._selector=s,this._triggerArray.push(a))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){o.default(this._element).hasClass(q)?this.hide():this.show()},e.show=function(){var e,n,i=this;if(!(this._isTransitioning||o.default(this._element).hasClass(q)||(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof i._config.parent?t.getAttribute("data-parent")===i._config.parent:t.classList.contains(F)}))).length&&(e=null),e&&(n=o.default(e).not(this._selector).data(R))&&n._isTransitioning))){var a=o.default.Event("show.bs.collapse");if(o.default(this._element).trigger(a),!a.isDefaultPrevented()){e&&(t._jQueryInterface.call(o.default(e).not(this._selector),"hide"),n||o.default(e).data(R,null));var s=this._getDimension();o.default(this._element).removeClass(F).addClass(Q),this._element.style[s]=0,this._triggerArray.length&&o.default(this._triggerArray).removeClass(B).attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(s[0].toUpperCase()+s.slice(1)),r=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,(function(){o.default(i._element).removeClass(Q).addClass("collapse show"),i._element.style[s]="",i.setTransitioning(!1),o.default(i._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(r),this._element.style[s]=this._element[l]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&o.default(this._element).hasClass(q)){var e=o.default.Event("hide.bs.collapse");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",d.reflow(this._element),o.default(this._element).addClass(Q).removeClass("collapse show");var i=this._triggerArray.length;if(i>0)for(var a=0;a0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t._config.offset(e.offsets,t._element)),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),r({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(K);if(n||(n=new t(this,"object"==typeof e?e:null),o.default(this).data(K,n)),"string"==typeof e){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=[].slice.call(document.querySelectorAll(it)),i=0,a=n.length;i0&&s--,40===e.which&&sdocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add(ht);var i=d.getTransitionDurationFromElement(this._dialog);o.default(this._element).off(d.TRANSITION_END),o.default(this._element).one(d.TRANSITION_END,(function(){t._element.classList.remove(ht),n||o.default(t._element).one(d.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,i)})).emulateTransitionEnd(i),this._element.focus()}},e._showElement=function(t){var e=this,n=o.default(this._element).hasClass(dt),i=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),o.default(this._dialog).hasClass("modal-dialog-scrollable")&&i?i.scrollTop=0:this._element.scrollTop=0,n&&d.reflow(this._element),o.default(this._element).addClass(ct),this._config.focus&&this._enforceFocus();var a=o.default.Event("shown.bs.modal",{relatedTarget:t}),s=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,o.default(e._element).trigger(a)};if(n){var l=d.getTransitionDurationFromElement(this._dialog);o.default(this._dialog).one(d.TRANSITION_END,s).emulateTransitionEnd(l)}else s()},e._enforceFocus=function(){var t=this;o.default(document).off(pt).on(pt,(function(e){document!==e.target&&t._element!==e.target&&0===o.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?o.default(this._element).on(yt,(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||o.default(this._element).off(yt)},e._setResizeEvent=function(){var t=this;this._isShown?o.default(window).on(_t,(function(e){return t.handleUpdate(e)})):o.default(window).off(_t)},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){o.default(document.body).removeClass(ft),t._resetAdjustments(),t._resetScrollbar(),o.default(t._element).trigger(gt)}))},e._removeBackdrop=function(){this._backdrop&&(o.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=o.default(this._element).hasClass(dt)?dt:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",n&&this._backdrop.classList.add(n),o.default(this._backdrop).appendTo(document.body),o.default(this._element).on(vt,(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._triggerBackdropTransition():e.hide())})),n&&d.reflow(this._backdrop),o.default(this._backdrop).addClass(ct),!t)return;if(!n)return void t();var i=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){o.default(this._backdrop).removeClass(ct);var a=function(){e._removeBackdrop(),t&&t()};if(o.default(this._element).hasClass(dt)){var s=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Ut={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},Mt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},Wt=function(){function t(t,e){if("undefined"==typeof a.default)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=o.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(o.default(this.getTipElement()).hasClass(Rt))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),o.default.removeData(this.element,this.constructor.DATA_KEY),o.default(this.element).off(this.constructor.EVENT_KEY),o.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&o.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===o.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=o.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){o.default(this.element).trigger(e);var n=d.findShadowRoot(this.element),i=o.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!i)return;var s=this.getTipElement(),l=d.getUID(this.constructor.NAME);s.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&o.default(s).addClass(Lt);var r="function"==typeof this.config.placement?this.config.placement.call(this,s,this.element):this.config.placement,u=this._getAttachment(r);this.addAttachmentClass(u);var f=this._getContainer();o.default(s).data(this.constructor.DATA_KEY,this),o.default.contains(this.element.ownerDocument.documentElement,this.tip)||o.default(s).appendTo(f),o.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new a.default(this.element,s,this._getPopperConfig(u)),o.default(s).addClass(Rt),o.default(s).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&o.default(document.body).children().on("mouseover",null,o.default.noop);var c=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,o.default(t.element).trigger(t.constructor.Event.SHOWN),e===qt&&t._leave(null,t)};if(o.default(this.tip).hasClass(Lt)){var h=d.getTransitionDurationFromElement(this.tip);o.default(this.tip).one(d.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},e.hide=function(t){var e=this,n=this.getTipElement(),i=o.default.Event(this.constructor.Event.HIDE),a=function(){e._hoverState!==xt&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),o.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(o.default(this.element).trigger(i),!i.isDefaultPrevented()){if(o.default(n).removeClass(Rt),"ontouchstart"in document.documentElement&&o.default(document.body).children().off("mouseover",null,o.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,o.default(this.tip).hasClass(Lt)){var s=d.getTransitionDurationFromElement(n);o.default(n).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-tooltip-"+t)},e.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(o.default(t.querySelectorAll(".tooltip-inner")),this.getTitle()),o.default(t).removeClass("fade show")},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=At(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?o.default(e).parent().is(t)||t.empty().append(e):t.text(o.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return r({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t.config.offset(e.offsets,t.element)),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:d.isElement(this.config.container)?o.default(this.config.container):o.default(document).find(this.config.container)},e._getAttachment=function(t){return Bt[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)o.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==e){var n=e===Ft?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,i=e===Ft?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;o.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(i,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},o.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Qt:Ft]=!0),o.default(e.getTipElement()).hasClass(Rt)||e._hoverState===xt?e._hoverState=xt:(clearTimeout(e._timeout),e._hoverState=xt,e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){e._hoverState===xt&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Qt:Ft]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=qt,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){e._hoverState===qt&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=o.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Pt.indexOf(t)&&delete e[t]})),"number"==typeof(t=r({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d.typeCheckConfig(It,t,this.constructor.DefaultType),t.sanitize&&(t.template=At(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(jt);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(o.default(t).removeClass(Lt),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(kt),a="object"==typeof e&&e;if((i||!/dispose|hide/.test(e))&&(i||(i=new t(this,a),n.data(kt,i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Ht}},{key:"NAME",get:function(){return It}},{key:"DATA_KEY",get:function(){return kt}},{key:"Event",get:function(){return Mt}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return Ut}}]),t}();o.default.fn.tooltip=Wt._jQueryInterface,o.default.fn.tooltip.Constructor=Wt,o.default.fn.tooltip.noConflict=function(){return o.default.fn.tooltip=Ot,Wt._jQueryInterface};var Vt="bs.popover",zt=o.default.fn.popover,Kt=new RegExp("(^|\\s)bs-popover\\S+","g"),Xt=r({},Wt.Default,{placement:"right",trigger:"click",content:"",template:''}),Yt=r({},Wt.DefaultType,{content:"(string|element|function)"}),$t={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},Jt=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),e.prototype.constructor=e,u(e,n);var a=i.prototype;return a.isWithContent=function(){return this.getTitle()||this._getContent()},a.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-popover-"+t)},a.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},a.setContent=function(){var t=o.default(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(".popover-body"),e),t.removeClass("fade show")},a._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},a._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(Kt);null!==e&&e.length>0&&t.removeClass(e.join(""))},i._jQueryInterface=function(t){return this.each((function(){var e=o.default(this).data(Vt),n="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new i(this,n),o.default(this).data(Vt,e)),"string"==typeof t)){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}}))},l(i,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Xt}},{key:"NAME",get:function(){return"popover"}},{key:"DATA_KEY",get:function(){return Vt}},{key:"Event",get:function(){return $t}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return Yt}}]),i}(Wt);o.default.fn.popover=Jt._jQueryInterface,o.default.fn.popover.Constructor=Jt,o.default.fn.popover.noConflict=function(){return o.default.fn.popover=zt,Jt._jQueryInterface};var Gt="scrollspy",Zt="bs.scrollspy",te=o.default.fn[Gt],ee="active",ne="position",ie=".nav, .list-group",oe={offset:10,method:"auto",target:""},ae={offset:"number",method:"string",target:"(string|element)"},se=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,o.default(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?"offset":ne,n="auto"===this._config.method?e:this._config.method,i=n===ne?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,a=d.getSelectorFromElement(t);if(a&&(e=document.querySelector(a)),e){var s=e.getBoundingClientRect();if(s.width||s.height)return[o.default(e)[n]().top+i,a]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){o.default.removeData(this._element,Zt),o.default(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=r({},oe,"object"==typeof t&&t?t:{})).target&&d.isElement(t.target)){var e=o.default(t.target).attr("id");e||(e=d.getUID(Gt),o.default(t.target).attr("id",e)),t.target="#"+e}return d.typeCheckConfig(Gt,t,ae),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;)this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active",ge=function(){function t(t){this._element=t}var e=t.prototype;return e.show=function(){var t=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&o.default(this._element).hasClass(ue)||o.default(this._element).hasClass("disabled"))){var e,n,i=o.default(this._element).closest(".nav, .list-group")[0],a=d.getSelectorFromElement(this._element);if(i){var s="UL"===i.nodeName||"OL"===i.nodeName?he:ce;n=(n=o.default.makeArray(o.default(i).find(s)))[n.length-1]}var l=o.default.Event("hide.bs.tab",{relatedTarget:this._element}),r=o.default.Event("show.bs.tab",{relatedTarget:n});if(n&&o.default(n).trigger(l),o.default(this._element).trigger(r),!r.isDefaultPrevented()&&!l.isDefaultPrevented()){a&&(e=document.querySelector(a)),this._activate(this._element,i);var u=function(){var e=o.default.Event("hidden.bs.tab",{relatedTarget:t._element}),i=o.default.Event("shown.bs.tab",{relatedTarget:n});o.default(n).trigger(e),o.default(t._element).trigger(i)};e?this._activate(e,e.parentNode,u):u()}}},e.dispose=function(){o.default.removeData(this._element,le),this._element=null},e._activate=function(t,e,n){var i=this,a=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?o.default(e).children(ce):o.default(e).find(he))[0],s=n&&a&&o.default(a).hasClass(fe),l=function(){return i._transitionComplete(t,a,n)};if(a&&s){var r=d.getTransitionDurationFromElement(a);o.default(a).removeClass(de).one(d.TRANSITION_END,l).emulateTransitionEnd(r)}else l()},e._transitionComplete=function(t,e,n){if(e){o.default(e).removeClass(ue);var i=o.default(e.parentNode).find("> .dropdown-menu .active")[0];i&&o.default(i).removeClass(ue),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}o.default(t).addClass(ue),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),d.reflow(t),t.classList.contains(fe)&&t.classList.add(de);var a=t.parentNode;if(a&&"LI"===a.nodeName&&(a=a.parentNode),a&&o.default(a).hasClass("dropdown-menu")){var s=o.default(t).closest(".dropdown")[0];if(s){var l=[].slice.call(s.querySelectorAll(".dropdown-toggle"));o.default(l).addClass(ue)}t.setAttribute("aria-expanded",!0)}n&&n()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(le);if(i||(i=new t(this),n.data(le,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),ge._jQueryInterface.call(o.default(this),"show")})),o.default.fn.tab=ge._jQueryInterface,o.default.fn.tab.Constructor=ge,o.default.fn.tab.noConflict=function(){return o.default.fn.tab=re,ge._jQueryInterface};var me="bs.toast",pe=o.default.fn.toast,_e="hide",ve="show",ye="showing",be="click.dismiss.bs.toast",Ee={animation:!0,autohide:!0,delay:500},Te={animation:"boolean",autohide:"boolean",delay:"number"},we=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var e=t.prototype;return e.show=function(){var t=this,e=o.default.Event("show.bs.toast");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var n=function(){t._element.classList.remove(ye),t._element.classList.add(ve),o.default(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove(_e),d.reflow(this._element),this._element.classList.add(ye),this._config.animation){var i=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,n).emulateTransitionEnd(i)}else n()}},e.hide=function(){if(this._element.classList.contains(ve)){var t=o.default.Event("hide.bs.toast");o.default(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},e.dispose=function(){this._clearTimeout(),this._element.classList.contains(ve)&&this._element.classList.remove(ve),o.default(this._element).off(be),o.default.removeData(this._element,me),this._element=null,this._config=null},e._getConfig=function(t){return t=r({},Ee,o.default(this._element).data(),"object"==typeof t&&t?t:{}),d.typeCheckConfig("toast",t,this.constructor.DefaultType),t},e._setListeners=function(){var t=this;o.default(this._element).on(be,'[data-dismiss="toast"]',(function(){return t.hide()}))},e._close=function(){var t=this,e=function(){t._element.classList.add(_e),o.default(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove(ve),this._config.animation){var n=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},e._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(me);if(i||(i=new t(this,"object"==typeof e&&e),n.data(me,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e](this)}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"DefaultType",get:function(){return Te}},{key:"Default",get:function(){return Ee}}]),t}();o.default.fn.toast=we._jQueryInterface,o.default.fn.toast.Constructor=we,o.default.fn.toast.noConflict=function(){return o.default.fn.toast=pe,we._jQueryInterface},t.Alert=g,t.Button=E,t.Carousel=P,t.Collapse=V,t.Dropdown=lt,t.Modal=Ct,t.Popover=Jt,t.Scrollspy=se,t.Tab=ge,t.Toast=we,t.Tooltip=Wt,t.Util=d,Object.defineProperty(t,"__esModule",{value:!0})})); -//# sourceMappingURL=bootstrap.min.js.map \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/js/desktop.ini b/desarrollo/diseno/login-clientes/js/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/login-clientes/js/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/login-clientes/js/jquery.magnific-popup.min.js b/desarrollo/diseno/login-clientes/js/jquery.magnific-popup.min.js deleted file mode 100644 index 6ee3a3bd..00000000 --- a/desarrollo/diseno/login-clientes/js/jquery.magnific-popup.min.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! Magnific Popup - v1.1.0 - 2016-02-20 -* http://dimsemenov.com/plugins/magnific-popup/ -* Copyright (c) 2016 Dmitry Semenov; */ -!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):window.jQuery||window.Zepto)}(function(a){var b,c,d,e,f,g,h="Close",i="BeforeClose",j="AfterClose",k="BeforeAppend",l="MarkupParse",m="Open",n="Change",o="mfp",p="."+o,q="mfp-ready",r="mfp-removing",s="mfp-prevent-close",t=function(){},u=!!window.jQuery,v=a(window),w=function(a,c){b.ev.on(o+a+p,c)},x=function(b,c,d,e){var f=document.createElement("div");return f.className="mfp-"+b,d&&(f.innerHTML=d),e?c&&c.appendChild(f):(f=a(f),c&&f.appendTo(c)),f},y=function(c,d){b.ev.triggerHandler(o+c,d),b.st.callbacks&&(c=c.charAt(0).toLowerCase()+c.slice(1),b.st.callbacks[c]&&b.st.callbacks[c].apply(b,a.isArray(d)?d:[d]))},z=function(c){return c===g&&b.currTemplate.closeBtn||(b.currTemplate.closeBtn=a(b.st.closeMarkup.replace("%title%",b.st.tClose)),g=c),b.currTemplate.closeBtn},A=function(){a.magnificPopup.instance||(b=new t,b.init(),a.magnificPopup.instance=b)},B=function(){var a=document.createElement("p").style,b=["ms","O","Moz","Webkit"];if(void 0!==a.transition)return!0;for(;b.length;)if(b.pop()+"Transition"in a)return!0;return!1};t.prototype={constructor:t,init:function(){var c=navigator.appVersion;b.isLowIE=b.isIE8=document.all&&!document.addEventListener,b.isAndroid=/android/gi.test(c),b.isIOS=/iphone|ipad|ipod/gi.test(c),b.supportsTransition=B(),b.probablyMobile=b.isAndroid||b.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),d=a(document),b.popupsCache={}},open:function(c){var e;if(c.isObj===!1){b.items=c.items.toArray(),b.index=0;var g,h=c.items;for(e=0;e(a||v.height())},_setFocus:function(){(b.st.focus?b.content.find(b.st.focus).eq(0):b.wrap).focus()},_onFocusIn:function(c){return c.target===b.wrap[0]||a.contains(b.wrap[0],c.target)?void 0:(b._setFocus(),!1)},_parseMarkup:function(b,c,d){var e;d.data&&(c=a.extend(d.data,c)),y(l,[b,c,d]),a.each(c,function(c,d){if(void 0===d||d===!1)return!0;if(e=c.split("_"),e.length>1){var f=b.find(p+"-"+e[0]);if(f.length>0){var g=e[1];"replaceWith"===g?f[0]!==d[0]&&f.replaceWith(d):"img"===g?f.is("img")?f.attr("src",d):f.replaceWith(a("").attr("src",d).attr("class",f.attr("class"))):f.attr(e[1],d)}}else b.find(p+"-"+c).html(d)})},_getScrollbarSize:function(){if(void 0===b.scrollbarSize){var a=document.createElement("div");a.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(a),b.scrollbarSize=a.offsetWidth-a.clientWidth,document.body.removeChild(a)}return b.scrollbarSize}},a.magnificPopup={instance:null,proto:t.prototype,modules:[],open:function(b,c){return A(),b=b?a.extend(!0,{},b):{},b.isObj=!0,b.index=c||0,this.instance.open(b)},close:function(){return a.magnificPopup.instance&&a.magnificPopup.instance.close()},registerModule:function(b,c){c.options&&(a.magnificPopup.defaults[b]=c.options),a.extend(this.proto,c.proto),this.modules.push(b)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("
");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); \ No newline at end of file diff --git a/desarrollo/diseno/login-clientes/js/main.js b/desarrollo/diseno/login-clientes/js/main.js deleted file mode 100644 index 9f372360..00000000 --- a/desarrollo/diseno/login-clientes/js/main.js +++ /dev/null @@ -1,353 +0,0 @@ -// Open Sub Menu -$('.drp_btn').click(function(){ - $(this).siblings('.sub_menu').slideToggle(); -}) - -// Preloader JS - -function preloader_fade() { - $("#preloader").fadeOut('slow'); -} - -$(document).ready(function() { - window.setTimeout("preloader_fade();", 500); //call fade in .5 seconds -} -) - - -// All Slider Js - -$('#frmae_slider').owlCarousel({ - loop:true, - margin:10, - autoplay: true, - smartSpeed: 1500, - nav:false, - dots: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:1 - }, - 1000:{ - items:1 - } - } -}) - -$('#company_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - autoplay: true, - smartSpeed: 1500, - dots: true, - responsive:{ - 0:{ - items:2 - }, - 600:{ - items:3 - }, - 1000:{ - items:5 - } - } -}) - - -$('#testimonial_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - autoplay: true, - smartSpeed: 2500, - dots: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:1 - }, - 1000:{ - items:1 - } - } -}) - - -$('#screen_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - dots: true, - autoplay: true, - smartSpeed: 2500, - center: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:3 - }, - 1000:{ - items:5 - } - } -}) - - -// Number Count -window.addEventListener('scroll', function() { - var element = document.querySelector('#counter'); - var position = element.getBoundingClientRect(); - - // checking whether fully visible - if(position.top >= 0 && position.bottom <= window.innerHeight) { - $('.counter-value').each(function() { - var $this = $(this), - countTo = $this.attr('data-count'); - $({ - countNum: $this.text() - }).animate({ - countNum: countTo - }, - - { - - duration: 2000, - easing: 'swing', - step: function() { - $this.text(Math.floor(this.countNum)); - }, - complete: function() { - $this.text(this.countNum); - //alert('finished'); - } - - }); - }); - } - - if(position.top < window.innerHeight && position.bottom >= 0) { - //console.log('Element is partially visible in screen'); - }else{ - //console.log('Element is not visible'); - $('.counter-value').each(function() { - var $this = $(this), - countTo = 0; - $({ - countNum: $this.text() - }).animate({ - countNum: countTo - }, - - { - - duration: 100, - easing: 'swing', - step: function() { - $this.text(Math.floor(this.countNum)); - }, - complete: function() { - $this.text(this.countNum); - //alert('finished'); - } - - }); - }); - } -}); - - - -// --------Magnify-popup - -$(function() { - $('.popup-youtube').magnificPopup({ - disableOn: 700, - type: 'iframe', - mainClass: 'mfp-fade', - removalDelay: 160, - preloader: false, - fixedContentPos: false - }); -}); - - -// Pricing Section Year Month Jquery -$(document).ready(function () { - - $(".tog_block").click(function () { - $(".tog_btn").toggleClass('month_active'); - $('.month').toggleClass('active'); - $('.years').toggleClass('active'); - - $('.monthly_plan').toggleClass('active'); - $('.yearly_plan').toggleClass('active'); - - }) - - }); - - $(document).ready(function () { - // Add minus icon for collapse element which is open by default - $(".collapse.show").each(function () { - $(this) - .prev(".card-header") - .find(".icon_faq") - .addClass("icofont-minus") - .removeClass("icofont-plus"); - }); - - - // Toggle plus minus icon on show hide of collapse element - $(".collapse").on("show.bs.collapse", function () { - $(this).prev(".card-header").find(".icon_faq").removeClass("icofont-plus").addClass("icofont-minus"); - }) - .on("hide.bs.collapse", function () { - $(this).prev(".card-header").find(".icon_faq").removeClass("icofont-minus").addClass("icofont-plus"); - }); - - $(".collapse").on("show.bs.collapse", function () { - $(this).prev(".card-header").children('h2').children('.btn').addClass("active"); - }) - .on("hide.bs.collapse", function () { - $(this).prev(".card-header").children('h2').children('.btn').removeClass("active"); - }); - }); - - -// Download Section Hover Jquery -window.addEventListener('scroll', function() { - var element = document.querySelector('.free_text'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } -}); - -$(window).on('resize', function() { - if ($(window).width()<768) { - - window.addEventListener('scroll', function() { - var element = document.querySelector('.mobile_mockup'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } - }); - - } - else { - - window.addEventListener('scroll', function() { - var element = document.querySelector('.free_text'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } - }); - - } -}); - - -// Scrool-top -$(document).ready(function() { - var toTop = $('.go_top'); - toTop.on('click', function() { - $('html, body').animate({scrollTop: $('html, body').offset().top,}, 400); - }); - - $(window).scroll(function() { - // declare variable - var topPos = $(this).scrollTop(); - - // if user scrolls down - show scroll to top button - if (topPos > 750) { - $(toTop).css("opacity", "1"); - - } else { - $(toTop).css("opacity", "0"); - } - - }); - -}); - -// Fix Header Js -$(window).scroll(function(){ - if ($(window).scrollTop() >= 250) { - $('header').addClass('fix_style'); - } - else { - $('header').removeClass('fix_style'); - } - if ($(window).scrollTop() >= 260) { - $('header').addClass('fixed'); - } - else { - $('header').removeClass('fixed'); - } -}); - - - - -//YOUTUBE VIDEO -$('.play-button').click(function(e){ - var iframeEl = $(''),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1, -animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('
'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['',''],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("
").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a(' -
- -

- O -

-
-

Inicia sesión con Gmail

- image Inicia Sesión con Google -

No tienes una cuenta? Regístrate Aquí!

-
-
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/css/.editorconfig b/desarrollo/diseno/login-comercio/css/.editorconfig deleted file mode 100644 index 6f313c6a..00000000 --- a/desarrollo/diseno/login-comercio/css/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -root = true - -[*] -charset = utf-8 -end_of_line = lf -insert_final_newline = true -indent_style = space -indent_size = 4 -trim_trailing_whitespace = true - -[*.md] -trim_trailing_whitespace = false - -[*.yml] -indent_size = 2 diff --git a/desarrollo/diseno/login-comercio/css/aos.css b/desarrollo/diseno/login-comercio/css/aos.css deleted file mode 100644 index 66923fe6..00000000 --- a/desarrollo/diseno/login-comercio/css/aos.css +++ /dev/null @@ -1 +0,0 @@ -[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)} \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/css/bootstrap.min.css b/desarrollo/diseno/login-comercio/css/bootstrap.min.css deleted file mode 100644 index 6ee59568..00000000 --- a/desarrollo/diseno/login-comercio/css/bootstrap.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;overflow:hidden;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item,.nav-fill>.nav-link{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.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:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/css/icofont.min.css b/desarrollo/diseno/login-comercio/css/icofont.min.css deleted file mode 100644 index 91bdd564..00000000 --- a/desarrollo/diseno/login-comercio/css/icofont.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! -* @package IcoFont -* @version 1.0.1 -* @author IcoFont https://icofont.com -* @copyright Copyright (c) 2015 - 2018 IcoFont -* @license - https://icofont.com/license/ -*/@font-face{font-family:IcoFont;font-weight:400;font-style:Regular;src:url(../fonts/icofont.woff2) format("woff2"),url(../fonts/icofont.woff) format("woff")}[class*=" icofont-"],[class^=icofont-]{font-family:IcoFont!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;line-height:1;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased}.icofont-angry-monster:before{content:"\e800"}.icofont-bathtub:before{content:"\e801"}.icofont-bird-wings:before{content:"\e802"}.icofont-bow:before{content:"\e803"}.icofont-castle:before{content:"\e804"}.icofont-circuit:before{content:"\e805"}.icofont-crown-king:before{content:"\e806"}.icofont-crown-queen:before{content:"\e807"}.icofont-dart:before{content:"\e808"}.icofont-disability-race:before{content:"\e809"}.icofont-diving-goggle:before{content:"\e80a"}.icofont-eye-open:before{content:"\e80b"}.icofont-flora-flower:before{content:"\e80c"}.icofont-flora:before{content:"\e80d"}.icofont-gift-box:before{content:"\e80e"}.icofont-halloween-pumpkin:before{content:"\e80f"}.icofont-hand-power:before{content:"\e810"}.icofont-hand-thunder:before{content:"\e811"}.icofont-king-monster:before{content:"\e812"}.icofont-love:before{content:"\e813"}.icofont-magician-hat:before{content:"\e814"}.icofont-native-american:before{content:"\e815"}.icofont-owl-look:before{content:"\e816"}.icofont-phoenix:before{content:"\e817"}.icofont-robot-face:before{content:"\e818"}.icofont-sand-clock:before{content:"\e819"}.icofont-shield-alt:before{content:"\e81a"}.icofont-ship-wheel:before{content:"\e81b"}.icofont-skull-danger:before{content:"\e81c"}.icofont-skull-face:before{content:"\e81d"}.icofont-snowmobile:before{content:"\e81e"}.icofont-space-shuttle:before{content:"\e81f"}.icofont-star-shape:before{content:"\e820"}.icofont-swirl:before{content:"\e821"}.icofont-tattoo-wing:before{content:"\e822"}.icofont-throne:before{content:"\e823"}.icofont-tree-alt:before{content:"\e824"}.icofont-triangle:before{content:"\e825"}.icofont-unity-hand:before{content:"\e826"}.icofont-weed:before{content:"\e827"}.icofont-woman-bird:before{content:"\e828"}.icofont-bat:before{content:"\e829"}.icofont-bear-face:before{content:"\e82a"}.icofont-bear-tracks:before{content:"\e82b"}.icofont-bear:before{content:"\e82c"}.icofont-bird-alt:before{content:"\e82d"}.icofont-bird-flying:before{content:"\e82e"}.icofont-bird:before{content:"\e82f"}.icofont-birds:before{content:"\e830"}.icofont-bone:before{content:"\e831"}.icofont-bull:before{content:"\e832"}.icofont-butterfly-alt:before{content:"\e833"}.icofont-butterfly:before{content:"\e834"}.icofont-camel-alt:before{content:"\e835"}.icofont-camel-head:before{content:"\e836"}.icofont-camel:before{content:"\e837"}.icofont-cat-alt-1:before{content:"\e838"}.icofont-cat-alt-2:before{content:"\e839"}.icofont-cat-alt-3:before{content:"\e83a"}.icofont-cat-dog:before{content:"\e83b"}.icofont-cat-face:before{content:"\e83c"}.icofont-cat:before{content:"\e83d"}.icofont-cow-head:before{content:"\e83e"}.icofont-cow:before{content:"\e83f"}.icofont-crab:before{content:"\e840"}.icofont-crocodile:before{content:"\e841"}.icofont-deer-head:before{content:"\e842"}.icofont-dog-alt:before{content:"\e843"}.icofont-dog-barking:before{content:"\e844"}.icofont-dog:before{content:"\e845"}.icofont-dolphin:before{content:"\e846"}.icofont-duck-tracks:before{content:"\e847"}.icofont-eagle-head:before{content:"\e848"}.icofont-eaten-fish:before{content:"\e849"}.icofont-elephant-alt:before{content:"\e84a"}.icofont-elephant-head-alt:before{content:"\e84b"}.icofont-elephant-head:before{content:"\e84c"}.icofont-elephant:before{content:"\e84d"}.icofont-elk:before{content:"\e84e"}.icofont-fish-1:before{content:"\e84f"}.icofont-fish-2:before{content:"\e850"}.icofont-fish-3:before{content:"\e851"}.icofont-fish-4:before{content:"\e852"}.icofont-fish-5:before{content:"\e853"}.icofont-fish:before{content:"\e854"}.icofont-fox-alt:before{content:"\e855"}.icofont-fox:before{content:"\e856"}.icofont-frog-tracks:before{content:"\e857"}.icofont-frog:before{content:"\e858"}.icofont-froggy:before{content:"\e859"}.icofont-giraffe-head-1:before{content:"\e85a"}.icofont-giraffe-head-2:before{content:"\e85b"}.icofont-giraffe-head:before{content:"\e85c"}.icofont-giraffe:before{content:"\e85d"}.icofont-goat-head:before{content:"\e85e"}.icofont-gorilla:before{content:"\e85f"}.icofont-hen-tracks:before{content:"\e860"}.icofont-horse-head-1:before{content:"\e861"}.icofont-horse-head-2:before{content:"\e862"}.icofont-horse-head:before{content:"\e863"}.icofont-horse-tracks:before{content:"\e864"}.icofont-jellyfish:before{content:"\e865"}.icofont-kangaroo:before{content:"\e866"}.icofont-lemur:before{content:"\e867"}.icofont-lion-head-1:before{content:"\e868"}.icofont-lion-head-2:before{content:"\e869"}.icofont-lion-head:before{content:"\e86a"}.icofont-lion:before{content:"\e86b"}.icofont-monkey-2:before{content:"\e86c"}.icofont-monkey-3:before{content:"\e86d"}.icofont-monkey-face:before{content:"\e86e"}.icofont-monkey:before{content:"\e86f"}.icofont-octopus-alt:before{content:"\e870"}.icofont-octopus:before{content:"\e871"}.icofont-owl:before{content:"\e872"}.icofont-panda-face:before{content:"\e873"}.icofont-panda:before{content:"\e874"}.icofont-panther:before{content:"\e875"}.icofont-parrot-lip:before{content:"\e876"}.icofont-parrot:before{content:"\e877"}.icofont-paw:before{content:"\e878"}.icofont-pelican:before{content:"\e879"}.icofont-penguin:before{content:"\e87a"}.icofont-pig-face:before{content:"\e87b"}.icofont-pig:before{content:"\e87c"}.icofont-pigeon-1:before{content:"\e87d"}.icofont-pigeon-2:before{content:"\e87e"}.icofont-pigeon:before{content:"\e87f"}.icofont-rabbit:before{content:"\e880"}.icofont-rat:before{content:"\e881"}.icofont-rhino-head:before{content:"\e882"}.icofont-rhino:before{content:"\e883"}.icofont-rooster:before{content:"\e884"}.icofont-seahorse:before{content:"\e885"}.icofont-seal:before{content:"\e886"}.icofont-shrimp-alt:before{content:"\e887"}.icofont-shrimp:before{content:"\e888"}.icofont-snail-1:before{content:"\e889"}.icofont-snail-2:before{content:"\e88a"}.icofont-snail-3:before{content:"\e88b"}.icofont-snail:before{content:"\e88c"}.icofont-snake:before{content:"\e88d"}.icofont-squid:before{content:"\e88e"}.icofont-squirrel:before{content:"\e88f"}.icofont-tiger-face:before{content:"\e890"}.icofont-tiger:before{content:"\e891"}.icofont-turtle:before{content:"\e892"}.icofont-whale:before{content:"\e893"}.icofont-woodpecker:before{content:"\e894"}.icofont-zebra:before{content:"\e895"}.icofont-brand-acer:before{content:"\e896"}.icofont-brand-adidas:before{content:"\e897"}.icofont-brand-adobe:before{content:"\e898"}.icofont-brand-air-new-zealand:before{content:"\e899"}.icofont-brand-airbnb:before{content:"\e89a"}.icofont-brand-aircell:before{content:"\e89b"}.icofont-brand-airtel:before{content:"\e89c"}.icofont-brand-alcatel:before{content:"\e89d"}.icofont-brand-alibaba:before{content:"\e89e"}.icofont-brand-aliexpress:before{content:"\e89f"}.icofont-brand-alipay:before{content:"\e8a0"}.icofont-brand-amazon:before{content:"\e8a1"}.icofont-brand-amd:before{content:"\e8a2"}.icofont-brand-american-airlines:before{content:"\e8a3"}.icofont-brand-android-robot:before{content:"\e8a4"}.icofont-brand-android:before{content:"\e8a5"}.icofont-brand-aol:before{content:"\e8a6"}.icofont-brand-apple:before{content:"\e8a7"}.icofont-brand-appstore:before{content:"\e8a8"}.icofont-brand-asus:before{content:"\e8a9"}.icofont-brand-ati:before{content:"\e8aa"}.icofont-brand-att:before{content:"\e8ab"}.icofont-brand-audi:before{content:"\e8ac"}.icofont-brand-axiata:before{content:"\e8ad"}.icofont-brand-bada:before{content:"\e8ae"}.icofont-brand-bbc:before{content:"\e8af"}.icofont-brand-bing:before{content:"\e8b0"}.icofont-brand-blackberry:before{content:"\e8b1"}.icofont-brand-bmw:before{content:"\e8b2"}.icofont-brand-box:before{content:"\e8b3"}.icofont-brand-burger-king:before{content:"\e8b4"}.icofont-brand-business-insider:before{content:"\e8b5"}.icofont-brand-buzzfeed:before{content:"\e8b6"}.icofont-brand-cannon:before{content:"\e8b7"}.icofont-brand-casio:before{content:"\e8b8"}.icofont-brand-china-mobile:before{content:"\e8b9"}.icofont-brand-china-telecom:before{content:"\e8ba"}.icofont-brand-china-unicom:before{content:"\e8bb"}.icofont-brand-cisco:before{content:"\e8bc"}.icofont-brand-citibank:before{content:"\e8bd"}.icofont-brand-cnet:before{content:"\e8be"}.icofont-brand-cnn:before{content:"\e8bf"}.icofont-brand-cocal-cola:before{content:"\e8c0"}.icofont-brand-compaq:before{content:"\e8c1"}.icofont-brand-debian:before{content:"\e8c2"}.icofont-brand-delicious:before{content:"\e8c3"}.icofont-brand-dell:before{content:"\e8c4"}.icofont-brand-designbump:before{content:"\e8c5"}.icofont-brand-designfloat:before{content:"\e8c6"}.icofont-brand-disney:before{content:"\e8c7"}.icofont-brand-dodge:before{content:"\e8c8"}.icofont-brand-dove:before{content:"\e8c9"}.icofont-brand-drupal:before{content:"\e8ca"}.icofont-brand-ebay:before{content:"\e8cb"}.icofont-brand-eleven:before{content:"\e8cc"}.icofont-brand-emirates:before{content:"\e8cd"}.icofont-brand-espn:before{content:"\e8ce"}.icofont-brand-etihad-airways:before{content:"\e8cf"}.icofont-brand-etisalat:before{content:"\e8d0"}.icofont-brand-etsy:before{content:"\e8d1"}.icofont-brand-fastrack:before{content:"\e8d2"}.icofont-brand-fedex:before{content:"\e8d3"}.icofont-brand-ferrari:before{content:"\e8d4"}.icofont-brand-fitbit:before{content:"\e8d5"}.icofont-brand-flikr:before{content:"\e8d6"}.icofont-brand-forbes:before{content:"\e8d7"}.icofont-brand-foursquare:before{content:"\e8d8"}.icofont-brand-foxconn:before{content:"\e8d9"}.icofont-brand-fujitsu:before{content:"\e8da"}.icofont-brand-general-electric:before{content:"\e8db"}.icofont-brand-gillette:before{content:"\e8dc"}.icofont-brand-gizmodo:before{content:"\e8dd"}.icofont-brand-gnome:before{content:"\e8de"}.icofont-brand-google:before{content:"\e8df"}.icofont-brand-gopro:before{content:"\e8e0"}.icofont-brand-gucci:before{content:"\e8e1"}.icofont-brand-hallmark:before{content:"\e8e2"}.icofont-brand-hi5:before{content:"\e8e3"}.icofont-brand-honda:before{content:"\e8e4"}.icofont-brand-hp:before{content:"\e8e5"}.icofont-brand-hsbc:before{content:"\e8e6"}.icofont-brand-htc:before{content:"\e8e7"}.icofont-brand-huawei:before{content:"\e8e8"}.icofont-brand-hulu:before{content:"\e8e9"}.icofont-brand-hyundai:before{content:"\e8ea"}.icofont-brand-ibm:before{content:"\e8eb"}.icofont-brand-icofont:before{content:"\e8ec"}.icofont-brand-icq:before{content:"\e8ed"}.icofont-brand-ikea:before{content:"\e8ee"}.icofont-brand-imdb:before{content:"\e8ef"}.icofont-brand-indiegogo:before{content:"\e8f0"}.icofont-brand-intel:before{content:"\e8f1"}.icofont-brand-ipair:before{content:"\e8f2"}.icofont-brand-jaguar:before{content:"\e8f3"}.icofont-brand-java:before{content:"\e8f4"}.icofont-brand-joomla:before{content:"\e8f5"}.icofont-brand-kickstarter:before{content:"\e8f6"}.icofont-brand-kik:before{content:"\e8f7"}.icofont-brand-lastfm:before{content:"\e8f8"}.icofont-brand-lego:before{content:"\e8f9"}.icofont-brand-lenovo:before{content:"\e8fa"}.icofont-brand-levis:before{content:"\e8fb"}.icofont-brand-lexus:before{content:"\e8fc"}.icofont-brand-lg:before{content:"\e8fd"}.icofont-brand-life-hacker:before{content:"\e8fe"}.icofont-brand-linux-mint:before{content:"\e8ff"}.icofont-brand-linux:before{content:"\e900"}.icofont-brand-lionix:before{content:"\e901"}.icofont-brand-loreal:before{content:"\e902"}.icofont-brand-louis-vuitton:before{content:"\e903"}.icofont-brand-mac-os:before{content:"\e904"}.icofont-brand-marvel-app:before{content:"\e905"}.icofont-brand-mashable:before{content:"\e906"}.icofont-brand-mazda:before{content:"\e907"}.icofont-brand-mcdonals:before{content:"\e908"}.icofont-brand-mercedes:before{content:"\e909"}.icofont-brand-micromax:before{content:"\e90a"}.icofont-brand-microsoft:before{content:"\e90b"}.icofont-brand-mobileme:before{content:"\e90c"}.icofont-brand-mobily:before{content:"\e90d"}.icofont-brand-motorola:before{content:"\e90e"}.icofont-brand-msi:before{content:"\e90f"}.icofont-brand-mts:before{content:"\e910"}.icofont-brand-myspace:before{content:"\e911"}.icofont-brand-mytv:before{content:"\e912"}.icofont-brand-nasa:before{content:"\e913"}.icofont-brand-natgeo:before{content:"\e914"}.icofont-brand-nbc:before{content:"\e915"}.icofont-brand-nescafe:before{content:"\e916"}.icofont-brand-nestle:before{content:"\e917"}.icofont-brand-netflix:before{content:"\e918"}.icofont-brand-nexus:before{content:"\e919"}.icofont-brand-nike:before{content:"\e91a"}.icofont-brand-nokia:before{content:"\e91b"}.icofont-brand-nvidia:before{content:"\e91c"}.icofont-brand-omega:before{content:"\e91d"}.icofont-brand-opensuse:before{content:"\e91e"}.icofont-brand-oracle:before{content:"\e91f"}.icofont-brand-panasonic:before{content:"\e920"}.icofont-brand-paypal:before{content:"\e921"}.icofont-brand-pepsi:before{content:"\e922"}.icofont-brand-philips:before{content:"\e923"}.icofont-brand-pizza-hut:before{content:"\e924"}.icofont-brand-playstation:before{content:"\e925"}.icofont-brand-puma:before{content:"\e926"}.icofont-brand-qatar-air:before{content:"\e927"}.icofont-brand-qvc:before{content:"\e928"}.icofont-brand-readernaut:before{content:"\e929"}.icofont-brand-redbull:before{content:"\e92a"}.icofont-brand-reebok:before{content:"\e92b"}.icofont-brand-reuters:before{content:"\e92c"}.icofont-brand-samsung:before{content:"\e92d"}.icofont-brand-sap:before{content:"\e92e"}.icofont-brand-saudia-airlines:before{content:"\e92f"}.icofont-brand-scribd:before{content:"\e930"}.icofont-brand-shell:before{content:"\e931"}.icofont-brand-siemens:before{content:"\e932"}.icofont-brand-sk-telecom:before{content:"\e933"}.icofont-brand-slideshare:before{content:"\e934"}.icofont-brand-smashing-magazine:before{content:"\e935"}.icofont-brand-snapchat:before{content:"\e936"}.icofont-brand-sony-ericsson:before{content:"\e937"}.icofont-brand-sony:before{content:"\e938"}.icofont-brand-soundcloud:before{content:"\e939"}.icofont-brand-sprint:before{content:"\e93a"}.icofont-brand-squidoo:before{content:"\e93b"}.icofont-brand-starbucks:before{content:"\e93c"}.icofont-brand-stc:before{content:"\e93d"}.icofont-brand-steam:before{content:"\e93e"}.icofont-brand-suzuki:before{content:"\e93f"}.icofont-brand-symbian:before{content:"\e940"}.icofont-brand-t-mobile:before{content:"\e941"}.icofont-brand-tango:before{content:"\e942"}.icofont-brand-target:before{content:"\e943"}.icofont-brand-tata-indicom:before{content:"\e944"}.icofont-brand-techcrunch:before{content:"\e945"}.icofont-brand-telenor:before{content:"\e946"}.icofont-brand-teliasonera:before{content:"\e947"}.icofont-brand-tesla:before{content:"\e948"}.icofont-brand-the-verge:before{content:"\e949"}.icofont-brand-thenextweb:before{content:"\e94a"}.icofont-brand-toshiba:before{content:"\e94b"}.icofont-brand-toyota:before{content:"\e94c"}.icofont-brand-tribenet:before{content:"\e94d"}.icofont-brand-ubuntu:before{content:"\e94e"}.icofont-brand-unilever:before{content:"\e94f"}.icofont-brand-vaio:before{content:"\e950"}.icofont-brand-verizon:before{content:"\e951"}.icofont-brand-viber:before{content:"\e952"}.icofont-brand-vodafone:before{content:"\e953"}.icofont-brand-volkswagen:before{content:"\e954"}.icofont-brand-walmart:before{content:"\e955"}.icofont-brand-warnerbros:before{content:"\e956"}.icofont-brand-whatsapp:before{content:"\e957"}.icofont-brand-wikipedia:before{content:"\e958"}.icofont-brand-windows:before{content:"\e959"}.icofont-brand-wire:before{content:"\e95a"}.icofont-brand-wordpress:before{content:"\e95b"}.icofont-brand-xiaomi:before{content:"\e95c"}.icofont-brand-yahoobuzz:before{content:"\e95d"}.icofont-brand-yamaha:before{content:"\e95e"}.icofont-brand-youtube:before{content:"\e95f"}.icofont-brand-zain:before{content:"\e960"}.icofont-bank-alt:before{content:"\e961"}.icofont-bank:before{content:"\e962"}.icofont-barcode:before{content:"\e963"}.icofont-bill-alt:before{content:"\e964"}.icofont-billboard:before{content:"\e965"}.icofont-briefcase-1:before{content:"\e966"}.icofont-briefcase-2:before{content:"\e967"}.icofont-businessman:before{content:"\e968"}.icofont-businesswoman:before{content:"\e969"}.icofont-chair:before{content:"\e96a"}.icofont-coins:before{content:"\e96b"}.icofont-company:before{content:"\e96c"}.icofont-contact-add:before{content:"\e96d"}.icofont-files-stack:before{content:"\e96e"}.icofont-handshake-deal:before{content:"\e96f"}.icofont-id-card:before{content:"\e970"}.icofont-meeting-add:before{content:"\e971"}.icofont-money-bag:before{content:"\e972"}.icofont-pie-chart:before{content:"\e973"}.icofont-presentation-alt:before{content:"\e974"}.icofont-presentation:before{content:"\e975"}.icofont-stamp:before{content:"\e976"}.icofont-stock-mobile:before{content:"\e977"}.icofont-chart-arrows-axis:before{content:"\e978"}.icofont-chart-bar-graph:before{content:"\e979"}.icofont-chart-flow-1:before{content:"\e97a"}.icofont-chart-flow-2:before{content:"\e97b"}.icofont-chart-flow:before{content:"\e97c"}.icofont-chart-growth:before{content:"\e97d"}.icofont-chart-histogram-alt:before{content:"\e97e"}.icofont-chart-histogram:before{content:"\e97f"}.icofont-chart-line-alt:before{content:"\e980"}.icofont-chart-line:before{content:"\e981"}.icofont-chart-pie-alt:before{content:"\e982"}.icofont-chart-pie:before{content:"\e983"}.icofont-chart-radar-graph:before{content:"\e984"}.icofont-architecture-alt:before{content:"\e985"}.icofont-architecture:before{content:"\e986"}.icofont-barricade:before{content:"\e987"}.icofont-bolt:before{content:"\e988"}.icofont-bricks:before{content:"\e989"}.icofont-building-alt:before{content:"\e98a"}.icofont-bull-dozer:before{content:"\e98b"}.icofont-calculations:before{content:"\e98c"}.icofont-cement-mix:before{content:"\e98d"}.icofont-cement-mixer:before{content:"\e98e"}.icofont-concrete-mixer:before{content:"\e98f"}.icofont-danger-zone:before{content:"\e990"}.icofont-drill:before{content:"\e991"}.icofont-eco-energy:before{content:"\e992"}.icofont-eco-environmen:before{content:"\e993"}.icofont-energy-air:before{content:"\e994"}.icofont-energy-oil:before{content:"\e995"}.icofont-energy-savings:before{content:"\e996"}.icofont-energy-solar:before{content:"\e997"}.icofont-energy-water:before{content:"\e998"}.icofont-engineer:before{content:"\e999"}.icofont-fire-extinguisher-alt:before{content:"\e99a"}.icofont-fire-extinguisher:before{content:"\e99b"}.icofont-fix-tools:before{content:"\e99c"}.icofont-fork-lift:before{content:"\e99d"}.icofont-glue-oil:before{content:"\e99e"}.icofont-hammer-alt:before{content:"\e99f"}.icofont-hammer:before{content:"\e9a0"}.icofont-help-robot:before{content:"\e9a1"}.icofont-industries-1:before{content:"\e9a2"}.icofont-industries-2:before{content:"\e9a3"}.icofont-industries-3:before{content:"\e9a4"}.icofont-industries-4:before{content:"\e9a5"}.icofont-industries-5:before{content:"\e9a6"}.icofont-industries:before{content:"\e9a7"}.icofont-labour:before{content:"\e9a8"}.icofont-mining:before{content:"\e9a9"}.icofont-paint-brush:before{content:"\e9aa"}.icofont-pollution:before{content:"\e9ab"}.icofont-power-zone:before{content:"\e9ac"}.icofont-radio-active:before{content:"\e9ad"}.icofont-recycle-alt:before{content:"\e9ae"}.icofont-recycling-man:before{content:"\e9af"}.icofont-safety-hat-light:before{content:"\e9b0"}.icofont-safety-hat:before{content:"\e9b1"}.icofont-saw:before{content:"\e9b2"}.icofont-screw-driver:before{content:"\e9b3"}.icofont-tools-1:before{content:"\e9b4"}.icofont-tools-bag:before{content:"\e9b5"}.icofont-tow-truck:before{content:"\e9b6"}.icofont-trolley:before{content:"\e9b7"}.icofont-trowel:before{content:"\e9b8"}.icofont-under-construction-alt:before{content:"\e9b9"}.icofont-under-construction:before{content:"\e9ba"}.icofont-vehicle-cement:before{content:"\e9bb"}.icofont-vehicle-crane:before{content:"\e9bc"}.icofont-vehicle-delivery-van:before{content:"\e9bd"}.icofont-vehicle-dozer:before{content:"\e9be"}.icofont-vehicle-excavator:before{content:"\e9bf"}.icofont-vehicle-trucktor:before{content:"\e9c0"}.icofont-vehicle-wrecking:before{content:"\e9c1"}.icofont-worker:before{content:"\e9c2"}.icofont-workers-group:before{content:"\e9c3"}.icofont-wrench:before{content:"\e9c4"}.icofont-afghani-false:before{content:"\e9c5"}.icofont-afghani-minus:before{content:"\e9c6"}.icofont-afghani-plus:before{content:"\e9c7"}.icofont-afghani-true:before{content:"\e9c8"}.icofont-afghani:before{content:"\e9c9"}.icofont-baht-false:before{content:"\e9ca"}.icofont-baht-minus:before{content:"\e9cb"}.icofont-baht-plus:before{content:"\e9cc"}.icofont-baht-true:before{content:"\e9cd"}.icofont-baht:before{content:"\e9ce"}.icofont-bitcoin-false:before{content:"\e9cf"}.icofont-bitcoin-minus:before{content:"\e9d0"}.icofont-bitcoin-plus:before{content:"\e9d1"}.icofont-bitcoin-true:before{content:"\e9d2"}.icofont-bitcoin:before{content:"\e9d3"}.icofont-dollar-flase:before{content:"\e9d4"}.icofont-dollar-minus:before{content:"\e9d5"}.icofont-dollar-plus:before{content:"\e9d6"}.icofont-dollar-true:before{content:"\e9d7"}.icofont-dollar:before{content:"\e9d8"}.icofont-dong-false:before{content:"\e9d9"}.icofont-dong-minus:before{content:"\e9da"}.icofont-dong-plus:before{content:"\e9db"}.icofont-dong-true:before{content:"\e9dc"}.icofont-dong:before{content:"\e9dd"}.icofont-euro-false:before{content:"\e9de"}.icofont-euro-minus:before{content:"\e9df"}.icofont-euro-plus:before{content:"\e9e0"}.icofont-euro-true:before{content:"\e9e1"}.icofont-euro:before{content:"\e9e2"}.icofont-frank-false:before{content:"\e9e3"}.icofont-frank-minus:before{content:"\e9e4"}.icofont-frank-plus:before{content:"\e9e5"}.icofont-frank-true:before{content:"\e9e6"}.icofont-frank:before{content:"\e9e7"}.icofont-hryvnia-false:before{content:"\e9e8"}.icofont-hryvnia-minus:before{content:"\e9e9"}.icofont-hryvnia-plus:before{content:"\e9ea"}.icofont-hryvnia-true:before{content:"\e9eb"}.icofont-hryvnia:before{content:"\e9ec"}.icofont-lira-false:before{content:"\e9ed"}.icofont-lira-minus:before{content:"\e9ee"}.icofont-lira-plus:before{content:"\e9ef"}.icofont-lira-true:before{content:"\e9f0"}.icofont-lira:before{content:"\e9f1"}.icofont-peseta-false:before{content:"\e9f2"}.icofont-peseta-minus:before{content:"\e9f3"}.icofont-peseta-plus:before{content:"\e9f4"}.icofont-peseta-true:before{content:"\e9f5"}.icofont-peseta:before{content:"\e9f6"}.icofont-peso-false:before{content:"\e9f7"}.icofont-peso-minus:before{content:"\e9f8"}.icofont-peso-plus:before{content:"\e9f9"}.icofont-peso-true:before{content:"\e9fa"}.icofont-peso:before{content:"\e9fb"}.icofont-pound-false:before{content:"\e9fc"}.icofont-pound-minus:before{content:"\e9fd"}.icofont-pound-plus:before{content:"\e9fe"}.icofont-pound-true:before{content:"\e9ff"}.icofont-pound:before{content:"\ea00"}.icofont-renminbi-false:before{content:"\ea01"}.icofont-renminbi-minus:before{content:"\ea02"}.icofont-renminbi-plus:before{content:"\ea03"}.icofont-renminbi-true:before{content:"\ea04"}.icofont-renminbi:before{content:"\ea05"}.icofont-riyal-false:before{content:"\ea06"}.icofont-riyal-minus:before{content:"\ea07"}.icofont-riyal-plus:before{content:"\ea08"}.icofont-riyal-true:before{content:"\ea09"}.icofont-riyal:before{content:"\ea0a"}.icofont-rouble-false:before{content:"\ea0b"}.icofont-rouble-minus:before{content:"\ea0c"}.icofont-rouble-plus:before{content:"\ea0d"}.icofont-rouble-true:before{content:"\ea0e"}.icofont-rouble:before{content:"\ea0f"}.icofont-rupee-false:before{content:"\ea10"}.icofont-rupee-minus:before{content:"\ea11"}.icofont-rupee-plus:before{content:"\ea12"}.icofont-rupee-true:before{content:"\ea13"}.icofont-rupee:before{content:"\ea14"}.icofont-taka-false:before{content:"\ea15"}.icofont-taka-minus:before{content:"\ea16"}.icofont-taka-plus:before{content:"\ea17"}.icofont-taka-true:before{content:"\ea18"}.icofont-taka:before{content:"\ea19"}.icofont-turkish-lira-false:before{content:"\ea1a"}.icofont-turkish-lira-minus:before{content:"\ea1b"}.icofont-turkish-lira-plus:before{content:"\ea1c"}.icofont-turkish-lira-true:before{content:"\ea1d"}.icofont-turkish-lira:before{content:"\ea1e"}.icofont-won-false:before{content:"\ea1f"}.icofont-won-minus:before{content:"\ea20"}.icofont-won-plus:before{content:"\ea21"}.icofont-won-true:before{content:"\ea22"}.icofont-won:before{content:"\ea23"}.icofont-yen-false:before{content:"\ea24"}.icofont-yen-minus:before{content:"\ea25"}.icofont-yen-plus:before{content:"\ea26"}.icofont-yen-true:before{content:"\ea27"}.icofont-yen:before{content:"\ea28"}.icofont-android-nexus:before{content:"\ea29"}.icofont-android-tablet:before{content:"\ea2a"}.icofont-apple-watch:before{content:"\ea2b"}.icofont-drawing-tablet:before{content:"\ea2c"}.icofont-earphone:before{content:"\ea2d"}.icofont-flash-drive:before{content:"\ea2e"}.icofont-game-console:before{content:"\ea2f"}.icofont-game-controller:before{content:"\ea30"}.icofont-game-pad:before{content:"\ea31"}.icofont-game:before{content:"\ea32"}.icofont-headphone-alt-1:before{content:"\ea33"}.icofont-headphone-alt-2:before{content:"\ea34"}.icofont-headphone-alt-3:before{content:"\ea35"}.icofont-headphone-alt:before{content:"\ea36"}.icofont-headphone:before{content:"\ea37"}.icofont-htc-one:before{content:"\ea38"}.icofont-imac:before{content:"\ea39"}.icofont-ipad:before{content:"\ea3a"}.icofont-iphone:before{content:"\ea3b"}.icofont-ipod-nano:before{content:"\ea3c"}.icofont-ipod-touch:before{content:"\ea3d"}.icofont-keyboard-alt:before{content:"\ea3e"}.icofont-keyboard-wireless:before{content:"\ea3f"}.icofont-keyboard:before{content:"\ea40"}.icofont-laptop-alt:before{content:"\ea41"}.icofont-laptop:before{content:"\ea42"}.icofont-macbook:before{content:"\ea43"}.icofont-magic-mouse:before{content:"\ea44"}.icofont-micro-chip:before{content:"\ea45"}.icofont-microphone-alt:before{content:"\ea46"}.icofont-microphone:before{content:"\ea47"}.icofont-monitor:before{content:"\ea48"}.icofont-mouse:before{content:"\ea49"}.icofont-mp3-player:before{content:"\ea4a"}.icofont-nintendo:before{content:"\ea4b"}.icofont-playstation-alt:before{content:"\ea4c"}.icofont-psvita:before{content:"\ea4d"}.icofont-radio-mic:before{content:"\ea4e"}.icofont-radio:before{content:"\ea4f"}.icofont-refrigerator:before{content:"\ea50"}.icofont-samsung-galaxy:before{content:"\ea51"}.icofont-surface-tablet:before{content:"\ea52"}.icofont-ui-head-phone:before{content:"\ea53"}.icofont-ui-keyboard:before{content:"\ea54"}.icofont-washing-machine:before{content:"\ea55"}.icofont-wifi-router:before{content:"\ea56"}.icofont-wii-u:before{content:"\ea57"}.icofont-windows-lumia:before{content:"\ea58"}.icofont-wireless-mouse:before{content:"\ea59"}.icofont-xbox-360:before{content:"\ea5a"}.icofont-arrow-down:before{content:"\ea5b"}.icofont-arrow-left:before{content:"\ea5c"}.icofont-arrow-right:before{content:"\ea5d"}.icofont-arrow-up:before{content:"\ea5e"}.icofont-block-down:before{content:"\ea5f"}.icofont-block-left:before{content:"\ea60"}.icofont-block-right:before{content:"\ea61"}.icofont-block-up:before{content:"\ea62"}.icofont-bubble-down:before{content:"\ea63"}.icofont-bubble-left:before{content:"\ea64"}.icofont-bubble-right:before{content:"\ea65"}.icofont-bubble-up:before{content:"\ea66"}.icofont-caret-down:before{content:"\ea67"}.icofont-caret-left:before{content:"\ea68"}.icofont-caret-right:before{content:"\ea69"}.icofont-caret-up:before{content:"\ea6a"}.icofont-circled-down:before{content:"\ea6b"}.icofont-circled-left:before{content:"\ea6c"}.icofont-circled-right:before{content:"\ea6d"}.icofont-circled-up:before{content:"\ea6e"}.icofont-collapse:before{content:"\ea6f"}.icofont-cursor-drag:before{content:"\ea70"}.icofont-curved-double-left:before{content:"\ea71"}.icofont-curved-double-right:before{content:"\ea72"}.icofont-curved-down:before{content:"\ea73"}.icofont-curved-left:before{content:"\ea74"}.icofont-curved-right:before{content:"\ea75"}.icofont-curved-up:before{content:"\ea76"}.icofont-dotted-down:before{content:"\ea77"}.icofont-dotted-left:before{content:"\ea78"}.icofont-dotted-right:before{content:"\ea79"}.icofont-dotted-up:before{content:"\ea7a"}.icofont-double-left:before{content:"\ea7b"}.icofont-double-right:before{content:"\ea7c"}.icofont-expand-alt:before{content:"\ea7d"}.icofont-hand-down:before{content:"\ea7e"}.icofont-hand-drag:before{content:"\ea7f"}.icofont-hand-drag1:before{content:"\ea80"}.icofont-hand-drag2:before{content:"\ea81"}.icofont-hand-drawn-alt-down:before{content:"\ea82"}.icofont-hand-drawn-alt-left:before{content:"\ea83"}.icofont-hand-drawn-alt-right:before{content:"\ea84"}.icofont-hand-drawn-alt-up:before{content:"\ea85"}.icofont-hand-drawn-down:before{content:"\ea86"}.icofont-hand-drawn-left:before{content:"\ea87"}.icofont-hand-drawn-right:before{content:"\ea88"}.icofont-hand-drawn-up:before{content:"\ea89"}.icofont-hand-grippers:before{content:"\ea8a"}.icofont-hand-left:before{content:"\ea8b"}.icofont-hand-right:before{content:"\ea8c"}.icofont-hand-up:before{content:"\ea8d"}.icofont-line-block-down:before{content:"\ea8e"}.icofont-line-block-left:before{content:"\ea8f"}.icofont-line-block-right:before{content:"\ea90"}.icofont-line-block-up:before{content:"\ea91"}.icofont-long-arrow-down:before{content:"\ea92"}.icofont-long-arrow-left:before{content:"\ea93"}.icofont-long-arrow-right:before{content:"\ea94"}.icofont-long-arrow-up:before{content:"\ea95"}.icofont-rounded-collapse:before{content:"\ea96"}.icofont-rounded-double-left:before{content:"\ea97"}.icofont-rounded-double-right:before{content:"\ea98"}.icofont-rounded-down:before{content:"\ea99"}.icofont-rounded-expand:before{content:"\ea9a"}.icofont-rounded-left-down:before{content:"\ea9b"}.icofont-rounded-left-up:before{content:"\ea9c"}.icofont-rounded-left:before{content:"\ea9d"}.icofont-rounded-right-down:before{content:"\ea9e"}.icofont-rounded-right-up:before{content:"\ea9f"}.icofont-rounded-right:before{content:"\eaa0"}.icofont-rounded-up:before{content:"\eaa1"}.icofont-scroll-bubble-down:before{content:"\eaa2"}.icofont-scroll-bubble-left:before{content:"\eaa3"}.icofont-scroll-bubble-right:before{content:"\eaa4"}.icofont-scroll-bubble-up:before{content:"\eaa5"}.icofont-scroll-double-down:before{content:"\eaa6"}.icofont-scroll-double-left:before{content:"\eaa7"}.icofont-scroll-double-right:before{content:"\eaa8"}.icofont-scroll-double-up:before{content:"\eaa9"}.icofont-scroll-down:before{content:"\eaaa"}.icofont-scroll-left:before{content:"\eaab"}.icofont-scroll-long-down:before{content:"\eaac"}.icofont-scroll-long-left:before{content:"\eaad"}.icofont-scroll-long-right:before{content:"\eaae"}.icofont-scroll-long-up:before{content:"\eaaf"}.icofont-scroll-right:before{content:"\eab0"}.icofont-scroll-up:before{content:"\eab1"}.icofont-simple-down:before{content:"\eab2"}.icofont-simple-left-down:before{content:"\eab3"}.icofont-simple-left-up:before{content:"\eab4"}.icofont-simple-left:before{content:"\eab5"}.icofont-simple-right-down:before{content:"\eab6"}.icofont-simple-right-up:before{content:"\eab7"}.icofont-simple-right:before{content:"\eab8"}.icofont-simple-up:before{content:"\eab9"}.icofont-square-down:before{content:"\eaba"}.icofont-square-left:before{content:"\eabb"}.icofont-square-right:before{content:"\eabc"}.icofont-square-up:before{content:"\eabd"}.icofont-stylish-down:before{content:"\eabe"}.icofont-stylish-left:before{content:"\eabf"}.icofont-stylish-right:before{content:"\eac0"}.icofont-stylish-up:before{content:"\eac1"}.icofont-swoosh-down:before{content:"\eac2"}.icofont-swoosh-left:before{content:"\eac3"}.icofont-swoosh-right:before{content:"\eac4"}.icofont-swoosh-up:before{content:"\eac5"}.icofont-thin-double-left:before{content:"\eac6"}.icofont-thin-double-right:before{content:"\eac7"}.icofont-thin-down:before{content:"\eac8"}.icofont-thin-left:before{content:"\eac9"}.icofont-thin-right:before{content:"\eaca"}.icofont-thin-up:before{content:"\eacb"}.icofont-abc:before{content:"\eacc"}.icofont-atom:before{content:"\eacd"}.icofont-award:before{content:"\eace"}.icofont-bell-alt:before{content:"\eacf"}.icofont-black-board:before{content:"\ead0"}.icofont-book-alt:before{content:"\ead1"}.icofont-book:before{content:"\ead2"}.icofont-brainstorming:before{content:"\ead3"}.icofont-certificate-alt-1:before{content:"\ead4"}.icofont-certificate-alt-2:before{content:"\ead5"}.icofont-certificate:before{content:"\ead6"}.icofont-education:before{content:"\ead7"}.icofont-electron:before{content:"\ead8"}.icofont-fountain-pen:before{content:"\ead9"}.icofont-globe-alt:before{content:"\eada"}.icofont-graduate-alt:before{content:"\eadb"}.icofont-graduate:before{content:"\eadc"}.icofont-group-students:before{content:"\eadd"}.icofont-hat-alt:before{content:"\eade"}.icofont-hat:before{content:"\eadf"}.icofont-instrument:before{content:"\eae0"}.icofont-lamp-light:before{content:"\eae1"}.icofont-medal:before{content:"\eae2"}.icofont-microscope-alt:before{content:"\eae3"}.icofont-microscope:before{content:"\eae4"}.icofont-paper:before{content:"\eae5"}.icofont-pen-alt-4:before{content:"\eae6"}.icofont-pen-nib:before{content:"\eae7"}.icofont-pencil-alt-5:before{content:"\eae8"}.icofont-quill-pen:before{content:"\eae9"}.icofont-read-book-alt:before{content:"\eaea"}.icofont-read-book:before{content:"\eaeb"}.icofont-school-bag:before{content:"\eaec"}.icofont-school-bus:before{content:"\eaed"}.icofont-student-alt:before{content:"\eaee"}.icofont-student:before{content:"\eaef"}.icofont-teacher:before{content:"\eaf0"}.icofont-test-bulb:before{content:"\eaf1"}.icofont-test-tube-alt:before{content:"\eaf2"}.icofont-university:before{content:"\eaf3"}.icofont-angry:before{content:"\eaf4"}.icofont-astonished:before{content:"\eaf5"}.icofont-confounded:before{content:"\eaf6"}.icofont-confused:before{content:"\eaf7"}.icofont-crying:before{content:"\eaf8"}.icofont-dizzy:before{content:"\eaf9"}.icofont-expressionless:before{content:"\eafa"}.icofont-heart-eyes:before{content:"\eafb"}.icofont-laughing:before{content:"\eafc"}.icofont-nerd-smile:before{content:"\eafd"}.icofont-open-mouth:before{content:"\eafe"}.icofont-rage:before{content:"\eaff"}.icofont-rolling-eyes:before{content:"\eb00"}.icofont-sad:before{content:"\eb01"}.icofont-simple-smile:before{content:"\eb02"}.icofont-slightly-smile:before{content:"\eb03"}.icofont-smirk:before{content:"\eb04"}.icofont-stuck-out-tongue:before{content:"\eb05"}.icofont-wink-smile:before{content:"\eb06"}.icofont-worried:before{content:"\eb07"}.icofont-file-alt:before{content:"\eb08"}.icofont-file-audio:before{content:"\eb09"}.icofont-file-avi-mp4:before{content:"\eb0a"}.icofont-file-bmp:before{content:"\eb0b"}.icofont-file-code:before{content:"\eb0c"}.icofont-file-css:before{content:"\eb0d"}.icofont-file-document:before{content:"\eb0e"}.icofont-file-eps:before{content:"\eb0f"}.icofont-file-excel:before{content:"\eb10"}.icofont-file-exe:before{content:"\eb11"}.icofont-file-file:before{content:"\eb12"}.icofont-file-flv:before{content:"\eb13"}.icofont-file-gif:before{content:"\eb14"}.icofont-file-html5:before{content:"\eb15"}.icofont-file-image:before{content:"\eb16"}.icofont-file-iso:before{content:"\eb17"}.icofont-file-java:before{content:"\eb18"}.icofont-file-javascript:before{content:"\eb19"}.icofont-file-jpg:before{content:"\eb1a"}.icofont-file-midi:before{content:"\eb1b"}.icofont-file-mov:before{content:"\eb1c"}.icofont-file-mp3:before{content:"\eb1d"}.icofont-file-pdf:before{content:"\eb1e"}.icofont-file-php:before{content:"\eb1f"}.icofont-file-png:before{content:"\eb20"}.icofont-file-powerpoint:before{content:"\eb21"}.icofont-file-presentation:before{content:"\eb22"}.icofont-file-psb:before{content:"\eb23"}.icofont-file-psd:before{content:"\eb24"}.icofont-file-python:before{content:"\eb25"}.icofont-file-ruby:before{content:"\eb26"}.icofont-file-spreadsheet:before{content:"\eb27"}.icofont-file-sql:before{content:"\eb28"}.icofont-file-svg:before{content:"\eb29"}.icofont-file-text:before{content:"\eb2a"}.icofont-file-tiff:before{content:"\eb2b"}.icofont-file-video:before{content:"\eb2c"}.icofont-file-wave:before{content:"\eb2d"}.icofont-file-wmv:before{content:"\eb2e"}.icofont-file-word:before{content:"\eb2f"}.icofont-file-zip:before{content:"\eb30"}.icofont-cycling-alt:before{content:"\eb31"}.icofont-cycling:before{content:"\eb32"}.icofont-dumbbell:before{content:"\eb33"}.icofont-dumbbells:before{content:"\eb34"}.icofont-gym-alt-1:before{content:"\eb35"}.icofont-gym-alt-2:before{content:"\eb36"}.icofont-gym-alt-3:before{content:"\eb37"}.icofont-gym:before{content:"\eb38"}.icofont-muscle-weight:before{content:"\eb39"}.icofont-muscle:before{content:"\eb3a"}.icofont-apple:before{content:"\eb3b"}.icofont-arabian-coffee:before{content:"\eb3c"}.icofont-artichoke:before{content:"\eb3d"}.icofont-asparagus:before{content:"\eb3e"}.icofont-avocado:before{content:"\eb3f"}.icofont-baby-food:before{content:"\eb40"}.icofont-banana:before{content:"\eb41"}.icofont-bbq:before{content:"\eb42"}.icofont-beans:before{content:"\eb43"}.icofont-beer:before{content:"\eb44"}.icofont-bell-pepper-capsicum:before{content:"\eb45"}.icofont-birthday-cake:before{content:"\eb46"}.icofont-bread:before{content:"\eb47"}.icofont-broccoli:before{content:"\eb48"}.icofont-burger:before{content:"\eb49"}.icofont-cabbage:before{content:"\eb4a"}.icofont-carrot:before{content:"\eb4b"}.icofont-cauli-flower:before{content:"\eb4c"}.icofont-cheese:before{content:"\eb4d"}.icofont-chef:before{content:"\eb4e"}.icofont-cherry:before{content:"\eb4f"}.icofont-chicken-fry:before{content:"\eb50"}.icofont-chicken:before{content:"\eb51"}.icofont-cocktail:before{content:"\eb52"}.icofont-coconut-water:before{content:"\eb53"}.icofont-coconut:before{content:"\eb54"}.icofont-coffee-alt:before{content:"\eb55"}.icofont-coffee-cup:before{content:"\eb56"}.icofont-coffee-mug:before{content:"\eb57"}.icofont-coffee-pot:before{content:"\eb58"}.icofont-cola:before{content:"\eb59"}.icofont-corn:before{content:"\eb5a"}.icofont-croissant:before{content:"\eb5b"}.icofont-crop-plant:before{content:"\eb5c"}.icofont-cucumber:before{content:"\eb5d"}.icofont-culinary:before{content:"\eb5e"}.icofont-cup-cake:before{content:"\eb5f"}.icofont-dining-table:before{content:"\eb60"}.icofont-donut:before{content:"\eb61"}.icofont-egg-plant:before{content:"\eb62"}.icofont-egg-poached:before{content:"\eb63"}.icofont-farmer-alt:before{content:"\eb64"}.icofont-farmer:before{content:"\eb65"}.icofont-fast-food:before{content:"\eb66"}.icofont-food-basket:before{content:"\eb67"}.icofont-food-cart:before{content:"\eb68"}.icofont-fork-and-knife:before{content:"\eb69"}.icofont-french-fries:before{content:"\eb6a"}.icofont-fruits:before{content:"\eb6b"}.icofont-grapes:before{content:"\eb6c"}.icofont-honey:before{content:"\eb6d"}.icofont-hot-dog:before{content:"\eb6e"}.icofont-ice-cream-alt:before{content:"\eb6f"}.icofont-ice-cream:before{content:"\eb70"}.icofont-juice:before{content:"\eb71"}.icofont-ketchup:before{content:"\eb72"}.icofont-kiwi:before{content:"\eb73"}.icofont-layered-cake:before{content:"\eb74"}.icofont-lemon-alt:before{content:"\eb75"}.icofont-lemon:before{content:"\eb76"}.icofont-lobster:before{content:"\eb77"}.icofont-mango:before{content:"\eb78"}.icofont-milk:before{content:"\eb79"}.icofont-mushroom:before{content:"\eb7a"}.icofont-noodles:before{content:"\eb7b"}.icofont-onion:before{content:"\eb7c"}.icofont-orange:before{content:"\eb7d"}.icofont-pear:before{content:"\eb7e"}.icofont-peas:before{content:"\eb7f"}.icofont-pepper:before{content:"\eb80"}.icofont-pie-alt:before{content:"\eb81"}.icofont-pie:before{content:"\eb82"}.icofont-pineapple:before{content:"\eb83"}.icofont-pizza-slice:before{content:"\eb84"}.icofont-pizza:before{content:"\eb85"}.icofont-plant:before{content:"\eb86"}.icofont-popcorn:before{content:"\eb87"}.icofont-potato:before{content:"\eb88"}.icofont-pumpkin:before{content:"\eb89"}.icofont-raddish:before{content:"\eb8a"}.icofont-restaurant-menu:before{content:"\eb8b"}.icofont-restaurant:before{content:"\eb8c"}.icofont-salt-and-pepper:before{content:"\eb8d"}.icofont-sandwich:before{content:"\eb8e"}.icofont-sausage:before{content:"\eb8f"}.icofont-soft-drinks:before{content:"\eb90"}.icofont-soup-bowl:before{content:"\eb91"}.icofont-spoon-and-fork:before{content:"\eb92"}.icofont-steak:before{content:"\eb93"}.icofont-strawberry:before{content:"\eb94"}.icofont-sub-sandwich:before{content:"\eb95"}.icofont-sushi:before{content:"\eb96"}.icofont-taco:before{content:"\eb97"}.icofont-tea-pot:before{content:"\eb98"}.icofont-tea:before{content:"\eb99"}.icofont-tomato:before{content:"\eb9a"}.icofont-watermelon:before{content:"\eb9b"}.icofont-wheat:before{content:"\eb9c"}.icofont-baby-backpack:before{content:"\eb9d"}.icofont-baby-cloth:before{content:"\eb9e"}.icofont-baby-milk-bottle:before{content:"\eb9f"}.icofont-baby-trolley:before{content:"\eba0"}.icofont-baby:before{content:"\eba1"}.icofont-candy:before{content:"\eba2"}.icofont-holding-hands:before{content:"\eba3"}.icofont-infant-nipple:before{content:"\eba4"}.icofont-kids-scooter:before{content:"\eba5"}.icofont-safety-pin:before{content:"\eba6"}.icofont-teddy-bear:before{content:"\eba7"}.icofont-toy-ball:before{content:"\eba8"}.icofont-toy-cat:before{content:"\eba9"}.icofont-toy-duck:before{content:"\ebaa"}.icofont-toy-elephant:before{content:"\ebab"}.icofont-toy-hand:before{content:"\ebac"}.icofont-toy-horse:before{content:"\ebad"}.icofont-toy-lattu:before{content:"\ebae"}.icofont-toy-train:before{content:"\ebaf"}.icofont-burglar:before{content:"\ebb0"}.icofont-cannon-firing:before{content:"\ebb1"}.icofont-cc-camera:before{content:"\ebb2"}.icofont-cop-badge:before{content:"\ebb3"}.icofont-cop:before{content:"\ebb4"}.icofont-court-hammer:before{content:"\ebb5"}.icofont-court:before{content:"\ebb6"}.icofont-finger-print:before{content:"\ebb7"}.icofont-gavel:before{content:"\ebb8"}.icofont-handcuff-alt:before{content:"\ebb9"}.icofont-handcuff:before{content:"\ebba"}.icofont-investigation:before{content:"\ebbb"}.icofont-investigator:before{content:"\ebbc"}.icofont-jail:before{content:"\ebbd"}.icofont-judge:before{content:"\ebbe"}.icofont-law-alt-1:before{content:"\ebbf"}.icofont-law-alt-2:before{content:"\ebc0"}.icofont-law-alt-3:before{content:"\ebc1"}.icofont-law-book:before{content:"\ebc2"}.icofont-law-document:before{content:"\ebc3"}.icofont-law-order:before{content:"\ebc4"}.icofont-law-protect:before{content:"\ebc5"}.icofont-law-scales:before{content:"\ebc6"}.icofont-law:before{content:"\ebc7"}.icofont-lawyer-alt-1:before{content:"\ebc8"}.icofont-lawyer-alt-2:before{content:"\ebc9"}.icofont-lawyer:before{content:"\ebca"}.icofont-legal:before{content:"\ebcb"}.icofont-pistol:before{content:"\ebcc"}.icofont-police-badge:before{content:"\ebcd"}.icofont-police-cap:before{content:"\ebce"}.icofont-police-car-alt-1:before{content:"\ebcf"}.icofont-police-car-alt-2:before{content:"\ebd0"}.icofont-police-car:before{content:"\ebd1"}.icofont-police-hat:before{content:"\ebd2"}.icofont-police-van:before{content:"\ebd3"}.icofont-police:before{content:"\ebd4"}.icofont-thief-alt:before{content:"\ebd5"}.icofont-thief:before{content:"\ebd6"}.icofont-abacus-alt:before{content:"\ebd7"}.icofont-abacus:before{content:"\ebd8"}.icofont-angle-180:before{content:"\ebd9"}.icofont-angle-45:before{content:"\ebda"}.icofont-angle-90:before{content:"\ebdb"}.icofont-angle:before{content:"\ebdc"}.icofont-calculator-alt-1:before{content:"\ebdd"}.icofont-calculator-alt-2:before{content:"\ebde"}.icofont-calculator:before{content:"\ebdf"}.icofont-circle-ruler-alt:before{content:"\ebe0"}.icofont-circle-ruler:before{content:"\ebe1"}.icofont-compass-alt-1:before{content:"\ebe2"}.icofont-compass-alt-2:before{content:"\ebe3"}.icofont-compass-alt-3:before{content:"\ebe4"}.icofont-compass-alt-4:before{content:"\ebe5"}.icofont-golden-ratio:before{content:"\ebe6"}.icofont-marker-alt-1:before{content:"\ebe7"}.icofont-marker-alt-2:before{content:"\ebe8"}.icofont-marker-alt-3:before{content:"\ebe9"}.icofont-marker:before{content:"\ebea"}.icofont-math:before{content:"\ebeb"}.icofont-mathematical-alt-1:before{content:"\ebec"}.icofont-mathematical-alt-2:before{content:"\ebed"}.icofont-mathematical:before{content:"\ebee"}.icofont-pen-alt-1:before{content:"\ebef"}.icofont-pen-alt-2:before{content:"\ebf0"}.icofont-pen-alt-3:before{content:"\ebf1"}.icofont-pen-holder-alt-1:before{content:"\ebf2"}.icofont-pen-holder:before{content:"\ebf3"}.icofont-pen:before{content:"\ebf4"}.icofont-pencil-alt-1:before{content:"\ebf5"}.icofont-pencil-alt-2:before{content:"\ebf6"}.icofont-pencil-alt-3:before{content:"\ebf7"}.icofont-pencil-alt-4:before{content:"\ebf8"}.icofont-pencil:before{content:"\ebf9"}.icofont-ruler-alt-1:before{content:"\ebfa"}.icofont-ruler-alt-2:before{content:"\ebfb"}.icofont-ruler-compass-alt:before{content:"\ebfc"}.icofont-ruler-compass:before{content:"\ebfd"}.icofont-ruler-pencil-alt-1:before{content:"\ebfe"}.icofont-ruler-pencil-alt-2:before{content:"\ebff"}.icofont-ruler-pencil:before{content:"\ec00"}.icofont-ruler:before{content:"\ec01"}.icofont-rulers-alt:before{content:"\ec02"}.icofont-rulers:before{content:"\ec03"}.icofont-square-root:before{content:"\ec04"}.icofont-ui-calculator:before{content:"\ec05"}.icofont-aids:before{content:"\ec06"}.icofont-ambulance-crescent:before{content:"\ec07"}.icofont-ambulance-cross:before{content:"\ec08"}.icofont-ambulance:before{content:"\ec09"}.icofont-autism:before{content:"\ec0a"}.icofont-bandage:before{content:"\ec0b"}.icofont-blind:before{content:"\ec0c"}.icofont-blood-drop:before{content:"\ec0d"}.icofont-blood-test:before{content:"\ec0e"}.icofont-blood:before{content:"\ec0f"}.icofont-brain-alt:before{content:"\ec10"}.icofont-brain:before{content:"\ec11"}.icofont-capsule:before{content:"\ec12"}.icofont-crutch:before{content:"\ec13"}.icofont-disabled:before{content:"\ec14"}.icofont-dna-alt-1:before{content:"\ec15"}.icofont-dna-alt-2:before{content:"\ec16"}.icofont-dna:before{content:"\ec17"}.icofont-doctor-alt:before{content:"\ec18"}.icofont-doctor:before{content:"\ec19"}.icofont-drug-pack:before{content:"\ec1a"}.icofont-drug:before{content:"\ec1b"}.icofont-first-aid-alt:before{content:"\ec1c"}.icofont-first-aid:before{content:"\ec1d"}.icofont-heart-beat-alt:before{content:"\ec1e"}.icofont-heart-beat:before{content:"\ec1f"}.icofont-heartbeat:before{content:"\ec20"}.icofont-herbal:before{content:"\ec21"}.icofont-hospital:before{content:"\ec22"}.icofont-icu:before{content:"\ec23"}.icofont-injection-syringe:before{content:"\ec24"}.icofont-laboratory:before{content:"\ec25"}.icofont-medical-sign-alt:before{content:"\ec26"}.icofont-medical-sign:before{content:"\ec27"}.icofont-nurse-alt:before{content:"\ec28"}.icofont-nurse:before{content:"\ec29"}.icofont-nursing-home:before{content:"\ec2a"}.icofont-operation-theater:before{content:"\ec2b"}.icofont-paralysis-disability:before{content:"\ec2c"}.icofont-patient-bed:before{content:"\ec2d"}.icofont-patient-file:before{content:"\ec2e"}.icofont-pills:before{content:"\ec2f"}.icofont-prescription:before{content:"\ec30"}.icofont-pulse:before{content:"\ec31"}.icofont-stethoscope-alt:before{content:"\ec32"}.icofont-stethoscope:before{content:"\ec33"}.icofont-stretcher:before{content:"\ec34"}.icofont-surgeon-alt:before{content:"\ec35"}.icofont-surgeon:before{content:"\ec36"}.icofont-tablets:before{content:"\ec37"}.icofont-test-bottle:before{content:"\ec38"}.icofont-test-tube:before{content:"\ec39"}.icofont-thermometer-alt:before{content:"\ec3a"}.icofont-thermometer:before{content:"\ec3b"}.icofont-tooth:before{content:"\ec3c"}.icofont-xray:before{content:"\ec3d"}.icofont-ui-add:before{content:"\ec3e"}.icofont-ui-alarm:before{content:"\ec3f"}.icofont-ui-battery:before{content:"\ec40"}.icofont-ui-block:before{content:"\ec41"}.icofont-ui-bluetooth:before{content:"\ec42"}.icofont-ui-brightness:before{content:"\ec43"}.icofont-ui-browser:before{content:"\ec44"}.icofont-ui-calendar:before{content:"\ec45"}.icofont-ui-call:before{content:"\ec46"}.icofont-ui-camera:before{content:"\ec47"}.icofont-ui-cart:before{content:"\ec48"}.icofont-ui-cell-phone:before{content:"\ec49"}.icofont-ui-chat:before{content:"\ec4a"}.icofont-ui-check:before{content:"\ec4b"}.icofont-ui-clip-board:before{content:"\ec4c"}.icofont-ui-clip:before{content:"\ec4d"}.icofont-ui-clock:before{content:"\ec4e"}.icofont-ui-close:before{content:"\ec4f"}.icofont-ui-contact-list:before{content:"\ec50"}.icofont-ui-copy:before{content:"\ec51"}.icofont-ui-cut:before{content:"\ec52"}.icofont-ui-delete:before{content:"\ec53"}.icofont-ui-dial-phone:before{content:"\ec54"}.icofont-ui-edit:before{content:"\ec55"}.icofont-ui-email:before{content:"\ec56"}.icofont-ui-file:before{content:"\ec57"}.icofont-ui-fire-wall:before{content:"\ec58"}.icofont-ui-flash-light:before{content:"\ec59"}.icofont-ui-flight:before{content:"\ec5a"}.icofont-ui-folder:before{content:"\ec5b"}.icofont-ui-game:before{content:"\ec5c"}.icofont-ui-handicapped:before{content:"\ec5d"}.icofont-ui-home:before{content:"\ec5e"}.icofont-ui-image:before{content:"\ec5f"}.icofont-ui-laoding:before{content:"\ec60"}.icofont-ui-lock:before{content:"\ec61"}.icofont-ui-love-add:before{content:"\ec62"}.icofont-ui-love-broken:before{content:"\ec63"}.icofont-ui-love-remove:before{content:"\ec64"}.icofont-ui-love:before{content:"\ec65"}.icofont-ui-map:before{content:"\ec66"}.icofont-ui-message:before{content:"\ec67"}.icofont-ui-messaging:before{content:"\ec68"}.icofont-ui-movie:before{content:"\ec69"}.icofont-ui-music-player:before{content:"\ec6a"}.icofont-ui-music:before{content:"\ec6b"}.icofont-ui-mute:before{content:"\ec6c"}.icofont-ui-network:before{content:"\ec6d"}.icofont-ui-next:before{content:"\ec6e"}.icofont-ui-note:before{content:"\ec6f"}.icofont-ui-office:before{content:"\ec70"}.icofont-ui-password:before{content:"\ec71"}.icofont-ui-pause:before{content:"\ec72"}.icofont-ui-play-stop:before{content:"\ec73"}.icofont-ui-play:before{content:"\ec74"}.icofont-ui-pointer:before{content:"\ec75"}.icofont-ui-power:before{content:"\ec76"}.icofont-ui-press:before{content:"\ec77"}.icofont-ui-previous:before{content:"\ec78"}.icofont-ui-rate-add:before{content:"\ec79"}.icofont-ui-rate-blank:before{content:"\ec7a"}.icofont-ui-rate-remove:before{content:"\ec7b"}.icofont-ui-rating:before{content:"\ec7c"}.icofont-ui-record:before{content:"\ec7d"}.icofont-ui-remove:before{content:"\ec7e"}.icofont-ui-reply:before{content:"\ec7f"}.icofont-ui-rotation:before{content:"\ec80"}.icofont-ui-rss:before{content:"\ec81"}.icofont-ui-search:before{content:"\ec82"}.icofont-ui-settings:before{content:"\ec83"}.icofont-ui-social-link:before{content:"\ec84"}.icofont-ui-tag:before{content:"\ec85"}.icofont-ui-text-chat:before{content:"\ec86"}.icofont-ui-text-loading:before{content:"\ec87"}.icofont-ui-theme:before{content:"\ec88"}.icofont-ui-timer:before{content:"\ec89"}.icofont-ui-touch-phone:before{content:"\ec8a"}.icofont-ui-travel:before{content:"\ec8b"}.icofont-ui-unlock:before{content:"\ec8c"}.icofont-ui-user-group:before{content:"\ec8d"}.icofont-ui-user:before{content:"\ec8e"}.icofont-ui-v-card:before{content:"\ec8f"}.icofont-ui-video-chat:before{content:"\ec90"}.icofont-ui-video-message:before{content:"\ec91"}.icofont-ui-video-play:before{content:"\ec92"}.icofont-ui-video:before{content:"\ec93"}.icofont-ui-volume:before{content:"\ec94"}.icofont-ui-weather:before{content:"\ec95"}.icofont-ui-wifi:before{content:"\ec96"}.icofont-ui-zoom-in:before{content:"\ec97"}.icofont-ui-zoom-out:before{content:"\ec98"}.icofont-cassette-player:before{content:"\ec99"}.icofont-cassette:before{content:"\ec9a"}.icofont-forward:before{content:"\ec9b"}.icofont-guiter:before{content:"\ec9c"}.icofont-movie:before{content:"\ec9d"}.icofont-multimedia:before{content:"\ec9e"}.icofont-music-alt:before{content:"\ec9f"}.icofont-music-disk:before{content:"\eca0"}.icofont-music-note:before{content:"\eca1"}.icofont-music-notes:before{content:"\eca2"}.icofont-music:before{content:"\eca3"}.icofont-mute-volume:before{content:"\eca4"}.icofont-pause:before{content:"\eca5"}.icofont-play-alt-1:before{content:"\eca6"}.icofont-play-alt-2:before{content:"\eca7"}.icofont-play-alt-3:before{content:"\eca8"}.icofont-play-pause:before{content:"\eca9"}.icofont-play:before{content:"\ecaa"}.icofont-record:before{content:"\ecab"}.icofont-retro-music-disk:before{content:"\ecac"}.icofont-rewind:before{content:"\ecad"}.icofont-song-notes:before{content:"\ecae"}.icofont-sound-wave-alt:before{content:"\ecaf"}.icofont-sound-wave:before{content:"\ecb0"}.icofont-stop:before{content:"\ecb1"}.icofont-video-alt:before{content:"\ecb2"}.icofont-video-cam:before{content:"\ecb3"}.icofont-video-clapper:before{content:"\ecb4"}.icofont-video:before{content:"\ecb5"}.icofont-volume-bar:before{content:"\ecb6"}.icofont-volume-down:before{content:"\ecb7"}.icofont-volume-mute:before{content:"\ecb8"}.icofont-volume-off:before{content:"\ecb9"}.icofont-volume-up:before{content:"\ecba"}.icofont-youtube-play:before{content:"\ecbb"}.icofont-2checkout-alt:before{content:"\ecbc"}.icofont-2checkout:before{content:"\ecbd"}.icofont-amazon-alt:before{content:"\ecbe"}.icofont-amazon:before{content:"\ecbf"}.icofont-american-express-alt:before{content:"\ecc0"}.icofont-american-express:before{content:"\ecc1"}.icofont-apple-pay-alt:before{content:"\ecc2"}.icofont-apple-pay:before{content:"\ecc3"}.icofont-bank-transfer-alt:before{content:"\ecc4"}.icofont-bank-transfer:before{content:"\ecc5"}.icofont-braintree-alt:before{content:"\ecc6"}.icofont-braintree:before{content:"\ecc7"}.icofont-cash-on-delivery-alt:before{content:"\ecc8"}.icofont-cash-on-delivery:before{content:"\ecc9"}.icofont-diners-club-alt-1:before{content:"\ecca"}.icofont-diners-club-alt-2:before{content:"\eccb"}.icofont-diners-club-alt-3:before{content:"\eccc"}.icofont-diners-club:before{content:"\eccd"}.icofont-discover-alt:before{content:"\ecce"}.icofont-discover:before{content:"\eccf"}.icofont-eway-alt:before{content:"\ecd0"}.icofont-eway:before{content:"\ecd1"}.icofont-google-wallet-alt-1:before{content:"\ecd2"}.icofont-google-wallet-alt-2:before{content:"\ecd3"}.icofont-google-wallet-alt-3:before{content:"\ecd4"}.icofont-google-wallet:before{content:"\ecd5"}.icofont-jcb-alt:before{content:"\ecd6"}.icofont-jcb:before{content:"\ecd7"}.icofont-maestro-alt:before{content:"\ecd8"}.icofont-maestro:before{content:"\ecd9"}.icofont-mastercard-alt:before{content:"\ecda"}.icofont-mastercard:before{content:"\ecdb"}.icofont-payoneer-alt:before{content:"\ecdc"}.icofont-payoneer:before{content:"\ecdd"}.icofont-paypal-alt:before{content:"\ecde"}.icofont-paypal:before{content:"\ecdf"}.icofont-sage-alt:before{content:"\ece0"}.icofont-sage:before{content:"\ece1"}.icofont-skrill-alt:before{content:"\ece2"}.icofont-skrill:before{content:"\ece3"}.icofont-stripe-alt:before{content:"\ece4"}.icofont-stripe:before{content:"\ece5"}.icofont-visa-alt:before{content:"\ece6"}.icofont-visa-electron:before{content:"\ece7"}.icofont-visa:before{content:"\ece8"}.icofont-western-union-alt:before{content:"\ece9"}.icofont-western-union:before{content:"\ecea"}.icofont-boy:before{content:"\eceb"}.icofont-business-man-alt-1:before{content:"\ecec"}.icofont-business-man-alt-2:before{content:"\eced"}.icofont-business-man-alt-3:before{content:"\ecee"}.icofont-business-man:before{content:"\ecef"}.icofont-female:before{content:"\ecf0"}.icofont-funky-man:before{content:"\ecf1"}.icofont-girl-alt:before{content:"\ecf2"}.icofont-girl:before{content:"\ecf3"}.icofont-group:before{content:"\ecf4"}.icofont-hotel-boy-alt:before{content:"\ecf5"}.icofont-hotel-boy:before{content:"\ecf6"}.icofont-kid:before{content:"\ecf7"}.icofont-man-in-glasses:before{content:"\ecf8"}.icofont-people:before{content:"\ecf9"}.icofont-support:before{content:"\ecfa"}.icofont-user-alt-1:before{content:"\ecfb"}.icofont-user-alt-2:before{content:"\ecfc"}.icofont-user-alt-3:before{content:"\ecfd"}.icofont-user-alt-4:before{content:"\ecfe"}.icofont-user-alt-5:before{content:"\ecff"}.icofont-user-alt-6:before{content:"\ed00"}.icofont-user-alt-7:before{content:"\ed01"}.icofont-user-female:before{content:"\ed02"}.icofont-user-male:before{content:"\ed03"}.icofont-user-suited:before{content:"\ed04"}.icofont-user:before{content:"\ed05"}.icofont-users-alt-1:before{content:"\ed06"}.icofont-users-alt-2:before{content:"\ed07"}.icofont-users-alt-3:before{content:"\ed08"}.icofont-users-alt-4:before{content:"\ed09"}.icofont-users-alt-5:before{content:"\ed0a"}.icofont-users-alt-6:before{content:"\ed0b"}.icofont-users-social:before{content:"\ed0c"}.icofont-users:before{content:"\ed0d"}.icofont-waiter-alt:before{content:"\ed0e"}.icofont-waiter:before{content:"\ed0f"}.icofont-woman-in-glasses:before{content:"\ed10"}.icofont-search-1:before{content:"\ed11"}.icofont-search-2:before{content:"\ed12"}.icofont-search-document:before{content:"\ed13"}.icofont-search-folder:before{content:"\ed14"}.icofont-search-job:before{content:"\ed15"}.icofont-search-map:before{content:"\ed16"}.icofont-search-property:before{content:"\ed17"}.icofont-search-restaurant:before{content:"\ed18"}.icofont-search-stock:before{content:"\ed19"}.icofont-search-user:before{content:"\ed1a"}.icofont-search:before{content:"\ed1b"}.icofont-500px:before{content:"\ed1c"}.icofont-aim:before{content:"\ed1d"}.icofont-badoo:before{content:"\ed1e"}.icofont-baidu-tieba:before{content:"\ed1f"}.icofont-bbm-messenger:before{content:"\ed20"}.icofont-bebo:before{content:"\ed21"}.icofont-behance:before{content:"\ed22"}.icofont-blogger:before{content:"\ed23"}.icofont-bootstrap:before{content:"\ed24"}.icofont-brightkite:before{content:"\ed25"}.icofont-cloudapp:before{content:"\ed26"}.icofont-concrete5:before{content:"\ed27"}.icofont-delicious:before{content:"\ed28"}.icofont-designbump:before{content:"\ed29"}.icofont-designfloat:before{content:"\ed2a"}.icofont-deviantart:before{content:"\ed2b"}.icofont-digg:before{content:"\ed2c"}.icofont-dotcms:before{content:"\ed2d"}.icofont-dribbble:before{content:"\ed2e"}.icofont-dribble:before{content:"\ed2f"}.icofont-dropbox:before{content:"\ed30"}.icofont-ebuddy:before{content:"\ed31"}.icofont-ello:before{content:"\ed32"}.icofont-ember:before{content:"\ed33"}.icofont-envato:before{content:"\ed34"}.icofont-evernote:before{content:"\ed35"}.icofont-facebook-messenger:before{content:"\ed36"}.icofont-facebook:before{content:"\ed37"}.icofont-feedburner:before{content:"\ed38"}.icofont-flikr:before{content:"\ed39"}.icofont-folkd:before{content:"\ed3a"}.icofont-foursquare:before{content:"\ed3b"}.icofont-friendfeed:before{content:"\ed3c"}.icofont-ghost:before{content:"\ed3d"}.icofont-github:before{content:"\ed3e"}.icofont-gnome:before{content:"\ed3f"}.icofont-google-buzz:before{content:"\ed40"}.icofont-google-hangouts:before{content:"\ed41"}.icofont-google-map:before{content:"\ed42"}.icofont-google-plus:before{content:"\ed43"}.icofont-google-talk:before{content:"\ed44"}.icofont-hype-machine:before{content:"\ed45"}.icofont-instagram:before{content:"\ed46"}.icofont-kakaotalk:before{content:"\ed47"}.icofont-kickstarter:before{content:"\ed48"}.icofont-kik:before{content:"\ed49"}.icofont-kiwibox:before{content:"\ed4a"}.icofont-line-messenger:before{content:"\ed4b"}.icofont-line:before{content:"\ed4c"}.icofont-linkedin:before{content:"\ed4d"}.icofont-linux-mint:before{content:"\ed4e"}.icofont-live-messenger:before{content:"\ed4f"}.icofont-livejournal:before{content:"\ed50"}.icofont-magento:before{content:"\ed51"}.icofont-meetme:before{content:"\ed52"}.icofont-meetup:before{content:"\ed53"}.icofont-mixx:before{content:"\ed54"}.icofont-newsvine:before{content:"\ed55"}.icofont-nimbuss:before{content:"\ed56"}.icofont-odnoklassniki:before{content:"\ed57"}.icofont-opencart:before{content:"\ed58"}.icofont-oscommerce:before{content:"\ed59"}.icofont-pandora:before{content:"\ed5a"}.icofont-photobucket:before{content:"\ed5b"}.icofont-picasa:before{content:"\ed5c"}.icofont-pinterest:before{content:"\ed5d"}.icofont-prestashop:before{content:"\ed5e"}.icofont-qik:before{content:"\ed5f"}.icofont-qq:before{content:"\ed60"}.icofont-readernaut:before{content:"\ed61"}.icofont-reddit:before{content:"\ed62"}.icofont-renren:before{content:"\ed63"}.icofont-rss:before{content:"\ed64"}.icofont-shopify:before{content:"\ed65"}.icofont-silverstripe:before{content:"\ed66"}.icofont-skype:before{content:"\ed67"}.icofont-slack:before{content:"\ed68"}.icofont-slashdot:before{content:"\ed69"}.icofont-slidshare:before{content:"\ed6a"}.icofont-smugmug:before{content:"\ed6b"}.icofont-snapchat:before{content:"\ed6c"}.icofont-soundcloud:before{content:"\ed6d"}.icofont-spotify:before{content:"\ed6e"}.icofont-stack-exchange:before{content:"\ed6f"}.icofont-stack-overflow:before{content:"\ed70"}.icofont-steam:before{content:"\ed71"}.icofont-stumbleupon:before{content:"\ed72"}.icofont-tagged:before{content:"\ed73"}.icofont-technorati:before{content:"\ed74"}.icofont-telegram:before{content:"\ed75"}.icofont-tinder:before{content:"\ed76"}.icofont-trello:before{content:"\ed77"}.icofont-tumblr:before{content:"\ed78"}.icofont-twitch:before{content:"\ed79"}.icofont-twitter:before{content:"\ed7a"}.icofont-typo3:before{content:"\ed7b"}.icofont-ubercart:before{content:"\ed7c"}.icofont-viber:before{content:"\ed7d"}.icofont-viddler:before{content:"\ed7e"}.icofont-vimeo:before{content:"\ed7f"}.icofont-vine:before{content:"\ed80"}.icofont-virb:before{content:"\ed81"}.icofont-virtuemart:before{content:"\ed82"}.icofont-vk:before{content:"\ed83"}.icofont-wechat:before{content:"\ed84"}.icofont-weibo:before{content:"\ed85"}.icofont-whatsapp:before{content:"\ed86"}.icofont-xing:before{content:"\ed87"}.icofont-yahoo:before{content:"\ed88"}.icofont-yelp:before{content:"\ed89"}.icofont-youku:before{content:"\ed8a"}.icofont-youtube:before{content:"\ed8b"}.icofont-zencart:before{content:"\ed8c"}.icofont-badminton-birdie:before{content:"\ed8d"}.icofont-baseball:before{content:"\ed8e"}.icofont-baseballer:before{content:"\ed8f"}.icofont-basketball-hoop:before{content:"\ed90"}.icofont-basketball:before{content:"\ed91"}.icofont-billiard-ball:before{content:"\ed92"}.icofont-boot-alt-1:before{content:"\ed93"}.icofont-boot-alt-2:before{content:"\ed94"}.icofont-boot:before{content:"\ed95"}.icofont-bowling-alt:before{content:"\ed96"}.icofont-bowling:before{content:"\ed97"}.icofont-canoe:before{content:"\ed98"}.icofont-cheer-leader:before{content:"\ed99"}.icofont-climbing:before{content:"\ed9a"}.icofont-corner:before{content:"\ed9b"}.icofont-field-alt:before{content:"\ed9c"}.icofont-field:before{content:"\ed9d"}.icofont-football-alt:before{content:"\ed9e"}.icofont-football-american:before{content:"\ed9f"}.icofont-football:before{content:"\eda0"}.icofont-foul:before{content:"\eda1"}.icofont-goal-keeper:before{content:"\eda2"}.icofont-goal:before{content:"\eda3"}.icofont-golf-alt:before{content:"\eda4"}.icofont-golf-bag:before{content:"\eda5"}.icofont-golf-cart:before{content:"\eda6"}.icofont-golf-field:before{content:"\eda7"}.icofont-golf:before{content:"\eda8"}.icofont-golfer:before{content:"\eda9"}.icofont-helmet:before{content:"\edaa"}.icofont-hockey-alt:before{content:"\edab"}.icofont-hockey:before{content:"\edac"}.icofont-ice-skate:before{content:"\edad"}.icofont-jersey-alt:before{content:"\edae"}.icofont-jersey:before{content:"\edaf"}.icofont-jumping:before{content:"\edb0"}.icofont-kick:before{content:"\edb1"}.icofont-leg:before{content:"\edb2"}.icofont-match-review:before{content:"\edb3"}.icofont-medal-sport:before{content:"\edb4"}.icofont-offside:before{content:"\edb5"}.icofont-olympic-logo:before{content:"\edb6"}.icofont-olympic:before{content:"\edb7"}.icofont-padding:before{content:"\edb8"}.icofont-penalty-card:before{content:"\edb9"}.icofont-racer:before{content:"\edba"}.icofont-racing-car:before{content:"\edbb"}.icofont-racing-flag-alt:before{content:"\edbc"}.icofont-racing-flag:before{content:"\edbd"}.icofont-racings-wheel:before{content:"\edbe"}.icofont-referee:before{content:"\edbf"}.icofont-refree-jersey:before{content:"\edc0"}.icofont-result-sport:before{content:"\edc1"}.icofont-rugby-ball:before{content:"\edc2"}.icofont-rugby-player:before{content:"\edc3"}.icofont-rugby:before{content:"\edc4"}.icofont-runner-alt-1:before{content:"\edc5"}.icofont-runner-alt-2:before{content:"\edc6"}.icofont-runner:before{content:"\edc7"}.icofont-score-board:before{content:"\edc8"}.icofont-skiing-man:before{content:"\edc9"}.icofont-skydiving-goggles:before{content:"\edca"}.icofont-snow-mobile:before{content:"\edcb"}.icofont-steering:before{content:"\edcc"}.icofont-stopwatch:before{content:"\edcd"}.icofont-substitute:before{content:"\edce"}.icofont-swimmer:before{content:"\edcf"}.icofont-table-tennis:before{content:"\edd0"}.icofont-team-alt:before{content:"\edd1"}.icofont-team:before{content:"\edd2"}.icofont-tennis-player:before{content:"\edd3"}.icofont-tennis:before{content:"\edd4"}.icofont-tracking:before{content:"\edd5"}.icofont-trophy-alt:before{content:"\edd6"}.icofont-trophy:before{content:"\edd7"}.icofont-volleyball-alt:before{content:"\edd8"}.icofont-volleyball-fire:before{content:"\edd9"}.icofont-volleyball:before{content:"\edda"}.icofont-water-bottle:before{content:"\eddb"}.icofont-whistle-alt:before{content:"\eddc"}.icofont-whistle:before{content:"\eddd"}.icofont-win-trophy:before{content:"\edde"}.icofont-align-center:before{content:"\eddf"}.icofont-align-left:before{content:"\ede0"}.icofont-align-right:before{content:"\ede1"}.icofont-all-caps:before{content:"\ede2"}.icofont-bold:before{content:"\ede3"}.icofont-brush:before{content:"\ede4"}.icofont-clip-board:before{content:"\ede5"}.icofont-code-alt:before{content:"\ede6"}.icofont-color-bucket:before{content:"\ede7"}.icofont-color-picker:before{content:"\ede8"}.icofont-copy-invert:before{content:"\ede9"}.icofont-copy:before{content:"\edea"}.icofont-cut:before{content:"\edeb"}.icofont-delete-alt:before{content:"\edec"}.icofont-edit-alt:before{content:"\eded"}.icofont-eraser-alt:before{content:"\edee"}.icofont-font:before{content:"\edef"}.icofont-heading:before{content:"\edf0"}.icofont-indent:before{content:"\edf1"}.icofont-italic-alt:before{content:"\edf2"}.icofont-italic:before{content:"\edf3"}.icofont-justify-all:before{content:"\edf4"}.icofont-justify-center:before{content:"\edf5"}.icofont-justify-left:before{content:"\edf6"}.icofont-justify-right:before{content:"\edf7"}.icofont-link-broken:before{content:"\edf8"}.icofont-outdent:before{content:"\edf9"}.icofont-paper-clip:before{content:"\edfa"}.icofont-paragraph:before{content:"\edfb"}.icofont-pin:before{content:"\edfc"}.icofont-printer:before{content:"\edfd"}.icofont-redo:before{content:"\edfe"}.icofont-rotation:before{content:"\edff"}.icofont-save:before{content:"\ee00"}.icofont-small-cap:before{content:"\ee01"}.icofont-strike-through:before{content:"\ee02"}.icofont-sub-listing:before{content:"\ee03"}.icofont-subscript:before{content:"\ee04"}.icofont-superscript:before{content:"\ee05"}.icofont-table:before{content:"\ee06"}.icofont-text-height:before{content:"\ee07"}.icofont-text-width:before{content:"\ee08"}.icofont-trash:before{content:"\ee09"}.icofont-underline:before{content:"\ee0a"}.icofont-undo:before{content:"\ee0b"}.icofont-air-balloon:before{content:"\ee0c"}.icofont-airplane-alt:before{content:"\ee0d"}.icofont-airplane:before{content:"\ee0e"}.icofont-articulated-truck:before{content:"\ee0f"}.icofont-auto-mobile:before{content:"\ee10"}.icofont-auto-rickshaw:before{content:"\ee11"}.icofont-bicycle-alt-1:before{content:"\ee12"}.icofont-bicycle-alt-2:before{content:"\ee13"}.icofont-bicycle:before{content:"\ee14"}.icofont-bus-alt-1:before{content:"\ee15"}.icofont-bus-alt-2:before{content:"\ee16"}.icofont-bus-alt-3:before{content:"\ee17"}.icofont-bus:before{content:"\ee18"}.icofont-cab:before{content:"\ee19"}.icofont-cable-car:before{content:"\ee1a"}.icofont-car-alt-1:before{content:"\ee1b"}.icofont-car-alt-2:before{content:"\ee1c"}.icofont-car-alt-3:before{content:"\ee1d"}.icofont-car-alt-4:before{content:"\ee1e"}.icofont-car:before{content:"\ee1f"}.icofont-delivery-time:before{content:"\ee20"}.icofont-fast-delivery:before{content:"\ee21"}.icofont-fire-truck-alt:before{content:"\ee22"}.icofont-fire-truck:before{content:"\ee23"}.icofont-free-delivery:before{content:"\ee24"}.icofont-helicopter:before{content:"\ee25"}.icofont-motor-bike-alt:before{content:"\ee26"}.icofont-motor-bike:before{content:"\ee27"}.icofont-motor-biker:before{content:"\ee28"}.icofont-oil-truck:before{content:"\ee29"}.icofont-rickshaw:before{content:"\ee2a"}.icofont-rocket-alt-1:before{content:"\ee2b"}.icofont-rocket-alt-2:before{content:"\ee2c"}.icofont-rocket:before{content:"\ee2d"}.icofont-sail-boat-alt-1:before{content:"\ee2e"}.icofont-sail-boat-alt-2:before{content:"\ee2f"}.icofont-sail-boat:before{content:"\ee30"}.icofont-scooter:before{content:"\ee31"}.icofont-sea-plane:before{content:"\ee32"}.icofont-ship-alt:before{content:"\ee33"}.icofont-ship:before{content:"\ee34"}.icofont-speed-boat:before{content:"\ee35"}.icofont-taxi:before{content:"\ee36"}.icofont-tractor:before{content:"\ee37"}.icofont-train-line:before{content:"\ee38"}.icofont-train-steam:before{content:"\ee39"}.icofont-tram:before{content:"\ee3a"}.icofont-truck-alt:before{content:"\ee3b"}.icofont-truck-loaded:before{content:"\ee3c"}.icofont-truck:before{content:"\ee3d"}.icofont-van-alt:before{content:"\ee3e"}.icofont-van:before{content:"\ee3f"}.icofont-yacht:before{content:"\ee40"}.icofont-5-star-hotel:before{content:"\ee41"}.icofont-air-ticket:before{content:"\ee42"}.icofont-beach-bed:before{content:"\ee43"}.icofont-beach:before{content:"\ee44"}.icofont-camping-vest:before{content:"\ee45"}.icofont-direction-sign:before{content:"\ee46"}.icofont-hill-side:before{content:"\ee47"}.icofont-hill:before{content:"\ee48"}.icofont-hotel:before{content:"\ee49"}.icofont-island-alt:before{content:"\ee4a"}.icofont-island:before{content:"\ee4b"}.icofont-sandals-female:before{content:"\ee4c"}.icofont-sandals-male:before{content:"\ee4d"}.icofont-travelling:before{content:"\ee4e"}.icofont-breakdown:before{content:"\ee4f"}.icofont-celsius:before{content:"\ee50"}.icofont-clouds:before{content:"\ee51"}.icofont-cloudy:before{content:"\ee52"}.icofont-dust:before{content:"\ee53"}.icofont-eclipse:before{content:"\ee54"}.icofont-fahrenheit:before{content:"\ee55"}.icofont-forest-fire:before{content:"\ee56"}.icofont-full-night:before{content:"\ee57"}.icofont-full-sunny:before{content:"\ee58"}.icofont-hail-night:before{content:"\ee59"}.icofont-hail-rainy-night:before{content:"\ee5a"}.icofont-hail-rainy-sunny:before{content:"\ee5b"}.icofont-hail-rainy:before{content:"\ee5c"}.icofont-hail-sunny:before{content:"\ee5d"}.icofont-hail-thunder-night:before{content:"\ee5e"}.icofont-hail-thunder-sunny:before{content:"\ee5f"}.icofont-hail-thunder:before{content:"\ee60"}.icofont-hail:before{content:"\ee61"}.icofont-hill-night:before{content:"\ee62"}.icofont-hill-sunny:before{content:"\ee63"}.icofont-hurricane:before{content:"\ee64"}.icofont-meteor:before{content:"\ee65"}.icofont-night:before{content:"\ee66"}.icofont-rainy-night:before{content:"\ee67"}.icofont-rainy-sunny:before{content:"\ee68"}.icofont-rainy-thunder:before{content:"\ee69"}.icofont-rainy:before{content:"\ee6a"}.icofont-snow-alt:before{content:"\ee6b"}.icofont-snow-flake:before{content:"\ee6c"}.icofont-snow-temp:before{content:"\ee6d"}.icofont-snow:before{content:"\ee6e"}.icofont-snowy-hail:before{content:"\ee6f"}.icofont-snowy-night-hail:before{content:"\ee70"}.icofont-snowy-night-rainy:before{content:"\ee71"}.icofont-snowy-night:before{content:"\ee72"}.icofont-snowy-rainy:before{content:"\ee73"}.icofont-snowy-sunny-hail:before{content:"\ee74"}.icofont-snowy-sunny-rainy:before{content:"\ee75"}.icofont-snowy-sunny:before{content:"\ee76"}.icofont-snowy-thunder-night:before{content:"\ee77"}.icofont-snowy-thunder-sunny:before{content:"\ee78"}.icofont-snowy-thunder:before{content:"\ee79"}.icofont-snowy-windy-night:before{content:"\ee7a"}.icofont-snowy-windy-sunny:before{content:"\ee7b"}.icofont-snowy-windy:before{content:"\ee7c"}.icofont-snowy:before{content:"\ee7d"}.icofont-sun-alt:before{content:"\ee7e"}.icofont-sun-rise:before{content:"\ee7f"}.icofont-sun-set:before{content:"\ee80"}.icofont-sun:before{content:"\ee81"}.icofont-sunny-day-temp:before{content:"\ee82"}.icofont-sunny:before{content:"\ee83"}.icofont-thunder-light:before{content:"\ee84"}.icofont-tornado:before{content:"\ee85"}.icofont-umbrella-alt:before{content:"\ee86"}.icofont-umbrella:before{content:"\ee87"}.icofont-volcano:before{content:"\ee88"}.icofont-wave:before{content:"\ee89"}.icofont-wind-scale-0:before{content:"\ee8a"}.icofont-wind-scale-1:before{content:"\ee8b"}.icofont-wind-scale-10:before{content:"\ee8c"}.icofont-wind-scale-11:before{content:"\ee8d"}.icofont-wind-scale-12:before{content:"\ee8e"}.icofont-wind-scale-2:before{content:"\ee8f"}.icofont-wind-scale-3:before{content:"\ee90"}.icofont-wind-scale-4:before{content:"\ee91"}.icofont-wind-scale-5:before{content:"\ee92"}.icofont-wind-scale-6:before{content:"\ee93"}.icofont-wind-scale-7:before{content:"\ee94"}.icofont-wind-scale-8:before{content:"\ee95"}.icofont-wind-scale-9:before{content:"\ee96"}.icofont-wind-waves:before{content:"\ee97"}.icofont-wind:before{content:"\ee98"}.icofont-windy-hail:before{content:"\ee99"}.icofont-windy-night:before{content:"\ee9a"}.icofont-windy-raining:before{content:"\ee9b"}.icofont-windy-sunny:before{content:"\ee9c"}.icofont-windy-thunder-raining:before{content:"\ee9d"}.icofont-windy-thunder:before{content:"\ee9e"}.icofont-windy:before{content:"\ee9f"}.icofont-addons:before{content:"\eea0"}.icofont-address-book:before{content:"\eea1"}.icofont-adjust:before{content:"\eea2"}.icofont-alarm:before{content:"\eea3"}.icofont-anchor:before{content:"\eea4"}.icofont-archive:before{content:"\eea5"}.icofont-at:before{content:"\eea6"}.icofont-attachment:before{content:"\eea7"}.icofont-audio:before{content:"\eea8"}.icofont-automation:before{content:"\eea9"}.icofont-badge:before{content:"\eeaa"}.icofont-bag-alt:before{content:"\eeab"}.icofont-bag:before{content:"\eeac"}.icofont-ban:before{content:"\eead"}.icofont-bar-code:before{content:"\eeae"}.icofont-bars:before{content:"\eeaf"}.icofont-basket:before{content:"\eeb0"}.icofont-battery-empty:before{content:"\eeb1"}.icofont-battery-full:before{content:"\eeb2"}.icofont-battery-half:before{content:"\eeb3"}.icofont-battery-low:before{content:"\eeb4"}.icofont-beaker:before{content:"\eeb5"}.icofont-beard:before{content:"\eeb6"}.icofont-bed:before{content:"\eeb7"}.icofont-bell:before{content:"\eeb8"}.icofont-beverage:before{content:"\eeb9"}.icofont-bill:before{content:"\eeba"}.icofont-bin:before{content:"\eebb"}.icofont-binary:before{content:"\eebc"}.icofont-binoculars:before{content:"\eebd"}.icofont-bluetooth:before{content:"\eebe"}.icofont-bomb:before{content:"\eebf"}.icofont-book-mark:before{content:"\eec0"}.icofont-box:before{content:"\eec1"}.icofont-briefcase:before{content:"\eec2"}.icofont-broken:before{content:"\eec3"}.icofont-bucket:before{content:"\eec4"}.icofont-bucket1:before{content:"\eec5"}.icofont-bucket2:before{content:"\eec6"}.icofont-bug:before{content:"\eec7"}.icofont-building:before{content:"\eec8"}.icofont-bulb-alt:before{content:"\eec9"}.icofont-bullet:before{content:"\eeca"}.icofont-bullhorn:before{content:"\eecb"}.icofont-bullseye:before{content:"\eecc"}.icofont-calendar:before{content:"\eecd"}.icofont-camera-alt:before{content:"\eece"}.icofont-camera:before{content:"\eecf"}.icofont-card:before{content:"\eed0"}.icofont-cart-alt:before{content:"\eed1"}.icofont-cart:before{content:"\eed2"}.icofont-cc:before{content:"\eed3"}.icofont-charging:before{content:"\eed4"}.icofont-chat:before{content:"\eed5"}.icofont-check-alt:before{content:"\eed6"}.icofont-check-circled:before{content:"\eed7"}.icofont-check:before{content:"\eed8"}.icofont-checked:before{content:"\eed9"}.icofont-children-care:before{content:"\eeda"}.icofont-clip:before{content:"\eedb"}.icofont-clock-time:before{content:"\eedc"}.icofont-close-circled:before{content:"\eedd"}.icofont-close-line-circled:before{content:"\eede"}.icofont-close-line-squared-alt:before{content:"\eedf"}.icofont-close-line-squared:before{content:"\eee0"}.icofont-close-line:before{content:"\eee1"}.icofont-close-squared-alt:before{content:"\eee2"}.icofont-close-squared:before{content:"\eee3"}.icofont-close:before{content:"\eee4"}.icofont-cloud-download:before{content:"\eee5"}.icofont-cloud-refresh:before{content:"\eee6"}.icofont-cloud-upload:before{content:"\eee7"}.icofont-cloud:before{content:"\eee8"}.icofont-code-not-allowed:before{content:"\eee9"}.icofont-code:before{content:"\eeea"}.icofont-comment:before{content:"\eeeb"}.icofont-compass-alt:before{content:"\eeec"}.icofont-compass:before{content:"\eeed"}.icofont-computer:before{content:"\eeee"}.icofont-connection:before{content:"\eeef"}.icofont-console:before{content:"\eef0"}.icofont-contacts:before{content:"\eef1"}.icofont-contrast:before{content:"\eef2"}.icofont-copyright:before{content:"\eef3"}.icofont-credit-card:before{content:"\eef4"}.icofont-crop:before{content:"\eef5"}.icofont-crown:before{content:"\eef6"}.icofont-cube:before{content:"\eef7"}.icofont-cubes:before{content:"\eef8"}.icofont-dashboard-web:before{content:"\eef9"}.icofont-dashboard:before{content:"\eefa"}.icofont-data:before{content:"\eefb"}.icofont-database-add:before{content:"\eefc"}.icofont-database-locked:before{content:"\eefd"}.icofont-database-remove:before{content:"\eefe"}.icofont-database:before{content:"\eeff"}.icofont-delete:before{content:"\ef00"}.icofont-diamond:before{content:"\ef01"}.icofont-dice-multiple:before{content:"\ef02"}.icofont-dice:before{content:"\ef03"}.icofont-disc:before{content:"\ef04"}.icofont-diskette:before{content:"\ef05"}.icofont-document-folder:before{content:"\ef06"}.icofont-download-alt:before{content:"\ef07"}.icofont-download:before{content:"\ef08"}.icofont-downloaded:before{content:"\ef09"}.icofont-drag:before{content:"\ef0a"}.icofont-drag1:before{content:"\ef0b"}.icofont-drag2:before{content:"\ef0c"}.icofont-drag3:before{content:"\ef0d"}.icofont-earth:before{content:"\ef0e"}.icofont-ebook:before{content:"\ef0f"}.icofont-edit:before{content:"\ef10"}.icofont-eject:before{content:"\ef11"}.icofont-email:before{content:"\ef12"}.icofont-envelope-open:before{content:"\ef13"}.icofont-envelope:before{content:"\ef14"}.icofont-eraser:before{content:"\ef15"}.icofont-error:before{content:"\ef16"}.icofont-excavator:before{content:"\ef17"}.icofont-exchange:before{content:"\ef18"}.icofont-exclamation-circle:before{content:"\ef19"}.icofont-exclamation-square:before{content:"\ef1a"}.icofont-exclamation-tringle:before{content:"\ef1b"}.icofont-exclamation:before{content:"\ef1c"}.icofont-exit:before{content:"\ef1d"}.icofont-expand:before{content:"\ef1e"}.icofont-external-link:before{content:"\ef1f"}.icofont-external:before{content:"\ef20"}.icofont-eye-alt:before{content:"\ef21"}.icofont-eye-blocked:before{content:"\ef22"}.icofont-eye-dropper:before{content:"\ef23"}.icofont-eye:before{content:"\ef24"}.icofont-favourite:before{content:"\ef25"}.icofont-fax:before{content:"\ef26"}.icofont-file-fill:before{content:"\ef27"}.icofont-film:before{content:"\ef28"}.icofont-filter:before{content:"\ef29"}.icofont-fire-alt:before{content:"\ef2a"}.icofont-fire-burn:before{content:"\ef2b"}.icofont-fire:before{content:"\ef2c"}.icofont-flag-alt-1:before{content:"\ef2d"}.icofont-flag-alt-2:before{content:"\ef2e"}.icofont-flag:before{content:"\ef2f"}.icofont-flame-torch:before{content:"\ef30"}.icofont-flash-light:before{content:"\ef31"}.icofont-flash:before{content:"\ef32"}.icofont-flask:before{content:"\ef33"}.icofont-focus:before{content:"\ef34"}.icofont-folder-open:before{content:"\ef35"}.icofont-folder:before{content:"\ef36"}.icofont-foot-print:before{content:"\ef37"}.icofont-garbage:before{content:"\ef38"}.icofont-gear-alt:before{content:"\ef39"}.icofont-gear:before{content:"\ef3a"}.icofont-gears:before{content:"\ef3b"}.icofont-gift:before{content:"\ef3c"}.icofont-glass:before{content:"\ef3d"}.icofont-globe:before{content:"\ef3e"}.icofont-graffiti:before{content:"\ef3f"}.icofont-grocery:before{content:"\ef40"}.icofont-hand:before{content:"\ef41"}.icofont-hanger:before{content:"\ef42"}.icofont-hard-disk:before{content:"\ef43"}.icofont-heart-alt:before{content:"\ef44"}.icofont-heart:before{content:"\ef45"}.icofont-history:before{content:"\ef46"}.icofont-home:before{content:"\ef47"}.icofont-horn:before{content:"\ef48"}.icofont-hour-glass:before{content:"\ef49"}.icofont-id:before{content:"\ef4a"}.icofont-image:before{content:"\ef4b"}.icofont-inbox:before{content:"\ef4c"}.icofont-infinite:before{content:"\ef4d"}.icofont-info-circle:before{content:"\ef4e"}.icofont-info-square:before{content:"\ef4f"}.icofont-info:before{content:"\ef50"}.icofont-institution:before{content:"\ef51"}.icofont-interface:before{content:"\ef52"}.icofont-invisible:before{content:"\ef53"}.icofont-jacket:before{content:"\ef54"}.icofont-jar:before{content:"\ef55"}.icofont-jewlery:before{content:"\ef56"}.icofont-karate:before{content:"\ef57"}.icofont-key-hole:before{content:"\ef58"}.icofont-key:before{content:"\ef59"}.icofont-label:before{content:"\ef5a"}.icofont-lamp:before{content:"\ef5b"}.icofont-layers:before{content:"\ef5c"}.icofont-layout:before{content:"\ef5d"}.icofont-leaf:before{content:"\ef5e"}.icofont-leaflet:before{content:"\ef5f"}.icofont-learn:before{content:"\ef60"}.icofont-lego:before{content:"\ef61"}.icofont-lens:before{content:"\ef62"}.icofont-letter:before{content:"\ef63"}.icofont-letterbox:before{content:"\ef64"}.icofont-library:before{content:"\ef65"}.icofont-license:before{content:"\ef66"}.icofont-life-bouy:before{content:"\ef67"}.icofont-life-buoy:before{content:"\ef68"}.icofont-life-jacket:before{content:"\ef69"}.icofont-life-ring:before{content:"\ef6a"}.icofont-light-bulb:before{content:"\ef6b"}.icofont-lighter:before{content:"\ef6c"}.icofont-lightning-ray:before{content:"\ef6d"}.icofont-like:before{content:"\ef6e"}.icofont-line-height:before{content:"\ef6f"}.icofont-link-alt:before{content:"\ef70"}.icofont-link:before{content:"\ef71"}.icofont-list:before{content:"\ef72"}.icofont-listening:before{content:"\ef73"}.icofont-listine-dots:before{content:"\ef74"}.icofont-listing-box:before{content:"\ef75"}.icofont-listing-number:before{content:"\ef76"}.icofont-live-support:before{content:"\ef77"}.icofont-location-arrow:before{content:"\ef78"}.icofont-location-pin:before{content:"\ef79"}.icofont-lock:before{content:"\ef7a"}.icofont-login:before{content:"\ef7b"}.icofont-logout:before{content:"\ef7c"}.icofont-lollipop:before{content:"\ef7d"}.icofont-long-drive:before{content:"\ef7e"}.icofont-look:before{content:"\ef7f"}.icofont-loop:before{content:"\ef80"}.icofont-luggage:before{content:"\ef81"}.icofont-lunch:before{content:"\ef82"}.icofont-lungs:before{content:"\ef83"}.icofont-magic-alt:before{content:"\ef84"}.icofont-magic:before{content:"\ef85"}.icofont-magnet:before{content:"\ef86"}.icofont-mail-box:before{content:"\ef87"}.icofont-mail:before{content:"\ef88"}.icofont-male:before{content:"\ef89"}.icofont-map-pins:before{content:"\ef8a"}.icofont-map:before{content:"\ef8b"}.icofont-maximize:before{content:"\ef8c"}.icofont-measure:before{content:"\ef8d"}.icofont-medicine:before{content:"\ef8e"}.icofont-mega-phone:before{content:"\ef8f"}.icofont-megaphone-alt:before{content:"\ef90"}.icofont-megaphone:before{content:"\ef91"}.icofont-memorial:before{content:"\ef92"}.icofont-memory-card:before{content:"\ef93"}.icofont-mic-mute:before{content:"\ef94"}.icofont-mic:before{content:"\ef95"}.icofont-military:before{content:"\ef96"}.icofont-mill:before{content:"\ef97"}.icofont-minus-circle:before{content:"\ef98"}.icofont-minus-square:before{content:"\ef99"}.icofont-minus:before{content:"\ef9a"}.icofont-mobile-phone:before{content:"\ef9b"}.icofont-molecule:before{content:"\ef9c"}.icofont-money:before{content:"\ef9d"}.icofont-moon:before{content:"\ef9e"}.icofont-mop:before{content:"\ef9f"}.icofont-muffin:before{content:"\efa0"}.icofont-mustache:before{content:"\efa1"}.icofont-navigation-menu:before{content:"\efa2"}.icofont-navigation:before{content:"\efa3"}.icofont-network-tower:before{content:"\efa4"}.icofont-network:before{content:"\efa5"}.icofont-news:before{content:"\efa6"}.icofont-newspaper:before{content:"\efa7"}.icofont-no-smoking:before{content:"\efa8"}.icofont-not-allowed:before{content:"\efa9"}.icofont-notebook:before{content:"\efaa"}.icofont-notepad:before{content:"\efab"}.icofont-notification:before{content:"\efac"}.icofont-numbered:before{content:"\efad"}.icofont-opposite:before{content:"\efae"}.icofont-optic:before{content:"\efaf"}.icofont-options:before{content:"\efb0"}.icofont-package:before{content:"\efb1"}.icofont-page:before{content:"\efb2"}.icofont-paint:before{content:"\efb3"}.icofont-paper-plane:before{content:"\efb4"}.icofont-paperclip:before{content:"\efb5"}.icofont-papers:before{content:"\efb6"}.icofont-pay:before{content:"\efb7"}.icofont-penguin-linux:before{content:"\efb8"}.icofont-pestle:before{content:"\efb9"}.icofont-phone-circle:before{content:"\efba"}.icofont-phone:before{content:"\efbb"}.icofont-picture:before{content:"\efbc"}.icofont-pine:before{content:"\efbd"}.icofont-pixels:before{content:"\efbe"}.icofont-plugin:before{content:"\efbf"}.icofont-plus-circle:before{content:"\efc0"}.icofont-plus-square:before{content:"\efc1"}.icofont-plus:before{content:"\efc2"}.icofont-polygonal:before{content:"\efc3"}.icofont-power:before{content:"\efc4"}.icofont-price:before{content:"\efc5"}.icofont-print:before{content:"\efc6"}.icofont-puzzle:before{content:"\efc7"}.icofont-qr-code:before{content:"\efc8"}.icofont-queen:before{content:"\efc9"}.icofont-question-circle:before{content:"\efca"}.icofont-question-square:before{content:"\efcb"}.icofont-question:before{content:"\efcc"}.icofont-quote-left:before{content:"\efcd"}.icofont-quote-right:before{content:"\efce"}.icofont-random:before{content:"\efcf"}.icofont-recycle:before{content:"\efd0"}.icofont-refresh:before{content:"\efd1"}.icofont-repair:before{content:"\efd2"}.icofont-reply-all:before{content:"\efd3"}.icofont-reply:before{content:"\efd4"}.icofont-resize:before{content:"\efd5"}.icofont-responsive:before{content:"\efd6"}.icofont-retweet:before{content:"\efd7"}.icofont-road:before{content:"\efd8"}.icofont-robot:before{content:"\efd9"}.icofont-royal:before{content:"\efda"}.icofont-rss-feed:before{content:"\efdb"}.icofont-safety:before{content:"\efdc"}.icofont-sale-discount:before{content:"\efdd"}.icofont-satellite:before{content:"\efde"}.icofont-send-mail:before{content:"\efdf"}.icofont-server:before{content:"\efe0"}.icofont-settings-alt:before{content:"\efe1"}.icofont-settings:before{content:"\efe2"}.icofont-share-alt:before{content:"\efe3"}.icofont-share-boxed:before{content:"\efe4"}.icofont-share:before{content:"\efe5"}.icofont-shield:before{content:"\efe6"}.icofont-shopping-cart:before{content:"\efe7"}.icofont-sign-in:before{content:"\efe8"}.icofont-sign-out:before{content:"\efe9"}.icofont-signal:before{content:"\efea"}.icofont-site-map:before{content:"\efeb"}.icofont-smart-phone:before{content:"\efec"}.icofont-soccer:before{content:"\efed"}.icofont-sort-alt:before{content:"\efee"}.icofont-sort:before{content:"\efef"}.icofont-space:before{content:"\eff0"}.icofont-spanner:before{content:"\eff1"}.icofont-speech-comments:before{content:"\eff2"}.icofont-speed-meter:before{content:"\eff3"}.icofont-spinner-alt-1:before{content:"\eff4"}.icofont-spinner-alt-2:before{content:"\eff5"}.icofont-spinner-alt-3:before{content:"\eff6"}.icofont-spinner-alt-4:before{content:"\eff7"}.icofont-spinner-alt-5:before{content:"\eff8"}.icofont-spinner-alt-6:before{content:"\eff9"}.icofont-spinner:before{content:"\effa"}.icofont-spreadsheet:before{content:"\effb"}.icofont-square:before{content:"\effc"}.icofont-ssl-security:before{content:"\effd"}.icofont-star-alt-1:before{content:"\effe"}.icofont-star-alt-2:before{content:"\efff"}.icofont-star:before{content:"\f000"}.icofont-street-view:before{content:"\f001"}.icofont-support-faq:before{content:"\f002"}.icofont-tack-pin:before{content:"\f003"}.icofont-tag:before{content:"\f004"}.icofont-tags:before{content:"\f005"}.icofont-tasks-alt:before{content:"\f006"}.icofont-tasks:before{content:"\f007"}.icofont-telephone:before{content:"\f008"}.icofont-telescope:before{content:"\f009"}.icofont-terminal:before{content:"\f00a"}.icofont-thumbs-down:before{content:"\f00b"}.icofont-thumbs-up:before{content:"\f00c"}.icofont-tick-boxed:before{content:"\f00d"}.icofont-tick-mark:before{content:"\f00e"}.icofont-ticket:before{content:"\f00f"}.icofont-tie:before{content:"\f010"}.icofont-toggle-off:before{content:"\f011"}.icofont-toggle-on:before{content:"\f012"}.icofont-tools-alt-2:before{content:"\f013"}.icofont-tools:before{content:"\f014"}.icofont-touch:before{content:"\f015"}.icofont-traffic-light:before{content:"\f016"}.icofont-transparent:before{content:"\f017"}.icofont-tree:before{content:"\f018"}.icofont-unique-idea:before{content:"\f019"}.icofont-unlock:before{content:"\f01a"}.icofont-unlocked:before{content:"\f01b"}.icofont-upload-alt:before{content:"\f01c"}.icofont-upload:before{content:"\f01d"}.icofont-usb-drive:before{content:"\f01e"}.icofont-usb:before{content:"\f01f"}.icofont-vector-path:before{content:"\f020"}.icofont-verification-check:before{content:"\f021"}.icofont-wall-clock:before{content:"\f022"}.icofont-wall:before{content:"\f023"}.icofont-wallet:before{content:"\f024"}.icofont-warning-alt:before{content:"\f025"}.icofont-warning:before{content:"\f026"}.icofont-water-drop:before{content:"\f027"}.icofont-web:before{content:"\f028"}.icofont-wheelchair:before{content:"\f029"}.icofont-wifi-alt:before{content:"\f02a"}.icofont-wifi:before{content:"\f02b"}.icofont-world:before{content:"\f02c"}.icofont-zigzag:before{content:"\f02d"}.icofont-zipped:before{content:"\f02e"}.icofont-xs{font-size:.5em}.icofont-sm{font-size:.75em}.icofont-md{font-size:1.25em}.icofont-lg{font-size:1.5em}.icofont-1x{font-size:1em}.icofont-2x{font-size:2em}.icofont-3x{font-size:3em}.icofont-4x{font-size:4em}.icofont-5x{font-size:5em}.icofont-6x{font-size:6em}.icofont-7x{font-size:7em}.icofont-8x{font-size:8em}.icofont-9x{font-size:9em}.icofont-10x{font-size:10em}.icofont-fw{text-align:center;width:1.25em}.icofont-ul{list-style-type:none;padding-left:0;margin-left:0}.icofont-ul>li{position:relative;line-height:2em}.icofont-ul>li .icofont{display:inline-block;vertical-align:middle}.icofont-border{border:solid .08em #f1f1f1;border-radius:.1em;padding:.2em .25em .15em}.icofont-pull-left{float:left}.icofont-pull-right{float:right}.icofont.icofont-pull-left{margin-right:.3em}.icofont.icofont-pull-right{margin-left:.3em}.icofont-spin{-webkit-animation:icofont-spin 2s infinite linear;animation:icofont-spin 2s infinite linear;display:inline-block}.icofont-pulse{-webkit-animation:icofont-spin 1s infinite steps(8);animation:icofont-spin 1s infinite steps(8);display:inline-block}@-webkit-keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.icofont-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.icofont-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.icofont-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.icofont-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.icofont-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.icofont-flip-horizontal.icofont-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .icofont-flip-horizontal,:root .icofont-flip-vertical,:root .icofont-rotate-180,:root .icofont-rotate-270,:root .icofont-rotate-90{-webkit-filter:none;filter:none;display:inline-block}.icofont-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/css/magnific-popup.min.css b/desarrollo/diseno/login-comercio/css/magnific-popup.min.css deleted file mode 100644 index c00c6ff9..00000000 --- a/desarrollo/diseno/login-comercio/css/magnific-popup.min.css +++ /dev/null @@ -1 +0,0 @@ -.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/css/owl.carousel.min.css b/desarrollo/diseno/login-comercio/css/owl.carousel.min.css deleted file mode 100644 index a71df11c..00000000 --- a/desarrollo/diseno/login-comercio/css/owl.carousel.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/** - * 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 .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .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%;top: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 .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 .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/css/responsive.css b/desarrollo/diseno/login-comercio/css/responsive.css deleted file mode 100644 index fcf3f1d2..00000000 --- a/desarrollo/diseno/login-comercio/css/responsive.css +++ /dev/null @@ -1,440 +0,0 @@ -:root { - --light-purple: #F6F4FE; - --purple: #6A49F2; - --bg-purple: #6A49F2; - --dark-purple: #32236F; - --body-text-purple: #3E3F66; - --text-white: #ffffff; - --bg-white: #ffffff; - --slider-dots-color: #D4D2DD; - --light-bg: #DFDAF3; -} - -/* ------Media-Query-Start--------- */ -@media screen and (max-width:1600px) { - - footer .top_footer.has_bg {background-repeat: repeat-y; background-position: 0 50px;} - - .why_we_section .why_inner {margin: 0 15px;} - .youtube-video .modal-dialog {max-width: 1040px !important;} -} - - -@media screen and (max-width:1300px) { - - /* features section */ - .features_section .feature_detail .feature_box {width: 350px;} - .features_section .feature_detail .left_data {padding-left: 75px;} - .features_section .feature_detail .right_data {padding-right: 75px;} -} - - -@media screen and (max-width:1200px) { - - .row_am {padding: 50px 0;} - - /* navigation bar section */ - .navbar-expand-lg .navbar-nav .nav-link {padding: 5px 8px;} - .navbar-expand-lg .navbar-nav .nav-link.dark_btn {padding: 9px 30px;} - .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {right: 5px;} - .banner_section .banner_slider .right_icon {right: -30px;} - - /* features section */ - .features_section .feature_detail .feature_box {width: 300px;} - .features_section .feature_detail .left_data {padding-left: 15px;} - .features_section .feature_detail .right_data {padding-right: 15px;} - - /* about app section */ - .about_app_section .about_text .app_statstic li {width: 210px; padding-left: 20px;} - .about_app_section .about_text .app_statstic li p:first-child {font-size: 30px;} - - /* modern ui section */ - .modern_ui_section .ui_images::before {width: 475px; height: 475px;} - .modern_ui_section .ui_images .right_img img:nth-child(1) {margin-left: -60px;} - .modern_ui_section .ui_images .right_img img:nth-child(2) {margin-left: -140px;} - - /* download app section */ - .free_app_section .container .free_app_inner .free_img img {transform: scale(.8);} - .free_app_section .container .free_app_inner .free_img img:last-child {margin-left: -120px;} - .free_app_section .container .free_app_inner .free_img {margin-top: -180px;} - - /* newsletter section */ - .newsletter_box .section_title {width: 60%;} - .newsletter_box .section_title h2 {font-size: 24px; letter-spacing: 1px;} - .newsletter_box form .form-group .form-control {width: 250px;} - - .youtube-video .modal-dialog {max-width: 940px !important;} - - .app_solution_section .app_images ul li:nth-child(2) {width: 45%; left: 0;} - .app_solution_section .app_images ul li:nth-child(3) {width: 50%; right: 0;} - - .experts_team_section .experts_box .text span {min-height: 50px; display: block; margin-bottom: 10px;} - - .review_list_section .review_box h3 {font-size: 16px;} - .review_list_section .review_box p {font-size: 14px;} - .review_list_section .review_box .reviewer .text span {font-size: 14px;} - - .contact_page_section .contact_inner {margin-top: -120px;} - .contact_page_section .contact_inner .contact_form {width: 520px; padding: 50px 30px;} - .contact_page_section .contact_inner .contact_info {width: 350px;} - .contact_page_section .contact_inner .section_title h2 {font-size: 34px;} - - .bred_crumb {min-height: 400px;} - .bred_crumb::after {background-size: 100%; height: 110px;} - - .blog_detail_section .blog_inner_pannel {margin-top: -100px; padding: 30px;} - - -} - -@media screen and (max-width:992px) { - - /* navigation section */ - .navbar-toggler-icon {display: flex; align-items: center; color: var(--body-text-purple); justify-content: flex-end;} - .white_header .toggle-bar {color: var(--text-white);} - .free_app_section .container .free_app_inner .free_text .section_title h2 , .section_title h2 {font-size: 30px;} - header.fix_style {padding: 5px 0;} - - .white_header .navbar-collapse {position: absolute; top: 110%; width: 100%;} - - .white_header .navbar-expand-lg .navbar-nav .nav-link, .white_header .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {color: var(--body-text-purple);} - .white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn {background-color: var(--bg-purple); color: var(--text-white);} - - .banner_section {text-align: center;} - .banner_section .app_btn , .banner_section .used_app {justify-content: center;} - - /* navigation section */ - .navbar-expand-lg .navbar-nav {align-items: flex-start;} - .navbar-toggler {padding-right: 0; line-height: 1.7;} - .navbar-expand-lg .navbar-nav {padding: 20px 15px; background-color: var(--bg-white); border-radius: 15px; box-shadow: 0 4px 10px #EDE9FE;} - .navbar-expand-lg .navbar-nav .nav-link.dark_btn {margin-left: 0; margin-top: 15px;} - .navbar-expand-lg .navbar-nav .has_dropdown {flex-direction: column; align-items: flex-start; width: 100%; box-shadow: none;} - .navbar-expand-lg .navbar-nav .has_dropdown:hover {box-shadow: none;} - .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {position: absolute; right: 0; padding: 0 10px;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {position: relative; opacity: 1; pointer-events: all; top: auto; background-color: transparent; width: 100%; border-bottom: 1px solid #6b49f268; border-radius: 0; width: 100%; min-width: 100%; max-width: 100%; margin-left: 10px; display: none; box-shadow: none; margin-top: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {padding: 0; margin-top: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {padding: 5px 10px; display: block; padding-left: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {margin-top: 0;} - - /* banner section */ - .banner_section .banner_text h1 {font-size: 40px;} - .banner_section .banner_slider {margin-top: 50px;} - .banner_section .banner_slider .left_icon {left: 0;} - .banner_section .banner_slider .right_icon {right: 0;} - - /* features section */ - .features_section .feature_detail .feature_img {width: 275px;} - .features_section .feature_detail .feature_box .data_block {margin-bottom: 30px;} - .features_section .feature_detail .feature_box {width: 200px;} - - /* about app section */ - .about_app_section .row {flex-direction: column-reverse;} - .about_app_section .about_img {justify-content: flex-start; margin-top: 75px; margin-left: 0;} - .about_app_section .about_img::before {left: 50%;} - .about_app_section .about_img .screen_img {margin-left: -170px;} - .about_app_section .about_text .app_statstic {justify-content: flex-start;} - .about_app_section .about_text .app_statstic li {width: 35%; margin-right: 30px;} - .about_app_section .about_img::before {left: 35%;} - - /* modern ui section */ - .modern_ui_section .ui_images {margin-top: 30px;} - .modern_ui_section .ui_text {padding-right: 0;} - .modern_ui_section .ui_images .right_img {display: flex; flex-direction: column; align-items: center;} - - /* how it work section */ - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 280px;} - .how_it_works .yt_video .thumbnil a {top: 57%;} - .how_it_works .yt_video .thumbnil a span {font-size: 20px;} - - /* testimonial section */ - #testimonial_slider {max-width: 500px;} - - /* pricing section */ - .pricing_section .pricing_pannel .pricing_block {padding-left: 15px; padding-right: 15px; min-height: 600px; padding-top: 30px;} - .pricing_section .pricing_pannel .pricing_block .price {font-size: 36px;} - .pricing_section .pricing_pannel .pricing_block .benifits li p {font-size: 14px;} - - /* interface section */ - .interface_section .screen_slider {min-height: 550px;} - - /* download app section */ - .free_app_section .container .free_app_inner {padding: 20px 15px;} - .free_app_section .container .free_app_inner .free_img img {transform: scale(.7);} - .free_app_section .container .free_app_inner .free_img img:last-child {margin-left: -180px;} - .free_app_section .container .free_app_inner .free_text .app_btn li a {padding: 10px 20px;} - - /* latest story section */ - .latest_story {margin-bottom: 40px;} - .latest_story .story_box .story_text {padding: 15px;} - - /* newsletter section */ - .newsletter_box {flex-direction: column; padding: 30px 20px;} - .newsletter_box .section_title , .newsletter_box form {width: 100%; margin: 10px 0; justify-content: center;} - .newsletter_box form .form-group .form-control {width: 350px;} - .newsletter_box .section_title h2, .newsletter_box .section_title p {text-align: center;} - - /* footer section */ - footer .top_footer .logo , footer h3 {margin-bottom: 20px;} - footer .abt_side {margin-bottom: 50px;} - footer .top_footer .try_out {margin-left: 0;} - footer .top_footer .col-md-6 {margin-bottom: 15px;} - footer .top_footer.has_bg {background-position: center;} - - /* Bred Crumb */ - .bred_crumb {min-height: 350px;} - .bred_crumb .bred_text h1 {font-size: 30px;} - .bred_crumb::after {background-size: 100%; height: 90px; bottom: -5px;} - .bred_crumb .bred_text .search_bar form .form-group {height: 50px;} - .bred_crumb .bred_text .search_bar form .form-group .btn {width: 46px; height: 46px; line-height: 46px;} - - .bred_crumb .banner_shape3 { top: 240px; animation: mymove 3s infinite; } - - - .app_solution_section .app_images {margin-top: 30px;} - .app_solution_section .app_images ul li:nth-child(2) {text-align: right;} - .app_solution_section .app_text p {padding-right: 0;} - .app_solution_section .app_text .section_title {text-align: center;} - .app_solution_section .app_images {margin-top: 70px;} - .app_solution_section .app_images::before {width: 350px; height: 350px;} - - .why_we_section .why_inner {padding: 35px 0; padding-bottom: 0px;} - .why_we_section .why_inner .why_box {margin-bottom: 50px; text-align: center;} - .why_we_section .why_inner .why_box .icon {margin-bottom: 30px;} - - - .experts_team_section .experts_box .text span {min-height: auto;} - .query_inner .white_btn {font-size: 14px;} - - - .blog_list_main .blog_text {margin-top: 30px;} - .blog_detail_section .blog_inner_pannel {margin-top: -100px; padding: 30px;} - .blog_detail_section .blog_inner_pannel .info ul {padding-left: 30px;} - .comment_section ul li .comment { width: calc(100% - 280px); margin-left: 20px;} - .blog_detail_section .blog_inner_pannel .quote_block {padding: 55px 30px 35px 30px;} - - .contact_page_section .contact_inner {flex-direction: column; margin-top: 60px;} - .contact_page_section .contact_inner .contact_form {width: 100%;} - .contact_page_section .contact_inner .contact_info {width: 100%; margin-top: 50px;} - - -} - -@media screen and (max-width:767px) { - - body {font-size: 14px; text-align: center;} - .row_am {padding: 30px 0;} - .section_title p br {display: none;} - .free_app_section .container .free_app_inner .free_text .section_title h2, .section_title h2 {font-size: 24px;} - - /* navbar section */ - .navbar {padding-top: 15px;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {text-align: left; line-height: 1.5; font-size: 14px;} - - /* banner section */ - .banner_section {margin-top: 60px;} - .banner_section .banner_text h1 {font-size: 30px;} - .banner_section .app_btn , .banner_section .used_app {justify-content: center;} - .banner_section .app_btn li:last-child {margin-left: 0;} - .banner_section .app_btn li {margin: 0 15px;} - .banner_section .app_btn li a {padding: 10px 20px;} - .banner_section .app_btn li a img {height: 25px;} - .banner_section .banner_slider .left_icon {left: -40px;} - .banner_section .banner_slider .right_icon {right: -40px; z-index: 1000;} - .banner_section .banner_slider::before {width: 350px; height: 350px;} - - /* trusted logo section */ - .trusted_section .company_logos {padding-top: 0;} - .trusted_section .company_logos img {max-width: 70%;} - - /* features section */ - .features_section .feature_detail {flex-direction: column-reverse; padding-top: 30px; margin-top: 0;} - .features_section .feature_detail .feature_img {position: relative; top: auto; left: auto; transform: none; width: 75%; margin: 0 auto;} - .features_section .feature_detail .feature_box {width: 100%; padding: 0 15px; text-align: center;} - .features_section .feature_detail .left_data .data_block .icon {margin-right: 0;} - .features_section .feature_detail .right_data .data_block .icon {margin-left: 0;} - .features_section .feature_detail .feature_box .data_block {margin-bottom: 0; margin-top: 30px;} - - /* about app section */ - .about_app_section .about_text , .about_app_section .about_text .section_title {text-align: center;} - .about_app_section .about_text .app_statstic {margin-top: 0; justify-content: space-between;} - .about_app_section .about_text .app_statstic li {width: 48%; margin-right: 0;} - .about_app_section .about_text .app_statstic li p:first-child {font-size: 18px;} - .about_app_section .about_img {margin: 0; margin-top: 50px; justify-content: center;} - .about_app_section .about_img::before {width: 350px; height: 350px;} - - /* modern ui section */ - .modern_ui_section .ui_images {margin-top: 10px;} - .modern_ui_section .section_title {text-align: center;} - .modern_ui_section .design_block li {padding-left: 0; margin-bottom: 30px;} - .modern_ui_section .design_block li::before {position: relative; left: auto; top: auto; display: inline-block;} - - .modern_ui_section .ui_images img {max-width: 100%;} - .modern_ui_section .ui_images::before {width: 350px; height: 350px;} - .modern_ui_section .ui_images .left_img {width: 70%;} - .modern_ui_section .ui_images .right_img {justify-content: center;} - .modern_ui_section .ui_images .right_img img:nth-child(1) {top: 0; width: 100px;} - .modern_ui_section .ui_images .right_img img:nth-child(3) {margin-top: 0;} - - /* how it work section */ - .how_it_works .how_it_inner {padding: 50px 15px;} - .how_it_works .step_block ul {padding-top: 30px;} - .how_it_works .step_block ul li , .how_it_works .step_block ul li:nth-child(2) {flex-direction: column; padding-left: 30px;} - .how_it_works .step_block ul li .step_text h4 {font-size: 18px;} - .how_it_works .step_block ul li::before {left: 0; transform: none; height: calc(100% + 10px); top: 40px;} - .how_it_works .step_block ul li:first-child::before {height: calc(100% + 50px);} - .how_it_works .step_block ul li:first-child::after {left: -5px; transform: none; display: none;} - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img , - .how_it_works .step_block ul li:nth-child(2) .step_text, .how_it_works .step_block ul li:nth-child(2) .step_img {text-align: center;} - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 100%;} - .how_it_works .step_block ul li .step_number {position: absolute; top: -5px; left: -23px; width: 50px; height: 50px;} - .how_it_works .step_block ul li:last-child::before {opacity: 0;} - .how_it_works .step_block ul li .step_number h3 {font-size: 15px; margin-bottom: 0; margin-top: -2px;} - .how_it_works .yt_video {margin-top: -50px;} - .how_it_works .yt_video .thumbnil {height: 300px; border-radius: 15px;} - .how_it_works .yt_video .thumbnil img {height: 100%; object-fit: cover; object-position: center; border-radius: 15px;} - .how_it_works .yt_video .thumbnil a {width: 100%;} - .how_it_works .yt_video .thumbnil a .play_btn::after {width: 140px; height: 140px;} - .how_it_works .yt_video .thumbnil a .play_btn::before {width: 120px; height: 120px;} - .how_it_works .yt_video .thumbnil a .play_btn img {height: auto;} - - /* testimonial section */ - .testimonial_section .testimonial_block {margin: 0;} - .testimonial_section .testimonial_block .avtar_faces {display: none;} - .testimonial_section .testimonial_block .testimonial_slide_box {width: 100%;} - - /* pricing section */ - .pricing_section .pricing_pannel .pricing_block {min-height: auto; padding: 30px 15px;} - .pricing_section .pricing_pannel .pricing_block .icon {margin-bottom: 15px;} - .pricing_section .contact_text {margin-top: -20px;} - - /* faq section */ - .faq_section .faq_panel .card-header h2 {text-align: left;} - .faq_section .faq_panel .card-header .btn {font-size: 16px; padding-right: 30px; text-align: left;} - .faq_section .faq_panel .card-body p {text-align: left;} - - /* interface section */ - .interface_section .screen_slider { /*min-height: 720px;*/} - .interface_section .owl-item .screen_frame_img img {transform: scale(1);} - - /* download section */ - .free_app_section .container .free_app_inner {padding: 50px 15px; padding-bottom: 0; z-index: 99;} - .free_app_section .container .free_app_inner .free_img {margin-top: 0; justify-content: center;} - .free_app_section .container .free_app_inner .free_img img {max-width: 100%;} - .free_app_section .container .free_app_inner .free_text .section_title {text-align: center;} - .free_app_section .container .free_app_inner .free_text .app_btn {flex-direction: column;} - .free_app_section .container .free_app_inner .free_text .app_btn li a {width: 200px; text-align: center;} - .free_app_section .container .free_app_inner .free_text .app_btn li:last-child {margin-left: 0; margin-top: 15px;} - - /* latest story section */ - .latest_story .story_box {margin-bottom: 30px;} - - /* newsletter section */ - .newsletter_box form {flex-direction: column; align-items: center;} - .newsletter_box form .form-group {width: 100%;} - .newsletter_box form .form-group .form-control {width: 100%; margin-bottom: 15px;} - .newsletter_box .section_title p {font-size: 13px;} - - /* footer section */ - footer .links , footer .abt_side {margin-bottom: 30px;} - footer .top_footer .social_media {justify-content: center;} - footer .top_footer .social_media li a {margin: 0 5px;} - footer .top_footer .try_out {margin-left: 0;} - footer .app_btn li a {margin: 0 auto;} - footer .bottom_footer .developer_text {text-align: center; margin-top: 10px;} - footer .go_top {right: 10px;} - footer .top_footer .col-md-6 {margin-bottom: 0px;} - - /* animation line section */ - .anim_line , .anim_line.dark_bg {width: 140%;} - - /* latest story section */ - .latest_story .story_box .story_img img {width: 100%;} - - /* go top button section */ - .go_top {bottom: 30px; z-index: 999;} - - .purple_backdrop {display: none;} - - - /* Bread-Crumb */ - .bred_crumb {min-height: 330px;} - .bred_crumb .bred_text h1 {font-size: 24px;} - .bred_crumb .bred_text .search_bar form .form-group {height: 50px;} - .bred_crumb .bred_text .search_bar form .form-group .btn {width: 46px; height: 46px; line-height: 46px;} - .bred_crumb .bred_text {padding: 0 15px; margin-top: 15px;} - .bred_crumb::after {background-size: cover; height: 100px;} - - - - .blog_list_main .blog_text .section_title , .blog_list_story .story_box {text-align: center;} - - .why_we_section .why_inner {padding-bottom: 10px;} - - .experts_team_section .experts_box {padding: 20px; margin-bottom: 15px;} - .pagination_block ul li:not(:first-child , :last-child) a {width: 24px; height: 24px; line-height: 24px; margin: 0 3px; font-size: 12px;} - - .blog_detail_bredcrumb.bred_crumb .bred_text {margin-top: -10px;} - .blog_detail_section .blog_inner_pannel {margin-top: -70px; padding: 25px 20px;} - .blog_detail_section .blog_inner_pannel .section_title {margin-bottom: 20px;} - .blog_detail_section .blog_inner_pannel .section_title h2 {font-size: 22px;} - .blog_detail_section .blog_inner_pannel .info h3 {font-size: 18px;} - .blog_detail_section .blog_inner_pannel .info ul {text-align: left; padding-left: 0;} - .blog_detail_section .blog_inner_pannel .two_img {margin-bottom: 0;} - .blog_detail_section .blog_inner_pannel .two_img img {margin: 10px 0;} - .blog_detail_section .blog_inner_pannel .quote_block .q_icon {left: 50%; transform: translateX(-50%);} - .blog_detail_section .blog_inner_pannel .quote_block {padding: 55px 20px 35px 20px;} - .blog_detail_section .blog_inner_pannel .quote_block h2 {font-size: 18px; line-height: 1.4;} - .blog_detail_section .blog_inner_pannel .blog_authore {flex-direction: column;} - .blog_detail_section .blog_inner_pannel .blog_authore .authore_info {margin-bottom: 30px;} - .blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 {font-size: 18px;} - - .comment_section ul li {flex-direction: column; padding: 20px 0; text-align: left;} - .comment_section ul li .comment {width: 100%; margin-left: 0;} - .comment_section ul li .authore_info {width: 100%; margin-bottom: 15px;} - .comment_section ul li.replay_comment {margin-left: 30px;} - .comment_section ul li .authore_info .text {width: auto;} - - .comment_form_section form .form-group .form-control {height: 45px; font-size: 14px; margin-bottom: 15px;} - - - .signup_form {width: calc(100% - 30px); margin: 0 15px;} - .signup_form form {padding: 0 20px;} - .signup_form form .form-group .form-control {font-size: 14px; height: 50px;} - .signup_form .or_option .google_btn {min-width: 275px; padding: 12px 10px;} - .signup_section .back_btn {top: 15px;} - .signup_section .top_part {padding-top: 35px; padding-bottom: 35px;} - - .review_freeapp {margin: 0 0 40px 0;} - .review_list_section .review_box .rating ul , - .review_list_section .review_box .reviewer {justify-content: flex-start; text-align: center;} - .review_list_section .review_box .reviewer .text {width: auto; text-align: left;} - .review_list_section .review_box {text-align: left;} - - .contact_page_section .contact_inner {margin-top: 40px;} - .contact_page_section .contact_inner .contact_form {padding: 30px 20px;} - .contact_page_section .contact_inner .section_title h2 {font-size: 24px;} - .contact_page_section .contact_inner .contact_form form .form-group .form-control {height: 50px; font-size: 14px;} - .contact_page_section .contact_inner .contact_form form .term_check label {text-align: left; line-height: 1.3;} - .contact_page_section .contact_inner .contact_form form .term_check {align-items: flex-start;} - .contact_page_section .contact_inner .contact_info .section_title {text-align: center;} - .contact_page_section .contact_inner .contact_info .btn {margin-bottom: 30px;} - .contact_page_section .contact_inner .contact_info .contact_info_list li {flex-direction: column;} - .contact_page_section .contact_inner .contact_info .contact_info_list li .img {width: 100%; margin: 0;} - .contact_page_section .contact_inner .contact_info .contact_info_list li .text {width: 100%; margin-top: 10px;} - - .map_section {margin: 15px 0;} - -} - -@media screen and (max-width:640px) { - .features_section .feature_detail .feature_box { justify-content: center; margin: 0 auto; } - .bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 { display: none;} - .query_section .banner_shape1, .banner_shape2, .banner_shape3 { display: none;} - -} - -@media screen and (max-width:479px) { - - /* about app section */ - .about_app_section .about_img::before {left: 49%;} -} \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/css/style.css b/desarrollo/diseno/login-comercio/css/style.css deleted file mode 100644 index c8b6ac06..00000000 --- a/desarrollo/diseno/login-comercio/css/style.css +++ /dev/null @@ -1,3506 +0,0 @@ -/*----------------------------------------------------------------------------------- - -[Table of contents] - -1. Font -2. Css Variable for colors -3. Common CSS -4. Preloader CSS -5. Header - Main Navigation ( section ) -6. Hero Slider ( section ) -7. Trusted Logo Slider ( section ) -8. Features ( section ) -9. About us ( section ) -10. Modern UI ( section ) -11. How it works ( section ) -12. Testimonials ( section ) -13. Pricing ( section ) -14. Faq ( section ) -15. Interface ( section ) -16. Download app ( section ) -17. Latest story ( section ) -18. Newsletter ( section ) -19. Footer ( section ) -20. Animation CSS ( section ) - - ------------------------------------------------------------------------------------*/ - - -/* --------Font--------------- */ -/* poppins-300 - latin */ -@font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 300; - src: url('../fonts/poppins-v20-latin-300.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-300.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-300.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-regular - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 400; - src: url('../fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-italic - latin */ - @font-face { - font-family: 'Poppins'; - font-style: italic; - font-weight: 400; - src: url('../fonts/poppins-v20-latin-italic.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-italic.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-500 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 500; - src: url('../fonts/poppins-v20-latin-500.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-500.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-500italic - latin */ - @font-face { - font-family: 'Poppins'; - font-style: italic; - font-weight: 500; - src: url('../fonts/poppins-v20-latin-500italic.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-500italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-500italic.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-600 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 600; - src: url('../fonts/poppins-v20-latin-600.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-600.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-700 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 700; - src: url('../fonts/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-800 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 800; - src: url('../fonts/poppins-v20-latin-800.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-800.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-800.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */ - } - -/* -----------Css-variable------ */ - -:root { - --light-purple: #F6F4FE; - --purple: #6A49F2; - --bg-purple: #6A49F2; - --dark-purple: #32236F; - --body-text-purple: #3E3F66; - --text-white: #ffffff; - --bg-white: #ffffff; - --slider-dots-color: #D4D2DD; - --light-bg: #DFDAF3; -} - - - -/* ------Common-Css------------- */ - -html{scroll-behavior:smooth} - -body { - margin: 0; - padding: 0; - box-sizing: border-box; - font-size: 16px; - line-height: 1.7; - font-family: 'Poppins', sans-serif; - color: var(--body-text-purple); - background-color: var(--light-purple); -} - -.page_wrapper { - width: 100%; - overflow-x: hidden; -} - -a { - text-decoration: none; - color: var(--body-text-purple); -} - -a:hover { - text-decoration: none; - color: var(--body-text-purple); -} - -ul, -li { - padding: 0; - list-style-type: none; - margin: 0; -} - -button:focus, -.btn.focus, -.btn:focus { - outline: none; - box-shadow: none; -} - -@media screen and (min-width:1200px) { - .container { - max-width: 1170px; - } -} - -.section_title { - text-align: center; -} - -/* section heading h2 */ -.section_title h2 { - font-size: 40px; - font-weight: 700; - color: var(--dark-purple); -} - -.section_title h2 span { - color: var(--purple); -} - -.row_am { - padding: 50px 0; -} - -/* purple button */ -.puprple_btn { - background-color: #E62E04; - color: var(--text-white); - border-radius: 50px; - padding: 10px 40px; - position: relative; - overflow: hidden; - z-index: 1; - font-weight: 500; -} - -.puprple_btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-white); - border-radius: 50px; - transition: .6s all; - z-index: -1; -} - -.puprple_btn:hover::before { - width: 100%; -} - -.puprple_btn:hover { - color: #E62E04; -} - -/* white button */ -.white_btn { - padding: 10px 45px; - border: 1px solid var(--purple); - color: var(--purple); - border-radius: 50px; - background-color: var(--bg-white); - font-weight: 700; - position: relative; - z-index: 1; - overflow: hidden; - font-weight: 500; -} - -.white_btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-purple); - border-radius: 50px; - transition: .6s all; - z-index: -1; -} - -.white_btn:hover::before { - width: 110%; -} - -.white_btn:hover { - color: var(--text-white); -} - -.highlited_block .white_btn:hover { - border-color: var(--bg-white); -} - -/* slider controls */ -.owl-carousel .owl-dots { - display: flex; - align-items: center; - justify-content: center; - position: relative; - margin-top: 20px; -} - -.owl-carousel .owl-dots button { - display: block; - width: 15px; - height: 15px; - background-color: var(--slider-dots-color); - border-radius: 15px; - margin: 0 5px; -} - -.owl-carousel .owl-dots button.active { - background-color: var(--purple); -} - -/* -------------Preloader-Css-Start-------------- */ - -/* Preloader */ -#preloader { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: rgba(255, 255, 255, 0.9); - z-index: 999999; -} - -#loader { - display: block; - position: relative; - left: 50%; - top: 50%; - width: 150px; - height: 150px; - margin: -75px 0 0 -75px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #003b73; - -webkit-animation: spin 2s linear infinite; - animation: spin 2s linear infinite; -} - -#loader:before { - content: ""; - position: absolute; - top: 5px; - left: 5px; - right: 5px; - bottom: 5px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #E62E04; - -webkit-animation: spin 3s linear infinite; - animation: spin 3s linear infinite; -} - -#loader:after { - content: ""; - position: absolute; - top: 15px; - left: 15px; - right: 15px; - bottom: 15px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #E62E04; - -webkit-animation: spin 1.5s linear infinite; - animation: spin 1.5s linear infinite; -} - -@-webkit-keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - - - - -/* -----------Header-Css-Start------------------- */ -/* header wraper */ -header { - position: relative; - width: 100%; - z-index: 99999; - transition: .4s all; -} - -header.fix_style { - position: fixed; - top: 0; - backdrop-filter: blur(5px); - background-color: #ffffffb4; - padding: 15px 0; - transition: none; - opacity: 0; - pointer-events: none; -} - -header.fixed { - pointer-events: all; - opacity: 1; - transition: .4s all; -} - -header.fixed .navbar { - padding: 0; -} - -/* navigation bar */ -.navbar { - padding-left: 0; - padding-right: 0; - padding-top: 35px; -} - -.navbar-expand-lg .navbar-nav { - align-items: center; -} - -.navbar-expand-lg .navbar-nav .nav-link { - padding: 5px 20px; - font-weight: 500; -} - -.navbar-expand-lg .navbar-nav .nav-link:hover { - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn { - color: var(--text-white); - background-color: var(--purple); - font-size: 16px; - padding: 9px 40px; - border-radius: 25px; - margin-left: 20px; - position: relative; -} - - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before, -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - content: ''; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 42px; - z-index: -1; -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before { - animation: pulse-blue-medium-sm 3.5s infinite -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - animation: pulse-blue-small-sm 3.5s infinite -} - -.navbar-brand img { - width: 250px; -} - -/* navigation bar dropdown */ -.navbar-expand-lg .navbar-nav .has_dropdown { - display: flex; - align-items: center; - position: relative; - border-radius: 10px 10px 0 0; - transition: .4s all; -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover { - background-color: var(--bg-white); - box-shadow: 0px 4px 10px #c5c5c580; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn { - position: relative; - right: 15px; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu { - position: absolute; - top: 100%; - background-color: var(--bg-white); - border-radius: 0 10px 10px 10px; - min-width: 210px; - max-width: 230px; - margin-top: -10px; - transition: .4s all; - opacity: 0; - pointer-events: none; - box-shadow: 0px 4px 10px #c5c5c580; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul { - margin-left: 0; - padding: 10px 20px; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a { - font-size: 15px; - position: relative; - transition: .4s all; - line-height: 35px; - font-weight: 500; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before { - content: ""; - width: 10px; - height: 10px; - display: inline-block; - border: 2px solid var(--purple); - border-radius: 10px; - margin-right: 5px; - position: absolute; - left: -10px; - top: 50%; - transform: translateY(-50%); - opacity: 0; - transition: .4s all; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover { - padding-left: 15px; - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before { - opacity: 1; - left: 0; -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover>a, -.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn { - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu { - opacity: 1; - pointer-events: all; - margin-top: -1px; -} - -/* navigation toggle menu */ -.toggle-wrap { - padding: 10px; - position: relative; - cursor: pointer; - - /*disable selection*/ - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - } - - .toggle-bar, - .toggle-bar::before, - .toggle-bar::after, - .toggle-wrap.active .toggle-bar, - .toggle-wrap.active .toggle-bar::before, - .toggle-wrap.active .toggle-bar::after { - -webkit-transition: all .2s ease-in-out; - -moz-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; - } - - .toggle-bar { - width: 25px; - margin: 10px 0; - position: relative; - border-top: 4px solid var(--body-text-purple); - display: block; - } - - .toggle-bar::before, - .toggle-bar::after { - content: ""; - display: block; - background: var(--body-text-purple); - height: 4px; - width: 30px; - position: absolute; - top: -12px; - right: 0px; - -ms-transform: rotate(0deg); - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - -ms-transform-origin: 13%; - -webkit-transform-origin: 13%; - transform-origin: 13%; - } - - .white_header .toggle-bar , - .white_header .toggle-bar::before, - .white_header .toggle-bar::after { - border-top: 4px solid var(--bg-white); - } - - .toggle-bar::after { - top: 4px; - } - - .toggle-wrap.active .toggle-bar { - border-top: 6px solid transparent; - } - - .toggle-wrap.active .toggle-bar::before { - -ms-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - } - - .toggle-wrap.active .toggle-bar::after { - -ms-transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - } - - -/* ---------Hero-Slider-Css-Start------------------ */ -/* hero slider wraper */ -.banner_section { - margin-top: 70px; - position: relative; -} - -.banner_section .container { - position: relative; -} - -/* wave backgound after banner */ -.banner_section::after { - content: ""; - display: block; - background-image: url(../images/banner-shape.svg); - background-size: cover; - background-repeat: no-repeat; - width: 100%; - height: 200px; - background-position: center; - margin-top: -50px; -} - -.banner_section .row { - align-items: center; -} - -/* hero slider text */ -.banner_section .banner_text { - margin-top: -50px; -} - -/* hero slider heading h1 */ -.banner_section .banner_text h1 { - font-size: 55px; - color: var(--dark-purple); - letter-spacing: -1.5px; - font-weight: 700; -} - -.banner_section .banner_text h1 span { - color: var(--purple); -} - -/* hero slider button */ -.banner_section .app_btn { - display: flex; - align-items: center; -} - -/* hero slider list */ -.banner_section .app_btn li a { - display: block; - padding: 12px 30px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; -} - -.banner_section .app_btn li:last-child { - margin-left: 25px; -} - -.banner_section .app_btn li a img { - transition: .4s all; -} - -.banner_section .app_btn li a .white_img { - position: absolute; - left: 50%; - transform: translateX(-50%); - opacity: 0; -} - -.banner_section .app_btn li a:hover { - background-color: var(--purple); -} - -.banner_section .app_btn li a:hover .blue_img { - opacity: 0; -} - -.banner_section .app_btn li a:hover .white_img { - opacity: 1; -} - -/* hero slider users */ -.banner_section .used_app { - display: flex; - align-items: center; - margin-top: 35px; -} - -.banner_section .used_app ul { - display: flex; - align-items: center; - margin-right: 10px; -} - -.banner_section .used_app ul li:not(:first-child) { - margin-left: -15px; -} - -.banner_section .used_app p { - font-size: 15px; - line-height: 19px; - margin-bottom: 0; -} - -/* hero slider images */ -.banner_section .banner_slider { - display: flex; - position: relative; -} - -.banner_section .banner_slider .left_icon { - position: absolute; - left: 15px; - bottom: 70px; - z-index: 9999; -} - -.banner_section .banner_slider .right_icon { - position: absolute; - right: 15px; - top: 70px; -} - -/* hero slider mobile frame */ -.banner_section .banner_slider .slider_frame { - position: absolute; - left: 50%; - transform: translateX(-50%); - z-index: 999; - width: 315px; -} - -.banner_section .banner_slider #frmae_slider::before { - content: ""; - position: absolute; - left: 5px; - top: 5px; - background-color: #fff; - width: calc(100% - 10px); - height: 92%; -} - -.banner_section .banner_slider::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 475px; - height: 475px; - border-radius: 100%; - background-color: var(--purple); - z-index: -5; -} - -.banner_section .banner_slider #frmae_slider { - width: 305px; - margin: 0 auto; -} - -/* hero slider control dots */ -.banner_section .owl-dots { - margin-top: 40px; -} - -.owl-carousel .owl-item img { - max-width: 100%; - width: auto; -} - - - - -/* ------------Trusted-Section-Css-Start----------- */ - -/* trusted logos wraper */ -.trusted_section { - margin-top: 40px; -} - -.trusted_section .company_logos { - padding-top: 20px; -} - -.trusted_section .company_logos img { - filter: grayscale(1); - margin: 0 auto; - transition: .4s all; -} - -.trusted_section .company_logos img:hover { - filter: grayscale(0); -} - - - -/* ----------Feature-Detail-Section-start------ */ - -/* features section wraper */ -.features_section .feature_detail { - background-color: var(--bg-white); - border-radius: 30px; - position: relative; - display: flex; - justify-content: space-between; - margin-top: 120px; - padding-top: 60px; - padding-bottom: 20px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* features section image */ -.features_section .feature_detail .feature_img { - position: absolute; - left: 50%; - transform: translateX(-50%); - top: -75px; -} - -.features_section .feature_detail .feature_img img { - max-width: 100%; -} - -/* features section box */ - -.features_section .feature_detail .feature_box { - max-width: 410px; -} - -.features_section .feature_detail .feature_box .data_block { - margin-bottom: 50px; -} - -.features_section .feature_detail .feature_box .data_block h4 { - font-size: 20px; - color: var(--dark-purple); - font-weight: 600; -} - -.features_section .feature_detail .left_data { - text-align: right; - padding-left: 130px; -} - -.features_section .feature_detail .right_data { - padding-right: 130px; -} - -.features_section .feature_detail .left_data .data_block .icon { - margin-right: -15px; -} - -.features_section .feature_detail .right_data .data_block .icon { - margin-left: -15px; -} - -.features_section .container { - max-width: 1370px; -} - - - -/* -----------------About-App-Section-Css-Start------------------ */ - -/* about us section wraper */ -.about_app_section .about_img { - display: flex; - align-items: center; - position: relative; -} - -/* about us section images*/ -.about_app_section .about_img img { - max-width: 100%; -} - -.about_app_section .about_img::before { - content: ""; - position: absolute; - left: 38%; - top: 50%; - transform: translate(-50%, -50%); - width: 500px; - height: 500px; - background-color: var(--bg-white); - border-radius: 100%; - z-index: -1; -} - -.about_app_section .about_img .screen_img { - margin-left: -135px; - margin-top: 110px; -} - -.about_app_section .about_text .section_title { - text-align: left; -} - -.about_app_section .about_text .section_title h2 { - margin-bottom: 15px; -} - -/* about us section statastics nomber */ -.about_app_section .about_text .app_statstic { - display: flex; - flex-wrap: wrap; - justify-content: space-between; - margin-bottom: 10px; - margin-top: 40px; -} - -.about_app_section .about_text .app_statstic li { - width: 248px; - background-color: var(--bg-white); - margin-bottom: 30px; - display: flex; - align-items: center; - border-radius: 12px; - padding: 15px 10px; - padding-left: 35px; - box-shadow: 0px 4px 10px #EDE9FE; -} - -.about_app_section .about_text .app_statstic li .icon { - margin-right: 9px; -} - -.about_app_section .about_text .app_statstic li p { - margin-bottom: 0; - line-height: 1; - color: var(--dark-purple); -} - -.about_app_section .about_text .app_statstic li p:first-child { - font-size: 40px; - font-weight: 600; - margin-bottom: 3px; -} - - -/* -------------Modern-Ui-Section-Css-Start---------------- */ -/* modern ui section wraper */ -.modern_ui_section .row { - align-items: center; -} - -.modern_ui_section .design_block { - margin-top: 45px; -} - -/* modern ui text */ -.modern_ui_section .section_title { - text-align: left; -} - -.modern_ui_section .ui_text { - padding-right: 75px; -} - -/* modern ui list */ -.modern_ui_section .design_block li { - padding-left: 40px; - position: relative; - margin-bottom: 25px; -} - -.modern_ui_section .design_block li::before { - content: ""; - position: absolute; - left: 0; - top: 5px; - background-image: url(../images/right_icon.png); - width: 22px; - height: 22px; - background-repeat: no-repeat; - background-position: center; - background-size: contain; -} - -.modern_ui_section .design_block li h4 { - font-size: 20px; - color: var(--dark-purple); - font-weight: 600; - margin-bottom: 8px; -} - -.modern_ui_section .design_block li p { - margin-bottom: 0; -} - -/* modern ui images */ -.modern_ui_section .ui_images { - display: flex; - position: relative; -} - -.modern_ui_section .ui_images::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 570px; - height: 570px; - border-radius: 100%; - background-color: var(--bg-white); - z-index: -1; -} - -.modern_ui_section .ui_images .right_img img:nth-child(3) { - margin-left: -140px; - margin-top: -20px; -} - -.modern_ui_section .ui_images .right_img img:nth-child(2) { - margin-left: -90px; - margin-top: -20px; -} - -.modern_ui_section .ui_images .right_img img:nth-child(1) { - position: relative; - top: 15px; - z-index: 99; - margin-left: -15px; -} - - -/* -------------How_It_Works-Section-Css-Start------------------ */ - -/* how it works wraper */ -.how_it_works .container { - max-width: 1370px; -} - -.how_it_works .how_it_inner { - background-color: var(--bg-white); - padding: 70px 0; - padding-bottom: 250px; - border-radius: 30px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* how it works list */ -.how_it_works .step_block ul { - max-width: 1080px; - margin: 0 auto; - padding: 10px; -} - -.how_it_works .step_block ul li { - display: flex; - align-items: center; - justify-content: space-between; - position: relative; - margin-bottom: 50px; -} - -.how_it_works .step_block ul li::before { - content: ""; - position: absolute; - left: 50%; - top: 50px; - transform: translateX(-50%); - width: 4px; - height: calc(100% + 100px); - background-color: var(--light-bg); -} - -.how_it_works .step_block ul li:first-child::after { - content: ""; - position: absolute; - left: 50%; - top: 0; - transform: translateX(-50%); - width: 14px; - height: 14px; - background-color: var(--light-bg); - border-radius: 15px; -} - -.how_it_works .step_block ul li:first-child::before { - top: 0; -} - -.how_it_works .step_block ul li:last-child::before { - height: 50%; - top: 0; -} - -.how_it_works .step_block ul li .step_text, -.how_it_works .step_block ul li .step_img { - width: 360px; - text-align: right; -} - -/* how it works image */ -.how_it_works .step_block ul li .step_img img { - max-width: 100%; -} - -/* how it works heading h4 */ -.how_it_works .step_block ul li .step_text h4 { - font-size: 20px; - font-weight: 600; -} - -.how_it_works .step_block ul li .step_text .app_icon { - margin-bottom: 10px; -} - -.how_it_works .step_block ul li .step_text .app_icon a { - display: inline-block; - width: 40px; - height: 40px; - border-radius: 100%; - background-color: var(--light-bg); - color: var(--text-white); - font-size: 20px; - text-align: center; - line-height: 40px; - transition: .4s all; -} - -.how_it_works .step_block ul li .step_text .app_icon a:hover { - background-color: var(--purple); -} - -.how_it_works .step_block ul li .step_text span { - font-weight: 600; -} - -.how_it_works .step_block ul li .step_text span a { - color: var(--purple); - text-decoration: underline; -} - -.how_it_works .step_block ul li:nth-child(2) { - flex-direction: row-reverse; -} - -.how_it_works .step_block ul li:nth-child(2) .step_text, -.how_it_works .step_block ul li:nth-child(2) .step_img { - text-align: left; -} - -/* how it works numbers */ -.how_it_works .step_block ul li .step_number { - background-image: url(../images/icon_bg.png); - background-size: cover; - background-repeat: no-repeat; - background-position: center; - width: 110px; - height: 110px; - display: flex; - justify-content: center; - align-items: center; - position: relative; -} - -/* how it works numbers heading h3 */ -.how_it_works .step_block ul li .step_number h3 { - font-size: 30px; - font-weight: 600; -} - -/* how it works video */ -.how_it_works .yt_video { - max-width: 1170px; - margin: 0 auto; - margin-top: -200px; - position: relative; - overflow: hidden; -} - -/* how it works video animation line */ -.how_it_works .yt_video .anim_line { - z-index: 999; -} - -.how_it_works .yt_video .thumbnil { - position: relative; -} - -.how_it_works .yt_video .thumbnil img { - max-width: 100%; -} - -.how_it_works .yt_video .thumbnil a { - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - text-align: center; - color: var(--text-white); - font-weight: 600; - z-index: 999; - cursor: pointer; -} - -.how_it_works .yt_video .thumbnil a span { - display: block; - font-weight: 700; - font-size: 30px; -} - -.how_it_works .yt_video .thumbnil a .play_btn { - background-color: rgba(255, 255, 255, 0.1); - width: 96px; - height: 96px; - border-radius: 100px; - text-align: center; - margin: 0 auto; - line-height: 96px; - position: relative; - display: block; - margin-bottom: 40px; -} - -.how_it_works .yt_video .thumbnil a .play_btn img { - width: 50px; - position: relative; - z-index: 999; -} - -/* how it works video model */ -.modal { - z-index: 999999; -} - -.modal-backdrop.show { - z-index: 99999; - opacity: .7; -} - -.youtube-video .modal-dialog { - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - margin: auto; - width: 100%; - padding: 0 15px; - height: 100%; - max-width: 1240px !important; - display: flex; - flex-direction: column; - justify-content: center; -} - -#video-container { - position: relative; - padding-bottom: 50%; - padding-top: 30px; - height: 0; - overflow: hidden; -} - -iframe#youtubevideo { - position: absolute; - top: 0; - left: 0; - height: 100%; - width: 100%; -} -.youtube-video .modal-footer { - border: none; - text-align: center; - display: block; - padding: 0; -} - -.youtube-video .modal-content { - background: none !important; - border: none; -} - -#close-video { - color: #fff; - font-size: 30px; -} - -/* ------------Testimonial-Slider-Css-Start------------- */ -/* testimonials wraper */ -#testimonial_slider { - max-width: 550px; - margin: 0 auto; -} - -.testimonial_section .testimonial_block { - background-image: url(../images/testimonial_bg.png); - background-size: cover; - background-position: center; - position: relative; - margin-top: 65px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box { - text-align: center; - width: 430px; - padding: 10px; - margin: 0 auto; -} - -/* testimonials rating */ -.testimonial_section .testimonial_block .rating span { - color: #FC9400; - font-size: 18px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box .review { - margin-top: 10px; - margin-bottom: 30px; -} - -/* testimonials image */ -.testimonial_section .testimonial_block .testimonial_slide_box .testimonial_img img { - margin: 0 auto; -} - -/* testimonials heading h3 */ -.testimonial_section .testimonial_block .testimonial_slide_box h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 0; - margin-top: 10px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box .designation { - font-size: 15px; -} - -/* testimonials total review */ -.testimonial_section .total_review { - text-align: center; - margin-top: 60px; -} - -.testimonial_section .total_review .rating { - display: flex; - align-items: center; - justify-content: center; -} - -/* testimonials paragraph */ -.testimonial_section .total_review .rating p { - margin-bottom: 0; - font-weight: 600; - margin-left: 5px; - color: var(--dark-purple); -} - -/* testimonials heading */ -.testimonial_section .total_review h3 { - font-size: 50px; - font-weight: 600; - margin-bottom: 0; - color: var(--dark-purple); -} - -.testimonial_section .total_review a { - color: var(--purple); - font-weight: 700; -} - -.testimonial_section .testimonial_block .avtar_faces { - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); - z-index: -1; - width: 100%; -} - -.testimonial_section .testimonial_block .avtar_faces img { - max-width: 100%; -} - - -/* -------------------Pricing-Section---------------------- */ - -/* pricing wraper */ -.pricing_section .toggle_block { - display: flex; - align-items: center; - justify-content: center; -} - -/* pricing toggle button */ -.pricing_section .toggle_block span { - color: var(--dark-purple); - font-weight: 600; - display: block; - margin: 0 5px; -} - -.tog_btn.month_active { - left: 35px !important; -} - -.pricing_section .toggle_block span.deactive { - color: var(--body-text-purple); -} - -.pricing_section .toggle_block .offer { - background-color: var(--bg-white); - border-radius: 5px; - padding: 2px 10px; - font-weight: 400; - font-size: 13px; - color: var(--purple); -} - -.pricing_section .toggle_block .tog_block { - width: 70px; - height: 35px; - background-color: var(--bg-white); - border-radius: 18px; - margin: 0 10px; - position: relative; - cursor: pointer; -} - -.pricing_section .toggle_block .tog_block .tog_btn { - height: 23px; - width: 23px; - border-radius: 25px; - display: block; - background-color: var(--purple); - position: absolute; - left: 3px; - top: 50%; - transform: translateY(-50%); - transition: .4s all; -} - -.pricing_section .toggle_block .month.active, -.pricing_section .toggle_block .years.active { - color: var(--purple); -} - -/* pricing pannel */ -.pricing_section .pricing_pannel { - margin-top: 50px; - display: none; -} - -.pricing_section .pricing_pannel.active { - display: block; -} - -.pricing_section .pricing_pannel .pricing_block { - text-align: center; - background-color: var(--bg-white); - min-height: 700px; - border-radius: 12px; - padding-top: 60px; - margin-bottom: 40px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -.pricing_section .pricing_pannel .pricing_block.highlited_block { - background-color: var(--purple); -} - -.pricing_section .pricing_pannel .pricing_block.highlited_block p, -.pricing_section .pricing_pannel .pricing_block.highlited_block h3, -.pricing_section .pricing_pannel .pricing_block.highlited_block span, -.pricing_section .pricing_pannel .pricing_block.highlited_block .pkg_name span { - color: var(--text-white); -} - -.pricing_section .pricing_pannel .pricing_block .icon { - margin-bottom: 35px; -} - -/* pricing box image */ -.pricing_section .pricing_pannel .pricing_block .icon img { - width: 120px; -} - -/* pricing box heading h3 */ -.pricing_section .pricing_pannel .pricing_block .pkg_name h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 0; -} - -.pricing_section .pricing_pannel .pricing_block .pkg_name span { - color: var(--body-text-purple); - font-size: 15px; -} - -.pricing_section .pricing_pannel .pricing_block .price { - font-size: 48px; - color: var(--purple); - margin: 25px 0; - display: block; - font-weight: 600; -} - -/* pricing box list */ -.pricing_section .pricing_pannel .pricing_block .benifits { - margin-bottom: 40px; -} - -.pricing_section .pricing_pannel .pricing_block .benifits li p { - margin-bottom: 5px; -} - -.pricing_section .contact_text { - text-align: center; - margin-bottom: 0; -} - -.pricing_section .contact_text a { - color: var(--purple); - text-decoration: underline; -} - - -/* -------------FAQ-Section-Css-Start----------------- */ - -/* faq wraper */ -.faq_section .faq_panel { - margin-top: 40px; -} - -/* faq box */ -.faq_section .faq_panel .card { - border: none; - margin-bottom: 20px; - border-radius: 12px; - box-shadow: 0 4px 10px #EDE9FE; - padding: 16px 0; -} - -.faq_section .faq_panel .card:last-child { - margin-bottom: 0; -} - -.faq_section .faq_panel .card-header { - background-color: transparent; - border: none; - padding-bottom: 0; - padding-top: 0; -} - -.faq_section .faq_panel .card-header .btn { - padding: 0; - color: var(--dark-purple); - font-weight: 600; - font-size: 20px; -} - -.faq_section .faq_panel .card-header .btn.active { - color: var(--purple); -} - -.faq_panel .accordion button, -.faq_panel .accordion button:hover, -.faq_panel .accordion button:focus { - text-decoration: none; -} - -.faq_section .faq_panel .card-header .icon_faq { - position: absolute; - right: 20px; - color: #839BC0; -} - -/* faq heading h2 */ -.faq_section .faq_panel .card-header h2 { - line-height: 1; -} - -/* faq paragraph */ -.faq_section .faq_panel .card-body { - padding-bottom: 0; -} - - -/* -----------Interface_Section-Css-Start----------------- */ - -/* interface wraper */ -.interface_section .screen_slider { - margin-top: 35px; - min-height: 720px; -} - -/* interface images */ -.interface_section .owl-item .screen_frame_img img { - transform: scale(.9); - border: 2px solid #000; - border-radius: 20px; - transition: 1s all; - margin: 0 auto; -} - -.interface_section .owl-item.center .screen_frame_img img { - transform: scale(1); - border: 3px solid #000; - -} - - -/* -----------Download_App_Section-Start------------------ */ - -/* download app wraper */ -.free_app_section { - padding-top: 70px; - position: relative; -} - -.free_app_section .container { - max-width: 1370px; -} - -.free_app_section .container .free_app_inner { - background-color: var(--bg-purple); - border-radius: 30px; - padding: 20px 100px; - padding-bottom: 50px; - position: relative; - z-index: 999999; -} - -/* download app dark background */ -.free_app_section .container .free_app_inner .dark_bg { - overflow: hidden; -} - -.free_app_section .container .free_app_inner .dark_bg span { - z-index: 9999; -} - -.free_app_section .container .free_app_inner .row { - align-items: center; -} - -.free_app_section .container .free_app_inner .free_text .section_title { - text-align: left; -} - -/* download app heading h2 */ -.free_app_section .container .free_app_inner .free_text .section_title h2 { - margin-bottom: 20px; -} - -.free_app_section .container .free_app_inner .free_text .section_title h2, -.free_app_section .container .free_app_inner .free_text .section_title p { - color: var(--text-white); -} - -.free_app_section .container .free_app_inner .free_text .app_btn { - display: flex; - align-items: center; -} - -.free_app_section .container .free_app_inner .free_text .app_btn li a { - display: block; - padding: 12px 30px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; -} - -.free_app_section .container .free_app_inner .free_text .app_btn li a:hover { - -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); --moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -} - -.free_app_section .container .free_app_inner .free_text .app_btn li:last-child { - margin-left: 25px; -} - -.free_app_section .container .free_app_inner .free_img { - display: flex; - align-items: center; - margin-top: -120px; -} - -.free_app_section .container .free_app_inner .free_img img:last-child { - margin-left: -65px; -} - -.purple_backdrop { - content: ""; - position: fixed; - left: 0; - top: 0; - background-color: rgba(50, 35, 111, 0.95); - width: 100%; - height: 100%; - z-index: 99999; - opacity: 0; - transition: .4s all; - pointer-events: none; -} - -/* ---------------Latest_Story-Css-Start------------- */ - -/* latest story wraper */ -.latest_story { - margin-bottom: 80px; -} - -/* latest story box */ -.latest_story .story_box { - background-color: var(--bg-white); - text-align: center; - border-radius: 10px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* latest story image */ -.latest_story .story_box .story_img { - position: relative; -} - -.latest_story .story_box .story_img img { - max-width: 100%; - border-radius: 12px; -} - -.latest_story .story_box .story_img span { - position: absolute; - left: 15px; - top: 15px; - font-size: 14px; - color: var(--text-white); -} - -/* latest story pargraph */ -.latest_story .story_box .story_text { - padding: 20px 30px; -} - -/* latest story heading h3 */ -.latest_story .story_box .story_text h3 { - color: var(--dark-purple); - font-size: 20px; - margin-bottom: 15px; - font-weight: 600; -} - -/* latest story link text */ -.latest_story .story_box .story_text a { - color: var(--purple); - margin-top: 25px; - display: block; - font-size: 14px; - margin-bottom: 10px; - font-weight: 600; -} - -.latest_story .story_box .story_text a:hover { - text-decoration:underline; -} - - - -/* -------------Newsletter-Section-Css-Start------------- */ - -/* newsletter wraper */ -.newsletter_box { - background-color: var(--bg-purple); - padding: 50px; - border-radius: 12px; - box-shadow: 0 4px 10px #0c0c0c21; - display: flex; - justify-content: space-between; - align-items: center; - margin-bottom: -95px; - position: relative; - z-index: 99; -} - -.newsletter_box .section_title { - width: 45%; -} - -.newsletter_box form { - width: 60%; -} - -/* newsletter heading h2 */ -.newsletter_box .section_title h2 { - margin-bottom: 5px; - letter-spacing: -1px; -} - -.newsletter_box .section_title h2, -.newsletter_box .section_title p { - color: var(--text-white); - text-align: left; -} - -/* newsletter paragraph */ -.newsletter_box .section_title p { - margin-bottom: 0; -} - -/* newsletter input */ -.newsletter_box form { - display: flex; -} - -.newsletter_box form .form-group { - margin-bottom: 0; -} - -.newsletter_box form .form-group .form-control { - width: 430px; - height: 55px; - border-radius: 6px; - color: var(--dark-purple); -} - -.newsletter_box form .form-group .form-control::placeholder { - color: var(--dark-purple); -} - -/* newsletter button */ -.newsletter_box form .form-group .btn { - height: 55px; - width: 170px; - text-transform: uppercase; - color: var(--purple); - background-color: var(--bg-white); - border-radius: 6px; - margin-left: 10px; - font-weight: 600; - position: relative; - overflow: hidden; - z-index: 1; -} - -.newsletter_box form .form-group .btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-purple); - border-radius: 0; - transition: .6s all; - z-index: -1; -} - -.newsletter_box form .form-group .btn:hover::before { - width: 100%; -} - -.newsletter_box form .form-group .btn:hover { - color: var(--text-white); -} - - -/* ------Footer-Css-Start-------------- */ -/* footer wraper */ -footer { - position: relative; -} - -footer .top_footer { - background-color: #583BD3; - padding: 180px 0 60px 0; - position: relative; - overflow: hidden; -} - -footer .top_footer.has_bg { - background-image: url(../images/footer_bg.png); - background-size: cover; - background-repeat: no-repeat; - background-position: center; -} - -/* footer logo */ -footer .top_footer .logo { - margin-bottom: 40px; -} - -footer .top_footer .logo img { - width: 150px; -} - -footer .top_footer .abt_side li { - padding: 0 0 10px 0; -} - -/* footer social media icon */ -footer .top_footer .social_media { - display: flex; - margin-top: 20px; -} - -/* footer link list */ -footer .top_footer .social_media li a { - display: block; - width: 37px; - height: 37px; - text-align: center; - line-height: 37px; - font-size: 15px; - border: 1px solid rgba(255, 255, 255, 0.3); - border-radius: 50px; - margin-right: 10px; - transition: .4s all; -} - -footer .top_footer .social_media li a:hover { - background-color: var(--bg-white); - color: var(--purple); -} - -footer .top_footer .try_out { - margin-left: -20px; -} - -footer .app_btn li a { - display: block; - padding: 12px 10px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; - width: 175px; - text-align: center; -} - -footer .app_btn li a:hover { - -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); - -moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); - box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -} - -footer .app_btn li:last-child { - margin-top: 20px; -} - -footer .bottom_footer { - background-color: var(--bg-purple); -} - -/* footer heading and text colors variable */ -footer h2, -footer h3, -footer p, -footer a { - color: var(--text-white); -} - -footer a:hover { - color: var(--text-white); -} - -/* footer heading h3 */ -footer h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 50px; - padding-top: 10px; -} - -footer .links ul li a { - display: block; - margin-bottom: 10px; -} - -/* footer last */ -footer .bottom_footer { - padding: 20px 0; -} - -footer .bottom_footer p { - margin-bottom: 0; - font-size: 15px; -} - -footer .bottom_footer .developer_text { - text-align: right; -} - -footer .bottom_footer .developer_text a { - text-decoration: underline; -} - -/* footer go top button */ -.go_top { - position: fixed; - right: 30px; - bottom: 75px; - cursor: pointer; - transition: .4s all; - opacity: 0; -} - -.go_top:hover { - bottom: 80px; -} - -/* -----------Animation-Css-Start-------------- */ - -/* animation line wraper */ -.anim_line { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); -} - -.anim_line span { - position: absolute; - z-index: 99999; - top: -275px; - animation: star_down_one 6s infinite linear; - opacity: 0; -} - -.anim_line.dark_bg { - max-width: 1170px; -} - -.anim_line.dark_bg span { - transform: rotate(180deg); -} - -.anim_line span:first-child { - left: -17%; - animation-delay: 3s; -} - -.anim_line span:nth-child(2) { - left: 0%; - animation-delay: 5s; -} - -.anim_line span:nth-child(3) { - left: 17%; - animation-delay: 1s; -} - -.anim_line span:nth-child(4) { - left: 34%; - animation-delay: 4s; -} - -.anim_line span:nth-child(5) { - left: 51%; - animation-delay: 7s; -} - -.anim_line span:nth-child(6) { - left: 68%; -} - -.anim_line span:nth-child(7) { - left: 85%; - animation-delay: 3s; -} - -.anim_line span:nth-child(8) { - left: 99%; - animation-delay: 2s; -} - -.anim_line span:nth-child(9) { - left: 117%; - animation-delay: 5s; -} - -/* footer .top_footer .anim_line span:first-child { - left: 5%; -} - -footer .top_footer .anim_line span:nth-child(2) { - left: 13%; -} */ - -@keyframes star_down_one { - 0% { - opacity: 0; - top: -250px; - } - - 10% { - opacity: 1; - } - - 90% { - opacity: 1; - } - - 100% { - top: 100%; - opacity: 0; - } -} - - - - -/* --------Object-Moving-Animation-Css-Start----- */ -.moving_animation { - animation: moving_object 6s infinite linear; -} - -.moving_position_animatin { - position: relative; - animation: moving_position_animatin 6s infinite linear; - z-index: -1; -} - -.about_app_section .about_img .screen_img img { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(3) { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(2) { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(1) { - animation-delay: 3s; -} - -@keyframes moving_object { - 0% { - transform: translateY(0); - } - - 50% { - transform: translateY(-30px); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes moving_position_animatin { - 0% { - transform: translateY(0); - } - - 50% { - transform: translateY(-30px); - } - - 100% { - transform: translateY(0); - } -} - - -/* ------------Waves-Animation---------------- */ -.waves-block { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50% , -50%); - width: 150px; - height: 150px; -} - -.waves { - width: 150px; - height: 150px; - background: rgba(255, 255, 255, 0.3); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - border-radius: 100%; - z-index: -1; - -webkit-animation: waves 3s ease-in-out infinite; - animation: waves 3s ease-in-out infinite; -} - -.wave-1 { - -webkit-animation-delay: 0s; - animation-delay: 0s; -} - -.wave-2 { - -webkit-animation-delay: 1s; - animation-delay: 1s; - position: absolute; - top: 0; -} - -.wave-3 { - -webkit-animation-delay: 2s; - animation-delay: 2s; - position: absolute; - top: 0; -} - -@keyframes waves { - 0% { - -webkit-transform: scale(0.2, 0.2); - transform: scale(0.2, 0.2); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - } - - 50% { - opacity: 0.9; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; - } - - 100% { - -webkit-transform: scale(0.9, 0.9); - transform: scale(0.9, 0.9); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - } -} - - - -/*------Header Btn Animation------*/ -@keyframes pulse-blue-small-sm { - 0% { - box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.7); - } - - 100%, - 30% { - box-shadow: 0 0 0 12px transparent - } -} - -@keyframes pulse-blue-medium-sm { - 0% { - box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.4); - } - - 100%, - 30% { - box-shadow: 0 0 0 20px transparent - } -} - - -/*------WhiteHeader Btn Animation------*/ -@keyframes pulse-white-small-sm { - 0% { - box-shadow: 0 0 0 0 rgba(253, 253, 253, 0.7); - } - - 100%, - 30% { - box-shadow: 0 0 0 12px transparent - } -} - -@keyframes pulse-white-medium-sm { - 0% { - box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); - } - - 100%, - 30% { - box-shadow: 0 0 0 20px transparent - } -} - - -/* Inner Page banner shape animation */ -.bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 { - position: absolute; } - -.bred_crumb .banner_shape1 { - top: 200px; - left: 15%; - animation: mymove 10s infinite; -} - -.bred_crumb .banner_shape2 { - top: 100px; - right: 10%; - animation: mymove 5s infinite; -} - -.bred_crumb .banner_shape3 { - top: 350px; - right: 20%; - animation: mymove 3s infinite; -} - - -/* CTA section Shape animation */ - -.query_section .banner_shape1, .banner_shape2, .banner_shape3 { - position: absolute; } - -.query_section .banner_shape1 { - top: 200px; - left: 15%; - animation: mymove 10s infinite; -} - -.query_section .banner_shape2 { - top: 100px; - right: 10%; - animation: mymove 5s infinite; -} - -.query_section .banner_shape3 { - top: 350px; - right: 20%; - animation: mymove 3s infinite; -} - - -@keyframes mymove { - 50% {transform: rotate(180deg);} -} - - - - -/* ----------Other-Page-Css-Start---------- */ - -/* White Header Css Satart */ - -.white_header .navbar-expand-lg .navbar-nav .nav-link ,.white_header .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn { - color: var(--text-white); -} - -.white_header .navbar-expand-lg .navbar-nav .has_dropdown:hover .drp_btn { - color: var(--purple); -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn { - background-color: var(--bg-white); - color: var(--purple); -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn::before { - animation: pulse-white-medium-sm 3.5s infinite -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - animation: pulse-white-small-sm 3.5s infinite -} - -header.fix_style.white_header { - background-color: #664bece0; -} - - -/* About Us Page Css Start */ - -/* Bredcrumb Css Start */ -.bred_crumb { - background-image: url(../images/bread_crumb_bg.png); - /*background: var(--purple);*/ - background-repeat: no-repeat; - background-size: cover; - background-position: center; - min-height: 500px; - width: 100%; - display: flex; - align-items: center; - position: relative; - margin-top: -96px; -} - -.bred_crumb::after { - content: ""; - background-image: url(../images/inner_page_banner_overlay.svg); - position: absolute; - bottom: -1px; - left: 0; - background-size: cover; - background-repeat: no-repeat; - width: 100%; - height: 200px; - background-position: center; -} - -.bred_crumb .bred_text { - text-align: center; - z-index: 1000; - position: relative; -} - -.bred_crumb .bred_text h1 { - color: var(--text-white); - font-size: 55px; - font-weight: 700; -} - -.bred_crumb .bred_text h1 + p { - color: var(--text-white); - margin-top: -5px; -} - -.bred_crumb .bred_text ul { - display: flex; - justify-content: center; - align-items: center; -} - -.bred_crumb .bred_text ul li { - margin: 0 5px; -} - -.bred_crumb .bred_text ul li a, .bred_crumb .bred_text ul li span { - color: var(--text-white); - font-size: 14px; - transition: .4s all; -} - -.bred_crumb .bred_text ul li a:hover { - text-decoration: underline; -} - -.bred_crumb .bred_text .search_bar { - margin-top: 25px; - position: relative; - z-index: 1000; -} - -.bred_crumb .bred_text .search_bar form .form-group { - position: relative; - max-width: 600px; - height: 60px; - margin: 0 auto; -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control { - width: 100%; - height: 100%; - border-radius: 100px; - border: 1px solid var(--bg-purple); - font-size: 16px; - padding-left: 30px; - color: var(--body-text-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control::placeholder { - color: var(--body-text-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control:focus { - outline: none; - box-shadow: none; - border-color: var(--dark-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .btn { - position: absolute; - right: 2px; - top: 2px; - background-color: var(--bg-purple); - width: 56px; - height: 56px; - padding: 0; - border-radius: 100px; - text-align: center; - line-height: 56px; - font-size: 23px; - color: var(--text-white); -} - -.bred_crumb .bred_text .search_bar form .form-group .btn:hover { - background-color: var(--dark-purple); -} - -/* ----About App Soluction Section--- */ - -.app_solution_section .row { - align-items: center; -} - -.app_solution_section .app_text .section_title { - text-align: left; - margin-bottom: 20px; -} - -.app_solution_section .app_text .section_title h2 { - letter-spacing: -1px; -} - -.app_solution_section .app_text p { - padding-right: 40px; -} - -.app_solution_section .app_images { - position: relative; -} - -.app_solution_section .app_images ul { - display: flex; - flex-wrap: wrap; - align-items: flex-start; - justify-content: space-between; -} - -.app_solution_section .app_images ul li { - position: relative; -} - -.app_solution_section .app_images ul li a { - position: relative; -} - -.app_solution_section .app_images ul li a .play_icon { - background-color: rgba(255, 255, 255, 0.1); - width: 96px; - height: 96px; - border-radius: 100px; - text-align: center; - margin: 0 auto; - line-height: 96px; - position: absolute; - display: block; - top: 50%; - left: 50%; - transform: translate(-50% , -50%); - -} - -.app_solution_section .app_images ul li img { - max-width: 100%; -} - -.app_solution_section .app_images li:first-child { - margin-bottom: 30px; - text-align: center; - width: 100%; -} - -.app_solution_section .app_images ul li:nth-child(2) { - left: -5px; - cursor: pointer; -} - -.app_solution_section .app_images ul li:nth-child(3) { - right: -5px; -} - -.app_solution_section .app_images::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 570px; - height: 570px; - border-radius: 100%; - background-color: var(--bg-white); - z-index: -1; -} - - -/* ------Why Section CSS Start------ */ - -.why_we_section { - display: flex; - justify-content: center; -} - -.why_we_section .why_inner { - background-color: var(--bg-white); - border-radius: 30px; - width: 1370px; - margin: 0 15px; - box-shadow: 0 4px 30px #EDE9FE; - padding: 85px 0; -} - -.why_we_section .why_inner .section_title { - margin-bottom: 50px; -} - -.why_we_section .why_inner .why_box .icon { - margin-bottom: 45px; -} - -.why_we_section .why_inner .why_box .icon img { - max-width: 100%; -} - -.why_we_section .why_inner .why_box .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 10px; -} - -.why_we_section .why_inner .why_box .text p { - margin-bottom: 0; -} - - -/* About-Page-Sectino */ - -.about_page_sectino img {max-width: 100%;} - -/* -----------experts_team_sectio---------- */ - -.experts_team_section .experts_box { - position: relative; - text-align: center; - padding: 35px 30px; - border-radius: 12px; - background-color: transparent; - transition: .4s all; -} - -.experts_team_section .experts_box img { - margin-bottom: 30px; - max-width: 100%; -} - -.experts_team_section .experts_box .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - transition: .4s all; -} - -.experts_team_section .experts_box .text span { - color: var(--body-text-purple); -} - -.experts_team_section .experts_box .social_media { - display: flex; - justify-content: center; - align-items: center; - margin-top: 5px; -} - -.experts_team_section .experts_box .social_media a { - display: block; - width: 33px; - height: 33px; - border: 1px solid #CCCCE2; - border-radius: 50px; - text-align: center; - line-height: 31px; - color: #898AAE; - margin: 0 5px; - transition: .4s all; - font-size: 15px; -} - -.experts_team_section .experts_box .social_media a:hover { - border-color: var(--purple); - background-color: var(--bg-purple); - color: var(--text-white); -} - -.experts_team_section .experts_box:hover { - background-color: var(--bg-white); - box-shadow: 0 4px 10px #EDE9FE; -} - -.experts_team_section .experts_box:hover h3 { - color: var(--purple); -} - - -/* ---------Query-Section-Css-Start-------- */ -.query_section { - display: flex; - justify-content: center; -} - -.query_inner { - width: 1370px; - margin: 0 15px; - /*background-image: url(../images/query_bg.png);*/ - background: var(--purple); - background-size: cover; - background-repeat: no-repeat; - border-radius: 30px; - min-height: 420px; - text-align: center; - display: flex; - justify-content: center; - align-items: center; -} - -.query_inner .section_title h2 , -.query_inner .section_title p { - color: #fff; -} - -.query_inner .section_title { - margin-bottom: 40px; -} - -.query_inner .white_btn { - font-size: 25px; - font-weight: 700; -} - -.query_inner .white_btn:hover { - border-color: #fff; -} - -.about_trust_section { - margin-bottom: 40px; -} - - -/* Blog List Css Start */ -.blog_list_story { - margin-bottom: 50px; -} - -.blog_list_main { - position: relative; -} - -.blog_list_main > .container > .row { - align-items: center; -} - -.blog_list_main .blog_img { - position: relative; -} - -.blog_list_main .blog_img img { - max-width: 100%; - border-radius: 12px; -} - -.blog_list_main .blog_img span { - position: absolute; - left: 15px; - top: 15px; - font-size: 14px; - color: var(--text-white); -} - -.blog_list_main .blog_text .section_title { - text-align: left; -} - -.blog_list_main .blog_text .choice_badge { - font-size: 12px; - background-color: #F8D979; - display: inline-block; - padding: 1px 10px; - border-radius: 4px; - color: var(--dark-purple); - font-weight: 700; - margin-bottom: 10px; -} - -.blog_list_main .blog_text a { - color: var(--purple); - margin-top: 25px; - display: block; - font-size: 14px; - margin-bottom: 10px; - font-weight: 600; -} - -.blog_list_main .blog_text a:hover { - text-decoration: underline; -} - -.blog_list_story.row_am { - padding-top: 30px; -} - -.blog_list_story .story_box { - margin-bottom: 40px; - text-align: left; -} - -/* Pagination Css Start */ -.pagination_block ul {display: flex; - justify-content: center; - align-items: center; - margin-top: 10px; -} - -.pagination_block ul li:not(:first-child , :last-child) a {margin: 0 5px; - transition: .4s all; - display: block; - width: 35px; - height: 35px; - background-color: transparent; - border-radius: 50px; - text-align: center; - line-height: 35px; -} - -.pagination_block ul li:first-child { - margin-right: 20px; -} - -.pagination_block ul li:last-child { - margin-left: 20px; -} - -.pagination_block ul li:not(:first-child , :last-child) a:hover , .pagination_block ul li:not(:first-child , :last-child) a.active { - background-color: var(--bg-purple); - color: var(--text-white); -} - -.pagination_block ul li:first-child a:hover { - color: var(--purple); -} - -.pagination_block ul li:last-child a:hover { - color: var(--purple); -} - -/* Blog Detail Css Start */ -.blog_detail_section { - margin-bottom: 40px; -} - -.blog_detail_bredcrumb.bred_crumb .bred_text { - margin-top: -30px; -} - -.blog_detail_section .blog_inner_pannel { - background-color: #FFFFFF; - border-radius: 30px; - padding: 45px 60px; - margin-top: -120px; - position: relative; - box-shadow: 0 8px 30px #c0bad76b; -} - -.blog_detail_section .blog_inner_pannel .review { - display: flex; - justify-content: center; - margin-bottom: 15px; -} - -.blog_detail_section .blog_inner_pannel .review span { - line-height: 1; -} - -.blog_detail_section .blog_inner_pannel .review span:first-child { - color: var(--purple); - display: inline-block; - font-weight: 700; -} - -.blog_detail_section .blog_inner_pannel .review span:last-child { - color: var(--dark-purple); - display: inline-block; - margin-left: 15px; - padding-left: 15px; - border-left: 1px solid var(--dark-purple); -} - -.blog_detail_section .blog_inner_pannel .section_title { - margin-bottom: 40px; -} - -.blog_detail_section .blog_inner_pannel .section_title h2 { - margin-bottom: 0; -} - -.blog_detail_section .blog_inner_pannel img { - max-width: 100%; -} - -.blog_detail_section .blog_inner_pannel .main_img { - margin-bottom: 30px; -} - -.blog_detail_section .blog_inner_pannel .info h3 { - font-weight: 700; - color: var(--dark-purple); - margin-top: 30px; - font-size: 25px; - margin-bottom: 15px; -} - -.blog_detail_section .blog_inner_pannel .info ul { - padding-left: 50px; - padding-top: 10px; - margin-bottom: 30px; -} - -.blog_detail_section .blog_inner_pannel .info ul li p { - position: relative; - padding-left: 25px; - margin-bottom: 0; -} - -.blog_detail_section .blog_inner_pannel .info ul li p .icon { - position: absolute; - left: 0; - color: var(--purple); -} - -.blog_detail_section .blog_inner_pannel .two_img { - margin-bottom: 70px; -} - -.blog_detail_section .blog_inner_pannel .quote_block { - background-color: #F6F4FE; - border-radius: 12px; - padding: 55px 35px 35px 60px; - position: relative; - margin-top: 50px; - margin-bottom: 35px; -} - -.blog_detail_section .blog_inner_pannel .quote_block h2 { - font-size: 25px; - line-height: 37px; -} - -.blog_detail_section .blog_inner_pannel .quote_block p { - margin-bottom: 0; - margin-top: 15px; -} - -.blog_detail_section .blog_inner_pannel .quote_block .name { - color: var(--purple); - font-weight: 700; -} - -.blog_detail_section .blog_inner_pannel .quote_block .q_icon { - position: absolute; - top: -20px; - width: 63px; - height: 63px; - background-color: var(--bg-white); - border-radius: 100px; - display: flex; - justify-content: center; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .quote_block .q_icon img { - width: 35px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore { - display: flex; - justify-content: space-between; - align-items: center; - padding: 40px 0; - border-top: 1px solid #D6D3E3; - border-bottom: 1px solid #D6D3E3; - margin: 35px 0; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info { - display: flex; - justify-content: space-between; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text { - margin-left: 20px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 5px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text span { - font-size: 14px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul { - display: flex; -} - -/* Social Media link list */ -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a { - display: block; - width: 37px; - height: 37px; - text-align: center; - line-height: 37px; - font-size: 15px; - border: 1px solid #CCC9D7; - border-radius: 50px; - margin-right: 10px; - transition: .4s all; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li:last-child a { - margin-right: 0; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a:hover { - background-color: var(--bg-purple); - color: var(--text-white); -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul { - display: flex; - justify-content: center; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul .tags p { - margin-bottom: 0; - color: var(--dark-purple); - font-weight: 500; - margin-right: 5px; -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul li span { - color: var(--purple); - font-weight: 500; -} - - -/* comment section Css Start */ -.comment_section ul { - margin-top: 30px; -} - -.comment_section ul li { - display: flex; - align-items: center; - padding: 30px 0; - border-top: 1px solid #D6D3E3; -} - -.comment_section ul li:last-child { - padding-bottom: 0; -} - -.comment_section ul li.replay_comment { - margin-left: 110px; -} - -.comment_section ul li .authore_info { - display: flex; - align-items: center; - width: 260px; -} - -.comment_section ul li .authore_info .avtar { - width: 88px; - margin-right: 20px; -} - -.comment_section ul li .authore_info .text { - width: calc(100% - 108px); -} - -.comment_section ul li .authore_info .text h4 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); -} - -.comment_section ul li .authore_info .text span { - font-size: 14px; -} - -.comment_section ul li .comment { - width: calc(100% - 310px); - margin-left: 50px; -} - -.comment_section ul li .comment p { - margin-bottom: 0; -} - - - -/* comment-form-section */ - -.comment_form_section form { - margin-top: 30px; -} - -.comment_form_section form .form-group .form-control { - border-radius: 12px; - height: 60px; - box-shadow: 0 3px 6px #EDE9FE; - border: transparent; - margin-bottom: 30px; - color: var(--body-text-purple); - padding: 15px; -} - -.comment_form_section form .form-group .form-control::placeholder { - color: var(--body-text-purple); -} - -.comment_form_section form .form-group textarea.form-control { - height: 140px; - padding-top: 15px; - resize: none; -} - - -/* Sign Up Css Start */ -.full_bg { - /*background-image: url(../images/form_bg.png);*/ - background-size: cover; - background: #003b73; - width: 100%; - height: 100vh; - overflow-y: auto; - padding-bottom: 50px; -} - -.signup_section { - position: relative; -} - -.signup_section .back_btn { - position: absolute; - left: 0; - top: 92px; - color: #fff; - font-weight: 500; -} - -.signup_section .top_part { - text-align: center; - padding-top: 30px; - padding-bottom: 15px; -} - -.signup_form { - width: 570px; - margin: 0 auto; - padding: 40px 0; - border-radius: 12px; - box-shadow: 0 4px 10px #00000054; - background-color: var(--bg-white); -} - -.signup_form form { - padding: 0 60px; -} - -.signup_form .section_title { - padding: 0 15px; -} - -.signup_form .section_title h2 { - font-weight: 600; -} - -.signup_form form .form-group { - margin-bottom: 20px; -} - -.signup_form form .form-group .form-control { - height: 60px; - padding: 5px 20px; - color: var(--body-text-purple); - border: 2px solid #E1DBF4; - border-radius: 12px; - font-weight: 500; -} - -.signup_form form .form-group .form-control:focus { - box-shadow: none; - border-color: var(--purple); - color: var(--purple); -} - -.signup_form form .form-group .puprple_btn { - min-width: 240px; - display: block; - margin: 40px auto; - margin-bottom: 30px; - font-weight: 600; -} - -.signup_form .or_block { - display: block; - text-align: center; - border-bottom: 1px solid #E3E1ED; -} - -.signup_form .or_block span { - position: relative; - top: 14px; - padding: 0 5px; - background-color: var(--bg-white); - color: #8081AD; -} - -.signup_form .or_option { - text-align: center; -} - -.signup_form .or_option > p { - color: #8081AD; - margin-top: 30px; -} - -.signup_form .or_option .google_btn { - min-width: 330px; - border: 2px solid #E1DBF4; - text-align: center; - color: var(--body-text-purple); - padding: 16px; - border-radius: 100px; - transition: .4s all; -} - -.signup_form .or_option .google_btn:hover { - border-color: var(--light-purple); -} - -.signup_form .or_option .google_btn img { - margin-right: 20px; -} - -.signup_form .or_option p a { - color: #E62E04; - text-decoration: underline; - transition: .4s all; -} - -.signup_form .or_option p a:hover { - color: #003b73; -} - - -/* Review List Section Css Start */ - -.review_list_section .review_box { - padding: 40px 30px; - background-color: #fff; - border-radius: 12px; - box-shadow: 0 4px 10px #EDE9FE; - margin: 20px 0; -} - -.review_list_section .review_box .rating ul { - display: flex; -} - -.review_list_section .review_box .rating ul li span { - color: #FC9400; - font-size: 18px; -} - -.review_list_section .review_box h3 { - font-size: 20px; - color: var(--purple); - margin: 10px 0; -} - -.review_list_section .review_box .reviewer { - display: flex; - align-items: center; - margin-top: 35px; -} - -.review_list_section .review_box .reviewer .avtar { - width: 80px; -} - -.review_list_section .review_box .reviewer .text { - margin-left: 20px; - width: calc(100% - 100px); -} - -.review_list_section .review_box .reviewer .text h3 { - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 0; -} - -/* review-freeapp */ - -.review_freeapp { - margin: 60px 0; -} - -.review_freeapp .free_app_inner { - background: url(../images/free_review_bg.png); - background-size: cover; - background-position: 90%; -} - -/* Contact Page Css Start */ - -.contact_page_section .contact_inner { - display: flex; - justify-content: space-between; - align-items: center; - position: relative; - margin-top: -150px; -} - -.contact_page_section .contact_inner .section_title h2 { - font-weight: 600; -} - -.contact_page_section .contact_inner .contact_form { - width: 570px; - padding: 50px 60px; - border-radius: 22px; - background-color: #fff; - box-shadow: 0 4px 10px #EDE9FE; -} - -.contact_page_section .contact_inner .contact_form h2 { - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_form form { - margin-top: 30px; -} - -.contact_page_section .contact_inner .contact_form form .form-group { - margin-bottom: 20px; -} - -.contact_page_section .contact_inner .contact_form form .form-group .form-control { - height: 60px; - padding: 5px 20px; - color: var(--body-text-purple); - border: 2px solid #E1DBF4; - border-radius: 12px; - font-weight: 500; -} - -.contact_page_section .contact_inner .contact_form form .form-group .form-control:focus { - box-shadow: none; - border-color: var(--purple); - color: var(--purple); -} - -.contact_page_section .contact_inner .contact_form form .form-group textarea.form-control { - height: 140px; - padding-top: 15px; -} - -.contact_page_section .contact_inner .contact_form form .term_check { - display: flex; - align-items: center; -} - -.contact_page_section .contact_inner .contact_form form .term_check input { - width: 17px; - height: 17px; - accent-color: var(--purple); -} - -.contact_page_section .contact_inner .contact_form form .term_check label { - font-size: 13px; - margin-bottom: 0; - margin-left: 7px; -} - -.contact_page_section .contact_inner .contact_form form .form-group button { - width: 240px; - margin: 0 auto; - display: block; - margin-top: 10px; - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_info { - width: 480px; -} - -.contact_page_section .contact_inner .contact_info .section_title { - text-align: left; - margin-top: 15px; -} - -.contact_page_section .contact_inner .contact_info .section_title p a { - color: var(--purple); - text-decoration: underline; -} - -.contact_page_section .contact_inner .contact_info .btn { - width: 180px; - margin: 10px 0 50px 0; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li { - display: flex; - align-items: center; - margin-bottom: 30px; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li:last-child { - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .img { - width: 65px; - margin-right: 20px; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text { - width: calc(100% - 85px); -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text span { - display: block; - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text p , -.contact_page_section .contact_inner .contact_info .contact_info_list li .text a {margin: 0;} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text a:hover { - color: var(--dark-purple); -} - -.map_section { - margin: 50px 0; -} - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/desktop.ini b/desarrollo/diseno/login-comercio/fonts/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/icofont.eot b/desarrollo/diseno/login-comercio/fonts/icofont.eot deleted file mode 100644 index 56e15db4..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/icofont.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/icofont.svg b/desarrollo/diseno/login-comercio/fonts/icofont.svg deleted file mode 100644 index 8535ec67..00000000 --- a/desarrollo/diseno/login-comercio/fonts/icofont.svg +++ /dev/null @@ -1,2105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/fonts/icofont.ttf b/desarrollo/diseno/login-comercio/fonts/icofont.ttf deleted file mode 100644 index ba6d2356..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/icofont.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/icofont.woff b/desarrollo/diseno/login-comercio/fonts/icofont.woff deleted file mode 100644 index 48002ce2..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/icofont.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/icofont.woff2 b/desarrollo/diseno/login-comercio/fonts/icofont.woff2 deleted file mode 100644 index 75f03d7b..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/icofont.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.eot b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.eot deleted file mode 100644 index bbfdbf30..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.svg b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.svg deleted file mode 100644 index ce805153..00000000 --- a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.svg +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.ttf b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.ttf deleted file mode 100644 index dafd4e09..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.woff b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.woff deleted file mode 100644 index 482673b3..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.woff2 b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.woff2 deleted file mode 100644 index 962b734e..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-300.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.eot b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.eot deleted file mode 100644 index a41067bf..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.svg b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.svg deleted file mode 100644 index a00b27cb..00000000 --- a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.ttf b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.ttf deleted file mode 100644 index 81ef3c85..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.woff b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.woff deleted file mode 100644 index f0334422..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.woff2 b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.woff2 deleted file mode 100644 index c6603368..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.eot b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.eot deleted file mode 100644 index c53b28fc..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.svg b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.svg deleted file mode 100644 index fac9b18f..00000000 --- a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.svg +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.ttf b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.ttf deleted file mode 100644 index 20854052..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.woff b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.woff deleted file mode 100644 index ed570119..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.woff2 b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.woff2 deleted file mode 100644 index b995ebb6..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-500italic.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.eot b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.eot deleted file mode 100644 index 7bbdbbab..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.svg b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.svg deleted file mode 100644 index 63d4ce3d..00000000 --- a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.ttf b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.ttf deleted file mode 100644 index 5cfa4913..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.woff b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.woff deleted file mode 100644 index 2370956d..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.woff2 b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.woff2 deleted file mode 100644 index 921e962b..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-600.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.eot b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.eot deleted file mode 100644 index 09db74db..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.svg b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.svg deleted file mode 100644 index 9056a3d5..00000000 --- a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.ttf b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.ttf deleted file mode 100644 index 2cc94c2a..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.woff b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.woff deleted file mode 100644 index b8b8ce59..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.woff2 b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.woff2 deleted file mode 100644 index bf022fc7..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-700.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.eot b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.eot deleted file mode 100644 index 4425744a..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.svg b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.svg deleted file mode 100644 index 2ac71d9b..00000000 --- a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.svg +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.ttf b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.ttf deleted file mode 100644 index 7a65fc54..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.woff b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.woff deleted file mode 100644 index 30728f54..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.woff2 b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.woff2 deleted file mode 100644 index f107b369..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-800.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.eot b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.eot deleted file mode 100644 index cde85654..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.svg b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.svg deleted file mode 100644 index 78aacea8..00000000 --- a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.svg +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.ttf b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.ttf deleted file mode 100644 index e9f8ce6d..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.woff b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.woff deleted file mode 100644 index 772d71ca..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.woff2 b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.woff2 deleted file mode 100644 index 11123368..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-italic.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.eot b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.eot deleted file mode 100644 index e23dd26e..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.eot and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.svg b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.svg deleted file mode 100644 index bc983e49..00000000 --- a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.ttf b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.ttf deleted file mode 100644 index dfb38c42..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.ttf and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.woff b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.woff deleted file mode 100644 index 2a04ae32..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.woff and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.woff2 b/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.woff2 deleted file mode 100644 index b69e0091..00000000 Binary files a/desarrollo/diseno/login-comercio/fonts/poppins-v20-latin-regular.woff2 and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/about-frame.png b/desarrollo/diseno/login-comercio/images/about-frame.png deleted file mode 100644 index eb7e4257..00000000 Binary files a/desarrollo/diseno/login-comercio/images/about-frame.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/about-screen.png b/desarrollo/diseno/login-comercio/images/about-screen.png deleted file mode 100644 index 8d3f57dd..00000000 Binary files a/desarrollo/diseno/login-comercio/images/about-screen.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/about_main.png b/desarrollo/diseno/login-comercio/images/about_main.png deleted file mode 100644 index fae0ef8d..00000000 Binary files a/desarrollo/diseno/login-comercio/images/about_main.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/abt_01.png b/desarrollo/diseno/login-comercio/images/abt_01.png deleted file mode 100644 index 334ffcaf..00000000 Binary files a/desarrollo/diseno/login-comercio/images/abt_01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/abt_02.png b/desarrollo/diseno/login-comercio/images/abt_02.png deleted file mode 100644 index b3cc79fe..00000000 Binary files a/desarrollo/diseno/login-comercio/images/abt_02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/abt_03.png b/desarrollo/diseno/login-comercio/images/abt_03.png deleted file mode 100644 index 546e9d21..00000000 Binary files a/desarrollo/diseno/login-comercio/images/abt_03.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/abt_functional.png b/desarrollo/diseno/login-comercio/images/abt_functional.png deleted file mode 100644 index 108b8c5d..00000000 Binary files a/desarrollo/diseno/login-comercio/images/abt_functional.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/abt_support.png b/desarrollo/diseno/login-comercio/images/abt_support.png deleted file mode 100644 index 0e7515ac..00000000 Binary files a/desarrollo/diseno/login-comercio/images/abt_support.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/anim_line.png b/desarrollo/diseno/login-comercio/images/anim_line.png deleted file mode 100644 index ced15363..00000000 Binary files a/desarrollo/diseno/login-comercio/images/anim_line.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/appstore_blue.png b/desarrollo/diseno/login-comercio/images/appstore_blue.png deleted file mode 100644 index 46af9d05..00000000 Binary files a/desarrollo/diseno/login-comercio/images/appstore_blue.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/appstore_white.png b/desarrollo/diseno/login-comercio/images/appstore_white.png deleted file mode 100644 index 3fbe733a..00000000 Binary files a/desarrollo/diseno/login-comercio/images/appstore_white.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/avtar_testimonial.png b/desarrollo/diseno/login-comercio/images/avtar_testimonial.png deleted file mode 100644 index 9388ea8f..00000000 Binary files a/desarrollo/diseno/login-comercio/images/avtar_testimonial.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/banner-shape.svg b/desarrollo/diseno/login-comercio/images/banner-shape.svg deleted file mode 100644 index efb2df7b..00000000 --- a/desarrollo/diseno/login-comercio/images/banner-shape.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/images/banner-shape1.png b/desarrollo/diseno/login-comercio/images/banner-shape1.png deleted file mode 100644 index a16e9820..00000000 Binary files a/desarrollo/diseno/login-comercio/images/banner-shape1.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/banner-shape2.png b/desarrollo/diseno/login-comercio/images/banner-shape2.png deleted file mode 100644 index 3e9ea7a9..00000000 Binary files a/desarrollo/diseno/login-comercio/images/banner-shape2.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/banner-shape3.png b/desarrollo/diseno/login-comercio/images/banner-shape3.png deleted file mode 100644 index cfdadbe2..00000000 Binary files a/desarrollo/diseno/login-comercio/images/banner-shape3.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/blod-detail.png b/desarrollo/diseno/login-comercio/images/blod-detail.png deleted file mode 100644 index 4e83ca2d..00000000 Binary files a/desarrollo/diseno/login-comercio/images/blod-detail.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/blog_d01.png b/desarrollo/diseno/login-comercio/images/blog_d01.png deleted file mode 100644 index 6b9537df..00000000 Binary files a/desarrollo/diseno/login-comercio/images/blog_d01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/blog_d02.png b/desarrollo/diseno/login-comercio/images/blog_d02.png deleted file mode 100644 index 9e610cc5..00000000 Binary files a/desarrollo/diseno/login-comercio/images/blog_d02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/blog_d03.png b/desarrollo/diseno/login-comercio/images/blog_d03.png deleted file mode 100644 index ecd404ae..00000000 Binary files a/desarrollo/diseno/login-comercio/images/blog_d03.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/blog_detail_main.png b/desarrollo/diseno/login-comercio/images/blog_detail_main.png deleted file mode 100644 index e7d6de0b..00000000 Binary files a/desarrollo/diseno/login-comercio/images/blog_detail_main.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/blog_sub_01.png b/desarrollo/diseno/login-comercio/images/blog_sub_01.png deleted file mode 100644 index ba52af5b..00000000 Binary files a/desarrollo/diseno/login-comercio/images/blog_sub_01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/blog_sub_02.png b/desarrollo/diseno/login-comercio/images/blog_sub_02.png deleted file mode 100644 index f9e814f7..00000000 Binary files a/desarrollo/diseno/login-comercio/images/blog_sub_02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/bread_crumb_bg.png b/desarrollo/diseno/login-comercio/images/bread_crumb_bg.png deleted file mode 100644 index 9a59ecd1..00000000 Binary files a/desarrollo/diseno/login-comercio/images/bread_crumb_bg.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/bredcrumb_overlay.png b/desarrollo/diseno/login-comercio/images/bredcrumb_overlay.png deleted file mode 100644 index 93bb57c8..00000000 Binary files a/desarrollo/diseno/login-comercio/images/bredcrumb_overlay.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/call_icon.png b/desarrollo/diseno/login-comercio/images/call_icon.png deleted file mode 100644 index 30066959..00000000 Binary files a/desarrollo/diseno/login-comercio/images/call_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/communication.png b/desarrollo/diseno/login-comercio/images/communication.png deleted file mode 100644 index 9140294d..00000000 Binary files a/desarrollo/diseno/login-comercio/images/communication.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/contact_message_icon.png b/desarrollo/diseno/login-comercio/images/contact_message_icon.png deleted file mode 100644 index 06f3d518..00000000 Binary files a/desarrollo/diseno/login-comercio/images/contact_message_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/countries.png b/desarrollo/diseno/login-comercio/images/countries.png deleted file mode 100644 index 54c64bdc..00000000 Binary files a/desarrollo/diseno/login-comercio/images/countries.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/create_account.jpg b/desarrollo/diseno/login-comercio/images/create_account.jpg deleted file mode 100644 index 1d49331d..00000000 Binary files a/desarrollo/diseno/login-comercio/images/create_account.jpg and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/desktop.ini b/desarrollo/diseno/login-comercio/images/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/login-comercio/images/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/download-screen01.png b/desarrollo/diseno/login-comercio/images/download-screen01.png deleted file mode 100644 index a09a9876..00000000 Binary files a/desarrollo/diseno/login-comercio/images/download-screen01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/download-screen02.png b/desarrollo/diseno/login-comercio/images/download-screen02.png deleted file mode 100644 index c0a4ec76..00000000 Binary files a/desarrollo/diseno/login-comercio/images/download-screen02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/download.png b/desarrollo/diseno/login-comercio/images/download.png deleted file mode 100644 index 1d9cd9de..00000000 Binary files a/desarrollo/diseno/login-comercio/images/download.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/download_app.jpg b/desarrollo/diseno/login-comercio/images/download_app.jpg deleted file mode 100644 index 449850f7..00000000 Binary files a/desarrollo/diseno/login-comercio/images/download_app.jpg and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/enjoy_app.jpg b/desarrollo/diseno/login-comercio/images/enjoy_app.jpg deleted file mode 100644 index f9ff64e5..00000000 Binary files a/desarrollo/diseno/login-comercio/images/enjoy_app.jpg and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/envato.png b/desarrollo/diseno/login-comercio/images/envato.png deleted file mode 100644 index 5f41512c..00000000 Binary files a/desarrollo/diseno/login-comercio/images/envato.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/experts_01.png b/desarrollo/diseno/login-comercio/images/experts_01.png deleted file mode 100644 index 0d76e124..00000000 Binary files a/desarrollo/diseno/login-comercio/images/experts_01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/experts_02.png b/desarrollo/diseno/login-comercio/images/experts_02.png deleted file mode 100644 index 197875a5..00000000 Binary files a/desarrollo/diseno/login-comercio/images/experts_02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/experts_03.png b/desarrollo/diseno/login-comercio/images/experts_03.png deleted file mode 100644 index b719e207..00000000 Binary files a/desarrollo/diseno/login-comercio/images/experts_03.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/experts_04.png b/desarrollo/diseno/login-comercio/images/experts_04.png deleted file mode 100644 index e813c2a5..00000000 Binary files a/desarrollo/diseno/login-comercio/images/experts_04.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/favicon.ico b/desarrollo/diseno/login-comercio/images/favicon.ico deleted file mode 100644 index e69de29b..00000000 diff --git a/desarrollo/diseno/login-comercio/images/favicon.png b/desarrollo/diseno/login-comercio/images/favicon.png deleted file mode 100644 index 0799fa75..00000000 Binary files a/desarrollo/diseno/login-comercio/images/favicon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/features_frame.png b/desarrollo/diseno/login-comercio/images/features_frame.png deleted file mode 100644 index c9735b7a..00000000 Binary files a/desarrollo/diseno/login-comercio/images/features_frame.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/featurescreen.png b/desarrollo/diseno/login-comercio/images/featurescreen.png deleted file mode 100644 index f7b2e2fd..00000000 Binary files a/desarrollo/diseno/login-comercio/images/featurescreen.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/followers.png b/desarrollo/diseno/login-comercio/images/followers.png deleted file mode 100644 index 51587199..00000000 Binary files a/desarrollo/diseno/login-comercio/images/followers.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/footer_logo.png b/desarrollo/diseno/login-comercio/images/footer_logo.png deleted file mode 100644 index 0578f44f..00000000 Binary files a/desarrollo/diseno/login-comercio/images/footer_logo.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/functional.png b/desarrollo/diseno/login-comercio/images/functional.png deleted file mode 100644 index e91f9164..00000000 Binary files a/desarrollo/diseno/login-comercio/images/functional.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/go_top.png b/desarrollo/diseno/login-comercio/images/go_top.png deleted file mode 100644 index 3186901b..00000000 Binary files a/desarrollo/diseno/login-comercio/images/go_top.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/go_top2.png b/desarrollo/diseno/login-comercio/images/go_top2.png deleted file mode 100644 index 258951ef..00000000 Binary files a/desarrollo/diseno/login-comercio/images/go_top2.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/google.png b/desarrollo/diseno/login-comercio/images/google.png deleted file mode 100644 index aec284eb..00000000 Binary files a/desarrollo/diseno/login-comercio/images/google.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/googleplay_blue.png b/desarrollo/diseno/login-comercio/images/googleplay_blue.png deleted file mode 100644 index 57f7a2b4..00000000 Binary files a/desarrollo/diseno/login-comercio/images/googleplay_blue.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/googleplay_white.png b/desarrollo/diseno/login-comercio/images/googleplay_white.png deleted file mode 100644 index fc71ad3f..00000000 Binary files a/desarrollo/diseno/login-comercio/images/googleplay_white.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/icon_bg.png b/desarrollo/diseno/login-comercio/images/icon_bg.png deleted file mode 100644 index 50f18dca..00000000 Binary files a/desarrollo/diseno/login-comercio/images/icon_bg.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/inner_page_banner_overlay.svg b/desarrollo/diseno/login-comercio/images/inner_page_banner_overlay.svg deleted file mode 100644 index b6ec148f..00000000 --- a/desarrollo/diseno/login-comercio/images/inner_page_banner_overlay.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - diff --git a/desarrollo/diseno/login-comercio/images/live-chat.png b/desarrollo/diseno/login-comercio/images/live-chat.png deleted file mode 100644 index dc96945d..00000000 Binary files a/desarrollo/diseno/login-comercio/images/live-chat.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/location_icon.png b/desarrollo/diseno/login-comercio/images/location_icon.png deleted file mode 100644 index 36a9587b..00000000 Binary files a/desarrollo/diseno/login-comercio/images/location_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/logo-black.png b/desarrollo/diseno/login-comercio/images/logo-black.png deleted file mode 100644 index e73030c9..00000000 Binary files a/desarrollo/diseno/login-comercio/images/logo-black.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/logo.jpg b/desarrollo/diseno/login-comercio/images/logo.jpg deleted file mode 100644 index 60fd6dcf..00000000 Binary files a/desarrollo/diseno/login-comercio/images/logo.jpg and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/logo.png b/desarrollo/diseno/login-comercio/images/logo.png deleted file mode 100644 index 4ad8758c..00000000 Binary files a/desarrollo/diseno/login-comercio/images/logo.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/logo.svg b/desarrollo/diseno/login-comercio/images/logo.svg deleted file mode 100644 index 37f83438..00000000 --- a/desarrollo/diseno/login-comercio/images/logo.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - diff --git a/desarrollo/diseno/login-comercio/images/logo_blanco.png b/desarrollo/diseno/login-comercio/images/logo_blanco.png deleted file mode 100644 index 877fa92a..00000000 Binary files a/desarrollo/diseno/login-comercio/images/logo_blanco.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/mail_icon.png b/desarrollo/diseno/login-comercio/images/mail_icon.png deleted file mode 100644 index 77d49083..00000000 Binary files a/desarrollo/diseno/login-comercio/images/mail_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/message_icon.png b/desarrollo/diseno/login-comercio/images/message_icon.png deleted file mode 100644 index 4ffeb3a7..00000000 Binary files a/desarrollo/diseno/login-comercio/images/message_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/mobile_frame.png b/desarrollo/diseno/login-comercio/images/mobile_frame.png deleted file mode 100644 index f7f5249e..00000000 Binary files a/desarrollo/diseno/login-comercio/images/mobile_frame.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/mobile_frame1.png b/desarrollo/diseno/login-comercio/images/mobile_frame1.png deleted file mode 100644 index 1c5864f7..00000000 Binary files a/desarrollo/diseno/login-comercio/images/mobile_frame1.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/mobile_frame_svg.svg b/desarrollo/diseno/login-comercio/images/mobile_frame_svg.svg deleted file mode 100644 index e05c0a2c..00000000 --- a/desarrollo/diseno/login-comercio/images/mobile_frame_svg.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/desarrollo/diseno/login-comercio/images/modern01.png b/desarrollo/diseno/login-comercio/images/modern01.png deleted file mode 100644 index c9627675..00000000 Binary files a/desarrollo/diseno/login-comercio/images/modern01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/modern02.png b/desarrollo/diseno/login-comercio/images/modern02.png deleted file mode 100644 index 0ac01974..00000000 Binary files a/desarrollo/diseno/login-comercio/images/modern02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/modern03.png b/desarrollo/diseno/login-comercio/images/modern03.png deleted file mode 100644 index a962b88e..00000000 Binary files a/desarrollo/diseno/login-comercio/images/modern03.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/paypal.png b/desarrollo/diseno/login-comercio/images/paypal.png deleted file mode 100644 index bc9ec711..00000000 Binary files a/desarrollo/diseno/login-comercio/images/paypal.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/play_black.png b/desarrollo/diseno/login-comercio/images/play_black.png deleted file mode 100644 index 1cd3c042..00000000 Binary files a/desarrollo/diseno/login-comercio/images/play_black.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/play_icon.png b/desarrollo/diseno/login-comercio/images/play_icon.png deleted file mode 100644 index feb549d4..00000000 Binary files a/desarrollo/diseno/login-comercio/images/play_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/play_icon1.png b/desarrollo/diseno/login-comercio/images/play_icon1.png deleted file mode 100644 index 028255ea..00000000 Binary files a/desarrollo/diseno/login-comercio/images/play_icon1.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/play_icon22.png b/desarrollo/diseno/login-comercio/images/play_icon22.png deleted file mode 100644 index 377debfd..00000000 Binary files a/desarrollo/diseno/login-comercio/images/play_icon22.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/premium.png b/desarrollo/diseno/login-comercio/images/premium.png deleted file mode 100644 index 69e77891..00000000 Binary files a/desarrollo/diseno/login-comercio/images/premium.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/query_bg.png b/desarrollo/diseno/login-comercio/images/query_bg.png deleted file mode 100644 index 80013e56..00000000 Binary files a/desarrollo/diseno/login-comercio/images/query_bg.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/quote_icon.png b/desarrollo/diseno/login-comercio/images/quote_icon.png deleted file mode 100644 index 3a201787..00000000 Binary files a/desarrollo/diseno/login-comercio/images/quote_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_01.png b/desarrollo/diseno/login-comercio/images/review_01.png deleted file mode 100644 index fa8a8094..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_02.png b/desarrollo/diseno/login-comercio/images/review_02.png deleted file mode 100644 index 2334011c..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_03.png b/desarrollo/diseno/login-comercio/images/review_03.png deleted file mode 100644 index 31532a26..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_03.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_04.png b/desarrollo/diseno/login-comercio/images/review_04.png deleted file mode 100644 index 3d22d56b..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_04.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_05.png b/desarrollo/diseno/login-comercio/images/review_05.png deleted file mode 100644 index a8ab3056..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_05.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_06.png b/desarrollo/diseno/login-comercio/images/review_06.png deleted file mode 100644 index e7e2ef1c..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_06.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_07.png b/desarrollo/diseno/login-comercio/images/review_07.png deleted file mode 100644 index 1a69a370..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_07.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_08.png b/desarrollo/diseno/login-comercio/images/review_08.png deleted file mode 100644 index bbbb39f1..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_08.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/review_09.png b/desarrollo/diseno/login-comercio/images/review_09.png deleted file mode 100644 index ccacf883..00000000 Binary files a/desarrollo/diseno/login-comercio/images/review_09.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/reviews.png b/desarrollo/diseno/login-comercio/images/reviews.png deleted file mode 100644 index 4f7867a9..00000000 Binary files a/desarrollo/diseno/login-comercio/images/reviews.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/right_icon.png b/desarrollo/diseno/login-comercio/images/right_icon.png deleted file mode 100644 index 704fee02..00000000 Binary files a/desarrollo/diseno/login-comercio/images/right_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/screen-1.png b/desarrollo/diseno/login-comercio/images/screen-1.png deleted file mode 100644 index 539f84f0..00000000 Binary files a/desarrollo/diseno/login-comercio/images/screen-1.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/screen-2.png b/desarrollo/diseno/login-comercio/images/screen-2.png deleted file mode 100644 index 38d04bd5..00000000 Binary files a/desarrollo/diseno/login-comercio/images/screen-2.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/screen-3.png b/desarrollo/diseno/login-comercio/images/screen-3.png deleted file mode 100644 index 2bf96891..00000000 Binary files a/desarrollo/diseno/login-comercio/images/screen-3.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/screen-4.png b/desarrollo/diseno/login-comercio/images/screen-4.png deleted file mode 100644 index 90c8af2b..00000000 Binary files a/desarrollo/diseno/login-comercio/images/screen-4.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/screen-5.png b/desarrollo/diseno/login-comercio/images/screen-5.png deleted file mode 100644 index ee8e8543..00000000 Binary files a/desarrollo/diseno/login-comercio/images/screen-5.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/screen.png b/desarrollo/diseno/login-comercio/images/screen.png deleted file mode 100644 index 9f593329..00000000 Binary files a/desarrollo/diseno/login-comercio/images/screen.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/screen1.png b/desarrollo/diseno/login-comercio/images/screen1.png deleted file mode 100644 index 166f4920..00000000 Binary files a/desarrollo/diseno/login-comercio/images/screen1.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/secure.png b/desarrollo/diseno/login-comercio/images/secure.png deleted file mode 100644 index e33eec87..00000000 Binary files a/desarrollo/diseno/login-comercio/images/secure.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/secure_data.png b/desarrollo/diseno/login-comercio/images/secure_data.png deleted file mode 100644 index 26227527..00000000 Binary files a/desarrollo/diseno/login-comercio/images/secure_data.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/shield_icon.png b/desarrollo/diseno/login-comercio/images/shield_icon.png deleted file mode 100644 index 3310a4e1..00000000 Binary files a/desarrollo/diseno/login-comercio/images/shield_icon.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/shopboat.png b/desarrollo/diseno/login-comercio/images/shopboat.png deleted file mode 100644 index 3d95f087..00000000 Binary files a/desarrollo/diseno/login-comercio/images/shopboat.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/slack.png b/desarrollo/diseno/login-comercio/images/slack.png deleted file mode 100644 index 1dd64f1d..00000000 Binary files a/desarrollo/diseno/login-comercio/images/slack.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/spoty.png b/desarrollo/diseno/login-comercio/images/spoty.png deleted file mode 100644 index 0b6b5d0f..00000000 Binary files a/desarrollo/diseno/login-comercio/images/spoty.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/standard.png b/desarrollo/diseno/login-comercio/images/standard.png deleted file mode 100644 index ac294b4c..00000000 Binary files a/desarrollo/diseno/login-comercio/images/standard.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story01.png b/desarrollo/diseno/login-comercio/images/story01.png deleted file mode 100644 index 6e6892ac..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story02.png b/desarrollo/diseno/login-comercio/images/story02.png deleted file mode 100644 index d202c54d..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story03.png b/desarrollo/diseno/login-comercio/images/story03.png deleted file mode 100644 index bcc07757..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story03.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story04.png b/desarrollo/diseno/login-comercio/images/story04.png deleted file mode 100644 index 3165b2a7..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story04.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story05.png b/desarrollo/diseno/login-comercio/images/story05.png deleted file mode 100644 index 5ec172be..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story05.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story06.png b/desarrollo/diseno/login-comercio/images/story06.png deleted file mode 100644 index 2ca821a6..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story06.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story07.png b/desarrollo/diseno/login-comercio/images/story07.png deleted file mode 100644 index b3de1382..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story07.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story08.png b/desarrollo/diseno/login-comercio/images/story08.png deleted file mode 100644 index cbcee902..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story08.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/story09.png b/desarrollo/diseno/login-comercio/images/story09.png deleted file mode 100644 index d99e57af..00000000 Binary files a/desarrollo/diseno/login-comercio/images/story09.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/support.png b/desarrollo/diseno/login-comercio/images/support.png deleted file mode 100644 index 5d924db3..00000000 Binary files a/desarrollo/diseno/login-comercio/images/support.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/telefono.png b/desarrollo/diseno/login-comercio/images/telefono.png deleted file mode 100644 index d99e2985..00000000 Binary files a/desarrollo/diseno/login-comercio/images/telefono.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/testimonial_bg.png b/desarrollo/diseno/login-comercio/images/testimonial_bg.png deleted file mode 100644 index 5f7e4374..00000000 Binary files a/desarrollo/diseno/login-comercio/images/testimonial_bg.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/testimonial_user1.png b/desarrollo/diseno/login-comercio/images/testimonial_user1.png deleted file mode 100644 index 6fff6259..00000000 Binary files a/desarrollo/diseno/login-comercio/images/testimonial_user1.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/testimonial_user2.png b/desarrollo/diseno/login-comercio/images/testimonial_user2.png deleted file mode 100644 index cace92fa..00000000 Binary files a/desarrollo/diseno/login-comercio/images/testimonial_user2.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/testimonial_user3.png b/desarrollo/diseno/login-comercio/images/testimonial_user3.png deleted file mode 100644 index c1f22602..00000000 Binary files a/desarrollo/diseno/login-comercio/images/testimonial_user3.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/unlimited.png b/desarrollo/diseno/login-comercio/images/unlimited.png deleted file mode 100644 index 52cdf7ac..00000000 Binary files a/desarrollo/diseno/login-comercio/images/unlimited.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/used01.png b/desarrollo/diseno/login-comercio/images/used01.png deleted file mode 100644 index 471fc0cf..00000000 Binary files a/desarrollo/diseno/login-comercio/images/used01.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/used02.png b/desarrollo/diseno/login-comercio/images/used02.png deleted file mode 100644 index bed846b0..00000000 Binary files a/desarrollo/diseno/login-comercio/images/used02.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/used03.png b/desarrollo/diseno/login-comercio/images/used03.png deleted file mode 100644 index 6fd9c30f..00000000 Binary files a/desarrollo/diseno/login-comercio/images/used03.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/used04.png b/desarrollo/diseno/login-comercio/images/used04.png deleted file mode 100644 index 83a52217..00000000 Binary files a/desarrollo/diseno/login-comercio/images/used04.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/images/yt_thumb.png b/desarrollo/diseno/login-comercio/images/yt_thumb.png deleted file mode 100644 index 185b05b1..00000000 Binary files a/desarrollo/diseno/login-comercio/images/yt_thumb.png and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/js/aos.js b/desarrollo/diseno/login-comercio/js/aos.js deleted file mode 100644 index 0ba1c7b6..00000000 --- a/desarrollo/diseno/login-comercio/js/aos.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,x),(0,b.default)(w,x.once),w},O=function(){w=(0,h.default)(),j()},_=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},S=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},z=function(e){x=i(x,e),w=(0,h.default)();var t=document.all&&!window.atob;return S(x.disable)||t?_():(document.querySelector("body").setAttribute("data-aos-easing",x.easing),document.querySelector("body").setAttribute("data-aos-duration",x.duration),document.querySelector("body").setAttribute("data-aos-delay",x.delay),"DOMContentLoaded"===x.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?j(!0):"load"===x.startEvent?window.addEventListener(x.startEvent,function(){j(!0)}):document.addEventListener(x.startEvent,function(){j(!0)}),window.addEventListener("resize",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("orientationchange",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,x.once)},x.throttleDelay)),x.disableMutationObserver||(0,d.default)("[data-aos]",O),w)};e.exports={init:z,refresh:j,refreshHard:O}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),_?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,z&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(_=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(f);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return s;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f="Expected a function",s=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),_?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,z&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(_=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==s}function a(e){if("number"==typeof e)return e;if(r(e))return f;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",f=NaN,s="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e,t){var n=window.document,r=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,a=new r(o);i=t,a.observe(n.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}function o(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),n=Array.prototype.slice.call(e.removedNodes),o=t.concat(n).filter(function(e){return e.hasAttribute&&e.hasAttribute("data-aos")}).length;o&&i()})}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){};t.default=n},function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;ne.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])}); \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/js/bootstrap.min.js b/desarrollo/diseno/login-comercio/js/bootstrap.min.js deleted file mode 100644 index 50720ead..00000000 --- a/desarrollo/diseno/login-comercio/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var o=i(e),a=i(n);function s(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};d.jQueryDetection(),o.default.fn.emulateTransitionEnd=function(t){var e=this,n=!1;return o.default(this).one(d.TRANSITION_END,(function(){n=!0})),setTimeout((function(){n||d.triggerTransitionEnd(e)}),t),this},o.default.event.special[d.TRANSITION_END]={bindType:f,delegateType:f,handle:function(t){if(o.default(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var c="bs.alert",h=o.default.fn.alert,g=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){o.default.removeData(this._element,c),this._element=null},e._getRootElement=function(t){var e=d.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=o.default(t).closest(".alert")[0]),n},e._triggerCloseEvent=function(t){var e=o.default.Event("close.bs.alert");return o.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(o.default(t).removeClass("show"),o.default(t).hasClass("fade")){var n=d.getTransitionDurationFromElement(t);o.default(t).one(d.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){o.default(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(c);i||(i=new t(this),n.data(c,i)),"close"===e&&i[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',g._handleDismiss(new g)),o.default.fn.alert=g._jQueryInterface,o.default.fn.alert.Constructor=g,o.default.fn.alert.noConflict=function(){return o.default.fn.alert=h,g._jQueryInterface};var m="bs.button",p=o.default.fn.button,_="active",v='[data-toggle^="button"]',y='input:not([type="hidden"])',b=".btn",E=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=o.default(this._element).closest('[data-toggle="buttons"]')[0];if(n){var i=this._element.querySelector(y);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(_))t=!1;else{var a=n.querySelector(".active");a&&o.default(a).removeClass(_)}t&&("checkbox"!==i.type&&"radio"!==i.type||(i.checked=!this._element.classList.contains(_)),this.shouldAvoidTriggerChange||o.default(i).trigger("change")),i.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(_)),t&&o.default(this._element).toggleClass(_))},e.dispose=function(){o.default.removeData(this._element,m),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var i=o.default(this),a=i.data(m);a||(a=new t(this),i.data(m,a)),a.shouldAvoidTriggerChange=n,"toggle"===e&&a[e]()}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.button.data-api",v,(function(t){var e=t.target,n=e;if(o.default(e).hasClass("btn")||(e=o.default(e).closest(b)[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var i=e.querySelector(y);if(i&&(i.hasAttribute("disabled")||i.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||E._jQueryInterface.call(o.default(e),"toggle","INPUT"===n.tagName)}})).on("focus.bs.button.data-api blur.bs.button.data-api",v,(function(t){var e=o.default(t.target).closest(b)[0];o.default(e).toggleClass("focus",/^focus(in)?$/.test(t.type))})),o.default(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide(N)},e.nextWhenVisible=function(){var t=o.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide(D)},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(d.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(I);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)o.default(this._element).one(A,(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var i=t>n?N:D;this._slide(i,this._items[t])}},e.dispose=function(){o.default(this._element).off(".bs.carousel"),o.default.removeData(this._element,w),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=r({},k,t),d.typeCheckConfig(T,t,O),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&o.default(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&o.default(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};o.default(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(o.default(this._element).on("pointerdown.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("pointerup.bs.carousel",(function(t){return n(t)})),this._element.classList.add("pointer-event")):(o.default(this._element).on("touchstart.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("touchmove.bs.carousel",(function(e){return function(e){t.touchDeltaX=e.originalEvent.touches&&e.originalEvent.touches.length>1?0:e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),o.default(this._element).on("touchend.bs.carousel",(function(t){return n(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n=t===N,i=t===D,o=this._getItemIndex(e),a=this._items.length-1;if((i&&0===o||n&&o===a)&&!this._config.wrap)return e;var s=(o+(t===D?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(I)),a=o.default.Event("slide.bs.carousel",{relatedTarget:t,direction:e,from:i,to:n});return o.default(this._element).trigger(a),a},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));o.default(e).removeClass(S);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&o.default(n).addClass(S)}},e._updateInterval=function(){var t=this._activeElement||this._element.querySelector(I);if(t){var e=parseInt(t.getAttribute("data-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}},e._slide=function(t,e){var n,i,a,s=this,l=this._element.querySelector(I),r=this._getItemIndex(l),u=e||l&&this._getItemByDirection(t,l),f=this._getItemIndex(u),c=Boolean(this._interval);if(t===N?(n="carousel-item-left",i="carousel-item-next",a="left"):(n="carousel-item-right",i="carousel-item-prev",a="right"),u&&o.default(u).hasClass(S))this._isSliding=!1;else if(!this._triggerSlideEvent(u,a).isDefaultPrevented()&&l&&u){this._isSliding=!0,c&&this.pause(),this._setActiveIndicatorElement(u),this._activeElement=u;var h=o.default.Event(A,{relatedTarget:u,direction:a,from:r,to:f});if(o.default(this._element).hasClass("slide")){o.default(u).addClass(i),d.reflow(u),o.default(l).addClass(n),o.default(u).addClass(n);var g=d.getTransitionDurationFromElement(l);o.default(l).one(d.TRANSITION_END,(function(){o.default(u).removeClass(n+" "+i).addClass(S),o.default(l).removeClass("active "+i+" "+n),s._isSliding=!1,setTimeout((function(){return o.default(s._element).trigger(h)}),0)})).emulateTransitionEnd(g)}else o.default(l).removeClass(S),o.default(u).addClass(S),this._isSliding=!1,o.default(this._element).trigger(h);c&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(w),i=r({},k,o.default(this).data());"object"==typeof e&&(i=r({},i,e));var a="string"==typeof e?e:i.slide;if(n||(n=new t(this,i),o.default(this).data(w,n)),"number"==typeof e)n.to(e);else if("string"==typeof a){if("undefined"==typeof n[a])throw new TypeError('No method named "'+a+'"');n[a]()}else i.interval&&i.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=d.getSelectorFromElement(this);if(n){var i=o.default(n)[0];if(i&&o.default(i).hasClass("carousel")){var a=r({},o.default(i).data(),o.default(this).data()),s=this.getAttribute("data-slide-to");s&&(a.interval=!1),t._jQueryInterface.call(o.default(i),a),s&&o.default(i).data(w).to(s),e.preventDefault()}}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return k}}]),t}();o.default(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",P._dataApiClickHandler),o.default(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),e=0,n=t.length;e0&&(this._selector=s,this._triggerArray.push(a))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){o.default(this._element).hasClass(q)?this.hide():this.show()},e.show=function(){var e,n,i=this;if(!(this._isTransitioning||o.default(this._element).hasClass(q)||(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof i._config.parent?t.getAttribute("data-parent")===i._config.parent:t.classList.contains(F)}))).length&&(e=null),e&&(n=o.default(e).not(this._selector).data(R))&&n._isTransitioning))){var a=o.default.Event("show.bs.collapse");if(o.default(this._element).trigger(a),!a.isDefaultPrevented()){e&&(t._jQueryInterface.call(o.default(e).not(this._selector),"hide"),n||o.default(e).data(R,null));var s=this._getDimension();o.default(this._element).removeClass(F).addClass(Q),this._element.style[s]=0,this._triggerArray.length&&o.default(this._triggerArray).removeClass(B).attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(s[0].toUpperCase()+s.slice(1)),r=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,(function(){o.default(i._element).removeClass(Q).addClass("collapse show"),i._element.style[s]="",i.setTransitioning(!1),o.default(i._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(r),this._element.style[s]=this._element[l]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&o.default(this._element).hasClass(q)){var e=o.default.Event("hide.bs.collapse");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",d.reflow(this._element),o.default(this._element).addClass(Q).removeClass("collapse show");var i=this._triggerArray.length;if(i>0)for(var a=0;a0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t._config.offset(e.offsets,t._element)),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),r({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(K);if(n||(n=new t(this,"object"==typeof e?e:null),o.default(this).data(K,n)),"string"==typeof e){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=[].slice.call(document.querySelectorAll(it)),i=0,a=n.length;i0&&s--,40===e.which&&sdocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add(ht);var i=d.getTransitionDurationFromElement(this._dialog);o.default(this._element).off(d.TRANSITION_END),o.default(this._element).one(d.TRANSITION_END,(function(){t._element.classList.remove(ht),n||o.default(t._element).one(d.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,i)})).emulateTransitionEnd(i),this._element.focus()}},e._showElement=function(t){var e=this,n=o.default(this._element).hasClass(dt),i=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),o.default(this._dialog).hasClass("modal-dialog-scrollable")&&i?i.scrollTop=0:this._element.scrollTop=0,n&&d.reflow(this._element),o.default(this._element).addClass(ct),this._config.focus&&this._enforceFocus();var a=o.default.Event("shown.bs.modal",{relatedTarget:t}),s=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,o.default(e._element).trigger(a)};if(n){var l=d.getTransitionDurationFromElement(this._dialog);o.default(this._dialog).one(d.TRANSITION_END,s).emulateTransitionEnd(l)}else s()},e._enforceFocus=function(){var t=this;o.default(document).off(pt).on(pt,(function(e){document!==e.target&&t._element!==e.target&&0===o.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?o.default(this._element).on(yt,(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||o.default(this._element).off(yt)},e._setResizeEvent=function(){var t=this;this._isShown?o.default(window).on(_t,(function(e){return t.handleUpdate(e)})):o.default(window).off(_t)},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){o.default(document.body).removeClass(ft),t._resetAdjustments(),t._resetScrollbar(),o.default(t._element).trigger(gt)}))},e._removeBackdrop=function(){this._backdrop&&(o.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=o.default(this._element).hasClass(dt)?dt:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",n&&this._backdrop.classList.add(n),o.default(this._backdrop).appendTo(document.body),o.default(this._element).on(vt,(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._triggerBackdropTransition():e.hide())})),n&&d.reflow(this._backdrop),o.default(this._backdrop).addClass(ct),!t)return;if(!n)return void t();var i=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){o.default(this._backdrop).removeClass(ct);var a=function(){e._removeBackdrop(),t&&t()};if(o.default(this._element).hasClass(dt)){var s=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Ut={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},Mt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},Wt=function(){function t(t,e){if("undefined"==typeof a.default)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=o.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(o.default(this.getTipElement()).hasClass(Rt))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),o.default.removeData(this.element,this.constructor.DATA_KEY),o.default(this.element).off(this.constructor.EVENT_KEY),o.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&o.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===o.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=o.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){o.default(this.element).trigger(e);var n=d.findShadowRoot(this.element),i=o.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!i)return;var s=this.getTipElement(),l=d.getUID(this.constructor.NAME);s.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&o.default(s).addClass(Lt);var r="function"==typeof this.config.placement?this.config.placement.call(this,s,this.element):this.config.placement,u=this._getAttachment(r);this.addAttachmentClass(u);var f=this._getContainer();o.default(s).data(this.constructor.DATA_KEY,this),o.default.contains(this.element.ownerDocument.documentElement,this.tip)||o.default(s).appendTo(f),o.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new a.default(this.element,s,this._getPopperConfig(u)),o.default(s).addClass(Rt),o.default(s).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&o.default(document.body).children().on("mouseover",null,o.default.noop);var c=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,o.default(t.element).trigger(t.constructor.Event.SHOWN),e===qt&&t._leave(null,t)};if(o.default(this.tip).hasClass(Lt)){var h=d.getTransitionDurationFromElement(this.tip);o.default(this.tip).one(d.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},e.hide=function(t){var e=this,n=this.getTipElement(),i=o.default.Event(this.constructor.Event.HIDE),a=function(){e._hoverState!==xt&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),o.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(o.default(this.element).trigger(i),!i.isDefaultPrevented()){if(o.default(n).removeClass(Rt),"ontouchstart"in document.documentElement&&o.default(document.body).children().off("mouseover",null,o.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,o.default(this.tip).hasClass(Lt)){var s=d.getTransitionDurationFromElement(n);o.default(n).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-tooltip-"+t)},e.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(o.default(t.querySelectorAll(".tooltip-inner")),this.getTitle()),o.default(t).removeClass("fade show")},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=At(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?o.default(e).parent().is(t)||t.empty().append(e):t.text(o.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return r({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t.config.offset(e.offsets,t.element)),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:d.isElement(this.config.container)?o.default(this.config.container):o.default(document).find(this.config.container)},e._getAttachment=function(t){return Bt[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)o.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==e){var n=e===Ft?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,i=e===Ft?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;o.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(i,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},o.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Qt:Ft]=!0),o.default(e.getTipElement()).hasClass(Rt)||e._hoverState===xt?e._hoverState=xt:(clearTimeout(e._timeout),e._hoverState=xt,e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){e._hoverState===xt&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Qt:Ft]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=qt,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){e._hoverState===qt&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=o.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Pt.indexOf(t)&&delete e[t]})),"number"==typeof(t=r({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d.typeCheckConfig(It,t,this.constructor.DefaultType),t.sanitize&&(t.template=At(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(jt);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(o.default(t).removeClass(Lt),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(kt),a="object"==typeof e&&e;if((i||!/dispose|hide/.test(e))&&(i||(i=new t(this,a),n.data(kt,i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Ht}},{key:"NAME",get:function(){return It}},{key:"DATA_KEY",get:function(){return kt}},{key:"Event",get:function(){return Mt}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return Ut}}]),t}();o.default.fn.tooltip=Wt._jQueryInterface,o.default.fn.tooltip.Constructor=Wt,o.default.fn.tooltip.noConflict=function(){return o.default.fn.tooltip=Ot,Wt._jQueryInterface};var Vt="bs.popover",zt=o.default.fn.popover,Kt=new RegExp("(^|\\s)bs-popover\\S+","g"),Xt=r({},Wt.Default,{placement:"right",trigger:"click",content:"",template:''}),Yt=r({},Wt.DefaultType,{content:"(string|element|function)"}),$t={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},Jt=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),e.prototype.constructor=e,u(e,n);var a=i.prototype;return a.isWithContent=function(){return this.getTitle()||this._getContent()},a.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-popover-"+t)},a.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},a.setContent=function(){var t=o.default(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(".popover-body"),e),t.removeClass("fade show")},a._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},a._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(Kt);null!==e&&e.length>0&&t.removeClass(e.join(""))},i._jQueryInterface=function(t){return this.each((function(){var e=o.default(this).data(Vt),n="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new i(this,n),o.default(this).data(Vt,e)),"string"==typeof t)){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}}))},l(i,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Xt}},{key:"NAME",get:function(){return"popover"}},{key:"DATA_KEY",get:function(){return Vt}},{key:"Event",get:function(){return $t}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return Yt}}]),i}(Wt);o.default.fn.popover=Jt._jQueryInterface,o.default.fn.popover.Constructor=Jt,o.default.fn.popover.noConflict=function(){return o.default.fn.popover=zt,Jt._jQueryInterface};var Gt="scrollspy",Zt="bs.scrollspy",te=o.default.fn[Gt],ee="active",ne="position",ie=".nav, .list-group",oe={offset:10,method:"auto",target:""},ae={offset:"number",method:"string",target:"(string|element)"},se=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,o.default(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?"offset":ne,n="auto"===this._config.method?e:this._config.method,i=n===ne?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,a=d.getSelectorFromElement(t);if(a&&(e=document.querySelector(a)),e){var s=e.getBoundingClientRect();if(s.width||s.height)return[o.default(e)[n]().top+i,a]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){o.default.removeData(this._element,Zt),o.default(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=r({},oe,"object"==typeof t&&t?t:{})).target&&d.isElement(t.target)){var e=o.default(t.target).attr("id");e||(e=d.getUID(Gt),o.default(t.target).attr("id",e)),t.target="#"+e}return d.typeCheckConfig(Gt,t,ae),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;)this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active",ge=function(){function t(t){this._element=t}var e=t.prototype;return e.show=function(){var t=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&o.default(this._element).hasClass(ue)||o.default(this._element).hasClass("disabled"))){var e,n,i=o.default(this._element).closest(".nav, .list-group")[0],a=d.getSelectorFromElement(this._element);if(i){var s="UL"===i.nodeName||"OL"===i.nodeName?he:ce;n=(n=o.default.makeArray(o.default(i).find(s)))[n.length-1]}var l=o.default.Event("hide.bs.tab",{relatedTarget:this._element}),r=o.default.Event("show.bs.tab",{relatedTarget:n});if(n&&o.default(n).trigger(l),o.default(this._element).trigger(r),!r.isDefaultPrevented()&&!l.isDefaultPrevented()){a&&(e=document.querySelector(a)),this._activate(this._element,i);var u=function(){var e=o.default.Event("hidden.bs.tab",{relatedTarget:t._element}),i=o.default.Event("shown.bs.tab",{relatedTarget:n});o.default(n).trigger(e),o.default(t._element).trigger(i)};e?this._activate(e,e.parentNode,u):u()}}},e.dispose=function(){o.default.removeData(this._element,le),this._element=null},e._activate=function(t,e,n){var i=this,a=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?o.default(e).children(ce):o.default(e).find(he))[0],s=n&&a&&o.default(a).hasClass(fe),l=function(){return i._transitionComplete(t,a,n)};if(a&&s){var r=d.getTransitionDurationFromElement(a);o.default(a).removeClass(de).one(d.TRANSITION_END,l).emulateTransitionEnd(r)}else l()},e._transitionComplete=function(t,e,n){if(e){o.default(e).removeClass(ue);var i=o.default(e.parentNode).find("> .dropdown-menu .active")[0];i&&o.default(i).removeClass(ue),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}o.default(t).addClass(ue),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),d.reflow(t),t.classList.contains(fe)&&t.classList.add(de);var a=t.parentNode;if(a&&"LI"===a.nodeName&&(a=a.parentNode),a&&o.default(a).hasClass("dropdown-menu")){var s=o.default(t).closest(".dropdown")[0];if(s){var l=[].slice.call(s.querySelectorAll(".dropdown-toggle"));o.default(l).addClass(ue)}t.setAttribute("aria-expanded",!0)}n&&n()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(le);if(i||(i=new t(this),n.data(le,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),ge._jQueryInterface.call(o.default(this),"show")})),o.default.fn.tab=ge._jQueryInterface,o.default.fn.tab.Constructor=ge,o.default.fn.tab.noConflict=function(){return o.default.fn.tab=re,ge._jQueryInterface};var me="bs.toast",pe=o.default.fn.toast,_e="hide",ve="show",ye="showing",be="click.dismiss.bs.toast",Ee={animation:!0,autohide:!0,delay:500},Te={animation:"boolean",autohide:"boolean",delay:"number"},we=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var e=t.prototype;return e.show=function(){var t=this,e=o.default.Event("show.bs.toast");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var n=function(){t._element.classList.remove(ye),t._element.classList.add(ve),o.default(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove(_e),d.reflow(this._element),this._element.classList.add(ye),this._config.animation){var i=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,n).emulateTransitionEnd(i)}else n()}},e.hide=function(){if(this._element.classList.contains(ve)){var t=o.default.Event("hide.bs.toast");o.default(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},e.dispose=function(){this._clearTimeout(),this._element.classList.contains(ve)&&this._element.classList.remove(ve),o.default(this._element).off(be),o.default.removeData(this._element,me),this._element=null,this._config=null},e._getConfig=function(t){return t=r({},Ee,o.default(this._element).data(),"object"==typeof t&&t?t:{}),d.typeCheckConfig("toast",t,this.constructor.DefaultType),t},e._setListeners=function(){var t=this;o.default(this._element).on(be,'[data-dismiss="toast"]',(function(){return t.hide()}))},e._close=function(){var t=this,e=function(){t._element.classList.add(_e),o.default(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove(ve),this._config.animation){var n=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},e._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(me);if(i||(i=new t(this,"object"==typeof e&&e),n.data(me,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e](this)}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"DefaultType",get:function(){return Te}},{key:"Default",get:function(){return Ee}}]),t}();o.default.fn.toast=we._jQueryInterface,o.default.fn.toast.Constructor=we,o.default.fn.toast.noConflict=function(){return o.default.fn.toast=pe,we._jQueryInterface},t.Alert=g,t.Button=E,t.Carousel=P,t.Collapse=V,t.Dropdown=lt,t.Modal=Ct,t.Popover=Jt,t.Scrollspy=se,t.Tab=ge,t.Toast=we,t.Tooltip=Wt,t.Util=d,Object.defineProperty(t,"__esModule",{value:!0})})); -//# sourceMappingURL=bootstrap.min.js.map \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/js/desktop.ini b/desarrollo/diseno/login-comercio/js/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/login-comercio/js/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/login-comercio/js/jquery.js b/desarrollo/diseno/login-comercio/js/jquery.js deleted file mode 100644 index b0614034..00000000 --- a/desarrollo/diseno/login-comercio/js/jquery.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0(a||v.height())},_setFocus:function(){(b.st.focus?b.content.find(b.st.focus).eq(0):b.wrap).focus()},_onFocusIn:function(c){return c.target===b.wrap[0]||a.contains(b.wrap[0],c.target)?void 0:(b._setFocus(),!1)},_parseMarkup:function(b,c,d){var e;d.data&&(c=a.extend(d.data,c)),y(l,[b,c,d]),a.each(c,function(c,d){if(void 0===d||d===!1)return!0;if(e=c.split("_"),e.length>1){var f=b.find(p+"-"+e[0]);if(f.length>0){var g=e[1];"replaceWith"===g?f[0]!==d[0]&&f.replaceWith(d):"img"===g?f.is("img")?f.attr("src",d):f.replaceWith(a("").attr("src",d).attr("class",f.attr("class"))):f.attr(e[1],d)}}else b.find(p+"-"+c).html(d)})},_getScrollbarSize:function(){if(void 0===b.scrollbarSize){var a=document.createElement("div");a.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(a),b.scrollbarSize=a.offsetWidth-a.clientWidth,document.body.removeChild(a)}return b.scrollbarSize}},a.magnificPopup={instance:null,proto:t.prototype,modules:[],open:function(b,c){return A(),b=b?a.extend(!0,{},b):{},b.isObj=!0,b.index=c||0,this.instance.open(b)},close:function(){return a.magnificPopup.instance&&a.magnificPopup.instance.close()},registerModule:function(b,c){c.options&&(a.magnificPopup.defaults[b]=c.options),a.extend(this.proto,c.proto),this.modules.push(b)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("
");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); \ No newline at end of file diff --git a/desarrollo/diseno/login-comercio/js/main.js b/desarrollo/diseno/login-comercio/js/main.js deleted file mode 100644 index 9f372360..00000000 --- a/desarrollo/diseno/login-comercio/js/main.js +++ /dev/null @@ -1,353 +0,0 @@ -// Open Sub Menu -$('.drp_btn').click(function(){ - $(this).siblings('.sub_menu').slideToggle(); -}) - -// Preloader JS - -function preloader_fade() { - $("#preloader").fadeOut('slow'); -} - -$(document).ready(function() { - window.setTimeout("preloader_fade();", 500); //call fade in .5 seconds -} -) - - -// All Slider Js - -$('#frmae_slider').owlCarousel({ - loop:true, - margin:10, - autoplay: true, - smartSpeed: 1500, - nav:false, - dots: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:1 - }, - 1000:{ - items:1 - } - } -}) - -$('#company_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - autoplay: true, - smartSpeed: 1500, - dots: true, - responsive:{ - 0:{ - items:2 - }, - 600:{ - items:3 - }, - 1000:{ - items:5 - } - } -}) - - -$('#testimonial_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - autoplay: true, - smartSpeed: 2500, - dots: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:1 - }, - 1000:{ - items:1 - } - } -}) - - -$('#screen_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - dots: true, - autoplay: true, - smartSpeed: 2500, - center: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:3 - }, - 1000:{ - items:5 - } - } -}) - - -// Number Count -window.addEventListener('scroll', function() { - var element = document.querySelector('#counter'); - var position = element.getBoundingClientRect(); - - // checking whether fully visible - if(position.top >= 0 && position.bottom <= window.innerHeight) { - $('.counter-value').each(function() { - var $this = $(this), - countTo = $this.attr('data-count'); - $({ - countNum: $this.text() - }).animate({ - countNum: countTo - }, - - { - - duration: 2000, - easing: 'swing', - step: function() { - $this.text(Math.floor(this.countNum)); - }, - complete: function() { - $this.text(this.countNum); - //alert('finished'); - } - - }); - }); - } - - if(position.top < window.innerHeight && position.bottom >= 0) { - //console.log('Element is partially visible in screen'); - }else{ - //console.log('Element is not visible'); - $('.counter-value').each(function() { - var $this = $(this), - countTo = 0; - $({ - countNum: $this.text() - }).animate({ - countNum: countTo - }, - - { - - duration: 100, - easing: 'swing', - step: function() { - $this.text(Math.floor(this.countNum)); - }, - complete: function() { - $this.text(this.countNum); - //alert('finished'); - } - - }); - }); - } -}); - - - -// --------Magnify-popup - -$(function() { - $('.popup-youtube').magnificPopup({ - disableOn: 700, - type: 'iframe', - mainClass: 'mfp-fade', - removalDelay: 160, - preloader: false, - fixedContentPos: false - }); -}); - - -// Pricing Section Year Month Jquery -$(document).ready(function () { - - $(".tog_block").click(function () { - $(".tog_btn").toggleClass('month_active'); - $('.month').toggleClass('active'); - $('.years').toggleClass('active'); - - $('.monthly_plan').toggleClass('active'); - $('.yearly_plan').toggleClass('active'); - - }) - - }); - - $(document).ready(function () { - // Add minus icon for collapse element which is open by default - $(".collapse.show").each(function () { - $(this) - .prev(".card-header") - .find(".icon_faq") - .addClass("icofont-minus") - .removeClass("icofont-plus"); - }); - - - // Toggle plus minus icon on show hide of collapse element - $(".collapse").on("show.bs.collapse", function () { - $(this).prev(".card-header").find(".icon_faq").removeClass("icofont-plus").addClass("icofont-minus"); - }) - .on("hide.bs.collapse", function () { - $(this).prev(".card-header").find(".icon_faq").removeClass("icofont-minus").addClass("icofont-plus"); - }); - - $(".collapse").on("show.bs.collapse", function () { - $(this).prev(".card-header").children('h2').children('.btn').addClass("active"); - }) - .on("hide.bs.collapse", function () { - $(this).prev(".card-header").children('h2').children('.btn').removeClass("active"); - }); - }); - - -// Download Section Hover Jquery -window.addEventListener('scroll', function() { - var element = document.querySelector('.free_text'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } -}); - -$(window).on('resize', function() { - if ($(window).width()<768) { - - window.addEventListener('scroll', function() { - var element = document.querySelector('.mobile_mockup'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } - }); - - } - else { - - window.addEventListener('scroll', function() { - var element = document.querySelector('.free_text'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } - }); - - } -}); - - -// Scrool-top -$(document).ready(function() { - var toTop = $('.go_top'); - toTop.on('click', function() { - $('html, body').animate({scrollTop: $('html, body').offset().top,}, 400); - }); - - $(window).scroll(function() { - // declare variable - var topPos = $(this).scrollTop(); - - // if user scrolls down - show scroll to top button - if (topPos > 750) { - $(toTop).css("opacity", "1"); - - } else { - $(toTop).css("opacity", "0"); - } - - }); - -}); - -// Fix Header Js -$(window).scroll(function(){ - if ($(window).scrollTop() >= 250) { - $('header').addClass('fix_style'); - } - else { - $('header').removeClass('fix_style'); - } - if ($(window).scrollTop() >= 260) { - $('header').addClass('fixed'); - } - else { - $('header').removeClass('fixed'); - } -}); - - - - -//YOUTUBE VIDEO -$('.play-button').click(function(e){ - var iframeEl = $(''),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1, -animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('
'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['',''],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("
").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a(' -
- -

- O -

-
-

Inicia sesión con Gmail

- image Inicia Sesión con Google -

No tienes una cuenta de negocios? Regístrate Aquí!

-
-
- -
- - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/css/.editorconfig b/desarrollo/diseno/registro-cliente/css/.editorconfig deleted file mode 100644 index 6f313c6a..00000000 --- a/desarrollo/diseno/registro-cliente/css/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -root = true - -[*] -charset = utf-8 -end_of_line = lf -insert_final_newline = true -indent_style = space -indent_size = 4 -trim_trailing_whitespace = true - -[*.md] -trim_trailing_whitespace = false - -[*.yml] -indent_size = 2 diff --git a/desarrollo/diseno/registro-cliente/css/aos.css b/desarrollo/diseno/registro-cliente/css/aos.css deleted file mode 100644 index d7925a58..00000000 --- a/desarrollo/diseno/registro-cliente/css/aos.css +++ /dev/null @@ -1,1152 +0,0 @@ -[data-aos][data-aos][data-aos-duration="50"], -body[data-aos-duration="50"] [data-aos] { - transition-duration: 50ms -} - -[data-aos][data-aos][data-aos-delay="50"], -body[data-aos-delay="50"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="50"].aos-animate, -body[data-aos-delay="50"] [data-aos].aos-animate { - transition-delay: 50ms -} - -[data-aos][data-aos][data-aos-duration="100"], -body[data-aos-duration="100"] [data-aos] { - transition-duration: .1s -} - -[data-aos][data-aos][data-aos-delay="100"], -body[data-aos-delay="100"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="100"].aos-animate, -body[data-aos-delay="100"] [data-aos].aos-animate { - transition-delay: .1s -} - -[data-aos][data-aos][data-aos-duration="150"], -body[data-aos-duration="150"] [data-aos] { - transition-duration: .15s -} - -[data-aos][data-aos][data-aos-delay="150"], -body[data-aos-delay="150"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="150"].aos-animate, -body[data-aos-delay="150"] [data-aos].aos-animate { - transition-delay: .15s -} - -[data-aos][data-aos][data-aos-duration="200"], -body[data-aos-duration="200"] [data-aos] { - transition-duration: .2s -} - -[data-aos][data-aos][data-aos-delay="200"], -body[data-aos-delay="200"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="200"].aos-animate, -body[data-aos-delay="200"] [data-aos].aos-animate { - transition-delay: .2s -} - -[data-aos][data-aos][data-aos-duration="250"], -body[data-aos-duration="250"] [data-aos] { - transition-duration: .25s -} - -[data-aos][data-aos][data-aos-delay="250"], -body[data-aos-delay="250"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="250"].aos-animate, -body[data-aos-delay="250"] [data-aos].aos-animate { - transition-delay: .25s -} - -[data-aos][data-aos][data-aos-duration="300"], -body[data-aos-duration="300"] [data-aos] { - transition-duration: .3s -} - -[data-aos][data-aos][data-aos-delay="300"], -body[data-aos-delay="300"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="300"].aos-animate, -body[data-aos-delay="300"] [data-aos].aos-animate { - transition-delay: .3s -} - -[data-aos][data-aos][data-aos-duration="350"], -body[data-aos-duration="350"] [data-aos] { - transition-duration: .35s -} - -[data-aos][data-aos][data-aos-delay="350"], -body[data-aos-delay="350"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="350"].aos-animate, -body[data-aos-delay="350"] [data-aos].aos-animate { - transition-delay: .35s -} - -[data-aos][data-aos][data-aos-duration="400"], -body[data-aos-duration="400"] [data-aos] { - transition-duration: .4s -} - -[data-aos][data-aos][data-aos-delay="400"], -body[data-aos-delay="400"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="400"].aos-animate, -body[data-aos-delay="400"] [data-aos].aos-animate { - transition-delay: .4s -} - -[data-aos][data-aos][data-aos-duration="450"], -body[data-aos-duration="450"] [data-aos] { - transition-duration: .45s -} - -[data-aos][data-aos][data-aos-delay="450"], -body[data-aos-delay="450"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="450"].aos-animate, -body[data-aos-delay="450"] [data-aos].aos-animate { - transition-delay: .45s -} - -[data-aos][data-aos][data-aos-duration="500"], -body[data-aos-duration="500"] [data-aos] { - transition-duration: .5s -} - -[data-aos][data-aos][data-aos-delay="500"], -body[data-aos-delay="500"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="500"].aos-animate, -body[data-aos-delay="500"] [data-aos].aos-animate { - transition-delay: .5s -} - -[data-aos][data-aos][data-aos-duration="550"], -body[data-aos-duration="550"] [data-aos] { - transition-duration: .55s -} - -[data-aos][data-aos][data-aos-delay="550"], -body[data-aos-delay="550"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="550"].aos-animate, -body[data-aos-delay="550"] [data-aos].aos-animate { - transition-delay: .55s -} - -[data-aos][data-aos][data-aos-duration="600"], -body[data-aos-duration="600"] [data-aos] { - transition-duration: .6s -} - -[data-aos][data-aos][data-aos-delay="600"], -body[data-aos-delay="600"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="600"].aos-animate, -body[data-aos-delay="600"] [data-aos].aos-animate { - transition-delay: .6s -} - -[data-aos][data-aos][data-aos-duration="650"], -body[data-aos-duration="650"] [data-aos] { - transition-duration: .65s -} - -[data-aos][data-aos][data-aos-delay="650"], -body[data-aos-delay="650"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="650"].aos-animate, -body[data-aos-delay="650"] [data-aos].aos-animate { - transition-delay: .65s -} - -[data-aos][data-aos][data-aos-duration="700"], -body[data-aos-duration="700"] [data-aos] { - transition-duration: .7s -} - -[data-aos][data-aos][data-aos-delay="700"], -body[data-aos-delay="700"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="700"].aos-animate, -body[data-aos-delay="700"] [data-aos].aos-animate { - transition-delay: .7s -} - -[data-aos][data-aos][data-aos-duration="750"], -body[data-aos-duration="750"] [data-aos] { - transition-duration: .75s -} - -[data-aos][data-aos][data-aos-delay="750"], -body[data-aos-delay="750"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="750"].aos-animate, -body[data-aos-delay="750"] [data-aos].aos-animate { - transition-delay: .75s -} - -[data-aos][data-aos][data-aos-duration="800"], -body[data-aos-duration="800"] [data-aos] { - transition-duration: .8s -} - -[data-aos][data-aos][data-aos-delay="800"], -body[data-aos-delay="800"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="800"].aos-animate, -body[data-aos-delay="800"] [data-aos].aos-animate { - transition-delay: .8s -} - -[data-aos][data-aos][data-aos-duration="850"], -body[data-aos-duration="850"] [data-aos] { - transition-duration: .85s -} - -[data-aos][data-aos][data-aos-delay="850"], -body[data-aos-delay="850"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="850"].aos-animate, -body[data-aos-delay="850"] [data-aos].aos-animate { - transition-delay: .85s -} - -[data-aos][data-aos][data-aos-duration="900"], -body[data-aos-duration="900"] [data-aos] { - transition-duration: .9s -} - -[data-aos][data-aos][data-aos-delay="900"], -body[data-aos-delay="900"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="900"].aos-animate, -body[data-aos-delay="900"] [data-aos].aos-animate { - transition-delay: .9s -} - -[data-aos][data-aos][data-aos-duration="950"], -body[data-aos-duration="950"] [data-aos] { - transition-duration: .95s -} - -[data-aos][data-aos][data-aos-delay="950"], -body[data-aos-delay="950"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="950"].aos-animate, -body[data-aos-delay="950"] [data-aos].aos-animate { - transition-delay: .95s -} - -[data-aos][data-aos][data-aos-duration="1000"], -body[data-aos-duration="1000"] [data-aos] { - transition-duration: 1s -} - -[data-aos][data-aos][data-aos-delay="1000"], -body[data-aos-delay="1000"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1000"].aos-animate, -body[data-aos-delay="1000"] [data-aos].aos-animate { - transition-delay: 1s -} - -[data-aos][data-aos][data-aos-duration="1050"], -body[data-aos-duration="1050"] [data-aos] { - transition-duration: 1.05s -} - -[data-aos][data-aos][data-aos-delay="1050"], -body[data-aos-delay="1050"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1050"].aos-animate, -body[data-aos-delay="1050"] [data-aos].aos-animate { - transition-delay: 1.05s -} - -[data-aos][data-aos][data-aos-duration="1100"], -body[data-aos-duration="1100"] [data-aos] { - transition-duration: 1.1s -} - -[data-aos][data-aos][data-aos-delay="1100"], -body[data-aos-delay="1100"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1100"].aos-animate, -body[data-aos-delay="1100"] [data-aos].aos-animate { - transition-delay: 1.1s -} - -[data-aos][data-aos][data-aos-duration="1150"], -body[data-aos-duration="1150"] [data-aos] { - transition-duration: 1.15s -} - -[data-aos][data-aos][data-aos-delay="1150"], -body[data-aos-delay="1150"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1150"].aos-animate, -body[data-aos-delay="1150"] [data-aos].aos-animate { - transition-delay: 1.15s -} - -[data-aos][data-aos][data-aos-duration="1200"], -body[data-aos-duration="1200"] [data-aos] { - transition-duration: 1.2s -} - -[data-aos][data-aos][data-aos-delay="1200"], -body[data-aos-delay="1200"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1200"].aos-animate, -body[data-aos-delay="1200"] [data-aos].aos-animate { - transition-delay: 1.2s -} - -[data-aos][data-aos][data-aos-duration="1250"], -body[data-aos-duration="1250"] [data-aos] { - transition-duration: 1.25s -} - -[data-aos][data-aos][data-aos-delay="1250"], -body[data-aos-delay="1250"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1250"].aos-animate, -body[data-aos-delay="1250"] [data-aos].aos-animate { - transition-delay: 1.25s -} - -[data-aos][data-aos][data-aos-duration="1300"], -body[data-aos-duration="1300"] [data-aos] { - transition-duration: 1.3s -} - -[data-aos][data-aos][data-aos-delay="1300"], -body[data-aos-delay="1300"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1300"].aos-animate, -body[data-aos-delay="1300"] [data-aos].aos-animate { - transition-delay: 1.3s -} - -[data-aos][data-aos][data-aos-duration="1350"], -body[data-aos-duration="1350"] [data-aos] { - transition-duration: 1.35s -} - -[data-aos][data-aos][data-aos-delay="1350"], -body[data-aos-delay="1350"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1350"].aos-animate, -body[data-aos-delay="1350"] [data-aos].aos-animate { - transition-delay: 1.35s -} - -[data-aos][data-aos][data-aos-duration="1400"], -body[data-aos-duration="1400"] [data-aos] { - transition-duration: 1.4s -} - -[data-aos][data-aos][data-aos-delay="1400"], -body[data-aos-delay="1400"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1400"].aos-animate, -body[data-aos-delay="1400"] [data-aos].aos-animate { - transition-delay: 1.4s -} - -[data-aos][data-aos][data-aos-duration="1450"], -body[data-aos-duration="1450"] [data-aos] { - transition-duration: 1.45s -} - -[data-aos][data-aos][data-aos-delay="1450"], -body[data-aos-delay="1450"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1450"].aos-animate, -body[data-aos-delay="1450"] [data-aos].aos-animate { - transition-delay: 1.45s -} - -[data-aos][data-aos][data-aos-duration="1500"], -body[data-aos-duration="1500"] [data-aos] { - transition-duration: 1.5s -} - -[data-aos][data-aos][data-aos-delay="1500"], -body[data-aos-delay="1500"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1500"].aos-animate, -body[data-aos-delay="1500"] [data-aos].aos-animate { - transition-delay: 1.5s -} - -[data-aos][data-aos][data-aos-duration="1550"], -body[data-aos-duration="1550"] [data-aos] { - transition-duration: 1.55s -} - -[data-aos][data-aos][data-aos-delay="1550"], -body[data-aos-delay="1550"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1550"].aos-animate, -body[data-aos-delay="1550"] [data-aos].aos-animate { - transition-delay: 1.55s -} - -[data-aos][data-aos][data-aos-duration="1600"], -body[data-aos-duration="1600"] [data-aos] { - transition-duration: 1.6s -} - -[data-aos][data-aos][data-aos-delay="1600"], -body[data-aos-delay="1600"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1600"].aos-animate, -body[data-aos-delay="1600"] [data-aos].aos-animate { - transition-delay: 1.6s -} - -[data-aos][data-aos][data-aos-duration="1650"], -body[data-aos-duration="1650"] [data-aos] { - transition-duration: 1.65s -} - -[data-aos][data-aos][data-aos-delay="1650"], -body[data-aos-delay="1650"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1650"].aos-animate, -body[data-aos-delay="1650"] [data-aos].aos-animate { - transition-delay: 1.65s -} - -[data-aos][data-aos][data-aos-duration="1700"], -body[data-aos-duration="1700"] [data-aos] { - transition-duration: 1.7s -} - -[data-aos][data-aos][data-aos-delay="1700"], -body[data-aos-delay="1700"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1700"].aos-animate, -body[data-aos-delay="1700"] [data-aos].aos-animate { - transition-delay: 1.7s -} - -[data-aos][data-aos][data-aos-duration="1750"], -body[data-aos-duration="1750"] [data-aos] { - transition-duration: 1.75s -} - -[data-aos][data-aos][data-aos-delay="1750"], -body[data-aos-delay="1750"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1750"].aos-animate, -body[data-aos-delay="1750"] [data-aos].aos-animate { - transition-delay: 1.75s -} - -[data-aos][data-aos][data-aos-duration="1800"], -body[data-aos-duration="1800"] [data-aos] { - transition-duration: 1.8s -} - -[data-aos][data-aos][data-aos-delay="1800"], -body[data-aos-delay="1800"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1800"].aos-animate, -body[data-aos-delay="1800"] [data-aos].aos-animate { - transition-delay: 1.8s -} - -[data-aos][data-aos][data-aos-duration="1850"], -body[data-aos-duration="1850"] [data-aos] { - transition-duration: 1.85s -} - -[data-aos][data-aos][data-aos-delay="1850"], -body[data-aos-delay="1850"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1850"].aos-animate, -body[data-aos-delay="1850"] [data-aos].aos-animate { - transition-delay: 1.85s -} - -[data-aos][data-aos][data-aos-duration="1900"], -body[data-aos-duration="1900"] [data-aos] { - transition-duration: 1.9s -} - -[data-aos][data-aos][data-aos-delay="1900"], -body[data-aos-delay="1900"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1900"].aos-animate, -body[data-aos-delay="1900"] [data-aos].aos-animate { - transition-delay: 1.9s -} - -[data-aos][data-aos][data-aos-duration="1950"], -body[data-aos-duration="1950"] [data-aos] { - transition-duration: 1.95s -} - -[data-aos][data-aos][data-aos-delay="1950"], -body[data-aos-delay="1950"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1950"].aos-animate, -body[data-aos-delay="1950"] [data-aos].aos-animate { - transition-delay: 1.95s -} - -[data-aos][data-aos][data-aos-duration="2000"], -body[data-aos-duration="2000"] [data-aos] { - transition-duration: 2s -} - -[data-aos][data-aos][data-aos-delay="2000"], -body[data-aos-delay="2000"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2000"].aos-animate, -body[data-aos-delay="2000"] [data-aos].aos-animate { - transition-delay: 2s -} - -[data-aos][data-aos][data-aos-duration="2050"], -body[data-aos-duration="2050"] [data-aos] { - transition-duration: 2.05s -} - -[data-aos][data-aos][data-aos-delay="2050"], -body[data-aos-delay="2050"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2050"].aos-animate, -body[data-aos-delay="2050"] [data-aos].aos-animate { - transition-delay: 2.05s -} - -[data-aos][data-aos][data-aos-duration="2100"], -body[data-aos-duration="2100"] [data-aos] { - transition-duration: 2.1s -} - -[data-aos][data-aos][data-aos-delay="2100"], -body[data-aos-delay="2100"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2100"].aos-animate, -body[data-aos-delay="2100"] [data-aos].aos-animate { - transition-delay: 2.1s -} - -[data-aos][data-aos][data-aos-duration="2150"], -body[data-aos-duration="2150"] [data-aos] { - transition-duration: 2.15s -} - -[data-aos][data-aos][data-aos-delay="2150"], -body[data-aos-delay="2150"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2150"].aos-animate, -body[data-aos-delay="2150"] [data-aos].aos-animate { - transition-delay: 2.15s -} - -[data-aos][data-aos][data-aos-duration="2200"], -body[data-aos-duration="2200"] [data-aos] { - transition-duration: 2.2s -} - -[data-aos][data-aos][data-aos-delay="2200"], -body[data-aos-delay="2200"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2200"].aos-animate, -body[data-aos-delay="2200"] [data-aos].aos-animate { - transition-delay: 2.2s -} - -[data-aos][data-aos][data-aos-duration="2250"], -body[data-aos-duration="2250"] [data-aos] { - transition-duration: 2.25s -} - -[data-aos][data-aos][data-aos-delay="2250"], -body[data-aos-delay="2250"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2250"].aos-animate, -body[data-aos-delay="2250"] [data-aos].aos-animate { - transition-delay: 2.25s -} - -[data-aos][data-aos][data-aos-duration="2300"], -body[data-aos-duration="2300"] [data-aos] { - transition-duration: 2.3s -} - -[data-aos][data-aos][data-aos-delay="2300"], -body[data-aos-delay="2300"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2300"].aos-animate, -body[data-aos-delay="2300"] [data-aos].aos-animate { - transition-delay: 2.3s -} - -[data-aos][data-aos][data-aos-duration="2350"], -body[data-aos-duration="2350"] [data-aos] { - transition-duration: 2.35s -} - -[data-aos][data-aos][data-aos-delay="2350"], -body[data-aos-delay="2350"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2350"].aos-animate, -body[data-aos-delay="2350"] [data-aos].aos-animate { - transition-delay: 2.35s -} - -[data-aos][data-aos][data-aos-duration="2400"], -body[data-aos-duration="2400"] [data-aos] { - transition-duration: 2.4s -} - -[data-aos][data-aos][data-aos-delay="2400"], -body[data-aos-delay="2400"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2400"].aos-animate, -body[data-aos-delay="2400"] [data-aos].aos-animate { - transition-delay: 2.4s -} - -[data-aos][data-aos][data-aos-duration="2450"], -body[data-aos-duration="2450"] [data-aos] { - transition-duration: 2.45s -} - -[data-aos][data-aos][data-aos-delay="2450"], -body[data-aos-delay="2450"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2450"].aos-animate, -body[data-aos-delay="2450"] [data-aos].aos-animate { - transition-delay: 2.45s -} - -[data-aos][data-aos][data-aos-duration="2500"], -body[data-aos-duration="2500"] [data-aos] { - transition-duration: 2.5s -} - -[data-aos][data-aos][data-aos-delay="2500"], -body[data-aos-delay="2500"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2500"].aos-animate, -body[data-aos-delay="2500"] [data-aos].aos-animate { - transition-delay: 2.5s -} - -[data-aos][data-aos][data-aos-duration="2550"], -body[data-aos-duration="2550"] [data-aos] { - transition-duration: 2.55s -} - -[data-aos][data-aos][data-aos-delay="2550"], -body[data-aos-delay="2550"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2550"].aos-animate, -body[data-aos-delay="2550"] [data-aos].aos-animate { - transition-delay: 2.55s -} - -[data-aos][data-aos][data-aos-duration="2600"], -body[data-aos-duration="2600"] [data-aos] { - transition-duration: 2.6s -} - -[data-aos][data-aos][data-aos-delay="2600"], -body[data-aos-delay="2600"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2600"].aos-animate, -body[data-aos-delay="2600"] [data-aos].aos-animate { - transition-delay: 2.6s -} - -[data-aos][data-aos][data-aos-duration="2650"], -body[data-aos-duration="2650"] [data-aos] { - transition-duration: 2.65s -} - -[data-aos][data-aos][data-aos-delay="2650"], -body[data-aos-delay="2650"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2650"].aos-animate, -body[data-aos-delay="2650"] [data-aos].aos-animate { - transition-delay: 2.65s -} - -[data-aos][data-aos][data-aos-duration="2700"], -body[data-aos-duration="2700"] [data-aos] { - transition-duration: 2.7s -} - -[data-aos][data-aos][data-aos-delay="2700"], -body[data-aos-delay="2700"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2700"].aos-animate, -body[data-aos-delay="2700"] [data-aos].aos-animate { - transition-delay: 2.7s -} - -[data-aos][data-aos][data-aos-duration="2750"], -body[data-aos-duration="2750"] [data-aos] { - transition-duration: 2.75s -} - -[data-aos][data-aos][data-aos-delay="2750"], -body[data-aos-delay="2750"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2750"].aos-animate, -body[data-aos-delay="2750"] [data-aos].aos-animate { - transition-delay: 2.75s -} - -[data-aos][data-aos][data-aos-duration="2800"], -body[data-aos-duration="2800"] [data-aos] { - transition-duration: 2.8s -} - -[data-aos][data-aos][data-aos-delay="2800"], -body[data-aos-delay="2800"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2800"].aos-animate, -body[data-aos-delay="2800"] [data-aos].aos-animate { - transition-delay: 2.8s -} - -[data-aos][data-aos][data-aos-duration="2850"], -body[data-aos-duration="2850"] [data-aos] { - transition-duration: 2.85s -} - -[data-aos][data-aos][data-aos-delay="2850"], -body[data-aos-delay="2850"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2850"].aos-animate, -body[data-aos-delay="2850"] [data-aos].aos-animate { - transition-delay: 2.85s -} - -[data-aos][data-aos][data-aos-duration="2900"], -body[data-aos-duration="2900"] [data-aos] { - transition-duration: 2.9s -} - -[data-aos][data-aos][data-aos-delay="2900"], -body[data-aos-delay="2900"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2900"].aos-animate, -body[data-aos-delay="2900"] [data-aos].aos-animate { - transition-delay: 2.9s -} - -[data-aos][data-aos][data-aos-duration="2950"], -body[data-aos-duration="2950"] [data-aos] { - transition-duration: 2.95s -} - -[data-aos][data-aos][data-aos-delay="2950"], -body[data-aos-delay="2950"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2950"].aos-animate, -body[data-aos-delay="2950"] [data-aos].aos-animate { - transition-delay: 2.95s -} - -[data-aos][data-aos][data-aos-duration="3000"], -body[data-aos-duration="3000"] [data-aos] { - transition-duration: 3s -} - -[data-aos][data-aos][data-aos-delay="3000"], -body[data-aos-delay="3000"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="3000"].aos-animate, -body[data-aos-delay="3000"] [data-aos].aos-animate { - transition-delay: 3s -} - -[data-aos][data-aos][data-aos-easing=linear], -body[data-aos-easing=linear] [data-aos] { - transition-timing-function: cubic-bezier(.25, .25, .75, .75) -} - -[data-aos][data-aos][data-aos-easing=ease], -body[data-aos-easing=ease] [data-aos] { - transition-timing-function: ease -} - -[data-aos][data-aos][data-aos-easing=ease-in], -body[data-aos-easing=ease-in] [data-aos] { - transition-timing-function: ease-in -} - -[data-aos][data-aos][data-aos-easing=ease-out], -body[data-aos-easing=ease-out] [data-aos] { - transition-timing-function: ease-out -} - -[data-aos][data-aos][data-aos-easing=ease-in-out], -body[data-aos-easing=ease-in-out] [data-aos] { - transition-timing-function: ease-in-out -} - -[data-aos][data-aos][data-aos-easing=ease-in-back], -body[data-aos-easing=ease-in-back] [data-aos] { - transition-timing-function: cubic-bezier(.6, -.28, .735, .045) -} - -[data-aos][data-aos][data-aos-easing=ease-out-back], -body[data-aos-easing=ease-out-back] [data-aos] { - transition-timing-function: cubic-bezier(.175, .885, .32, 1.275) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-back], -body[data-aos-easing=ease-in-out-back] [data-aos] { - transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55) -} - -[data-aos][data-aos][data-aos-easing=ease-in-sine], -body[data-aos-easing=ease-in-sine] [data-aos] { - transition-timing-function: cubic-bezier(.47, 0, .745, .715) -} - -[data-aos][data-aos][data-aos-easing=ease-out-sine], -body[data-aos-easing=ease-out-sine] [data-aos] { - transition-timing-function: cubic-bezier(.39, .575, .565, 1) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-sine], -body[data-aos-easing=ease-in-out-sine] [data-aos] { - transition-timing-function: cubic-bezier(.445, .05, .55, .95) -} - -[data-aos][data-aos][data-aos-easing=ease-in-quad], -body[data-aos-easing=ease-in-quad] [data-aos] { - transition-timing-function: cubic-bezier(.55, .085, .68, .53) -} - -[data-aos][data-aos][data-aos-easing=ease-out-quad], -body[data-aos-easing=ease-out-quad] [data-aos] { - transition-timing-function: cubic-bezier(.25, .46, .45, .94) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-quad], -body[data-aos-easing=ease-in-out-quad] [data-aos] { - transition-timing-function: cubic-bezier(.455, .03, .515, .955) -} - -[data-aos][data-aos][data-aos-easing=ease-in-cubic], -body[data-aos-easing=ease-in-cubic] [data-aos] { - transition-timing-function: cubic-bezier(.55, .085, .68, .53) -} - -[data-aos][data-aos][data-aos-easing=ease-out-cubic], -body[data-aos-easing=ease-out-cubic] [data-aos] { - transition-timing-function: cubic-bezier(.25, .46, .45, .94) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], -body[data-aos-easing=ease-in-out-cubic] [data-aos] { - transition-timing-function: cubic-bezier(.455, .03, .515, .955) -} - -[data-aos][data-aos][data-aos-easing=ease-in-quart], -body[data-aos-easing=ease-in-quart] [data-aos] { - transition-timing-function: cubic-bezier(.55, .085, .68, .53) -} - -[data-aos][data-aos][data-aos-easing=ease-out-quart], -body[data-aos-easing=ease-out-quart] [data-aos] { - transition-timing-function: cubic-bezier(.25, .46, .45, .94) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-quart], -body[data-aos-easing=ease-in-out-quart] [data-aos] { - transition-timing-function: cubic-bezier(.455, .03, .515, .955) -} - -[data-aos^=fade][data-aos^=fade] { - opacity: 0; - transition-property: opacity, transform -} - -[data-aos^=fade][data-aos^=fade].aos-animate { - opacity: 1; - transform: translateZ(0) -} - -[data-aos=fade-up] { - transform: translate3d(0, 100px, 0) -} - -[data-aos=fade-down] { - transform: translate3d(0, -100px, 0) -} - -[data-aos=fade-right] { - transform: translate3d(-100px, 0, 0) -} - -[data-aos=fade-left] { - transform: translate3d(100px, 0, 0) -} - -[data-aos=fade-up-right] { - transform: translate3d(-100px, 100px, 0) -} - -[data-aos=fade-up-left] { - transform: translate3d(100px, 100px, 0) -} - -[data-aos=fade-down-right] { - transform: translate3d(-100px, -100px, 0) -} - -[data-aos=fade-down-left] { - transform: translate3d(100px, -100px, 0) -} - -[data-aos^=zoom][data-aos^=zoom] { - opacity: 0; - transition-property: opacity, transform -} - -[data-aos^=zoom][data-aos^=zoom].aos-animate { - opacity: 1; - transform: translateZ(0) scale(1) -} - -[data-aos=zoom-in] { - transform: scale(.6) -} - -[data-aos=zoom-in-up] { - transform: translate3d(0, 100px, 0) scale(.6) -} - -[data-aos=zoom-in-down] { - transform: translate3d(0, -100px, 0) scale(.6) -} - -[data-aos=zoom-in-right] { - transform: translate3d(-100px, 0, 0) scale(.6) -} - -[data-aos=zoom-in-left] { - transform: translate3d(100px, 0, 0) scale(.6) -} - -[data-aos=zoom-out] { - transform: scale(1.2) -} - -[data-aos=zoom-out-up] { - transform: translate3d(0, 100px, 0) scale(1.2) -} - -[data-aos=zoom-out-down] { - transform: translate3d(0, -100px, 0) scale(1.2) -} - -[data-aos=zoom-out-right] { - transform: translate3d(-100px, 0, 0) scale(1.2) -} - -[data-aos=zoom-out-left] { - transform: translate3d(100px, 0, 0) scale(1.2) -} - -[data-aos^=slide][data-aos^=slide] { - transition-property: transform -} - -[data-aos^=slide][data-aos^=slide].aos-animate { - transform: translateZ(0) -} - -[data-aos=slide-up] { - transform: translate3d(0, 100%, 0) -} - -[data-aos=slide-down] { - transform: translate3d(0, -100%, 0) -} - -[data-aos=slide-right] { - transform: translate3d(-100%, 0, 0) -} - -[data-aos=slide-left] { - transform: translate3d(100%, 0, 0) -} - -[data-aos^=flip][data-aos^=flip] { - backface-visibility: hidden; - transition-property: transform -} - -[data-aos=flip-left] { - transform: perspective(2500px) rotateY(-100deg) -} - -[data-aos=flip-left].aos-animate { - transform: perspective(2500px) rotateY(0) -} - -[data-aos=flip-right] { - transform: perspective(2500px) rotateY(100deg) -} - -[data-aos=flip-right].aos-animate { - transform: perspective(2500px) rotateY(0) -} - -[data-aos=flip-up] { - transform: perspective(2500px) rotateX(-100deg) -} - -[data-aos=flip-up].aos-animate { - transform: perspective(2500px) rotateX(0) -} - -[data-aos=flip-down] { - transform: perspective(2500px) rotateX(100deg) -} - -[data-aos=flip-down].aos-animate { - transform: perspective(2500px) rotateX(0) -} \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/css/bootstrap.min.css b/desarrollo/diseno/registro-cliente/css/bootstrap.min.css deleted file mode 100644 index bd415a3e..00000000 --- a/desarrollo/diseno/registro-cliente/css/bootstrap.min.css +++ /dev/null @@ -1,11509 +0,0 @@ -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace -} - -*, -::after, -::before { - box-sizing: border-box -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: transparent -} - -article, -aside, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section { - display: block -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff -} - -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: .5rem -} - -p { - margin-top: 0; - margin-bottom: 1rem -} - -abbr[data-original-title], -abbr[title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - -webkit-text-decoration-skip-ink: none; - text-decoration-skip-ink: none -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit -} - -dl, -ol, -ul { - margin-top: 0; - margin-bottom: 1rem -} - -ol ol, -ol ul, -ul ol, -ul ul { - margin-bottom: 0 -} - -dt { - font-weight: 700 -} - -dd { - margin-bottom: .5rem; - margin-left: 0 -} - -blockquote { - margin: 0 0 1rem -} - -b, -strong { - font-weight: bolder -} - -small { - font-size: 80% -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline -} - -sub { - bottom: -.25em -} - -sup { - top: -.5em -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent -} - -a:hover { - color: #0056b3; - text-decoration: underline -} - -a:not([href]):not([class]) { - color: inherit; - text-decoration: none -} - -a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none -} - -code, -kbd, -pre, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 1em -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar -} - -figure { - margin: 0 0 1rem -} - -img { - vertical-align: middle; - border-style: none -} - -svg { - overflow: hidden; - vertical-align: middle -} - -table { - border-collapse: collapse -} - -caption { - padding-top: .75rem; - padding-bottom: .75rem; - color: #6c757d; - text-align: left; - caption-side: bottom -} - -th { - text-align: inherit; - text-align: -webkit-match-parent -} - -label { - display: inline-block; - margin-bottom: .5rem -} - -button { - border-radius: 0 -} - -button:focus:not(:focus-visible) { - outline: 0 -} - -button, -input, -optgroup, -select, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit -} - -button, -input { - overflow: visible -} - -button, -select { - text-transform: none -} - -[role=button] { - cursor: pointer -} - -select { - word-wrap: normal -} - -[type=button], -[type=reset], -[type=submit], -button { - -webkit-appearance: button -} - -[type=button]:not(:disabled), -[type=reset]:not(:disabled), -[type=submit]:not(:disabled), -button:not(:disabled) { - cursor: pointer -} - -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - padding: 0; - border-style: none -} - -input[type=checkbox], -input[type=radio] { - box-sizing: border-box; - padding: 0 -} - -textarea { - overflow: auto; - resize: vertical -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0 -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal -} - -progress { - vertical-align: baseline -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto -} - -[type=search] { - outline-offset: -2px; - -webkit-appearance: none -} - -[type=search]::-webkit-search-decoration { - -webkit-appearance: none -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button -} - -output { - display: inline-block -} - -summary { - display: list-item; - cursor: pointer -} - -template { - display: none -} - -[hidden] { - display: none !important -} - -.h1, -.h2, -.h3, -.h4, -.h5, -.h6, -h1, -h2, -h3, -h4, -h5, -h6 { - margin-bottom: .5rem; - font-weight: 500; - line-height: 1.2 -} - -.h1, -h1 { - font-size: 2.5rem -} - -.h2, -h2 { - font-size: 2rem -} - -.h3, -h3 { - font-size: 1.75rem -} - -.h4, -h4 { - font-size: 1.5rem -} - -.h5, -h5 { - font-size: 1.25rem -} - -.h6, -h6 { - font-size: 1rem -} - -.lead { - font-size: 1.25rem; - font-weight: 300 -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2 -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2 -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2 -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2 -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, .1) -} - -.small, -small { - font-size: 80%; - font-weight: 400 -} - -.mark, -mark { - padding: .2em; - background-color: #fcf8e3 -} - -.list-unstyled { - padding-left: 0; - list-style: none -} - -.list-inline { - padding-left: 0; - list-style: none -} - -.list-inline-item { - display: inline-block -} - -.list-inline-item:not(:last-child) { - margin-right: .5rem -} - -.initialism { - font-size: 90%; - text-transform: uppercase -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d -} - -.blockquote-footer::before { - content: "\2014\00A0" -} - -.img-fluid { - max-width: 100%; - height: auto -} - -.img-thumbnail { - padding: .25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: .25rem; - max-width: 100%; - height: auto -} - -.figure { - display: inline-block -} - -.figure-img { - margin-bottom: .5rem; - line-height: 1 -} - -.figure-caption { - font-size: 90%; - color: #6c757d -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word -} - -a>code { - color: inherit -} - -kbd { - padding: .2rem .4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: .2rem -} - -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700 -} - -pre { - display: block; - font-size: 87.5%; - color: #212529 -} - -pre code { - font-size: inherit; - color: inherit; - word-break: normal -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll -} - -.container, -.container-fluid, -.container-lg, -.container-md, -.container-sm, -.container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto -} - -@media (min-width:576px) { - - .container, - .container-sm { - max-width: 540px - } -} - -@media (min-width:768px) { - - .container, - .container-md, - .container-sm { - max-width: 720px - } -} - -@media (min-width:992px) { - - .container, - .container-lg, - .container-md, - .container-sm { - max-width: 960px - } -} - -@media (min-width:1200px) { - - .container, - .container-lg, - .container-md, - .container-sm, - .container-xl { - max-width: 1140px - } -} - -.row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px -} - -.no-gutters { - margin-right: 0; - margin-left: 0 -} - -.no-gutters>.col, -.no-gutters>[class*=col-] { - padding-right: 0; - padding-left: 0 -} - -.col, -.col-1, -.col-10, -.col-11, -.col-12, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-auto, -.col-lg, -.col-lg-1, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-auto, -.col-md, -.col-md-1, -.col-md-10, -.col-md-11, -.col-md-12, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-auto, -.col-sm, -.col-sm-1, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-auto, -.col-xl, -.col-xl-1, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% -} - -.row-cols-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% -} - -.row-cols-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% -} - -.row-cols-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% -} - -.row-cols-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% -} - -.row-cols-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% -} - -.row-cols-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% -} - -.col-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% -} - -.col-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% -} - -.col-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% -} - -.col-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% -} - -.col-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% -} - -.col-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% -} - -.col-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% -} - -.col-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% -} - -.col-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% -} - -.col-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% -} - -.col-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% -} - -.col-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% -} - -.col-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% -} - -.order-first { - -ms-flex-order: -1; - order: -1 -} - -.order-last { - -ms-flex-order: 13; - order: 13 -} - -.order-0 { - -ms-flex-order: 0; - order: 0 -} - -.order-1 { - -ms-flex-order: 1; - order: 1 -} - -.order-2 { - -ms-flex-order: 2; - order: 2 -} - -.order-3 { - -ms-flex-order: 3; - order: 3 -} - -.order-4 { - -ms-flex-order: 4; - order: 4 -} - -.order-5 { - -ms-flex-order: 5; - order: 5 -} - -.order-6 { - -ms-flex-order: 6; - order: 6 -} - -.order-7 { - -ms-flex-order: 7; - order: 7 -} - -.order-8 { - -ms-flex-order: 8; - order: 8 -} - -.order-9 { - -ms-flex-order: 9; - order: 9 -} - -.order-10 { - -ms-flex-order: 10; - order: 10 -} - -.order-11 { - -ms-flex-order: 11; - order: 11 -} - -.order-12 { - -ms-flex-order: 12; - order: 12 -} - -.offset-1 { - margin-left: 8.333333% -} - -.offset-2 { - margin-left: 16.666667% -} - -.offset-3 { - margin-left: 25% -} - -.offset-4 { - margin-left: 33.333333% -} - -.offset-5 { - margin-left: 41.666667% -} - -.offset-6 { - margin-left: 50% -} - -.offset-7 { - margin-left: 58.333333% -} - -.offset-8 { - margin-left: 66.666667% -} - -.offset-9 { - margin-left: 75% -} - -.offset-10 { - margin-left: 83.333333% -} - -.offset-11 { - margin-left: 91.666667% -} - -@media (min-width:576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-sm-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-sm-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-sm-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-sm-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-sm-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-sm-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-sm-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-sm-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-sm-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-sm-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-sm-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-sm-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-sm-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-sm-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-sm-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-sm-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-sm-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-sm-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-sm-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-sm-first { - -ms-flex-order: -1; - order: -1 - } - - .order-sm-last { - -ms-flex-order: 13; - order: 13 - } - - .order-sm-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-sm-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-sm-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-sm-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-sm-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-sm-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-sm-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-sm-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-sm-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-sm-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-sm-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-sm-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-sm-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-sm-0 { - margin-left: 0 - } - - .offset-sm-1 { - margin-left: 8.333333% - } - - .offset-sm-2 { - margin-left: 16.666667% - } - - .offset-sm-3 { - margin-left: 25% - } - - .offset-sm-4 { - margin-left: 33.333333% - } - - .offset-sm-5 { - margin-left: 41.666667% - } - - .offset-sm-6 { - margin-left: 50% - } - - .offset-sm-7 { - margin-left: 58.333333% - } - - .offset-sm-8 { - margin-left: 66.666667% - } - - .offset-sm-9 { - margin-left: 75% - } - - .offset-sm-10 { - margin-left: 83.333333% - } - - .offset-sm-11 { - margin-left: 91.666667% - } -} - -@media (min-width:768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-md-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-md-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-md-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-md-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-md-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-md-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-md-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-md-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-md-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-md-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-md-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-md-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-md-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-md-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-md-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-md-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-md-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-md-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-md-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-md-first { - -ms-flex-order: -1; - order: -1 - } - - .order-md-last { - -ms-flex-order: 13; - order: 13 - } - - .order-md-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-md-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-md-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-md-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-md-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-md-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-md-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-md-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-md-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-md-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-md-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-md-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-md-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-md-0 { - margin-left: 0 - } - - .offset-md-1 { - margin-left: 8.333333% - } - - .offset-md-2 { - margin-left: 16.666667% - } - - .offset-md-3 { - margin-left: 25% - } - - .offset-md-4 { - margin-left: 33.333333% - } - - .offset-md-5 { - margin-left: 41.666667% - } - - .offset-md-6 { - margin-left: 50% - } - - .offset-md-7 { - margin-left: 58.333333% - } - - .offset-md-8 { - margin-left: 66.666667% - } - - .offset-md-9 { - margin-left: 75% - } - - .offset-md-10 { - margin-left: 83.333333% - } - - .offset-md-11 { - margin-left: 91.666667% - } -} - -@media (min-width:992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-lg-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-lg-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-lg-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-lg-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-lg-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-lg-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-lg-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-lg-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-lg-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-lg-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-lg-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-lg-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-lg-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-lg-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-lg-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-lg-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-lg-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-lg-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-lg-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-lg-first { - -ms-flex-order: -1; - order: -1 - } - - .order-lg-last { - -ms-flex-order: 13; - order: 13 - } - - .order-lg-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-lg-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-lg-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-lg-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-lg-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-lg-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-lg-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-lg-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-lg-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-lg-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-lg-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-lg-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-lg-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-lg-0 { - margin-left: 0 - } - - .offset-lg-1 { - margin-left: 8.333333% - } - - .offset-lg-2 { - margin-left: 16.666667% - } - - .offset-lg-3 { - margin-left: 25% - } - - .offset-lg-4 { - margin-left: 33.333333% - } - - .offset-lg-5 { - margin-left: 41.666667% - } - - .offset-lg-6 { - margin-left: 50% - } - - .offset-lg-7 { - margin-left: 58.333333% - } - - .offset-lg-8 { - margin-left: 66.666667% - } - - .offset-lg-9 { - margin-left: 75% - } - - .offset-lg-10 { - margin-left: 83.333333% - } - - .offset-lg-11 { - margin-left: 91.666667% - } -} - -@media (min-width:1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-xl-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-xl-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-xl-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-xl-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-xl-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-xl-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-xl-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-xl-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-xl-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-xl-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-xl-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-xl-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-xl-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-xl-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-xl-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-xl-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-xl-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-xl-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-xl-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-xl-first { - -ms-flex-order: -1; - order: -1 - } - - .order-xl-last { - -ms-flex-order: 13; - order: 13 - } - - .order-xl-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-xl-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-xl-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-xl-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-xl-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-xl-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-xl-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-xl-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-xl-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-xl-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-xl-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-xl-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-xl-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-xl-0 { - margin-left: 0 - } - - .offset-xl-1 { - margin-left: 8.333333% - } - - .offset-xl-2 { - margin-left: 16.666667% - } - - .offset-xl-3 { - margin-left: 25% - } - - .offset-xl-4 { - margin-left: 33.333333% - } - - .offset-xl-5 { - margin-left: 41.666667% - } - - .offset-xl-6 { - margin-left: 50% - } - - .offset-xl-7 { - margin-left: 58.333333% - } - - .offset-xl-8 { - margin-left: 66.666667% - } - - .offset-xl-9 { - margin-left: 75% - } - - .offset-xl-10 { - margin-left: 83.333333% - } - - .offset-xl-11 { - margin-left: 91.666667% - } -} - -.table { - width: 100%; - margin-bottom: 1rem; - color: #212529 -} - -.table td, -.table th { - padding: .75rem; - vertical-align: top; - border-top: 1px solid #dee2e6 -} - -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6 -} - -.table tbody+tbody { - border-top: 2px solid #dee2e6 -} - -.table-sm td, -.table-sm th { - padding: .3rem -} - -.table-bordered { - border: 1px solid #dee2e6 -} - -.table-bordered td, -.table-bordered th { - border: 1px solid #dee2e6 -} - -.table-bordered thead td, -.table-bordered thead th { - border-bottom-width: 2px -} - -.table-borderless tbody+tbody, -.table-borderless td, -.table-borderless th, -.table-borderless thead th { - border: 0 -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, .05) -} - -.table-hover tbody tr:hover { - color: #212529; - background-color: rgba(0, 0, 0, .075) -} - -.table-primary, -.table-primary>td, -.table-primary>th { - background-color: #b8daff -} - -.table-primary tbody+tbody, -.table-primary td, -.table-primary th, -.table-primary thead th { - border-color: #7abaff -} - -.table-hover .table-primary:hover { - background-color: #9fcdff -} - -.table-hover .table-primary:hover>td, -.table-hover .table-primary:hover>th { - background-color: #9fcdff -} - -.table-secondary, -.table-secondary>td, -.table-secondary>th { - background-color: #d6d8db -} - -.table-secondary tbody+tbody, -.table-secondary td, -.table-secondary th, -.table-secondary thead th { - border-color: #b3b7bb -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf -} - -.table-hover .table-secondary:hover>td, -.table-hover .table-secondary:hover>th { - background-color: #c8cbcf -} - -.table-success, -.table-success>td, -.table-success>th { - background-color: #c3e6cb -} - -.table-success tbody+tbody, -.table-success td, -.table-success th, -.table-success thead th { - border-color: #8fd19e -} - -.table-hover .table-success:hover { - background-color: #b1dfbb -} - -.table-hover .table-success:hover>td, -.table-hover .table-success:hover>th { - background-color: #b1dfbb -} - -.table-info, -.table-info>td, -.table-info>th { - background-color: #bee5eb -} - -.table-info tbody+tbody, -.table-info td, -.table-info th, -.table-info thead th { - border-color: #86cfda -} - -.table-hover .table-info:hover { - background-color: #abdde5 -} - -.table-hover .table-info:hover>td, -.table-hover .table-info:hover>th { - background-color: #abdde5 -} - -.table-warning, -.table-warning>td, -.table-warning>th { - background-color: #ffeeba -} - -.table-warning tbody+tbody, -.table-warning td, -.table-warning th, -.table-warning thead th { - border-color: #ffdf7e -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1 -} - -.table-hover .table-warning:hover>td, -.table-hover .table-warning:hover>th { - background-color: #ffe8a1 -} - -.table-danger, -.table-danger>td, -.table-danger>th { - background-color: #f5c6cb -} - -.table-danger tbody+tbody, -.table-danger td, -.table-danger th, -.table-danger thead th { - border-color: #ed969e -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7 -} - -.table-hover .table-danger:hover>td, -.table-hover .table-danger:hover>th { - background-color: #f1b0b7 -} - -.table-light, -.table-light>td, -.table-light>th { - background-color: #fdfdfe -} - -.table-light tbody+tbody, -.table-light td, -.table-light th, -.table-light thead th { - border-color: #fbfcfc -} - -.table-hover .table-light:hover { - background-color: #ececf6 -} - -.table-hover .table-light:hover>td, -.table-hover .table-light:hover>th { - background-color: #ececf6 -} - -.table-dark, -.table-dark>td, -.table-dark>th { - background-color: #c6c8ca -} - -.table-dark tbody+tbody, -.table-dark td, -.table-dark th, -.table-dark thead th { - border-color: #95999c -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe -} - -.table-hover .table-dark:hover>td, -.table-hover .table-dark:hover>th { - background-color: #b9bbbe -} - -.table-active, -.table-active>td, -.table-active>th { - background-color: rgba(0, 0, 0, .075) -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, .075) -} - -.table-hover .table-active:hover>td, -.table-hover .table-active:hover>th { - background-color: rgba(0, 0, 0, .075) -} - -.table .thead-dark th { - color: #fff; - background-color: #343a40; - border-color: #454d55 -} - -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6 -} - -.table-dark { - color: #fff; - background-color: #343a40 -} - -.table-dark td, -.table-dark th, -.table-dark thead th { - border-color: #454d55 -} - -.table-dark.table-bordered { - border: 0 -} - -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, .05) -} - -.table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, .075) -} - -@media (max-width:575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-sm>.table-bordered { - border: 0 - } -} - -@media (max-width:767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-md>.table-bordered { - border: 0 - } -} - -@media (max-width:991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-lg>.table-bordered { - border: 0 - } -} - -@media (max-width:1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-xl>.table-bordered { - border: 0 - } -} - -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch -} - -.table-responsive>.table-bordered { - border: 0 -} - -.form-control { - display: block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - padding: .375rem .75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: .25rem; - transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .form-control { - transition: none - } -} - -.form-control::-ms-expand { - background-color: transparent; - border: 0 -} - -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::-moz-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control:disabled, -.form-control[readonly] { - background-color: #e9ecef; - opacity: 1 -} - -input[type=date].form-control, -input[type=datetime-local].form-control, -input[type=month].form-control, -input[type=time].form-control { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -select.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057 -} - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff -} - -.form-control-file, -.form-control-range { - display: block; - width: 100% -} - -.col-form-label { - padding-top: calc(.375rem + 1px); - padding-bottom: calc(.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5 -} - -.col-form-label-lg { - padding-top: calc(.5rem + 1px); - padding-bottom: calc(.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5 -} - -.col-form-label-sm { - padding-top: calc(.25rem + 1px); - padding-bottom: calc(.25rem + 1px); - font-size: .875rem; - line-height: 1.5 -} - -.form-control-plaintext { - display: block; - width: 100%; - padding: .375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0 -} - -.form-control-plaintext.form-control-lg, -.form-control-plaintext.form-control-sm { - padding-right: 0; - padding-left: 0 -} - -.form-control-sm { - height: calc(1.5em + .5rem + 2px); - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -select.form-control[multiple], -select.form-control[size] { - height: auto -} - -textarea.form-control { - height: auto -} - -.form-group { - margin-bottom: 1rem -} - -.form-text { - display: block; - margin-top: .25rem -} - -.form-row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px -} - -.form-row>.col, -.form-row>[class*=col-] { - padding-right: 5px; - padding-left: 5px -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem -} - -.form-check-input { - position: absolute; - margin-top: .3rem; - margin-left: -1.25rem -} - -.form-check-input:disabled~.form-check-label, -.form-check-input[disabled]~.form-check-label { - color: #6c757d -} - -.form-check-label { - margin-bottom: 0 -} - -.form-check-inline { - display: -ms-inline-flexbox; - display: inline-flex; - -ms-flex-align: center; - align-items: center; - padding-left: 0; - margin-right: .75rem -} - -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: .3125rem; - margin-left: 0 -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: .25rem; - font-size: 80%; - color: #28a745 -} - -.valid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: .25rem .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, .9); - border-radius: .25rem -} - -.form-row>.col>.valid-tooltip, -.form-row>[class*=col-]>.valid-tooltip { - left: 5px -} - -.is-valid~.valid-feedback, -.is-valid~.valid-tooltip, -.was-validated :valid~.valid-feedback, -.was-validated :valid~.valid-tooltip { - display: block -} - -.form-control.is-valid, -.was-validated .form-control:valid { - border-color: #28a745; - padding-right: calc(1.5em + .75rem) !important; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(.375em + .1875rem) center; - background-size: calc(.75em + .375rem) calc(.75em + .375rem) -} - -.form-control.is-valid:focus, -.was-validated .form-control:valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.was-validated select.form-control:valid, -select.form-control.is-valid { - padding-right: 3rem !important; - background-position: right 1.5rem center -} - -.was-validated textarea.form-control:valid, -textarea.form-control.is-valid { - padding-right: calc(1.5em + .75rem); - background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem) -} - -.custom-select.is-valid, -.was-validated .custom-select:valid { - border-color: #28a745; - padding-right: calc(.75em + 2.3125rem) !important; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat -} - -.custom-select.is-valid:focus, -.was-validated .custom-select:valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.form-check-input.is-valid~.form-check-label, -.was-validated .form-check-input:valid~.form-check-label { - color: #28a745 -} - -.form-check-input.is-valid~.valid-feedback, -.form-check-input.is-valid~.valid-tooltip, -.was-validated .form-check-input:valid~.valid-feedback, -.was-validated .form-check-input:valid~.valid-tooltip { - display: block -} - -.custom-control-input.is-valid~.custom-control-label, -.was-validated .custom-control-input:valid~.custom-control-label { - color: #28a745 -} - -.custom-control-input.is-valid~.custom-control-label::before, -.was-validated .custom-control-input:valid~.custom-control-label::before { - border-color: #28a745 -} - -.custom-control-input.is-valid:checked~.custom-control-label::before, -.was-validated .custom-control-input:valid:checked~.custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57 -} - -.custom-control-input.is-valid:focus~.custom-control-label::before, -.was-validated .custom-control-input:valid:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before, -.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before { - border-color: #28a745 -} - -.custom-file-input.is-valid~.custom-file-label, -.was-validated .custom-file-input:valid~.custom-file-label { - border-color: #28a745 -} - -.custom-file-input.is-valid:focus~.custom-file-label, -.was-validated .custom-file-input:valid:focus~.custom-file-label { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: .25rem; - font-size: 80%; - color: #dc3545 -} - -.invalid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: .25rem .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, .9); - border-radius: .25rem -} - -.form-row>.col>.invalid-tooltip, -.form-row>[class*=col-]>.invalid-tooltip { - left: 5px -} - -.is-invalid~.invalid-feedback, -.is-invalid~.invalid-tooltip, -.was-validated :invalid~.invalid-feedback, -.was-validated :invalid~.invalid-tooltip { - display: block -} - -.form-control.is-invalid, -.was-validated .form-control:invalid { - border-color: #dc3545; - padding-right: calc(1.5em + .75rem) !important; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(.375em + .1875rem) center; - background-size: calc(.75em + .375rem) calc(.75em + .375rem) -} - -.form-control.is-invalid:focus, -.was-validated .form-control:invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.was-validated select.form-control:invalid, -select.form-control.is-invalid { - padding-right: 3rem !important; - background-position: right 1.5rem center -} - -.was-validated textarea.form-control:invalid, -textarea.form-control.is-invalid { - padding-right: calc(1.5em + .75rem); - background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem) -} - -.custom-select.is-invalid, -.was-validated .custom-select:invalid { - border-color: #dc3545; - padding-right: calc(.75em + 2.3125rem) !important; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat -} - -.custom-select.is-invalid:focus, -.was-validated .custom-select:invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.form-check-input.is-invalid~.form-check-label, -.was-validated .form-check-input:invalid~.form-check-label { - color: #dc3545 -} - -.form-check-input.is-invalid~.invalid-feedback, -.form-check-input.is-invalid~.invalid-tooltip, -.was-validated .form-check-input:invalid~.invalid-feedback, -.was-validated .form-check-input:invalid~.invalid-tooltip { - display: block -} - -.custom-control-input.is-invalid~.custom-control-label, -.was-validated .custom-control-input:invalid~.custom-control-label { - color: #dc3545 -} - -.custom-control-input.is-invalid~.custom-control-label::before, -.was-validated .custom-control-input:invalid~.custom-control-label::before { - border-color: #dc3545 -} - -.custom-control-input.is-invalid:checked~.custom-control-label::before, -.was-validated .custom-control-input:invalid:checked~.custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d -} - -.custom-control-input.is-invalid:focus~.custom-control-label::before, -.was-validated .custom-control-input:invalid:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before, -.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before { - border-color: #dc3545 -} - -.custom-file-input.is-invalid~.custom-file-label, -.was-validated .custom-file-input:invalid~.custom-file-label { - border-color: #dc3545 -} - -.custom-file-input.is-invalid:focus~.custom-file-label, -.was-validated .custom-file-input:invalid:focus~.custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.form-inline { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center -} - -.form-inline .form-check { - width: 100% -} - -@media (min-width:576px) { - .form-inline label { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: 0 - } - - .form-inline .form-group { - display: -ms-flexbox; - display: flex; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center; - margin-bottom: 0 - } - - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle - } - - .form-inline .form-control-plaintext { - display: inline-block - } - - .form-inline .custom-select, - .form-inline .input-group { - width: auto - } - - .form-inline .form-check { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: auto; - padding-left: 0 - } - - .form-inline .form-check-input { - position: relative; - -ms-flex-negative: 0; - flex-shrink: 0; - margin-top: 0; - margin-right: .25rem; - margin-left: 0 - } - - .form-inline .custom-control { - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center - } - - .form-inline .custom-control-label { - margin-bottom: 0 - } -} - -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: .375rem .75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: .25rem; - transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .btn { - transition: none - } -} - -.btn:hover { - color: #212529; - text-decoration: none -} - -.btn.focus, -.btn:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.btn.disabled, -.btn:disabled { - opacity: .65 -} - -.btn:not(:disabled):not(.disabled) { - cursor: pointer -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc -} - -.btn-primary.focus, -.btn-primary:focus { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; - box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) -} - -.btn-primary.disabled, -.btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-primary:not(:disabled):not(.disabled).active, -.btn-primary:not(:disabled):not(.disabled):active, -.show>.btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf -} - -.btn-primary:not(:disabled):not(.disabled).active:focus, -.btn-primary:not(:disabled):not(.disabled):active:focus, -.show>.btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62 -} - -.btn-secondary.focus, -.btn-secondary:focus { - color: #fff; - background-color: #5a6268; - border-color: #545b62; - box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5) -} - -.btn-secondary.disabled, -.btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-secondary:not(:disabled):not(.disabled).active, -.btn-secondary:not(:disabled):not(.disabled):active, -.show>.btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b -} - -.btn-secondary:not(:disabled):not(.disabled).active:focus, -.btn-secondary:not(:disabled):not(.disabled):active:focus, -.show>.btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5) -} - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34 -} - -.btn-success.focus, -.btn-success:focus { - color: #fff; - background-color: #218838; - border-color: #1e7e34; - box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5) -} - -.btn-success.disabled, -.btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-success:not(:disabled):not(.disabled).active, -.btn-success:not(:disabled):not(.disabled):active, -.show>.btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430 -} - -.btn-success:not(:disabled):not(.disabled).active:focus, -.btn-success:not(:disabled):not(.disabled):active:focus, -.show>.btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5) -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b -} - -.btn-info.focus, -.btn-info:focus { - color: #fff; - background-color: #138496; - border-color: #117a8b; - box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) -} - -.btn-info.disabled, -.btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-info:not(:disabled):not(.disabled).active, -.btn-info:not(:disabled):not(.disabled):active, -.show>.btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f -} - -.btn-info:not(:disabled):not(.disabled).active:focus, -.btn-info:not(:disabled):not(.disabled):active:focus, -.show>.btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00 -} - -.btn-warning.focus, -.btn-warning:focus { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; - box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) -} - -.btn-warning.disabled, -.btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-warning:not(:disabled):not(.disabled).active, -.btn-warning:not(:disabled):not(.disabled):active, -.show>.btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500 -} - -.btn-warning:not(:disabled):not(.disabled).active:focus, -.btn-warning:not(:disabled):not(.disabled):active:focus, -.show>.btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130 -} - -.btn-danger.focus, -.btn-danger:focus { - color: #fff; - background-color: #c82333; - border-color: #bd2130; - box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5) -} - -.btn-danger.disabled, -.btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-danger:not(:disabled):not(.disabled).active, -.btn-danger:not(:disabled):not(.disabled):active, -.show>.btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d -} - -.btn-danger:not(:disabled):not(.disabled).active:focus, -.btn-danger:not(:disabled):not(.disabled):active:focus, -.show>.btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5) -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5 -} - -.btn-light.focus, -.btn-light:focus { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; - box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) -} - -.btn-light.disabled, -.btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-light:not(:disabled):not(.disabled).active, -.btn-light:not(:disabled):not(.disabled):active, -.show>.btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df -} - -.btn-light:not(:disabled):not(.disabled).active:focus, -.btn-light:not(:disabled):not(.disabled):active:focus, -.show>.btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124 -} - -.btn-dark.focus, -.btn-dark:focus { - color: #fff; - background-color: #23272b; - border-color: #1d2124; - box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5) -} - -.btn-dark.disabled, -.btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-dark:not(:disabled):not(.disabled).active, -.btn-dark:not(:disabled):not(.disabled):active, -.show>.btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d -} - -.btn-dark:not(:disabled):not(.disabled).active:focus, -.btn-dark:not(:disabled):not(.disabled):active:focus, -.show>.btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5) -} - -.btn-outline-primary { - color: #007bff; - border-color: #007bff -} - -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-outline-primary.focus, -.btn-outline-primary:focus { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.btn-outline-primary.disabled, -.btn-outline-primary:disabled { - color: #007bff; - background-color: transparent -} - -.btn-outline-primary:not(:disabled):not(.disabled).active, -.btn-outline-primary:not(:disabled):not(.disabled):active, -.show>.btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-outline-primary:not(:disabled):not(.disabled).active:focus, -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary.focus, -.btn-outline-secondary:focus { - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.btn-outline-secondary.disabled, -.btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent -} - -.btn-outline-secondary:not(:disabled):not(.disabled).active, -.btn-outline-secondary:not(:disabled):not(.disabled):active, -.show>.btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.btn-outline-success { - color: #28a745; - border-color: #28a745 -} - -.btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-outline-success.focus, -.btn-outline-success:focus { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.btn-outline-success.disabled, -.btn-outline-success:disabled { - color: #28a745; - background-color: transparent -} - -.btn-outline-success:not(:disabled):not(.disabled).active, -.btn-outline-success:not(:disabled):not(.disabled):active, -.show>.btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-outline-success:not(:disabled):not(.disabled).active:focus, -.btn-outline-success:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info.focus, -.btn-outline-info:focus { - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.btn-outline-info.disabled, -.btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent -} - -.btn-outline-info:not(:disabled):not(.disabled).active, -.btn-outline-info:not(:disabled):not(.disabled):active, -.show>.btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info:not(:disabled):not(.disabled).active:focus, -.btn-outline-info:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning.focus, -.btn-outline-warning:focus { - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.btn-outline-warning.disabled, -.btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent -} - -.btn-outline-warning:not(:disabled):not(.disabled).active, -.btn-outline-warning:not(:disabled):not(.disabled):active, -.show>.btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning:not(:disabled):not(.disabled).active:focus, -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger.focus, -.btn-outline-danger:focus { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.btn-outline-danger.disabled, -.btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent -} - -.btn-outline-danger:not(:disabled):not(.disabled).active, -.btn-outline-danger:not(:disabled):not(.disabled):active, -.show>.btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger:not(:disabled):not(.disabled).active:focus, -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light.focus, -.btn-outline-light:focus { - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.btn-outline-light.disabled, -.btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent -} - -.btn-outline-light:not(:disabled):not(.disabled).active, -.btn-outline-light:not(:disabled):not(.disabled):active, -.show>.btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light:not(:disabled):not(.disabled).active:focus, -.btn-outline-light:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.btn-outline-dark { - color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark.focus, -.btn-outline-dark:focus { - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.btn-outline-dark.disabled, -.btn-outline-dark:disabled { - color: #343a40; - background-color: transparent -} - -.btn-outline-dark:not(:disabled):not(.disabled).active, -.btn-outline-dark:not(:disabled):not(.disabled):active, -.show>.btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark:not(:disabled):not(.disabled).active:focus, -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.btn-link { - font-weight: 400; - color: #007bff; - text-decoration: none -} - -.btn-link:hover { - color: #0056b3; - text-decoration: underline -} - -.btn-link.focus, -.btn-link:focus { - text-decoration: underline -} - -.btn-link.disabled, -.btn-link:disabled { - color: #6c757d; - pointer-events: none -} - -.btn-group-lg>.btn, -.btn-lg { - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -.btn-group-sm>.btn, -.btn-sm { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.btn-block { - display: block; - width: 100% -} - -.btn-block+.btn-block { - margin-top: .5rem -} - -input[type=button].btn-block, -input[type=reset].btn-block, -input[type=submit].btn-block { - width: 100% -} - -.fade { - transition: opacity .15s linear -} - -@media (prefers-reduced-motion:reduce) { - .fade { - transition: none - } -} - -.fade:not(.show) { - opacity: 0 -} - -.collapse:not(.show) { - display: none -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height .35s ease -} - -@media (prefers-reduced-motion:reduce) { - .collapsing { - transition: none - } -} - -.dropdown, -.dropleft, -.dropright, -.dropup { - position: relative -} - -.dropdown-toggle { - white-space: nowrap -} - -.dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid; - border-right: .3em solid transparent; - border-bottom: 0; - border-left: .3em solid transparent -} - -.dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: .5rem 0; - margin: .125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .15); - border-radius: .25rem -} - -.dropdown-menu-left { - right: auto; - left: 0 -} - -.dropdown-menu-right { - right: 0; - left: auto -} - -@media (min-width:576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0 - } - - .dropdown-menu-sm-right { - right: 0; - left: auto - } -} - -@media (min-width:768px) { - .dropdown-menu-md-left { - right: auto; - left: 0 - } - - .dropdown-menu-md-right { - right: 0; - left: auto - } -} - -@media (min-width:992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0 - } - - .dropdown-menu-lg-right { - right: 0; - left: auto - } -} - -@media (min-width:1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0 - } - - .dropdown-menu-xl-right { - right: 0; - left: auto - } -} - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: .125rem -} - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: 0; - border-right: .3em solid transparent; - border-bottom: .3em solid; - border-left: .3em solid transparent -} - -.dropup .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: .125rem -} - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid transparent; - border-right: 0; - border-bottom: .3em solid transparent; - border-left: .3em solid -} - -.dropright .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropright .dropdown-toggle::after { - vertical-align: 0 -} - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: .125rem -} - -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: "" -} - -.dropleft .dropdown-toggle::after { - display: none -} - -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid transparent; - border-right: .3em solid; - border-bottom: .3em solid transparent -} - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropleft .dropdown-toggle::before { - vertical-align: 0 -} - -.dropdown-menu[x-placement^=bottom], -.dropdown-menu[x-placement^=left], -.dropdown-menu[x-placement^=right], -.dropdown-menu[x-placement^=top] { - right: auto; - bottom: auto -} - -.dropdown-divider { - height: 0; - margin: .5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef -} - -.dropdown-item { - display: block; - width: 100%; - padding: .25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0 -} - -.dropdown-item:focus, -.dropdown-item:hover { - color: #16181b; - text-decoration: none; - background-color: #e9ecef -} - -.dropdown-item.active, -.dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff -} - -.dropdown-item.disabled, -.dropdown-item:disabled { - color: #adb5bd; - pointer-events: none; - background-color: transparent -} - -.dropdown-menu.show { - display: block -} - -.dropdown-header { - display: block; - padding: .5rem 1.5rem; - margin-bottom: 0; - font-size: .875rem; - color: #6c757d; - white-space: nowrap -} - -.dropdown-item-text { - display: block; - padding: .25rem 1.5rem; - color: #212529 -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle -} - -.btn-group-vertical>.btn, -.btn-group>.btn { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto -} - -.btn-group-vertical>.btn:hover, -.btn-group>.btn:hover { - z-index: 1 -} - -.btn-group-vertical>.btn.active, -.btn-group-vertical>.btn:active, -.btn-group-vertical>.btn:focus, -.btn-group>.btn.active, -.btn-group>.btn:active, -.btn-group>.btn:focus { - z-index: 1 -} - -.btn-toolbar { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-pack: start; - justify-content: flex-start -} - -.btn-toolbar .input-group { - width: auto -} - -.btn-group>.btn-group:not(:first-child), -.btn-group>.btn:not(:first-child) { - margin-left: -1px -} - -.btn-group>.btn-group:not(:last-child)>.btn, -.btn-group>.btn:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.btn-group>.btn-group:not(:first-child)>.btn, -.btn-group>.btn:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.dropdown-toggle-split { - padding-right: .5625rem; - padding-left: .5625rem -} - -.dropdown-toggle-split::after, -.dropright .dropdown-toggle-split::after, -.dropup .dropdown-toggle-split::after { - margin-left: 0 -} - -.dropleft .dropdown-toggle-split::before { - margin-right: 0 -} - -.btn-group-sm>.btn+.dropdown-toggle-split, -.btn-sm+.dropdown-toggle-split { - padding-right: .375rem; - padding-left: .375rem -} - -.btn-group-lg>.btn+.dropdown-toggle-split, -.btn-lg+.dropdown-toggle-split { - padding-right: .75rem; - padding-left: .75rem -} - -.btn-group-vertical { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: center; - justify-content: center -} - -.btn-group-vertical>.btn, -.btn-group-vertical>.btn-group { - width: 100% -} - -.btn-group-vertical>.btn-group:not(:first-child), -.btn-group-vertical>.btn:not(:first-child) { - margin-top: -1px -} - -.btn-group-vertical>.btn-group:not(:last-child)>.btn, -.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 -} - -.btn-group-vertical>.btn-group:not(:first-child)>.btn, -.btn-group-vertical>.btn:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.btn-group-toggle>.btn, -.btn-group-toggle>.btn-group>.btn { - margin-bottom: 0 -} - -.btn-group-toggle>.btn input[type=checkbox], -.btn-group-toggle>.btn input[type=radio], -.btn-group-toggle>.btn-group>.btn input[type=checkbox], -.btn-group-toggle>.btn-group>.btn input[type=radio] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none -} - -.input-group { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: stretch; - align-items: stretch; - width: 100% -} - -.input-group>.custom-file, -.input-group>.custom-select, -.input-group>.form-control, -.input-group>.form-control-plaintext { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0 -} - -.input-group>.custom-file+.custom-file, -.input-group>.custom-file+.custom-select, -.input-group>.custom-file+.form-control, -.input-group>.custom-select+.custom-file, -.input-group>.custom-select+.custom-select, -.input-group>.custom-select+.form-control, -.input-group>.form-control+.custom-file, -.input-group>.form-control+.custom-select, -.input-group>.form-control+.form-control, -.input-group>.form-control-plaintext+.custom-file, -.input-group>.form-control-plaintext+.custom-select, -.input-group>.form-control-plaintext+.form-control { - margin-left: -1px -} - -.input-group>.custom-file .custom-file-input:focus~.custom-file-label, -.input-group>.custom-select:focus, -.input-group>.form-control:focus { - z-index: 3 -} - -.input-group>.custom-file .custom-file-input:focus { - z-index: 4 -} - -.input-group>.custom-select:not(:first-child), -.input-group>.form-control:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.input-group>.custom-file { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center -} - -.input-group>.custom-file:not(:last-child) .custom-file-label, -.input-group>.custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group>.custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label, -.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after, -.input-group:not(.has-validation)>.custom-select:not(:last-child), -.input-group:not(.has-validation)>.form-control:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label, -.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after, -.input-group.has-validation>.custom-select:nth-last-child(n+3), -.input-group.has-validation>.form-control:nth-last-child(n+3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group-append, -.input-group-prepend { - display: -ms-flexbox; - display: flex -} - -.input-group-append .btn, -.input-group-prepend .btn { - position: relative; - z-index: 2 -} - -.input-group-append .btn:focus, -.input-group-prepend .btn:focus { - z-index: 3 -} - -.input-group-append .btn+.btn, -.input-group-append .btn+.input-group-text, -.input-group-append .input-group-text+.btn, -.input-group-append .input-group-text+.input-group-text, -.input-group-prepend .btn+.btn, -.input-group-prepend .btn+.input-group-text, -.input-group-prepend .input-group-text+.btn, -.input-group-prepend .input-group-text+.input-group-text { - margin-left: -1px -} - -.input-group-prepend { - margin-right: -1px -} - -.input-group-append { - margin-left: -1px -} - -.input-group-text { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: .375rem .75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: .25rem -} - -.input-group-text input[type=checkbox], -.input-group-text input[type=radio] { - margin-top: 0 -} - -.input-group-lg>.custom-select, -.input-group-lg>.form-control:not(textarea) { - height: calc(1.5em + 1rem + 2px) -} - -.input-group-lg>.custom-select, -.input-group-lg>.form-control, -.input-group-lg>.input-group-append>.btn, -.input-group-lg>.input-group-append>.input-group-text, -.input-group-lg>.input-group-prepend>.btn, -.input-group-lg>.input-group-prepend>.input-group-text { - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -.input-group-sm>.custom-select, -.input-group-sm>.form-control:not(textarea) { - height: calc(1.5em + .5rem + 2px) -} - -.input-group-sm>.custom-select, -.input-group-sm>.form-control, -.input-group-sm>.input-group-append>.btn, -.input-group-sm>.input-group-append>.input-group-text, -.input-group-sm>.input-group-prepend>.btn, -.input-group-sm>.input-group-prepend>.input-group-text { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.input-group-lg>.custom-select, -.input-group-sm>.custom-select { - padding-right: 1.75rem -} - -.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn, -.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text, -.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn, -.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text, -.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), -.input-group>.input-group-append:last-child>.input-group-text:not(:last-child), -.input-group>.input-group-prepend>.btn, -.input-group>.input-group-prepend>.input-group-text { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group>.input-group-append>.btn, -.input-group>.input-group-append>.input-group-text, -.input-group>.input-group-prepend:first-child>.btn:not(:first-child), -.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), -.input-group>.input-group-prepend:not(:first-child)>.btn, -.input-group>.input-group-prepend:not(:first-child)>.input-group-text { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.custom-control { - position: relative; - z-index: 1; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; - -webkit-print-color-adjust: exact; - color-adjust: exact -} - -.custom-control-inline { - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 1rem -} - -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 1.25rem; - opacity: 0 -} - -.custom-control-input:checked~.custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff -} - -.custom-control-input:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-control-input:focus:not(:checked)~.custom-control-label::before { - border-color: #80bdff -} - -.custom-control-input:not(:disabled):active~.custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff -} - -.custom-control-input:disabled~.custom-control-label, -.custom-control-input[disabled]~.custom-control-label { - color: #6c757d -} - -.custom-control-input:disabled~.custom-control-label::before, -.custom-control-input[disabled]~.custom-control-label::before { - background-color: #e9ecef -} - -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top -} - -.custom-control-label::before { - position: absolute; - top: .25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - background-color: #fff; - border: #adb5bd solid 1px -} - -.custom-control-label::after { - position: absolute; - top: .25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background: 50%/50% 50% no-repeat -} - -.custom-checkbox .custom-control-label::before { - border-radius: .25rem -} - -.custom-checkbox .custom-control-input:checked~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e") -} - -.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before { - border-color: #007bff; - background-color: #007bff -} - -.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e") -} - -.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-radio .custom-control-label::before { - border-radius: 50% -} - -.custom-radio .custom-control-input:checked~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") -} - -.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-switch { - padding-left: 2.25rem -} - -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: .5rem -} - -.custom-switch .custom-control-label::after { - top: calc(.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: .5rem; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out; - transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .custom-switch .custom-control-label::after { - transition: none - } -} - -.custom-switch .custom-control-input:checked~.custom-control-label::after { - background-color: #fff; - -webkit-transform: translateX(.75rem); - transform: translateX(.75rem) -} - -.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - padding: .375rem 1.75rem .375rem .75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat; - border: 1px solid #ced4da; - border-radius: .25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -.custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff -} - -.custom-select[multiple], -.custom-select[size]:not([size="1"]) { - height: auto; - padding-right: .75rem; - background-image: none -} - -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef -} - -.custom-select::-ms-expand { - display: none -} - -.custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057 -} - -.custom-select-sm { - height: calc(1.5em + .5rem + 2px); - padding-top: .25rem; - padding-bottom: .25rem; - padding-left: .5rem; - font-size: .875rem -} - -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: .5rem; - padding-bottom: .5rem; - padding-left: 1rem; - font-size: 1.25rem -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - margin-bottom: 0 -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + .75rem + 2px); - margin: 0; - overflow: hidden; - opacity: 0 -} - -.custom-file-input:focus~.custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-file-input:disabled~.custom-file-label, -.custom-file-input[disabled]~.custom-file-label { - background-color: #e9ecef -} - -.custom-file-input:lang(en)~.custom-file-label::after { - content: "Browse" -} - -.custom-file-input~.custom-file-label[data-browse]::after { - content: attr(data-browse) -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + .75rem + 2px); - padding: .375rem .75rem; - overflow: hidden; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: .25rem -} - -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + .75rem); - padding: .375rem .75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 .25rem .25rem 0 -} - -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -.custom-range:focus { - outline: 0 -} - -.custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range::-moz-focus-outer { - border: 0 -} - -.custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - -webkit-appearance: none; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-webkit-slider-thumb { - -webkit-transition: none; - transition: none - } -} - -.custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-webkit-slider-runnable-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem -} - -.custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - -moz-appearance: none; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-moz-range-thumb { - -moz-transition: none; - transition: none - } -} - -.custom-range::-moz-range-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-moz-range-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem -} - -.custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: .2rem; - margin-left: .2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -ms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-ms-thumb { - -ms-transition: none; - transition: none - } -} - -.custom-range::-ms-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-ms-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: .5rem -} - -.custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem -} - -.custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem -} - -.custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd -} - -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default -} - -.custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd -} - -.custom-range:disabled::-moz-range-track { - cursor: default -} - -.custom-range:disabled::-ms-thumb { - background-color: #adb5bd -} - -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none - } -} - -.nav { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none -} - -.nav-link { - display: block; - padding: .5rem 1rem -} - -.nav-link:focus, -.nav-link:hover { - text-decoration: none -} - -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6 -} - -.nav-tabs .nav-link { - margin-bottom: -1px; - border: 1px solid transparent; - border-top-left-radius: .25rem; - border-top-right-radius: .25rem -} - -.nav-tabs .nav-link:focus, -.nav-tabs .nav-link:hover { - border-color: #e9ecef #e9ecef #dee2e6 -} - -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent -} - -.nav-tabs .nav-item.show .nav-link, -.nav-tabs .nav-link.active { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff -} - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.nav-pills .nav-link { - border-radius: .25rem -} - -.nav-pills .nav-link.active, -.nav-pills .show>.nav-link { - color: #fff; - background-color: #007bff -} - -.nav-fill .nav-item, -.nav-fill>.nav-link { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - text-align: center -} - -.nav-justified .nav-item, -.nav-justified>.nav-link { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - text-align: center -} - -.tab-content>.tab-pane { - display: none -} - -.tab-content>.active { - display: block -} - -.navbar { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between; - padding: .5rem 1rem -} - -.navbar .container, -.navbar .container-fluid, -.navbar .container-lg, -.navbar .container-md, -.navbar .container-sm, -.navbar .container-xl { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between -} - -.navbar-brand { - display: inline-block; - padding-top: .3125rem; - padding-bottom: .3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap -} - -.navbar-brand:focus, -.navbar-brand:hover { - text-decoration: none -} - -.navbar-nav { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none -} - -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0 -} - -.navbar-nav .dropdown-menu { - position: static; - float: none -} - -.navbar-text { - display: inline-block; - padding-top: .5rem; - padding-bottom: .5rem -} - -.navbar-collapse { - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-align: center; - align-items: center -} - -.navbar-toggler { - padding: .25rem .75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: .25rem -} - -.navbar-toggler:focus, -.navbar-toggler:hover { - text-decoration: none -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: 50%/100% 100% no-repeat -} - -.navbar-nav-scroll { - max-height: 75vh; - overflow-y: auto -} - -@media (max-width:575.98px) { - - .navbar-expand-sm>.container, - .navbar-expand-sm>.container-fluid, - .navbar-expand-sm>.container-lg, - .navbar-expand-sm>.container-md, - .navbar-expand-sm>.container-sm, - .navbar-expand-sm>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:576px) { - .navbar-expand-sm { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-sm .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-sm>.container, - .navbar-expand-sm>.container-fluid, - .navbar-expand-sm>.container-lg, - .navbar-expand-sm>.container-md, - .navbar-expand-sm>.container-sm, - .navbar-expand-sm>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-sm .navbar-nav-scroll { - overflow: visible - } - - .navbar-expand-sm .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-sm .navbar-toggler { - display: none - } -} - -@media (max-width:767.98px) { - - .navbar-expand-md>.container, - .navbar-expand-md>.container-fluid, - .navbar-expand-md>.container-lg, - .navbar-expand-md>.container-md, - .navbar-expand-md>.container-sm, - .navbar-expand-md>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:768px) { - .navbar-expand-md { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-md .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-md .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-md>.container, - .navbar-expand-md>.container-fluid, - .navbar-expand-md>.container-lg, - .navbar-expand-md>.container-md, - .navbar-expand-md>.container-sm, - .navbar-expand-md>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-md .navbar-nav-scroll { - overflow: visible - } - - .navbar-expand-md .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-md .navbar-toggler { - display: none - } -} - -@media (max-width:991.98px) { - - .navbar-expand-lg>.container, - .navbar-expand-lg>.container-fluid, - .navbar-expand-lg>.container-lg, - .navbar-expand-lg>.container-md, - .navbar-expand-lg>.container-sm, - .navbar-expand-lg>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:992px) { - .navbar-expand-lg { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-lg .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-lg>.container, - .navbar-expand-lg>.container-fluid, - .navbar-expand-lg>.container-lg, - .navbar-expand-lg>.container-md, - .navbar-expand-lg>.container-sm, - .navbar-expand-lg>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-lg .navbar-nav-scroll { - overflow: visible - } - - .navbar-expand-lg .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-lg .navbar-toggler { - display: none - } -} - -@media (max-width:1199.98px) { - - .navbar-expand-xl>.container, - .navbar-expand-xl>.container-fluid, - .navbar-expand-xl>.container-lg, - .navbar-expand-xl>.container-md, - .navbar-expand-xl>.container-sm, - .navbar-expand-xl>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:1200px) { - .navbar-expand-xl { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-xl .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-xl>.container, - .navbar-expand-xl>.container-fluid, - .navbar-expand-xl>.container-lg, - .navbar-expand-xl>.container-md, - .navbar-expand-xl>.container-sm, - .navbar-expand-xl>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-xl .navbar-nav-scroll { - overflow: visible - } - - .navbar-expand-xl .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-xl .navbar-toggler { - display: none - } -} - -.navbar-expand { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start -} - -.navbar-expand>.container, -.navbar-expand>.container-fluid, -.navbar-expand>.container-lg, -.navbar-expand>.container-md, -.navbar-expand>.container-sm, -.navbar-expand>.container-xl { - padding-right: 0; - padding-left: 0 -} - -.navbar-expand .navbar-nav { - -ms-flex-direction: row; - flex-direction: row -} - -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute -} - -.navbar-expand .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem -} - -.navbar-expand>.container, -.navbar-expand>.container-fluid, -.navbar-expand>.container-lg, -.navbar-expand>.container-md, -.navbar-expand>.container-sm, -.navbar-expand>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap -} - -.navbar-expand .navbar-nav-scroll { - overflow: visible -} - -.navbar-expand .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto -} - -.navbar-expand .navbar-toggler { - display: none -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-brand:focus, -.navbar-light .navbar-brand:hover { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, .5) -} - -.navbar-light .navbar-nav .nav-link:focus, -.navbar-light .navbar-nav .nav-link:hover { - color: rgba(0, 0, 0, .7) -} - -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, .3) -} - -.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: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, .5); - border-color: rgba(0, 0, 0, .1) -} - -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") -} - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, .5) -} - -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-text a:focus, -.navbar-light .navbar-text a:hover { - color: rgba(0, 0, 0, .9) -} - -.navbar-dark .navbar-brand { - color: #fff -} - -.navbar-dark .navbar-brand:focus, -.navbar-dark .navbar-brand:hover { - color: #fff -} - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, .5) -} - -.navbar-dark .navbar-nav .nav-link:focus, -.navbar-dark .navbar-nav .nav-link:hover { - color: rgba(255, 255, 255, .75) -} - -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, .25) -} - -.navbar-dark .navbar-nav .active>.nav-link, -.navbar-dark .navbar-nav .nav-link.active, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .show>.nav-link { - color: #fff -} - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, .5); - border-color: rgba(255, 255, 255, .1) -} - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") -} - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, .5) -} - -.navbar-dark .navbar-text a { - color: #fff -} - -.navbar-dark .navbar-text a:focus, -.navbar-dark .navbar-text a:hover { - color: #fff -} - -.card { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, .125); - border-radius: .25rem -} - -.card>hr { - margin-right: 0; - margin-left: 0 -} - -.card>.list-group { - border-top: inherit; - border-bottom: inherit -} - -.card>.list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.card>.list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(.25rem - 1px); - border-bottom-left-radius: calc(.25rem - 1px) -} - -.card>.card-header+.list-group, -.card>.list-group+.card-footer { - border-top: 0 -} - -.card-body { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem -} - -.card-title { - margin-bottom: .75rem -} - -.card-subtitle { - margin-top: -.375rem; - margin-bottom: 0 -} - -.card-text:last-child { - margin-bottom: 0 -} - -.card-link:hover { - text-decoration: none -} - -.card-link+.card-link { - margin-left: 1.25rem -} - -.card-header { - padding: .75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, .03); - border-bottom: 1px solid rgba(0, 0, 0, .125) -} - -.card-header:first-child { - border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0 -} - -.card-footer { - padding: .75rem 1.25rem; - background-color: rgba(0, 0, 0, .03); - border-top: 1px solid rgba(0, 0, 0, .125) -} - -.card-footer:last-child { - border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px) -} - -.card-header-tabs { - margin-right: -.625rem; - margin-bottom: -.75rem; - margin-left: -.625rem; - border-bottom: 0 -} - -.card-header-pills { - margin-right: -.625rem; - margin-left: -.625rem -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; - border-radius: calc(.25rem - 1px) -} - -.card-img, -.card-img-bottom, -.card-img-top { - -ms-flex-negative: 0; - flex-shrink: 0; - width: 100% -} - -.card-img, -.card-img-top { - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(.25rem - 1px); - border-bottom-left-radius: calc(.25rem - 1px) -} - -.card-deck .card { - margin-bottom: 15px -} - -@media (min-width:576px) { - .card-deck { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px - } - - .card-deck .card { - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px - } -} - -.card-group>.card { - margin-bottom: 15px -} - -@media (min-width:576px) { - .card-group { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap - } - - .card-group>.card { - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-bottom: 0 - } - - .card-group>.card+.card { - margin-left: 0; - border-left: 0 - } - - .card-group>.card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 - } - - .card-group>.card:not(:last-child) .card-header, - .card-group>.card:not(:last-child) .card-img-top { - border-top-right-radius: 0 - } - - .card-group>.card:not(:last-child) .card-footer, - .card-group>.card:not(:last-child) .card-img-bottom { - border-bottom-right-radius: 0 - } - - .card-group>.card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 - } - - .card-group>.card:not(:first-child) .card-header, - .card-group>.card:not(:first-child) .card-img-top { - border-top-left-radius: 0 - } - - .card-group>.card:not(:first-child) .card-footer, - .card-group>.card:not(:first-child) .card-img-bottom { - border-bottom-left-radius: 0 - } -} - -.card-columns .card { - margin-bottom: .75rem -} - -@media (min-width:576px) { - .card-columns { - -webkit-column-count: 3; - -moz-column-count: 3; - column-count: 3; - -webkit-column-gap: 1.25rem; - -moz-column-gap: 1.25rem; - column-gap: 1.25rem; - orphans: 1; - widows: 1 - } - - .card-columns .card { - display: inline-block; - width: 100% - } -} - -.accordion { - overflow-anchor: none -} - -.accordion>.card { - overflow: hidden -} - -.accordion>.card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 -} - -.accordion>.card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.accordion>.card>.card-header { - border-radius: 0; - margin-bottom: -1px -} - -.breadcrumb { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding: .75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: .25rem -} - -.breadcrumb-item+.breadcrumb-item { - padding-left: .5rem -} - -.breadcrumb-item+.breadcrumb-item::before { - float: left; - padding-right: .5rem; - color: #6c757d; - content: "/" -} - -.breadcrumb-item+.breadcrumb-item:hover::before { - text-decoration: underline -} - -.breadcrumb-item+.breadcrumb-item:hover::before { - text-decoration: none -} - -.breadcrumb-item.active { - color: #6c757d -} - -.pagination { - display: -ms-flexbox; - display: flex; - padding-left: 0; - list-style: none; - border-radius: .25rem -} - -.page-link { - position: relative; - display: block; - padding: .5rem .75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6 -} - -.page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6 -} - -.page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: .25rem; - border-bottom-left-radius: .25rem -} - -.page-item:last-child .page-link { - border-top-right-radius: .25rem; - border-bottom-right-radius: .25rem -} - -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6 -} - -.pagination-lg .page-link { - padding: .75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5 -} - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: .3rem; - border-bottom-left-radius: .3rem -} - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: .3rem; - border-bottom-right-radius: .3rem -} - -.pagination-sm .page-link { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5 -} - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: .2rem; - border-bottom-left-radius: .2rem -} - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: .2rem; - border-bottom-right-radius: .2rem -} - -.badge { - display: inline-block; - padding: .25em .4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25rem; - transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .badge { - transition: none - } -} - -a.badge:focus, -a.badge:hover { - text-decoration: none -} - -.badge:empty { - display: none -} - -.btn .badge { - position: relative; - top: -1px -} - -.badge-pill { - padding-right: .6em; - padding-left: .6em; - border-radius: 10rem -} - -.badge-primary { - color: #fff; - background-color: #007bff -} - -a.badge-primary:focus, -a.badge-primary:hover { - color: #fff; - background-color: #0062cc -} - -a.badge-primary.focus, -a.badge-primary:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.badge-secondary { - color: #fff; - background-color: #6c757d -} - -a.badge-secondary:focus, -a.badge-secondary:hover { - color: #fff; - background-color: #545b62 -} - -a.badge-secondary.focus, -a.badge-secondary:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.badge-success { - color: #fff; - background-color: #28a745 -} - -a.badge-success:focus, -a.badge-success:hover { - color: #fff; - background-color: #1e7e34 -} - -a.badge-success.focus, -a.badge-success:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.badge-info { - color: #fff; - background-color: #17a2b8 -} - -a.badge-info:focus, -a.badge-info:hover { - color: #fff; - background-color: #117a8b -} - -a.badge-info.focus, -a.badge-info:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.badge-warning { - color: #212529; - background-color: #ffc107 -} - -a.badge-warning:focus, -a.badge-warning:hover { - color: #212529; - background-color: #d39e00 -} - -a.badge-warning.focus, -a.badge-warning:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.badge-danger { - color: #fff; - background-color: #dc3545 -} - -a.badge-danger:focus, -a.badge-danger:hover { - color: #fff; - background-color: #bd2130 -} - -a.badge-danger.focus, -a.badge-danger:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.badge-light { - color: #212529; - background-color: #f8f9fa -} - -a.badge-light:focus, -a.badge-light:hover { - color: #212529; - background-color: #dae0e5 -} - -a.badge-light.focus, -a.badge-light:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.badge-dark { - color: #fff; - background-color: #343a40 -} - -a.badge-dark:focus, -a.badge-dark:hover { - color: #fff; - background-color: #1d2124 -} - -a.badge-dark.focus, -a.badge-dark:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: .3rem -} - -@media (min-width:576px) { - .jumbotron { - padding: 4rem 2rem - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0 -} - -.alert { - position: relative; - padding: .75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: .25rem -} - -.alert-heading { - color: inherit -} - -.alert-link { - font-weight: 700 -} - -.alert-dismissible { - padding-right: 4rem -} - -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: .75rem 1.25rem; - color: inherit -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff -} - -.alert-primary hr { - border-top-color: #9fcdff -} - -.alert-primary .alert-link { - color: #002752 -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db -} - -.alert-secondary hr { - border-top-color: #c8cbcf -} - -.alert-secondary .alert-link { - color: #202326 -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb -} - -.alert-success hr { - border-top-color: #b1dfbb -} - -.alert-success .alert-link { - color: #0b2e13 -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb -} - -.alert-info hr { - border-top-color: #abdde5 -} - -.alert-info .alert-link { - color: #062c33 -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba -} - -.alert-warning hr { - border-top-color: #ffe8a1 -} - -.alert-warning .alert-link { - color: #533f03 -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb -} - -.alert-danger hr { - border-top-color: #f1b0b7 -} - -.alert-danger .alert-link { - color: #491217 -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe -} - -.alert-light hr { - border-top-color: #ececf6 -} - -.alert-light .alert-link { - color: #686868 -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca -} - -.alert-dark hr { - border-top-color: #b9bbbe -} - -.alert-dark .alert-link { - color: #040505 -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0 - } - - to { - background-position: 0 0 - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0 - } - - to { - background-position: 0 0 - } -} - -.progress { - display: -ms-flexbox; - display: flex; - height: 1rem; - overflow: hidden; - line-height: 0; - font-size: .75rem; - background-color: #e9ecef; - border-radius: .25rem -} - -.progress-bar { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #007bff; - transition: width .6s ease -} - -@media (prefers-reduced-motion:reduce) { - .progress-bar { - transition: none - } -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem -} - -.progress-bar-animated { - -webkit-animation: 1s linear infinite progress-bar-stripes; - animation: 1s linear infinite progress-bar-stripes -} - -@media (prefers-reduced-motion:reduce) { - .progress-bar-animated { - -webkit-animation: none; - animation: none - } -} - -.media { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start -} - -.media-body { - -ms-flex: 1; - flex: 1 -} - -.list-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: .25rem -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit -} - -.list-group-item-action:focus, -.list-group-item-action:hover { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa -} - -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef -} - -.list-group-item { - position: relative; - display: block; - padding: .75rem 1.25rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, .125) -} - -.list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit -} - -.list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit -} - -.list-group-item.disabled, -.list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff -} - -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.list-group-item+.list-group-item { - border-top-width: 0 -} - -.list-group-item+.list-group-item.active { - margin-top: -1px; - border-top-width: 1px -} - -.list-group-horizontal { - -ms-flex-direction: row; - flex-direction: row -} - -.list-group-horizontal>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 -} - -.list-group-horizontal>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 -} - -.list-group-horizontal>.list-group-item.active { - margin-top: 0 -} - -.list-group-horizontal>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 -} - -.list-group-horizontal>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px -} - -@media (min-width:576px) { - .list-group-horizontal-sm { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-sm>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-sm>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-sm>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-sm>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-sm>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:768px) { - .list-group-horizontal-md { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-md>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-md>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-md>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-md>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-md>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:992px) { - .list-group-horizontal-lg { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-lg>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-lg>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-lg>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-lg>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-lg>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:1200px) { - .list-group-horizontal-xl { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-xl>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-xl>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-xl>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-xl>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-xl>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -.list-group-flush { - border-radius: 0 -} - -.list-group-flush>.list-group-item { - border-width: 0 0 1px -} - -.list-group-flush>.list-group-item:last-child { - border-bottom-width: 0 -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff -} - -.list-group-item-primary.list-group-item-action:focus, -.list-group-item-primary.list-group-item-action:hover { - color: #004085; - background-color: #9fcdff -} - -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085 -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db -} - -.list-group-item-secondary.list-group-item-action:focus, -.list-group-item-secondary.list-group-item-action:hover { - color: #383d41; - background-color: #c8cbcf -} - -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41 -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb -} - -.list-group-item-success.list-group-item-action:focus, -.list-group-item-success.list-group-item-action:hover { - color: #155724; - background-color: #b1dfbb -} - -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724 -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb -} - -.list-group-item-info.list-group-item-action:focus, -.list-group-item-info.list-group-item-action:hover { - color: #0c5460; - background-color: #abdde5 -} - -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460 -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba -} - -.list-group-item-warning.list-group-item-action:focus, -.list-group-item-warning.list-group-item-action:hover { - color: #856404; - background-color: #ffe8a1 -} - -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404 -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb -} - -.list-group-item-danger.list-group-item-action:focus, -.list-group-item-danger.list-group-item-action:hover { - color: #721c24; - background-color: #f1b0b7 -} - -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24 -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe -} - -.list-group-item-light.list-group-item-action:focus, -.list-group-item-light.list-group-item-action:hover { - color: #818182; - background-color: #ececf6 -} - -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182 -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca -} - -.list-group-item-dark.list-group-item-action:focus, -.list-group-item-dark.list-group-item-action:hover { - color: #1b1e21; - background-color: #b9bbbe -} - -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21 -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5 -} - -.close:hover { - color: #000; - text-decoration: none -} - -.close:not(:disabled):not(.disabled):focus, -.close:not(:disabled):not(.disabled):hover { - opacity: .75 -} - -button.close { - padding: 0; - background-color: transparent; - border: 0 -} - -a.close.disabled { - pointer-events: none -} - -.toast { - -ms-flex-preferred-size: 350px; - flex-basis: 350px; - max-width: 350px; - font-size: .875rem; - background-color: rgba(255, 255, 255, .85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .1); - box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1); - opacity: 0; - border-radius: .25rem -} - -.toast:not(:last-child) { - margin-bottom: .75rem -} - -.toast.showing { - opacity: 1 -} - -.toast.show { - display: block; - opacity: 1 -} - -.toast.hide { - display: none -} - -.toast-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: .25rem .75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, .85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, .05); - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.toast-body { - padding: .75rem -} - -.modal-open { - overflow: hidden -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto -} - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0 -} - -.modal-dialog { - position: relative; - width: auto; - margin: .5rem; - pointer-events: none -} - -.modal.fade .modal-dialog { - transition: -webkit-transform .3s ease-out; - transition: transform .3s ease-out; - transition: transform .3s ease-out, -webkit-transform .3s ease-out; - -webkit-transform: translate(0, -50px); - transform: translate(0, -50px) -} - -@media (prefers-reduced-motion:reduce) { - .modal.fade .modal-dialog { - transition: none - } -} - -.modal.show .modal-dialog { - -webkit-transform: none; - transform: none -} - -.modal.modal-static .modal-dialog { - -webkit-transform: scale(1.02); - transform: scale(1.02) -} - -.modal-dialog-scrollable { - display: -ms-flexbox; - display: flex; - max-height: calc(100% - 1rem) -} - -.modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden -} - -.modal-dialog-scrollable .modal-footer, -.modal-dialog-scrollable .modal-header { - -ms-flex-negative: 0; - flex-shrink: 0 -} - -.modal-dialog-scrollable .modal-body { - overflow-y: auto -} - -.modal-dialog-centered { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - min-height: calc(100% - 1rem) -} - -.modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - height: -webkit-min-content; - height: -moz-min-content; - height: min-content; - content: "" -} - -.modal-dialog-centered.modal-dialog-scrollable { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - height: 100% -} - -.modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none -} - -.modal-dialog-centered.modal-dialog-scrollable::before { - content: none -} - -.modal-content { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem; - outline: 0 -} - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000 -} - -.modal-backdrop.fade { - opacity: 0 -} - -.modal-backdrop.show { - opacity: .5 -} - -.modal-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(.3rem - 1px); - border-top-right-radius: calc(.3rem - 1px) -} - -.modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5 -} - -.modal-body { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1rem -} - -.modal-footer { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: end; - justify-content: flex-end; - padding: .75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(.3rem - 1px); - border-bottom-left-radius: calc(.3rem - 1px) -} - -.modal-footer>* { - margin: .25rem -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll -} - -@media (min-width:576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto - } - - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem) - } - - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem) - } - - .modal-dialog-centered { - min-height: calc(100% - 3.5rem) - } - - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - height: -webkit-min-content; - height: -moz-min-content; - height: min-content - } - - .modal-sm { - max-width: 300px - } -} - -@media (min-width:992px) { - - .modal-lg, - .modal-xl { - max-width: 800px - } -} - -@media (min-width:1200px) { - .modal-xl { - max-width: 1140px - } -} - -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: .875rem; - word-wrap: break-word; - opacity: 0 -} - -.tooltip.show { - opacity: .9 -} - -.tooltip .arrow { - position: absolute; - display: block; - width: .8rem; - height: .4rem -} - -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid -} - -.bs-tooltip-auto[x-placement^=top], -.bs-tooltip-top { - padding: .4rem 0 -} - -.bs-tooltip-auto[x-placement^=top] .arrow, -.bs-tooltip-top .arrow { - bottom: 0 -} - -.bs-tooltip-auto[x-placement^=top] .arrow::before, -.bs-tooltip-top .arrow::before { - top: 0; - border-width: .4rem .4rem 0; - border-top-color: #000 -} - -.bs-tooltip-auto[x-placement^=right], -.bs-tooltip-right { - padding: 0 .4rem -} - -.bs-tooltip-auto[x-placement^=right] .arrow, -.bs-tooltip-right .arrow { - left: 0; - width: .4rem; - height: .8rem -} - -.bs-tooltip-auto[x-placement^=right] .arrow::before, -.bs-tooltip-right .arrow::before { - right: 0; - border-width: .4rem .4rem .4rem 0; - border-right-color: #000 -} - -.bs-tooltip-auto[x-placement^=bottom], -.bs-tooltip-bottom { - padding: .4rem 0 -} - -.bs-tooltip-auto[x-placement^=bottom] .arrow, -.bs-tooltip-bottom .arrow { - top: 0 -} - -.bs-tooltip-auto[x-placement^=bottom] .arrow::before, -.bs-tooltip-bottom .arrow::before { - bottom: 0; - border-width: 0 .4rem .4rem; - border-bottom-color: #000 -} - -.bs-tooltip-auto[x-placement^=left], -.bs-tooltip-left { - padding: 0 .4rem -} - -.bs-tooltip-auto[x-placement^=left] .arrow, -.bs-tooltip-left .arrow { - right: 0; - width: .4rem; - height: .8rem -} - -.bs-tooltip-auto[x-placement^=left] .arrow::before, -.bs-tooltip-left .arrow::before { - left: 0; - border-width: .4rem 0 .4rem .4rem; - border-left-color: #000 -} - -.tooltip-inner { - max-width: 200px; - padding: .25rem .5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: .25rem -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: .875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem -} - -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: .5rem; - margin: 0 .3rem -} - -.popover .arrow::after, -.popover .arrow::before { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid -} - -.bs-popover-auto[x-placement^=top], -.bs-popover-top { - margin-bottom: .5rem -} - -.bs-popover-auto[x-placement^=top]>.arrow, -.bs-popover-top>.arrow { - bottom: calc(-.5rem - 1px) -} - -.bs-popover-auto[x-placement^=top]>.arrow::before, -.bs-popover-top>.arrow::before { - bottom: 0; - border-width: .5rem .5rem 0; - border-top-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=top]>.arrow::after, -.bs-popover-top>.arrow::after { - bottom: 1px; - border-width: .5rem .5rem 0; - border-top-color: #fff -} - -.bs-popover-auto[x-placement^=right], -.bs-popover-right { - margin-left: .5rem -} - -.bs-popover-auto[x-placement^=right]>.arrow, -.bs-popover-right>.arrow { - left: calc(-.5rem - 1px); - width: .5rem; - height: 1rem; - margin: .3rem 0 -} - -.bs-popover-auto[x-placement^=right]>.arrow::before, -.bs-popover-right>.arrow::before { - left: 0; - border-width: .5rem .5rem .5rem 0; - border-right-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=right]>.arrow::after, -.bs-popover-right>.arrow::after { - left: 1px; - border-width: .5rem .5rem .5rem 0; - border-right-color: #fff -} - -.bs-popover-auto[x-placement^=bottom], -.bs-popover-bottom { - margin-top: .5rem -} - -.bs-popover-auto[x-placement^=bottom]>.arrow, -.bs-popover-bottom>.arrow { - top: calc(-.5rem - 1px) -} - -.bs-popover-auto[x-placement^=bottom]>.arrow::before, -.bs-popover-bottom>.arrow::before { - top: 0; - border-width: 0 .5rem .5rem .5rem; - border-bottom-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=bottom]>.arrow::after, -.bs-popover-bottom>.arrow::after { - top: 1px; - border-width: 0 .5rem .5rem .5rem; - border-bottom-color: #fff -} - -.bs-popover-auto[x-placement^=bottom] .popover-header::before, -.bs-popover-bottom .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7 -} - -.bs-popover-auto[x-placement^=left], -.bs-popover-left { - margin-right: .5rem -} - -.bs-popover-auto[x-placement^=left]>.arrow, -.bs-popover-left>.arrow { - right: calc(-.5rem - 1px); - width: .5rem; - height: 1rem; - margin: .3rem 0 -} - -.bs-popover-auto[x-placement^=left]>.arrow::before, -.bs-popover-left>.arrow::before { - right: 0; - border-width: .5rem 0 .5rem .5rem; - border-left-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=left]>.arrow::after, -.bs-popover-left>.arrow::after { - right: 1px; - border-width: .5rem 0 .5rem .5rem; - border-left-color: #fff -} - -.popover-header { - padding: .5rem .75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(.3rem - 1px); - border-top-right-radius: calc(.3rem - 1px) -} - -.popover-header:empty { - display: none -} - -.popover-body { - padding: .5rem .75rem; - color: #212529 -} - -.carousel { - position: relative -} - -.carousel.pointer-event { - -ms-touch-action: pan-y; - touch-action: pan-y -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden -} - -.carousel-inner::after { - display: block; - clear: both; - content: "" -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - transition: -webkit-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .carousel-item { - transition: none - } -} - -.carousel-item-next, -.carousel-item-prev, -.carousel-item.active { - display: block -} - -.active.carousel-item-right, -.carousel-item-next:not(.carousel-item-left) { - -webkit-transform: translateX(100%); - transform: translateX(100%) -} - -.active.carousel-item-left, -.carousel-item-prev:not(.carousel-item-right) { - -webkit-transform: translateX(-100%); - transform: translateX(-100%) -} - -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - -webkit-transform: none; - transform: none -} - -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right, -.carousel-fade .carousel-item.active { - z-index: 1; - opacity: 1 -} - -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: opacity 0s .6s -} - -@media (prefers-reduced-motion:reduce) { - - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none - } -} - -.carousel-control-next, -.carousel-control-prev { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: 15%; - padding: 0; - color: #fff; - text-align: center; - background: 0 0; - border: 0; - opacity: .5; - transition: opacity .15s ease -} - -@media (prefers-reduced-motion:reduce) { - - .carousel-control-next, - .carousel-control-prev { - transition: none - } -} - -.carousel-control-next:focus, -.carousel-control-next:hover, -.carousel-control-prev:focus, -.carousel-control-prev:hover { - color: #fff; - text-decoration: none; - outline: 0; - opacity: .9 -} - -.carousel-control-prev { - left: 0 -} - -.carousel-control-next { - right: 0 -} - -.carousel-control-next-icon, -.carousel-control-prev-icon { - display: inline-block; - width: 20px; - height: 20px; - background: 50%/100% 100% no-repeat -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e") -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e") -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: -ms-flexbox; - display: flex; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none -} - -.carousel-indicators li { - box-sizing: content-box; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity .6s ease -} - -@media (prefers-reduced-motion:reduce) { - .carousel-indicators li { - transition: none - } -} - -.carousel-indicators .active { - opacity: 1 -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center -} - -@-webkit-keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -@keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -.125em; - border: .25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - -webkit-animation: .75s linear infinite spinner-border; - animation: .75s linear infinite spinner-border -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: .2em -} - -@-webkit-keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0) - } - - 50% { - opacity: 1; - -webkit-transform: none; - transform: none - } -} - -@keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0) - } - - 50% { - opacity: 1; - -webkit-transform: none; - transform: none - } -} - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -.125em; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - -webkit-animation: .75s linear infinite spinner-grow; - animation: .75s linear infinite spinner-grow -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem -} - -@media (prefers-reduced-motion:reduce) { - - .spinner-border, - .spinner-grow { - -webkit-animation-duration: 1.5s; - animation-duration: 1.5s - } -} - -.align-baseline { - vertical-align: baseline !important -} - -.align-top { - vertical-align: top !important -} - -.align-middle { - vertical-align: middle !important -} - -.align-bottom { - vertical-align: bottom !important -} - -.align-text-bottom { - vertical-align: text-bottom !important -} - -.align-text-top { - vertical-align: text-top !important -} - -.bg-primary { - background-color: #007bff !important -} - -a.bg-primary:focus, -a.bg-primary:hover, -button.bg-primary:focus, -button.bg-primary:hover { - background-color: #0062cc !important -} - -.bg-secondary { - background-color: #6c757d !important -} - -a.bg-secondary:focus, -a.bg-secondary:hover, -button.bg-secondary:focus, -button.bg-secondary:hover { - background-color: #545b62 !important -} - -.bg-success { - background-color: #28a745 !important -} - -a.bg-success:focus, -a.bg-success:hover, -button.bg-success:focus, -button.bg-success:hover { - background-color: #1e7e34 !important -} - -.bg-info { - background-color: #17a2b8 !important -} - -a.bg-info:focus, -a.bg-info:hover, -button.bg-info:focus, -button.bg-info:hover { - background-color: #117a8b !important -} - -.bg-warning { - background-color: #ffc107 !important -} - -a.bg-warning:focus, -a.bg-warning:hover, -button.bg-warning:focus, -button.bg-warning:hover { - background-color: #d39e00 !important -} - -.bg-danger { - background-color: #dc3545 !important -} - -a.bg-danger:focus, -a.bg-danger:hover, -button.bg-danger:focus, -button.bg-danger:hover { - background-color: #bd2130 !important -} - -.bg-light { - background-color: #f8f9fa !important -} - -a.bg-light:focus, -a.bg-light:hover, -button.bg-light:focus, -button.bg-light:hover { - background-color: #dae0e5 !important -} - -.bg-dark { - background-color: #343a40 !important -} - -a.bg-dark:focus, -a.bg-dark:hover, -button.bg-dark:focus, -button.bg-dark:hover { - background-color: #1d2124 !important -} - -.bg-white { - background-color: #fff !important -} - -.bg-transparent { - background-color: transparent !important -} - -.border { - border: 1px solid #dee2e6 !important -} - -.border-top { - border-top: 1px solid #dee2e6 !important -} - -.border-right { - border-right: 1px solid #dee2e6 !important -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important -} - -.border-left { - border-left: 1px solid #dee2e6 !important -} - -.border-0 { - border: 0 !important -} - -.border-top-0 { - border-top: 0 !important -} - -.border-right-0 { - border-right: 0 !important -} - -.border-bottom-0 { - border-bottom: 0 !important -} - -.border-left-0 { - border-left: 0 !important -} - -.border-primary { - border-color: #007bff !important -} - -.border-secondary { - border-color: #6c757d !important -} - -.border-success { - border-color: #28a745 !important -} - -.border-info { - border-color: #17a2b8 !important -} - -.border-warning { - border-color: #ffc107 !important -} - -.border-danger { - border-color: #dc3545 !important -} - -.border-light { - border-color: #f8f9fa !important -} - -.border-dark { - border-color: #343a40 !important -} - -.border-white { - border-color: #fff !important -} - -.rounded-sm { - border-radius: .2rem !important -} - -.rounded { - border-radius: .25rem !important -} - -.rounded-top { - border-top-left-radius: .25rem !important; - border-top-right-radius: .25rem !important -} - -.rounded-right { - border-top-right-radius: .25rem !important; - border-bottom-right-radius: .25rem !important -} - -.rounded-bottom { - border-bottom-right-radius: .25rem !important; - border-bottom-left-radius: .25rem !important -} - -.rounded-left { - border-top-left-radius: .25rem !important; - border-bottom-left-radius: .25rem !important -} - -.rounded-lg { - border-radius: .3rem !important -} - -.rounded-circle { - border-radius: 50% !important -} - -.rounded-pill { - border-radius: 50rem !important -} - -.rounded-0 { - border-radius: 0 !important -} - -.clearfix::after { - display: block; - clear: both; - content: "" -} - -.d-none { - display: none !important -} - -.d-inline { - display: inline !important -} - -.d-inline-block { - display: inline-block !important -} - -.d-block { - display: block !important -} - -.d-table { - display: table !important -} - -.d-table-row { - display: table-row !important -} - -.d-table-cell { - display: table-cell !important -} - -.d-flex { - display: -ms-flexbox !important; - display: flex !important -} - -.d-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important -} - -@media (min-width:576px) { - .d-sm-none { - display: none !important - } - - .d-sm-inline { - display: inline !important - } - - .d-sm-inline-block { - display: inline-block !important - } - - .d-sm-block { - display: block !important - } - - .d-sm-table { - display: table !important - } - - .d-sm-table-row { - display: table-row !important - } - - .d-sm-table-cell { - display: table-cell !important - } - - .d-sm-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-sm-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:768px) { - .d-md-none { - display: none !important - } - - .d-md-inline { - display: inline !important - } - - .d-md-inline-block { - display: inline-block !important - } - - .d-md-block { - display: block !important - } - - .d-md-table { - display: table !important - } - - .d-md-table-row { - display: table-row !important - } - - .d-md-table-cell { - display: table-cell !important - } - - .d-md-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-md-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:992px) { - .d-lg-none { - display: none !important - } - - .d-lg-inline { - display: inline !important - } - - .d-lg-inline-block { - display: inline-block !important - } - - .d-lg-block { - display: block !important - } - - .d-lg-table { - display: table !important - } - - .d-lg-table-row { - display: table-row !important - } - - .d-lg-table-cell { - display: table-cell !important - } - - .d-lg-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-lg-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:1200px) { - .d-xl-none { - display: none !important - } - - .d-xl-inline { - display: inline !important - } - - .d-xl-inline-block { - display: inline-block !important - } - - .d-xl-block { - display: block !important - } - - .d-xl-table { - display: table !important - } - - .d-xl-table-row { - display: table-row !important - } - - .d-xl-table-cell { - display: table-cell !important - } - - .d-xl-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-xl-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media print { - .d-print-none { - display: none !important - } - - .d-print-inline { - display: inline !important - } - - .d-print-inline-block { - display: inline-block !important - } - - .d-print-block { - display: block !important - } - - .d-print-table { - display: table !important - } - - .d-print-table-row { - display: table-row !important - } - - .d-print-table-cell { - display: table-cell !important - } - - .d-print-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-print-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden -} - -.embed-responsive::before { - display: block; - content: "" -} - -.embed-responsive .embed-responsive-item, -.embed-responsive embed, -.embed-responsive iframe, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0 -} - -.embed-responsive-21by9::before { - padding-top: 42.857143% -} - -.embed-responsive-16by9::before { - padding-top: 56.25% -} - -.embed-responsive-4by3::before { - padding-top: 75% -} - -.embed-responsive-1by1::before { - padding-top: 100% -} - -.flex-row { - -ms-flex-direction: row !important; - flex-direction: row !important -} - -.flex-column { - -ms-flex-direction: column !important; - flex-direction: column !important -} - -.flex-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important -} - -.flex-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important -} - -.flex-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important -} - -.flex-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important -} - -.flex-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important -} - -.flex-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important -} - -.flex-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important -} - -.justify-content-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important -} - -.justify-content-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important -} - -.justify-content-center { - -ms-flex-pack: center !important; - justify-content: center !important -} - -.justify-content-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important -} - -.align-items-start { - -ms-flex-align: start !important; - align-items: flex-start !important -} - -.align-items-end { - -ms-flex-align: end !important; - align-items: flex-end !important -} - -.align-items-center { - -ms-flex-align: center !important; - align-items: center !important -} - -.align-items-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important -} - -.align-items-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important -} - -@media (min-width:576px) { - .flex-sm-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-sm-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-sm-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-sm-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-sm-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-sm-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-sm-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-sm-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-sm-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-sm-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-sm-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-sm-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-sm-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-sm-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-sm-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-sm-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-sm-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-sm-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:768px) { - .flex-md-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-md-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-md-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-md-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-md-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-md-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-md-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-md-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-md-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-md-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-md-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-md-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-md-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-md-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-md-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-md-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-md-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-md-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:992px) { - .flex-lg-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-lg-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-lg-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-lg-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-lg-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-lg-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-lg-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-lg-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-lg-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-lg-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-lg-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-lg-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-lg-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-lg-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-lg-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-lg-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-lg-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-lg-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:1200px) { - .flex-xl-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-xl-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-xl-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-xl-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-xl-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-xl-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-xl-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-xl-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-xl-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-xl-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-xl-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-xl-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-xl-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-xl-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-xl-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-xl-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-xl-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-xl-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -.float-left { - float: left !important -} - -.float-right { - float: right !important -} - -.float-none { - float: none !important -} - -@media (min-width:576px) { - .float-sm-left { - float: left !important - } - - .float-sm-right { - float: right !important - } - - .float-sm-none { - float: none !important - } -} - -@media (min-width:768px) { - .float-md-left { - float: left !important - } - - .float-md-right { - float: right !important - } - - .float-md-none { - float: none !important - } -} - -@media (min-width:992px) { - .float-lg-left { - float: left !important - } - - .float-lg-right { - float: right !important - } - - .float-lg-none { - float: none !important - } -} - -@media (min-width:1200px) { - .float-xl-left { - float: left !important - } - - .float-xl-right { - float: right !important - } - - .float-xl-none { - float: none !important - } -} - -.user-select-all { - -webkit-user-select: all !important; - -moz-user-select: all !important; - user-select: all !important -} - -.user-select-auto { - -webkit-user-select: auto !important; - -moz-user-select: auto !important; - -ms-user-select: auto !important; - user-select: auto !important -} - -.user-select-none { - -webkit-user-select: none !important; - -moz-user-select: none !important; - -ms-user-select: none !important; - user-select: none !important -} - -.overflow-auto { - overflow: auto !important -} - -.overflow-hidden { - overflow: hidden !important -} - -.position-static { - position: static !important -} - -.position-relative { - position: relative !important -} - -.position-absolute { - position: absolute !important -} - -.position-fixed { - position: fixed !important -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030 -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030 -} - -@supports ((position:-webkit-sticky) or (position:sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020 - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0 -} - -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal -} - -.shadow-sm { - box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important -} - -.shadow { - box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important -} - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important -} - -.shadow-none { - box-shadow: none !important -} - -.w-25 { - width: 25% !important -} - -.w-50 { - width: 50% !important -} - -.w-75 { - width: 75% !important -} - -.w-100 { - width: 100% !important -} - -.w-auto { - width: auto !important -} - -.h-25 { - height: 25% !important -} - -.h-50 { - height: 50% !important -} - -.h-75 { - height: 75% !important -} - -.h-100 { - height: 100% !important -} - -.h-auto { - height: auto !important -} - -.mw-100 { - max-width: 100% !important -} - -.mh-100 { - max-height: 100% !important -} - -.min-vw-100 { - min-width: 100vw !important -} - -.min-vh-100 { - min-height: 100vh !important -} - -.vw-100 { - width: 100vw !important -} - -.vh-100 { - height: 100vh !important -} - -.m-0 { - margin: 0 !important -} - -.mt-0, -.my-0 { - margin-top: 0 !important -} - -.mr-0, -.mx-0 { - margin-right: 0 !important -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important -} - -.ml-0, -.mx-0 { - margin-left: 0 !important -} - -.m-1 { - margin: .25rem !important -} - -.mt-1, -.my-1 { - margin-top: .25rem !important -} - -.mr-1, -.mx-1 { - margin-right: .25rem !important -} - -.mb-1, -.my-1 { - margin-bottom: .25rem !important -} - -.ml-1, -.mx-1 { - margin-left: .25rem !important -} - -.m-2 { - margin: .5rem !important -} - -.mt-2, -.my-2 { - margin-top: .5rem !important -} - -.mr-2, -.mx-2 { - margin-right: .5rem !important -} - -.mb-2, -.my-2 { - margin-bottom: .5rem !important -} - -.ml-2, -.mx-2 { - margin-left: .5rem !important -} - -.m-3 { - margin: 1rem !important -} - -.mt-3, -.my-3 { - margin-top: 1rem !important -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important -} - -.m-4 { - margin: 1.5rem !important -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important -} - -.m-5 { - margin: 3rem !important -} - -.mt-5, -.my-5 { - margin-top: 3rem !important -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important -} - -.p-0 { - padding: 0 !important -} - -.pt-0, -.py-0 { - padding-top: 0 !important -} - -.pr-0, -.px-0 { - padding-right: 0 !important -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important -} - -.pl-0, -.px-0 { - padding-left: 0 !important -} - -.p-1 { - padding: .25rem !important -} - -.pt-1, -.py-1 { - padding-top: .25rem !important -} - -.pr-1, -.px-1 { - padding-right: .25rem !important -} - -.pb-1, -.py-1 { - padding-bottom: .25rem !important -} - -.pl-1, -.px-1 { - padding-left: .25rem !important -} - -.p-2 { - padding: .5rem !important -} - -.pt-2, -.py-2 { - padding-top: .5rem !important -} - -.pr-2, -.px-2 { - padding-right: .5rem !important -} - -.pb-2, -.py-2 { - padding-bottom: .5rem !important -} - -.pl-2, -.px-2 { - padding-left: .5rem !important -} - -.p-3 { - padding: 1rem !important -} - -.pt-3, -.py-3 { - padding-top: 1rem !important -} - -.pr-3, -.px-3 { - padding-right: 1rem !important -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important -} - -.pl-3, -.px-3 { - padding-left: 1rem !important -} - -.p-4 { - padding: 1.5rem !important -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important -} - -.p-5 { - padding: 3rem !important -} - -.pt-5, -.py-5 { - padding-top: 3rem !important -} - -.pr-5, -.px-5 { - padding-right: 3rem !important -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important -} - -.pl-5, -.px-5 { - padding-left: 3rem !important -} - -.m-n1 { - margin: -.25rem !important -} - -.mt-n1, -.my-n1 { - margin-top: -.25rem !important -} - -.mr-n1, -.mx-n1 { - margin-right: -.25rem !important -} - -.mb-n1, -.my-n1 { - margin-bottom: -.25rem !important -} - -.ml-n1, -.mx-n1 { - margin-left: -.25rem !important -} - -.m-n2 { - margin: -.5rem !important -} - -.mt-n2, -.my-n2 { - margin-top: -.5rem !important -} - -.mr-n2, -.mx-n2 { - margin-right: -.5rem !important -} - -.mb-n2, -.my-n2 { - margin-bottom: -.5rem !important -} - -.ml-n2, -.mx-n2 { - margin-left: -.5rem !important -} - -.m-n3 { - margin: -1rem !important -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important -} - -.m-n4 { - margin: -1.5rem !important -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important -} - -.m-n5 { - margin: -3rem !important -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important -} - -.m-auto { - margin: auto !important -} - -.mt-auto, -.my-auto { - margin-top: auto !important -} - -.mr-auto, -.mx-auto { - margin-right: auto !important -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important -} - -.ml-auto, -.mx-auto { - margin-left: auto !important -} - -@media (min-width:576px) { - .m-sm-0 { - margin: 0 !important - } - - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important - } - - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important - } - - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important - } - - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important - } - - .m-sm-1 { - margin: .25rem !important - } - - .mt-sm-1, - .my-sm-1 { - margin-top: .25rem !important - } - - .mr-sm-1, - .mx-sm-1 { - margin-right: .25rem !important - } - - .mb-sm-1, - .my-sm-1 { - margin-bottom: .25rem !important - } - - .ml-sm-1, - .mx-sm-1 { - margin-left: .25rem !important - } - - .m-sm-2 { - margin: .5rem !important - } - - .mt-sm-2, - .my-sm-2 { - margin-top: .5rem !important - } - - .mr-sm-2, - .mx-sm-2 { - margin-right: .5rem !important - } - - .mb-sm-2, - .my-sm-2 { - margin-bottom: .5rem !important - } - - .ml-sm-2, - .mx-sm-2 { - margin-left: .5rem !important - } - - .m-sm-3 { - margin: 1rem !important - } - - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important - } - - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important - } - - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important - } - - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important - } - - .m-sm-4 { - margin: 1.5rem !important - } - - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important - } - - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important - } - - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important - } - - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important - } - - .m-sm-5 { - margin: 3rem !important - } - - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important - } - - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important - } - - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important - } - - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important - } - - .p-sm-0 { - padding: 0 !important - } - - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important - } - - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important - } - - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important - } - - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important - } - - .p-sm-1 { - padding: .25rem !important - } - - .pt-sm-1, - .py-sm-1 { - padding-top: .25rem !important - } - - .pr-sm-1, - .px-sm-1 { - padding-right: .25rem !important - } - - .pb-sm-1, - .py-sm-1 { - padding-bottom: .25rem !important - } - - .pl-sm-1, - .px-sm-1 { - padding-left: .25rem !important - } - - .p-sm-2 { - padding: .5rem !important - } - - .pt-sm-2, - .py-sm-2 { - padding-top: .5rem !important - } - - .pr-sm-2, - .px-sm-2 { - padding-right: .5rem !important - } - - .pb-sm-2, - .py-sm-2 { - padding-bottom: .5rem !important - } - - .pl-sm-2, - .px-sm-2 { - padding-left: .5rem !important - } - - .p-sm-3 { - padding: 1rem !important - } - - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important - } - - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important - } - - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important - } - - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important - } - - .p-sm-4 { - padding: 1.5rem !important - } - - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important - } - - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important - } - - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important - } - - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important - } - - .p-sm-5 { - padding: 3rem !important - } - - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important - } - - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important - } - - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important - } - - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important - } - - .m-sm-n1 { - margin: -.25rem !important - } - - .mt-sm-n1, - .my-sm-n1 { - margin-top: -.25rem !important - } - - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -.25rem !important - } - - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -.25rem !important - } - - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -.25rem !important - } - - .m-sm-n2 { - margin: -.5rem !important - } - - .mt-sm-n2, - .my-sm-n2 { - margin-top: -.5rem !important - } - - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -.5rem !important - } - - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -.5rem !important - } - - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -.5rem !important - } - - .m-sm-n3 { - margin: -1rem !important - } - - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important - } - - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important - } - - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important - } - - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important - } - - .m-sm-n4 { - margin: -1.5rem !important - } - - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important - } - - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important - } - - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important - } - - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important - } - - .m-sm-n5 { - margin: -3rem !important - } - - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important - } - - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important - } - - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important - } - - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important - } - - .m-sm-auto { - margin: auto !important - } - - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important - } - - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important - } - - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important - } - - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important - } -} - -@media (min-width:768px) { - .m-md-0 { - margin: 0 !important - } - - .mt-md-0, - .my-md-0 { - margin-top: 0 !important - } - - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important - } - - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important - } - - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important - } - - .m-md-1 { - margin: .25rem !important - } - - .mt-md-1, - .my-md-1 { - margin-top: .25rem !important - } - - .mr-md-1, - .mx-md-1 { - margin-right: .25rem !important - } - - .mb-md-1, - .my-md-1 { - margin-bottom: .25rem !important - } - - .ml-md-1, - .mx-md-1 { - margin-left: .25rem !important - } - - .m-md-2 { - margin: .5rem !important - } - - .mt-md-2, - .my-md-2 { - margin-top: .5rem !important - } - - .mr-md-2, - .mx-md-2 { - margin-right: .5rem !important - } - - .mb-md-2, - .my-md-2 { - margin-bottom: .5rem !important - } - - .ml-md-2, - .mx-md-2 { - margin-left: .5rem !important - } - - .m-md-3 { - margin: 1rem !important - } - - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important - } - - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important - } - - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important - } - - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important - } - - .m-md-4 { - margin: 1.5rem !important - } - - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important - } - - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important - } - - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important - } - - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important - } - - .m-md-5 { - margin: 3rem !important - } - - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important - } - - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important - } - - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important - } - - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important - } - - .p-md-0 { - padding: 0 !important - } - - .pt-md-0, - .py-md-0 { - padding-top: 0 !important - } - - .pr-md-0, - .px-md-0 { - padding-right: 0 !important - } - - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important - } - - .pl-md-0, - .px-md-0 { - padding-left: 0 !important - } - - .p-md-1 { - padding: .25rem !important - } - - .pt-md-1, - .py-md-1 { - padding-top: .25rem !important - } - - .pr-md-1, - .px-md-1 { - padding-right: .25rem !important - } - - .pb-md-1, - .py-md-1 { - padding-bottom: .25rem !important - } - - .pl-md-1, - .px-md-1 { - padding-left: .25rem !important - } - - .p-md-2 { - padding: .5rem !important - } - - .pt-md-2, - .py-md-2 { - padding-top: .5rem !important - } - - .pr-md-2, - .px-md-2 { - padding-right: .5rem !important - } - - .pb-md-2, - .py-md-2 { - padding-bottom: .5rem !important - } - - .pl-md-2, - .px-md-2 { - padding-left: .5rem !important - } - - .p-md-3 { - padding: 1rem !important - } - - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important - } - - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important - } - - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important - } - - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important - } - - .p-md-4 { - padding: 1.5rem !important - } - - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important - } - - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important - } - - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important - } - - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important - } - - .p-md-5 { - padding: 3rem !important - } - - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important - } - - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important - } - - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important - } - - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important - } - - .m-md-n1 { - margin: -.25rem !important - } - - .mt-md-n1, - .my-md-n1 { - margin-top: -.25rem !important - } - - .mr-md-n1, - .mx-md-n1 { - margin-right: -.25rem !important - } - - .mb-md-n1, - .my-md-n1 { - margin-bottom: -.25rem !important - } - - .ml-md-n1, - .mx-md-n1 { - margin-left: -.25rem !important - } - - .m-md-n2 { - margin: -.5rem !important - } - - .mt-md-n2, - .my-md-n2 { - margin-top: -.5rem !important - } - - .mr-md-n2, - .mx-md-n2 { - margin-right: -.5rem !important - } - - .mb-md-n2, - .my-md-n2 { - margin-bottom: -.5rem !important - } - - .ml-md-n2, - .mx-md-n2 { - margin-left: -.5rem !important - } - - .m-md-n3 { - margin: -1rem !important - } - - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important - } - - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important - } - - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important - } - - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important - } - - .m-md-n4 { - margin: -1.5rem !important - } - - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important - } - - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important - } - - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important - } - - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important - } - - .m-md-n5 { - margin: -3rem !important - } - - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important - } - - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important - } - - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important - } - - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important - } - - .m-md-auto { - margin: auto !important - } - - .mt-md-auto, - .my-md-auto { - margin-top: auto !important - } - - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important - } - - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important - } - - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important - } -} - -@media (min-width:992px) { - .m-lg-0 { - margin: 0 !important - } - - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important - } - - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important - } - - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important - } - - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important - } - - .m-lg-1 { - margin: .25rem !important - } - - .mt-lg-1, - .my-lg-1 { - margin-top: .25rem !important - } - - .mr-lg-1, - .mx-lg-1 { - margin-right: .25rem !important - } - - .mb-lg-1, - .my-lg-1 { - margin-bottom: .25rem !important - } - - .ml-lg-1, - .mx-lg-1 { - margin-left: .25rem !important - } - - .m-lg-2 { - margin: .5rem !important - } - - .mt-lg-2, - .my-lg-2 { - margin-top: .5rem !important - } - - .mr-lg-2, - .mx-lg-2 { - margin-right: .5rem !important - } - - .mb-lg-2, - .my-lg-2 { - margin-bottom: .5rem !important - } - - .ml-lg-2, - .mx-lg-2 { - margin-left: .5rem !important - } - - .m-lg-3 { - margin: 1rem !important - } - - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important - } - - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important - } - - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important - } - - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important - } - - .m-lg-4 { - margin: 1.5rem !important - } - - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important - } - - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important - } - - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important - } - - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important - } - - .m-lg-5 { - margin: 3rem !important - } - - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important - } - - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important - } - - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important - } - - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important - } - - .p-lg-0 { - padding: 0 !important - } - - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important - } - - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important - } - - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important - } - - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important - } - - .p-lg-1 { - padding: .25rem !important - } - - .pt-lg-1, - .py-lg-1 { - padding-top: .25rem !important - } - - .pr-lg-1, - .px-lg-1 { - padding-right: .25rem !important - } - - .pb-lg-1, - .py-lg-1 { - padding-bottom: .25rem !important - } - - .pl-lg-1, - .px-lg-1 { - padding-left: .25rem !important - } - - .p-lg-2 { - padding: .5rem !important - } - - .pt-lg-2, - .py-lg-2 { - padding-top: .5rem !important - } - - .pr-lg-2, - .px-lg-2 { - padding-right: .5rem !important - } - - .pb-lg-2, - .py-lg-2 { - padding-bottom: .5rem !important - } - - .pl-lg-2, - .px-lg-2 { - padding-left: .5rem !important - } - - .p-lg-3 { - padding: 1rem !important - } - - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important - } - - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important - } - - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important - } - - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important - } - - .p-lg-4 { - padding: 1.5rem !important - } - - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important - } - - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important - } - - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important - } - - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important - } - - .p-lg-5 { - padding: 3rem !important - } - - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important - } - - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important - } - - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important - } - - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important - } - - .m-lg-n1 { - margin: -.25rem !important - } - - .mt-lg-n1, - .my-lg-n1 { - margin-top: -.25rem !important - } - - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -.25rem !important - } - - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -.25rem !important - } - - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -.25rem !important - } - - .m-lg-n2 { - margin: -.5rem !important - } - - .mt-lg-n2, - .my-lg-n2 { - margin-top: -.5rem !important - } - - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -.5rem !important - } - - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -.5rem !important - } - - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -.5rem !important - } - - .m-lg-n3 { - margin: -1rem !important - } - - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important - } - - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important - } - - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important - } - - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important - } - - .m-lg-n4 { - margin: -1.5rem !important - } - - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important - } - - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important - } - - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important - } - - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important - } - - .m-lg-n5 { - margin: -3rem !important - } - - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important - } - - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important - } - - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important - } - - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important - } - - .m-lg-auto { - margin: auto !important - } - - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important - } - - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important - } - - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important - } - - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important - } -} - -@media (min-width:1200px) { - .m-xl-0 { - margin: 0 !important - } - - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important - } - - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important - } - - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important - } - - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important - } - - .m-xl-1 { - margin: .25rem !important - } - - .mt-xl-1, - .my-xl-1 { - margin-top: .25rem !important - } - - .mr-xl-1, - .mx-xl-1 { - margin-right: .25rem !important - } - - .mb-xl-1, - .my-xl-1 { - margin-bottom: .25rem !important - } - - .ml-xl-1, - .mx-xl-1 { - margin-left: .25rem !important - } - - .m-xl-2 { - margin: .5rem !important - } - - .mt-xl-2, - .my-xl-2 { - margin-top: .5rem !important - } - - .mr-xl-2, - .mx-xl-2 { - margin-right: .5rem !important - } - - .mb-xl-2, - .my-xl-2 { - margin-bottom: .5rem !important - } - - .ml-xl-2, - .mx-xl-2 { - margin-left: .5rem !important - } - - .m-xl-3 { - margin: 1rem !important - } - - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important - } - - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important - } - - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important - } - - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important - } - - .m-xl-4 { - margin: 1.5rem !important - } - - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important - } - - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important - } - - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important - } - - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important - } - - .m-xl-5 { - margin: 3rem !important - } - - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important - } - - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important - } - - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important - } - - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important - } - - .p-xl-0 { - padding: 0 !important - } - - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important - } - - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important - } - - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important - } - - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important - } - - .p-xl-1 { - padding: .25rem !important - } - - .pt-xl-1, - .py-xl-1 { - padding-top: .25rem !important - } - - .pr-xl-1, - .px-xl-1 { - padding-right: .25rem !important - } - - .pb-xl-1, - .py-xl-1 { - padding-bottom: .25rem !important - } - - .pl-xl-1, - .px-xl-1 { - padding-left: .25rem !important - } - - .p-xl-2 { - padding: .5rem !important - } - - .pt-xl-2, - .py-xl-2 { - padding-top: .5rem !important - } - - .pr-xl-2, - .px-xl-2 { - padding-right: .5rem !important - } - - .pb-xl-2, - .py-xl-2 { - padding-bottom: .5rem !important - } - - .pl-xl-2, - .px-xl-2 { - padding-left: .5rem !important - } - - .p-xl-3 { - padding: 1rem !important - } - - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important - } - - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important - } - - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important - } - - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important - } - - .p-xl-4 { - padding: 1.5rem !important - } - - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important - } - - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important - } - - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important - } - - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important - } - - .p-xl-5 { - padding: 3rem !important - } - - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important - } - - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important - } - - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important - } - - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important - } - - .m-xl-n1 { - margin: -.25rem !important - } - - .mt-xl-n1, - .my-xl-n1 { - margin-top: -.25rem !important - } - - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -.25rem !important - } - - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -.25rem !important - } - - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -.25rem !important - } - - .m-xl-n2 { - margin: -.5rem !important - } - - .mt-xl-n2, - .my-xl-n2 { - margin-top: -.5rem !important - } - - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -.5rem !important - } - - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -.5rem !important - } - - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -.5rem !important - } - - .m-xl-n3 { - margin: -1rem !important - } - - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important - } - - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important - } - - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important - } - - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important - } - - .m-xl-n4 { - margin: -1.5rem !important - } - - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important - } - - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important - } - - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important - } - - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important - } - - .m-xl-n5 { - margin: -3rem !important - } - - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important - } - - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important - } - - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important - } - - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important - } - - .m-xl-auto { - margin: auto !important - } - - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important - } - - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important - } - - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important - } - - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important - } -} - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: rgba(0, 0, 0, 0) -} - -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important -} - -.text-justify { - text-align: justify !important -} - -.text-wrap { - white-space: normal !important -} - -.text-nowrap { - white-space: nowrap !important -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap -} - -.text-left { - text-align: left !important -} - -.text-right { - text-align: right !important -} - -.text-center { - text-align: center !important -} - -@media (min-width:576px) { - .text-sm-left { - text-align: left !important - } - - .text-sm-right { - text-align: right !important - } - - .text-sm-center { - text-align: center !important - } -} - -@media (min-width:768px) { - .text-md-left { - text-align: left !important - } - - .text-md-right { - text-align: right !important - } - - .text-md-center { - text-align: center !important - } -} - -@media (min-width:992px) { - .text-lg-left { - text-align: left !important - } - - .text-lg-right { - text-align: right !important - } - - .text-lg-center { - text-align: center !important - } -} - -@media (min-width:1200px) { - .text-xl-left { - text-align: left !important - } - - .text-xl-right { - text-align: right !important - } - - .text-xl-center { - text-align: center !important - } -} - -.text-lowercase { - text-transform: lowercase !important -} - -.text-uppercase { - text-transform: uppercase !important -} - -.text-capitalize { - text-transform: capitalize !important -} - -.font-weight-light { - font-weight: 300 !important -} - -.font-weight-lighter { - font-weight: lighter !important -} - -.font-weight-normal { - font-weight: 400 !important -} - -.font-weight-bold { - font-weight: 700 !important -} - -.font-weight-bolder { - font-weight: bolder !important -} - -.font-italic { - font-style: italic !important -} - -.text-white { - color: #fff !important -} - -.text-primary { - color: #007bff !important -} - -a.text-primary:focus, -a.text-primary:hover { - color: #0056b3 !important -} - -.text-secondary { - color: #6c757d !important -} - -a.text-secondary:focus, -a.text-secondary:hover { - color: #494f54 !important -} - -.text-success { - color: #28a745 !important -} - -a.text-success:focus, -a.text-success:hover { - color: #19692c !important -} - -.text-info { - color: #17a2b8 !important -} - -a.text-info:focus, -a.text-info:hover { - color: #0f6674 !important -} - -.text-warning { - color: #ffc107 !important -} - -a.text-warning:focus, -a.text-warning:hover { - color: #ba8b00 !important -} - -.text-danger { - color: #dc3545 !important -} - -a.text-danger:focus, -a.text-danger:hover { - color: #a71d2a !important -} - -.text-light { - color: #f8f9fa !important -} - -a.text-light:focus, -a.text-light:hover { - color: #cbd3da !important -} - -.text-dark { - color: #343a40 !important -} - -a.text-dark:focus, -a.text-dark:hover { - color: #121416 !important -} - -.text-body { - color: #212529 !important -} - -.text-muted { - color: #6c757d !important -} - -.text-black-50 { - color: rgba(0, 0, 0, .5) !important -} - -.text-white-50 { - color: rgba(255, 255, 255, .5) !important -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0 -} - -.text-decoration-none { - text-decoration: none !important -} - -.text-break { - word-break: break-word !important; - word-wrap: break-word !important -} - -.text-reset { - color: inherit !important -} - -.visible { - visibility: visible !important -} - -.invisible { - visibility: hidden !important -} - -@media print { - - *, - ::after, - ::before { - text-shadow: none !important; - box-shadow: none !important - } - - a:not(.btn) { - text-decoration: underline - } - - abbr[title]::after { - content: " (" attr(title) ")" - } - - pre { - white-space: pre-wrap !important - } - - blockquote, - pre { - border: 1px solid #adb5bd; - page-break-inside: avoid - } - - img, - tr { - page-break-inside: avoid - } - - h2, - h3, - p { - orphans: 3; - widows: 3 - } - - h2, - h3 { - page-break-after: avoid - } - - @page { - size: a3 - } - - body { - min-width: 992px !important - } - - .container { - min-width: 992px !important - } - - .navbar { - display: none - } - - .badge { - border: 1px solid #000 - } - - .table { - border-collapse: collapse !important - } - - .table td, - .table th { - background-color: #fff !important - } - - .table-bordered td, - .table-bordered th { - border: 1px solid #dee2e6 !important - } - - .table-dark { - color: inherit - } - - .table-dark tbody+tbody, - .table-dark td, - .table-dark th, - .table-dark thead th { - border-color: #dee2e6 - } - - .table .thead-dark th { - color: inherit; - border-color: #dee2e6 - } -} - -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/css/icofont.min.css b/desarrollo/diseno/registro-cliente/css/icofont.min.css deleted file mode 100644 index 91bdd564..00000000 --- a/desarrollo/diseno/registro-cliente/css/icofont.min.css +++ /dev/null @@ -1,7 +0,0 @@ -/*! -* @package IcoFont -* @version 1.0.1 -* @author IcoFont https://icofont.com -* @copyright Copyright (c) 2015 - 2018 IcoFont -* @license - https://icofont.com/license/ -*/@font-face{font-family:IcoFont;font-weight:400;font-style:Regular;src:url(../fonts/icofont.woff2) format("woff2"),url(../fonts/icofont.woff) format("woff")}[class*=" icofont-"],[class^=icofont-]{font-family:IcoFont!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr;line-height:1;-webkit-font-feature-settings:"liga";-webkit-font-smoothing:antialiased}.icofont-angry-monster:before{content:"\e800"}.icofont-bathtub:before{content:"\e801"}.icofont-bird-wings:before{content:"\e802"}.icofont-bow:before{content:"\e803"}.icofont-castle:before{content:"\e804"}.icofont-circuit:before{content:"\e805"}.icofont-crown-king:before{content:"\e806"}.icofont-crown-queen:before{content:"\e807"}.icofont-dart:before{content:"\e808"}.icofont-disability-race:before{content:"\e809"}.icofont-diving-goggle:before{content:"\e80a"}.icofont-eye-open:before{content:"\e80b"}.icofont-flora-flower:before{content:"\e80c"}.icofont-flora:before{content:"\e80d"}.icofont-gift-box:before{content:"\e80e"}.icofont-halloween-pumpkin:before{content:"\e80f"}.icofont-hand-power:before{content:"\e810"}.icofont-hand-thunder:before{content:"\e811"}.icofont-king-monster:before{content:"\e812"}.icofont-love:before{content:"\e813"}.icofont-magician-hat:before{content:"\e814"}.icofont-native-american:before{content:"\e815"}.icofont-owl-look:before{content:"\e816"}.icofont-phoenix:before{content:"\e817"}.icofont-robot-face:before{content:"\e818"}.icofont-sand-clock:before{content:"\e819"}.icofont-shield-alt:before{content:"\e81a"}.icofont-ship-wheel:before{content:"\e81b"}.icofont-skull-danger:before{content:"\e81c"}.icofont-skull-face:before{content:"\e81d"}.icofont-snowmobile:before{content:"\e81e"}.icofont-space-shuttle:before{content:"\e81f"}.icofont-star-shape:before{content:"\e820"}.icofont-swirl:before{content:"\e821"}.icofont-tattoo-wing:before{content:"\e822"}.icofont-throne:before{content:"\e823"}.icofont-tree-alt:before{content:"\e824"}.icofont-triangle:before{content:"\e825"}.icofont-unity-hand:before{content:"\e826"}.icofont-weed:before{content:"\e827"}.icofont-woman-bird:before{content:"\e828"}.icofont-bat:before{content:"\e829"}.icofont-bear-face:before{content:"\e82a"}.icofont-bear-tracks:before{content:"\e82b"}.icofont-bear:before{content:"\e82c"}.icofont-bird-alt:before{content:"\e82d"}.icofont-bird-flying:before{content:"\e82e"}.icofont-bird:before{content:"\e82f"}.icofont-birds:before{content:"\e830"}.icofont-bone:before{content:"\e831"}.icofont-bull:before{content:"\e832"}.icofont-butterfly-alt:before{content:"\e833"}.icofont-butterfly:before{content:"\e834"}.icofont-camel-alt:before{content:"\e835"}.icofont-camel-head:before{content:"\e836"}.icofont-camel:before{content:"\e837"}.icofont-cat-alt-1:before{content:"\e838"}.icofont-cat-alt-2:before{content:"\e839"}.icofont-cat-alt-3:before{content:"\e83a"}.icofont-cat-dog:before{content:"\e83b"}.icofont-cat-face:before{content:"\e83c"}.icofont-cat:before{content:"\e83d"}.icofont-cow-head:before{content:"\e83e"}.icofont-cow:before{content:"\e83f"}.icofont-crab:before{content:"\e840"}.icofont-crocodile:before{content:"\e841"}.icofont-deer-head:before{content:"\e842"}.icofont-dog-alt:before{content:"\e843"}.icofont-dog-barking:before{content:"\e844"}.icofont-dog:before{content:"\e845"}.icofont-dolphin:before{content:"\e846"}.icofont-duck-tracks:before{content:"\e847"}.icofont-eagle-head:before{content:"\e848"}.icofont-eaten-fish:before{content:"\e849"}.icofont-elephant-alt:before{content:"\e84a"}.icofont-elephant-head-alt:before{content:"\e84b"}.icofont-elephant-head:before{content:"\e84c"}.icofont-elephant:before{content:"\e84d"}.icofont-elk:before{content:"\e84e"}.icofont-fish-1:before{content:"\e84f"}.icofont-fish-2:before{content:"\e850"}.icofont-fish-3:before{content:"\e851"}.icofont-fish-4:before{content:"\e852"}.icofont-fish-5:before{content:"\e853"}.icofont-fish:before{content:"\e854"}.icofont-fox-alt:before{content:"\e855"}.icofont-fox:before{content:"\e856"}.icofont-frog-tracks:before{content:"\e857"}.icofont-frog:before{content:"\e858"}.icofont-froggy:before{content:"\e859"}.icofont-giraffe-head-1:before{content:"\e85a"}.icofont-giraffe-head-2:before{content:"\e85b"}.icofont-giraffe-head:before{content:"\e85c"}.icofont-giraffe:before{content:"\e85d"}.icofont-goat-head:before{content:"\e85e"}.icofont-gorilla:before{content:"\e85f"}.icofont-hen-tracks:before{content:"\e860"}.icofont-horse-head-1:before{content:"\e861"}.icofont-horse-head-2:before{content:"\e862"}.icofont-horse-head:before{content:"\e863"}.icofont-horse-tracks:before{content:"\e864"}.icofont-jellyfish:before{content:"\e865"}.icofont-kangaroo:before{content:"\e866"}.icofont-lemur:before{content:"\e867"}.icofont-lion-head-1:before{content:"\e868"}.icofont-lion-head-2:before{content:"\e869"}.icofont-lion-head:before{content:"\e86a"}.icofont-lion:before{content:"\e86b"}.icofont-monkey-2:before{content:"\e86c"}.icofont-monkey-3:before{content:"\e86d"}.icofont-monkey-face:before{content:"\e86e"}.icofont-monkey:before{content:"\e86f"}.icofont-octopus-alt:before{content:"\e870"}.icofont-octopus:before{content:"\e871"}.icofont-owl:before{content:"\e872"}.icofont-panda-face:before{content:"\e873"}.icofont-panda:before{content:"\e874"}.icofont-panther:before{content:"\e875"}.icofont-parrot-lip:before{content:"\e876"}.icofont-parrot:before{content:"\e877"}.icofont-paw:before{content:"\e878"}.icofont-pelican:before{content:"\e879"}.icofont-penguin:before{content:"\e87a"}.icofont-pig-face:before{content:"\e87b"}.icofont-pig:before{content:"\e87c"}.icofont-pigeon-1:before{content:"\e87d"}.icofont-pigeon-2:before{content:"\e87e"}.icofont-pigeon:before{content:"\e87f"}.icofont-rabbit:before{content:"\e880"}.icofont-rat:before{content:"\e881"}.icofont-rhino-head:before{content:"\e882"}.icofont-rhino:before{content:"\e883"}.icofont-rooster:before{content:"\e884"}.icofont-seahorse:before{content:"\e885"}.icofont-seal:before{content:"\e886"}.icofont-shrimp-alt:before{content:"\e887"}.icofont-shrimp:before{content:"\e888"}.icofont-snail-1:before{content:"\e889"}.icofont-snail-2:before{content:"\e88a"}.icofont-snail-3:before{content:"\e88b"}.icofont-snail:before{content:"\e88c"}.icofont-snake:before{content:"\e88d"}.icofont-squid:before{content:"\e88e"}.icofont-squirrel:before{content:"\e88f"}.icofont-tiger-face:before{content:"\e890"}.icofont-tiger:before{content:"\e891"}.icofont-turtle:before{content:"\e892"}.icofont-whale:before{content:"\e893"}.icofont-woodpecker:before{content:"\e894"}.icofont-zebra:before{content:"\e895"}.icofont-brand-acer:before{content:"\e896"}.icofont-brand-adidas:before{content:"\e897"}.icofont-brand-adobe:before{content:"\e898"}.icofont-brand-air-new-zealand:before{content:"\e899"}.icofont-brand-airbnb:before{content:"\e89a"}.icofont-brand-aircell:before{content:"\e89b"}.icofont-brand-airtel:before{content:"\e89c"}.icofont-brand-alcatel:before{content:"\e89d"}.icofont-brand-alibaba:before{content:"\e89e"}.icofont-brand-aliexpress:before{content:"\e89f"}.icofont-brand-alipay:before{content:"\e8a0"}.icofont-brand-amazon:before{content:"\e8a1"}.icofont-brand-amd:before{content:"\e8a2"}.icofont-brand-american-airlines:before{content:"\e8a3"}.icofont-brand-android-robot:before{content:"\e8a4"}.icofont-brand-android:before{content:"\e8a5"}.icofont-brand-aol:before{content:"\e8a6"}.icofont-brand-apple:before{content:"\e8a7"}.icofont-brand-appstore:before{content:"\e8a8"}.icofont-brand-asus:before{content:"\e8a9"}.icofont-brand-ati:before{content:"\e8aa"}.icofont-brand-att:before{content:"\e8ab"}.icofont-brand-audi:before{content:"\e8ac"}.icofont-brand-axiata:before{content:"\e8ad"}.icofont-brand-bada:before{content:"\e8ae"}.icofont-brand-bbc:before{content:"\e8af"}.icofont-brand-bing:before{content:"\e8b0"}.icofont-brand-blackberry:before{content:"\e8b1"}.icofont-brand-bmw:before{content:"\e8b2"}.icofont-brand-box:before{content:"\e8b3"}.icofont-brand-burger-king:before{content:"\e8b4"}.icofont-brand-business-insider:before{content:"\e8b5"}.icofont-brand-buzzfeed:before{content:"\e8b6"}.icofont-brand-cannon:before{content:"\e8b7"}.icofont-brand-casio:before{content:"\e8b8"}.icofont-brand-china-mobile:before{content:"\e8b9"}.icofont-brand-china-telecom:before{content:"\e8ba"}.icofont-brand-china-unicom:before{content:"\e8bb"}.icofont-brand-cisco:before{content:"\e8bc"}.icofont-brand-citibank:before{content:"\e8bd"}.icofont-brand-cnet:before{content:"\e8be"}.icofont-brand-cnn:before{content:"\e8bf"}.icofont-brand-cocal-cola:before{content:"\e8c0"}.icofont-brand-compaq:before{content:"\e8c1"}.icofont-brand-debian:before{content:"\e8c2"}.icofont-brand-delicious:before{content:"\e8c3"}.icofont-brand-dell:before{content:"\e8c4"}.icofont-brand-designbump:before{content:"\e8c5"}.icofont-brand-designfloat:before{content:"\e8c6"}.icofont-brand-disney:before{content:"\e8c7"}.icofont-brand-dodge:before{content:"\e8c8"}.icofont-brand-dove:before{content:"\e8c9"}.icofont-brand-drupal:before{content:"\e8ca"}.icofont-brand-ebay:before{content:"\e8cb"}.icofont-brand-eleven:before{content:"\e8cc"}.icofont-brand-emirates:before{content:"\e8cd"}.icofont-brand-espn:before{content:"\e8ce"}.icofont-brand-etihad-airways:before{content:"\e8cf"}.icofont-brand-etisalat:before{content:"\e8d0"}.icofont-brand-etsy:before{content:"\e8d1"}.icofont-brand-fastrack:before{content:"\e8d2"}.icofont-brand-fedex:before{content:"\e8d3"}.icofont-brand-ferrari:before{content:"\e8d4"}.icofont-brand-fitbit:before{content:"\e8d5"}.icofont-brand-flikr:before{content:"\e8d6"}.icofont-brand-forbes:before{content:"\e8d7"}.icofont-brand-foursquare:before{content:"\e8d8"}.icofont-brand-foxconn:before{content:"\e8d9"}.icofont-brand-fujitsu:before{content:"\e8da"}.icofont-brand-general-electric:before{content:"\e8db"}.icofont-brand-gillette:before{content:"\e8dc"}.icofont-brand-gizmodo:before{content:"\e8dd"}.icofont-brand-gnome:before{content:"\e8de"}.icofont-brand-google:before{content:"\e8df"}.icofont-brand-gopro:before{content:"\e8e0"}.icofont-brand-gucci:before{content:"\e8e1"}.icofont-brand-hallmark:before{content:"\e8e2"}.icofont-brand-hi5:before{content:"\e8e3"}.icofont-brand-honda:before{content:"\e8e4"}.icofont-brand-hp:before{content:"\e8e5"}.icofont-brand-hsbc:before{content:"\e8e6"}.icofont-brand-htc:before{content:"\e8e7"}.icofont-brand-huawei:before{content:"\e8e8"}.icofont-brand-hulu:before{content:"\e8e9"}.icofont-brand-hyundai:before{content:"\e8ea"}.icofont-brand-ibm:before{content:"\e8eb"}.icofont-brand-icofont:before{content:"\e8ec"}.icofont-brand-icq:before{content:"\e8ed"}.icofont-brand-ikea:before{content:"\e8ee"}.icofont-brand-imdb:before{content:"\e8ef"}.icofont-brand-indiegogo:before{content:"\e8f0"}.icofont-brand-intel:before{content:"\e8f1"}.icofont-brand-ipair:before{content:"\e8f2"}.icofont-brand-jaguar:before{content:"\e8f3"}.icofont-brand-java:before{content:"\e8f4"}.icofont-brand-joomla:before{content:"\e8f5"}.icofont-brand-kickstarter:before{content:"\e8f6"}.icofont-brand-kik:before{content:"\e8f7"}.icofont-brand-lastfm:before{content:"\e8f8"}.icofont-brand-lego:before{content:"\e8f9"}.icofont-brand-lenovo:before{content:"\e8fa"}.icofont-brand-levis:before{content:"\e8fb"}.icofont-brand-lexus:before{content:"\e8fc"}.icofont-brand-lg:before{content:"\e8fd"}.icofont-brand-life-hacker:before{content:"\e8fe"}.icofont-brand-linux-mint:before{content:"\e8ff"}.icofont-brand-linux:before{content:"\e900"}.icofont-brand-lionix:before{content:"\e901"}.icofont-brand-loreal:before{content:"\e902"}.icofont-brand-louis-vuitton:before{content:"\e903"}.icofont-brand-mac-os:before{content:"\e904"}.icofont-brand-marvel-app:before{content:"\e905"}.icofont-brand-mashable:before{content:"\e906"}.icofont-brand-mazda:before{content:"\e907"}.icofont-brand-mcdonals:before{content:"\e908"}.icofont-brand-mercedes:before{content:"\e909"}.icofont-brand-micromax:before{content:"\e90a"}.icofont-brand-microsoft:before{content:"\e90b"}.icofont-brand-mobileme:before{content:"\e90c"}.icofont-brand-mobily:before{content:"\e90d"}.icofont-brand-motorola:before{content:"\e90e"}.icofont-brand-msi:before{content:"\e90f"}.icofont-brand-mts:before{content:"\e910"}.icofont-brand-myspace:before{content:"\e911"}.icofont-brand-mytv:before{content:"\e912"}.icofont-brand-nasa:before{content:"\e913"}.icofont-brand-natgeo:before{content:"\e914"}.icofont-brand-nbc:before{content:"\e915"}.icofont-brand-nescafe:before{content:"\e916"}.icofont-brand-nestle:before{content:"\e917"}.icofont-brand-netflix:before{content:"\e918"}.icofont-brand-nexus:before{content:"\e919"}.icofont-brand-nike:before{content:"\e91a"}.icofont-brand-nokia:before{content:"\e91b"}.icofont-brand-nvidia:before{content:"\e91c"}.icofont-brand-omega:before{content:"\e91d"}.icofont-brand-opensuse:before{content:"\e91e"}.icofont-brand-oracle:before{content:"\e91f"}.icofont-brand-panasonic:before{content:"\e920"}.icofont-brand-paypal:before{content:"\e921"}.icofont-brand-pepsi:before{content:"\e922"}.icofont-brand-philips:before{content:"\e923"}.icofont-brand-pizza-hut:before{content:"\e924"}.icofont-brand-playstation:before{content:"\e925"}.icofont-brand-puma:before{content:"\e926"}.icofont-brand-qatar-air:before{content:"\e927"}.icofont-brand-qvc:before{content:"\e928"}.icofont-brand-readernaut:before{content:"\e929"}.icofont-brand-redbull:before{content:"\e92a"}.icofont-brand-reebok:before{content:"\e92b"}.icofont-brand-reuters:before{content:"\e92c"}.icofont-brand-samsung:before{content:"\e92d"}.icofont-brand-sap:before{content:"\e92e"}.icofont-brand-saudia-airlines:before{content:"\e92f"}.icofont-brand-scribd:before{content:"\e930"}.icofont-brand-shell:before{content:"\e931"}.icofont-brand-siemens:before{content:"\e932"}.icofont-brand-sk-telecom:before{content:"\e933"}.icofont-brand-slideshare:before{content:"\e934"}.icofont-brand-smashing-magazine:before{content:"\e935"}.icofont-brand-snapchat:before{content:"\e936"}.icofont-brand-sony-ericsson:before{content:"\e937"}.icofont-brand-sony:before{content:"\e938"}.icofont-brand-soundcloud:before{content:"\e939"}.icofont-brand-sprint:before{content:"\e93a"}.icofont-brand-squidoo:before{content:"\e93b"}.icofont-brand-starbucks:before{content:"\e93c"}.icofont-brand-stc:before{content:"\e93d"}.icofont-brand-steam:before{content:"\e93e"}.icofont-brand-suzuki:before{content:"\e93f"}.icofont-brand-symbian:before{content:"\e940"}.icofont-brand-t-mobile:before{content:"\e941"}.icofont-brand-tango:before{content:"\e942"}.icofont-brand-target:before{content:"\e943"}.icofont-brand-tata-indicom:before{content:"\e944"}.icofont-brand-techcrunch:before{content:"\e945"}.icofont-brand-telenor:before{content:"\e946"}.icofont-brand-teliasonera:before{content:"\e947"}.icofont-brand-tesla:before{content:"\e948"}.icofont-brand-the-verge:before{content:"\e949"}.icofont-brand-thenextweb:before{content:"\e94a"}.icofont-brand-toshiba:before{content:"\e94b"}.icofont-brand-toyota:before{content:"\e94c"}.icofont-brand-tribenet:before{content:"\e94d"}.icofont-brand-ubuntu:before{content:"\e94e"}.icofont-brand-unilever:before{content:"\e94f"}.icofont-brand-vaio:before{content:"\e950"}.icofont-brand-verizon:before{content:"\e951"}.icofont-brand-viber:before{content:"\e952"}.icofont-brand-vodafone:before{content:"\e953"}.icofont-brand-volkswagen:before{content:"\e954"}.icofont-brand-walmart:before{content:"\e955"}.icofont-brand-warnerbros:before{content:"\e956"}.icofont-brand-whatsapp:before{content:"\e957"}.icofont-brand-wikipedia:before{content:"\e958"}.icofont-brand-windows:before{content:"\e959"}.icofont-brand-wire:before{content:"\e95a"}.icofont-brand-wordpress:before{content:"\e95b"}.icofont-brand-xiaomi:before{content:"\e95c"}.icofont-brand-yahoobuzz:before{content:"\e95d"}.icofont-brand-yamaha:before{content:"\e95e"}.icofont-brand-youtube:before{content:"\e95f"}.icofont-brand-zain:before{content:"\e960"}.icofont-bank-alt:before{content:"\e961"}.icofont-bank:before{content:"\e962"}.icofont-barcode:before{content:"\e963"}.icofont-bill-alt:before{content:"\e964"}.icofont-billboard:before{content:"\e965"}.icofont-briefcase-1:before{content:"\e966"}.icofont-briefcase-2:before{content:"\e967"}.icofont-businessman:before{content:"\e968"}.icofont-businesswoman:before{content:"\e969"}.icofont-chair:before{content:"\e96a"}.icofont-coins:before{content:"\e96b"}.icofont-company:before{content:"\e96c"}.icofont-contact-add:before{content:"\e96d"}.icofont-files-stack:before{content:"\e96e"}.icofont-handshake-deal:before{content:"\e96f"}.icofont-id-card:before{content:"\e970"}.icofont-meeting-add:before{content:"\e971"}.icofont-money-bag:before{content:"\e972"}.icofont-pie-chart:before{content:"\e973"}.icofont-presentation-alt:before{content:"\e974"}.icofont-presentation:before{content:"\e975"}.icofont-stamp:before{content:"\e976"}.icofont-stock-mobile:before{content:"\e977"}.icofont-chart-arrows-axis:before{content:"\e978"}.icofont-chart-bar-graph:before{content:"\e979"}.icofont-chart-flow-1:before{content:"\e97a"}.icofont-chart-flow-2:before{content:"\e97b"}.icofont-chart-flow:before{content:"\e97c"}.icofont-chart-growth:before{content:"\e97d"}.icofont-chart-histogram-alt:before{content:"\e97e"}.icofont-chart-histogram:before{content:"\e97f"}.icofont-chart-line-alt:before{content:"\e980"}.icofont-chart-line:before{content:"\e981"}.icofont-chart-pie-alt:before{content:"\e982"}.icofont-chart-pie:before{content:"\e983"}.icofont-chart-radar-graph:before{content:"\e984"}.icofont-architecture-alt:before{content:"\e985"}.icofont-architecture:before{content:"\e986"}.icofont-barricade:before{content:"\e987"}.icofont-bolt:before{content:"\e988"}.icofont-bricks:before{content:"\e989"}.icofont-building-alt:before{content:"\e98a"}.icofont-bull-dozer:before{content:"\e98b"}.icofont-calculations:before{content:"\e98c"}.icofont-cement-mix:before{content:"\e98d"}.icofont-cement-mixer:before{content:"\e98e"}.icofont-concrete-mixer:before{content:"\e98f"}.icofont-danger-zone:before{content:"\e990"}.icofont-drill:before{content:"\e991"}.icofont-eco-energy:before{content:"\e992"}.icofont-eco-environmen:before{content:"\e993"}.icofont-energy-air:before{content:"\e994"}.icofont-energy-oil:before{content:"\e995"}.icofont-energy-savings:before{content:"\e996"}.icofont-energy-solar:before{content:"\e997"}.icofont-energy-water:before{content:"\e998"}.icofont-engineer:before{content:"\e999"}.icofont-fire-extinguisher-alt:before{content:"\e99a"}.icofont-fire-extinguisher:before{content:"\e99b"}.icofont-fix-tools:before{content:"\e99c"}.icofont-fork-lift:before{content:"\e99d"}.icofont-glue-oil:before{content:"\e99e"}.icofont-hammer-alt:before{content:"\e99f"}.icofont-hammer:before{content:"\e9a0"}.icofont-help-robot:before{content:"\e9a1"}.icofont-industries-1:before{content:"\e9a2"}.icofont-industries-2:before{content:"\e9a3"}.icofont-industries-3:before{content:"\e9a4"}.icofont-industries-4:before{content:"\e9a5"}.icofont-industries-5:before{content:"\e9a6"}.icofont-industries:before{content:"\e9a7"}.icofont-labour:before{content:"\e9a8"}.icofont-mining:before{content:"\e9a9"}.icofont-paint-brush:before{content:"\e9aa"}.icofont-pollution:before{content:"\e9ab"}.icofont-power-zone:before{content:"\e9ac"}.icofont-radio-active:before{content:"\e9ad"}.icofont-recycle-alt:before{content:"\e9ae"}.icofont-recycling-man:before{content:"\e9af"}.icofont-safety-hat-light:before{content:"\e9b0"}.icofont-safety-hat:before{content:"\e9b1"}.icofont-saw:before{content:"\e9b2"}.icofont-screw-driver:before{content:"\e9b3"}.icofont-tools-1:before{content:"\e9b4"}.icofont-tools-bag:before{content:"\e9b5"}.icofont-tow-truck:before{content:"\e9b6"}.icofont-trolley:before{content:"\e9b7"}.icofont-trowel:before{content:"\e9b8"}.icofont-under-construction-alt:before{content:"\e9b9"}.icofont-under-construction:before{content:"\e9ba"}.icofont-vehicle-cement:before{content:"\e9bb"}.icofont-vehicle-crane:before{content:"\e9bc"}.icofont-vehicle-delivery-van:before{content:"\e9bd"}.icofont-vehicle-dozer:before{content:"\e9be"}.icofont-vehicle-excavator:before{content:"\e9bf"}.icofont-vehicle-trucktor:before{content:"\e9c0"}.icofont-vehicle-wrecking:before{content:"\e9c1"}.icofont-worker:before{content:"\e9c2"}.icofont-workers-group:before{content:"\e9c3"}.icofont-wrench:before{content:"\e9c4"}.icofont-afghani-false:before{content:"\e9c5"}.icofont-afghani-minus:before{content:"\e9c6"}.icofont-afghani-plus:before{content:"\e9c7"}.icofont-afghani-true:before{content:"\e9c8"}.icofont-afghani:before{content:"\e9c9"}.icofont-baht-false:before{content:"\e9ca"}.icofont-baht-minus:before{content:"\e9cb"}.icofont-baht-plus:before{content:"\e9cc"}.icofont-baht-true:before{content:"\e9cd"}.icofont-baht:before{content:"\e9ce"}.icofont-bitcoin-false:before{content:"\e9cf"}.icofont-bitcoin-minus:before{content:"\e9d0"}.icofont-bitcoin-plus:before{content:"\e9d1"}.icofont-bitcoin-true:before{content:"\e9d2"}.icofont-bitcoin:before{content:"\e9d3"}.icofont-dollar-flase:before{content:"\e9d4"}.icofont-dollar-minus:before{content:"\e9d5"}.icofont-dollar-plus:before{content:"\e9d6"}.icofont-dollar-true:before{content:"\e9d7"}.icofont-dollar:before{content:"\e9d8"}.icofont-dong-false:before{content:"\e9d9"}.icofont-dong-minus:before{content:"\e9da"}.icofont-dong-plus:before{content:"\e9db"}.icofont-dong-true:before{content:"\e9dc"}.icofont-dong:before{content:"\e9dd"}.icofont-euro-false:before{content:"\e9de"}.icofont-euro-minus:before{content:"\e9df"}.icofont-euro-plus:before{content:"\e9e0"}.icofont-euro-true:before{content:"\e9e1"}.icofont-euro:before{content:"\e9e2"}.icofont-frank-false:before{content:"\e9e3"}.icofont-frank-minus:before{content:"\e9e4"}.icofont-frank-plus:before{content:"\e9e5"}.icofont-frank-true:before{content:"\e9e6"}.icofont-frank:before{content:"\e9e7"}.icofont-hryvnia-false:before{content:"\e9e8"}.icofont-hryvnia-minus:before{content:"\e9e9"}.icofont-hryvnia-plus:before{content:"\e9ea"}.icofont-hryvnia-true:before{content:"\e9eb"}.icofont-hryvnia:before{content:"\e9ec"}.icofont-lira-false:before{content:"\e9ed"}.icofont-lira-minus:before{content:"\e9ee"}.icofont-lira-plus:before{content:"\e9ef"}.icofont-lira-true:before{content:"\e9f0"}.icofont-lira:before{content:"\e9f1"}.icofont-peseta-false:before{content:"\e9f2"}.icofont-peseta-minus:before{content:"\e9f3"}.icofont-peseta-plus:before{content:"\e9f4"}.icofont-peseta-true:before{content:"\e9f5"}.icofont-peseta:before{content:"\e9f6"}.icofont-peso-false:before{content:"\e9f7"}.icofont-peso-minus:before{content:"\e9f8"}.icofont-peso-plus:before{content:"\e9f9"}.icofont-peso-true:before{content:"\e9fa"}.icofont-peso:before{content:"\e9fb"}.icofont-pound-false:before{content:"\e9fc"}.icofont-pound-minus:before{content:"\e9fd"}.icofont-pound-plus:before{content:"\e9fe"}.icofont-pound-true:before{content:"\e9ff"}.icofont-pound:before{content:"\ea00"}.icofont-renminbi-false:before{content:"\ea01"}.icofont-renminbi-minus:before{content:"\ea02"}.icofont-renminbi-plus:before{content:"\ea03"}.icofont-renminbi-true:before{content:"\ea04"}.icofont-renminbi:before{content:"\ea05"}.icofont-riyal-false:before{content:"\ea06"}.icofont-riyal-minus:before{content:"\ea07"}.icofont-riyal-plus:before{content:"\ea08"}.icofont-riyal-true:before{content:"\ea09"}.icofont-riyal:before{content:"\ea0a"}.icofont-rouble-false:before{content:"\ea0b"}.icofont-rouble-minus:before{content:"\ea0c"}.icofont-rouble-plus:before{content:"\ea0d"}.icofont-rouble-true:before{content:"\ea0e"}.icofont-rouble:before{content:"\ea0f"}.icofont-rupee-false:before{content:"\ea10"}.icofont-rupee-minus:before{content:"\ea11"}.icofont-rupee-plus:before{content:"\ea12"}.icofont-rupee-true:before{content:"\ea13"}.icofont-rupee:before{content:"\ea14"}.icofont-taka-false:before{content:"\ea15"}.icofont-taka-minus:before{content:"\ea16"}.icofont-taka-plus:before{content:"\ea17"}.icofont-taka-true:before{content:"\ea18"}.icofont-taka:before{content:"\ea19"}.icofont-turkish-lira-false:before{content:"\ea1a"}.icofont-turkish-lira-minus:before{content:"\ea1b"}.icofont-turkish-lira-plus:before{content:"\ea1c"}.icofont-turkish-lira-true:before{content:"\ea1d"}.icofont-turkish-lira:before{content:"\ea1e"}.icofont-won-false:before{content:"\ea1f"}.icofont-won-minus:before{content:"\ea20"}.icofont-won-plus:before{content:"\ea21"}.icofont-won-true:before{content:"\ea22"}.icofont-won:before{content:"\ea23"}.icofont-yen-false:before{content:"\ea24"}.icofont-yen-minus:before{content:"\ea25"}.icofont-yen-plus:before{content:"\ea26"}.icofont-yen-true:before{content:"\ea27"}.icofont-yen:before{content:"\ea28"}.icofont-android-nexus:before{content:"\ea29"}.icofont-android-tablet:before{content:"\ea2a"}.icofont-apple-watch:before{content:"\ea2b"}.icofont-drawing-tablet:before{content:"\ea2c"}.icofont-earphone:before{content:"\ea2d"}.icofont-flash-drive:before{content:"\ea2e"}.icofont-game-console:before{content:"\ea2f"}.icofont-game-controller:before{content:"\ea30"}.icofont-game-pad:before{content:"\ea31"}.icofont-game:before{content:"\ea32"}.icofont-headphone-alt-1:before{content:"\ea33"}.icofont-headphone-alt-2:before{content:"\ea34"}.icofont-headphone-alt-3:before{content:"\ea35"}.icofont-headphone-alt:before{content:"\ea36"}.icofont-headphone:before{content:"\ea37"}.icofont-htc-one:before{content:"\ea38"}.icofont-imac:before{content:"\ea39"}.icofont-ipad:before{content:"\ea3a"}.icofont-iphone:before{content:"\ea3b"}.icofont-ipod-nano:before{content:"\ea3c"}.icofont-ipod-touch:before{content:"\ea3d"}.icofont-keyboard-alt:before{content:"\ea3e"}.icofont-keyboard-wireless:before{content:"\ea3f"}.icofont-keyboard:before{content:"\ea40"}.icofont-laptop-alt:before{content:"\ea41"}.icofont-laptop:before{content:"\ea42"}.icofont-macbook:before{content:"\ea43"}.icofont-magic-mouse:before{content:"\ea44"}.icofont-micro-chip:before{content:"\ea45"}.icofont-microphone-alt:before{content:"\ea46"}.icofont-microphone:before{content:"\ea47"}.icofont-monitor:before{content:"\ea48"}.icofont-mouse:before{content:"\ea49"}.icofont-mp3-player:before{content:"\ea4a"}.icofont-nintendo:before{content:"\ea4b"}.icofont-playstation-alt:before{content:"\ea4c"}.icofont-psvita:before{content:"\ea4d"}.icofont-radio-mic:before{content:"\ea4e"}.icofont-radio:before{content:"\ea4f"}.icofont-refrigerator:before{content:"\ea50"}.icofont-samsung-galaxy:before{content:"\ea51"}.icofont-surface-tablet:before{content:"\ea52"}.icofont-ui-head-phone:before{content:"\ea53"}.icofont-ui-keyboard:before{content:"\ea54"}.icofont-washing-machine:before{content:"\ea55"}.icofont-wifi-router:before{content:"\ea56"}.icofont-wii-u:before{content:"\ea57"}.icofont-windows-lumia:before{content:"\ea58"}.icofont-wireless-mouse:before{content:"\ea59"}.icofont-xbox-360:before{content:"\ea5a"}.icofont-arrow-down:before{content:"\ea5b"}.icofont-arrow-left:before{content:"\ea5c"}.icofont-arrow-right:before{content:"\ea5d"}.icofont-arrow-up:before{content:"\ea5e"}.icofont-block-down:before{content:"\ea5f"}.icofont-block-left:before{content:"\ea60"}.icofont-block-right:before{content:"\ea61"}.icofont-block-up:before{content:"\ea62"}.icofont-bubble-down:before{content:"\ea63"}.icofont-bubble-left:before{content:"\ea64"}.icofont-bubble-right:before{content:"\ea65"}.icofont-bubble-up:before{content:"\ea66"}.icofont-caret-down:before{content:"\ea67"}.icofont-caret-left:before{content:"\ea68"}.icofont-caret-right:before{content:"\ea69"}.icofont-caret-up:before{content:"\ea6a"}.icofont-circled-down:before{content:"\ea6b"}.icofont-circled-left:before{content:"\ea6c"}.icofont-circled-right:before{content:"\ea6d"}.icofont-circled-up:before{content:"\ea6e"}.icofont-collapse:before{content:"\ea6f"}.icofont-cursor-drag:before{content:"\ea70"}.icofont-curved-double-left:before{content:"\ea71"}.icofont-curved-double-right:before{content:"\ea72"}.icofont-curved-down:before{content:"\ea73"}.icofont-curved-left:before{content:"\ea74"}.icofont-curved-right:before{content:"\ea75"}.icofont-curved-up:before{content:"\ea76"}.icofont-dotted-down:before{content:"\ea77"}.icofont-dotted-left:before{content:"\ea78"}.icofont-dotted-right:before{content:"\ea79"}.icofont-dotted-up:before{content:"\ea7a"}.icofont-double-left:before{content:"\ea7b"}.icofont-double-right:before{content:"\ea7c"}.icofont-expand-alt:before{content:"\ea7d"}.icofont-hand-down:before{content:"\ea7e"}.icofont-hand-drag:before{content:"\ea7f"}.icofont-hand-drag1:before{content:"\ea80"}.icofont-hand-drag2:before{content:"\ea81"}.icofont-hand-drawn-alt-down:before{content:"\ea82"}.icofont-hand-drawn-alt-left:before{content:"\ea83"}.icofont-hand-drawn-alt-right:before{content:"\ea84"}.icofont-hand-drawn-alt-up:before{content:"\ea85"}.icofont-hand-drawn-down:before{content:"\ea86"}.icofont-hand-drawn-left:before{content:"\ea87"}.icofont-hand-drawn-right:before{content:"\ea88"}.icofont-hand-drawn-up:before{content:"\ea89"}.icofont-hand-grippers:before{content:"\ea8a"}.icofont-hand-left:before{content:"\ea8b"}.icofont-hand-right:before{content:"\ea8c"}.icofont-hand-up:before{content:"\ea8d"}.icofont-line-block-down:before{content:"\ea8e"}.icofont-line-block-left:before{content:"\ea8f"}.icofont-line-block-right:before{content:"\ea90"}.icofont-line-block-up:before{content:"\ea91"}.icofont-long-arrow-down:before{content:"\ea92"}.icofont-long-arrow-left:before{content:"\ea93"}.icofont-long-arrow-right:before{content:"\ea94"}.icofont-long-arrow-up:before{content:"\ea95"}.icofont-rounded-collapse:before{content:"\ea96"}.icofont-rounded-double-left:before{content:"\ea97"}.icofont-rounded-double-right:before{content:"\ea98"}.icofont-rounded-down:before{content:"\ea99"}.icofont-rounded-expand:before{content:"\ea9a"}.icofont-rounded-left-down:before{content:"\ea9b"}.icofont-rounded-left-up:before{content:"\ea9c"}.icofont-rounded-left:before{content:"\ea9d"}.icofont-rounded-right-down:before{content:"\ea9e"}.icofont-rounded-right-up:before{content:"\ea9f"}.icofont-rounded-right:before{content:"\eaa0"}.icofont-rounded-up:before{content:"\eaa1"}.icofont-scroll-bubble-down:before{content:"\eaa2"}.icofont-scroll-bubble-left:before{content:"\eaa3"}.icofont-scroll-bubble-right:before{content:"\eaa4"}.icofont-scroll-bubble-up:before{content:"\eaa5"}.icofont-scroll-double-down:before{content:"\eaa6"}.icofont-scroll-double-left:before{content:"\eaa7"}.icofont-scroll-double-right:before{content:"\eaa8"}.icofont-scroll-double-up:before{content:"\eaa9"}.icofont-scroll-down:before{content:"\eaaa"}.icofont-scroll-left:before{content:"\eaab"}.icofont-scroll-long-down:before{content:"\eaac"}.icofont-scroll-long-left:before{content:"\eaad"}.icofont-scroll-long-right:before{content:"\eaae"}.icofont-scroll-long-up:before{content:"\eaaf"}.icofont-scroll-right:before{content:"\eab0"}.icofont-scroll-up:before{content:"\eab1"}.icofont-simple-down:before{content:"\eab2"}.icofont-simple-left-down:before{content:"\eab3"}.icofont-simple-left-up:before{content:"\eab4"}.icofont-simple-left:before{content:"\eab5"}.icofont-simple-right-down:before{content:"\eab6"}.icofont-simple-right-up:before{content:"\eab7"}.icofont-simple-right:before{content:"\eab8"}.icofont-simple-up:before{content:"\eab9"}.icofont-square-down:before{content:"\eaba"}.icofont-square-left:before{content:"\eabb"}.icofont-square-right:before{content:"\eabc"}.icofont-square-up:before{content:"\eabd"}.icofont-stylish-down:before{content:"\eabe"}.icofont-stylish-left:before{content:"\eabf"}.icofont-stylish-right:before{content:"\eac0"}.icofont-stylish-up:before{content:"\eac1"}.icofont-swoosh-down:before{content:"\eac2"}.icofont-swoosh-left:before{content:"\eac3"}.icofont-swoosh-right:before{content:"\eac4"}.icofont-swoosh-up:before{content:"\eac5"}.icofont-thin-double-left:before{content:"\eac6"}.icofont-thin-double-right:before{content:"\eac7"}.icofont-thin-down:before{content:"\eac8"}.icofont-thin-left:before{content:"\eac9"}.icofont-thin-right:before{content:"\eaca"}.icofont-thin-up:before{content:"\eacb"}.icofont-abc:before{content:"\eacc"}.icofont-atom:before{content:"\eacd"}.icofont-award:before{content:"\eace"}.icofont-bell-alt:before{content:"\eacf"}.icofont-black-board:before{content:"\ead0"}.icofont-book-alt:before{content:"\ead1"}.icofont-book:before{content:"\ead2"}.icofont-brainstorming:before{content:"\ead3"}.icofont-certificate-alt-1:before{content:"\ead4"}.icofont-certificate-alt-2:before{content:"\ead5"}.icofont-certificate:before{content:"\ead6"}.icofont-education:before{content:"\ead7"}.icofont-electron:before{content:"\ead8"}.icofont-fountain-pen:before{content:"\ead9"}.icofont-globe-alt:before{content:"\eada"}.icofont-graduate-alt:before{content:"\eadb"}.icofont-graduate:before{content:"\eadc"}.icofont-group-students:before{content:"\eadd"}.icofont-hat-alt:before{content:"\eade"}.icofont-hat:before{content:"\eadf"}.icofont-instrument:before{content:"\eae0"}.icofont-lamp-light:before{content:"\eae1"}.icofont-medal:before{content:"\eae2"}.icofont-microscope-alt:before{content:"\eae3"}.icofont-microscope:before{content:"\eae4"}.icofont-paper:before{content:"\eae5"}.icofont-pen-alt-4:before{content:"\eae6"}.icofont-pen-nib:before{content:"\eae7"}.icofont-pencil-alt-5:before{content:"\eae8"}.icofont-quill-pen:before{content:"\eae9"}.icofont-read-book-alt:before{content:"\eaea"}.icofont-read-book:before{content:"\eaeb"}.icofont-school-bag:before{content:"\eaec"}.icofont-school-bus:before{content:"\eaed"}.icofont-student-alt:before{content:"\eaee"}.icofont-student:before{content:"\eaef"}.icofont-teacher:before{content:"\eaf0"}.icofont-test-bulb:before{content:"\eaf1"}.icofont-test-tube-alt:before{content:"\eaf2"}.icofont-university:before{content:"\eaf3"}.icofont-angry:before{content:"\eaf4"}.icofont-astonished:before{content:"\eaf5"}.icofont-confounded:before{content:"\eaf6"}.icofont-confused:before{content:"\eaf7"}.icofont-crying:before{content:"\eaf8"}.icofont-dizzy:before{content:"\eaf9"}.icofont-expressionless:before{content:"\eafa"}.icofont-heart-eyes:before{content:"\eafb"}.icofont-laughing:before{content:"\eafc"}.icofont-nerd-smile:before{content:"\eafd"}.icofont-open-mouth:before{content:"\eafe"}.icofont-rage:before{content:"\eaff"}.icofont-rolling-eyes:before{content:"\eb00"}.icofont-sad:before{content:"\eb01"}.icofont-simple-smile:before{content:"\eb02"}.icofont-slightly-smile:before{content:"\eb03"}.icofont-smirk:before{content:"\eb04"}.icofont-stuck-out-tongue:before{content:"\eb05"}.icofont-wink-smile:before{content:"\eb06"}.icofont-worried:before{content:"\eb07"}.icofont-file-alt:before{content:"\eb08"}.icofont-file-audio:before{content:"\eb09"}.icofont-file-avi-mp4:before{content:"\eb0a"}.icofont-file-bmp:before{content:"\eb0b"}.icofont-file-code:before{content:"\eb0c"}.icofont-file-css:before{content:"\eb0d"}.icofont-file-document:before{content:"\eb0e"}.icofont-file-eps:before{content:"\eb0f"}.icofont-file-excel:before{content:"\eb10"}.icofont-file-exe:before{content:"\eb11"}.icofont-file-file:before{content:"\eb12"}.icofont-file-flv:before{content:"\eb13"}.icofont-file-gif:before{content:"\eb14"}.icofont-file-html5:before{content:"\eb15"}.icofont-file-image:before{content:"\eb16"}.icofont-file-iso:before{content:"\eb17"}.icofont-file-java:before{content:"\eb18"}.icofont-file-javascript:before{content:"\eb19"}.icofont-file-jpg:before{content:"\eb1a"}.icofont-file-midi:before{content:"\eb1b"}.icofont-file-mov:before{content:"\eb1c"}.icofont-file-mp3:before{content:"\eb1d"}.icofont-file-pdf:before{content:"\eb1e"}.icofont-file-php:before{content:"\eb1f"}.icofont-file-png:before{content:"\eb20"}.icofont-file-powerpoint:before{content:"\eb21"}.icofont-file-presentation:before{content:"\eb22"}.icofont-file-psb:before{content:"\eb23"}.icofont-file-psd:before{content:"\eb24"}.icofont-file-python:before{content:"\eb25"}.icofont-file-ruby:before{content:"\eb26"}.icofont-file-spreadsheet:before{content:"\eb27"}.icofont-file-sql:before{content:"\eb28"}.icofont-file-svg:before{content:"\eb29"}.icofont-file-text:before{content:"\eb2a"}.icofont-file-tiff:before{content:"\eb2b"}.icofont-file-video:before{content:"\eb2c"}.icofont-file-wave:before{content:"\eb2d"}.icofont-file-wmv:before{content:"\eb2e"}.icofont-file-word:before{content:"\eb2f"}.icofont-file-zip:before{content:"\eb30"}.icofont-cycling-alt:before{content:"\eb31"}.icofont-cycling:before{content:"\eb32"}.icofont-dumbbell:before{content:"\eb33"}.icofont-dumbbells:before{content:"\eb34"}.icofont-gym-alt-1:before{content:"\eb35"}.icofont-gym-alt-2:before{content:"\eb36"}.icofont-gym-alt-3:before{content:"\eb37"}.icofont-gym:before{content:"\eb38"}.icofont-muscle-weight:before{content:"\eb39"}.icofont-muscle:before{content:"\eb3a"}.icofont-apple:before{content:"\eb3b"}.icofont-arabian-coffee:before{content:"\eb3c"}.icofont-artichoke:before{content:"\eb3d"}.icofont-asparagus:before{content:"\eb3e"}.icofont-avocado:before{content:"\eb3f"}.icofont-baby-food:before{content:"\eb40"}.icofont-banana:before{content:"\eb41"}.icofont-bbq:before{content:"\eb42"}.icofont-beans:before{content:"\eb43"}.icofont-beer:before{content:"\eb44"}.icofont-bell-pepper-capsicum:before{content:"\eb45"}.icofont-birthday-cake:before{content:"\eb46"}.icofont-bread:before{content:"\eb47"}.icofont-broccoli:before{content:"\eb48"}.icofont-burger:before{content:"\eb49"}.icofont-cabbage:before{content:"\eb4a"}.icofont-carrot:before{content:"\eb4b"}.icofont-cauli-flower:before{content:"\eb4c"}.icofont-cheese:before{content:"\eb4d"}.icofont-chef:before{content:"\eb4e"}.icofont-cherry:before{content:"\eb4f"}.icofont-chicken-fry:before{content:"\eb50"}.icofont-chicken:before{content:"\eb51"}.icofont-cocktail:before{content:"\eb52"}.icofont-coconut-water:before{content:"\eb53"}.icofont-coconut:before{content:"\eb54"}.icofont-coffee-alt:before{content:"\eb55"}.icofont-coffee-cup:before{content:"\eb56"}.icofont-coffee-mug:before{content:"\eb57"}.icofont-coffee-pot:before{content:"\eb58"}.icofont-cola:before{content:"\eb59"}.icofont-corn:before{content:"\eb5a"}.icofont-croissant:before{content:"\eb5b"}.icofont-crop-plant:before{content:"\eb5c"}.icofont-cucumber:before{content:"\eb5d"}.icofont-culinary:before{content:"\eb5e"}.icofont-cup-cake:before{content:"\eb5f"}.icofont-dining-table:before{content:"\eb60"}.icofont-donut:before{content:"\eb61"}.icofont-egg-plant:before{content:"\eb62"}.icofont-egg-poached:before{content:"\eb63"}.icofont-farmer-alt:before{content:"\eb64"}.icofont-farmer:before{content:"\eb65"}.icofont-fast-food:before{content:"\eb66"}.icofont-food-basket:before{content:"\eb67"}.icofont-food-cart:before{content:"\eb68"}.icofont-fork-and-knife:before{content:"\eb69"}.icofont-french-fries:before{content:"\eb6a"}.icofont-fruits:before{content:"\eb6b"}.icofont-grapes:before{content:"\eb6c"}.icofont-honey:before{content:"\eb6d"}.icofont-hot-dog:before{content:"\eb6e"}.icofont-ice-cream-alt:before{content:"\eb6f"}.icofont-ice-cream:before{content:"\eb70"}.icofont-juice:before{content:"\eb71"}.icofont-ketchup:before{content:"\eb72"}.icofont-kiwi:before{content:"\eb73"}.icofont-layered-cake:before{content:"\eb74"}.icofont-lemon-alt:before{content:"\eb75"}.icofont-lemon:before{content:"\eb76"}.icofont-lobster:before{content:"\eb77"}.icofont-mango:before{content:"\eb78"}.icofont-milk:before{content:"\eb79"}.icofont-mushroom:before{content:"\eb7a"}.icofont-noodles:before{content:"\eb7b"}.icofont-onion:before{content:"\eb7c"}.icofont-orange:before{content:"\eb7d"}.icofont-pear:before{content:"\eb7e"}.icofont-peas:before{content:"\eb7f"}.icofont-pepper:before{content:"\eb80"}.icofont-pie-alt:before{content:"\eb81"}.icofont-pie:before{content:"\eb82"}.icofont-pineapple:before{content:"\eb83"}.icofont-pizza-slice:before{content:"\eb84"}.icofont-pizza:before{content:"\eb85"}.icofont-plant:before{content:"\eb86"}.icofont-popcorn:before{content:"\eb87"}.icofont-potato:before{content:"\eb88"}.icofont-pumpkin:before{content:"\eb89"}.icofont-raddish:before{content:"\eb8a"}.icofont-restaurant-menu:before{content:"\eb8b"}.icofont-restaurant:before{content:"\eb8c"}.icofont-salt-and-pepper:before{content:"\eb8d"}.icofont-sandwich:before{content:"\eb8e"}.icofont-sausage:before{content:"\eb8f"}.icofont-soft-drinks:before{content:"\eb90"}.icofont-soup-bowl:before{content:"\eb91"}.icofont-spoon-and-fork:before{content:"\eb92"}.icofont-steak:before{content:"\eb93"}.icofont-strawberry:before{content:"\eb94"}.icofont-sub-sandwich:before{content:"\eb95"}.icofont-sushi:before{content:"\eb96"}.icofont-taco:before{content:"\eb97"}.icofont-tea-pot:before{content:"\eb98"}.icofont-tea:before{content:"\eb99"}.icofont-tomato:before{content:"\eb9a"}.icofont-watermelon:before{content:"\eb9b"}.icofont-wheat:before{content:"\eb9c"}.icofont-baby-backpack:before{content:"\eb9d"}.icofont-baby-cloth:before{content:"\eb9e"}.icofont-baby-milk-bottle:before{content:"\eb9f"}.icofont-baby-trolley:before{content:"\eba0"}.icofont-baby:before{content:"\eba1"}.icofont-candy:before{content:"\eba2"}.icofont-holding-hands:before{content:"\eba3"}.icofont-infant-nipple:before{content:"\eba4"}.icofont-kids-scooter:before{content:"\eba5"}.icofont-safety-pin:before{content:"\eba6"}.icofont-teddy-bear:before{content:"\eba7"}.icofont-toy-ball:before{content:"\eba8"}.icofont-toy-cat:before{content:"\eba9"}.icofont-toy-duck:before{content:"\ebaa"}.icofont-toy-elephant:before{content:"\ebab"}.icofont-toy-hand:before{content:"\ebac"}.icofont-toy-horse:before{content:"\ebad"}.icofont-toy-lattu:before{content:"\ebae"}.icofont-toy-train:before{content:"\ebaf"}.icofont-burglar:before{content:"\ebb0"}.icofont-cannon-firing:before{content:"\ebb1"}.icofont-cc-camera:before{content:"\ebb2"}.icofont-cop-badge:before{content:"\ebb3"}.icofont-cop:before{content:"\ebb4"}.icofont-court-hammer:before{content:"\ebb5"}.icofont-court:before{content:"\ebb6"}.icofont-finger-print:before{content:"\ebb7"}.icofont-gavel:before{content:"\ebb8"}.icofont-handcuff-alt:before{content:"\ebb9"}.icofont-handcuff:before{content:"\ebba"}.icofont-investigation:before{content:"\ebbb"}.icofont-investigator:before{content:"\ebbc"}.icofont-jail:before{content:"\ebbd"}.icofont-judge:before{content:"\ebbe"}.icofont-law-alt-1:before{content:"\ebbf"}.icofont-law-alt-2:before{content:"\ebc0"}.icofont-law-alt-3:before{content:"\ebc1"}.icofont-law-book:before{content:"\ebc2"}.icofont-law-document:before{content:"\ebc3"}.icofont-law-order:before{content:"\ebc4"}.icofont-law-protect:before{content:"\ebc5"}.icofont-law-scales:before{content:"\ebc6"}.icofont-law:before{content:"\ebc7"}.icofont-lawyer-alt-1:before{content:"\ebc8"}.icofont-lawyer-alt-2:before{content:"\ebc9"}.icofont-lawyer:before{content:"\ebca"}.icofont-legal:before{content:"\ebcb"}.icofont-pistol:before{content:"\ebcc"}.icofont-police-badge:before{content:"\ebcd"}.icofont-police-cap:before{content:"\ebce"}.icofont-police-car-alt-1:before{content:"\ebcf"}.icofont-police-car-alt-2:before{content:"\ebd0"}.icofont-police-car:before{content:"\ebd1"}.icofont-police-hat:before{content:"\ebd2"}.icofont-police-van:before{content:"\ebd3"}.icofont-police:before{content:"\ebd4"}.icofont-thief-alt:before{content:"\ebd5"}.icofont-thief:before{content:"\ebd6"}.icofont-abacus-alt:before{content:"\ebd7"}.icofont-abacus:before{content:"\ebd8"}.icofont-angle-180:before{content:"\ebd9"}.icofont-angle-45:before{content:"\ebda"}.icofont-angle-90:before{content:"\ebdb"}.icofont-angle:before{content:"\ebdc"}.icofont-calculator-alt-1:before{content:"\ebdd"}.icofont-calculator-alt-2:before{content:"\ebde"}.icofont-calculator:before{content:"\ebdf"}.icofont-circle-ruler-alt:before{content:"\ebe0"}.icofont-circle-ruler:before{content:"\ebe1"}.icofont-compass-alt-1:before{content:"\ebe2"}.icofont-compass-alt-2:before{content:"\ebe3"}.icofont-compass-alt-3:before{content:"\ebe4"}.icofont-compass-alt-4:before{content:"\ebe5"}.icofont-golden-ratio:before{content:"\ebe6"}.icofont-marker-alt-1:before{content:"\ebe7"}.icofont-marker-alt-2:before{content:"\ebe8"}.icofont-marker-alt-3:before{content:"\ebe9"}.icofont-marker:before{content:"\ebea"}.icofont-math:before{content:"\ebeb"}.icofont-mathematical-alt-1:before{content:"\ebec"}.icofont-mathematical-alt-2:before{content:"\ebed"}.icofont-mathematical:before{content:"\ebee"}.icofont-pen-alt-1:before{content:"\ebef"}.icofont-pen-alt-2:before{content:"\ebf0"}.icofont-pen-alt-3:before{content:"\ebf1"}.icofont-pen-holder-alt-1:before{content:"\ebf2"}.icofont-pen-holder:before{content:"\ebf3"}.icofont-pen:before{content:"\ebf4"}.icofont-pencil-alt-1:before{content:"\ebf5"}.icofont-pencil-alt-2:before{content:"\ebf6"}.icofont-pencil-alt-3:before{content:"\ebf7"}.icofont-pencil-alt-4:before{content:"\ebf8"}.icofont-pencil:before{content:"\ebf9"}.icofont-ruler-alt-1:before{content:"\ebfa"}.icofont-ruler-alt-2:before{content:"\ebfb"}.icofont-ruler-compass-alt:before{content:"\ebfc"}.icofont-ruler-compass:before{content:"\ebfd"}.icofont-ruler-pencil-alt-1:before{content:"\ebfe"}.icofont-ruler-pencil-alt-2:before{content:"\ebff"}.icofont-ruler-pencil:before{content:"\ec00"}.icofont-ruler:before{content:"\ec01"}.icofont-rulers-alt:before{content:"\ec02"}.icofont-rulers:before{content:"\ec03"}.icofont-square-root:before{content:"\ec04"}.icofont-ui-calculator:before{content:"\ec05"}.icofont-aids:before{content:"\ec06"}.icofont-ambulance-crescent:before{content:"\ec07"}.icofont-ambulance-cross:before{content:"\ec08"}.icofont-ambulance:before{content:"\ec09"}.icofont-autism:before{content:"\ec0a"}.icofont-bandage:before{content:"\ec0b"}.icofont-blind:before{content:"\ec0c"}.icofont-blood-drop:before{content:"\ec0d"}.icofont-blood-test:before{content:"\ec0e"}.icofont-blood:before{content:"\ec0f"}.icofont-brain-alt:before{content:"\ec10"}.icofont-brain:before{content:"\ec11"}.icofont-capsule:before{content:"\ec12"}.icofont-crutch:before{content:"\ec13"}.icofont-disabled:before{content:"\ec14"}.icofont-dna-alt-1:before{content:"\ec15"}.icofont-dna-alt-2:before{content:"\ec16"}.icofont-dna:before{content:"\ec17"}.icofont-doctor-alt:before{content:"\ec18"}.icofont-doctor:before{content:"\ec19"}.icofont-drug-pack:before{content:"\ec1a"}.icofont-drug:before{content:"\ec1b"}.icofont-first-aid-alt:before{content:"\ec1c"}.icofont-first-aid:before{content:"\ec1d"}.icofont-heart-beat-alt:before{content:"\ec1e"}.icofont-heart-beat:before{content:"\ec1f"}.icofont-heartbeat:before{content:"\ec20"}.icofont-herbal:before{content:"\ec21"}.icofont-hospital:before{content:"\ec22"}.icofont-icu:before{content:"\ec23"}.icofont-injection-syringe:before{content:"\ec24"}.icofont-laboratory:before{content:"\ec25"}.icofont-medical-sign-alt:before{content:"\ec26"}.icofont-medical-sign:before{content:"\ec27"}.icofont-nurse-alt:before{content:"\ec28"}.icofont-nurse:before{content:"\ec29"}.icofont-nursing-home:before{content:"\ec2a"}.icofont-operation-theater:before{content:"\ec2b"}.icofont-paralysis-disability:before{content:"\ec2c"}.icofont-patient-bed:before{content:"\ec2d"}.icofont-patient-file:before{content:"\ec2e"}.icofont-pills:before{content:"\ec2f"}.icofont-prescription:before{content:"\ec30"}.icofont-pulse:before{content:"\ec31"}.icofont-stethoscope-alt:before{content:"\ec32"}.icofont-stethoscope:before{content:"\ec33"}.icofont-stretcher:before{content:"\ec34"}.icofont-surgeon-alt:before{content:"\ec35"}.icofont-surgeon:before{content:"\ec36"}.icofont-tablets:before{content:"\ec37"}.icofont-test-bottle:before{content:"\ec38"}.icofont-test-tube:before{content:"\ec39"}.icofont-thermometer-alt:before{content:"\ec3a"}.icofont-thermometer:before{content:"\ec3b"}.icofont-tooth:before{content:"\ec3c"}.icofont-xray:before{content:"\ec3d"}.icofont-ui-add:before{content:"\ec3e"}.icofont-ui-alarm:before{content:"\ec3f"}.icofont-ui-battery:before{content:"\ec40"}.icofont-ui-block:before{content:"\ec41"}.icofont-ui-bluetooth:before{content:"\ec42"}.icofont-ui-brightness:before{content:"\ec43"}.icofont-ui-browser:before{content:"\ec44"}.icofont-ui-calendar:before{content:"\ec45"}.icofont-ui-call:before{content:"\ec46"}.icofont-ui-camera:before{content:"\ec47"}.icofont-ui-cart:before{content:"\ec48"}.icofont-ui-cell-phone:before{content:"\ec49"}.icofont-ui-chat:before{content:"\ec4a"}.icofont-ui-check:before{content:"\ec4b"}.icofont-ui-clip-board:before{content:"\ec4c"}.icofont-ui-clip:before{content:"\ec4d"}.icofont-ui-clock:before{content:"\ec4e"}.icofont-ui-close:before{content:"\ec4f"}.icofont-ui-contact-list:before{content:"\ec50"}.icofont-ui-copy:before{content:"\ec51"}.icofont-ui-cut:before{content:"\ec52"}.icofont-ui-delete:before{content:"\ec53"}.icofont-ui-dial-phone:before{content:"\ec54"}.icofont-ui-edit:before{content:"\ec55"}.icofont-ui-email:before{content:"\ec56"}.icofont-ui-file:before{content:"\ec57"}.icofont-ui-fire-wall:before{content:"\ec58"}.icofont-ui-flash-light:before{content:"\ec59"}.icofont-ui-flight:before{content:"\ec5a"}.icofont-ui-folder:before{content:"\ec5b"}.icofont-ui-game:before{content:"\ec5c"}.icofont-ui-handicapped:before{content:"\ec5d"}.icofont-ui-home:before{content:"\ec5e"}.icofont-ui-image:before{content:"\ec5f"}.icofont-ui-laoding:before{content:"\ec60"}.icofont-ui-lock:before{content:"\ec61"}.icofont-ui-love-add:before{content:"\ec62"}.icofont-ui-love-broken:before{content:"\ec63"}.icofont-ui-love-remove:before{content:"\ec64"}.icofont-ui-love:before{content:"\ec65"}.icofont-ui-map:before{content:"\ec66"}.icofont-ui-message:before{content:"\ec67"}.icofont-ui-messaging:before{content:"\ec68"}.icofont-ui-movie:before{content:"\ec69"}.icofont-ui-music-player:before{content:"\ec6a"}.icofont-ui-music:before{content:"\ec6b"}.icofont-ui-mute:before{content:"\ec6c"}.icofont-ui-network:before{content:"\ec6d"}.icofont-ui-next:before{content:"\ec6e"}.icofont-ui-note:before{content:"\ec6f"}.icofont-ui-office:before{content:"\ec70"}.icofont-ui-password:before{content:"\ec71"}.icofont-ui-pause:before{content:"\ec72"}.icofont-ui-play-stop:before{content:"\ec73"}.icofont-ui-play:before{content:"\ec74"}.icofont-ui-pointer:before{content:"\ec75"}.icofont-ui-power:before{content:"\ec76"}.icofont-ui-press:before{content:"\ec77"}.icofont-ui-previous:before{content:"\ec78"}.icofont-ui-rate-add:before{content:"\ec79"}.icofont-ui-rate-blank:before{content:"\ec7a"}.icofont-ui-rate-remove:before{content:"\ec7b"}.icofont-ui-rating:before{content:"\ec7c"}.icofont-ui-record:before{content:"\ec7d"}.icofont-ui-remove:before{content:"\ec7e"}.icofont-ui-reply:before{content:"\ec7f"}.icofont-ui-rotation:before{content:"\ec80"}.icofont-ui-rss:before{content:"\ec81"}.icofont-ui-search:before{content:"\ec82"}.icofont-ui-settings:before{content:"\ec83"}.icofont-ui-social-link:before{content:"\ec84"}.icofont-ui-tag:before{content:"\ec85"}.icofont-ui-text-chat:before{content:"\ec86"}.icofont-ui-text-loading:before{content:"\ec87"}.icofont-ui-theme:before{content:"\ec88"}.icofont-ui-timer:before{content:"\ec89"}.icofont-ui-touch-phone:before{content:"\ec8a"}.icofont-ui-travel:before{content:"\ec8b"}.icofont-ui-unlock:before{content:"\ec8c"}.icofont-ui-user-group:before{content:"\ec8d"}.icofont-ui-user:before{content:"\ec8e"}.icofont-ui-v-card:before{content:"\ec8f"}.icofont-ui-video-chat:before{content:"\ec90"}.icofont-ui-video-message:before{content:"\ec91"}.icofont-ui-video-play:before{content:"\ec92"}.icofont-ui-video:before{content:"\ec93"}.icofont-ui-volume:before{content:"\ec94"}.icofont-ui-weather:before{content:"\ec95"}.icofont-ui-wifi:before{content:"\ec96"}.icofont-ui-zoom-in:before{content:"\ec97"}.icofont-ui-zoom-out:before{content:"\ec98"}.icofont-cassette-player:before{content:"\ec99"}.icofont-cassette:before{content:"\ec9a"}.icofont-forward:before{content:"\ec9b"}.icofont-guiter:before{content:"\ec9c"}.icofont-movie:before{content:"\ec9d"}.icofont-multimedia:before{content:"\ec9e"}.icofont-music-alt:before{content:"\ec9f"}.icofont-music-disk:before{content:"\eca0"}.icofont-music-note:before{content:"\eca1"}.icofont-music-notes:before{content:"\eca2"}.icofont-music:before{content:"\eca3"}.icofont-mute-volume:before{content:"\eca4"}.icofont-pause:before{content:"\eca5"}.icofont-play-alt-1:before{content:"\eca6"}.icofont-play-alt-2:before{content:"\eca7"}.icofont-play-alt-3:before{content:"\eca8"}.icofont-play-pause:before{content:"\eca9"}.icofont-play:before{content:"\ecaa"}.icofont-record:before{content:"\ecab"}.icofont-retro-music-disk:before{content:"\ecac"}.icofont-rewind:before{content:"\ecad"}.icofont-song-notes:before{content:"\ecae"}.icofont-sound-wave-alt:before{content:"\ecaf"}.icofont-sound-wave:before{content:"\ecb0"}.icofont-stop:before{content:"\ecb1"}.icofont-video-alt:before{content:"\ecb2"}.icofont-video-cam:before{content:"\ecb3"}.icofont-video-clapper:before{content:"\ecb4"}.icofont-video:before{content:"\ecb5"}.icofont-volume-bar:before{content:"\ecb6"}.icofont-volume-down:before{content:"\ecb7"}.icofont-volume-mute:before{content:"\ecb8"}.icofont-volume-off:before{content:"\ecb9"}.icofont-volume-up:before{content:"\ecba"}.icofont-youtube-play:before{content:"\ecbb"}.icofont-2checkout-alt:before{content:"\ecbc"}.icofont-2checkout:before{content:"\ecbd"}.icofont-amazon-alt:before{content:"\ecbe"}.icofont-amazon:before{content:"\ecbf"}.icofont-american-express-alt:before{content:"\ecc0"}.icofont-american-express:before{content:"\ecc1"}.icofont-apple-pay-alt:before{content:"\ecc2"}.icofont-apple-pay:before{content:"\ecc3"}.icofont-bank-transfer-alt:before{content:"\ecc4"}.icofont-bank-transfer:before{content:"\ecc5"}.icofont-braintree-alt:before{content:"\ecc6"}.icofont-braintree:before{content:"\ecc7"}.icofont-cash-on-delivery-alt:before{content:"\ecc8"}.icofont-cash-on-delivery:before{content:"\ecc9"}.icofont-diners-club-alt-1:before{content:"\ecca"}.icofont-diners-club-alt-2:before{content:"\eccb"}.icofont-diners-club-alt-3:before{content:"\eccc"}.icofont-diners-club:before{content:"\eccd"}.icofont-discover-alt:before{content:"\ecce"}.icofont-discover:before{content:"\eccf"}.icofont-eway-alt:before{content:"\ecd0"}.icofont-eway:before{content:"\ecd1"}.icofont-google-wallet-alt-1:before{content:"\ecd2"}.icofont-google-wallet-alt-2:before{content:"\ecd3"}.icofont-google-wallet-alt-3:before{content:"\ecd4"}.icofont-google-wallet:before{content:"\ecd5"}.icofont-jcb-alt:before{content:"\ecd6"}.icofont-jcb:before{content:"\ecd7"}.icofont-maestro-alt:before{content:"\ecd8"}.icofont-maestro:before{content:"\ecd9"}.icofont-mastercard-alt:before{content:"\ecda"}.icofont-mastercard:before{content:"\ecdb"}.icofont-payoneer-alt:before{content:"\ecdc"}.icofont-payoneer:before{content:"\ecdd"}.icofont-paypal-alt:before{content:"\ecde"}.icofont-paypal:before{content:"\ecdf"}.icofont-sage-alt:before{content:"\ece0"}.icofont-sage:before{content:"\ece1"}.icofont-skrill-alt:before{content:"\ece2"}.icofont-skrill:before{content:"\ece3"}.icofont-stripe-alt:before{content:"\ece4"}.icofont-stripe:before{content:"\ece5"}.icofont-visa-alt:before{content:"\ece6"}.icofont-visa-electron:before{content:"\ece7"}.icofont-visa:before{content:"\ece8"}.icofont-western-union-alt:before{content:"\ece9"}.icofont-western-union:before{content:"\ecea"}.icofont-boy:before{content:"\eceb"}.icofont-business-man-alt-1:before{content:"\ecec"}.icofont-business-man-alt-2:before{content:"\eced"}.icofont-business-man-alt-3:before{content:"\ecee"}.icofont-business-man:before{content:"\ecef"}.icofont-female:before{content:"\ecf0"}.icofont-funky-man:before{content:"\ecf1"}.icofont-girl-alt:before{content:"\ecf2"}.icofont-girl:before{content:"\ecf3"}.icofont-group:before{content:"\ecf4"}.icofont-hotel-boy-alt:before{content:"\ecf5"}.icofont-hotel-boy:before{content:"\ecf6"}.icofont-kid:before{content:"\ecf7"}.icofont-man-in-glasses:before{content:"\ecf8"}.icofont-people:before{content:"\ecf9"}.icofont-support:before{content:"\ecfa"}.icofont-user-alt-1:before{content:"\ecfb"}.icofont-user-alt-2:before{content:"\ecfc"}.icofont-user-alt-3:before{content:"\ecfd"}.icofont-user-alt-4:before{content:"\ecfe"}.icofont-user-alt-5:before{content:"\ecff"}.icofont-user-alt-6:before{content:"\ed00"}.icofont-user-alt-7:before{content:"\ed01"}.icofont-user-female:before{content:"\ed02"}.icofont-user-male:before{content:"\ed03"}.icofont-user-suited:before{content:"\ed04"}.icofont-user:before{content:"\ed05"}.icofont-users-alt-1:before{content:"\ed06"}.icofont-users-alt-2:before{content:"\ed07"}.icofont-users-alt-3:before{content:"\ed08"}.icofont-users-alt-4:before{content:"\ed09"}.icofont-users-alt-5:before{content:"\ed0a"}.icofont-users-alt-6:before{content:"\ed0b"}.icofont-users-social:before{content:"\ed0c"}.icofont-users:before{content:"\ed0d"}.icofont-waiter-alt:before{content:"\ed0e"}.icofont-waiter:before{content:"\ed0f"}.icofont-woman-in-glasses:before{content:"\ed10"}.icofont-search-1:before{content:"\ed11"}.icofont-search-2:before{content:"\ed12"}.icofont-search-document:before{content:"\ed13"}.icofont-search-folder:before{content:"\ed14"}.icofont-search-job:before{content:"\ed15"}.icofont-search-map:before{content:"\ed16"}.icofont-search-property:before{content:"\ed17"}.icofont-search-restaurant:before{content:"\ed18"}.icofont-search-stock:before{content:"\ed19"}.icofont-search-user:before{content:"\ed1a"}.icofont-search:before{content:"\ed1b"}.icofont-500px:before{content:"\ed1c"}.icofont-aim:before{content:"\ed1d"}.icofont-badoo:before{content:"\ed1e"}.icofont-baidu-tieba:before{content:"\ed1f"}.icofont-bbm-messenger:before{content:"\ed20"}.icofont-bebo:before{content:"\ed21"}.icofont-behance:before{content:"\ed22"}.icofont-blogger:before{content:"\ed23"}.icofont-bootstrap:before{content:"\ed24"}.icofont-brightkite:before{content:"\ed25"}.icofont-cloudapp:before{content:"\ed26"}.icofont-concrete5:before{content:"\ed27"}.icofont-delicious:before{content:"\ed28"}.icofont-designbump:before{content:"\ed29"}.icofont-designfloat:before{content:"\ed2a"}.icofont-deviantart:before{content:"\ed2b"}.icofont-digg:before{content:"\ed2c"}.icofont-dotcms:before{content:"\ed2d"}.icofont-dribbble:before{content:"\ed2e"}.icofont-dribble:before{content:"\ed2f"}.icofont-dropbox:before{content:"\ed30"}.icofont-ebuddy:before{content:"\ed31"}.icofont-ello:before{content:"\ed32"}.icofont-ember:before{content:"\ed33"}.icofont-envato:before{content:"\ed34"}.icofont-evernote:before{content:"\ed35"}.icofont-facebook-messenger:before{content:"\ed36"}.icofont-facebook:before{content:"\ed37"}.icofont-feedburner:before{content:"\ed38"}.icofont-flikr:before{content:"\ed39"}.icofont-folkd:before{content:"\ed3a"}.icofont-foursquare:before{content:"\ed3b"}.icofont-friendfeed:before{content:"\ed3c"}.icofont-ghost:before{content:"\ed3d"}.icofont-github:before{content:"\ed3e"}.icofont-gnome:before{content:"\ed3f"}.icofont-google-buzz:before{content:"\ed40"}.icofont-google-hangouts:before{content:"\ed41"}.icofont-google-map:before{content:"\ed42"}.icofont-google-plus:before{content:"\ed43"}.icofont-google-talk:before{content:"\ed44"}.icofont-hype-machine:before{content:"\ed45"}.icofont-instagram:before{content:"\ed46"}.icofont-kakaotalk:before{content:"\ed47"}.icofont-kickstarter:before{content:"\ed48"}.icofont-kik:before{content:"\ed49"}.icofont-kiwibox:before{content:"\ed4a"}.icofont-line-messenger:before{content:"\ed4b"}.icofont-line:before{content:"\ed4c"}.icofont-linkedin:before{content:"\ed4d"}.icofont-linux-mint:before{content:"\ed4e"}.icofont-live-messenger:before{content:"\ed4f"}.icofont-livejournal:before{content:"\ed50"}.icofont-magento:before{content:"\ed51"}.icofont-meetme:before{content:"\ed52"}.icofont-meetup:before{content:"\ed53"}.icofont-mixx:before{content:"\ed54"}.icofont-newsvine:before{content:"\ed55"}.icofont-nimbuss:before{content:"\ed56"}.icofont-odnoklassniki:before{content:"\ed57"}.icofont-opencart:before{content:"\ed58"}.icofont-oscommerce:before{content:"\ed59"}.icofont-pandora:before{content:"\ed5a"}.icofont-photobucket:before{content:"\ed5b"}.icofont-picasa:before{content:"\ed5c"}.icofont-pinterest:before{content:"\ed5d"}.icofont-prestashop:before{content:"\ed5e"}.icofont-qik:before{content:"\ed5f"}.icofont-qq:before{content:"\ed60"}.icofont-readernaut:before{content:"\ed61"}.icofont-reddit:before{content:"\ed62"}.icofont-renren:before{content:"\ed63"}.icofont-rss:before{content:"\ed64"}.icofont-shopify:before{content:"\ed65"}.icofont-silverstripe:before{content:"\ed66"}.icofont-skype:before{content:"\ed67"}.icofont-slack:before{content:"\ed68"}.icofont-slashdot:before{content:"\ed69"}.icofont-slidshare:before{content:"\ed6a"}.icofont-smugmug:before{content:"\ed6b"}.icofont-snapchat:before{content:"\ed6c"}.icofont-soundcloud:before{content:"\ed6d"}.icofont-spotify:before{content:"\ed6e"}.icofont-stack-exchange:before{content:"\ed6f"}.icofont-stack-overflow:before{content:"\ed70"}.icofont-steam:before{content:"\ed71"}.icofont-stumbleupon:before{content:"\ed72"}.icofont-tagged:before{content:"\ed73"}.icofont-technorati:before{content:"\ed74"}.icofont-telegram:before{content:"\ed75"}.icofont-tinder:before{content:"\ed76"}.icofont-trello:before{content:"\ed77"}.icofont-tumblr:before{content:"\ed78"}.icofont-twitch:before{content:"\ed79"}.icofont-twitter:before{content:"\ed7a"}.icofont-typo3:before{content:"\ed7b"}.icofont-ubercart:before{content:"\ed7c"}.icofont-viber:before{content:"\ed7d"}.icofont-viddler:before{content:"\ed7e"}.icofont-vimeo:before{content:"\ed7f"}.icofont-vine:before{content:"\ed80"}.icofont-virb:before{content:"\ed81"}.icofont-virtuemart:before{content:"\ed82"}.icofont-vk:before{content:"\ed83"}.icofont-wechat:before{content:"\ed84"}.icofont-weibo:before{content:"\ed85"}.icofont-whatsapp:before{content:"\ed86"}.icofont-xing:before{content:"\ed87"}.icofont-yahoo:before{content:"\ed88"}.icofont-yelp:before{content:"\ed89"}.icofont-youku:before{content:"\ed8a"}.icofont-youtube:before{content:"\ed8b"}.icofont-zencart:before{content:"\ed8c"}.icofont-badminton-birdie:before{content:"\ed8d"}.icofont-baseball:before{content:"\ed8e"}.icofont-baseballer:before{content:"\ed8f"}.icofont-basketball-hoop:before{content:"\ed90"}.icofont-basketball:before{content:"\ed91"}.icofont-billiard-ball:before{content:"\ed92"}.icofont-boot-alt-1:before{content:"\ed93"}.icofont-boot-alt-2:before{content:"\ed94"}.icofont-boot:before{content:"\ed95"}.icofont-bowling-alt:before{content:"\ed96"}.icofont-bowling:before{content:"\ed97"}.icofont-canoe:before{content:"\ed98"}.icofont-cheer-leader:before{content:"\ed99"}.icofont-climbing:before{content:"\ed9a"}.icofont-corner:before{content:"\ed9b"}.icofont-field-alt:before{content:"\ed9c"}.icofont-field:before{content:"\ed9d"}.icofont-football-alt:before{content:"\ed9e"}.icofont-football-american:before{content:"\ed9f"}.icofont-football:before{content:"\eda0"}.icofont-foul:before{content:"\eda1"}.icofont-goal-keeper:before{content:"\eda2"}.icofont-goal:before{content:"\eda3"}.icofont-golf-alt:before{content:"\eda4"}.icofont-golf-bag:before{content:"\eda5"}.icofont-golf-cart:before{content:"\eda6"}.icofont-golf-field:before{content:"\eda7"}.icofont-golf:before{content:"\eda8"}.icofont-golfer:before{content:"\eda9"}.icofont-helmet:before{content:"\edaa"}.icofont-hockey-alt:before{content:"\edab"}.icofont-hockey:before{content:"\edac"}.icofont-ice-skate:before{content:"\edad"}.icofont-jersey-alt:before{content:"\edae"}.icofont-jersey:before{content:"\edaf"}.icofont-jumping:before{content:"\edb0"}.icofont-kick:before{content:"\edb1"}.icofont-leg:before{content:"\edb2"}.icofont-match-review:before{content:"\edb3"}.icofont-medal-sport:before{content:"\edb4"}.icofont-offside:before{content:"\edb5"}.icofont-olympic-logo:before{content:"\edb6"}.icofont-olympic:before{content:"\edb7"}.icofont-padding:before{content:"\edb8"}.icofont-penalty-card:before{content:"\edb9"}.icofont-racer:before{content:"\edba"}.icofont-racing-car:before{content:"\edbb"}.icofont-racing-flag-alt:before{content:"\edbc"}.icofont-racing-flag:before{content:"\edbd"}.icofont-racings-wheel:before{content:"\edbe"}.icofont-referee:before{content:"\edbf"}.icofont-refree-jersey:before{content:"\edc0"}.icofont-result-sport:before{content:"\edc1"}.icofont-rugby-ball:before{content:"\edc2"}.icofont-rugby-player:before{content:"\edc3"}.icofont-rugby:before{content:"\edc4"}.icofont-runner-alt-1:before{content:"\edc5"}.icofont-runner-alt-2:before{content:"\edc6"}.icofont-runner:before{content:"\edc7"}.icofont-score-board:before{content:"\edc8"}.icofont-skiing-man:before{content:"\edc9"}.icofont-skydiving-goggles:before{content:"\edca"}.icofont-snow-mobile:before{content:"\edcb"}.icofont-steering:before{content:"\edcc"}.icofont-stopwatch:before{content:"\edcd"}.icofont-substitute:before{content:"\edce"}.icofont-swimmer:before{content:"\edcf"}.icofont-table-tennis:before{content:"\edd0"}.icofont-team-alt:before{content:"\edd1"}.icofont-team:before{content:"\edd2"}.icofont-tennis-player:before{content:"\edd3"}.icofont-tennis:before{content:"\edd4"}.icofont-tracking:before{content:"\edd5"}.icofont-trophy-alt:before{content:"\edd6"}.icofont-trophy:before{content:"\edd7"}.icofont-volleyball-alt:before{content:"\edd8"}.icofont-volleyball-fire:before{content:"\edd9"}.icofont-volleyball:before{content:"\edda"}.icofont-water-bottle:before{content:"\eddb"}.icofont-whistle-alt:before{content:"\eddc"}.icofont-whistle:before{content:"\eddd"}.icofont-win-trophy:before{content:"\edde"}.icofont-align-center:before{content:"\eddf"}.icofont-align-left:before{content:"\ede0"}.icofont-align-right:before{content:"\ede1"}.icofont-all-caps:before{content:"\ede2"}.icofont-bold:before{content:"\ede3"}.icofont-brush:before{content:"\ede4"}.icofont-clip-board:before{content:"\ede5"}.icofont-code-alt:before{content:"\ede6"}.icofont-color-bucket:before{content:"\ede7"}.icofont-color-picker:before{content:"\ede8"}.icofont-copy-invert:before{content:"\ede9"}.icofont-copy:before{content:"\edea"}.icofont-cut:before{content:"\edeb"}.icofont-delete-alt:before{content:"\edec"}.icofont-edit-alt:before{content:"\eded"}.icofont-eraser-alt:before{content:"\edee"}.icofont-font:before{content:"\edef"}.icofont-heading:before{content:"\edf0"}.icofont-indent:before{content:"\edf1"}.icofont-italic-alt:before{content:"\edf2"}.icofont-italic:before{content:"\edf3"}.icofont-justify-all:before{content:"\edf4"}.icofont-justify-center:before{content:"\edf5"}.icofont-justify-left:before{content:"\edf6"}.icofont-justify-right:before{content:"\edf7"}.icofont-link-broken:before{content:"\edf8"}.icofont-outdent:before{content:"\edf9"}.icofont-paper-clip:before{content:"\edfa"}.icofont-paragraph:before{content:"\edfb"}.icofont-pin:before{content:"\edfc"}.icofont-printer:before{content:"\edfd"}.icofont-redo:before{content:"\edfe"}.icofont-rotation:before{content:"\edff"}.icofont-save:before{content:"\ee00"}.icofont-small-cap:before{content:"\ee01"}.icofont-strike-through:before{content:"\ee02"}.icofont-sub-listing:before{content:"\ee03"}.icofont-subscript:before{content:"\ee04"}.icofont-superscript:before{content:"\ee05"}.icofont-table:before{content:"\ee06"}.icofont-text-height:before{content:"\ee07"}.icofont-text-width:before{content:"\ee08"}.icofont-trash:before{content:"\ee09"}.icofont-underline:before{content:"\ee0a"}.icofont-undo:before{content:"\ee0b"}.icofont-air-balloon:before{content:"\ee0c"}.icofont-airplane-alt:before{content:"\ee0d"}.icofont-airplane:before{content:"\ee0e"}.icofont-articulated-truck:before{content:"\ee0f"}.icofont-auto-mobile:before{content:"\ee10"}.icofont-auto-rickshaw:before{content:"\ee11"}.icofont-bicycle-alt-1:before{content:"\ee12"}.icofont-bicycle-alt-2:before{content:"\ee13"}.icofont-bicycle:before{content:"\ee14"}.icofont-bus-alt-1:before{content:"\ee15"}.icofont-bus-alt-2:before{content:"\ee16"}.icofont-bus-alt-3:before{content:"\ee17"}.icofont-bus:before{content:"\ee18"}.icofont-cab:before{content:"\ee19"}.icofont-cable-car:before{content:"\ee1a"}.icofont-car-alt-1:before{content:"\ee1b"}.icofont-car-alt-2:before{content:"\ee1c"}.icofont-car-alt-3:before{content:"\ee1d"}.icofont-car-alt-4:before{content:"\ee1e"}.icofont-car:before{content:"\ee1f"}.icofont-delivery-time:before{content:"\ee20"}.icofont-fast-delivery:before{content:"\ee21"}.icofont-fire-truck-alt:before{content:"\ee22"}.icofont-fire-truck:before{content:"\ee23"}.icofont-free-delivery:before{content:"\ee24"}.icofont-helicopter:before{content:"\ee25"}.icofont-motor-bike-alt:before{content:"\ee26"}.icofont-motor-bike:before{content:"\ee27"}.icofont-motor-biker:before{content:"\ee28"}.icofont-oil-truck:before{content:"\ee29"}.icofont-rickshaw:before{content:"\ee2a"}.icofont-rocket-alt-1:before{content:"\ee2b"}.icofont-rocket-alt-2:before{content:"\ee2c"}.icofont-rocket:before{content:"\ee2d"}.icofont-sail-boat-alt-1:before{content:"\ee2e"}.icofont-sail-boat-alt-2:before{content:"\ee2f"}.icofont-sail-boat:before{content:"\ee30"}.icofont-scooter:before{content:"\ee31"}.icofont-sea-plane:before{content:"\ee32"}.icofont-ship-alt:before{content:"\ee33"}.icofont-ship:before{content:"\ee34"}.icofont-speed-boat:before{content:"\ee35"}.icofont-taxi:before{content:"\ee36"}.icofont-tractor:before{content:"\ee37"}.icofont-train-line:before{content:"\ee38"}.icofont-train-steam:before{content:"\ee39"}.icofont-tram:before{content:"\ee3a"}.icofont-truck-alt:before{content:"\ee3b"}.icofont-truck-loaded:before{content:"\ee3c"}.icofont-truck:before{content:"\ee3d"}.icofont-van-alt:before{content:"\ee3e"}.icofont-van:before{content:"\ee3f"}.icofont-yacht:before{content:"\ee40"}.icofont-5-star-hotel:before{content:"\ee41"}.icofont-air-ticket:before{content:"\ee42"}.icofont-beach-bed:before{content:"\ee43"}.icofont-beach:before{content:"\ee44"}.icofont-camping-vest:before{content:"\ee45"}.icofont-direction-sign:before{content:"\ee46"}.icofont-hill-side:before{content:"\ee47"}.icofont-hill:before{content:"\ee48"}.icofont-hotel:before{content:"\ee49"}.icofont-island-alt:before{content:"\ee4a"}.icofont-island:before{content:"\ee4b"}.icofont-sandals-female:before{content:"\ee4c"}.icofont-sandals-male:before{content:"\ee4d"}.icofont-travelling:before{content:"\ee4e"}.icofont-breakdown:before{content:"\ee4f"}.icofont-celsius:before{content:"\ee50"}.icofont-clouds:before{content:"\ee51"}.icofont-cloudy:before{content:"\ee52"}.icofont-dust:before{content:"\ee53"}.icofont-eclipse:before{content:"\ee54"}.icofont-fahrenheit:before{content:"\ee55"}.icofont-forest-fire:before{content:"\ee56"}.icofont-full-night:before{content:"\ee57"}.icofont-full-sunny:before{content:"\ee58"}.icofont-hail-night:before{content:"\ee59"}.icofont-hail-rainy-night:before{content:"\ee5a"}.icofont-hail-rainy-sunny:before{content:"\ee5b"}.icofont-hail-rainy:before{content:"\ee5c"}.icofont-hail-sunny:before{content:"\ee5d"}.icofont-hail-thunder-night:before{content:"\ee5e"}.icofont-hail-thunder-sunny:before{content:"\ee5f"}.icofont-hail-thunder:before{content:"\ee60"}.icofont-hail:before{content:"\ee61"}.icofont-hill-night:before{content:"\ee62"}.icofont-hill-sunny:before{content:"\ee63"}.icofont-hurricane:before{content:"\ee64"}.icofont-meteor:before{content:"\ee65"}.icofont-night:before{content:"\ee66"}.icofont-rainy-night:before{content:"\ee67"}.icofont-rainy-sunny:before{content:"\ee68"}.icofont-rainy-thunder:before{content:"\ee69"}.icofont-rainy:before{content:"\ee6a"}.icofont-snow-alt:before{content:"\ee6b"}.icofont-snow-flake:before{content:"\ee6c"}.icofont-snow-temp:before{content:"\ee6d"}.icofont-snow:before{content:"\ee6e"}.icofont-snowy-hail:before{content:"\ee6f"}.icofont-snowy-night-hail:before{content:"\ee70"}.icofont-snowy-night-rainy:before{content:"\ee71"}.icofont-snowy-night:before{content:"\ee72"}.icofont-snowy-rainy:before{content:"\ee73"}.icofont-snowy-sunny-hail:before{content:"\ee74"}.icofont-snowy-sunny-rainy:before{content:"\ee75"}.icofont-snowy-sunny:before{content:"\ee76"}.icofont-snowy-thunder-night:before{content:"\ee77"}.icofont-snowy-thunder-sunny:before{content:"\ee78"}.icofont-snowy-thunder:before{content:"\ee79"}.icofont-snowy-windy-night:before{content:"\ee7a"}.icofont-snowy-windy-sunny:before{content:"\ee7b"}.icofont-snowy-windy:before{content:"\ee7c"}.icofont-snowy:before{content:"\ee7d"}.icofont-sun-alt:before{content:"\ee7e"}.icofont-sun-rise:before{content:"\ee7f"}.icofont-sun-set:before{content:"\ee80"}.icofont-sun:before{content:"\ee81"}.icofont-sunny-day-temp:before{content:"\ee82"}.icofont-sunny:before{content:"\ee83"}.icofont-thunder-light:before{content:"\ee84"}.icofont-tornado:before{content:"\ee85"}.icofont-umbrella-alt:before{content:"\ee86"}.icofont-umbrella:before{content:"\ee87"}.icofont-volcano:before{content:"\ee88"}.icofont-wave:before{content:"\ee89"}.icofont-wind-scale-0:before{content:"\ee8a"}.icofont-wind-scale-1:before{content:"\ee8b"}.icofont-wind-scale-10:before{content:"\ee8c"}.icofont-wind-scale-11:before{content:"\ee8d"}.icofont-wind-scale-12:before{content:"\ee8e"}.icofont-wind-scale-2:before{content:"\ee8f"}.icofont-wind-scale-3:before{content:"\ee90"}.icofont-wind-scale-4:before{content:"\ee91"}.icofont-wind-scale-5:before{content:"\ee92"}.icofont-wind-scale-6:before{content:"\ee93"}.icofont-wind-scale-7:before{content:"\ee94"}.icofont-wind-scale-8:before{content:"\ee95"}.icofont-wind-scale-9:before{content:"\ee96"}.icofont-wind-waves:before{content:"\ee97"}.icofont-wind:before{content:"\ee98"}.icofont-windy-hail:before{content:"\ee99"}.icofont-windy-night:before{content:"\ee9a"}.icofont-windy-raining:before{content:"\ee9b"}.icofont-windy-sunny:before{content:"\ee9c"}.icofont-windy-thunder-raining:before{content:"\ee9d"}.icofont-windy-thunder:before{content:"\ee9e"}.icofont-windy:before{content:"\ee9f"}.icofont-addons:before{content:"\eea0"}.icofont-address-book:before{content:"\eea1"}.icofont-adjust:before{content:"\eea2"}.icofont-alarm:before{content:"\eea3"}.icofont-anchor:before{content:"\eea4"}.icofont-archive:before{content:"\eea5"}.icofont-at:before{content:"\eea6"}.icofont-attachment:before{content:"\eea7"}.icofont-audio:before{content:"\eea8"}.icofont-automation:before{content:"\eea9"}.icofont-badge:before{content:"\eeaa"}.icofont-bag-alt:before{content:"\eeab"}.icofont-bag:before{content:"\eeac"}.icofont-ban:before{content:"\eead"}.icofont-bar-code:before{content:"\eeae"}.icofont-bars:before{content:"\eeaf"}.icofont-basket:before{content:"\eeb0"}.icofont-battery-empty:before{content:"\eeb1"}.icofont-battery-full:before{content:"\eeb2"}.icofont-battery-half:before{content:"\eeb3"}.icofont-battery-low:before{content:"\eeb4"}.icofont-beaker:before{content:"\eeb5"}.icofont-beard:before{content:"\eeb6"}.icofont-bed:before{content:"\eeb7"}.icofont-bell:before{content:"\eeb8"}.icofont-beverage:before{content:"\eeb9"}.icofont-bill:before{content:"\eeba"}.icofont-bin:before{content:"\eebb"}.icofont-binary:before{content:"\eebc"}.icofont-binoculars:before{content:"\eebd"}.icofont-bluetooth:before{content:"\eebe"}.icofont-bomb:before{content:"\eebf"}.icofont-book-mark:before{content:"\eec0"}.icofont-box:before{content:"\eec1"}.icofont-briefcase:before{content:"\eec2"}.icofont-broken:before{content:"\eec3"}.icofont-bucket:before{content:"\eec4"}.icofont-bucket1:before{content:"\eec5"}.icofont-bucket2:before{content:"\eec6"}.icofont-bug:before{content:"\eec7"}.icofont-building:before{content:"\eec8"}.icofont-bulb-alt:before{content:"\eec9"}.icofont-bullet:before{content:"\eeca"}.icofont-bullhorn:before{content:"\eecb"}.icofont-bullseye:before{content:"\eecc"}.icofont-calendar:before{content:"\eecd"}.icofont-camera-alt:before{content:"\eece"}.icofont-camera:before{content:"\eecf"}.icofont-card:before{content:"\eed0"}.icofont-cart-alt:before{content:"\eed1"}.icofont-cart:before{content:"\eed2"}.icofont-cc:before{content:"\eed3"}.icofont-charging:before{content:"\eed4"}.icofont-chat:before{content:"\eed5"}.icofont-check-alt:before{content:"\eed6"}.icofont-check-circled:before{content:"\eed7"}.icofont-check:before{content:"\eed8"}.icofont-checked:before{content:"\eed9"}.icofont-children-care:before{content:"\eeda"}.icofont-clip:before{content:"\eedb"}.icofont-clock-time:before{content:"\eedc"}.icofont-close-circled:before{content:"\eedd"}.icofont-close-line-circled:before{content:"\eede"}.icofont-close-line-squared-alt:before{content:"\eedf"}.icofont-close-line-squared:before{content:"\eee0"}.icofont-close-line:before{content:"\eee1"}.icofont-close-squared-alt:before{content:"\eee2"}.icofont-close-squared:before{content:"\eee3"}.icofont-close:before{content:"\eee4"}.icofont-cloud-download:before{content:"\eee5"}.icofont-cloud-refresh:before{content:"\eee6"}.icofont-cloud-upload:before{content:"\eee7"}.icofont-cloud:before{content:"\eee8"}.icofont-code-not-allowed:before{content:"\eee9"}.icofont-code:before{content:"\eeea"}.icofont-comment:before{content:"\eeeb"}.icofont-compass-alt:before{content:"\eeec"}.icofont-compass:before{content:"\eeed"}.icofont-computer:before{content:"\eeee"}.icofont-connection:before{content:"\eeef"}.icofont-console:before{content:"\eef0"}.icofont-contacts:before{content:"\eef1"}.icofont-contrast:before{content:"\eef2"}.icofont-copyright:before{content:"\eef3"}.icofont-credit-card:before{content:"\eef4"}.icofont-crop:before{content:"\eef5"}.icofont-crown:before{content:"\eef6"}.icofont-cube:before{content:"\eef7"}.icofont-cubes:before{content:"\eef8"}.icofont-dashboard-web:before{content:"\eef9"}.icofont-dashboard:before{content:"\eefa"}.icofont-data:before{content:"\eefb"}.icofont-database-add:before{content:"\eefc"}.icofont-database-locked:before{content:"\eefd"}.icofont-database-remove:before{content:"\eefe"}.icofont-database:before{content:"\eeff"}.icofont-delete:before{content:"\ef00"}.icofont-diamond:before{content:"\ef01"}.icofont-dice-multiple:before{content:"\ef02"}.icofont-dice:before{content:"\ef03"}.icofont-disc:before{content:"\ef04"}.icofont-diskette:before{content:"\ef05"}.icofont-document-folder:before{content:"\ef06"}.icofont-download-alt:before{content:"\ef07"}.icofont-download:before{content:"\ef08"}.icofont-downloaded:before{content:"\ef09"}.icofont-drag:before{content:"\ef0a"}.icofont-drag1:before{content:"\ef0b"}.icofont-drag2:before{content:"\ef0c"}.icofont-drag3:before{content:"\ef0d"}.icofont-earth:before{content:"\ef0e"}.icofont-ebook:before{content:"\ef0f"}.icofont-edit:before{content:"\ef10"}.icofont-eject:before{content:"\ef11"}.icofont-email:before{content:"\ef12"}.icofont-envelope-open:before{content:"\ef13"}.icofont-envelope:before{content:"\ef14"}.icofont-eraser:before{content:"\ef15"}.icofont-error:before{content:"\ef16"}.icofont-excavator:before{content:"\ef17"}.icofont-exchange:before{content:"\ef18"}.icofont-exclamation-circle:before{content:"\ef19"}.icofont-exclamation-square:before{content:"\ef1a"}.icofont-exclamation-tringle:before{content:"\ef1b"}.icofont-exclamation:before{content:"\ef1c"}.icofont-exit:before{content:"\ef1d"}.icofont-expand:before{content:"\ef1e"}.icofont-external-link:before{content:"\ef1f"}.icofont-external:before{content:"\ef20"}.icofont-eye-alt:before{content:"\ef21"}.icofont-eye-blocked:before{content:"\ef22"}.icofont-eye-dropper:before{content:"\ef23"}.icofont-eye:before{content:"\ef24"}.icofont-favourite:before{content:"\ef25"}.icofont-fax:before{content:"\ef26"}.icofont-file-fill:before{content:"\ef27"}.icofont-film:before{content:"\ef28"}.icofont-filter:before{content:"\ef29"}.icofont-fire-alt:before{content:"\ef2a"}.icofont-fire-burn:before{content:"\ef2b"}.icofont-fire:before{content:"\ef2c"}.icofont-flag-alt-1:before{content:"\ef2d"}.icofont-flag-alt-2:before{content:"\ef2e"}.icofont-flag:before{content:"\ef2f"}.icofont-flame-torch:before{content:"\ef30"}.icofont-flash-light:before{content:"\ef31"}.icofont-flash:before{content:"\ef32"}.icofont-flask:before{content:"\ef33"}.icofont-focus:before{content:"\ef34"}.icofont-folder-open:before{content:"\ef35"}.icofont-folder:before{content:"\ef36"}.icofont-foot-print:before{content:"\ef37"}.icofont-garbage:before{content:"\ef38"}.icofont-gear-alt:before{content:"\ef39"}.icofont-gear:before{content:"\ef3a"}.icofont-gears:before{content:"\ef3b"}.icofont-gift:before{content:"\ef3c"}.icofont-glass:before{content:"\ef3d"}.icofont-globe:before{content:"\ef3e"}.icofont-graffiti:before{content:"\ef3f"}.icofont-grocery:before{content:"\ef40"}.icofont-hand:before{content:"\ef41"}.icofont-hanger:before{content:"\ef42"}.icofont-hard-disk:before{content:"\ef43"}.icofont-heart-alt:before{content:"\ef44"}.icofont-heart:before{content:"\ef45"}.icofont-history:before{content:"\ef46"}.icofont-home:before{content:"\ef47"}.icofont-horn:before{content:"\ef48"}.icofont-hour-glass:before{content:"\ef49"}.icofont-id:before{content:"\ef4a"}.icofont-image:before{content:"\ef4b"}.icofont-inbox:before{content:"\ef4c"}.icofont-infinite:before{content:"\ef4d"}.icofont-info-circle:before{content:"\ef4e"}.icofont-info-square:before{content:"\ef4f"}.icofont-info:before{content:"\ef50"}.icofont-institution:before{content:"\ef51"}.icofont-interface:before{content:"\ef52"}.icofont-invisible:before{content:"\ef53"}.icofont-jacket:before{content:"\ef54"}.icofont-jar:before{content:"\ef55"}.icofont-jewlery:before{content:"\ef56"}.icofont-karate:before{content:"\ef57"}.icofont-key-hole:before{content:"\ef58"}.icofont-key:before{content:"\ef59"}.icofont-label:before{content:"\ef5a"}.icofont-lamp:before{content:"\ef5b"}.icofont-layers:before{content:"\ef5c"}.icofont-layout:before{content:"\ef5d"}.icofont-leaf:before{content:"\ef5e"}.icofont-leaflet:before{content:"\ef5f"}.icofont-learn:before{content:"\ef60"}.icofont-lego:before{content:"\ef61"}.icofont-lens:before{content:"\ef62"}.icofont-letter:before{content:"\ef63"}.icofont-letterbox:before{content:"\ef64"}.icofont-library:before{content:"\ef65"}.icofont-license:before{content:"\ef66"}.icofont-life-bouy:before{content:"\ef67"}.icofont-life-buoy:before{content:"\ef68"}.icofont-life-jacket:before{content:"\ef69"}.icofont-life-ring:before{content:"\ef6a"}.icofont-light-bulb:before{content:"\ef6b"}.icofont-lighter:before{content:"\ef6c"}.icofont-lightning-ray:before{content:"\ef6d"}.icofont-like:before{content:"\ef6e"}.icofont-line-height:before{content:"\ef6f"}.icofont-link-alt:before{content:"\ef70"}.icofont-link:before{content:"\ef71"}.icofont-list:before{content:"\ef72"}.icofont-listening:before{content:"\ef73"}.icofont-listine-dots:before{content:"\ef74"}.icofont-listing-box:before{content:"\ef75"}.icofont-listing-number:before{content:"\ef76"}.icofont-live-support:before{content:"\ef77"}.icofont-location-arrow:before{content:"\ef78"}.icofont-location-pin:before{content:"\ef79"}.icofont-lock:before{content:"\ef7a"}.icofont-login:before{content:"\ef7b"}.icofont-logout:before{content:"\ef7c"}.icofont-lollipop:before{content:"\ef7d"}.icofont-long-drive:before{content:"\ef7e"}.icofont-look:before{content:"\ef7f"}.icofont-loop:before{content:"\ef80"}.icofont-luggage:before{content:"\ef81"}.icofont-lunch:before{content:"\ef82"}.icofont-lungs:before{content:"\ef83"}.icofont-magic-alt:before{content:"\ef84"}.icofont-magic:before{content:"\ef85"}.icofont-magnet:before{content:"\ef86"}.icofont-mail-box:before{content:"\ef87"}.icofont-mail:before{content:"\ef88"}.icofont-male:before{content:"\ef89"}.icofont-map-pins:before{content:"\ef8a"}.icofont-map:before{content:"\ef8b"}.icofont-maximize:before{content:"\ef8c"}.icofont-measure:before{content:"\ef8d"}.icofont-medicine:before{content:"\ef8e"}.icofont-mega-phone:before{content:"\ef8f"}.icofont-megaphone-alt:before{content:"\ef90"}.icofont-megaphone:before{content:"\ef91"}.icofont-memorial:before{content:"\ef92"}.icofont-memory-card:before{content:"\ef93"}.icofont-mic-mute:before{content:"\ef94"}.icofont-mic:before{content:"\ef95"}.icofont-military:before{content:"\ef96"}.icofont-mill:before{content:"\ef97"}.icofont-minus-circle:before{content:"\ef98"}.icofont-minus-square:before{content:"\ef99"}.icofont-minus:before{content:"\ef9a"}.icofont-mobile-phone:before{content:"\ef9b"}.icofont-molecule:before{content:"\ef9c"}.icofont-money:before{content:"\ef9d"}.icofont-moon:before{content:"\ef9e"}.icofont-mop:before{content:"\ef9f"}.icofont-muffin:before{content:"\efa0"}.icofont-mustache:before{content:"\efa1"}.icofont-navigation-menu:before{content:"\efa2"}.icofont-navigation:before{content:"\efa3"}.icofont-network-tower:before{content:"\efa4"}.icofont-network:before{content:"\efa5"}.icofont-news:before{content:"\efa6"}.icofont-newspaper:before{content:"\efa7"}.icofont-no-smoking:before{content:"\efa8"}.icofont-not-allowed:before{content:"\efa9"}.icofont-notebook:before{content:"\efaa"}.icofont-notepad:before{content:"\efab"}.icofont-notification:before{content:"\efac"}.icofont-numbered:before{content:"\efad"}.icofont-opposite:before{content:"\efae"}.icofont-optic:before{content:"\efaf"}.icofont-options:before{content:"\efb0"}.icofont-package:before{content:"\efb1"}.icofont-page:before{content:"\efb2"}.icofont-paint:before{content:"\efb3"}.icofont-paper-plane:before{content:"\efb4"}.icofont-paperclip:before{content:"\efb5"}.icofont-papers:before{content:"\efb6"}.icofont-pay:before{content:"\efb7"}.icofont-penguin-linux:before{content:"\efb8"}.icofont-pestle:before{content:"\efb9"}.icofont-phone-circle:before{content:"\efba"}.icofont-phone:before{content:"\efbb"}.icofont-picture:before{content:"\efbc"}.icofont-pine:before{content:"\efbd"}.icofont-pixels:before{content:"\efbe"}.icofont-plugin:before{content:"\efbf"}.icofont-plus-circle:before{content:"\efc0"}.icofont-plus-square:before{content:"\efc1"}.icofont-plus:before{content:"\efc2"}.icofont-polygonal:before{content:"\efc3"}.icofont-power:before{content:"\efc4"}.icofont-price:before{content:"\efc5"}.icofont-print:before{content:"\efc6"}.icofont-puzzle:before{content:"\efc7"}.icofont-qr-code:before{content:"\efc8"}.icofont-queen:before{content:"\efc9"}.icofont-question-circle:before{content:"\efca"}.icofont-question-square:before{content:"\efcb"}.icofont-question:before{content:"\efcc"}.icofont-quote-left:before{content:"\efcd"}.icofont-quote-right:before{content:"\efce"}.icofont-random:before{content:"\efcf"}.icofont-recycle:before{content:"\efd0"}.icofont-refresh:before{content:"\efd1"}.icofont-repair:before{content:"\efd2"}.icofont-reply-all:before{content:"\efd3"}.icofont-reply:before{content:"\efd4"}.icofont-resize:before{content:"\efd5"}.icofont-responsive:before{content:"\efd6"}.icofont-retweet:before{content:"\efd7"}.icofont-road:before{content:"\efd8"}.icofont-robot:before{content:"\efd9"}.icofont-royal:before{content:"\efda"}.icofont-rss-feed:before{content:"\efdb"}.icofont-safety:before{content:"\efdc"}.icofont-sale-discount:before{content:"\efdd"}.icofont-satellite:before{content:"\efde"}.icofont-send-mail:before{content:"\efdf"}.icofont-server:before{content:"\efe0"}.icofont-settings-alt:before{content:"\efe1"}.icofont-settings:before{content:"\efe2"}.icofont-share-alt:before{content:"\efe3"}.icofont-share-boxed:before{content:"\efe4"}.icofont-share:before{content:"\efe5"}.icofont-shield:before{content:"\efe6"}.icofont-shopping-cart:before{content:"\efe7"}.icofont-sign-in:before{content:"\efe8"}.icofont-sign-out:before{content:"\efe9"}.icofont-signal:before{content:"\efea"}.icofont-site-map:before{content:"\efeb"}.icofont-smart-phone:before{content:"\efec"}.icofont-soccer:before{content:"\efed"}.icofont-sort-alt:before{content:"\efee"}.icofont-sort:before{content:"\efef"}.icofont-space:before{content:"\eff0"}.icofont-spanner:before{content:"\eff1"}.icofont-speech-comments:before{content:"\eff2"}.icofont-speed-meter:before{content:"\eff3"}.icofont-spinner-alt-1:before{content:"\eff4"}.icofont-spinner-alt-2:before{content:"\eff5"}.icofont-spinner-alt-3:before{content:"\eff6"}.icofont-spinner-alt-4:before{content:"\eff7"}.icofont-spinner-alt-5:before{content:"\eff8"}.icofont-spinner-alt-6:before{content:"\eff9"}.icofont-spinner:before{content:"\effa"}.icofont-spreadsheet:before{content:"\effb"}.icofont-square:before{content:"\effc"}.icofont-ssl-security:before{content:"\effd"}.icofont-star-alt-1:before{content:"\effe"}.icofont-star-alt-2:before{content:"\efff"}.icofont-star:before{content:"\f000"}.icofont-street-view:before{content:"\f001"}.icofont-support-faq:before{content:"\f002"}.icofont-tack-pin:before{content:"\f003"}.icofont-tag:before{content:"\f004"}.icofont-tags:before{content:"\f005"}.icofont-tasks-alt:before{content:"\f006"}.icofont-tasks:before{content:"\f007"}.icofont-telephone:before{content:"\f008"}.icofont-telescope:before{content:"\f009"}.icofont-terminal:before{content:"\f00a"}.icofont-thumbs-down:before{content:"\f00b"}.icofont-thumbs-up:before{content:"\f00c"}.icofont-tick-boxed:before{content:"\f00d"}.icofont-tick-mark:before{content:"\f00e"}.icofont-ticket:before{content:"\f00f"}.icofont-tie:before{content:"\f010"}.icofont-toggle-off:before{content:"\f011"}.icofont-toggle-on:before{content:"\f012"}.icofont-tools-alt-2:before{content:"\f013"}.icofont-tools:before{content:"\f014"}.icofont-touch:before{content:"\f015"}.icofont-traffic-light:before{content:"\f016"}.icofont-transparent:before{content:"\f017"}.icofont-tree:before{content:"\f018"}.icofont-unique-idea:before{content:"\f019"}.icofont-unlock:before{content:"\f01a"}.icofont-unlocked:before{content:"\f01b"}.icofont-upload-alt:before{content:"\f01c"}.icofont-upload:before{content:"\f01d"}.icofont-usb-drive:before{content:"\f01e"}.icofont-usb:before{content:"\f01f"}.icofont-vector-path:before{content:"\f020"}.icofont-verification-check:before{content:"\f021"}.icofont-wall-clock:before{content:"\f022"}.icofont-wall:before{content:"\f023"}.icofont-wallet:before{content:"\f024"}.icofont-warning-alt:before{content:"\f025"}.icofont-warning:before{content:"\f026"}.icofont-water-drop:before{content:"\f027"}.icofont-web:before{content:"\f028"}.icofont-wheelchair:before{content:"\f029"}.icofont-wifi-alt:before{content:"\f02a"}.icofont-wifi:before{content:"\f02b"}.icofont-world:before{content:"\f02c"}.icofont-zigzag:before{content:"\f02d"}.icofont-zipped:before{content:"\f02e"}.icofont-xs{font-size:.5em}.icofont-sm{font-size:.75em}.icofont-md{font-size:1.25em}.icofont-lg{font-size:1.5em}.icofont-1x{font-size:1em}.icofont-2x{font-size:2em}.icofont-3x{font-size:3em}.icofont-4x{font-size:4em}.icofont-5x{font-size:5em}.icofont-6x{font-size:6em}.icofont-7x{font-size:7em}.icofont-8x{font-size:8em}.icofont-9x{font-size:9em}.icofont-10x{font-size:10em}.icofont-fw{text-align:center;width:1.25em}.icofont-ul{list-style-type:none;padding-left:0;margin-left:0}.icofont-ul>li{position:relative;line-height:2em}.icofont-ul>li .icofont{display:inline-block;vertical-align:middle}.icofont-border{border:solid .08em #f1f1f1;border-radius:.1em;padding:.2em .25em .15em}.icofont-pull-left{float:left}.icofont-pull-right{float:right}.icofont.icofont-pull-left{margin-right:.3em}.icofont.icofont-pull-right{margin-left:.3em}.icofont-spin{-webkit-animation:icofont-spin 2s infinite linear;animation:icofont-spin 2s infinite linear;display:inline-block}.icofont-pulse{-webkit-animation:icofont-spin 1s infinite steps(8);animation:icofont-spin 1s infinite steps(8);display:inline-block}@-webkit-keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes icofont-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.icofont-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.icofont-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.icofont-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.icofont-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.icofont-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.icofont-flip-horizontal.icofont-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .icofont-flip-horizontal,:root .icofont-flip-vertical,:root .icofont-rotate-180,:root .icofont-rotate-270,:root .icofont-rotate-90{-webkit-filter:none;filter:none;display:inline-block}.icofont-inverse{color:#fff}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/css/magnific-popup.min.css b/desarrollo/diseno/registro-cliente/css/magnific-popup.min.css deleted file mode 100644 index c00c6ff9..00000000 --- a/desarrollo/diseno/registro-cliente/css/magnific-popup.min.css +++ /dev/null @@ -1 +0,0 @@ -.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/css/owl.carousel.min.css b/desarrollo/diseno/registro-cliente/css/owl.carousel.min.css deleted file mode 100644 index a71df11c..00000000 --- a/desarrollo/diseno/registro-cliente/css/owl.carousel.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/** - * 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 .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .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%;top: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 .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 .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/css/responsive.css b/desarrollo/diseno/registro-cliente/css/responsive.css deleted file mode 100644 index fcf3f1d2..00000000 --- a/desarrollo/diseno/registro-cliente/css/responsive.css +++ /dev/null @@ -1,440 +0,0 @@ -:root { - --light-purple: #F6F4FE; - --purple: #6A49F2; - --bg-purple: #6A49F2; - --dark-purple: #32236F; - --body-text-purple: #3E3F66; - --text-white: #ffffff; - --bg-white: #ffffff; - --slider-dots-color: #D4D2DD; - --light-bg: #DFDAF3; -} - -/* ------Media-Query-Start--------- */ -@media screen and (max-width:1600px) { - - footer .top_footer.has_bg {background-repeat: repeat-y; background-position: 0 50px;} - - .why_we_section .why_inner {margin: 0 15px;} - .youtube-video .modal-dialog {max-width: 1040px !important;} -} - - -@media screen and (max-width:1300px) { - - /* features section */ - .features_section .feature_detail .feature_box {width: 350px;} - .features_section .feature_detail .left_data {padding-left: 75px;} - .features_section .feature_detail .right_data {padding-right: 75px;} -} - - -@media screen and (max-width:1200px) { - - .row_am {padding: 50px 0;} - - /* navigation bar section */ - .navbar-expand-lg .navbar-nav .nav-link {padding: 5px 8px;} - .navbar-expand-lg .navbar-nav .nav-link.dark_btn {padding: 9px 30px;} - .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {right: 5px;} - .banner_section .banner_slider .right_icon {right: -30px;} - - /* features section */ - .features_section .feature_detail .feature_box {width: 300px;} - .features_section .feature_detail .left_data {padding-left: 15px;} - .features_section .feature_detail .right_data {padding-right: 15px;} - - /* about app section */ - .about_app_section .about_text .app_statstic li {width: 210px; padding-left: 20px;} - .about_app_section .about_text .app_statstic li p:first-child {font-size: 30px;} - - /* modern ui section */ - .modern_ui_section .ui_images::before {width: 475px; height: 475px;} - .modern_ui_section .ui_images .right_img img:nth-child(1) {margin-left: -60px;} - .modern_ui_section .ui_images .right_img img:nth-child(2) {margin-left: -140px;} - - /* download app section */ - .free_app_section .container .free_app_inner .free_img img {transform: scale(.8);} - .free_app_section .container .free_app_inner .free_img img:last-child {margin-left: -120px;} - .free_app_section .container .free_app_inner .free_img {margin-top: -180px;} - - /* newsletter section */ - .newsletter_box .section_title {width: 60%;} - .newsletter_box .section_title h2 {font-size: 24px; letter-spacing: 1px;} - .newsletter_box form .form-group .form-control {width: 250px;} - - .youtube-video .modal-dialog {max-width: 940px !important;} - - .app_solution_section .app_images ul li:nth-child(2) {width: 45%; left: 0;} - .app_solution_section .app_images ul li:nth-child(3) {width: 50%; right: 0;} - - .experts_team_section .experts_box .text span {min-height: 50px; display: block; margin-bottom: 10px;} - - .review_list_section .review_box h3 {font-size: 16px;} - .review_list_section .review_box p {font-size: 14px;} - .review_list_section .review_box .reviewer .text span {font-size: 14px;} - - .contact_page_section .contact_inner {margin-top: -120px;} - .contact_page_section .contact_inner .contact_form {width: 520px; padding: 50px 30px;} - .contact_page_section .contact_inner .contact_info {width: 350px;} - .contact_page_section .contact_inner .section_title h2 {font-size: 34px;} - - .bred_crumb {min-height: 400px;} - .bred_crumb::after {background-size: 100%; height: 110px;} - - .blog_detail_section .blog_inner_pannel {margin-top: -100px; padding: 30px;} - - -} - -@media screen and (max-width:992px) { - - /* navigation section */ - .navbar-toggler-icon {display: flex; align-items: center; color: var(--body-text-purple); justify-content: flex-end;} - .white_header .toggle-bar {color: var(--text-white);} - .free_app_section .container .free_app_inner .free_text .section_title h2 , .section_title h2 {font-size: 30px;} - header.fix_style {padding: 5px 0;} - - .white_header .navbar-collapse {position: absolute; top: 110%; width: 100%;} - - .white_header .navbar-expand-lg .navbar-nav .nav-link, .white_header .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {color: var(--body-text-purple);} - .white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn {background-color: var(--bg-purple); color: var(--text-white);} - - .banner_section {text-align: center;} - .banner_section .app_btn , .banner_section .used_app {justify-content: center;} - - /* navigation section */ - .navbar-expand-lg .navbar-nav {align-items: flex-start;} - .navbar-toggler {padding-right: 0; line-height: 1.7;} - .navbar-expand-lg .navbar-nav {padding: 20px 15px; background-color: var(--bg-white); border-radius: 15px; box-shadow: 0 4px 10px #EDE9FE;} - .navbar-expand-lg .navbar-nav .nav-link.dark_btn {margin-left: 0; margin-top: 15px;} - .navbar-expand-lg .navbar-nav .has_dropdown {flex-direction: column; align-items: flex-start; width: 100%; box-shadow: none;} - .navbar-expand-lg .navbar-nav .has_dropdown:hover {box-shadow: none;} - .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {position: absolute; right: 0; padding: 0 10px;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {position: relative; opacity: 1; pointer-events: all; top: auto; background-color: transparent; width: 100%; border-bottom: 1px solid #6b49f268; border-radius: 0; width: 100%; min-width: 100%; max-width: 100%; margin-left: 10px; display: none; box-shadow: none; margin-top: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {padding: 0; margin-top: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {padding: 5px 10px; display: block; padding-left: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {margin-top: 0;} - - /* banner section */ - .banner_section .banner_text h1 {font-size: 40px;} - .banner_section .banner_slider {margin-top: 50px;} - .banner_section .banner_slider .left_icon {left: 0;} - .banner_section .banner_slider .right_icon {right: 0;} - - /* features section */ - .features_section .feature_detail .feature_img {width: 275px;} - .features_section .feature_detail .feature_box .data_block {margin-bottom: 30px;} - .features_section .feature_detail .feature_box {width: 200px;} - - /* about app section */ - .about_app_section .row {flex-direction: column-reverse;} - .about_app_section .about_img {justify-content: flex-start; margin-top: 75px; margin-left: 0;} - .about_app_section .about_img::before {left: 50%;} - .about_app_section .about_img .screen_img {margin-left: -170px;} - .about_app_section .about_text .app_statstic {justify-content: flex-start;} - .about_app_section .about_text .app_statstic li {width: 35%; margin-right: 30px;} - .about_app_section .about_img::before {left: 35%;} - - /* modern ui section */ - .modern_ui_section .ui_images {margin-top: 30px;} - .modern_ui_section .ui_text {padding-right: 0;} - .modern_ui_section .ui_images .right_img {display: flex; flex-direction: column; align-items: center;} - - /* how it work section */ - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 280px;} - .how_it_works .yt_video .thumbnil a {top: 57%;} - .how_it_works .yt_video .thumbnil a span {font-size: 20px;} - - /* testimonial section */ - #testimonial_slider {max-width: 500px;} - - /* pricing section */ - .pricing_section .pricing_pannel .pricing_block {padding-left: 15px; padding-right: 15px; min-height: 600px; padding-top: 30px;} - .pricing_section .pricing_pannel .pricing_block .price {font-size: 36px;} - .pricing_section .pricing_pannel .pricing_block .benifits li p {font-size: 14px;} - - /* interface section */ - .interface_section .screen_slider {min-height: 550px;} - - /* download app section */ - .free_app_section .container .free_app_inner {padding: 20px 15px;} - .free_app_section .container .free_app_inner .free_img img {transform: scale(.7);} - .free_app_section .container .free_app_inner .free_img img:last-child {margin-left: -180px;} - .free_app_section .container .free_app_inner .free_text .app_btn li a {padding: 10px 20px;} - - /* latest story section */ - .latest_story {margin-bottom: 40px;} - .latest_story .story_box .story_text {padding: 15px;} - - /* newsletter section */ - .newsletter_box {flex-direction: column; padding: 30px 20px;} - .newsletter_box .section_title , .newsletter_box form {width: 100%; margin: 10px 0; justify-content: center;} - .newsletter_box form .form-group .form-control {width: 350px;} - .newsletter_box .section_title h2, .newsletter_box .section_title p {text-align: center;} - - /* footer section */ - footer .top_footer .logo , footer h3 {margin-bottom: 20px;} - footer .abt_side {margin-bottom: 50px;} - footer .top_footer .try_out {margin-left: 0;} - footer .top_footer .col-md-6 {margin-bottom: 15px;} - footer .top_footer.has_bg {background-position: center;} - - /* Bred Crumb */ - .bred_crumb {min-height: 350px;} - .bred_crumb .bred_text h1 {font-size: 30px;} - .bred_crumb::after {background-size: 100%; height: 90px; bottom: -5px;} - .bred_crumb .bred_text .search_bar form .form-group {height: 50px;} - .bred_crumb .bred_text .search_bar form .form-group .btn {width: 46px; height: 46px; line-height: 46px;} - - .bred_crumb .banner_shape3 { top: 240px; animation: mymove 3s infinite; } - - - .app_solution_section .app_images {margin-top: 30px;} - .app_solution_section .app_images ul li:nth-child(2) {text-align: right;} - .app_solution_section .app_text p {padding-right: 0;} - .app_solution_section .app_text .section_title {text-align: center;} - .app_solution_section .app_images {margin-top: 70px;} - .app_solution_section .app_images::before {width: 350px; height: 350px;} - - .why_we_section .why_inner {padding: 35px 0; padding-bottom: 0px;} - .why_we_section .why_inner .why_box {margin-bottom: 50px; text-align: center;} - .why_we_section .why_inner .why_box .icon {margin-bottom: 30px;} - - - .experts_team_section .experts_box .text span {min-height: auto;} - .query_inner .white_btn {font-size: 14px;} - - - .blog_list_main .blog_text {margin-top: 30px;} - .blog_detail_section .blog_inner_pannel {margin-top: -100px; padding: 30px;} - .blog_detail_section .blog_inner_pannel .info ul {padding-left: 30px;} - .comment_section ul li .comment { width: calc(100% - 280px); margin-left: 20px;} - .blog_detail_section .blog_inner_pannel .quote_block {padding: 55px 30px 35px 30px;} - - .contact_page_section .contact_inner {flex-direction: column; margin-top: 60px;} - .contact_page_section .contact_inner .contact_form {width: 100%;} - .contact_page_section .contact_inner .contact_info {width: 100%; margin-top: 50px;} - - -} - -@media screen and (max-width:767px) { - - body {font-size: 14px; text-align: center;} - .row_am {padding: 30px 0;} - .section_title p br {display: none;} - .free_app_section .container .free_app_inner .free_text .section_title h2, .section_title h2 {font-size: 24px;} - - /* navbar section */ - .navbar {padding-top: 15px;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {text-align: left; line-height: 1.5; font-size: 14px;} - - /* banner section */ - .banner_section {margin-top: 60px;} - .banner_section .banner_text h1 {font-size: 30px;} - .banner_section .app_btn , .banner_section .used_app {justify-content: center;} - .banner_section .app_btn li:last-child {margin-left: 0;} - .banner_section .app_btn li {margin: 0 15px;} - .banner_section .app_btn li a {padding: 10px 20px;} - .banner_section .app_btn li a img {height: 25px;} - .banner_section .banner_slider .left_icon {left: -40px;} - .banner_section .banner_slider .right_icon {right: -40px; z-index: 1000;} - .banner_section .banner_slider::before {width: 350px; height: 350px;} - - /* trusted logo section */ - .trusted_section .company_logos {padding-top: 0;} - .trusted_section .company_logos img {max-width: 70%;} - - /* features section */ - .features_section .feature_detail {flex-direction: column-reverse; padding-top: 30px; margin-top: 0;} - .features_section .feature_detail .feature_img {position: relative; top: auto; left: auto; transform: none; width: 75%; margin: 0 auto;} - .features_section .feature_detail .feature_box {width: 100%; padding: 0 15px; text-align: center;} - .features_section .feature_detail .left_data .data_block .icon {margin-right: 0;} - .features_section .feature_detail .right_data .data_block .icon {margin-left: 0;} - .features_section .feature_detail .feature_box .data_block {margin-bottom: 0; margin-top: 30px;} - - /* about app section */ - .about_app_section .about_text , .about_app_section .about_text .section_title {text-align: center;} - .about_app_section .about_text .app_statstic {margin-top: 0; justify-content: space-between;} - .about_app_section .about_text .app_statstic li {width: 48%; margin-right: 0;} - .about_app_section .about_text .app_statstic li p:first-child {font-size: 18px;} - .about_app_section .about_img {margin: 0; margin-top: 50px; justify-content: center;} - .about_app_section .about_img::before {width: 350px; height: 350px;} - - /* modern ui section */ - .modern_ui_section .ui_images {margin-top: 10px;} - .modern_ui_section .section_title {text-align: center;} - .modern_ui_section .design_block li {padding-left: 0; margin-bottom: 30px;} - .modern_ui_section .design_block li::before {position: relative; left: auto; top: auto; display: inline-block;} - - .modern_ui_section .ui_images img {max-width: 100%;} - .modern_ui_section .ui_images::before {width: 350px; height: 350px;} - .modern_ui_section .ui_images .left_img {width: 70%;} - .modern_ui_section .ui_images .right_img {justify-content: center;} - .modern_ui_section .ui_images .right_img img:nth-child(1) {top: 0; width: 100px;} - .modern_ui_section .ui_images .right_img img:nth-child(3) {margin-top: 0;} - - /* how it work section */ - .how_it_works .how_it_inner {padding: 50px 15px;} - .how_it_works .step_block ul {padding-top: 30px;} - .how_it_works .step_block ul li , .how_it_works .step_block ul li:nth-child(2) {flex-direction: column; padding-left: 30px;} - .how_it_works .step_block ul li .step_text h4 {font-size: 18px;} - .how_it_works .step_block ul li::before {left: 0; transform: none; height: calc(100% + 10px); top: 40px;} - .how_it_works .step_block ul li:first-child::before {height: calc(100% + 50px);} - .how_it_works .step_block ul li:first-child::after {left: -5px; transform: none; display: none;} - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img , - .how_it_works .step_block ul li:nth-child(2) .step_text, .how_it_works .step_block ul li:nth-child(2) .step_img {text-align: center;} - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 100%;} - .how_it_works .step_block ul li .step_number {position: absolute; top: -5px; left: -23px; width: 50px; height: 50px;} - .how_it_works .step_block ul li:last-child::before {opacity: 0;} - .how_it_works .step_block ul li .step_number h3 {font-size: 15px; margin-bottom: 0; margin-top: -2px;} - .how_it_works .yt_video {margin-top: -50px;} - .how_it_works .yt_video .thumbnil {height: 300px; border-radius: 15px;} - .how_it_works .yt_video .thumbnil img {height: 100%; object-fit: cover; object-position: center; border-radius: 15px;} - .how_it_works .yt_video .thumbnil a {width: 100%;} - .how_it_works .yt_video .thumbnil a .play_btn::after {width: 140px; height: 140px;} - .how_it_works .yt_video .thumbnil a .play_btn::before {width: 120px; height: 120px;} - .how_it_works .yt_video .thumbnil a .play_btn img {height: auto;} - - /* testimonial section */ - .testimonial_section .testimonial_block {margin: 0;} - .testimonial_section .testimonial_block .avtar_faces {display: none;} - .testimonial_section .testimonial_block .testimonial_slide_box {width: 100%;} - - /* pricing section */ - .pricing_section .pricing_pannel .pricing_block {min-height: auto; padding: 30px 15px;} - .pricing_section .pricing_pannel .pricing_block .icon {margin-bottom: 15px;} - .pricing_section .contact_text {margin-top: -20px;} - - /* faq section */ - .faq_section .faq_panel .card-header h2 {text-align: left;} - .faq_section .faq_panel .card-header .btn {font-size: 16px; padding-right: 30px; text-align: left;} - .faq_section .faq_panel .card-body p {text-align: left;} - - /* interface section */ - .interface_section .screen_slider { /*min-height: 720px;*/} - .interface_section .owl-item .screen_frame_img img {transform: scale(1);} - - /* download section */ - .free_app_section .container .free_app_inner {padding: 50px 15px; padding-bottom: 0; z-index: 99;} - .free_app_section .container .free_app_inner .free_img {margin-top: 0; justify-content: center;} - .free_app_section .container .free_app_inner .free_img img {max-width: 100%;} - .free_app_section .container .free_app_inner .free_text .section_title {text-align: center;} - .free_app_section .container .free_app_inner .free_text .app_btn {flex-direction: column;} - .free_app_section .container .free_app_inner .free_text .app_btn li a {width: 200px; text-align: center;} - .free_app_section .container .free_app_inner .free_text .app_btn li:last-child {margin-left: 0; margin-top: 15px;} - - /* latest story section */ - .latest_story .story_box {margin-bottom: 30px;} - - /* newsletter section */ - .newsletter_box form {flex-direction: column; align-items: center;} - .newsletter_box form .form-group {width: 100%;} - .newsletter_box form .form-group .form-control {width: 100%; margin-bottom: 15px;} - .newsletter_box .section_title p {font-size: 13px;} - - /* footer section */ - footer .links , footer .abt_side {margin-bottom: 30px;} - footer .top_footer .social_media {justify-content: center;} - footer .top_footer .social_media li a {margin: 0 5px;} - footer .top_footer .try_out {margin-left: 0;} - footer .app_btn li a {margin: 0 auto;} - footer .bottom_footer .developer_text {text-align: center; margin-top: 10px;} - footer .go_top {right: 10px;} - footer .top_footer .col-md-6 {margin-bottom: 0px;} - - /* animation line section */ - .anim_line , .anim_line.dark_bg {width: 140%;} - - /* latest story section */ - .latest_story .story_box .story_img img {width: 100%;} - - /* go top button section */ - .go_top {bottom: 30px; z-index: 999;} - - .purple_backdrop {display: none;} - - - /* Bread-Crumb */ - .bred_crumb {min-height: 330px;} - .bred_crumb .bred_text h1 {font-size: 24px;} - .bred_crumb .bred_text .search_bar form .form-group {height: 50px;} - .bred_crumb .bred_text .search_bar form .form-group .btn {width: 46px; height: 46px; line-height: 46px;} - .bred_crumb .bred_text {padding: 0 15px; margin-top: 15px;} - .bred_crumb::after {background-size: cover; height: 100px;} - - - - .blog_list_main .blog_text .section_title , .blog_list_story .story_box {text-align: center;} - - .why_we_section .why_inner {padding-bottom: 10px;} - - .experts_team_section .experts_box {padding: 20px; margin-bottom: 15px;} - .pagination_block ul li:not(:first-child , :last-child) a {width: 24px; height: 24px; line-height: 24px; margin: 0 3px; font-size: 12px;} - - .blog_detail_bredcrumb.bred_crumb .bred_text {margin-top: -10px;} - .blog_detail_section .blog_inner_pannel {margin-top: -70px; padding: 25px 20px;} - .blog_detail_section .blog_inner_pannel .section_title {margin-bottom: 20px;} - .blog_detail_section .blog_inner_pannel .section_title h2 {font-size: 22px;} - .blog_detail_section .blog_inner_pannel .info h3 {font-size: 18px;} - .blog_detail_section .blog_inner_pannel .info ul {text-align: left; padding-left: 0;} - .blog_detail_section .blog_inner_pannel .two_img {margin-bottom: 0;} - .blog_detail_section .blog_inner_pannel .two_img img {margin: 10px 0;} - .blog_detail_section .blog_inner_pannel .quote_block .q_icon {left: 50%; transform: translateX(-50%);} - .blog_detail_section .blog_inner_pannel .quote_block {padding: 55px 20px 35px 20px;} - .blog_detail_section .blog_inner_pannel .quote_block h2 {font-size: 18px; line-height: 1.4;} - .blog_detail_section .blog_inner_pannel .blog_authore {flex-direction: column;} - .blog_detail_section .blog_inner_pannel .blog_authore .authore_info {margin-bottom: 30px;} - .blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 {font-size: 18px;} - - .comment_section ul li {flex-direction: column; padding: 20px 0; text-align: left;} - .comment_section ul li .comment {width: 100%; margin-left: 0;} - .comment_section ul li .authore_info {width: 100%; margin-bottom: 15px;} - .comment_section ul li.replay_comment {margin-left: 30px;} - .comment_section ul li .authore_info .text {width: auto;} - - .comment_form_section form .form-group .form-control {height: 45px; font-size: 14px; margin-bottom: 15px;} - - - .signup_form {width: calc(100% - 30px); margin: 0 15px;} - .signup_form form {padding: 0 20px;} - .signup_form form .form-group .form-control {font-size: 14px; height: 50px;} - .signup_form .or_option .google_btn {min-width: 275px; padding: 12px 10px;} - .signup_section .back_btn {top: 15px;} - .signup_section .top_part {padding-top: 35px; padding-bottom: 35px;} - - .review_freeapp {margin: 0 0 40px 0;} - .review_list_section .review_box .rating ul , - .review_list_section .review_box .reviewer {justify-content: flex-start; text-align: center;} - .review_list_section .review_box .reviewer .text {width: auto; text-align: left;} - .review_list_section .review_box {text-align: left;} - - .contact_page_section .contact_inner {margin-top: 40px;} - .contact_page_section .contact_inner .contact_form {padding: 30px 20px;} - .contact_page_section .contact_inner .section_title h2 {font-size: 24px;} - .contact_page_section .contact_inner .contact_form form .form-group .form-control {height: 50px; font-size: 14px;} - .contact_page_section .contact_inner .contact_form form .term_check label {text-align: left; line-height: 1.3;} - .contact_page_section .contact_inner .contact_form form .term_check {align-items: flex-start;} - .contact_page_section .contact_inner .contact_info .section_title {text-align: center;} - .contact_page_section .contact_inner .contact_info .btn {margin-bottom: 30px;} - .contact_page_section .contact_inner .contact_info .contact_info_list li {flex-direction: column;} - .contact_page_section .contact_inner .contact_info .contact_info_list li .img {width: 100%; margin: 0;} - .contact_page_section .contact_inner .contact_info .contact_info_list li .text {width: 100%; margin-top: 10px;} - - .map_section {margin: 15px 0;} - -} - -@media screen and (max-width:640px) { - .features_section .feature_detail .feature_box { justify-content: center; margin: 0 auto; } - .bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 { display: none;} - .query_section .banner_shape1, .banner_shape2, .banner_shape3 { display: none;} - -} - -@media screen and (max-width:479px) { - - /* about app section */ - .about_app_section .about_img::before {left: 49%;} -} \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/css/style.css b/desarrollo/diseno/registro-cliente/css/style.css deleted file mode 100644 index 737a36ad..00000000 --- a/desarrollo/diseno/registro-cliente/css/style.css +++ /dev/null @@ -1,3559 +0,0 @@ -/*----------------------------------------------------------------------------------- - -[Table of contents] - -1. Font -2. Css Variable for colors -3. Common CSS -4. Preloader CSS -5. Header - Main Navigation ( section ) -6. Hero Slider ( section ) -7. Trusted Logo Slider ( section ) -8. Features ( section ) -9. About us ( section ) -10. Modern UI ( section ) -11. How it works ( section ) -12. Testimonials ( section ) -13. Pricing ( section ) -14. Faq ( section ) -15. Interface ( section ) -16. Download app ( section ) -17. Latest story ( section ) -18. Newsletter ( section ) -19. Footer ( section ) -20. Animation CSS ( section ) - - ------------------------------------------------------------------------------------*/ - - -/* --------Font--------------- */ -/* poppins-300 - latin */ -@font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 300; - src: url('../fonts/poppins-v20-latin-300.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-300.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-300.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-regular - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 400; - src: url('../fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-italic - latin */ - @font-face { - font-family: 'Poppins'; - font-style: italic; - font-weight: 400; - src: url('../fonts/poppins-v20-latin-italic.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-italic.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-500 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 500; - src: url('../fonts/poppins-v20-latin-500.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-500.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-500italic - latin */ - @font-face { - font-family: 'Poppins'; - font-style: italic; - font-weight: 500; - src: url('../fonts/poppins-v20-latin-500italic.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-500italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-500italic.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-600 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 600; - src: url('../fonts/poppins-v20-latin-600.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-600.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-700 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 700; - src: url('../fonts/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-800 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 800; - src: url('../fonts/poppins-v20-latin-800.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-800.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-800.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */ - } - -/* -----------Css-variable------ */ - -:root { - --light-purple: #F6F4FE; - --purple: #6A49F2; - --bg-purple: #6A49F2; - --dark-purple: #32236F; - --body-text-purple: #3E3F66; - --text-white: #ffffff; - --bg-white: #ffffff; - --slider-dots-color: #D4D2DD; - --light-bg: #DFDAF3; -} - - - -/* ------Common-Css------------- */ - -html{scroll-behavior:smooth} - -body { - margin: 0; - padding: 0; - box-sizing: border-box; - font-size: 16px; - line-height: 1.7; - font-family: 'Poppins', sans-serif; - color: var(--body-text-purple); - background-color: var(--light-purple); -} - -.page_wrapper { - width: 100%; - overflow-x: hidden; -} - -a { - text-decoration: none; - color: var(--body-text-purple); -} - -a:hover { - text-decoration: none; - color: var(--body-text-purple); -} - -ul, -li { - padding: 0; - list-style-type: none; - margin: 0; -} - -button:focus, -.btn.focus, -.btn:focus { - outline: none; - box-shadow: none; -} - -@media screen and (min-width:1200px) { - .container { - max-width: 1170px; - } -} - -.section_title { - text-align: center; -} - -/* section heading h2 */ -.section_title h2 { - font-size: 40px; - font-weight: 700; - color: var(--dark-purple); -} - -.section_title h2 span { - color: var(--purple); -} - -.row_am { - padding: 50px 0; -} - -/* purple button */ -.puprple_btn { - background-color: var(--purple); - color: var(--text-white); - border-radius: 50px; - padding: 10px 40px; - position: relative; - overflow: hidden; - z-index: 1; - font-weight: 500; -} - -.puprple_btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-white); - border-radius: 50px; - transition: .6s all; - z-index: -1; -} - -.puprple_btn:hover::before { - width: 100%; -} - -.puprple_btn:hover { - color: var(--purple); -} - -/* white button */ -.white_btn { - padding: 10px 45px; - border: 1px solid var(--purple); - color: var(--purple); - border-radius: 50px; - background-color: var(--bg-white); - font-weight: 700; - position: relative; - z-index: 1; - overflow: hidden; - font-weight: 500; -} - -.white_btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-purple); - border-radius: 50px; - transition: .6s all; - z-index: -1; -} - -.white_btn:hover::before { - width: 110%; -} - -.white_btn:hover { - color: var(--text-white); -} - -.highlited_block .white_btn:hover { - border-color: var(--bg-white); -} - -/* slider controls */ -.owl-carousel .owl-dots { - display: flex; - align-items: center; - justify-content: center; - position: relative; - margin-top: 20px; -} - -.owl-carousel .owl-dots button { - display: block; - width: 15px; - height: 15px; - background-color: #faad9b; - border-radius: 15px; - margin: 0 5px; -} - -.owl-carousel .owl-dots button.active { - background-color: #E63108; -} - -/* -------------Preloader-Css-Start-------------- */ - -/* Preloader */ -#preloader { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: rgba(255, 255, 255, 0.9); - z-index: 999999; -} - -#loader { - display: block; - position: relative; - left: 50%; - top: 50%; - width: 150px; - height: 150px; - margin: -75px 0 0 -75px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #E63108; - -webkit-animation: spin 2s linear infinite; - animation: spin 2s linear infinite; -} - -#loader:before { - content: ""; - position: absolute; - top: 5px; - left: 5px; - right: 5px; - bottom: 5px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #003b73; - -webkit-animation: spin 3s linear infinite; - animation: spin 3s linear infinite; -} - -#loader:after { - content: ""; - position: absolute; - top: 15px; - left: 15px; - right: 15px; - bottom: 15px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #E63108; - -webkit-animation: spin 1.5s linear infinite; - animation: spin 1.5s linear infinite; -} - -@-webkit-keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - - - - -/* -----------Header-Css-Start------------------- */ -/* header wraper */ -header { - position: relative; - width: 100%; - z-index: 99999; - transition: .4s all; -} - -header.fix_style { - position: fixed; - top: 0; - backdrop-filter: blur(5px); - background-color: #ffffffb4; - padding: 15px 0; - transition: none; - opacity: 0; - pointer-events: none; -} - -header.fixed { - pointer-events: all; - opacity: 1; - transition: .4s all; -} - -header.fixed .navbar { - padding: 0; -} - -/* navigation bar */ -.navbar { - padding-left: 0; - padding-right: 0; - padding-top: 35px; -} - -.navbar-expand-lg .navbar-nav { - align-items: center; -} - -.navbar-expand-lg .navbar-nav .nav-link { - padding: 5px 20px; - font-weight: 500; -} - -.navbar-expand-lg .navbar-nav .nav-link:hover { - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn { - color: var(--text-white); - background-color: var(--purple); - font-size: 16px; - padding: 9px 40px; - border-radius: 25px; - margin-left: 20px; - position: relative; -} - - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before, -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - content: ''; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 42px; - z-index: -1; -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before { - animation: pulse-blue-medium-sm 3.5s infinite -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - animation: pulse-blue-small-sm 3.5s infinite -} - -.navbar-brand img { - width: 150px; -} - -/* navigation bar dropdown */ -.navbar-expand-lg .navbar-nav .has_dropdown { - display: flex; - align-items: center; - position: relative; - border-radius: 10px 10px 0 0; - transition: .4s all; -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover { - background-color: var(--bg-white); - box-shadow: 0px 4px 10px #c5c5c580; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn { - position: relative; - right: 15px; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu { - position: absolute; - top: 100%; - background-color: var(--bg-white); - border-radius: 0 10px 10px 10px; - min-width: 210px; - max-width: 230px; - margin-top: -10px; - transition: .4s all; - opacity: 0; - pointer-events: none; - box-shadow: 0px 4px 10px #c5c5c580; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul { - margin-left: 0; - padding: 10px 20px; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a { - font-size: 15px; - position: relative; - transition: .4s all; - line-height: 35px; - font-weight: 500; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before { - content: ""; - width: 10px; - height: 10px; - display: inline-block; - border: 2px solid var(--purple); - border-radius: 10px; - margin-right: 5px; - position: absolute; - left: -10px; - top: 50%; - transform: translateY(-50%); - opacity: 0; - transition: .4s all; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover { - padding-left: 15px; - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before { - opacity: 1; - left: 0; -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover>a, -.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn { - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu { - opacity: 1; - pointer-events: all; - margin-top: -1px; -} - -/* navigation toggle menu */ -.toggle-wrap { - padding: 10px; - position: relative; - cursor: pointer; - - /*disable selection*/ - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - } - - .toggle-bar, - .toggle-bar::before, - .toggle-bar::after, - .toggle-wrap.active .toggle-bar, - .toggle-wrap.active .toggle-bar::before, - .toggle-wrap.active .toggle-bar::after { - -webkit-transition: all .2s ease-in-out; - -moz-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; - } - - .toggle-bar { - width: 25px; - margin: 10px 0; - position: relative; - border-top: 4px solid var(--body-text-purple); - display: block; - } - - .toggle-bar::before, - .toggle-bar::after { - content: ""; - display: block; - background: var(--body-text-purple); - height: 4px; - width: 30px; - position: absolute; - top: -12px; - right: 0px; - -ms-transform: rotate(0deg); - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - -ms-transform-origin: 13%; - -webkit-transform-origin: 13%; - transform-origin: 13%; - } - - .white_header .toggle-bar , - .white_header .toggle-bar::before, - .white_header .toggle-bar::after { - border-top: 4px solid var(--bg-white); - } - - .toggle-bar::after { - top: 4px; - } - - .toggle-wrap.active .toggle-bar { - border-top: 6px solid transparent; - } - - .toggle-wrap.active .toggle-bar::before { - -ms-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - } - - .toggle-wrap.active .toggle-bar::after { - -ms-transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - } - - -/* ---------Hero-Slider-Css-Start------------------ */ -/* hero slider wraper */ -.banner_section { - margin-top: 70px; - position: relative; -} - -.banner_section .container { - position: relative; -} - -/* wave backgound after banner */ -.banner_section::after { - content: ""; - display: block; - /* background-image: url(../images/banner-shape.svg); */ - background-size: cover; - background-repeat: no-repeat; - width: 100%; - height: 200px; - background-position: center; - margin-top: -50px; -} - -.banner_section .row { - align-items: center; -} - -/* hero slider text */ -.banner_section .banner_text { - margin-top: -50px; -} - -/* hero slider heading h1 */ -.banner_section .banner_text h1 { - font-size: 55px; - color: #003b73; - letter-spacing: -1.5px; - font-weight: 700; -} - -.banner_section .banner_text h1 span { - color: var(--purple); -} - -/* hero slider button */ -.banner_section .app_btn { - display: flex; - align-items: center; -} - -/* hero slider list */ -.banner_section .app_btn li a { - display: block; - padding: 12px 30px; - background-color: var(--bg-white); - border: 2px solid #003b73; - position: relative; - border-radius: 12px; - transition: .4s all; -} - -.banner_section .app_btn li:last-child { - margin-left: 25px; -} - - -.banner_section .app_btn li a img { - transition: .4s all; -} - -.banner_section .app_btn li a .white_img { - position: absolute; - left: 50%; - transform: translateX(-50%); - opacity: 0; -} - -.btn-lapieza{ - margin-bottom: 4%; - max-width: 184px; - width: 100%; - height: 20%; - display: inline-block; - font-weight: 600; - color: #fff; - text-align: center; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 3.5; - border-radius: 15px; - background-color: #E63108; - /* transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; */ -} - -.btn-lapieza{ - margin-bottom: 4%; - max-width: 184px; - width: 100%; - height: 20%; - display: inline-block; - font-weight: 600; - color: #fff; - text-align: center; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 3.5; - border-radius: 15px; - background-color: #E63108; - transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; -} - -.btn-lapieza button:hover { - background-color: #003b73; - color: white; -} - -.banner_section .app_btn li a:hover { - background-color: #003b73; -} - -.banner_section .app_btn li a:hover .blue_img { - opacity: 0; -} - -.banner_section .app_btn li a:hover .white_img { - opacity: 1; -} - -/* hero slider users */ -.banner_section .used_app { - display: flex; - align-items: center; - margin-top: 35px; -} - -.banner_section .used_app ul { - display: flex; - align-items: center; - margin-right: 10px; -} - -.banner_section .used_app ul li:not(:first-child) { - margin-left: -15px; -} - -.banner_section .used_app p { - font-size: 15px; - line-height: 19px; - margin-bottom: 0; -} - -/* hero slider images */ -.banner_section .banner_slider { - display: flex; - position: relative; -} - -.banner_section .banner_slider .left_icon { - position: absolute; - left: 15px; - bottom: 70px; - z-index: 9999; -} - -.banner_section .banner_slider .right_icon { - position: absolute; - right: 15px; - top: 70px; -} - -/* hero slider mobile frame */ -.banner_section .banner_slider .slider_frame { - position: absolute; - left: 50%; - transform: translateX(-50%); - z-index: 999; - width: 315px; -} - -.banner_section .banner_slider #frmae_slider::before { - content: ""; - position: absolute; - left: 5px; - top: 5px; - background-color: #fff; - width: calc(100% - 10px); - height: 92%; -} - -.banner_section .banner_slider::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 475px; - height: 475px; - border-radius: 100%; - background-color: #003b73; - z-index: -5; -} - -.banner_section .banner_slider #frmae_slider { - width: 305px; - margin: 0 auto; -} - -/* hero slider control dots */ -.banner_section .owl-dots { - margin-top: 40px; -} - -.owl-carousel .owl-item img { - max-width: 100%; - width: auto; -} - - - - -/* ------------Trusted-Section-Css-Start----------- */ - -/* trusted logos wraper */ -.trusted_section { - margin-top: 40px; -} - -.trusted_section .company_logos { - padding-top: 20px; -} - -.trusted_section .company_logos img { - filter: grayscale(1); - margin: 0 auto; - transition: .4s all; -} - -.trusted_section .company_logos img:hover { - filter: grayscale(0); -} - - - -/* ----------Feature-Detail-Section-start------ */ - -/* features section wraper */ -.features_section .feature_detail { - background-color: var(--bg-white); - border-radius: 30px; - position: relative; - display: flex; - justify-content: space-between; - margin-top: 120px; - padding-top: 60px; - padding-bottom: 20px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* features section image */ -.features_section .feature_detail .feature_img { - position: absolute; - left: 50%; - transform: translateX(-50%); - top: -75px; -} - -.features_section .feature_detail .feature_img img { - max-width: 100%; -} - -/* features section box */ - -.features_section .feature_detail .feature_box { - max-width: 410px; -} - -.features_section .feature_detail .feature_box .data_block { - margin-bottom: 50px; -} - -.features_section .feature_detail .feature_box .data_block h4 { - font-size: 20px; - color: var(--dark-purple); - font-weight: 600; -} - -.features_section .feature_detail .left_data { - text-align: right; - padding-left: 130px; -} - -.features_section .feature_detail .right_data { - padding-right: 130px; -} - -.features_section .feature_detail .left_data .data_block .icon { - margin-right: -15px; -} - -.features_section .feature_detail .right_data .data_block .icon { - margin-left: -15px; -} - -.features_section .container { - max-width: 1370px; -} - - - -/* -----------------About-App-Section-Css-Start------------------ */ - -/* about us section wraper */ -.about_app_section .about_img { - display: flex; - align-items: center; - position: relative; -} - -/* about us section images*/ -.about_app_section .about_img img { - max-width: 100%; -} - -.about_app_section .about_img::before { - content: ""; - position: absolute; - left: 38%; - top: 50%; - transform: translate(-50%, -50%); - width: 500px; - height: 500px; - background-color: var(--bg-white); - border-radius: 100%; - z-index: -1; -} - -.about_app_section .about_img .screen_img { - margin-left: -135px; - margin-top: 110px; -} - -.about_app_section .about_text .section_title { - text-align: left; -} - -.about_app_section .about_text .section_title h2 { - margin-bottom: 15px; -} - -/* about us section statastics nomber */ -.about_app_section .about_text .app_statstic { - display: flex; - flex-wrap: wrap; - justify-content: space-between; - margin-bottom: 10px; - margin-top: 40px; -} - -.about_app_section .about_text .app_statstic li { - width: 248px; - background-color: var(--bg-white); - margin-bottom: 30px; - display: flex; - align-items: center; - border-radius: 12px; - padding: 15px 10px; - padding-left: 35px; - box-shadow: 0px 4px 10px #EDE9FE; -} - -.about_app_section .about_text .app_statstic li .icon { - margin-right: 9px; -} - -.about_app_section .about_text .app_statstic li p { - margin-bottom: 0; - line-height: 1; - color: var(--dark-purple); -} - -.about_app_section .about_text .app_statstic li p:first-child { - font-size: 40px; - font-weight: 600; - margin-bottom: 3px; -} - - -/* -------------Modern-Ui-Section-Css-Start---------------- */ -/* modern ui section wraper */ -.modern_ui_section .row { - align-items: center; -} - -.modern_ui_section .design_block { - margin-top: 45px; -} - -/* modern ui text */ -.modern_ui_section .section_title { - text-align: left; -} - -.modern_ui_section .ui_text { - padding-right: 75px; -} - -/* modern ui list */ -.modern_ui_section .design_block li { - padding-left: 40px; - position: relative; - margin-bottom: 25px; -} - -.modern_ui_section .design_block li::before { - content: ""; - position: absolute; - left: 0; - top: 5px; - background-image: url(../images/right_icon.png); - width: 22px; - height: 22px; - background-repeat: no-repeat; - background-position: center; - background-size: contain; -} - -.modern_ui_section .design_block li h4 { - font-size: 20px; - color: var(--dark-purple); - font-weight: 600; - margin-bottom: 8px; -} - -.modern_ui_section .design_block li p { - margin-bottom: 0; -} - -/* modern ui images */ -.modern_ui_section .ui_images { - display: flex; - position: relative; -} - -.modern_ui_section .ui_images::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 570px; - height: 570px; - border-radius: 100%; - background-color: var(--bg-white); - z-index: -1; -} - -.modern_ui_section .ui_images .right_img img:nth-child(3) { - margin-left: -140px; - margin-top: -20px; -} - -.modern_ui_section .ui_images .right_img img:nth-child(2) { - margin-left: -90px; - margin-top: -20px; -} - -.modern_ui_section .ui_images .right_img img:nth-child(1) { - position: relative; - top: 15px; - z-index: 99; - margin-left: -15px; -} - - -/* -------------How_It_Works-Section-Css-Start------------------ */ - -/* how it works wraper */ -.how_it_works .container { - max-width: 1370px; -} - -.how_it_works .how_it_inner { - background-color: var(--bg-white); - padding: 70px 0; - padding-bottom: 36px; - border-radius: 30px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* how it works list */ -.how_it_works .step_block ul { - max-width: 1080px; - margin: 0 auto; - padding: 10px; -} - -.how_it_works .step_block ul li { - display: flex; - align-items: center; - justify-content: space-between; - position: relative; - margin-bottom: 50px; -} - -.how_it_works .step_block ul li::before { - content: ""; - position: absolute; - left: 50%; - top: 50px; - transform: translateX(-50%); - width: 4px; - height: calc(100% + 100px); - background-color: var(--light-bg); -} - -.how_it_works .step_block ul li:first-child::after { - content: ""; - position: absolute; - left: 50%; - top: 0; - transform: translateX(-50%); - width: 14px; - height: 14px; - background-color: var(--light-bg); - border-radius: 15px; -} - -.how_it_works .step_block ul li:first-child::before { - top: 0; -} - -.how_it_works .step_block ul li:last-child::before { - height: 50%; - top: 0; -} - -.how_it_works .step_block ul li .step_text, -.how_it_works .step_block ul li .step_img { - width: 360px; - text-align: right; -} - -/* how it works image */ -.how_it_works .step_block ul li .step_img img { - max-width: 100%; -} - -/* how it works heading h4 */ -.how_it_works .step_block ul li .step_text h4 { - font-size: 20px; - font-weight: 600; -} - -.how_it_works .step_block ul li .step_text .app_icon { - margin-bottom: 10px; -} - -.how_it_works .step_block ul li .step_text .app_icon a { - display: inline-block; - width: 40px; - height: 40px; - border-radius: 100%; - background-color: var(--light-bg); - color: var(--text-white); - font-size: 20px; - text-align: center; - line-height: 40px; - transition: .4s all; -} - -.how_it_works .step_block ul li .step_text .app_icon a:hover { - background-color: var(--purple); -} - -.how_it_works .step_block ul li .step_text span { - font-weight: 600; -} - -.how_it_works .step_block ul li .step_text span a { - color: var(--purple); - text-decoration: underline; -} - -.how_it_works .step_block ul li:nth-child(2) { - flex-direction: row-reverse; -} - -.how_it_works .step_block ul li:nth-child(2) .step_text, -.how_it_works .step_block ul li:nth-child(2) .step_img { - text-align: left; -} - -/* how it works numbers */ -.how_it_works .step_block ul li .step_number { - background-image: url(../images/icon_bg.png); - background-size: cover; - background-repeat: no-repeat; - background-position: center; - width: 110px; - height: 110px; - display: flex; - justify-content: center; - align-items: center; - position: relative; -} - -/* how it works numbers heading h3 */ -.how_it_works .step_block ul li .step_number h3 { - font-size: 30px; - font-weight: 600; -} - -/* how it works video */ -.how_it_works .yt_video { - max-width: 1170px; - margin: 0 auto; - margin-top: -200px; - position: relative; - overflow: hidden; -} - -/* how it works video animation line */ -.how_it_works .yt_video .anim_line { - z-index: 999; -} - -.how_it_works .yt_video .thumbnil { - position: relative; -} - -.how_it_works .yt_video .thumbnil img { - max-width: 100%; -} - -.how_it_works .yt_video .thumbnil a { - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - text-align: center; - color: var(--text-white); - font-weight: 600; - z-index: 999; - cursor: pointer; -} - -.how_it_works .yt_video .thumbnil a span { - display: block; - font-weight: 700; - font-size: 30px; -} - -.how_it_works .yt_video .thumbnil a .play_btn { - background-color: rgba(255, 255, 255, 0.1); - width: 96px; - height: 96px; - border-radius: 100px; - text-align: center; - margin: 0 auto; - line-height: 96px; - position: relative; - display: block; - margin-bottom: 40px; -} - -.how_it_works .yt_video .thumbnil a .play_btn img { - width: 50px; - position: relative; - z-index: 999; -} - -/* how it works video model */ -.modal { - z-index: 999999; -} - -.modal-backdrop.show { - z-index: 99999; - opacity: .7; -} - -.youtube-video .modal-dialog { - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - margin: auto; - width: 100%; - padding: 0 15px; - height: 100%; - max-width: 1240px !important; - display: flex; - flex-direction: column; - justify-content: center; -} - -#video-container { - position: relative; - padding-bottom: 50%; - padding-top: 30px; - height: 0; - overflow: hidden; -} - -iframe#youtubevideo { - position: absolute; - top: 0; - left: 0; - height: 100%; - width: 100%; -} -.youtube-video .modal-footer { - border: none; - text-align: center; - display: block; - padding: 0; -} - -.youtube-video .modal-content { - background: none !important; - border: none; -} - -#close-video { - color: #fff; - font-size: 30px; -} - -/* ------------Testimonial-Slider-Css-Start------------- */ -/* testimonials wraper */ -#testimonial_slider { - max-width: 550px; - margin: 0 auto; -} - -.testimonial_section .testimonial_block { - background-image: url(../images/testimonial_bg.png); - background-size: cover; - background-position: center; - position: relative; - margin-top: 65px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box { - text-align: center; - width: 430px; - padding: 10px; - margin: 0 auto; -} - -/* testimonials rating */ -.testimonial_section .testimonial_block .rating span { - color: #FC9400; - font-size: 18px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box .review { - margin-top: 10px; - margin-bottom: 30px; -} - -/* testimonials image */ -.testimonial_section .testimonial_block .testimonial_slide_box .testimonial_img img { - margin: 0 auto; -} - -/* testimonials heading h3 */ -.testimonial_section .testimonial_block .testimonial_slide_box h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 0; - margin-top: 10px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box .designation { - font-size: 15px; -} - -/* testimonials total review */ -.testimonial_section .total_review { - text-align: center; - margin-top: 60px; -} - -.testimonial_section .total_review .rating { - display: flex; - align-items: center; - justify-content: center; -} - -/* testimonials paragraph */ -.testimonial_section .total_review .rating p { - margin-bottom: 0; - font-weight: 600; - margin-left: 5px; - color: var(--dark-purple); -} - -/* testimonials heading */ -.testimonial_section .total_review h3 { - font-size: 50px; - font-weight: 600; - margin-bottom: 0; - color: var(--dark-purple); -} - -.testimonial_section .total_review a { - color: var(--purple); - font-weight: 700; -} - -.testimonial_section .testimonial_block .avtar_faces { - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); - z-index: -1; - width: 100%; -} - -.testimonial_section .testimonial_block .avtar_faces img { - max-width: 100%; -} - - -/* -------------------Pricing-Section---------------------- */ - -/* pricing wraper */ -.pricing_section .toggle_block { - display: flex; - align-items: center; - justify-content: center; -} - -/* pricing toggle button */ -.pricing_section .toggle_block span { - color: var(--dark-purple); - font-weight: 600; - display: block; - margin: 0 5px; -} - -.tog_btn.month_active { - left: 35px !important; -} - -.pricing_section .toggle_block span.deactive { - color: var(--body-text-purple); -} - -.pricing_section .toggle_block .offer { - background-color: var(--bg-white); - border-radius: 5px; - padding: 2px 10px; - font-weight: 400; - font-size: 13px; - color: var(--purple); -} - -.pricing_section .toggle_block .tog_block { - width: 70px; - height: 35px; - background-color: var(--bg-white); - border-radius: 18px; - margin: 0 10px; - position: relative; - cursor: pointer; -} - -.pricing_section .toggle_block .tog_block .tog_btn { - height: 23px; - width: 23px; - border-radius: 25px; - display: block; - background-color: var(--purple); - position: absolute; - left: 3px; - top: 50%; - transform: translateY(-50%); - transition: .4s all; -} - -.pricing_section .toggle_block .month.active, -.pricing_section .toggle_block .years.active { - color: var(--purple); -} - -/* pricing pannel */ -.pricing_section .pricing_pannel { - margin-top: 50px; - display: none; -} - -.pricing_section .pricing_pannel.active { - display: block; -} - -.pricing_section .pricing_pannel .pricing_block { - text-align: center; - background-color: var(--bg-white); - min-height: 700px; - border-radius: 12px; - padding-top: 60px; - margin-bottom: 40px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -.pricing_section .pricing_pannel .pricing_block.highlited_block { - background-color: var(--purple); -} - -.pricing_section .pricing_pannel .pricing_block.highlited_block p, -.pricing_section .pricing_pannel .pricing_block.highlited_block h3, -.pricing_section .pricing_pannel .pricing_block.highlited_block span, -.pricing_section .pricing_pannel .pricing_block.highlited_block .pkg_name span { - color: var(--text-white); -} - -.pricing_section .pricing_pannel .pricing_block .icon { - margin-bottom: 35px; -} - -/* pricing box image */ -.pricing_section .pricing_pannel .pricing_block .icon img { - width: 120px; -} - -/* pricing box heading h3 */ -.pricing_section .pricing_pannel .pricing_block .pkg_name h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 0; -} - -.pricing_section .pricing_pannel .pricing_block .pkg_name span { - color: var(--body-text-purple); - font-size: 15px; -} - -.pricing_section .pricing_pannel .pricing_block .price { - font-size: 48px; - color: var(--purple); - margin: 25px 0; - display: block; - font-weight: 600; -} - -/* pricing box list */ -.pricing_section .pricing_pannel .pricing_block .benifits { - margin-bottom: 40px; -} - -.pricing_section .pricing_pannel .pricing_block .benifits li p { - margin-bottom: 5px; -} - -.pricing_section .contact_text { - text-align: center; - margin-bottom: 0; -} - -.pricing_section .contact_text a { - color: var(--purple); - text-decoration: underline; -} - - -/* -------------FAQ-Section-Css-Start----------------- */ - -/* faq wraper */ -.faq_section .faq_panel { - margin-top: 40px; -} - -/* faq box */ -.faq_section .faq_panel .card { - border: none; - margin-bottom: 20px; - border-radius: 12px; - box-shadow: 0 4px 10px #EDE9FE; - padding: 16px 0; -} - -.faq_section .faq_panel .card:last-child { - margin-bottom: 0; -} - -.faq_section .faq_panel .card-header { - background-color: transparent; - border: none; - padding-bottom: 0; - padding-top: 0; -} - -.faq_section .faq_panel .card-header .btn { - padding: 0; - color: var(--dark-purple); - font-weight: 600; - font-size: 20px; -} - -.faq_section .faq_panel .card-header .btn.active { - color: var(--purple); -} - -.faq_panel .accordion button, -.faq_panel .accordion button:hover, -.faq_panel .accordion button:focus { - text-decoration: none; -} - -.faq_section .faq_panel .card-header .icon_faq { - position: absolute; - right: 20px; - color: #839BC0; -} - -/* faq heading h2 */ -.faq_section .faq_panel .card-header h2 { - line-height: 1; -} - -/* faq paragraph */ -.faq_section .faq_panel .card-body { - padding-bottom: 0; -} - - -/* -----------Interface_Section-Css-Start----------------- */ - -/* interface wraper */ -.interface_section .screen_slider { - margin-top: 35px; - min-height: 720px; -} - -/* interface images */ -.interface_section .owl-item .screen_frame_img img { - transform: scale(.9); - border: 2px solid #000; - border-radius: 20px; - transition: 1s all; - margin: 0 auto; -} - -.interface_section .owl-item.center .screen_frame_img img { - transform: scale(1); - border: 3px solid #000; - -} - - -/* -----------Download_App_Section-Start------------------ */ - -/* download app wraper */ -.free_app_section { - padding-top: 70px; - position: relative; -} - -.free_app_section .container { - max-width: 1370px; -} - -.free_app_section .container .free_app_inner { - background-color: #003b73; - border-radius: 30px; - padding: 20px 100px; - padding-bottom: 50px; - position: relative; - z-index: 999999; -} - -/* download app dark background */ -.free_app_section .container .free_app_inner .dark_bg { - overflow: hidden; -} - -.free_app_section .container .free_app_inner .dark_bg span { - z-index: 9999; -} - -.free_app_section .container .free_app_inner .row { - align-items: center; -} - -.free_app_section .container .free_app_inner .free_text .section_title { - text-align: left; -} - -/* download app heading h2 */ -.free_app_section .container .free_app_inner .free_text .section_title h2 { - margin-bottom: 20px; -} - -.free_app_section .container .free_app_inner .free_text .section_title h2, -.free_app_section .container .free_app_inner .free_text .section_title p { - color: var(--text-white); -} - -.free_app_section .container .free_app_inner .free_text .app_btn { - display: flex; - align-items: center; -} - -.free_app_section .container .free_app_inner .free_text .app_btn li a { - display: block; - padding: 12px 30px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; -} - -.free_app_section .container .free_app_inner .free_text .app_btn li a:hover { - -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); --moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -} - -.free_app_section .container .free_app_inner .free_text .app_btn li:last-child { - margin-left: 25px; -} - -.free_app_section .container .free_app_inner .free_img { - display: flex; - align-items: center; - margin-top: -120px; -} - -.free_app_section .container .free_app_inner .free_img img:last-child { - margin-left: -65px; -} - -.purple_backdrop { - content: ""; - position: fixed; - left: 0; - top: 0; - background-color: #E63108; - width: 100%; - height: 100%; - z-index: 99999; - opacity: 0; - transition: .4s all; - pointer-events: none; -} - -/* ---------------Latest_Story-Css-Start------------- */ - -/* latest story wraper */ -.latest_story { - margin-bottom: 80px; -} - -/* latest story box */ -.latest_story .story_box { - background-color: var(--bg-white); - text-align: center; - border-radius: 10px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* latest story image */ -.latest_story .story_box .story_img { - position: relative; -} - -.latest_story .story_box .story_img img { - max-width: 100%; - border-radius: 12px; -} - -.latest_story .story_box .story_img span { - position: absolute; - left: 15px; - top: 15px; - font-size: 14px; - color: var(--text-white); -} - -/* latest story pargraph */ -.latest_story .story_box .story_text { - padding: 20px 30px; -} - -/* latest story heading h3 */ -.latest_story .story_box .story_text h3 { - color: var(--dark-purple); - font-size: 20px; - margin-bottom: 15px; - font-weight: 600; -} - -/* latest story link text */ -.latest_story .story_box .story_text a { - color: var(--purple); - margin-top: 25px; - display: block; - font-size: 14px; - margin-bottom: 10px; - font-weight: 600; -} - -.latest_story .story_box .story_text a:hover { - text-decoration:underline; -} - - - -/* -------------Newsletter-Section-Css-Start------------- */ - -/* newsletter wraper */ -.newsletter_box { - background-color: var(--bg-purple); - padding: 50px; - border-radius: 12px; - box-shadow: 0 4px 10px #0c0c0c21; - display: flex; - justify-content: space-between; - align-items: center; - margin-bottom: -95px; - position: relative; - z-index: 99; -} - -.newsletter_box .section_title { - width: 45%; -} - -.newsletter_box form { - width: 60%; -} - -/* newsletter heading h2 */ -.newsletter_box .section_title h2 { - margin-bottom: 5px; - letter-spacing: -1px; -} - -.newsletter_box .section_title h2, -.newsletter_box .section_title p { - color: var(--text-white); - text-align: left; -} - -/* newsletter paragraph */ -.newsletter_box .section_title p { - margin-bottom: 0; -} - -/* newsletter input */ -.newsletter_box form { - display: flex; -} - -.newsletter_box form .form-group { - margin-bottom: 0; -} - -.newsletter_box form .form-group .form-control { - width: 430px; - height: 55px; - border-radius: 6px; - color: var(--dark-purple); -} - -.newsletter_box form .form-group .form-control::placeholder { - color: var(--dark-purple); -} - -/* newsletter button */ -.newsletter_box form .form-group .btn { - height: 55px; - width: 170px; - text-transform: uppercase; - color: var(--purple); - background-color: var(--bg-white); - border-radius: 6px; - margin-left: 10px; - font-weight: 600; - position: relative; - overflow: hidden; - z-index: 1; -} - -.newsletter_box form .form-group .btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-purple); - border-radius: 0; - transition: .6s all; - z-index: -1; -} - -.newsletter_box form .form-group .btn:hover::before { - width: 100%; -} - -.newsletter_box form .form-group .btn:hover { - color: var(--text-white); -} - - -/* ------Footer-Css-Start-------------- */ -/* footer wraper */ -footer { - position: relative; -} - -footer .top_footer { - background-color: #583BD3; - padding: 180px 0 60px 0; - position: relative; - overflow: hidden; -} - -footer .top_footer.has_bg { - background-image: url(../images/footer_bg.png); - background-size: cover; - background-repeat: no-repeat; - background-position: center; -} - -/* footer logo */ -footer .top_footer .logo { - margin-bottom: 40px; -} - -footer .top_footer .logo img { - width: 150px; -} - -footer .top_footer .abt_side li { - padding: 0 0 10px 0; -} - -/* footer social media icon */ -footer .top_footer .social_media { - display: flex; - margin-top: 20px; -} - -/* footer link list */ -footer .top_footer .social_media li a { - display: block; - width: 37px; - height: 37px; - text-align: center; - line-height: 37px; - font-size: 15px; - border: 1px solid rgba(255, 255, 255, 0.3); - border-radius: 50px; - margin-right: 10px; - transition: .4s all; -} - -footer .top_footer .social_media li a:hover { - background-color: var(--bg-white); - color: var(--purple); -} - -footer .top_footer .try_out { - margin-left: -20px; -} - -footer .app_btn li a { - display: block; - padding: 12px 10px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; - width: 175px; - text-align: center; -} - -footer .app_btn li a:hover { - -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); - -moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); - box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -} - -footer .app_btn li:last-child { - margin-top: 20px; -} - -footer .bottom_footer { - background-color: var(--bg-purple); -} - -/* footer heading and text colors variable */ -footer h2, -footer h3, -footer p, -footer a { - color: var(--text-white); -} - -footer a:hover { - color: var(--text-white); -} - -/* footer heading h3 */ -footer h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 50px; - padding-top: 10px; -} - -footer .links ul li a { - display: block; - margin-bottom: 10px; -} - -/* footer last */ -footer .bottom_footer { - padding: 20px 0; -} - -footer .bottom_footer p { - margin-bottom: 0; - font-size: 15px; -} - -footer .bottom_footer .developer_text { - text-align: right; -} - -footer .bottom_footer .developer_text a { - text-decoration: underline; -} - -/* footer go top button */ -.go_top { - position: fixed; - right: 30px; - bottom: 75px; - cursor: pointer; - transition: .4s all; - opacity: 0; -} - -.go_top:hover { - bottom: 80px; -} - -/* -----------Animation-Css-Start-------------- */ - -/* animation line wraper */ -.anim_line { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); -} - -.anim_line span { - position: absolute; - z-index: 99999; - top: -275px; - animation: star_down_one 6s infinite linear; - opacity: 0; -} - -.anim_line.dark_bg { - max-width: 1170px; -} - -.anim_line.dark_bg span { - transform: rotate(180deg); -} - -.anim_line span:first-child { - left: -17%; - animation-delay: 3s; -} - -.anim_line span:nth-child(2) { - left: 0%; - animation-delay: 5s; -} - -.anim_line span:nth-child(3) { - left: 17%; - animation-delay: 1s; -} - -.anim_line span:nth-child(4) { - left: 34%; - animation-delay: 4s; -} - -.anim_line span:nth-child(5) { - left: 51%; - animation-delay: 7s; -} - -.anim_line span:nth-child(6) { - left: 68%; -} - -.anim_line span:nth-child(7) { - left: 85%; - animation-delay: 3s; -} - -.anim_line span:nth-child(8) { - left: 99%; - animation-delay: 2s; -} - -.anim_line span:nth-child(9) { - left: 117%; - animation-delay: 5s; -} - -/* footer .top_footer .anim_line span:first-child { - left: 5%; -} - -footer .top_footer .anim_line span:nth-child(2) { - left: 13%; -} */ - -@keyframes star_down_one { - 0% { - opacity: 0; - top: -250px; - } - - 10% { - opacity: 1; - } - - 90% { - opacity: 1; - } - - 100% { - top: 100%; - opacity: 0; - } -} - - - - -/* --------Object-Moving-Animation-Css-Start----- */ -.moving_animation { - animation: moving_object 6s infinite linear; -} - -.moving_position_animatin { - position: relative; - animation: moving_position_animatin 6s infinite linear; - z-index: -1; -} - -.about_app_section .about_img .screen_img img { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(3) { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(2) { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(1) { - animation-delay: 3s; -} - -@keyframes moving_object { - 0% { - transform: translateY(0); - } - - 50% { - transform: translateY(-30px); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes moving_position_animatin { - 0% { - transform: translateY(0); - } - - 50% { - transform: translateY(-30px); - } - - 100% { - transform: translateY(0); - } -} - - -/* ------------Waves-Animation---------------- */ -.waves-block { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50% , -50%); - width: 150px; - height: 150px; -} - -.waves { - width: 150px; - height: 150px; - background: rgba(255, 255, 255, 0.3); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - border-radius: 100%; - z-index: -1; - -webkit-animation: waves 3s ease-in-out infinite; - animation: waves 3s ease-in-out infinite; -} - -.wave-1 { - -webkit-animation-delay: 0s; - animation-delay: 0s; -} - -.wave-2 { - -webkit-animation-delay: 1s; - animation-delay: 1s; - position: absolute; - top: 0; -} - -.wave-3 { - -webkit-animation-delay: 2s; - animation-delay: 2s; - position: absolute; - top: 0; -} - -@keyframes waves { - 0% { - -webkit-transform: scale(0.2, 0.2); - transform: scale(0.2, 0.2); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - } - - 50% { - opacity: 0.9; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; - } - - 100% { - -webkit-transform: scale(0.9, 0.9); - transform: scale(0.9, 0.9); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - } -} - - - -/*------Header Btn Animation------*/ -@keyframes pulse-blue-small-sm { - 0% { - box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.7); - } - - 100%, - 30% { - box-shadow: 0 0 0 12px transparent - } -} - -@keyframes pulse-blue-medium-sm { - 0% { - box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.4); - } - - 100%, - 30% { - box-shadow: 0 0 0 20px transparent - } -} - - -/*------WhiteHeader Btn Animation------*/ -@keyframes pulse-white-small-sm { - 0% { - box-shadow: 0 0 0 0 rgba(253, 253, 253, 0.7); - } - - 100%, - 30% { - box-shadow: 0 0 0 12px transparent - } -} - -@keyframes pulse-white-medium-sm { - 0% { - box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); - } - - 100%, - 30% { - box-shadow: 0 0 0 20px transparent - } -} - - -/* Inner Page banner shape animation */ -.bred_crumb .banner_shape1, .banner_shape2, .banner_shape3 { - position: absolute; } - -.bred_crumb .banner_shape1 { - top: 200px; - left: 15%; - animation: mymove 10s infinite; -} - -.bred_crumb .banner_shape2 { - top: 100px; - right: 10%; - animation: mymove 5s infinite; -} - -.bred_crumb .banner_shape3 { - top: 350px; - right: 20%; - animation: mymove 3s infinite; -} - - -/* CTA section Shape animation */ - -.query_section .banner_shape1, .banner_shape2, .banner_shape3 { - position: absolute; } - -.query_section .banner_shape1 { - top: 200px; - left: 15%; - animation: mymove 10s infinite; -} - -.query_section .banner_shape2 { - top: 100px; - right: 10%; - animation: mymove 5s infinite; -} - -.query_section .banner_shape3 { - top: 350px; - right: 20%; - animation: mymove 3s infinite; -} - - -@keyframes mymove { - 50% {transform: rotate(180deg);} -} - - - - -/* ----------Other-Page-Css-Start---------- */ - -/* White Header Css Satart */ - -.white_header .navbar-expand-lg .navbar-nav .nav-link ,.white_header .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn { - color: var(--text-white); -} - -.white_header .navbar-expand-lg .navbar-nav .has_dropdown:hover .drp_btn { - color: var(--purple); -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn { - background-color: var(--bg-white); - color: var(--purple); -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn::before { - animation: pulse-white-medium-sm 3.5s infinite -} - -.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - animation: pulse-white-small-sm 3.5s infinite -} - -header.fix_style.white_header { - background-color: #664bece0; -} - - -/* About Us Page Css Start */ - -/* Bredcrumb Css Start */ -.bred_crumb { - background-image: url(../images/bread_crumb_bg.png); - /*background: var(--purple);*/ - background-repeat: no-repeat; - background-size: cover; - background-position: center; - min-height: 500px; - width: 100%; - display: flex; - align-items: center; - position: relative; - margin-top: -96px; -} - -.bred_crumb::after { - content: ""; - background-image: url(../images/inner_page_banner_overlay.svg); - position: absolute; - bottom: -1px; - left: 0; - background-size: cover; - background-repeat: no-repeat; - width: 100%; - height: 200px; - background-position: center; -} - -.bred_crumb .bred_text { - text-align: center; - z-index: 1000; - position: relative; -} - -.bred_crumb .bred_text h1 { - color: var(--text-white); - font-size: 55px; - font-weight: 700; -} - -.bred_crumb .bred_text h1 + p { - color: var(--text-white); - margin-top: -5px; -} - -.bred_crumb .bred_text ul { - display: flex; - justify-content: center; - align-items: center; -} - -.bred_crumb .bred_text ul li { - margin: 0 5px; -} - -.bred_crumb .bred_text ul li a, .bred_crumb .bred_text ul li span { - color: var(--text-white); - font-size: 14px; - transition: .4s all; -} - -.bred_crumb .bred_text ul li a:hover { - text-decoration: underline; -} - -.bred_crumb .bred_text .search_bar { - margin-top: 25px; - position: relative; - z-index: 1000; -} - -.bred_crumb .bred_text .search_bar form .form-group { - position: relative; - max-width: 600px; - height: 60px; - margin: 0 auto; -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control { - width: 100%; - height: 100%; - border-radius: 100px; - border: 1px solid var(--bg-purple); - font-size: 16px; - padding-left: 30px; - color: var(--body-text-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control::placeholder { - color: var(--body-text-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .form-control:focus { - outline: none; - box-shadow: none; - border-color: var(--dark-purple); -} - -.bred_crumb .bred_text .search_bar form .form-group .btn { - position: absolute; - right: 2px; - top: 2px; - background-color: var(--bg-purple); - width: 56px; - height: 56px; - padding: 0; - border-radius: 100px; - text-align: center; - line-height: 56px; - font-size: 23px; - color: var(--text-white); -} - -.bred_crumb .bred_text .search_bar form .form-group .btn:hover { - background-color: var(--dark-purple); -} - -/* ----About App Soluction Section--- */ - -.app_solution_section .row { - align-items: center; -} - -.app_solution_section .app_text .section_title { - text-align: left; - margin-bottom: 20px; -} - -.app_solution_section .app_text .section_title h2 { - letter-spacing: -1px; -} - -.app_solution_section .app_text p { - padding-right: 40px; -} - -.app_solution_section .app_images { - position: relative; -} - -.app_solution_section .app_images ul { - display: flex; - flex-wrap: wrap; - align-items: flex-start; - justify-content: space-between; -} - -.app_solution_section .app_images ul li { - position: relative; -} - -.app_solution_section .app_images ul li a { - position: relative; -} - -.app_solution_section .app_images ul li a .play_icon { - background-color: rgba(255, 255, 255, 0.1); - width: 96px; - height: 96px; - border-radius: 100px; - text-align: center; - margin: 0 auto; - line-height: 96px; - position: absolute; - display: block; - top: 50%; - left: 50%; - transform: translate(-50% , -50%); - -} - -.app_solution_section .app_images ul li img { - max-width: 100%; -} - -.app_solution_section .app_images li:first-child { - margin-bottom: 30px; - text-align: center; - width: 100%; -} - -.app_solution_section .app_images ul li:nth-child(2) { - left: -5px; - cursor: pointer; -} - -.app_solution_section .app_images ul li:nth-child(3) { - right: -5px; -} - -.app_solution_section .app_images::before { - content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 570px; - height: 570px; - border-radius: 100%; - background-color: var(--bg-white); - z-index: -1; -} - - -/* ------Why Section CSS Start------ */ - -.why_we_section { - display: flex; - justify-content: center; -} - -.why_we_section .why_inner { - background-color: var(--bg-white); - border-radius: 30px; - width: 1370px; - margin: 0 15px; - box-shadow: 0 4px 30px #EDE9FE; - padding: 85px 0; -} - -.why_we_section .why_inner .section_title { - margin-bottom: 50px; -} - -.why_we_section .why_inner .why_box .icon { - margin-bottom: 45px; -} - -.why_we_section .why_inner .why_box .icon img { - max-width: 100%; -} - -.why_we_section .why_inner .why_box .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 10px; -} - -.why_we_section .why_inner .why_box .text p { - margin-bottom: 0; -} - - -/* About-Page-Sectino */ - -.about_page_sectino img {max-width: 100%;} - -/* -----------experts_team_sectio---------- */ - -.experts_team_section .experts_box { - position: relative; - text-align: center; - padding: 35px 30px; - border-radius: 12px; - background-color: transparent; - transition: .4s all; -} - -.experts_team_section .experts_box img { - margin-bottom: 30px; - max-width: 100%; -} - -.experts_team_section .experts_box .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - transition: .4s all; -} - -.experts_team_section .experts_box .text span { - color: var(--body-text-purple); -} - -.experts_team_section .experts_box .social_media { - display: flex; - justify-content: center; - align-items: center; - margin-top: 5px; -} - -.experts_team_section .experts_box .social_media a { - display: block; - width: 33px; - height: 33px; - border: 1px solid #CCCCE2; - border-radius: 50px; - text-align: center; - line-height: 31px; - color: #898AAE; - margin: 0 5px; - transition: .4s all; - font-size: 15px; -} - -.experts_team_section .experts_box .social_media a:hover { - border-color: var(--purple); - background-color: var(--bg-purple); - color: var(--text-white); -} - -.experts_team_section .experts_box:hover { - background-color: var(--bg-white); - box-shadow: 0 4px 10px #EDE9FE; -} - -.experts_team_section .experts_box:hover h3 { - color: var(--purple); -} - - -/* ---------Query-Section-Css-Start-------- */ -.query_section { - display: flex; - justify-content: center; -} - -.query_inner { - width: 1370px; - margin: 0 15px; - /*background-image: url(../images/query_bg.png);*/ - background: var(--purple); - background-size: cover; - background-repeat: no-repeat; - border-radius: 30px; - min-height: 420px; - text-align: center; - display: flex; - justify-content: center; - align-items: center; -} - -.query_inner .section_title h2 , -.query_inner .section_title p { - color: #fff; -} - -.query_inner .section_title { - margin-bottom: 40px; -} - -.query_inner .white_btn { - font-size: 25px; - font-weight: 700; -} - -.query_inner .white_btn:hover { - border-color: #fff; -} - -.about_trust_section { - margin-bottom: 40px; -} - - -/* Blog List Css Start */ -.blog_list_story { - margin-bottom: 50px; -} - -.blog_list_main { - position: relative; -} - -.blog_list_main > .container > .row { - align-items: center; -} - -.blog_list_main .blog_img { - position: relative; -} - -.blog_list_main .blog_img img { - max-width: 100%; - border-radius: 12px; -} - -.blog_list_main .blog_img span { - position: absolute; - left: 15px; - top: 15px; - font-size: 14px; - color: var(--text-white); -} - -.blog_list_main .blog_text .section_title { - text-align: left; -} - -.blog_list_main .blog_text .choice_badge { - font-size: 12px; - background-color: #F8D979; - display: inline-block; - padding: 1px 10px; - border-radius: 4px; - color: var(--dark-purple); - font-weight: 700; - margin-bottom: 10px; -} - -.blog_list_main .blog_text a { - color: var(--purple); - margin-top: 25px; - display: block; - font-size: 14px; - margin-bottom: 10px; - font-weight: 600; -} - -.blog_list_main .blog_text a:hover { - text-decoration: underline; -} - -.blog_list_story.row_am { - padding-top: 30px; -} - -.blog_list_story .story_box { - margin-bottom: 40px; - text-align: left; -} - -/* Pagination Css Start */ -.pagination_block ul {display: flex; - justify-content: center; - align-items: center; - margin-top: 10px; -} - -.pagination_block ul li:not(:first-child , :last-child) a {margin: 0 5px; - transition: .4s all; - display: block; - width: 35px; - height: 35px; - background-color: transparent; - border-radius: 50px; - text-align: center; - line-height: 35px; -} - -.pagination_block ul li:first-child { - margin-right: 20px; -} - -.pagination_block ul li:last-child { - margin-left: 20px; -} - -.pagination_block ul li:not(:first-child , :last-child) a:hover , .pagination_block ul li:not(:first-child , :last-child) a.active { - background-color: var(--bg-purple); - color: var(--text-white); -} - -.pagination_block ul li:first-child a:hover { - color: var(--purple); -} - -.pagination_block ul li:last-child a:hover { - color: var(--purple); -} - -/* Blog Detail Css Start */ -.blog_detail_section { - margin-bottom: 40px; -} - -.blog_detail_bredcrumb.bred_crumb .bred_text { - margin-top: -30px; -} - -.blog_detail_section .blog_inner_pannel { - background-color: #FFFFFF; - border-radius: 30px; - padding: 45px 60px; - margin-top: -120px; - position: relative; - box-shadow: 0 8px 30px #c0bad76b; -} - -.blog_detail_section .blog_inner_pannel .review { - display: flex; - justify-content: center; - margin-bottom: 15px; -} - -.blog_detail_section .blog_inner_pannel .review span { - line-height: 1; -} - -.blog_detail_section .blog_inner_pannel .review span:first-child { - color: var(--purple); - display: inline-block; - font-weight: 700; -} - -.blog_detail_section .blog_inner_pannel .review span:last-child { - color: var(--dark-purple); - display: inline-block; - margin-left: 15px; - padding-left: 15px; - border-left: 1px solid var(--dark-purple); -} - -.blog_detail_section .blog_inner_pannel .section_title { - margin-bottom: 40px; -} - -.blog_detail_section .blog_inner_pannel .section_title h2 { - margin-bottom: 0; -} - -.blog_detail_section .blog_inner_pannel img { - max-width: 100%; -} - -.blog_detail_section .blog_inner_pannel .main_img { - margin-bottom: 30px; -} - -.blog_detail_section .blog_inner_pannel .info h3 { - font-weight: 700; - color: var(--dark-purple); - margin-top: 30px; - font-size: 25px; - margin-bottom: 15px; -} - -.blog_detail_section .blog_inner_pannel .info ul { - padding-left: 50px; - padding-top: 10px; - margin-bottom: 30px; -} - -.blog_detail_section .blog_inner_pannel .info ul li p { - position: relative; - padding-left: 25px; - margin-bottom: 0; -} - -.blog_detail_section .blog_inner_pannel .info ul li p .icon { - position: absolute; - left: 0; - color: var(--purple); -} - -.blog_detail_section .blog_inner_pannel .two_img { - margin-bottom: 70px; -} - -.blog_detail_section .blog_inner_pannel .quote_block { - background-color: #F6F4FE; - border-radius: 12px; - padding: 55px 35px 35px 60px; - position: relative; - margin-top: 50px; - margin-bottom: 35px; -} - -.blog_detail_section .blog_inner_pannel .quote_block h2 { - font-size: 25px; - line-height: 37px; -} - -.blog_detail_section .blog_inner_pannel .quote_block p { - margin-bottom: 0; - margin-top: 15px; -} - -.blog_detail_section .blog_inner_pannel .quote_block .name { - color: var(--purple); - font-weight: 700; -} - -.blog_detail_section .blog_inner_pannel .quote_block .q_icon { - position: absolute; - top: -20px; - width: 63px; - height: 63px; - background-color: var(--bg-white); - border-radius: 100px; - display: flex; - justify-content: center; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .quote_block .q_icon img { - width: 35px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore { - display: flex; - justify-content: space-between; - align-items: center; - padding: 40px 0; - border-top: 1px solid #D6D3E3; - border-bottom: 1px solid #D6D3E3; - margin: 35px 0; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info { - display: flex; - justify-content: space-between; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text { - margin-left: 20px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 5px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text span { - font-size: 14px; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul { - display: flex; -} - -/* Social Media link list */ -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a { - display: block; - width: 37px; - height: 37px; - text-align: center; - line-height: 37px; - font-size: 15px; - border: 1px solid #CCC9D7; - border-radius: 50px; - margin-right: 10px; - transition: .4s all; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li:last-child a { - margin-right: 0; -} - -.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a:hover { - background-color: var(--bg-purple); - color: var(--text-white); -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul { - display: flex; - justify-content: center; - align-items: center; -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul .tags p { - margin-bottom: 0; - color: var(--dark-purple); - font-weight: 500; - margin-right: 5px; -} - -.blog_detail_section .blog_inner_pannel .blog_tags ul li span { - color: var(--purple); - font-weight: 500; -} - - -/* comment section Css Start */ -.comment_section ul { - margin-top: 30px; -} - -.comment_section ul li { - display: flex; - align-items: center; - padding: 30px 0; - border-top: 1px solid #D6D3E3; -} - -.comment_section ul li:last-child { - padding-bottom: 0; -} - -.comment_section ul li.replay_comment { - margin-left: 110px; -} - -.comment_section ul li .authore_info { - display: flex; - align-items: center; - width: 260px; -} - -.comment_section ul li .authore_info .avtar { - width: 88px; - margin-right: 20px; -} - -.comment_section ul li .authore_info .text { - width: calc(100% - 108px); -} - -.comment_section ul li .authore_info .text h4 { - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); -} - -.comment_section ul li .authore_info .text span { - font-size: 14px; -} - -.comment_section ul li .comment { - width: calc(100% - 310px); - margin-left: 50px; -} - -.comment_section ul li .comment p { - margin-bottom: 0; -} - - - -/* comment-form-section */ - -.comment_form_section form { - margin-top: 30px; -} - -.comment_form_section form .form-group .form-control { - border-radius: 12px; - height: 60px; - box-shadow: 0 3px 6px #EDE9FE; - border: transparent; - margin-bottom: 30px; - color: var(--body-text-purple); - padding: 15px; -} - -.comment_form_section form .form-group .form-control::placeholder { - color: var(--body-text-purple); -} - -.comment_form_section form .form-group textarea.form-control { - height: 140px; - padding-top: 15px; - resize: none; -} - - -/* Sign Up Css Start */ -.full_bg { - /*background-image: url(../images/form_bg.png);*/ - background-size: cover; - background: var(--purple); - width: 100%; - height: 100vh; - overflow-y: auto; - padding-bottom: 50px; -} - -.signup_section { - position: relative; -} - -.signup_section .back_btn { - position: absolute; - left: 0; - top: 92px; - color: #fff; - font-weight: 500; -} - -.signup_section .top_part { - text-align: center; - padding-top: 80px; - padding-bottom: 50px; -} - -.signup_form { - width: 570px; - margin: 0 auto; - padding: 40px 0; - border-radius: 12px; - box-shadow: 0 4px 10px #00000054; - background-color: var(--bg-white); -} - -.signup_form form { - padding: 0 60px; -} - -.signup_form .section_title { - padding: 0 15px; -} - -.signup_form .section_title h2 { - font-weight: 600; -} - -.signup_form form .form-group { - margin-bottom: 20px; -} - -.signup_form form .form-group .form-control { - height: 60px; - padding: 5px 20px; - color: var(--body-text-purple); - border: 2px solid #E1DBF4; - border-radius: 12px; - font-weight: 500; -} - -.signup_form form .form-group .form-control:focus { - box-shadow: none; - border-color: var(--purple); - color: var(--purple); -} - -.signup_form form .form-group .puprple_btn { - min-width: 240px; - display: block; - margin: 40px auto; - margin-bottom: 30px; - font-weight: 600; -} - -.signup_form .or_block { - display: block; - text-align: center; - border-bottom: 1px solid #E3E1ED; -} - -.signup_form .or_block span { - position: relative; - top: 14px; - padding: 0 5px; - background-color: var(--bg-white); - color: #8081AD; -} - -.signup_form .or_option { - text-align: center; -} - -.signup_form .or_option > p { - color: #8081AD; - margin-top: 30px; -} - -.signup_form .or_option .google_btn { - min-width: 330px; - border: 2px solid #E1DBF4; - text-align: center; - color: var(--body-text-purple); - padding: 16px; - border-radius: 100px; - transition: .4s all; -} - -.signup_form .or_option .google_btn:hover { - border-color: var(--light-purple); -} - -.signup_form .or_option .google_btn img { - margin-right: 20px; -} - -.signup_form .or_option p a { - color: var(--purple); - text-decoration: underline; - transition: .4s all; -} - -.signup_form .or_option p a:hover { - color: var(--dark-purple); -} - - -/* Review List Section Css Start */ - -.review_list_section .review_box { - padding: 40px 30px; - background-color: #fff; - border-radius: 12px; - box-shadow: 0 4px 10px #EDE9FE; - margin: 20px 0; -} - -.review_list_section .review_box .rating ul { - display: flex; -} - -.review_list_section .review_box .rating ul li span { - color: #FC9400; - font-size: 18px; -} - -.review_list_section .review_box h3 { - font-size: 20px; - color: var(--purple); - margin: 10px 0; -} - -.review_list_section .review_box .reviewer { - display: flex; - align-items: center; - margin-top: 35px; -} - -.review_list_section .review_box .reviewer .avtar { - width: 80px; -} - -.review_list_section .review_box .reviewer .text { - margin-left: 20px; - width: calc(100% - 100px); -} - -.review_list_section .review_box .reviewer .text h3 { - font-weight: 600; - color: var(--dark-purple); - margin-bottom: 0; -} - -/* review-freeapp */ - -.review_freeapp { - margin: 60px 0; -} - -.review_freeapp .free_app_inner { - background: url(../images/free_review_bg.png); - background-size: cover; - background-position: 90%; -} - -/* Contact Page Css Start */ - -.contact_page_section .contact_inner { - display: flex; - justify-content: space-between; - align-items: center; - position: relative; - margin-top: -150px; -} - -.contact_page_section .contact_inner .section_title h2 { - font-weight: 600; -} - -.contact_page_section .contact_inner .contact_form { - width: 570px; - padding: 50px 60px; - border-radius: 22px; - background-color: #fff; - box-shadow: 0 4px 10px #EDE9FE; -} - -.contact_page_section .contact_inner .contact_form h2 { - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_form form { - margin-top: 30px; -} - -.contact_page_section .contact_inner .contact_form form .form-group { - margin-bottom: 20px; -} - -.contact_page_section .contact_inner .contact_form form .form-group .form-control { - height: 60px; - padding: 5px 20px; - color: var(--body-text-purple); - border: 2px solid #E1DBF4; - border-radius: 12px; - font-weight: 500; -} - -.contact_page_section .contact_inner .contact_form form .form-group .form-control:focus { - box-shadow: none; - border-color: var(--purple); - color: var(--purple); -} - -.contact_page_section .contact_inner .contact_form form .form-group textarea.form-control { - height: 140px; - padding-top: 15px; -} - -.contact_page_section .contact_inner .contact_form form .term_check { - display: flex; - align-items: center; -} - -.contact_page_section .contact_inner .contact_form form .term_check input { - width: 17px; - height: 17px; - accent-color: var(--purple); -} - -.contact_page_section .contact_inner .contact_form form .term_check label { - font-size: 13px; - margin-bottom: 0; - margin-left: 7px; -} - -.contact_page_section .contact_inner .contact_form form .form-group button { - width: 240px; - margin: 0 auto; - display: block; - margin-top: 10px; - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_info { - width: 480px; -} - -.contact_page_section .contact_inner .contact_info .section_title { - text-align: left; - margin-top: 15px; -} - -.contact_page_section .contact_inner .contact_info .section_title p a { - color: var(--purple); - text-decoration: underline; -} - -.contact_page_section .contact_inner .contact_info .btn { - width: 180px; - margin: 10px 0 50px 0; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li { - display: flex; - align-items: center; - margin-bottom: 30px; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li:last-child { - margin-bottom: 0; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .img { - width: 65px; - margin-right: 20px; -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text { - width: calc(100% - 85px); -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text span { - display: block; - font-size: 20px; - font-weight: 600; - color: var(--dark-purple); -} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text p , -.contact_page_section .contact_inner .contact_info .contact_info_list li .text a {margin: 0;} - -.contact_page_section .contact_inner .contact_info .contact_info_list li .text a:hover { - color: var(--dark-purple); -} - -.map_section { - margin: 50px 0; -} - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/desktop.ini b/desarrollo/diseno/registro-cliente/fonts/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/icofont.eot b/desarrollo/diseno/registro-cliente/fonts/icofont.eot deleted file mode 100644 index 56e15db4..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/icofont.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/icofont.svg b/desarrollo/diseno/registro-cliente/fonts/icofont.svg deleted file mode 100644 index 8535ec67..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/icofont.svg +++ /dev/null @@ -1,2105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/fonts/icofont.ttf b/desarrollo/diseno/registro-cliente/fonts/icofont.ttf deleted file mode 100644 index ba6d2356..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/icofont.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/icofont.woff b/desarrollo/diseno/registro-cliente/fonts/icofont.woff deleted file mode 100644 index 48002ce2..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/icofont.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/icofont.woff2 b/desarrollo/diseno/registro-cliente/fonts/icofont.woff2 deleted file mode 100644 index 75f03d7b..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/icofont.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.eot b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.eot deleted file mode 100644 index bbfdbf30..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.svg b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.svg deleted file mode 100644 index ce805153..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.svg +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.ttf b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.ttf deleted file mode 100644 index dafd4e09..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.woff b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.woff deleted file mode 100644 index 482673b3..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.woff2 b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.woff2 deleted file mode 100644 index 962b734e..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-300.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.eot b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.eot deleted file mode 100644 index a41067bf..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.svg b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.svg deleted file mode 100644 index a00b27cb..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.ttf b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.ttf deleted file mode 100644 index 81ef3c85..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.woff b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.woff deleted file mode 100644 index f0334422..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.woff2 b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.woff2 deleted file mode 100644 index c6603368..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.eot b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.eot deleted file mode 100644 index c53b28fc..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.svg b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.svg deleted file mode 100644 index fac9b18f..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.svg +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.ttf b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.ttf deleted file mode 100644 index 20854052..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.woff b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.woff deleted file mode 100644 index ed570119..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.woff2 b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.woff2 deleted file mode 100644 index b995ebb6..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-500italic.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.eot b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.eot deleted file mode 100644 index 7bbdbbab..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.svg b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.svg deleted file mode 100644 index 63d4ce3d..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.ttf b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.ttf deleted file mode 100644 index 5cfa4913..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.woff b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.woff deleted file mode 100644 index 2370956d..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.woff2 b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.woff2 deleted file mode 100644 index 921e962b..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-600.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.eot b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.eot deleted file mode 100644 index 09db74db..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.svg b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.svg deleted file mode 100644 index 9056a3d5..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.ttf b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.ttf deleted file mode 100644 index 2cc94c2a..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.woff b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.woff deleted file mode 100644 index b8b8ce59..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.woff2 b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.woff2 deleted file mode 100644 index bf022fc7..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-700.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.eot b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.eot deleted file mode 100644 index 4425744a..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.svg b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.svg deleted file mode 100644 index 2ac71d9b..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.svg +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.ttf b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.ttf deleted file mode 100644 index 7a65fc54..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.woff b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.woff deleted file mode 100644 index 30728f54..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.woff2 b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.woff2 deleted file mode 100644 index f107b369..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-800.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.eot b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.eot deleted file mode 100644 index cde85654..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.svg b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.svg deleted file mode 100644 index 78aacea8..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.svg +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.ttf b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.ttf deleted file mode 100644 index e9f8ce6d..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.woff b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.woff deleted file mode 100644 index 772d71ca..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.woff2 b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.woff2 deleted file mode 100644 index 11123368..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-italic.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.eot b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.eot deleted file mode 100644 index e23dd26e..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.svg b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.svg deleted file mode 100644 index bc983e49..00000000 --- a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.ttf b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.ttf deleted file mode 100644 index dfb38c42..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.woff b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.woff deleted file mode 100644 index 2a04ae32..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.woff2 b/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.woff2 deleted file mode 100644 index b69e0091..00000000 Binary files a/desarrollo/diseno/registro-cliente/fonts/poppins-v20-latin-regular.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/account-category.php b/desarrollo/diseno/registro-cliente/form/account-category.php deleted file mode 100644 index ea4e5fa2..00000000 --- a/desarrollo/diseno/registro-cliente/form/account-category.php +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-

Selecciona el tipo de cuenta

-

Tu correo fue confirmado!
Ahora vamos a seleccionar tu tipo de cuenta para continuar con el siguiente paso.

- -
-
-
-
-
- -
- - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/assets/css/bootstrap.min.css b/desarrollo/diseno/registro-cliente/form/assets/css/bootstrap.min.css deleted file mode 100644 index 1c835fd6..00000000 --- a/desarrollo/diseno/registro-cliente/form/assets/css/bootstrap.min.css +++ /dev/null @@ -1,121 +0,0 @@ -@charset "UTF-8";/*! - * Bootstrap v5.3.0-alpha3 (https://getbootstrap.com/) - * Copyright 2011-2023 The Bootstrap Authors - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ - - -/*-- custom css start --*/ -.justify-end{ - justify-content: flex-end !important; -} -.relative{ - position: relative; -} -.container-fluid, .container-lg, .container-md, .container-sm, .container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.row{ - margin-left: -15px !important; - margin-right: -15px !important; - } -.col-xxl-1, -.col-xxl-2, -.col-xxl-3, -.col-xxl-4, -.col-xxl-5, -.col-xxl-6, -.col-xxl-7, -.col-xxl-8, -.col-xxl-9, -.col-xxl-10, -.col-xxl-11, -.col-xxl-12, -.col-xl-1, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-lg-1, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-md-1, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-10, -.col-md-11, -.col-md-12, -.col-sm-1, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-1, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-10, -.col-11, -.col-12{ - padding-left: 15px !important; - padding-right: 15px !important; -} - - -.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}} - -.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}} - -@media only screen and (max-width: 575px) { - .row{ - margin-left: 0px !important; - margin-right: 0px !important; - } - .p-sm-0{ - padding: 0px !important; - } -} -/*-- custom css End --*/ \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/assets/css/desktop.ini b/desarrollo/diseno/registro-cliente/form/assets/css/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/css/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/css/line-awesome.min.css b/desarrollo/diseno/registro-cliente/form/assets/css/line-awesome.min.css deleted file mode 100644 index 5636d52c..00000000 --- a/desarrollo/diseno/registro-cliente/form/assets/css/line-awesome.min.css +++ /dev/null @@ -1 +0,0 @@ -.la,.lab,.lad,.lal,.lar,.las{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.la-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.la-xs{font-size:.75em}.la-sm{font-size:.875em}.la-1x{font-size:1em}.la-2x{font-size:2em}.la-3x{font-size:3em}.la-4x{font-size:4em}.la-5x{font-size:5em}.la-6x{font-size:6em}.la-7x{font-size:7em}.la-8x{font-size:8em}.la-9x{font-size:9em}.la-10x{font-size:10em}.la-fw{text-align:center;width:1.25em}.la-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.la-ul>li{position:relative}.la-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.la-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.la-pull-left{float:left}.la-pull-right{float:right}.la.la-pull-left,.lab.la-pull-left,.lal.la-pull-left,.lar.la-pull-left,.las.la-pull-left{margin-right:.3em}.la.la-pull-right,.lab.la-pull-right,.lal.la-pull-right,.lar.la-pull-right,.las.la-pull-right{margin-left:.3em}.la-spin{-webkit-animation:la-spin 2s infinite linear;animation:la-spin 2s infinite linear}.la-pulse{-webkit-animation:la-spin 1s infinite steps(8);animation:la-spin 1s infinite steps(8)}@-webkit-keyframes la-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes la-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.la-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.la-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.la-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.la-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.la-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.la-flip-both,.la-flip-horizontal.la-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .la-flip-both,:root .la-flip-horizontal,:root .la-flip-vertical,:root .la-rotate-180,:root .la-rotate-270,:root .la-rotate-90{-webkit-filter:none;filter:none}.la-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.la-stack-1x,.la-stack-2x{left:0;position:absolute;text-align:center;width:100%}.la-stack-1x{line-height:inherit}.la-stack-2x{font-size:2em}.la-inverse{color:#fff}.la-500px:before{content:"\f26e"}.la-accessible-icon:before{content:"\f368"}.la-accusoft:before{content:"\f369"}.la-acquisitions-incorporated:before{content:"\f6af"}.la-ad:before{content:"\f641"}.la-address-book:before{content:"\f2b9"}.la-address-card:before{content:"\f2bb"}.la-adjust:before{content:"\f042"}.la-adn:before{content:"\f170"}.la-adobe:before{content:"\f778"}.la-adversal:before{content:"\f36a"}.la-affiliatetheme:before{content:"\f36b"}.la-air-freshener:before{content:"\f5d0"}.la-airbnb:before{content:"\f834"}.la-algolia:before{content:"\f36c"}.la-align-center:before{content:"\f037"}.la-align-justify:before{content:"\f039"}.la-align-left:before{content:"\f036"}.la-align-right:before{content:"\f038"}.la-alipay:before{content:"\f642"}.la-allergies:before{content:"\f461"}.la-amazon:before{content:"\f270"}.la-amazon-pay:before{content:"\f42c"}.la-ambulance:before{content:"\f0f9"}.la-american-sign-language-interpreting:before{content:"\f2a3"}.la-amilia:before{content:"\f36d"}.la-anchor:before{content:"\f13d"}.la-android:before{content:"\f17b"}.la-angellist:before{content:"\f209"}.la-angle-double-down:before{content:"\f103"}.la-angle-double-left:before{content:"\f100"}.la-angle-double-right:before{content:"\f101"}.la-angle-double-up:before{content:"\f102"}.la-angle-down:before{content:"\f107"}.la-angle-left:before{content:"\f104"}.la-angle-right:before{content:"\f105"}.la-angle-up:before{content:"\f106"}.la-angry:before{content:"\f556"}.la-angrycreative:before{content:"\f36e"}.la-angular:before{content:"\f420"}.la-ankh:before{content:"\f644"}.la-app-store:before{content:"\f36f"}.la-app-store-ios:before{content:"\f370"}.la-apper:before{content:"\f371"}.la-apple:before{content:"\f179"}.la-apple-alt:before{content:"\f5d1"}.la-apple-pay:before{content:"\f415"}.la-archive:before{content:"\f187"}.la-archway:before{content:"\f557"}.la-arrow-alt-circle-down:before{content:"\f358"}.la-arrow-alt-circle-left:before{content:"\f359"}.la-arrow-alt-circle-right:before{content:"\f35a"}.la-arrow-alt-circle-up:before{content:"\f35b"}.la-arrow-circle-down:before{content:"\f0ab"}.la-arrow-circle-left:before{content:"\f0a8"}.la-arrow-circle-right:before{content:"\f0a9"}.la-arrow-circle-up:before{content:"\f0aa"}.la-arrow-down:before{content:"\f063"}.la-arrow-left:before{content:"\f060"}.la-arrow-right:before{content:"\f061"}.la-arrow-up:before{content:"\f062"}.la-arrows-alt:before{content:"\f0b2"}.la-arrows-alt-h:before{content:"\f337"}.la-arrows-alt-v:before{content:"\f338"}.la-artstation:before{content:"\f77a"}.la-assistive-listening-systems:before{content:"\f2a2"}.la-asterisk:before{content:"\f069"}.la-asymmetrik:before{content:"\f372"}.la-at:before{content:"\f1fa"}.la-atlas:before{content:"\f558"}.la-atlassian:before{content:"\f77b"}.la-atom:before{content:"\f5d2"}.la-audible:before{content:"\f373"}.la-audio-description:before{content:"\f29e"}.la-autoprefixer:before{content:"\f41c"}.la-avianex:before{content:"\f374"}.la-aviato:before{content:"\f421"}.la-award:before{content:"\f559"}.la-aws:before{content:"\f375"}.la-baby:before{content:"\f77c"}.la-baby-carriage:before{content:"\f77d"}.la-backspace:before{content:"\f55a"}.la-backward:before{content:"\f04a"}.la-bacon:before{content:"\f7e5"}.la-balance-scale:before{content:"\f24e"}.la-balance-scale-left:before{content:"\f515"}.la-balance-scale-right:before{content:"\f516"}.la-ban:before{content:"\f05e"}.la-band-aid:before{content:"\f462"}.la-bandcamp:before{content:"\f2d5"}.la-barcode:before{content:"\f02a"}.la-bars:before{content:"\f0c9"}.la-baseball-ball:before{content:"\f433"}.la-basketball-ball:before{content:"\f434"}.la-bath:before{content:"\f2cd"}.la-battery-empty:before{content:"\f244"}.la-battery-full:before{content:"\f240"}.la-battery-half:before{content:"\f242"}.la-battery-quarter:before{content:"\f243"}.la-battery-three-quarters:before{content:"\f241"}.la-battle-net:before{content:"\f835"}.la-bed:before{content:"\f236"}.la-beer:before{content:"\f0fc"}.la-behance:before{content:"\f1b4"}.la-behance-square:before{content:"\f1b5"}.la-bell:before{content:"\f0f3"}.la-bell-slash:before{content:"\f1f6"}.la-bezier-curve:before{content:"\f55b"}.la-bible:before{content:"\f647"}.la-bicycle:before{content:"\f206"}.la-biking:before{content:"\f84a"}.la-bimobject:before{content:"\f378"}.la-binoculars:before{content:"\f1e5"}.la-biohazard:before{content:"\f780"}.la-birthday-cake:before{content:"\f1fd"}.la-bitbucket:before{content:"\f171"}.la-bitcoin:before{content:"\f379"}.la-bity:before{content:"\f37a"}.la-black-tie:before{content:"\f27e"}.la-blackberry:before{content:"\f37b"}.la-blender:before{content:"\f517"}.la-blender-phone:before{content:"\f6b6"}.la-blind:before{content:"\f29d"}.la-blog:before{content:"\f781"}.la-blogger:before{content:"\f37c"}.la-blogger-b:before{content:"\f37d"}.la-bluetooth:before{content:"\f293"}.la-bluetooth-b:before{content:"\f294"}.la-bold:before{content:"\f032"}.la-bolt:before{content:"\f0e7"}.la-bomb:before{content:"\f1e2"}.la-bone:before{content:"\f5d7"}.la-bong:before{content:"\f55c"}.la-book:before{content:"\f02d"}.la-book-dead:before{content:"\f6b7"}.la-book-medical:before{content:"\f7e6"}.la-book-open:before{content:"\f518"}.la-book-reader:before{content:"\f5da"}.la-bookmark:before{content:"\f02e"}.la-bootstrap:before{content:"\f836"}.la-border-all:before{content:"\f84c"}.la-border-none:before{content:"\f850"}.la-border-style:before{content:"\f853"}.la-bowling-ball:before{content:"\f436"}.la-box:before{content:"\f466"}.la-box-open:before{content:"\f49e"}.la-boxes:before{content:"\f468"}.la-braille:before{content:"\f2a1"}.la-brain:before{content:"\f5dc"}.la-bread-slice:before{content:"\f7ec"}.la-briefcase:before{content:"\f0b1"}.la-briefcase-medical:before{content:"\f469"}.la-broadcast-tower:before{content:"\f519"}.la-broom:before{content:"\f51a"}.la-brush:before{content:"\f55d"}.la-btc:before{content:"\f15a"}.la-buffer:before{content:"\f837"}.la-bug:before{content:"\f188"}.la-building:before{content:"\f1ad"}.la-bullhorn:before{content:"\f0a1"}.la-bullseye:before{content:"\f140"}.la-burn:before{content:"\f46a"}.la-buromobelexperte:before{content:"\f37f"}.la-bus:before{content:"\f207"}.la-bus-alt:before{content:"\f55e"}.la-business-time:before{content:"\f64a"}.la-buy-n-large:before{content:"\f8a6"}.la-buysellads:before{content:"\f20d"}.la-calculator:before{content:"\f1ec"}.la-calendar:before{content:"\f133"}.la-calendar-alt:before{content:"\f073"}.la-calendar-check:before{content:"\f274"}.la-calendar-day:before{content:"\f783"}.la-calendar-minus:before{content:"\f272"}.la-calendar-plus:before{content:"\f271"}.la-calendar-times:before{content:"\f273"}.la-calendar-week:before{content:"\f784"}.la-camera:before{content:"\f030"}.la-camera-retro:before{content:"\f083"}.la-campground:before{content:"\f6bb"}.la-canadian-maple-leaf:before{content:"\f785"}.la-candy-cane:before{content:"\f786"}.la-cannabis:before{content:"\f55f"}.la-capsules:before{content:"\f46b"}.la-car:before{content:"\f1b9"}.la-car-alt:before{content:"\f5de"}.la-car-battery:before{content:"\f5df"}.la-car-crash:before{content:"\f5e1"}.la-car-side:before{content:"\f5e4"}.la-caret-down:before{content:"\f0d7"}.la-caret-left:before{content:"\f0d9"}.la-caret-right:before{content:"\f0da"}.la-caret-square-down:before{content:"\f150"}.la-caret-square-left:before{content:"\f191"}.la-caret-square-right:before{content:"\f152"}.la-caret-square-up:before{content:"\f151"}.la-caret-up:before{content:"\f0d8"}.la-carrot:before{content:"\f787"}.la-cart-arrow-down:before{content:"\f218"}.la-cart-plus:before{content:"\f217"}.la-cash-register:before{content:"\f788"}.la-cat:before{content:"\f6be"}.la-cc-amazon-pay:before{content:"\f42d"}.la-cc-amex:before{content:"\f1f3"}.la-cc-apple-pay:before{content:"\f416"}.la-cc-diners-club:before{content:"\f24c"}.la-cc-discover:before{content:"\f1f2"}.la-cc-jcb:before{content:"\f24b"}.la-cc-mastercard:before{content:"\f1f1"}.la-cc-paypal:before{content:"\f1f4"}.la-cc-stripe:before{content:"\f1f5"}.la-cc-visa:before{content:"\f1f0"}.la-centercode:before{content:"\f380"}.la-centos:before{content:"\f789"}.la-certificate:before{content:"\f0a3"}.la-chair:before{content:"\f6c0"}.la-chalkboard:before{content:"\f51b"}.la-chalkboard-teacher:before{content:"\f51c"}.la-charging-station:before{content:"\f5e7"}.la-chart-area:before{content:"\f1fe"}.la-chart-bar:before{content:"\f080"}.la-chart-line:before{content:"\f201"}.la-chart-pie:before{content:"\f200"}.la-check:before{content:"\f00c"}.la-check-circle:before{content:"\f058"}.la-check-double:before{content:"\f560"}.la-check-square:before{content:"\f14a"}.la-cheese:before{content:"\f7ef"}.la-chess:before{content:"\f439"}.la-chess-bishop:before{content:"\f43a"}.la-chess-board:before{content:"\f43c"}.la-chess-king:before{content:"\f43f"}.la-chess-knight:before{content:"\f441"}.la-chess-pawn:before{content:"\f443"}.la-chess-queen:before{content:"\f445"}.la-chess-rook:before{content:"\f447"}.la-chevron-circle-down:before{content:"\f13a"}.la-chevron-circle-left:before{content:"\f137"}.la-chevron-circle-right:before{content:"\f138"}.la-chevron-circle-up:before{content:"\f139"}.la-chevron-down:before{content:"\f078"}.la-chevron-left:before{content:"\f053"}.la-chevron-right:before{content:"\f054"}.la-chevron-up:before{content:"\f077"}.la-child:before{content:"\f1ae"}.la-chrome:before{content:"\f268"}.la-chromecast:before{content:"\f838"}.la-church:before{content:"\f51d"}.la-circle:before{content:"\f111"}.la-circle-notch:before{content:"\f1ce"}.la-city:before{content:"\f64f"}.la-clinic-medical:before{content:"\f7f2"}.la-clipboard:before{content:"\f328"}.la-clipboard-check:before{content:"\f46c"}.la-clipboard-list:before{content:"\f46d"}.la-clock:before{content:"\f017"}.la-clone:before{content:"\f24d"}.la-closed-captioning:before{content:"\f20a"}.la-cloud:before{content:"\f0c2"}.la-cloud-download-alt:before{content:"\f381"}.la-cloud-meatball:before{content:"\f73b"}.la-cloud-moon:before{content:"\f6c3"}.la-cloud-moon-rain:before{content:"\f73c"}.la-cloud-rain:before{content:"\f73d"}.la-cloud-showers-heavy:before{content:"\f740"}.la-cloud-sun:before{content:"\f6c4"}.la-cloud-sun-rain:before{content:"\f743"}.la-cloud-upload-alt:before{content:"\f382"}.la-cloudscale:before{content:"\f383"}.la-cloudsmith:before{content:"\f384"}.la-cloudversify:before{content:"\f385"}.la-cocktail:before{content:"\f561"}.la-code:before{content:"\f121"}.la-code-branch:before{content:"\f126"}.la-codepen:before{content:"\f1cb"}.la-codiepie:before{content:"\f284"}.la-coffee:before{content:"\f0f4"}.la-cog:before{content:"\f013"}.la-cogs:before{content:"\f085"}.la-coins:before{content:"\f51e"}.la-columns:before{content:"\f0db"}.la-comment:before{content:"\f075"}.la-comment-alt:before{content:"\f27a"}.la-comment-dollar:before{content:"\f651"}.la-comment-dots:before{content:"\f4ad"}.la-comment-medical:before{content:"\f7f5"}.la-comment-slash:before{content:"\f4b3"}.la-comments:before{content:"\f086"}.la-comments-dollar:before{content:"\f653"}.la-compact-disc:before{content:"\f51f"}.la-compass:before{content:"\f14e"}.la-compress:before{content:"\f066"}.la-compress-arrows-alt:before{content:"\f78c"}.la-concierge-bell:before{content:"\f562"}.la-confluence:before{content:"\f78d"}.la-connectdevelop:before{content:"\f20e"}.la-contao:before{content:"\f26d"}.la-cookie:before{content:"\f563"}.la-cookie-bite:before{content:"\f564"}.la-copy:before{content:"\f0c5"}.la-copyright:before{content:"\f1f9"}.la-cotton-bureau:before{content:"\f89e"}.la-couch:before{content:"\f4b8"}.la-cpanel:before{content:"\f388"}.la-creative-commons:before{content:"\f25e"}.la-creative-commons-by:before{content:"\f4e7"}.la-creative-commons-nc:before{content:"\f4e8"}.la-creative-commons-nc-eu:before{content:"\f4e9"}.la-creative-commons-nc-jp:before{content:"\f4ea"}.la-creative-commons-nd:before{content:"\f4eb"}.la-creative-commons-pd:before{content:"\f4ec"}.la-creative-commons-pd-alt:before{content:"\f4ed"}.la-creative-commons-remix:before{content:"\f4ee"}.la-creative-commons-sa:before{content:"\f4ef"}.la-creative-commons-sampling:before{content:"\f4f0"}.la-creative-commons-sampling-plus:before{content:"\f4f1"}.la-creative-commons-share:before{content:"\f4f2"}.la-creative-commons-zero:before{content:"\f4f3"}.la-credit-card:before{content:"\f09d"}.la-critical-role:before{content:"\f6c9"}.la-crop:before{content:"\f125"}.la-crop-alt:before{content:"\f565"}.la-cross:before{content:"\f654"}.la-crosshairs:before{content:"\f05b"}.la-crow:before{content:"\f520"}.la-crown:before{content:"\f521"}.la-crutch:before{content:"\f7f7"}.la-css3:before{content:"\f13c"}.la-css3-alt:before{content:"\f38b"}.la-cube:before{content:"\f1b2"}.la-cubes:before{content:"\f1b3"}.la-cut:before{content:"\f0c4"}.la-cuttlefish:before{content:"\f38c"}.la-d-and-d:before{content:"\f38d"}.la-d-and-d-beyond:before{content:"\f6ca"}.la-dashcube:before{content:"\f210"}.la-database:before{content:"\f1c0"}.la-deaf:before{content:"\f2a4"}.la-delicious:before{content:"\f1a5"}.la-democrat:before{content:"\f747"}.la-deploydog:before{content:"\f38e"}.la-deskpro:before{content:"\f38f"}.la-desktop:before{content:"\f108"}.la-dev:before{content:"\f6cc"}.la-deviantart:before{content:"\f1bd"}.la-dharmachakra:before{content:"\f655"}.la-dhl:before{content:"\f790"}.la-diagnoses:before{content:"\f470"}.la-diaspora:before{content:"\f791"}.la-dice:before{content:"\f522"}.la-dice-d20:before{content:"\f6cf"}.la-dice-d6:before{content:"\f6d1"}.la-dice-five:before{content:"\f523"}.la-dice-four:before{content:"\f524"}.la-dice-one:before{content:"\f525"}.la-dice-six:before{content:"\f526"}.la-dice-three:before{content:"\f527"}.la-dice-two:before{content:"\f528"}.la-digg:before{content:"\f1a6"}.la-digital-ocean:before{content:"\f391"}.la-digital-tachograph:before{content:"\f566"}.la-directions:before{content:"\f5eb"}.la-discord:before{content:"\f392"}.la-discourse:before{content:"\f393"}.la-divide:before{content:"\f529"}.la-dizzy:before{content:"\f567"}.la-dna:before{content:"\f471"}.la-dochub:before{content:"\f394"}.la-docker:before{content:"\f395"}.la-dog:before{content:"\f6d3"}.la-dollar-sign:before{content:"\f155"}.la-dolly:before{content:"\f472"}.la-dolly-flatbed:before{content:"\f474"}.la-donate:before{content:"\f4b9"}.la-door-closed:before{content:"\f52a"}.la-door-open:before{content:"\f52b"}.la-dot-circle:before{content:"\f192"}.la-dove:before{content:"\f4ba"}.la-download:before{content:"\f019"}.la-draft2digital:before{content:"\f396"}.la-drafting-compass:before{content:"\f568"}.la-dragon:before{content:"\f6d5"}.la-draw-polygon:before{content:"\f5ee"}.la-dribbble:before{content:"\f17d"}.la-dribbble-square:before{content:"\f397"}.la-dropbox:before{content:"\f16b"}.la-drum:before{content:"\f569"}.la-drum-steelpan:before{content:"\f56a"}.la-drumstick-bite:before{content:"\f6d7"}.la-drupal:before{content:"\f1a9"}.la-dumbbell:before{content:"\f44b"}.la-dumpster:before{content:"\f793"}.la-dumpster-fire:before{content:"\f794"}.la-dungeon:before{content:"\f6d9"}.la-dyalog:before{content:"\f399"}.la-earlybirds:before{content:"\f39a"}.la-ebay:before{content:"\f4f4"}.la-edge:before{content:"\f282"}.la-edit:before{content:"\f044"}.la-egg:before{content:"\f7fb"}.la-eject:before{content:"\f052"}.la-elementor:before{content:"\f430"}.la-ellipsis-h:before{content:"\f141"}.la-ellipsis-v:before{content:"\f142"}.la-ello:before{content:"\f5f1"}.la-ember:before{content:"\f423"}.la-empire:before{content:"\f1d1"}.la-envelope:before{content:"\f0e0"}.la-envelope-open:before{content:"\f2b6"}.la-envelope-open-text:before{content:"\f658"}.la-envelope-square:before{content:"\f199"}.la-envira:before{content:"\f299"}.la-equals:before{content:"\f52c"}.la-eraser:before{content:"\f12d"}.la-erlang:before{content:"\f39d"}.la-ethereum:before{content:"\f42e"}.la-ethernet:before{content:"\f796"}.la-etsy:before{content:"\f2d7"}.la-euro-sign:before{content:"\f153"}.la-evernote:before{content:"\f839"}.la-exchange-alt:before{content:"\f362"}.la-exclamation:before{content:"\f12a"}.la-exclamation-circle:before{content:"\f06a"}.la-exclamation-triangle:before{content:"\f071"}.la-expand:before{content:"\f065"}.la-expand-arrows-alt:before{content:"\f31e"}.la-expeditedssl:before{content:"\f23e"}.la-external-link-alt:before{content:"\f35d"}.la-external-link-square-alt:before{content:"\f360"}.la-eye:before{content:"\f06e"}.la-eye-dropper:before{content:"\f1fb"}.la-eye-slash:before{content:"\f070"}.la-facebook:before{content:"\f09a"}.la-facebook-f:before{content:"\f39e"}.la-facebook-messenger:before{content:"\f39f"}.la-facebook-square:before{content:"\f082"}.la-fan:before{content:"\f863"}.la-fantasy-flight-games:before{content:"\f6dc"}.la-fast-backward:before{content:"\f049"}.la-fast-forward:before{content:"\f050"}.la-fax:before{content:"\f1ac"}.la-feather:before{content:"\f52d"}.la-feather-alt:before{content:"\f56b"}.la-fedex:before{content:"\f797"}.la-fedora:before{content:"\f798"}.la-female:before{content:"\f182"}.la-fighter-jet:before{content:"\f0fb"}.la-figma:before{content:"\f799"}.la-file:before{content:"\f15b"}.la-file-alt:before{content:"\f15c"}.la-file-archive:before{content:"\f1c6"}.la-file-audio:before{content:"\f1c7"}.la-file-code:before{content:"\f1c9"}.la-file-contract:before{content:"\f56c"}.la-file-csv:before{content:"\f6dd"}.la-file-download:before{content:"\f56d"}.la-file-excel:before{content:"\f1c3"}.la-file-export:before{content:"\f56e"}.la-file-image:before{content:"\f1c5"}.la-file-import:before{content:"\f56f"}.la-file-invoice:before{content:"\f570"}.la-file-invoice-dollar:before{content:"\f571"}.la-file-medical:before{content:"\f477"}.la-file-medical-alt:before{content:"\f478"}.la-file-pdf:before{content:"\f1c1"}.la-file-powerpoint:before{content:"\f1c4"}.la-file-prescription:before{content:"\f572"}.la-file-signature:before{content:"\f573"}.la-file-upload:before{content:"\f574"}.la-file-video:before{content:"\f1c8"}.la-file-word:before{content:"\f1c2"}.la-fill:before{content:"\f575"}.la-fill-drip:before{content:"\f576"}.la-film:before{content:"\f008"}.la-filter:before{content:"\f0b0"}.la-fingerprint:before{content:"\f577"}.la-fire:before{content:"\f06d"}.la-fire-alt:before{content:"\f7e4"}.la-fire-extinguisher:before{content:"\f134"}.la-firefox:before{content:"\f269"}.la-first-aid:before{content:"\f479"}.la-first-order:before{content:"\f2b0"}.la-first-order-alt:before{content:"\f50a"}.la-firstdraft:before{content:"\f3a1"}.la-fish:before{content:"\f578"}.la-fist-raised:before{content:"\f6de"}.la-flag:before{content:"\f024"}.la-flag-checkered:before{content:"\f11e"}.la-flag-usa:before{content:"\f74d"}.la-flask:before{content:"\f0c3"}.la-flickr:before{content:"\f16e"}.la-flipboard:before{content:"\f44d"}.la-flushed:before{content:"\f579"}.la-fly:before{content:"\f417"}.la-folder:before{content:"\f07b"}.la-folder-minus:before{content:"\f65d"}.la-folder-open:before{content:"\f07c"}.la-folder-plus:before{content:"\f65e"}.la-font:before{content:"\f031"}.la-font-awesome:before{content:"\f2b4"}.la-font-awesome-alt:before{content:"\f35c"}.la-font-awesome-flag:before{content:"\f425"}.la-font-awesome-logo-full:before{content:"\f4e6"}.la-fonticons:before{content:"\f280"}.la-fonticons-fi:before{content:"\f3a2"}.la-football-ball:before{content:"\f44e"}.la-fort-awesome:before{content:"\f286"}.la-fort-awesome-alt:before{content:"\f3a3"}.la-forumbee:before{content:"\f211"}.la-forward:before{content:"\f04e"}.la-foursquare:before{content:"\f180"}.la-free-code-camp:before{content:"\f2c5"}.la-freebsd:before{content:"\f3a4"}.la-frog:before{content:"\f52e"}.la-frown:before{content:"\f119"}.la-frown-open:before{content:"\f57a"}.la-fulcrum:before{content:"\f50b"}.la-funnel-dollar:before{content:"\f662"}.la-futbol:before{content:"\f1e3"}.la-galactic-republic:before{content:"\f50c"}.la-galactic-senate:before{content:"\f50d"}.la-gamepad:before{content:"\f11b"}.la-gas-pump:before{content:"\f52f"}.la-gavel:before{content:"\f0e3"}.la-gem:before{content:"\f3a5"}.la-genderless:before{content:"\f22d"}.la-get-pocket:before{content:"\f265"}.la-gg:before{content:"\f260"}.la-gg-circle:before{content:"\f261"}.la-ghost:before{content:"\f6e2"}.la-gift:before{content:"\f06b"}.la-gifts:before{content:"\f79c"}.la-git:before{content:"\f1d3"}.la-git-alt:before{content:"\f841"}.la-git-square:before{content:"\f1d2"}.la-github:before{content:"\f09b"}.la-github-alt:before{content:"\f113"}.la-github-square:before{content:"\f092"}.la-gitkraken:before{content:"\f3a6"}.la-gitlab:before{content:"\f296"}.la-gitter:before{content:"\f426"}.la-glass-cheers:before{content:"\f79f"}.la-glass-martini:before{content:"\f000"}.la-glass-martini-alt:before{content:"\f57b"}.la-glass-whiskey:before{content:"\f7a0"}.la-glasses:before{content:"\f530"}.la-glide:before{content:"\f2a5"}.la-glide-g:before{content:"\f2a6"}.la-globe:before{content:"\f0ac"}.la-globe-africa:before{content:"\f57c"}.la-globe-americas:before{content:"\f57d"}.la-globe-asia:before{content:"\f57e"}.la-globe-europe:before{content:"\f7a2"}.la-gofore:before{content:"\f3a7"}.la-golf-ball:before{content:"\f450"}.la-goodreads:before{content:"\f3a8"}.la-goodreads-g:before{content:"\f3a9"}.la-google:before{content:"\f1a0"}.la-google-drive:before{content:"\f3aa"}.la-google-play:before{content:"\f3ab"}.la-google-plus:before{content:"\f2b3"}.la-google-plus-g:before{content:"\f0d5"}.la-google-plus-square:before{content:"\f0d4"}.la-google-wallet:before{content:"\f1ee"}.la-gopuram:before{content:"\f664"}.la-graduation-cap:before{content:"\f19d"}.la-gratipay:before{content:"\f184"}.la-grav:before{content:"\f2d6"}.la-greater-than:before{content:"\f531"}.la-greater-than-equal:before{content:"\f532"}.la-grimace:before{content:"\f57f"}.la-grin:before{content:"\f580"}.la-grin-alt:before{content:"\f581"}.la-grin-beam:before{content:"\f582"}.la-grin-beam-sweat:before{content:"\f583"}.la-grin-hearts:before{content:"\f584"}.la-grin-squint:before{content:"\f585"}.la-grin-squint-tears:before{content:"\f586"}.la-grin-stars:before{content:"\f587"}.la-grin-tears:before{content:"\f588"}.la-grin-tongue:before{content:"\f589"}.la-grin-tongue-squint:before{content:"\f58a"}.la-grin-tongue-wink:before{content:"\f58b"}.la-grin-wink:before{content:"\f58c"}.la-grip-horizontal:before{content:"\f58d"}.la-grip-lines:before{content:"\f7a4"}.la-grip-lines-vertical:before{content:"\f7a5"}.la-grip-vertical:before{content:"\f58e"}.la-gripfire:before{content:"\f3ac"}.la-grunt:before{content:"\f3ad"}.la-guitar:before{content:"\f7a6"}.la-gulp:before{content:"\f3ae"}.la-h-square:before{content:"\f0fd"}.la-hacker-news:before{content:"\f1d4"}.la-hacker-news-square:before{content:"\f3af"}.la-hackerrank:before{content:"\f5f7"}.la-hamburger:before{content:"\f805"}.la-hammer:before{content:"\f6e3"}.la-hamsa:before{content:"\f665"}.la-hand-holding:before{content:"\f4bd"}.la-hand-holding-heart:before{content:"\f4be"}.la-hand-holding-usd:before{content:"\f4c0"}.la-hand-lizard:before{content:"\f258"}.la-hand-middle-finger:before{content:"\f806"}.la-hand-paper:before{content:"\f256"}.la-hand-peace:before{content:"\f25b"}.la-hand-point-down:before{content:"\f0a7"}.la-hand-point-left:before{content:"\f0a5"}.la-hand-point-right:before{content:"\f0a4"}.la-hand-point-up:before{content:"\f0a6"}.la-hand-pointer:before{content:"\f25a"}.la-hand-rock:before{content:"\f255"}.la-hand-scissors:before{content:"\f257"}.la-hand-spock:before{content:"\f259"}.la-hands:before{content:"\f4c2"}.la-hands-helping:before{content:"\f4c4"}.la-handshake:before{content:"\f2b5"}.la-hanukiah:before{content:"\f6e6"}.la-hard-hat:before{content:"\f807"}.la-hashtag:before{content:"\f292"}.la-hat-cowboy:before{content:"\f8c0"}.la-hat-cowboy-side:before{content:"\f8c1"}.la-hat-wizard:before{content:"\f6e8"}.la-haykal:before{content:"\f666"}.la-hdd:before{content:"\f0a0"}.la-heading:before{content:"\f1dc"}.la-headphones:before{content:"\f025"}.la-headphones-alt:before{content:"\f58f"}.la-headset:before{content:"\f590"}.la-heart:before{content:"\f004"}.la-heart-broken:before{content:"\f7a9"}.la-heartbeat:before{content:"\f21e"}.la-helicopter:before{content:"\f533"}.la-highlighter:before{content:"\f591"}.la-hiking:before{content:"\f6ec"}.la-hippo:before{content:"\f6ed"}.la-hips:before{content:"\f452"}.la-hire-a-helper:before{content:"\f3b0"}.la-history:before{content:"\f1da"}.la-hockey-puck:before{content:"\f453"}.la-holly-berry:before{content:"\f7aa"}.la-home:before{content:"\f015"}.la-hooli:before{content:"\f427"}.la-hornbill:before{content:"\f592"}.la-horse:before{content:"\f6f0"}.la-horse-head:before{content:"\f7ab"}.la-hospital:before{content:"\f0f8"}.la-hospital-alt:before{content:"\f47d"}.la-hospital-symbol:before{content:"\f47e"}.la-hot-tub:before{content:"\f593"}.la-hotdog:before{content:"\f80f"}.la-hotel:before{content:"\f594"}.la-hotjar:before{content:"\f3b1"}.la-hourglass:before{content:"\f254"}.la-hourglass-end:before{content:"\f253"}.la-hourglass-half:before{content:"\f252"}.la-hourglass-start:before{content:"\f251"}.la-house-damage:before{content:"\f6f1"}.la-houzz:before{content:"\f27c"}.la-hryvnia:before{content:"\f6f2"}.la-html5:before{content:"\f13b"}.la-hubspot:before{content:"\f3b2"}.la-i-cursor:before{content:"\f246"}.la-ice-cream:before{content:"\f810"}.la-icicles:before{content:"\f7ad"}.la-icons:before{content:"\f86d"}.la-id-badge:before{content:"\f2c1"}.la-id-card:before{content:"\f2c2"}.la-id-card-alt:before{content:"\f47f"}.la-igloo:before{content:"\f7ae"}.la-image:before{content:"\f03e"}.la-images:before{content:"\f302"}.la-imdb:before{content:"\f2d8"}.la-inbox:before{content:"\f01c"}.la-indent:before{content:"\f03c"}.la-industry:before{content:"\f275"}.la-infinity:before{content:"\f534"}.la-info:before{content:"\f129"}.la-info-circle:before{content:"\f05a"}.la-instagram:before{content:"\f16d"}.la-intercom:before{content:"\f7af"}.la-internet-explorer:before{content:"\f26b"}.la-invision:before{content:"\f7b0"}.la-ioxhost:before{content:"\f208"}.la-italic:before{content:"\f033"}.la-itch-io:before{content:"\f83a"}.la-itunes:before{content:"\f3b4"}.la-itunes-note:before{content:"\f3b5"}.la-java:before{content:"\f4e4"}.la-jedi:before{content:"\f669"}.la-jedi-order:before{content:"\f50e"}.la-jenkins:before{content:"\f3b6"}.la-jira:before{content:"\f7b1"}.la-joget:before{content:"\f3b7"}.la-joint:before{content:"\f595"}.la-joomla:before{content:"\f1aa"}.la-journal-whills:before{content:"\f66a"}.la-js:before{content:"\f3b8"}.la-js-square:before{content:"\f3b9"}.la-jsfiddle:before{content:"\f1cc"}.la-kaaba:before{content:"\f66b"}.la-kaggle:before{content:"\f5fa"}.la-key:before{content:"\f084"}.la-keybase:before{content:"\f4f5"}.la-keyboard:before{content:"\f11c"}.la-keycdn:before{content:"\f3ba"}.la-khanda:before{content:"\f66d"}.la-kickstarter:before{content:"\f3bb"}.la-kickstarter-k:before{content:"\f3bc"}.la-kiss:before{content:"\f596"}.la-kiss-beam:before{content:"\f597"}.la-kiss-wink-heart:before{content:"\f598"}.la-kiwi-bird:before{content:"\f535"}.la-korvue:before{content:"\f42f"}.la-landmark:before{content:"\f66f"}.la-language:before{content:"\f1ab"}.la-laptop:before{content:"\f109"}.la-laptop-code:before{content:"\f5fc"}.la-laptop-medical:before{content:"\f812"}.la-laravel:before{content:"\f3bd"}.la-lastfm:before{content:"\f202"}.la-lastfm-square:before{content:"\f203"}.la-laugh:before{content:"\f599"}.la-laugh-beam:before{content:"\f59a"}.la-laugh-squint:before{content:"\f59b"}.la-laugh-wink:before{content:"\f59c"}.la-layer-group:before{content:"\f5fd"}.la-leaf:before{content:"\f06c"}.la-leanpub:before{content:"\f212"}.la-lemon:before{content:"\f094"}.la-less:before{content:"\f41d"}.la-less-than:before{content:"\f536"}.la-less-than-equal:before{content:"\f537"}.la-level-down-alt:before{content:"\f3be"}.la-level-up-alt:before{content:"\f3bf"}.la-life-ring:before{content:"\f1cd"}.la-lightbulb:before{content:"\f0eb"}.la-line:before{content:"\f3c0"}.la-link:before{content:"\f0c1"}.la-linkedin:before{content:"\f08c"}.la-linkedin-in:before{content:"\f0e1"}.la-linode:before{content:"\f2b8"}.la-linux:before{content:"\f17c"}.la-lira-sign:before{content:"\f195"}.la-list:before{content:"\f03a"}.la-list-alt:before{content:"\f022"}.la-list-ol:before{content:"\f0cb"}.la-list-ul:before{content:"\f0ca"}.la-location-arrow:before{content:"\f124"}.la-lock:before{content:"\f023"}.la-lock-open:before{content:"\f3c1"}.la-long-arrow-alt-down:before{content:"\f309"}.la-long-arrow-alt-left:before{content:"\f30a"}.la-long-arrow-alt-right:before{content:"\f30b"}.la-long-arrow-alt-up:before{content:"\f30c"}.la-low-vision:before{content:"\f2a8"}.la-luggage-cart:before{content:"\f59d"}.la-lyft:before{content:"\f3c3"}.la-magento:before{content:"\f3c4"}.la-magic:before{content:"\f0d0"}.la-magnet:before{content:"\f076"}.la-mail-bulk:before{content:"\f674"}.la-mailchimp:before{content:"\f59e"}.la-male:before{content:"\f183"}.la-mandalorian:before{content:"\f50f"}.la-map:before{content:"\f279"}.la-map-marked:before{content:"\f59f"}.la-map-marked-alt:before{content:"\f5a0"}.la-map-marker:before{content:"\f041"}.la-map-marker-alt:before{content:"\f3c5"}.la-map-pin:before{content:"\f276"}.la-map-signs:before{content:"\f277"}.la-markdown:before{content:"\f60f"}.la-marker:before{content:"\f5a1"}.la-mars:before{content:"\f222"}.la-mars-double:before{content:"\f227"}.la-mars-stroke:before{content:"\f229"}.la-mars-stroke-h:before{content:"\f22b"}.la-mars-stroke-v:before{content:"\f22a"}.la-mask:before{content:"\f6fa"}.la-mastodon:before{content:"\f4f6"}.la-maxcdn:before{content:"\f136"}.la-mdb:before{content:"\f8ca"}.la-medal:before{content:"\f5a2"}.la-medapps:before{content:"\f3c6"}.la-medium:before{content:"\f23a"}.la-medium-m:before{content:"\f3c7"}.la-medkit:before{content:"\f0fa"}.la-medrt:before{content:"\f3c8"}.la-meetup:before{content:"\f2e0"}.la-megaport:before{content:"\f5a3"}.la-meh:before{content:"\f11a"}.la-meh-blank:before{content:"\f5a4"}.la-meh-rolling-eyes:before{content:"\f5a5"}.la-memory:before{content:"\f538"}.la-mendeley:before{content:"\f7b3"}.la-menorah:before{content:"\f676"}.la-mercury:before{content:"\f223"}.la-meteor:before{content:"\f753"}.la-microchip:before{content:"\f2db"}.la-microphone:before{content:"\f130"}.la-microphone-alt:before{content:"\f3c9"}.la-microphone-alt-slash:before{content:"\f539"}.la-microphone-slash:before{content:"\f131"}.la-microscope:before{content:"\f610"}.la-microsoft:before{content:"\f3ca"}.la-minus:before{content:"\f068"}.la-minus-circle:before{content:"\f056"}.la-minus-square:before{content:"\f146"}.la-mitten:before{content:"\f7b5"}.la-mix:before{content:"\f3cb"}.la-mixcloud:before{content:"\f289"}.la-mizuni:before{content:"\f3cc"}.la-mobile:before{content:"\f10b"}.la-mobile-alt:before{content:"\f3cd"}.la-modx:before{content:"\f285"}.la-monero:before{content:"\f3d0"}.la-money-bill:before{content:"\f0d6"}.la-money-bill-alt:before{content:"\f3d1"}.la-money-bill-wave:before{content:"\f53a"}.la-money-bill-wave-alt:before{content:"\f53b"}.la-money-check:before{content:"\f53c"}.la-money-check-alt:before{content:"\f53d"}.la-monument:before{content:"\f5a6"}.la-moon:before{content:"\f186"}.la-mortar-pestle:before{content:"\f5a7"}.la-mosque:before{content:"\f678"}.la-motorcycle:before{content:"\f21c"}.la-mountain:before{content:"\f6fc"}.la-mouse:before{content:"\f8cc"}.la-mouse-pointer:before{content:"\f245"}.la-mug-hot:before{content:"\f7b6"}.la-music:before{content:"\f001"}.la-napster:before{content:"\f3d2"}.la-neos:before{content:"\f612"}.la-network-wired:before{content:"\f6ff"}.la-neuter:before{content:"\f22c"}.la-newspaper:before{content:"\f1ea"}.la-nimblr:before{content:"\f5a8"}.la-node:before{content:"\f419"}.la-node-js:before{content:"\f3d3"}.la-not-equal:before{content:"\f53e"}.la-notes-medical:before{content:"\f481"}.la-npm:before{content:"\f3d4"}.la-ns8:before{content:"\f3d5"}.la-nutritionix:before{content:"\f3d6"}.la-object-group:before{content:"\f247"}.la-object-ungroup:before{content:"\f248"}.la-odnoklassniki:before{content:"\f263"}.la-odnoklassniki-square:before{content:"\f264"}.la-oil-can:before{content:"\f613"}.la-old-republic:before{content:"\f510"}.la-om:before{content:"\f679"}.la-opencart:before{content:"\f23d"}.la-openid:before{content:"\f19b"}.la-opera:before{content:"\f26a"}.la-optin-monster:before{content:"\f23c"}.la-orcid:before{content:"\f8d2"}.la-osi:before{content:"\f41a"}.la-otter:before{content:"\f700"}.la-outdent:before{content:"\f03b"}.la-page4:before{content:"\f3d7"}.la-pagelines:before{content:"\f18c"}.la-pager:before{content:"\f815"}.la-paint-brush:before{content:"\f1fc"}.la-paint-roller:before{content:"\f5aa"}.la-palette:before{content:"\f53f"}.la-palfed:before{content:"\f3d8"}.la-pallet:before{content:"\f482"}.la-paper-plane:before{content:"\f1d8"}.la-paperclip:before{content:"\f0c6"}.la-parachute-box:before{content:"\f4cd"}.la-paragraph:before{content:"\f1dd"}.la-parking:before{content:"\f540"}.la-passport:before{content:"\f5ab"}.la-pastafarianism:before{content:"\f67b"}.la-paste:before{content:"\f0ea"}.la-patreon:before{content:"\f3d9"}.la-pause:before{content:"\f04c"}.la-pause-circle:before{content:"\f28b"}.la-paw:before{content:"\f1b0"}.la-paypal:before{content:"\f1ed"}.la-peace:before{content:"\f67c"}.la-pen:before{content:"\f304"}.la-pen-alt:before{content:"\f305"}.la-pen-fancy:before{content:"\f5ac"}.la-pen-nib:before{content:"\f5ad"}.la-pen-square:before{content:"\f14b"}.la-pencil-alt:before{content:"\f303"}.la-pencil-ruler:before{content:"\f5ae"}.la-penny-arcade:before{content:"\f704"}.la-people-carry:before{content:"\f4ce"}.la-pepper-hot:before{content:"\f816"}.la-percent:before{content:"\f295"}.la-percentage:before{content:"\f541"}.la-periscope:before{content:"\f3da"}.la-person-booth:before{content:"\f756"}.la-phabricator:before{content:"\f3db"}.la-phoenix-framework:before{content:"\f3dc"}.la-phoenix-squadron:before{content:"\f511"}.la-phone:before{content:"\f095"}.la-phone-alt:before{content:"\f879"}.la-phone-slash:before{content:"\f3dd"}.la-phone-square:before{content:"\f098"}.la-phone-square-alt:before{content:"\f87b"}.la-phone-volume:before{content:"\f2a0"}.la-photo-video:before{content:"\f87c"}.la-php:before{content:"\f457"}.la-pied-piper:before{content:"\f2ae"}.la-pied-piper-alt:before{content:"\f1a8"}.la-pied-piper-hat:before{content:"\f4e5"}.la-pied-piper-pp:before{content:"\f1a7"}.la-piggy-bank:before{content:"\f4d3"}.la-pills:before{content:"\f484"}.la-pinterest:before{content:"\f0d2"}.la-pinterest-p:before{content:"\f231"}.la-pinterest-square:before{content:"\f0d3"}.la-pizza-slice:before{content:"\f818"}.la-place-of-worship:before{content:"\f67f"}.la-plane:before{content:"\f072"}.la-plane-arrival:before{content:"\f5af"}.la-plane-departure:before{content:"\f5b0"}.la-play:before{content:"\f04b"}.la-play-circle:before{content:"\f144"}.la-playstation:before{content:"\f3df"}.la-plug:before{content:"\f1e6"}.la-plus:before{content:"\f067"}.la-plus-circle:before{content:"\f055"}.la-plus-square:before{content:"\f0fe"}.la-podcast:before{content:"\f2ce"}.la-poll:before{content:"\f681"}.la-poll-h:before{content:"\f682"}.la-poo:before{content:"\f2fe"}.la-poo-storm:before{content:"\f75a"}.la-poop:before{content:"\f619"}.la-portrait:before{content:"\f3e0"}.la-pound-sign:before{content:"\f154"}.la-power-off:before{content:"\f011"}.la-pray:before{content:"\f683"}.la-praying-hands:before{content:"\f684"}.la-prescription:before{content:"\f5b1"}.la-prescription-bottle:before{content:"\f485"}.la-prescription-bottle-alt:before{content:"\f486"}.la-print:before{content:"\f02f"}.la-procedures:before{content:"\f487"}.la-product-hunt:before{content:"\f288"}.la-project-diagram:before{content:"\f542"}.la-pushed:before{content:"\f3e1"}.la-puzzle-piece:before{content:"\f12e"}.la-python:before{content:"\f3e2"}.la-qq:before{content:"\f1d6"}.la-qrcode:before{content:"\f029"}.la-question:before{content:"\f128"}.la-question-circle:before{content:"\f059"}.la-quidditch:before{content:"\f458"}.la-quinscape:before{content:"\f459"}.la-quora:before{content:"\f2c4"}.la-quote-left:before{content:"\f10d"}.la-quote-right:before{content:"\f10e"}.la-quran:before{content:"\f687"}.la-r-project:before{content:"\f4f7"}.la-radiation:before{content:"\f7b9"}.la-radiation-alt:before{content:"\f7ba"}.la-rainbow:before{content:"\f75b"}.la-random:before{content:"\f074"}.la-raspberry-pi:before{content:"\f7bb"}.la-ravelry:before{content:"\f2d9"}.la-react:before{content:"\f41b"}.la-reacteurope:before{content:"\f75d"}.la-readme:before{content:"\f4d5"}.la-rebel:before{content:"\f1d0"}.la-receipt:before{content:"\f543"}.la-record-vinyl:before{content:"\f8d9"}.la-recycle:before{content:"\f1b8"}.la-red-river:before{content:"\f3e3"}.la-reddit:before{content:"\f1a1"}.la-reddit-alien:before{content:"\f281"}.la-reddit-square:before{content:"\f1a2"}.la-redhat:before{content:"\f7bc"}.la-redo:before{content:"\f01e"}.la-redo-alt:before{content:"\f2f9"}.la-registered:before{content:"\f25d"}.la-remove-format:before{content:"\f87d"}.la-renren:before{content:"\f18b"}.la-reply:before{content:"\f3e5"}.la-reply-all:before{content:"\f122"}.la-replyd:before{content:"\f3e6"}.la-republican:before{content:"\f75e"}.la-researchgate:before{content:"\f4f8"}.la-resolving:before{content:"\f3e7"}.la-restroom:before{content:"\f7bd"}.la-retweet:before{content:"\f079"}.la-rev:before{content:"\f5b2"}.la-ribbon:before{content:"\f4d6"}.la-ring:before{content:"\f70b"}.la-road:before{content:"\f018"}.la-robot:before{content:"\f544"}.la-rocket:before{content:"\f135"}.la-rocketchat:before{content:"\f3e8"}.la-rockrms:before{content:"\f3e9"}.la-route:before{content:"\f4d7"}.la-rss:before{content:"\f09e"}.la-rss-square:before{content:"\f143"}.la-ruble-sign:before{content:"\f158"}.la-ruler:before{content:"\f545"}.la-ruler-combined:before{content:"\f546"}.la-ruler-horizontal:before{content:"\f547"}.la-ruler-vertical:before{content:"\f548"}.la-running:before{content:"\f70c"}.la-rupee-sign:before{content:"\f156"}.la-sad-cry:before{content:"\f5b3"}.la-sad-tear:before{content:"\f5b4"}.la-safari:before{content:"\f267"}.la-salesforce:before{content:"\f83b"}.la-sass:before{content:"\f41e"}.la-satellite:before{content:"\f7bf"}.la-satellite-dish:before{content:"\f7c0"}.la-save:before{content:"\f0c7"}.la-schlix:before{content:"\f3ea"}.la-school:before{content:"\f549"}.la-screwdriver:before{content:"\f54a"}.la-scribd:before{content:"\f28a"}.la-scroll:before{content:"\f70e"}.la-sd-card:before{content:"\f7c2"}.la-search:before{content:"\f002"}.la-search-dollar:before{content:"\f688"}.la-search-location:before{content:"\f689"}.la-search-minus:before{content:"\f010"}.la-search-plus:before{content:"\f00e"}.la-searchengin:before{content:"\f3eb"}.la-seedling:before{content:"\f4d8"}.la-sellcast:before{content:"\f2da"}.la-sellsy:before{content:"\f213"}.la-server:before{content:"\f233"}.la-servicestack:before{content:"\f3ec"}.la-shapes:before{content:"\f61f"}.la-share:before{content:"\f064"}.la-share-alt:before{content:"\f1e0"}.la-share-alt-square:before{content:"\f1e1"}.la-share-square:before{content:"\f14d"}.la-shekel-sign:before{content:"\f20b"}.la-shield-alt:before{content:"\f3ed"}.la-ship:before{content:"\f21a"}.la-shipping-fast:before{content:"\f48b"}.la-shirtsinbulk:before{content:"\f214"}.la-shoe-prints:before{content:"\f54b"}.la-shopping-bag:before{content:"\f290"}.la-shopping-basket:before{content:"\f291"}.la-shopping-cart:before{content:"\f07a"}.la-shopware:before{content:"\f5b5"}.la-shower:before{content:"\f2cc"}.la-shuttle-van:before{content:"\f5b6"}.la-sign:before{content:"\f4d9"}.la-sign-in-alt:before{content:"\f2f6"}.la-sign-language:before{content:"\f2a7"}.la-sign-out-alt:before{content:"\f2f5"}.la-signal:before{content:"\f012"}.la-signature:before{content:"\f5b7"}.la-sim-card:before{content:"\f7c4"}.la-simplybuilt:before{content:"\f215"}.la-sistrix:before{content:"\f3ee"}.la-sitemap:before{content:"\f0e8"}.la-sith:before{content:"\f512"}.la-skating:before{content:"\f7c5"}.la-sketch:before{content:"\f7c6"}.la-skiing:before{content:"\f7c9"}.la-skiing-nordic:before{content:"\f7ca"}.la-skull:before{content:"\f54c"}.la-skull-crossbones:before{content:"\f714"}.la-skyatlas:before{content:"\f216"}.la-skype:before{content:"\f17e"}.la-slack:before{content:"\f198"}.la-slack-hash:before{content:"\f3ef"}.la-slash:before{content:"\f715"}.la-sleigh:before{content:"\f7cc"}.la-sliders-h:before{content:"\f1de"}.la-slideshare:before{content:"\f1e7"}.la-smile:before{content:"\f118"}.la-smile-beam:before{content:"\f5b8"}.la-smile-wink:before{content:"\f4da"}.la-smog:before{content:"\f75f"}.la-smoking:before{content:"\f48d"}.la-smoking-ban:before{content:"\f54d"}.la-sms:before{content:"\f7cd"}.la-snapchat:before{content:"\f2ab"}.la-snapchat-ghost:before{content:"\f2ac"}.la-snapchat-square:before{content:"\f2ad"}.la-snowboarding:before{content:"\f7ce"}.la-snowflake:before{content:"\f2dc"}.la-snowman:before{content:"\f7d0"}.la-snowplow:before{content:"\f7d2"}.la-socks:before{content:"\f696"}.la-solar-panel:before{content:"\f5ba"}.la-sort:before{content:"\f0dc"}.la-sort-alpha-down:before{content:"\f15d"}.la-sort-alpha-down-alt:before{content:"\f881"}.la-sort-alpha-up:before{content:"\f15e"}.la-sort-alpha-up-alt:before{content:"\f882"}.la-sort-amount-down:before{content:"\f160"}.la-sort-amount-down-alt:before{content:"\f884"}.la-sort-amount-up:before{content:"\f161"}.la-sort-amount-up-alt:before{content:"\f885"}.la-sort-down:before{content:"\f0dd"}.la-sort-numeric-down:before{content:"\f162"}.la-sort-numeric-down-alt:before{content:"\f886"}.la-sort-numeric-up:before{content:"\f163"}.la-sort-numeric-up-alt:before{content:"\f887"}.la-sort-up:before{content:"\f0de"}.la-soundcloud:before{content:"\f1be"}.la-sourcetree:before{content:"\f7d3"}.la-spa:before{content:"\f5bb"}.la-space-shuttle:before{content:"\f197"}.la-speakap:before{content:"\f3f3"}.la-speaker-deck:before{content:"\f83c"}.la-spell-check:before{content:"\f891"}.la-spider:before{content:"\f717"}.la-spinner:before{content:"\f110"}.la-splotch:before{content:"\f5bc"}.la-spotify:before{content:"\f1bc"}.la-spray-can:before{content:"\f5bd"}.la-square:before{content:"\f0c8"}.la-square-full:before{content:"\f45c"}.la-square-root-alt:before{content:"\f698"}.la-squarespace:before{content:"\f5be"}.la-stack-exchange:before{content:"\f18d"}.la-stack-overflow:before{content:"\f16c"}.la-stackpath:before{content:"\f842"}.la-stamp:before{content:"\f5bf"}.la-star:before{content:"\f005"}.la-star-and-crescent:before{content:"\f699"}.la-star-half:before{content:"\f089"}.la-star-half-alt:before{content:"\f5c0"}.la-star-of-david:before{content:"\f69a"}.la-star-of-life:before{content:"\f621"}.la-staylinked:before{content:"\f3f5"}.la-steam:before{content:"\f1b6"}.la-steam-square:before{content:"\f1b7"}.la-steam-symbol:before{content:"\f3f6"}.la-step-backward:before{content:"\f048"}.la-step-forward:before{content:"\f051"}.la-stethoscope:before{content:"\f0f1"}.la-sticker-mule:before{content:"\f3f7"}.la-sticky-note:before{content:"\f249"}.la-stop:before{content:"\f04d"}.la-stop-circle:before{content:"\f28d"}.la-stopwatch:before{content:"\f2f2"}.la-store:before{content:"\f54e"}.la-store-alt:before{content:"\f54f"}.la-strava:before{content:"\f428"}.la-stream:before{content:"\f550"}.la-street-view:before{content:"\f21d"}.la-strikethrough:before{content:"\f0cc"}.la-stripe:before{content:"\f429"}.la-stripe-s:before{content:"\f42a"}.la-stroopwafel:before{content:"\f551"}.la-studiovinari:before{content:"\f3f8"}.la-stumbleupon:before{content:"\f1a4"}.la-stumbleupon-circle:before{content:"\f1a3"}.la-subscript:before{content:"\f12c"}.la-subway:before{content:"\f239"}.la-suitcase:before{content:"\f0f2"}.la-suitcase-rolling:before{content:"\f5c1"}.la-sun:before{content:"\f185"}.la-superpowers:before{content:"\f2dd"}.la-superscript:before{content:"\f12b"}.la-supple:before{content:"\f3f9"}.la-surprise:before{content:"\f5c2"}.la-suse:before{content:"\f7d6"}.la-swatchbook:before{content:"\f5c3"}.la-swift:before{content:"\f8e1"}.la-swimmer:before{content:"\f5c4"}.la-swimming-pool:before{content:"\f5c5"}.la-symfony:before{content:"\f83d"}.la-synagogue:before{content:"\f69b"}.la-sync:before{content:"\f021"}.la-sync-alt:before{content:"\f2f1"}.la-syringe:before{content:"\f48e"}.la-table:before{content:"\f0ce"}.la-table-tennis:before{content:"\f45d"}.la-tablet:before{content:"\f10a"}.la-tablet-alt:before{content:"\f3fa"}.la-tablets:before{content:"\f490"}.la-tachometer-alt:before{content:"\f3fd"}.la-tag:before{content:"\f02b"}.la-tags:before{content:"\f02c"}.la-tape:before{content:"\f4db"}.la-tasks:before{content:"\f0ae"}.la-taxi:before{content:"\f1ba"}.la-teamspeak:before{content:"\f4f9"}.la-teeth:before{content:"\f62e"}.la-teeth-open:before{content:"\f62f"}.la-telegram:before{content:"\f2c6"}.la-telegram-plane:before{content:"\f3fe"}.la-temperature-high:before{content:"\f769"}.la-temperature-low:before{content:"\f76b"}.la-tencent-weibo:before{content:"\f1d5"}.la-tenge:before{content:"\f7d7"}.la-terminal:before{content:"\f120"}.la-text-height:before{content:"\f034"}.la-text-width:before{content:"\f035"}.la-th:before{content:"\f00a"}.la-th-large:before{content:"\f009"}.la-th-list:before{content:"\f00b"}.la-the-red-yeti:before{content:"\f69d"}.la-theater-masks:before{content:"\f630"}.la-themeco:before{content:"\f5c6"}.la-themeisle:before{content:"\f2b2"}.la-thermometer:before{content:"\f491"}.la-thermometer-empty:before{content:"\f2cb"}.la-thermometer-full:before{content:"\f2c7"}.la-thermometer-half:before{content:"\f2c9"}.la-thermometer-quarter:before{content:"\f2ca"}.la-thermometer-three-quarters:before{content:"\f2c8"}.la-think-peaks:before{content:"\f731"}.la-thumbs-down:before{content:"\f165"}.la-thumbs-up:before{content:"\f164"}.la-thumbtack:before{content:"\f08d"}.la-ticket-alt:before{content:"\f3ff"}.la-times:before{content:"\f00d"}.la-times-circle:before{content:"\f057"}.la-tint:before{content:"\f043"}.la-tint-slash:before{content:"\f5c7"}.la-tired:before{content:"\f5c8"}.la-toggle-off:before{content:"\f204"}.la-toggle-on:before{content:"\f205"}.la-toilet:before{content:"\f7d8"}.la-toilet-paper:before{content:"\f71e"}.la-toolbox:before{content:"\f552"}.la-tools:before{content:"\f7d9"}.la-tooth:before{content:"\f5c9"}.la-torah:before{content:"\f6a0"}.la-torii-gate:before{content:"\f6a1"}.la-tractor:before{content:"\f722"}.la-trade-federation:before{content:"\f513"}.la-trademark:before{content:"\f25c"}.la-traffic-light:before{content:"\f637"}.la-train:before{content:"\f238"}.la-tram:before{content:"\f7da"}.la-transgender:before{content:"\f224"}.la-transgender-alt:before{content:"\f225"}.la-trash:before{content:"\f1f8"}.la-trash-alt:before{content:"\f2ed"}.la-trash-restore:before{content:"\f829"}.la-trash-restore-alt:before{content:"\f82a"}.la-tree:before{content:"\f1bb"}.la-trello:before{content:"\f181"}.la-tripadvisor:before{content:"\f262"}.la-trophy:before{content:"\f091"}.la-truck:before{content:"\f0d1"}.la-truck-loading:before{content:"\f4de"}.la-truck-monster:before{content:"\f63b"}.la-truck-moving:before{content:"\f4df"}.la-truck-pickup:before{content:"\f63c"}.la-tshirt:before{content:"\f553"}.la-tty:before{content:"\f1e4"}.la-tumblr:before{content:"\f173"}.la-tumblr-square:before{content:"\f174"}.la-tv:before{content:"\f26c"}.la-twitch:before{content:"\f1e8"}.la-twitter:before{content:"\f099"}.la-twitter-square:before{content:"\f081"}.la-typo3:before{content:"\f42b"}.la-uber:before{content:"\f402"}.la-ubuntu:before{content:"\f7df"}.la-uikit:before{content:"\f403"}.la-umbraco:before{content:"\f8e8"}.la-umbrella:before{content:"\f0e9"}.la-umbrella-beach:before{content:"\f5ca"}.la-underline:before{content:"\f0cd"}.la-undo:before{content:"\f0e2"}.la-undo-alt:before{content:"\f2ea"}.la-uniregistry:before{content:"\f404"}.la-universal-access:before{content:"\f29a"}.la-university:before{content:"\f19c"}.la-unlink:before{content:"\f127"}.la-unlock:before{content:"\f09c"}.la-unlock-alt:before{content:"\f13e"}.la-untappd:before{content:"\f405"}.la-upload:before{content:"\f093"}.la-ups:before{content:"\f7e0"}.la-usb:before{content:"\f287"}.la-user:before{content:"\f007"}.la-user-alt:before{content:"\f406"}.la-user-alt-slash:before{content:"\f4fa"}.la-user-astronaut:before{content:"\f4fb"}.la-user-check:before{content:"\f4fc"}.la-user-circle:before{content:"\f2bd"}.la-user-clock:before{content:"\f4fd"}.la-user-cog:before{content:"\f4fe"}.la-user-edit:before{content:"\f4ff"}.la-user-friends:before{content:"\f500"}.la-user-graduate:before{content:"\f501"}.la-user-injured:before{content:"\f728"}.la-user-lock:before{content:"\f502"}.la-user-md:before{content:"\f0f0"}.la-user-minus:before{content:"\f503"}.la-user-ninja:before{content:"\f504"}.la-user-nurse:before{content:"\f82f"}.la-user-plus:before{content:"\f234"}.la-user-secret:before{content:"\f21b"}.la-user-shield:before{content:"\f505"}.la-user-slash:before{content:"\f506"}.la-user-tag:before{content:"\f507"}.la-user-tie:before{content:"\f508"}.la-user-times:before{content:"\f235"}.la-users:before{content:"\f0c0"}.la-users-cog:before{content:"\f509"}.la-usps:before{content:"\f7e1"}.la-ussunnah:before{content:"\f407"}.la-utensil-spoon:before{content:"\f2e5"}.la-utensils:before{content:"\f2e7"}.la-vaadin:before{content:"\f408"}.la-vector-square:before{content:"\f5cb"}.la-venus:before{content:"\f221"}.la-venus-double:before{content:"\f226"}.la-venus-mars:before{content:"\f228"}.la-viacoin:before{content:"\f237"}.la-viadeo:before{content:"\f2a9"}.la-viadeo-square:before{content:"\f2aa"}.la-vial:before{content:"\f492"}.la-vials:before{content:"\f493"}.la-viber:before{content:"\f409"}.la-video:before{content:"\f03d"}.la-video-slash:before{content:"\f4e2"}.la-vihara:before{content:"\f6a7"}.la-vimeo:before{content:"\f40a"}.la-vimeo-square:before{content:"\f194"}.la-vimeo-v:before{content:"\f27d"}.la-vine:before{content:"\f1ca"}.la-vk:before{content:"\f189"}.la-vnv:before{content:"\f40b"}.la-voicemail:before{content:"\f897"}.la-volleyball-ball:before{content:"\f45f"}.la-volume-down:before{content:"\f027"}.la-volume-mute:before{content:"\f6a9"}.la-volume-off:before{content:"\f026"}.la-volume-up:before{content:"\f028"}.la-vote-yea:before{content:"\f772"}.la-vr-cardboard:before{content:"\f729"}.la-vuejs:before{content:"\f41f"}.la-walking:before{content:"\f554"}.la-wallet:before{content:"\f555"}.la-warehouse:before{content:"\f494"}.la-water:before{content:"\f773"}.la-wave-square:before{content:"\f83e"}.la-waze:before{content:"\f83f"}.la-weebly:before{content:"\f5cc"}.la-weibo:before{content:"\f18a"}.la-weight:before{content:"\f496"}.la-weight-hanging:before{content:"\f5cd"}.la-weixin:before{content:"\f1d7"}.la-whatsapp:before{content:"\f232"}.la-whatsapp-square:before{content:"\f40c"}.la-wheelchair:before{content:"\f193"}.la-whmcs:before{content:"\f40d"}.la-wifi:before{content:"\f1eb"}.la-wikipedia-w:before{content:"\f266"}.la-wind:before{content:"\f72e"}.la-window-close:before{content:"\f410"}.la-window-maximize:before{content:"\f2d0"}.la-window-minimize:before{content:"\f2d1"}.la-window-restore:before{content:"\f2d2"}.la-windows:before{content:"\f17a"}.la-wine-bottle:before{content:"\f72f"}.la-wine-glass:before{content:"\f4e3"}.la-wine-glass-alt:before{content:"\f5ce"}.la-wix:before{content:"\f5cf"}.la-wizards-of-the-coast:before{content:"\f730"}.la-wolf-pack-battalion:before{content:"\f514"}.la-won-sign:before{content:"\f159"}.la-wordpress:before{content:"\f19a"}.la-wordpress-simple:before{content:"\f411"}.la-wpbeginner:before{content:"\f297"}.la-wpexplorer:before{content:"\f2de"}.la-wpforms:before{content:"\f298"}.la-wpressr:before{content:"\f3e4"}.la-wrench:before{content:"\f0ad"}.la-x-ray:before{content:"\f497"}.la-xbox:before{content:"\f412"}.la-xing:before{content:"\f168"}.la-xing-square:before{content:"\f169"}.la-y-combinator:before{content:"\f23b"}.la-yahoo:before{content:"\f19e"}.la-yammer:before{content:"\f840"}.la-yandex:before{content:"\f413"}.la-yandex-international:before{content:"\f414"}.la-yarn:before{content:"\f7e3"}.la-yelp:before{content:"\f1e9"}.la-yen-sign:before{content:"\f157"}.la-yin-yang:before{content:"\f6ad"}.la-yoast:before{content:"\f2b1"}.la-youtube:before{content:"\f167"}.la-youtube-square:before{content:"\f431"}.la-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:'Line Awesome Brands';font-style:normal;font-weight:400;font-display:auto;src:url(../fonts/la-brands-400.eot);src:url(../fonts/la-brands-400.eot?#iefix) format("embedded-opentype"),url(../fonts/la-brands-400.woff2) format("woff2"),url(../fonts/la-brands-400.woff) format("woff"),url(../fonts/la-brands-400.ttf) format("truetype"),url(../fonts/la-brands-400.svg#lineawesome) format("svg")}.lab{font-family:'Line Awesome Brands'}@font-face{font-family:'Line Awesome Free';font-style:normal;font-weight:400;font-display:auto;src:url(../fonts/la-regular-400.eot);src:url(../fonts/la-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/la-regular-400.woff2) format("woff2"),url(../fonts/la-regular-400.woff) format("woff"),url(../fonts/la-regular-400.ttf) format("truetype"),url(../fonts/la-regular-400.svg#lineawesome) format("svg")}.lar{font-family:'Line Awesome Free';font-weight:400}@font-face{font-family:'Line Awesome Free';font-style:normal;font-weight:900;font-display:auto;src:url(../fonts/la-solid-900.eot);src:url(../fonts/la-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/la-solid-900.woff2) format("woff2"),url(../fonts/la-solid-900.woff) format("woff"),url(../fonts/la-solid-900.ttf) format("truetype"),url(../fonts/la-solid-900.svg#lineawesome) format("svg")}.la,.las{font-family:'Line Awesome Free';font-weight:900}.la.la-glass:before{content:"\f000"}.la.la-meetup{font-family:'Line Awesome Brands';font-weight:400}.la.la-star-o{font-family:'Line Awesome Free';font-weight:400}.la.la-star-o:before{content:"\f005"}.la.la-remove:before{content:"\f00d"}.la.la-close:before{content:"\f00d"}.la.la-gear:before{content:"\f013"}.la.la-trash-o{font-family:'Line Awesome Free';font-weight:400}.la.la-trash-o:before{content:"\f2ed"}.la.la-file-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-o:before{content:"\f15b"}.la.la-clock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-clock-o:before{content:"\f017"}.la.la-arrow-circle-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-down:before{content:"\f358"}.la.la-arrow-circle-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-up:before{content:"\f35b"}.la.la-play-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-play-circle-o:before{content:"\f144"}.la.la-repeat:before{content:"\f01e"}.la.la-rotate-right:before{content:"\f01e"}.la.la-refresh:before{content:"\f021"}.la.la-list-alt{font-family:'Line Awesome Free';font-weight:400}.la.la-dedent:before{content:"\f03b"}.la.la-video-camera:before{content:"\f03d"}.la.la-picture-o{font-family:'Line Awesome Free';font-weight:400}.la.la-picture-o:before{content:"\f03e"}.la.la-photo{font-family:'Line Awesome Free';font-weight:400}.la.la-photo:before{content:"\f03e"}.la.la-image{font-family:'Line Awesome Free';font-weight:400}.la.la-image:before{content:"\f03e"}.la.la-pencil:before{content:"\f303"}.la.la-map-marker:before{content:"\f3c5"}.la.la-pencil-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-pencil-square-o:before{content:"\f044"}.la.la-share-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-share-square-o:before{content:"\f14d"}.la.la-check-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-check-square-o:before{content:"\f14a"}.la.la-arrows:before{content:"\f0b2"}.la.la-times-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-times-circle-o:before{content:"\f057"}.la.la-check-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-check-circle-o:before{content:"\f058"}.la.la-mail-forward:before{content:"\f064"}.la.la-eye{font-family:'Line Awesome Free';font-weight:400}.la.la-eye-slash{font-family:'Line Awesome Free';font-weight:400}.la.la-warning:before{content:"\f071"}.la.la-calendar:before{content:"\f073"}.la.la-arrows-v:before{content:"\f338"}.la.la-arrows-h:before{content:"\f337"}.la.la-bar-chart{font-family:'Line Awesome Free';font-weight:400}.la.la-bar-chart:before{content:"\f080"}.la.la-bar-chart-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bar-chart-o:before{content:"\f080"}.la.la-twitter-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-gears:before{content:"\f085"}.la.la-thumbs-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-thumbs-o-up:before{content:"\f164"}.la.la-thumbs-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-thumbs-o-down:before{content:"\f165"}.la.la-heart-o{font-family:'Line Awesome Free';font-weight:400}.la.la-heart-o:before{content:"\f004"}.la.la-sign-out:before{content:"\f2f5"}.la.la-linkedin-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-linkedin-square:before{content:"\f08c"}.la.la-thumb-tack:before{content:"\f08d"}.la.la-external-link:before{content:"\f35d"}.la.la-sign-in:before{content:"\f2f6"}.la.la-github-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-lemon-o{font-family:'Line Awesome Free';font-weight:400}.la.la-lemon-o:before{content:"\f094"}.la.la-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-square-o:before{content:"\f0c8"}.la.la-bookmark-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bookmark-o:before{content:"\f02e"}.la.la-twitter{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook:before{content:"\f39e"}.la.la-facebook-f{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-f:before{content:"\f39e"}.la.la-github{font-family:'Line Awesome Brands';font-weight:400}.la.la-credit-card{font-family:'Line Awesome Free';font-weight:400}.la.la-feed:before{content:"\f09e"}.la.la-hdd-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hdd-o:before{content:"\f0a0"}.la.la-hand-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-right:before{content:"\f0a4"}.la.la-hand-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-left:before{content:"\f0a5"}.la.la-hand-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-up:before{content:"\f0a6"}.la.la-hand-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-down:before{content:"\f0a7"}.la.la-arrows-alt:before{content:"\f31e"}.la.la-group:before{content:"\f0c0"}.la.la-chain:before{content:"\f0c1"}.la.la-scissors:before{content:"\f0c4"}.la.la-files-o{font-family:'Line Awesome Free';font-weight:400}.la.la-files-o:before{content:"\f0c5"}.la.la-floppy-o{font-family:'Line Awesome Free';font-weight:400}.la.la-floppy-o:before{content:"\f0c7"}.la.la-navicon:before{content:"\f0c9"}.la.la-reorder:before{content:"\f0c9"}.la.la-pinterest{font-family:'Line Awesome Brands';font-weight:400}.la.la-pinterest-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus:before{content:"\f0d5"}.la.la-money{font-family:'Line Awesome Free';font-weight:400}.la.la-money:before{content:"\f3d1"}.la.la-unsorted:before{content:"\f0dc"}.la.la-sort-desc:before{content:"\f0dd"}.la.la-sort-asc:before{content:"\f0de"}.la.la-linkedin{font-family:'Line Awesome Brands';font-weight:400}.la.la-linkedin:before{content:"\f0e1"}.la.la-rotate-left:before{content:"\f0e2"}.la.la-legal:before{content:"\f0e3"}.la.la-tachometer:before{content:"\f3fd"}.la.la-dashboard:before{content:"\f3fd"}.la.la-comment-o{font-family:'Line Awesome Free';font-weight:400}.la.la-comment-o:before{content:"\f075"}.la.la-comments-o{font-family:'Line Awesome Free';font-weight:400}.la.la-comments-o:before{content:"\f086"}.la.la-flash:before{content:"\f0e7"}.la.la-clipboard{font-family:'Line Awesome Free';font-weight:400}.la.la-paste{font-family:'Line Awesome Free';font-weight:400}.la.la-paste:before{content:"\f328"}.la.la-lightbulb-o{font-family:'Line Awesome Free';font-weight:400}.la.la-lightbulb-o:before{content:"\f0eb"}.la.la-exchange:before{content:"\f362"}.la.la-cloud-download:before{content:"\f381"}.la.la-cloud-upload:before{content:"\f382"}.la.la-bell-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bell-o:before{content:"\f0f3"}.la.la-cutlery:before{content:"\f2e7"}.la.la-file-text-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-text-o:before{content:"\f15c"}.la.la-building-o{font-family:'Line Awesome Free';font-weight:400}.la.la-building-o:before{content:"\f1ad"}.la.la-hospital-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hospital-o:before{content:"\f0f8"}.la.la-tablet:before{content:"\f3fa"}.la.la-mobile:before{content:"\f3cd"}.la.la-mobile-phone:before{content:"\f3cd"}.la.la-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-circle-o:before{content:"\f111"}.la.la-mail-reply:before{content:"\f3e5"}.la.la-github-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-folder-o{font-family:'Line Awesome Free';font-weight:400}.la.la-folder-o:before{content:"\f07b"}.la.la-folder-open-o{font-family:'Line Awesome Free';font-weight:400}.la.la-folder-open-o:before{content:"\f07c"}.la.la-smile-o{font-family:'Line Awesome Free';font-weight:400}.la.la-smile-o:before{content:"\f118"}.la.la-frown-o{font-family:'Line Awesome Free';font-weight:400}.la.la-frown-o:before{content:"\f119"}.la.la-meh-o{font-family:'Line Awesome Free';font-weight:400}.la.la-meh-o:before{content:"\f11a"}.la.la-keyboard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-keyboard-o:before{content:"\f11c"}.la.la-flag-o{font-family:'Line Awesome Free';font-weight:400}.la.la-flag-o:before{content:"\f024"}.la.la-mail-reply-all:before{content:"\f122"}.la.la-star-half-o{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-o:before{content:"\f089"}.la.la-star-half-empty{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-empty:before{content:"\f089"}.la.la-star-half-full{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-full:before{content:"\f089"}.la.la-code-fork:before{content:"\f126"}.la.la-chain-broken:before{content:"\f127"}.la.la-shield:before{content:"\f3ed"}.la.la-calendar-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-o:before{content:"\f133"}.la.la-maxcdn{font-family:'Line Awesome Brands';font-weight:400}.la.la-html5{font-family:'Line Awesome Brands';font-weight:400}.la.la-css3{font-family:'Line Awesome Brands';font-weight:400}.la.la-ticket:before{content:"\f3ff"}.la.la-minus-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-minus-square-o:before{content:"\f146"}.la.la-level-up:before{content:"\f3bf"}.la.la-level-down:before{content:"\f3be"}.la.la-pencil-square:before{content:"\f14b"}.la.la-external-link-square:before{content:"\f360"}.la.la-compass{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-down:before{content:"\f150"}.la.la-toggle-down{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-down:before{content:"\f150"}.la.la-caret-square-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-up:before{content:"\f151"}.la.la-toggle-up{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-up:before{content:"\f151"}.la.la-caret-square-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-right:before{content:"\f152"}.la.la-toggle-right{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-right:before{content:"\f152"}.la.la-eur:before{content:"\f153"}.la.la-euro:before{content:"\f153"}.la.la-gbp:before{content:"\f154"}.la.la-usd:before{content:"\f155"}.la.la-dollar:before{content:"\f155"}.la.la-inr:before{content:"\f156"}.la.la-rupee:before{content:"\f156"}.la.la-jpy:before{content:"\f157"}.la.la-cny:before{content:"\f157"}.la.la-rmb:before{content:"\f157"}.la.la-yen:before{content:"\f157"}.la.la-rub:before{content:"\f158"}.la.la-ruble:before{content:"\f158"}.la.la-rouble:before{content:"\f158"}.la.la-krw:before{content:"\f159"}.la.la-won:before{content:"\f159"}.la.la-btc{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitcoin{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitcoin:before{content:"\f15a"}.la.la-file-text:before{content:"\f15c"}.la.la-sort-alpha-asc:before{content:"\f15d"}.la.la-sort-alpha-desc:before{content:"\f881"}.la.la-sort-amount-asc:before{content:"\f160"}.la.la-sort-amount-desc:before{content:"\f884"}.la.la-sort-numeric-asc:before{content:"\f162"}.la.la-sort-numeric-desc:before{content:"\f886"}.la.la-youtube-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube{font-family:'Line Awesome Brands';font-weight:400}.la.la-xing{font-family:'Line Awesome Brands';font-weight:400}.la.la-xing-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube-play{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube-play:before{content:"\f167"}.la.la-dropbox{font-family:'Line Awesome Brands';font-weight:400}.la.la-stack-overflow{font-family:'Line Awesome Brands';font-weight:400}.la.la-instagram{font-family:'Line Awesome Brands';font-weight:400}.la.la-flickr{font-family:'Line Awesome Brands';font-weight:400}.la.la-adn{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket-square:before{content:"\f171"}.la.la-tumblr{font-family:'Line Awesome Brands';font-weight:400}.la.la-tumblr-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-long-arrow-down:before{content:"\f309"}.la.la-long-arrow-up:before{content:"\f30c"}.la.la-long-arrow-left:before{content:"\f30a"}.la.la-long-arrow-right:before{content:"\f30b"}.la.la-apple{font-family:'Line Awesome Brands';font-weight:400}.la.la-windows{font-family:'Line Awesome Brands';font-weight:400}.la.la-android{font-family:'Line Awesome Brands';font-weight:400}.la.la-linux{font-family:'Line Awesome Brands';font-weight:400}.la.la-dribbble{font-family:'Line Awesome Brands';font-weight:400}.la.la-skype{font-family:'Line Awesome Brands';font-weight:400}.la.la-foursquare{font-family:'Line Awesome Brands';font-weight:400}.la.la-trello{font-family:'Line Awesome Brands';font-weight:400}.la.la-gratipay{font-family:'Line Awesome Brands';font-weight:400}.la.la-gittip{font-family:'Line Awesome Brands';font-weight:400}.la.la-gittip:before{content:"\f184"}.la.la-sun-o{font-family:'Line Awesome Free';font-weight:400}.la.la-sun-o:before{content:"\f185"}.la.la-moon-o{font-family:'Line Awesome Free';font-weight:400}.la.la-moon-o:before{content:"\f186"}.la.la-vk{font-family:'Line Awesome Brands';font-weight:400}.la.la-weibo{font-family:'Line Awesome Brands';font-weight:400}.la.la-renren{font-family:'Line Awesome Brands';font-weight:400}.la.la-pagelines{font-family:'Line Awesome Brands';font-weight:400}.la.la-stack-exchange{font-family:'Line Awesome Brands';font-weight:400}.la.la-arrow-circle-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-right:before{content:"\f35a"}.la.la-arrow-circle-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-left:before{content:"\f359"}.la.la-caret-square-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-left:before{content:"\f191"}.la.la-toggle-left{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-left:before{content:"\f191"}.la.la-dot-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-dot-circle-o:before{content:"\f192"}.la.la-vimeo-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-try:before{content:"\f195"}.la.la-turkish-lira:before{content:"\f195"}.la.la-plus-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-plus-square-o:before{content:"\f0fe"}.la.la-slack{font-family:'Line Awesome Brands';font-weight:400}.la.la-wordpress{font-family:'Line Awesome Brands';font-weight:400}.la.la-openid{font-family:'Line Awesome Brands';font-weight:400}.la.la-institution:before{content:"\f19c"}.la.la-bank:before{content:"\f19c"}.la.la-mortar-board:before{content:"\f19d"}.la.la-yahoo{font-family:'Line Awesome Brands';font-weight:400}.la.la-google{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-stumbleupon-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-stumbleupon{font-family:'Line Awesome Brands';font-weight:400}.la.la-delicious{font-family:'Line Awesome Brands';font-weight:400}.la.la-digg{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper-pp{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-drupal{font-family:'Line Awesome Brands';font-weight:400}.la.la-joomla{font-family:'Line Awesome Brands';font-weight:400}.la.la-spoon:before{content:"\f2e5"}.la.la-behance{font-family:'Line Awesome Brands';font-weight:400}.la.la-behance-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-steam{font-family:'Line Awesome Brands';font-weight:400}.la.la-steam-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-automobile:before{content:"\f1b9"}.la.la-cab:before{content:"\f1ba"}.la.la-envelope-o{font-family:'Line Awesome Free';font-weight:400}.la.la-envelope-o:before{content:"\f0e0"}.la.la-deviantart{font-family:'Line Awesome Brands';font-weight:400}.la.la-soundcloud{font-family:'Line Awesome Brands';font-weight:400}.la.la-file-pdf-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-pdf-o:before{content:"\f1c1"}.la.la-file-word-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-word-o:before{content:"\f1c2"}.la.la-file-excel-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-excel-o:before{content:"\f1c3"}.la.la-file-powerpoint-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-powerpoint-o:before{content:"\f1c4"}.la.la-file-image-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-image-o:before{content:"\f1c5"}.la.la-file-photo-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-photo-o:before{content:"\f1c5"}.la.la-file-picture-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-picture-o:before{content:"\f1c5"}.la.la-file-archive-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-archive-o:before{content:"\f1c6"}.la.la-file-zip-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-zip-o:before{content:"\f1c6"}.la.la-file-audio-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-audio-o:before{content:"\f1c7"}.la.la-file-sound-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-sound-o:before{content:"\f1c7"}.la.la-file-video-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-video-o:before{content:"\f1c8"}.la.la-file-movie-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-movie-o:before{content:"\f1c8"}.la.la-file-code-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-code-o:before{content:"\f1c9"}.la.la-vine{font-family:'Line Awesome Brands';font-weight:400}.la.la-codepen{font-family:'Line Awesome Brands';font-weight:400}.la.la-jsfiddle{font-family:'Line Awesome Brands';font-weight:400}.la.la-life-ring{font-family:'Line Awesome Free';font-weight:400}.la.la-life-bouy{font-family:'Line Awesome Free';font-weight:400}.la.la-life-bouy:before{content:"\f1cd"}.la.la-life-buoy{font-family:'Line Awesome Free';font-weight:400}.la.la-life-buoy:before{content:"\f1cd"}.la.la-life-saver{font-family:'Line Awesome Free';font-weight:400}.la.la-life-saver:before{content:"\f1cd"}.la.la-support{font-family:'Line Awesome Free';font-weight:400}.la.la-support:before{content:"\f1cd"}.la.la-circle-o-notch:before{content:"\f1ce"}.la.la-rebel{font-family:'Line Awesome Brands';font-weight:400}.la.la-ra{font-family:'Line Awesome Brands';font-weight:400}.la.la-ra:before{content:"\f1d0"}.la.la-resistance{font-family:'Line Awesome Brands';font-weight:400}.la.la-resistance:before{content:"\f1d0"}.la.la-empire{font-family:'Line Awesome Brands';font-weight:400}.la.la-ge{font-family:'Line Awesome Brands';font-weight:400}.la.la-ge:before{content:"\f1d1"}.la.la-git-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-git{font-family:'Line Awesome Brands';font-weight:400}.la.la-hacker-news{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator-square:before{content:"\f1d4"}.la.la-yc-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc-square:before{content:"\f1d4"}.la.la-tencent-weibo{font-family:'Line Awesome Brands';font-weight:400}.la.la-qq{font-family:'Line Awesome Brands';font-weight:400}.la.la-weixin{font-family:'Line Awesome Brands';font-weight:400}.la.la-wechat{font-family:'Line Awesome Brands';font-weight:400}.la.la-wechat:before{content:"\f1d7"}.la.la-send:before{content:"\f1d8"}.la.la-paper-plane-o{font-family:'Line Awesome Free';font-weight:400}.la.la-paper-plane-o:before{content:"\f1d8"}.la.la-send-o{font-family:'Line Awesome Free';font-weight:400}.la.la-send-o:before{content:"\f1d8"}.la.la-circle-thin{font-family:'Line Awesome Free';font-weight:400}.la.la-circle-thin:before{content:"\f111"}.la.la-header:before{content:"\f1dc"}.la.la-sliders:before{content:"\f1de"}.la.la-futbol-o{font-family:'Line Awesome Free';font-weight:400}.la.la-futbol-o:before{content:"\f1e3"}.la.la-soccer-ball-o{font-family:'Line Awesome Free';font-weight:400}.la.la-soccer-ball-o:before{content:"\f1e3"}.la.la-slideshare{font-family:'Line Awesome Brands';font-weight:400}.la.la-twitch{font-family:'Line Awesome Brands';font-weight:400}.la.la-yelp{font-family:'Line Awesome Brands';font-weight:400}.la.la-newspaper-o{font-family:'Line Awesome Free';font-weight:400}.la.la-newspaper-o:before{content:"\f1ea"}.la.la-paypal{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-wallet{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-visa{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-mastercard{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-discover{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-amex{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-paypal{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-stripe{font-family:'Line Awesome Brands';font-weight:400}.la.la-bell-slash-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bell-slash-o:before{content:"\f1f6"}.la.la-trash:before{content:"\f2ed"}.la.la-copyright{font-family:'Line Awesome Free';font-weight:400}.la.la-eyedropper:before{content:"\f1fb"}.la.la-area-chart:before{content:"\f1fe"}.la.la-pie-chart:before{content:"\f200"}.la.la-line-chart:before{content:"\f201"}.la.la-lastfm{font-family:'Line Awesome Brands';font-weight:400}.la.la-lastfm-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-ioxhost{font-family:'Line Awesome Brands';font-weight:400}.la.la-angellist{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc{font-family:'Line Awesome Free';font-weight:400}.la.la-cc:before{content:"\f20a"}.la.la-ils:before{content:"\f20b"}.la.la-shekel:before{content:"\f20b"}.la.la-sheqel:before{content:"\f20b"}.la.la-meanpath{font-family:'Line Awesome Brands';font-weight:400}.la.la-meanpath:before{content:"\f2b4"}.la.la-buysellads{font-family:'Line Awesome Brands';font-weight:400}.la.la-connectdevelop{font-family:'Line Awesome Brands';font-weight:400}.la.la-dashcube{font-family:'Line Awesome Brands';font-weight:400}.la.la-forumbee{font-family:'Line Awesome Brands';font-weight:400}.la.la-leanpub{font-family:'Line Awesome Brands';font-weight:400}.la.la-sellsy{font-family:'Line Awesome Brands';font-weight:400}.la.la-shirtsinbulk{font-family:'Line Awesome Brands';font-weight:400}.la.la-simplybuilt{font-family:'Line Awesome Brands';font-weight:400}.la.la-skyatlas{font-family:'Line Awesome Brands';font-weight:400}.la.la-diamond{font-family:'Line Awesome Free';font-weight:400}.la.la-diamond:before{content:"\f3a5"}.la.la-intersex:before{content:"\f224"}.la.la-facebook-official{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-official:before{content:"\f09a"}.la.la-pinterest-p{font-family:'Line Awesome Brands';font-weight:400}.la.la-whatsapp{font-family:'Line Awesome Brands';font-weight:400}.la.la-hotel:before{content:"\f236"}.la.la-viacoin{font-family:'Line Awesome Brands';font-weight:400}.la.la-medium{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc:before{content:"\f23b"}.la.la-optin-monster{font-family:'Line Awesome Brands';font-weight:400}.la.la-opencart{font-family:'Line Awesome Brands';font-weight:400}.la.la-expeditedssl{font-family:'Line Awesome Brands';font-weight:400}.la.la-battery-4:before{content:"\f240"}.la.la-battery:before{content:"\f240"}.la.la-battery-3:before{content:"\f241"}.la.la-battery-2:before{content:"\f242"}.la.la-battery-1:before{content:"\f243"}.la.la-battery-0:before{content:"\f244"}.la.la-object-group{font-family:'Line Awesome Free';font-weight:400}.la.la-object-ungroup{font-family:'Line Awesome Free';font-weight:400}.la.la-sticky-note-o{font-family:'Line Awesome Free';font-weight:400}.la.la-sticky-note-o:before{content:"\f249"}.la.la-cc-jcb{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-diners-club{font-family:'Line Awesome Brands';font-weight:400}.la.la-clone{font-family:'Line Awesome Free';font-weight:400}.la.la-hourglass-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hourglass-o:before{content:"\f254"}.la.la-hourglass-1:before{content:"\f251"}.la.la-hourglass-2:before{content:"\f252"}.la.la-hourglass-3:before{content:"\f253"}.la.la-hand-rock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-rock-o:before{content:"\f255"}.la.la-hand-grab-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-grab-o:before{content:"\f255"}.la.la-hand-paper-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-paper-o:before{content:"\f256"}.la.la-hand-stop-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-stop-o:before{content:"\f256"}.la.la-hand-scissors-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-scissors-o:before{content:"\f257"}.la.la-hand-lizard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-lizard-o:before{content:"\f258"}.la.la-hand-spock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-spock-o:before{content:"\f259"}.la.la-hand-pointer-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-pointer-o:before{content:"\f25a"}.la.la-hand-peace-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-peace-o:before{content:"\f25b"}.la.la-registered{font-family:'Line Awesome Free';font-weight:400}.la.la-creative-commons{font-family:'Line Awesome Brands';font-weight:400}.la.la-gg{font-family:'Line Awesome Brands';font-weight:400}.la.la-gg-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-tripadvisor{font-family:'Line Awesome Brands';font-weight:400}.la.la-odnoklassniki{font-family:'Line Awesome Brands';font-weight:400}.la.la-odnoklassniki-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-get-pocket{font-family:'Line Awesome Brands';font-weight:400}.la.la-wikipedia-w{font-family:'Line Awesome Brands';font-weight:400}.la.la-safari{font-family:'Line Awesome Brands';font-weight:400}.la.la-chrome{font-family:'Line Awesome Brands';font-weight:400}.la.la-firefox{font-family:'Line Awesome Brands';font-weight:400}.la.la-opera{font-family:'Line Awesome Brands';font-weight:400}.la.la-internet-explorer{font-family:'Line Awesome Brands';font-weight:400}.la.la-television:before{content:"\f26c"}.la.la-contao{font-family:'Line Awesome Brands';font-weight:400}.la.la-500px{font-family:'Line Awesome Brands';font-weight:400}.la.la-amazon{font-family:'Line Awesome Brands';font-weight:400}.la.la-calendar-plus-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-plus-o:before{content:"\f271"}.la.la-calendar-minus-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-minus-o:before{content:"\f272"}.la.la-calendar-times-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-times-o:before{content:"\f273"}.la.la-calendar-check-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-check-o:before{content:"\f274"}.la.la-map-o{font-family:'Line Awesome Free';font-weight:400}.la.la-map-o:before{content:"\f279"}.la.la-commenting:before{content:"\f4ad"}.la.la-commenting-o{font-family:'Line Awesome Free';font-weight:400}.la.la-commenting-o:before{content:"\f4ad"}.la.la-houzz{font-family:'Line Awesome Brands';font-weight:400}.la.la-vimeo{font-family:'Line Awesome Brands';font-weight:400}.la.la-vimeo:before{content:"\f27d"}.la.la-black-tie{font-family:'Line Awesome Brands';font-weight:400}.la.la-fonticons{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit-alien{font-family:'Line Awesome Brands';font-weight:400}.la.la-edge{font-family:'Line Awesome Brands';font-weight:400}.la.la-credit-card-alt:before{content:"\f09d"}.la.la-codiepie{font-family:'Line Awesome Brands';font-weight:400}.la.la-modx{font-family:'Line Awesome Brands';font-weight:400}.la.la-fort-awesome{font-family:'Line Awesome Brands';font-weight:400}.la.la-usb{font-family:'Line Awesome Brands';font-weight:400}.la.la-product-hunt{font-family:'Line Awesome Brands';font-weight:400}.la.la-mixcloud{font-family:'Line Awesome Brands';font-weight:400}.la.la-scribd{font-family:'Line Awesome Brands';font-weight:400}.la.la-pause-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-pause-circle-o:before{content:"\f28b"}.la.la-stop-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-stop-circle-o:before{content:"\f28d"}.la.la-bluetooth{font-family:'Line Awesome Brands';font-weight:400}.la.la-bluetooth-b{font-family:'Line Awesome Brands';font-weight:400}.la.la-gitlab{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpbeginner{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpforms{font-family:'Line Awesome Brands';font-weight:400}.la.la-envira{font-family:'Line Awesome Brands';font-weight:400}.la.la-wheelchair-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-wheelchair-alt:before{content:"\f368"}.la.la-question-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-question-circle-o:before{content:"\f059"}.la.la-volume-control-phone:before{content:"\f2a0"}.la.la-asl-interpreting:before{content:"\f2a3"}.la.la-deafness:before{content:"\f2a4"}.la.la-hard-of-hearing:before{content:"\f2a4"}.la.la-glide{font-family:'Line Awesome Brands';font-weight:400}.la.la-glide-g{font-family:'Line Awesome Brands';font-weight:400}.la.la-signing:before{content:"\f2a7"}.la.la-viadeo{font-family:'Line Awesome Brands';font-weight:400}.la.la-viadeo-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat-ghost{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper{font-family:'Line Awesome Brands';font-weight:400}.la.la-first-order{font-family:'Line Awesome Brands';font-weight:400}.la.la-yoast{font-family:'Line Awesome Brands';font-weight:400}.la.la-themeisle{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-official{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-official:before{content:"\f2b3"}.la.la-google-plus-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-circle:before{content:"\f2b3"}.la.la-font-awesome{font-family:'Line Awesome Brands';font-weight:400}.la.la-fa{font-family:'Line Awesome Brands';font-weight:400}.la.la-fa:before{content:"\f2b4"}.la.la-handshake-o{font-family:'Line Awesome Free';font-weight:400}.la.la-handshake-o:before{content:"\f2b5"}.la.la-envelope-open-o{font-family:'Line Awesome Free';font-weight:400}.la.la-envelope-open-o:before{content:"\f2b6"}.la.la-linode{font-family:'Line Awesome Brands';font-weight:400}.la.la-address-book-o{font-family:'Line Awesome Free';font-weight:400}.la.la-address-book-o:before{content:"\f2b9"}.la.la-vcard:before{content:"\f2bb"}.la.la-address-card-o{font-family:'Line Awesome Free';font-weight:400}.la.la-address-card-o:before{content:"\f2bb"}.la.la-vcard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-vcard-o:before{content:"\f2bb"}.la.la-user-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-user-circle-o:before{content:"\f2bd"}.la.la-user-o{font-family:'Line Awesome Free';font-weight:400}.la.la-user-o:before{content:"\f007"}.la.la-id-badge{font-family:'Line Awesome Free';font-weight:400}.la.la-drivers-license:before{content:"\f2c2"}.la.la-id-card-o{font-family:'Line Awesome Free';font-weight:400}.la.la-id-card-o:before{content:"\f2c2"}.la.la-drivers-license-o{font-family:'Line Awesome Free';font-weight:400}.la.la-drivers-license-o:before{content:"\f2c2"}.la.la-quora{font-family:'Line Awesome Brands';font-weight:400}.la.la-free-code-camp{font-family:'Line Awesome Brands';font-weight:400}.la.la-telegram{font-family:'Line Awesome Brands';font-weight:400}.la.la-thermometer-4:before{content:"\f2c7"}.la.la-thermometer:before{content:"\f2c7"}.la.la-thermometer-3:before{content:"\f2c8"}.la.la-thermometer-2:before{content:"\f2c9"}.la.la-thermometer-1:before{content:"\f2ca"}.la.la-thermometer-0:before{content:"\f2cb"}.la.la-bathtub:before{content:"\f2cd"}.la.la-s15:before{content:"\f2cd"}.la.la-window-maximize{font-family:'Line Awesome Free';font-weight:400}.la.la-window-restore{font-family:'Line Awesome Free';font-weight:400}.la.la-times-rectangle:before{content:"\f410"}.la.la-window-close-o{font-family:'Line Awesome Free';font-weight:400}.la.la-window-close-o:before{content:"\f410"}.la.la-times-rectangle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-times-rectangle-o:before{content:"\f410"}.la.la-bandcamp{font-family:'Line Awesome Brands';font-weight:400}.la.la-grav{font-family:'Line Awesome Brands';font-weight:400}.la.la-etsy{font-family:'Line Awesome Brands';font-weight:400}.la.la-imdb{font-family:'Line Awesome Brands';font-weight:400}.la.la-ravelry{font-family:'Line Awesome Brands';font-weight:400}.la.la-eercast{font-family:'Line Awesome Brands';font-weight:400}.la.la-eercast:before{content:"\f2da"}.la.la-snowflake-o{font-family:'Line Awesome Free';font-weight:400}.la.la-snowflake-o:before{content:"\f2dc"}.la.la-superpowers{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpexplorer{font-family:'Line Awesome Brands';font-weight:400}.la.la-spotify{font-family:'Line Awesome Brands';font-weight:400} diff --git a/desarrollo/diseno/registro-cliente/form/assets/css/main.css b/desarrollo/diseno/registro-cliente/form/assets/css/main.css deleted file mode 100644 index 2b6ff056..00000000 --- a/desarrollo/diseno/registro-cliente/form/assets/css/main.css +++ /dev/null @@ -1,266 +0,0 @@ -/*======================================================================= -* Template Name: Anfra -* Template URI: http://uigigs.com/html/Anfra -* Author: Uigigs -* Author URI: http://uigigs.com/ -* Description: Virtual Corona Prediction -* Version: 1.0 -* License: GPL v2 or later -* License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -* Tags: html, template, Anfra, Covid19, Virtual Corona Test, Corona -======================================================================= */ -/*---------------------------------------------- - 1.0 General Style ------------------------------------------------*/ -.pt30 { - padding-top: 30px; -} - -.pb30 { - padding-bottom: 30px; -} - -.pt40 { - padding-top: 40px; -} - -.pb40 { - padding-bottom: 40px; -} - -.pt60 { - padding-top: 60px; -} - -.pb60 { - padding-bottom: 60px; -} - -.pt70 { - padding-top: 70px; -} - -.pb70 { - padding-bottom: 70px; -} - -.pt80 { - padding-top: 80px; -} - -.pb80 { - padding-bottom: 80px; -} - -.pt100 { - padding-top: 100px; -} - -.pb100 { - padding-bottom: 100px; -} - -.pt130 { - padding-top: 130px; -} - -.pb130 { - padding-bottom: 130px; -} - -.pt150 { - padding-top: 150px; -} - -.pb150 { - padding-bottom: 150px; -} - -.pt180 { - padding-top: 180px; -} - -.pb180 { - padding-bottom: 180px; -} - -.pt200 { - padding-top: 200px; -} - -.pb200 { - padding-bottom: 200px; -} - -.mt10 { - margin-top: 10px; -} - -.mb10 { - margin-bottom: 10px; -} - -.mt20 { - margin-top: 20px; -} - -.mb20 { - margin-bottom: 20px; -} - -html { - font-size: 62.5%; -} - -body { - padding: 0; - margin: 0; - font-family: "Roboto", sans-serif; - font-size: 1.4rem; - line-height: 1.85; - color: #546274; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: "Roboto", sans-serif; - font-weight: 700; - line-height: 1.3; - margin-top: 0; - margin-bottom: 0; - color: inherit; -} -h1 a, -h2 a, -h3 a, -h4 a, -h5 a, -h6 a { - color: inherit; -} -h1 a:hover, -h2 a:hover, -h3 a:hover, -h4 a:hover, -h5 a:hover, -h6 a:hover { - color: inherit; -} - -h1 { - font-size: 6.4rem; -} - -h2 { - font-size: 4.8rem; -} - -h3 { - font-size: 3.6rem; -} - -h4 { - font-size: 2.8rem; -} - -h5 { - font-size: 2.2rem; -} - -h6 { - font-size: 1.8rem; -} - -p { - line-height: 1.85; - font-size: 1.4rem; - color: #546274; - margin: 0; - padding: 0; -} - -a { - -o-transition: all 0.3s ease; - transition: all 0.3s ease; - -ms-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -webkit-transition: all 0.3s ease; - outline: none; - text-decoration: none; -} - -a, -a:hover, -a:focus { - text-decoration: none; - display: inline-block; - color: inherit; - outline: none; -} - -textarea { - resize: none; -} - -input::-webkit-input-placeholder, -.form-control::-webkit-input-placeholder { - color: #546274; -} -input:-moz-placeholder, -.form-control:-moz-placeholder { - color: #546274; -} -input::-moz-placeholder, -.form-control::-moz-placeholder { - color: #546274; -} -input:-ms-input-placeholder, -.form-control:-ms-input-placeholder { - color: #546274; -} - -button, .btn { - border: 0; - background: transparent; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -.primary-color { - color: #1e85ff; -} - -.primary-bg { - background: #1e85ff; -} - -.white-text { - color: #ffffff; -} - -.white-bg { - background: #ffffff; -} - -.ugf-bg { - background-size: cover; -} - -/*------------------------------------------ - Responsive --------------------------------------------*/ -@media (max-width: 991px) { - .right-content-md { - margin-top: 30px; - } -} -@media all and (max-width: 767px) { - .right-content-sm { - margin-top: 30px; - } -} \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/assets/css/owl.carousel.min.css b/desarrollo/diseno/registro-cliente/form/assets/css/owl.carousel.min.css deleted file mode 100644 index a71df11c..00000000 --- a/desarrollo/diseno/registro-cliente/form/assets/css/owl.carousel.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/** - * 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 .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .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%;top: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 .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 .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/assets/desktop.ini b/desarrollo/diseno/registro-cliente/form/assets/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/account-business.png b/desarrollo/diseno/registro-cliente/form/assets/images/account-business.png deleted file mode 100644 index 9d36745a..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/account-business.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/account-personal.png b/desarrollo/diseno/registro-cliente/form/assets/images/account-personal.png deleted file mode 100644 index 2ceb1319..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/account-personal.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/apple-touch-icon.png b/desarrollo/diseno/registro-cliente/form/assets/images/apple-touch-icon.png deleted file mode 100644 index 3b55ab08..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/apple-touch-icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/bg/desktop.ini b/desarrollo/diseno/registro-cliente/form/assets/images/bg/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/bg/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/bg/sidebar-bg.jpg b/desarrollo/diseno/registro-cliente/form/assets/images/bg/sidebar-bg.jpg deleted file mode 100644 index 572c3cc7..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/bg/sidebar-bg.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/bg/sidebar-bg2.jpg b/desarrollo/diseno/registro-cliente/form/assets/images/bg/sidebar-bg2.jpg deleted file mode 100644 index 5cceb11a..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/bg/sidebar-bg2.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/big-green-check.png b/desarrollo/diseno/registro-cliente/form/assets/images/big-green-check.png deleted file mode 100644 index c01e7fbd..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/big-green-check.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/client/1.png b/desarrollo/diseno/registro-cliente/form/assets/images/client/1.png deleted file mode 100644 index 15e3646d..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/client/1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/client/2.png b/desarrollo/diseno/registro-cliente/form/assets/images/client/2.png deleted file mode 100644 index 84f1e815..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/client/2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/client/3.png b/desarrollo/diseno/registro-cliente/form/assets/images/client/3.png deleted file mode 100644 index 54ce84f5..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/client/3.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/client/4.png b/desarrollo/diseno/registro-cliente/form/assets/images/client/4.png deleted file mode 100644 index 6866a926..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/client/4.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/client/desktop.ini b/desarrollo/diseno/registro-cliente/form/assets/images/client/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/client/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/desktop.ini b/desarrollo/diseno/registro-cliente/form/assets/images/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/favicon.png b/desarrollo/diseno/registro-cliente/form/assets/images/favicon.png deleted file mode 100644 index 0799fa75..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/favicon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/icon-114x114.png b/desarrollo/diseno/registro-cliente/form/assets/images/icon-114x114.png deleted file mode 100644 index 205a4722..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/icon-114x114.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/icon-72x72.png b/desarrollo/diseno/registro-cliente/form/assets/images/icon-72x72.png deleted file mode 100644 index c5bb7d22..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/icon-72x72.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/logo-dark2.png b/desarrollo/diseno/registro-cliente/form/assets/images/logo-dark2.png deleted file mode 100644 index 77d60c7b..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/logo-dark2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/quote (1).png b/desarrollo/diseno/registro-cliente/form/assets/images/quote (1).png deleted file mode 100644 index ee83b342..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/quote (1).png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/quote (2).png b/desarrollo/diseno/registro-cliente/form/assets/images/quote (2).png deleted file mode 100644 index ee83b342..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/quote (2).png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/quote.png b/desarrollo/diseno/registro-cliente/form/assets/images/quote.png deleted file mode 100644 index ee83b342..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/images/quote.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/js/bootstrap.min.js b/desarrollo/diseno/registro-cliente/form/assets/js/bootstrap.min.js deleted file mode 100644 index 4e65dfb1..00000000 --- a/desarrollo/diseno/registro-cliente/form/assets/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v5.3.0-alpha3 (https://getbootstrap.com/) - * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=N(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return j(s,{delegateTarget:r}),n.oneOff&&P.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return j(n,{delegateTarget:t}),i.oneOff&&P.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function I(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function N(t){return t=t.replace(y,""),T[t]||t}const P={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))I(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==N(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=j(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function j(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function F(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const H={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${F(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${F(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${F(e)}`))};class ${static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?H.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?H.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends ${constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),P.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.0-alpha2"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return n(e)},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;P.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))};class q extends W{static get NAME(){return"alert"}close(){if(P.trigger(this._element,"close.bs.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),P.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(q,"close"),m(q);const V='[data-bs-toggle="button"]';class K extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=K.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}P.on(document,"click.bs.button.data-api",V,(t=>{t.preventDefault();const e=t.target.closest(V);K.getOrCreateInstance(e).toggle()})),m(K);const Q={endCallback:null,leftCallback:null,rightCallback:null},X={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class Y extends ${constructor(t,e){super(),this._element=t,t&&Y.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return Q}static get DefaultType(){return X}static get NAME(){return"swipe"}dispose(){P.off(this._element,".bs.swipe")}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(P.on(this._element,"pointerdown.bs.swipe",(t=>this._start(t))),P.on(this._element,"pointerup.bs.swipe",(t=>this._end(t))),this._element.classList.add("pointer-event")):(P.on(this._element,"touchstart.bs.swipe",(t=>this._start(t))),P.on(this._element,"touchmove.bs.swipe",(t=>this._move(t))),P.on(this._element,"touchend.bs.swipe",(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const U="next",G="prev",J="left",Z="right",tt="slid.bs.carousel",et="carousel",it="active",nt={ArrowLeft:Z,ArrowRight:J},st={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class rt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===et&&this.cycle()}static get Default(){return st}static get DefaultType(){return ot}static get NAME(){return"carousel"}next(){this._slide(U)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(G)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?P.one(this._element,tt,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void P.one(this._element,tt,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?U:G;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&P.on(this._element,"keydown.bs.carousel",(t=>this._keydown(t))),"hover"===this._config.pause&&(P.on(this._element,"mouseenter.bs.carousel",(()=>this.pause())),P.on(this._element,"mouseleave.bs.carousel",(()=>this._maybeEnableCycle()))),this._config.touch&&Y.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))P.on(t,"dragstart.bs.carousel",(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(J)),rightCallback:()=>this._slide(this._directionToOrder(Z)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new Y(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=nt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(".active",this._indicatorsElement);e.classList.remove(it),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(it),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===U,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>P.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r("slide.bs.carousel").defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(it),i.classList.remove(it,c,l),this._isSliding=!1,r(tt)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(".active.carousel-item",this._element)}_getItems(){return z.find(".carousel-item",this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===J?G:U:t===J?U:G}_orderToDirection(t){return p()?t===G?J:Z:t===G?Z:J}static jQueryInterface(t){return this.each((function(){const e=rt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}P.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(et))return;t.preventDefault();const i=rt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===H.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),P.on(window,"load.bs.carousel.data-api",(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)rt.getOrCreateInstance(e)})),m(rt);const at="show",lt="collapse",ct="collapsing",ht='[data-bs-toggle="collapse"]',dt={parent:null,toggle:!0},ut={parent:"(null|element)",toggle:"boolean"};class ft extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(ht);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return dt}static get DefaultType(){return ut}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>ft.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(P.trigger(this._element,"show.bs.collapse").defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(lt),this._element.classList.add(ct),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ct),this._element.classList.add(lt,at),this._element.style[e]="",P.trigger(this._element,"shown.bs.collapse")}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(P.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(ct),this._element.classList.remove(lt,at);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ct),this._element.classList.add(lt),P.trigger(this._element,"hidden.bs.collapse")}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(at)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(ht);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(":scope .collapse .collapse",this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=ft.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}P.on(document,"click.bs.collapse.data-api",ht,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))ft.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(ft);var pt="top",mt="bottom",gt="right",_t="left",bt="auto",vt=[pt,mt,gt,_t],yt="start",wt="end",At="clippingParents",Et="viewport",Tt="popper",Ct="reference",Ot=vt.reduce((function(t,e){return t.concat([e+"-"+yt,e+"-"+wt])}),[]),xt=[].concat(vt,[bt]).reduce((function(t,e){return t.concat([e,e+"-"+yt,e+"-"+wt])}),[]),kt="beforeRead",Lt="read",St="afterRead",Dt="beforeMain",It="main",Nt="afterMain",Pt="beforeWrite",jt="write",Mt="afterWrite",Ft=[kt,Lt,St,Dt,It,Nt,Pt,jt,Mt];function Ht(t){return t?(t.nodeName||"").toLowerCase():null}function $t(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function Wt(t){return t instanceof $t(t).Element||t instanceof Element}function Bt(t){return t instanceof $t(t).HTMLElement||t instanceof HTMLElement}function zt(t){return"undefined"!=typeof ShadowRoot&&(t instanceof $t(t).ShadowRoot||t instanceof ShadowRoot)}const Rt={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];Bt(s)&&Ht(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});Bt(n)&&Ht(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function qt(t){return t.split("-")[0]}var Vt=Math.max,Kt=Math.min,Qt=Math.round;function Xt(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Yt(){return!/^((?!chrome|android).)*safari/i.test(Xt())}function Ut(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&Bt(t)&&(s=t.offsetWidth>0&&Qt(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&Qt(n.height)/t.offsetHeight||1);var r=(Wt(t)?$t(t):window).visualViewport,a=!Yt()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Gt(t){var e=Ut(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Jt(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&zt(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function Zt(t){return $t(t).getComputedStyle(t)}function te(t){return["table","td","th"].indexOf(Ht(t))>=0}function ee(t){return((Wt(t)?t.ownerDocument:t.document)||window.document).documentElement}function ie(t){return"html"===Ht(t)?t:t.assignedSlot||t.parentNode||(zt(t)?t.host:null)||ee(t)}function ne(t){return Bt(t)&&"fixed"!==Zt(t).position?t.offsetParent:null}function se(t){for(var e=$t(t),i=ne(t);i&&te(i)&&"static"===Zt(i).position;)i=ne(i);return i&&("html"===Ht(i)||"body"===Ht(i)&&"static"===Zt(i).position)?e:i||function(t){var e=/firefox/i.test(Xt());if(/Trident/i.test(Xt())&&Bt(t)&&"fixed"===Zt(t).position)return null;var i=ie(t);for(zt(i)&&(i=i.host);Bt(i)&&["html","body"].indexOf(Ht(i))<0;){var n=Zt(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function oe(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function re(t,e,i){return Vt(t,Kt(e,i))}function ae(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function le(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const ce={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=qt(i.placement),l=oe(a),c=[_t,gt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return ae("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:le(t,vt))}(s.padding,i),d=Gt(o),u="y"===l?pt:_t,f="y"===l?mt:gt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=se(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=re(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Jt(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function he(t){return t.split("-")[1]}var de={top:"auto",right:"auto",bottom:"auto",left:"auto"};function ue(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=_t,y=pt,w=window;if(c){var A=se(i),E="clientHeight",T="clientWidth";A===$t(i)&&"static"!==Zt(A=ee(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===pt||(s===_t||s===gt)&&o===wt)&&(y=mt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==_t&&(s!==pt&&s!==mt||o!==wt)||(v=gt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&de),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:Qt(i*s)/s||0,y:Qt(n*s)/s||0}}({x:f,y:m},$t(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const fe={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:qt(e.placement),variation:he(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,ue(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,ue(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var pe={passive:!0};const me={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=$t(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,pe)})),a&&l.addEventListener("resize",i.update,pe),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,pe)})),a&&l.removeEventListener("resize",i.update,pe)}},data:{}};var ge={left:"right",right:"left",bottom:"top",top:"bottom"};function _e(t){return t.replace(/left|right|bottom|top/g,(function(t){return ge[t]}))}var be={start:"end",end:"start"};function ve(t){return t.replace(/start|end/g,(function(t){return be[t]}))}function ye(t){var e=$t(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function we(t){return Ut(ee(t)).left+ye(t).scrollLeft}function Ae(t){var e=Zt(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ee(t){return["html","body","#document"].indexOf(Ht(t))>=0?t.ownerDocument.body:Bt(t)&&Ae(t)?t:Ee(ie(t))}function Te(t,e){var i;void 0===e&&(e=[]);var n=Ee(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=$t(n),r=s?[o].concat(o.visualViewport||[],Ae(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Te(ie(r)))}function Ce(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Oe(t,e,i){return e===Et?Ce(function(t,e){var i=$t(t),n=ee(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Yt();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+we(t),y:l}}(t,i)):Wt(e)?function(t,e){var i=Ut(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ce(function(t){var e,i=ee(t),n=ye(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=Vt(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=Vt(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+we(t),l=-n.scrollTop;return"rtl"===Zt(s||i).direction&&(a+=Vt(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(ee(t)))}function xe(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?qt(s):null,r=s?he(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case pt:e={x:a,y:i.y-n.height};break;case mt:e={x:a,y:i.y+i.height};break;case gt:e={x:i.x+i.width,y:l};break;case _t:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?oe(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case yt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case wt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ke(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?At:a,c=i.rootBoundary,h=void 0===c?Et:c,d=i.elementContext,u=void 0===d?Tt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=ae("number"!=typeof g?g:le(g,vt)),b=u===Tt?Ct:Tt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Te(ie(t)),i=["absolute","fixed"].indexOf(Zt(t).position)>=0&&Bt(t)?se(t):t;return Wt(i)?e.filter((function(t){return Wt(t)&&Jt(t,i)&&"body"!==Ht(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=Oe(t,i,n);return e.top=Vt(s.top,e.top),e.right=Kt(s.right,e.right),e.bottom=Kt(s.bottom,e.bottom),e.left=Vt(s.left,e.left),e}),Oe(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(Wt(y)?y:y.contextElement||ee(t.elements.popper),l,h,r),A=Ut(t.elements.reference),E=xe({reference:A,element:v,strategy:"absolute",placement:s}),T=Ce(Object.assign({},v,E)),C=u===Tt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Tt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[gt,mt].indexOf(t)>=0?1:-1,i=[pt,mt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function Le(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?xt:l,h=he(n),d=h?a?Ot:Ot.filter((function(t){return he(t)===h})):vt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ke(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[qt(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const Se={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=qt(g),b=l||(_!==g&&p?function(t){if(qt(t)===bt)return[];var e=_e(t);return[ve(t),e,ve(e)]}(g):[_e(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(qt(i)===bt?Le(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C=0,S=L?"width":"height",D=ke(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),I=L?k?gt:_t:k?mt:pt;y[S]>w[S]&&(I=_e(I));var N=_e(I),P=[];if(o&&P.push(D[x]<=0),a&&P.push(D[I]<=0,D[N]<=0),P.every((function(t){return t}))){T=O,E=!1;break}A.set(O,P)}if(E)for(var j=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==j(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function De(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function Ie(t){return[pt,gt,mt,_t].some((function(e){return t[e]>=0}))}const Ne={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ke(e,{elementContext:"reference"}),a=ke(e,{altBoundary:!0}),l=De(r,n),c=De(a,s,o),h=Ie(l),d=Ie(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},Pe={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=xt.reduce((function(t,i){return t[i]=function(t,e,i){var n=qt(t),s=[_t,pt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[_t,gt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},je={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=xe({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},Me={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ke(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=qt(e.placement),b=he(e.placement),v=!b,y=oe(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?pt:_t,D="y"===y?mt:gt,I="y"===y?"height":"width",N=A[y],P=N+g[S],j=N-g[D],M=f?-T[I]/2:0,F=b===yt?E[I]:T[I],H=b===yt?-T[I]:-E[I],$=e.elements.arrow,W=f&&$?Gt($):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=re(0,E[I],W[I]),V=v?E[I]/2-M-q-z-O.mainAxis:F-q-z-O.mainAxis,K=v?-E[I]/2+M+q+R+O.mainAxis:H+q+R+O.mainAxis,Q=e.elements.arrow&&se(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=N+K-Y,G=re(f?Kt(P,N+V-Y-X):P,N,f?Vt(j,U):j);A[y]=G,k[y]=G-N}if(a){var J,Z="x"===y?pt:_t,tt="x"===y?mt:gt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[pt,_t].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=re(t,e,i);return n>i?i:n}(at,et,lt):re(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function Fe(t,e,i){void 0===i&&(i=!1);var n,s,o=Bt(e),r=Bt(e)&&function(t){var e=t.getBoundingClientRect(),i=Qt(e.width)/t.offsetWidth||1,n=Qt(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=ee(e),l=Ut(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==Ht(e)||Ae(a))&&(c=(n=e)!==$t(n)&&Bt(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:ye(n)),Bt(e)?((h=Ut(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=we(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function He(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var $e={placement:"bottom",modifiers:[],strategy:"absolute"};function We(){for(var t=arguments.length,e=new Array(t),i=0;iNumber.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(H.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Xe,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=ci.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ze);for(const i of e){const e=ci.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Qe,Xe].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Je)?this:z.prev(this,Je)[0]||z.next(this,Je)[0]||z.findOne(Je,t.delegateTarget.parentNode),o=ci.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}P.on(document,Ue,Je,ci.dataApiKeydownHandler),P.on(document,Ue,ti,ci.dataApiKeydownHandler),P.on(document,Ye,ci.clearMenus),P.on(document,"keyup.bs.dropdown.data-api",ci.clearMenus),P.on(document,Ye,Je,(function(t){t.preventDefault(),ci.getOrCreateInstance(this).toggle()})),m(ci);const hi="show",di="mousedown.bs.backdrop",ui={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},fi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class pi extends ${constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return ui}static get DefaultType(){return fi}static get NAME(){return"backdrop"}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(hi),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(hi),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(P.off(this._element,di),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),P.on(t,di,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const mi=".bs.focustrap",gi="backward",_i={autofocus:!0,trapElement:null},bi={autofocus:"boolean",trapElement:"element"};class vi extends ${constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return _i}static get DefaultType(){return bi}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),P.off(document,mi),P.on(document,"focusin.bs.focustrap",(t=>this._handleFocusin(t))),P.on(document,"keydown.tab.bs.focustrap",(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,P.off(document,mi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===gi?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?gi:"forward")}}const yi=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",wi=".sticky-top",Ai="padding-right",Ei="margin-right";class Ti{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,Ai,(e=>e+t)),this._setElementAttributes(yi,Ai,(e=>e+t)),this._setElementAttributes(wi,Ei,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,Ai),this._resetElementAttributes(yi,Ai),this._resetElementAttributes(wi,Ei)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&H.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=H.getDataAttribute(t,e);null!==i?(H.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const Ci=".bs.modal",Oi="hidden.bs.modal",xi="show.bs.modal",ki="modal-open",Li="show",Si="modal-static",Di={backdrop:!0,focus:!0,keyboard:!0},Ii={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class Ni extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new Ti,this._addEventListeners()}static get Default(){return Di}static get DefaultType(){return Ii}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||P.trigger(this._element,xi,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(ki),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(P.trigger(this._element,"hide.bs.modal").defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(Li),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){P.off(window,Ci),P.off(this._dialog,Ci),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new pi({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new vi({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(Li),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,P.trigger(this._element,"shown.bs.modal",{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){P.on(this._element,"keydown.dismiss.bs.modal",(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),P.on(window,"resize.bs.modal",(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),P.on(this._element,"mousedown.dismiss.bs.modal",(t=>{P.one(this._element,"click.dismiss.bs.modal",(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(ki),this._resetAdjustments(),this._scrollBar.reset(),P.trigger(this._element,Oi)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(P.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(Si)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(Si),this._queueCallback((()=>{this._element.classList.remove(Si),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Ni.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}P.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),P.one(e,xi,(t=>{t.defaultPrevented||P.one(e,Oi,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&Ni.getInstance(i).hide(),Ni.getOrCreateInstance(e).toggle(this)})),R(Ni),m(Ni);const Pi="show",ji="showing",Mi="hiding",Fi=".offcanvas.show",Hi="hidePrevented.bs.offcanvas",$i="hidden.bs.offcanvas",Wi={backdrop:!0,keyboard:!0,scroll:!1},Bi={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class zi extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return Wi}static get DefaultType(){return Bi}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||P.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new Ti).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(ji),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Pi),this._element.classList.remove(ji),P.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(P.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add(Mi),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Pi,Mi),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new Ti).reset(),P.trigger(this._element,$i)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new pi({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():P.trigger(this._element,Hi)}:null})}_initializeFocusTrap(){return new vi({trapElement:this._element})}_addEventListeners(){P.on(this._element,"keydown.dismiss.bs.offcanvas",(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():P.trigger(this._element,Hi))}))}static jQueryInterface(t){return this.each((function(){const e=zi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}P.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;P.one(e,$i,(()=>{a(this)&&this.focus()}));const i=z.findOne(Fi);i&&i!==e&&zi.getInstance(i).hide(),zi.getOrCreateInstance(e).toggle(this)})),P.on(window,"load.bs.offcanvas.data-api",(()=>{for(const t of z.find(Fi))zi.getOrCreateInstance(t).show()})),P.on(window,"resize.bs.offcanvas",(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&zi.getOrCreateInstance(t).hide()})),R(zi),m(zi);const Ri=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),qi=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,Vi=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Ki=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Ri.has(i)||Boolean(qi.test(t.nodeValue)||Vi.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Qi={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Xi={allowList:Qi,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"
"},Yi={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Ui={entry:"(string|element|function|null)",selector:"(string|element)"};class Gi extends ${constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Ui)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Ki(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Ji=new Set(["sanitize","allowList","sanitizeFn"]),Zi="fade",tn="show",en=".modal",nn="hide.bs.modal",sn="hover",on="focus",rn={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},an={allowList:Qi,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},ln={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cn extends W{constructor(t,e){if(void 0===Ve)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return an}static get DefaultType(){return ln}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),P.off(this._element.closest(en),nn,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=P.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),P.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(tn),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))P.on(t,"mouseover",h);this._queueCallback((()=>{P.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!P.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(tn),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))P.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),P.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(Zi,tn),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(Zi),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Gi({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(Zi)}_isShown(){return this.tip&&this.tip.classList.contains(tn)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rn[e.toUpperCase()];return qe(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)P.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===sn?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===sn?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");P.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?on:sn]=!0,e._enter()})),P.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?on:sn]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},P.on(this._element.closest(en),nn,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=H.getDataAttributes(this._element);for(const t of Object.keys(e))Ji.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cn);const hn={...cn.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},dn={...cn.DefaultType,content:"(null|string|element|function)"};class un extends cn{static get Default(){return hn}static get DefaultType(){return dn}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=un.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(un);const fn="click.bs.scrollspy",pn="active",mn="[href]",gn={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},_n={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class bn extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return gn}static get DefaultType(){return _n}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(P.off(this._config.target,fn),P.on(this._config.target,fn,mn,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(mn,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(e.hash,this._element);a(t)&&(this._targetLinks.set(e.hash,e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(pn),this._activateParents(t),P.trigger(this._element,"activate.bs.scrollspy",{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(pn);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,".nav-link, .nav-item > .nav-link, .list-group-item"))t.classList.add(pn)}_clearActiveClass(t){t.classList.remove(pn);const e=z.find("[href].active",t);for(const t of e)t.classList.remove(pn)}static jQueryInterface(t){return this.each((function(){const e=bn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}P.on(window,"load.bs.scrollspy.data-api",(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))bn.getOrCreateInstance(t)})),m(bn);const vn="ArrowLeft",yn="ArrowRight",wn="ArrowUp",An="ArrowDown",En="active",Tn="fade",Cn="show",On='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',xn=`.nav-link:not(.dropdown-toggle), .list-group-item:not(.dropdown-toggle), [role="tab"]:not(.dropdown-toggle), ${On}`;class kn extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),P.on(this._element,"keydown.bs.tab",(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?P.trigger(e,"hide.bs.tab",{relatedTarget:t}):null;P.trigger(t,"show.bs.tab",{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(En),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),P.trigger(t,"shown.bs.tab",{relatedTarget:e})):t.classList.add(Cn)}),t,t.classList.contains(Tn)))}_deactivate(t,e){t&&(t.classList.remove(En),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),P.trigger(t,"hidden.bs.tab",{relatedTarget:e})):t.classList.remove(Cn)}),t,t.classList.contains(Tn)))}_keydown(t){if(![vn,yn,wn,An].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=[yn,An].includes(t.key),i=b(this._getChildren().filter((t=>!l(t))),t.target,e,!0);i&&(i.focus({preventScroll:!0}),kn.getOrCreateInstance(i).show())}_getChildren(){return z.find(xn,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(".dropdown-toggle",En),n(".dropdown-menu",Cn),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(En)}_getInnerElement(t){return t.matches(xn)?t:z.findOne(xn,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=kn.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}P.on(document,"click.bs.tab",On,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||kn.getOrCreateInstance(this).show()})),P.on(window,"load.bs.tab",(()=>{for(const t of z.find('.active[data-bs-toggle="tab"], .active[data-bs-toggle="pill"], .active[data-bs-toggle="list"]'))kn.getOrCreateInstance(t)})),m(kn);const Ln="hide",Sn="show",Dn="showing",In={animation:"boolean",autohide:"boolean",delay:"number"},Nn={animation:!0,autohide:!0,delay:5e3};class Pn extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return Nn}static get DefaultType(){return In}static get NAME(){return"toast"}show(){P.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(Ln),d(this._element),this._element.classList.add(Sn,Dn),this._queueCallback((()=>{this._element.classList.remove(Dn),P.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(P.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.add(Dn),this._queueCallback((()=>{this._element.classList.add(Ln),this._element.classList.remove(Dn,Sn),P.trigger(this._element,"hidden.bs.toast")}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(Sn),super.dispose()}isShown(){return this._element.classList.contains(Sn)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){P.on(this._element,"mouseover.bs.toast",(t=>this._onInteraction(t,!0))),P.on(this._element,"mouseout.bs.toast",(t=>this._onInteraction(t,!1))),P.on(this._element,"focusin.bs.toast",(t=>this._onInteraction(t,!0))),P.on(this._element,"focusout.bs.toast",(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Pn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(Pn),m(Pn),{Alert:q,Button:K,Carousel:rt,Collapse:ft,Dropdown:ci,Modal:Ni,Offcanvas:zi,Popover:un,ScrollSpy:bn,Tab:kn,Toast:Pn,Tooltip:cn}})); -//# sourceMappingURL=bootstrap.bundle.min.js.map diff --git a/desarrollo/diseno/registro-cliente/form/assets/js/custom.js b/desarrollo/diseno/registro-cliente/form/assets/js/custom.js deleted file mode 100644 index 726cf4a2..00000000 --- a/desarrollo/diseno/registro-cliente/form/assets/js/custom.js +++ /dev/null @@ -1,136 +0,0 @@ - -$(document).ready(function() { - 'use strict'; - - // /*------------------------------------- - // Sticky NabBar - // -------------------------------------*/ - // $(window).on('scroll', function () { - // var scroll = $(window).scrollTop(); - - // if (scroll >= 1) { - // $('.ugf-nav-wrap').addClass('fixed'); - // } else { - // $('.ugf-nav-wrap').removeClass('fixed'); - // } - // }); - - /*-------------------------------------------- - File Input - --------------------------------------------*/ - // function handleChange(inputId) { - // var fileUploader = document.getElementById(inputId); - // var getFile = fileUploader.files - - - // var uploadedFile = getFile[getFile.length - 1]; - // readFile(uploadedFile, inputId); - - - // } - - // $('.input-file').on('change', function(e) { - // handleChange(e.target.id); - // }) - - // function readFile(uploadedFile, inputId) { - // if (uploadedFile) { - // var reader = new FileReader(); - // reader.onload = () => { - // var parent = document.getElementById('p-' + inputId); - // parent.innerHTML = ``; - // }; - - // reader.readAsDataURL(uploadedFile); - // } - // }; - - /*-------------------------------------------- - togglePassword - --------------------------------------------*/ - - function togglePassword(){ - let input = document.getElementById("inputPass"); - var eye = document.getElementById("eye"); - var eyeSlash = document.getElementById("eye-slash"); - - if(input.type === "password"){ - input.type = "text" - eye.style.display = "none"; - eyeSlash.style.display = "inline"; - } else { - input.type = "password" - eye.style.display = "inline"; - eyeSlash.style.display = "none"; - } - } - - $('.pass-toggler-btn').on('click', 'i', function() { - togglePassword(); - }) - - - /*-------------------------------------------- - Owl Carousel - --------------------------------------------*/ - - $('.testimonial-carousel').owlCarousel({ - loop:true, - items: 1, - autoplay: true, - autoplayHoverPause: true, - dots: true, - nav: false, - autoplaySpeed: 600, - dotsSpeed: 600, - margin: 15 - }) - - // $('.ugf-slider').owlCarousel({ - // loop:true, - // items: 1, - // autoplay: true, - // autoplayHoverPause: true, - // dots: true, - // nav: false, - // autoplaySpeed: 600, - // dotsSpeed: 600, - // margin: 15 - // }) - - /*-------------------------------------------- - Country Select - --------------------------------------------*/ - - // $("#country").countrySelect(); - - // var windowWidth = $(window).width(); - - // $(window).resize(function() { - // if(windowWidth != $(window).width()) { - // countryList() - // } - // }); - - // function countryList() { - // var screenSize = $(window).width(); - // var countryInputWidth = $('#country').width(); - // var countryListWidth = countryInputWidth; - - // $('.kyc-form .country-list').width(countryListWidth + 86); - // } - // countryList(); - - /*-------------------------------------------- - File Input - --------------------------------------------*/ - - // var fileInput = document.querySelector( ".custom-file-input" ); - // var the_return = document.querySelector(".file-return"); - - // $(fileInput).on('change', function(event) { - // $(the_return).html(this.value); - // }) - - -}) \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/assets/js/desktop.ini b/desarrollo/diseno/registro-cliente/form/assets/js/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/form/assets/js/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/js/email-decode.min.js b/desarrollo/diseno/registro-cliente/form/assets/js/email-decode.min.js deleted file mode 100644 index 725b7c67..00000000 --- a/desarrollo/diseno/registro-cliente/form/assets/js/email-decode.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(){"use strict";function e(e){try{if("undefined"==typeof console)return;"error"in console?console.error(e):console.log(e)}catch(e){}}function t(e){return d.innerHTML='',d.childNodes[0].getAttribute("href")||""}function r(e,t){var r=e.substr(t,2);return parseInt(r,16)}function n(n,c){for(var o="",a=r(n,c),i=c+2;i-1&&(o.href="mailto:"+n(o.href,a+l.length))}catch(i){e(i)}}function o(t){for(var r=t.querySelectorAll(u),c=0;c+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function Le(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=Fe(m.pixelPosition,function(e,t){if(t)return t=We(e,n),Ie.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 01||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g>0;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i,g-=1;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.$stage.children(".center").removeClass("center"),this.settings.center&&this.$stage.children().eq(this.current()).addClass("center")}}],e.prototype.initializeStage=function(){this.$stage=this.$element.find("."+this.settings.stageClass),this.$stage.length||(this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+">",{class:this.settings.stageClass}).wrap(a("
",{class:this.settings.stageOuterClass})),this.$element.append(this.$stage.parent()))},e.prototype.initializeItems=function(){var b=this.$element.find(".owl-item");if(b.length)return this._items=b.get().map(function(b){return a(b)}),this._mergers=this._items.map(function(){return 1}),void this.refresh();this.replace(this.$element.children().not(this.$stage.parent())),this.isVisible()?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass)},e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var a,b,c;a=this.$element.find("img"),b=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,c=this.$element.children(b).width(),a.length&&c<=0&&this.preloadAutoWidthImages(a)}this.initializeStage(),this.initializeItems(),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.isVisible=function(){return!this.settings.checkVisibility||this.$element.is(":visible")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){a<=b&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};b0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.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")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!!this.isVisible()&&(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized")))))},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),!1!==this.settings.responsive&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var e=-1,f=30,g=this.width(),h=this.coordinates();return this.settings.freeDrag||a.each(h,a.proxy(function(a,i){return"left"===c&&b>i-f&&bi-g-f&&b",h[a+1]!==d?h[a+1]:i-g)&&(e="left"===c?a+1:a),-1===e},this)),this.settings.loop||(this.op(b,">",h[this.minimum()])?e=b=this.minimum():this.op(b,"<",h[this.maximum()])&&(e=b=this.maximum())),e},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"+(this.settings.slideTransition?" "+this.settings.slideTransition:"")}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){(a=this.normalize(a))!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||c<1?a=d:(a<0||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){if(b=this._items.length)for(c=this._items[--b].width(),d=this.$element.width();b--&&!((c+=this._items[b].width()+this.settings.margin)>d););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2==0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(e<0),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=-1*f*g),a=c+e,(d=((a-h)%g+g)%g+h)!==a&&d-e<=i&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.isVisible()&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){if(a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0)))return!1;this.leave("animating"),this.trigger("translated")},e.prototype.viewport=function(){var d;return this.options.responsiveBaseElement!==b?d=a(this.options.responsiveBaseElement).width():b.innerWidth?d=b.innerWidth:c.documentElement&&c.documentElement.clientWidth?d=c.documentElement.clientWidth:console.warn("Can not detect viewport width."),d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){(a=this.normalize(a,!0))!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),!1!==this.settings.responsive&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].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")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:a":return d?ac;case">=":return d?a<=c:a>=c;case"<=":return d?a>=c:a<=c}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&-1!==a.namespace.indexOf("owl")?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.isVisible(),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.isVisible()!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type)){var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&-1*e||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);for(c.lazyLoadEager>0&&(e+=c.lazyLoadEager,c.loop&&(g-=c.lazyLoadEager,e++));f++-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src")||f.attr("data-srcset");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):f.is("source")?f.one("load.owl.lazy",a.proxy(function(){this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("srcset",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":'url("'+g+'")',opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(c){this._core=c,this._previousHeight=null,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"===a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._intervalId=null;var d=this;a(b).on("load",function(){d._core.settings.autoHeight&&d.update()}),a(b).resize(function(){d._core.settings.autoHeight&&(null!=d._intervalId&&clearTimeout(d._intervalId),d._intervalId=setTimeout(function(){d.update()},250))})};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.settings.lazyLoad,e=this._core.$stage.children().toArray().slice(b,c),f=[],g=0;a.each(e,function(b,c){f.push(a(c).height())}),g=Math.max.apply(null,f),g<=1&&d&&this._previousHeight&&(g=this._previousHeight),this._previousHeight=g,this._core.$stage.parent().height(g).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.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+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?"width:"+c.width+"px;height:"+c.height+"px;":"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(c){e='
',d=k.lazyLoad?a("
",{class:"owl-video-tn "+j,srcType:c}):a("
",{class:"owl-video-tn",style:"opacity:1;background-image:url("+c+")"}),b.after(d),b.after(e)};if(b.wrap(a("
",{class:"owl-video-wrapper",style:g})),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length)return l(h.attr(i)),h.remove(),!1;"youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}})},e.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")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),c=a(''),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1, -animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('
'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['',''],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("
").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a(' - -

No lo has recibido aún? Reenviar código

-
-
-
-
-
- -
- - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/personal-account.php b/desarrollo/diseno/registro-cliente/form/personal-account.php deleted file mode 100644 index 4a5673fb..00000000 --- a/desarrollo/diseno/registro-cliente/form/personal-account.php +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- -

Detalles de la cuenta

-

Escribe tus informaciones y una contraseña segura para continuar al siguiente paso.

- -
-
-
-
- -
- - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/personal-billing.php b/desarrollo/diseno/registro-cliente/form/personal-billing.php deleted file mode 100644 index eac76951..00000000 --- a/desarrollo/diseno/registro-cliente/form/personal-billing.php +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Dirección de Facturación

-

Escribe los detalles de facturación de tu negocio, también puedes elegir tu ubicación en el mapa!

- -
-
-
-
-
- -
- - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/personal-payments.php b/desarrollo/diseno/registro-cliente/form/personal-payments.php deleted file mode 100644 index 2e8fd583..00000000 --- a/desarrollo/diseno/registro-cliente/form/personal-payments.php +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de Pago

-

Escribe los datos de la cuenta de banco donde deseas recibir tus fondos luego de hacer una venta!

- -
-
-
-
-
- -
- - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/register.php b/desarrollo/diseno/registro-cliente/form/register.php deleted file mode 100644 index c90a1322..00000000 --- a/desarrollo/diseno/registro-cliente/form/register.php +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-

Vamos! Únete a nuestra plataforma

-

Introduce un correo electrónico válido para completar algunos sencillos pasos
para registrar tu cuenta.

- -
-
-
-
-
-

Ya tienes una cuenta?  Entra aqui!

-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/form/signup-complete.php b/desarrollo/diseno/registro-cliente/form/signup-complete.php deleted file mode 100644 index c8cc8746..00000000 --- a/desarrollo/diseno/registro-cliente/form/signup-complete.php +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-

Tu Registro fue Completado!

-

Bienvenido a La Pieza.DO, en breve nuestro departamento de servicios te enviara un email con todos los detalles de tu cuenta y la confirmación de tu registro.

- Finalizar -
-
- - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/images/about-frame.png b/desarrollo/diseno/registro-cliente/images/about-frame.png deleted file mode 100644 index eb7e4257..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/about-frame.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/about-screen.png b/desarrollo/diseno/registro-cliente/images/about-screen.png deleted file mode 100644 index 8d3f57dd..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/about-screen.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/about_main.png b/desarrollo/diseno/registro-cliente/images/about_main.png deleted file mode 100644 index fae0ef8d..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/about_main.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/abt_01.png b/desarrollo/diseno/registro-cliente/images/abt_01.png deleted file mode 100644 index 334ffcaf..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/abt_01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/abt_02.png b/desarrollo/diseno/registro-cliente/images/abt_02.png deleted file mode 100644 index b3cc79fe..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/abt_02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/abt_03.png b/desarrollo/diseno/registro-cliente/images/abt_03.png deleted file mode 100644 index 546e9d21..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/abt_03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/abt_functional.png b/desarrollo/diseno/registro-cliente/images/abt_functional.png deleted file mode 100644 index 108b8c5d..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/abt_functional.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/abt_support.png b/desarrollo/diseno/registro-cliente/images/abt_support.png deleted file mode 100644 index 0e7515ac..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/abt_support.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/anim_line.png b/desarrollo/diseno/registro-cliente/images/anim_line.png deleted file mode 100644 index ced15363..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/anim_line.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/appstore_blue.png b/desarrollo/diseno/registro-cliente/images/appstore_blue.png deleted file mode 100644 index 46af9d05..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/appstore_blue.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/appstore_white.png b/desarrollo/diseno/registro-cliente/images/appstore_white.png deleted file mode 100644 index 3fbe733a..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/appstore_white.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/avtar_testimonial.png b/desarrollo/diseno/registro-cliente/images/avtar_testimonial.png deleted file mode 100644 index 9388ea8f..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/avtar_testimonial.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/banner-shape.svg b/desarrollo/diseno/registro-cliente/images/banner-shape.svg deleted file mode 100644 index efb2df7b..00000000 --- a/desarrollo/diseno/registro-cliente/images/banner-shape.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - diff --git a/desarrollo/diseno/registro-cliente/images/banner-shape1.png b/desarrollo/diseno/registro-cliente/images/banner-shape1.png deleted file mode 100644 index a16e9820..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/banner-shape1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/banner-shape2.png b/desarrollo/diseno/registro-cliente/images/banner-shape2.png deleted file mode 100644 index 3e9ea7a9..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/banner-shape2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/banner-shape3.png b/desarrollo/diseno/registro-cliente/images/banner-shape3.png deleted file mode 100644 index cfdadbe2..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/banner-shape3.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/blod-detail.png b/desarrollo/diseno/registro-cliente/images/blod-detail.png deleted file mode 100644 index 4e83ca2d..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/blod-detail.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/blog_d01.png b/desarrollo/diseno/registro-cliente/images/blog_d01.png deleted file mode 100644 index 6b9537df..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/blog_d01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/blog_d02.png b/desarrollo/diseno/registro-cliente/images/blog_d02.png deleted file mode 100644 index 9e610cc5..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/blog_d02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/blog_d03.png b/desarrollo/diseno/registro-cliente/images/blog_d03.png deleted file mode 100644 index ecd404ae..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/blog_d03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/blog_detail_main.png b/desarrollo/diseno/registro-cliente/images/blog_detail_main.png deleted file mode 100644 index e7d6de0b..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/blog_detail_main.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/blog_sub_01.png b/desarrollo/diseno/registro-cliente/images/blog_sub_01.png deleted file mode 100644 index ba52af5b..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/blog_sub_01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/blog_sub_02.png b/desarrollo/diseno/registro-cliente/images/blog_sub_02.png deleted file mode 100644 index f9e814f7..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/blog_sub_02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/bread_crumb_bg.png b/desarrollo/diseno/registro-cliente/images/bread_crumb_bg.png deleted file mode 100644 index 9a59ecd1..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/bread_crumb_bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/bredcrumb_overlay.png b/desarrollo/diseno/registro-cliente/images/bredcrumb_overlay.png deleted file mode 100644 index 93bb57c8..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/bredcrumb_overlay.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/call_icon.png b/desarrollo/diseno/registro-cliente/images/call_icon.png deleted file mode 100644 index 30066959..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/call_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/communication.png b/desarrollo/diseno/registro-cliente/images/communication.png deleted file mode 100644 index 9140294d..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/communication.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/contact_message_icon.png b/desarrollo/diseno/registro-cliente/images/contact_message_icon.png deleted file mode 100644 index 06f3d518..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/contact_message_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/countries.png b/desarrollo/diseno/registro-cliente/images/countries.png deleted file mode 100644 index 54c64bdc..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/countries.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/create_account.jpg b/desarrollo/diseno/registro-cliente/images/create_account.jpg deleted file mode 100644 index 1d49331d..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/create_account.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/desktop.ini b/desarrollo/diseno/registro-cliente/images/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/download-screen01.png b/desarrollo/diseno/registro-cliente/images/download-screen01.png deleted file mode 100644 index a09a9876..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/download-screen01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/download-screen02.png b/desarrollo/diseno/registro-cliente/images/download-screen02.png deleted file mode 100644 index c0a4ec76..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/download-screen02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/download.png b/desarrollo/diseno/registro-cliente/images/download.png deleted file mode 100644 index 1d9cd9de..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/download.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/download_app.jpg b/desarrollo/diseno/registro-cliente/images/download_app.jpg deleted file mode 100644 index 449850f7..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/download_app.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/enjoy_app.jpg b/desarrollo/diseno/registro-cliente/images/enjoy_app.jpg deleted file mode 100644 index f9ff64e5..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/enjoy_app.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/envato.png b/desarrollo/diseno/registro-cliente/images/envato.png deleted file mode 100644 index 5f41512c..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/envato.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/experts_01.png b/desarrollo/diseno/registro-cliente/images/experts_01.png deleted file mode 100644 index 0d76e124..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/experts_01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/experts_02.png b/desarrollo/diseno/registro-cliente/images/experts_02.png deleted file mode 100644 index 197875a5..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/experts_02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/experts_03.png b/desarrollo/diseno/registro-cliente/images/experts_03.png deleted file mode 100644 index b719e207..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/experts_03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/experts_04.png b/desarrollo/diseno/registro-cliente/images/experts_04.png deleted file mode 100644 index e813c2a5..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/experts_04.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/favicon.ico b/desarrollo/diseno/registro-cliente/images/favicon.ico deleted file mode 100644 index e69de29b..00000000 diff --git a/desarrollo/diseno/registro-cliente/images/favicon.png b/desarrollo/diseno/registro-cliente/images/favicon.png deleted file mode 100644 index 0799fa75..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/favicon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/features_frame.png b/desarrollo/diseno/registro-cliente/images/features_frame.png deleted file mode 100644 index c9735b7a..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/features_frame.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/featurescreen.png b/desarrollo/diseno/registro-cliente/images/featurescreen.png deleted file mode 100644 index f7b2e2fd..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/featurescreen.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/followers.png b/desarrollo/diseno/registro-cliente/images/followers.png deleted file mode 100644 index 51587199..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/followers.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/footer_logo.png b/desarrollo/diseno/registro-cliente/images/footer_logo.png deleted file mode 100644 index 0578f44f..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/footer_logo.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/functional.png b/desarrollo/diseno/registro-cliente/images/functional.png deleted file mode 100644 index e91f9164..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/functional.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/go_top.png b/desarrollo/diseno/registro-cliente/images/go_top.png deleted file mode 100644 index 3186901b..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/go_top.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/go_top2.png b/desarrollo/diseno/registro-cliente/images/go_top2.png deleted file mode 100644 index 258951ef..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/go_top2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/google.png b/desarrollo/diseno/registro-cliente/images/google.png deleted file mode 100644 index aec284eb..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/google.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/googleplay_blue.png b/desarrollo/diseno/registro-cliente/images/googleplay_blue.png deleted file mode 100644 index 57f7a2b4..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/googleplay_blue.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/googleplay_white.png b/desarrollo/diseno/registro-cliente/images/googleplay_white.png deleted file mode 100644 index fc71ad3f..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/googleplay_white.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/icon_bg.png b/desarrollo/diseno/registro-cliente/images/icon_bg.png deleted file mode 100644 index 50f18dca..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/icon_bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/inner_page_banner_overlay.svg b/desarrollo/diseno/registro-cliente/images/inner_page_banner_overlay.svg deleted file mode 100644 index b6ec148f..00000000 --- a/desarrollo/diseno/registro-cliente/images/inner_page_banner_overlay.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - diff --git a/desarrollo/diseno/registro-cliente/images/live-chat.png b/desarrollo/diseno/registro-cliente/images/live-chat.png deleted file mode 100644 index dc96945d..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/live-chat.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/location_icon.png b/desarrollo/diseno/registro-cliente/images/location_icon.png deleted file mode 100644 index 36a9587b..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/location_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/logo.png b/desarrollo/diseno/registro-cliente/images/logo.png deleted file mode 100644 index 260952ce..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/logo.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/mail_icon.png b/desarrollo/diseno/registro-cliente/images/mail_icon.png deleted file mode 100644 index 77d49083..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/mail_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/message_icon.png b/desarrollo/diseno/registro-cliente/images/message_icon.png deleted file mode 100644 index 4ffeb3a7..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/message_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/mobile_frame.png b/desarrollo/diseno/registro-cliente/images/mobile_frame.png deleted file mode 100644 index f7f5249e..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/mobile_frame.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/mobile_frame1.png b/desarrollo/diseno/registro-cliente/images/mobile_frame1.png deleted file mode 100644 index 1c5864f7..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/mobile_frame1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/mobile_frame_svg.svg b/desarrollo/diseno/registro-cliente/images/mobile_frame_svg.svg deleted file mode 100644 index e05c0a2c..00000000 --- a/desarrollo/diseno/registro-cliente/images/mobile_frame_svg.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/desarrollo/diseno/registro-cliente/images/modern01.png b/desarrollo/diseno/registro-cliente/images/modern01.png deleted file mode 100644 index c9627675..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/modern01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/modern02.png b/desarrollo/diseno/registro-cliente/images/modern02.png deleted file mode 100644 index 0ac01974..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/modern02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/modern03.png b/desarrollo/diseno/registro-cliente/images/modern03.png deleted file mode 100644 index a962b88e..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/modern03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/paypal.png b/desarrollo/diseno/registro-cliente/images/paypal.png deleted file mode 100644 index bc9ec711..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/paypal.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/play_black.png b/desarrollo/diseno/registro-cliente/images/play_black.png deleted file mode 100644 index 1cd3c042..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/play_black.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/play_icon.png b/desarrollo/diseno/registro-cliente/images/play_icon.png deleted file mode 100644 index feb549d4..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/play_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/play_icon1.png b/desarrollo/diseno/registro-cliente/images/play_icon1.png deleted file mode 100644 index 028255ea..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/play_icon1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/play_icon22.png b/desarrollo/diseno/registro-cliente/images/play_icon22.png deleted file mode 100644 index 377debfd..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/play_icon22.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/premium.png b/desarrollo/diseno/registro-cliente/images/premium.png deleted file mode 100644 index 69e77891..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/premium.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/query_bg.png b/desarrollo/diseno/registro-cliente/images/query_bg.png deleted file mode 100644 index 80013e56..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/query_bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/quote_icon.png b/desarrollo/diseno/registro-cliente/images/quote_icon.png deleted file mode 100644 index 3a201787..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/quote_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_01.png b/desarrollo/diseno/registro-cliente/images/review_01.png deleted file mode 100644 index fa8a8094..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_02.png b/desarrollo/diseno/registro-cliente/images/review_02.png deleted file mode 100644 index 2334011c..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_03.png b/desarrollo/diseno/registro-cliente/images/review_03.png deleted file mode 100644 index 31532a26..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_04.png b/desarrollo/diseno/registro-cliente/images/review_04.png deleted file mode 100644 index 3d22d56b..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_04.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_05.png b/desarrollo/diseno/registro-cliente/images/review_05.png deleted file mode 100644 index a8ab3056..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_05.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_06.png b/desarrollo/diseno/registro-cliente/images/review_06.png deleted file mode 100644 index e7e2ef1c..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_06.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_07.png b/desarrollo/diseno/registro-cliente/images/review_07.png deleted file mode 100644 index 1a69a370..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_07.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_08.png b/desarrollo/diseno/registro-cliente/images/review_08.png deleted file mode 100644 index bbbb39f1..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_08.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/review_09.png b/desarrollo/diseno/registro-cliente/images/review_09.png deleted file mode 100644 index ccacf883..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/review_09.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/reviews.png b/desarrollo/diseno/registro-cliente/images/reviews.png deleted file mode 100644 index 4f7867a9..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/reviews.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/right_icon.png b/desarrollo/diseno/registro-cliente/images/right_icon.png deleted file mode 100644 index 704fee02..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/right_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/screen-1.png b/desarrollo/diseno/registro-cliente/images/screen-1.png deleted file mode 100644 index 539f84f0..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/screen-1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/screen-2.png b/desarrollo/diseno/registro-cliente/images/screen-2.png deleted file mode 100644 index 38d04bd5..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/screen-2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/screen-3.png b/desarrollo/diseno/registro-cliente/images/screen-3.png deleted file mode 100644 index 2bf96891..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/screen-3.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/screen-4.png b/desarrollo/diseno/registro-cliente/images/screen-4.png deleted file mode 100644 index 90c8af2b..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/screen-4.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/screen-5.png b/desarrollo/diseno/registro-cliente/images/screen-5.png deleted file mode 100644 index ee8e8543..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/screen-5.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/screen.png b/desarrollo/diseno/registro-cliente/images/screen.png deleted file mode 100644 index 9f593329..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/screen.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/screen1.png b/desarrollo/diseno/registro-cliente/images/screen1.png deleted file mode 100644 index 166f4920..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/screen1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/secure.png b/desarrollo/diseno/registro-cliente/images/secure.png deleted file mode 100644 index e33eec87..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/secure.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/secure_data.png b/desarrollo/diseno/registro-cliente/images/secure_data.png deleted file mode 100644 index 26227527..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/secure_data.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/shield_icon.png b/desarrollo/diseno/registro-cliente/images/shield_icon.png deleted file mode 100644 index 3310a4e1..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/shield_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/shopboat.png b/desarrollo/diseno/registro-cliente/images/shopboat.png deleted file mode 100644 index 3d95f087..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/shopboat.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/slack.png b/desarrollo/diseno/registro-cliente/images/slack.png deleted file mode 100644 index 1dd64f1d..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/slack.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/spoty.png b/desarrollo/diseno/registro-cliente/images/spoty.png deleted file mode 100644 index 0b6b5d0f..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/spoty.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/standard.png b/desarrollo/diseno/registro-cliente/images/standard.png deleted file mode 100644 index ac294b4c..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/standard.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story01.png b/desarrollo/diseno/registro-cliente/images/story01.png deleted file mode 100644 index 6e6892ac..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story02.png b/desarrollo/diseno/registro-cliente/images/story02.png deleted file mode 100644 index d202c54d..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story03.png b/desarrollo/diseno/registro-cliente/images/story03.png deleted file mode 100644 index bcc07757..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story04.png b/desarrollo/diseno/registro-cliente/images/story04.png deleted file mode 100644 index 3165b2a7..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story04.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story05.png b/desarrollo/diseno/registro-cliente/images/story05.png deleted file mode 100644 index 5ec172be..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story05.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story06.png b/desarrollo/diseno/registro-cliente/images/story06.png deleted file mode 100644 index 2ca821a6..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story06.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story07.png b/desarrollo/diseno/registro-cliente/images/story07.png deleted file mode 100644 index b3de1382..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story07.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story08.png b/desarrollo/diseno/registro-cliente/images/story08.png deleted file mode 100644 index cbcee902..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story08.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/story09.png b/desarrollo/diseno/registro-cliente/images/story09.png deleted file mode 100644 index d99e57af..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/story09.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/support.png b/desarrollo/diseno/registro-cliente/images/support.png deleted file mode 100644 index 5d924db3..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/support.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/telefono.png b/desarrollo/diseno/registro-cliente/images/telefono.png deleted file mode 100644 index d99e2985..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/telefono.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/testimonial_bg.png b/desarrollo/diseno/registro-cliente/images/testimonial_bg.png deleted file mode 100644 index 5f7e4374..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/testimonial_bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/testimonial_user1.png b/desarrollo/diseno/registro-cliente/images/testimonial_user1.png deleted file mode 100644 index 6fff6259..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/testimonial_user1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/testimonial_user2.png b/desarrollo/diseno/registro-cliente/images/testimonial_user2.png deleted file mode 100644 index cace92fa..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/testimonial_user2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/testimonial_user3.png b/desarrollo/diseno/registro-cliente/images/testimonial_user3.png deleted file mode 100644 index c1f22602..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/testimonial_user3.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/unlimited.png b/desarrollo/diseno/registro-cliente/images/unlimited.png deleted file mode 100644 index 52cdf7ac..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/unlimited.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/used01.png b/desarrollo/diseno/registro-cliente/images/used01.png deleted file mode 100644 index 471fc0cf..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/used01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/used02.png b/desarrollo/diseno/registro-cliente/images/used02.png deleted file mode 100644 index bed846b0..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/used02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/used03.png b/desarrollo/diseno/registro-cliente/images/used03.png deleted file mode 100644 index 6fd9c30f..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/used03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/used04.png b/desarrollo/diseno/registro-cliente/images/used04.png deleted file mode 100644 index 83a52217..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/used04.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/images/yt_thumb.png b/desarrollo/diseno/registro-cliente/images/yt_thumb.png deleted file mode 100644 index 185b05b1..00000000 Binary files a/desarrollo/diseno/registro-cliente/images/yt_thumb.png and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/index.php b/desarrollo/diseno/registro-cliente/index.php deleted file mode 100644 index 5b6595e5..00000000 --- a/desarrollo/diseno/registro-cliente/index.php +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - La Pieza.DO | Todo lo que buscas! - - - - - - - - - - - - - - - - - - - - - -
- - -
-
-
- - -
- -
- - - -
- -
- - - - - -
- -
-
-
- -

Cómo funciona La Pieza.DO en 3 sencillos pasos

- -

Usar La Pieza.DO es súper fácil, solo sigue estos pasos.

-
-
- -
    - -
  • -
    -

    Descarga la app

    -
    - - - -
    -

    Descarga la App en Google Play o Play Store

    -
    -
    -

    01

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Registrate y crea una cuenta

    - Totalmente Gratis! -

    Inicia sesión en la aplicación o en tu computadora. Una cuenta para todos los dispositivos.

    -
    -
    -

    02

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Todo listo disfruta la app!

    - Si tienes alguna pregunta visita FAQs. -

    Obten la experiencia más increíble.
    Explora y comparte la app.

    -
    -
    -

    03

    -
    -
    - image -
    -
  • -
-
-
-
- -
- - - -
- - - -
-
- -

FAQ - Preguntas Frecuentes

- -

Aqui tenemos todas las respuestas a tus preguntas con respecto al uso de La Pieza.DO. Aquí podrás encontrar respuestas rápidas para que puedas utilizar la aplicación.

-
- -
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-
- -
- -
- -
-
- -
- -
-
-
-

Descargala grátis para Android y Apple

-

Descarga nuestra app y sácale provecho a tu negocio en línea. Registrate y descubre lo nuevo que tenemos para ti.

-
- -
-
- - -
-
- image - image -
-
-
- -
-
- -
- - - - - - - -
- -
- - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/js/aos.js b/desarrollo/diseno/registro-cliente/js/aos.js deleted file mode 100644 index 0ba1c7b6..00000000 --- a/desarrollo/diseno/registro-cliente/js/aos.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,x),(0,b.default)(w,x.once),w},O=function(){w=(0,h.default)(),j()},_=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},S=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},z=function(e){x=i(x,e),w=(0,h.default)();var t=document.all&&!window.atob;return S(x.disable)||t?_():(document.querySelector("body").setAttribute("data-aos-easing",x.easing),document.querySelector("body").setAttribute("data-aos-duration",x.duration),document.querySelector("body").setAttribute("data-aos-delay",x.delay),"DOMContentLoaded"===x.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?j(!0):"load"===x.startEvent?window.addEventListener(x.startEvent,function(){j(!0)}):document.addEventListener(x.startEvent,function(){j(!0)}),window.addEventListener("resize",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("orientationchange",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,x.once)},x.throttleDelay)),x.disableMutationObserver||(0,d.default)("[data-aos]",O),w)};e.exports={init:z,refresh:j,refreshHard:O}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),_?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,z&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(_=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(f);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return s;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f="Expected a function",s=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),_?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,z&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(_=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==s}function a(e){if("number"==typeof e)return e;if(r(e))return f;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",f=NaN,s="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e,t){var n=window.document,r=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,a=new r(o);i=t,a.observe(n.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}function o(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),n=Array.prototype.slice.call(e.removedNodes),o=t.concat(n).filter(function(e){return e.hasAttribute&&e.hasAttribute("data-aos")}).length;o&&i()})}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){};t.default=n},function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;ne.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])}); \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/js/bootstrap.min.js b/desarrollo/diseno/registro-cliente/js/bootstrap.min.js deleted file mode 100644 index 50720ead..00000000 --- a/desarrollo/diseno/registro-cliente/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var o=i(e),a=i(n);function s(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};d.jQueryDetection(),o.default.fn.emulateTransitionEnd=function(t){var e=this,n=!1;return o.default(this).one(d.TRANSITION_END,(function(){n=!0})),setTimeout((function(){n||d.triggerTransitionEnd(e)}),t),this},o.default.event.special[d.TRANSITION_END]={bindType:f,delegateType:f,handle:function(t){if(o.default(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var c="bs.alert",h=o.default.fn.alert,g=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){o.default.removeData(this._element,c),this._element=null},e._getRootElement=function(t){var e=d.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=o.default(t).closest(".alert")[0]),n},e._triggerCloseEvent=function(t){var e=o.default.Event("close.bs.alert");return o.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(o.default(t).removeClass("show"),o.default(t).hasClass("fade")){var n=d.getTransitionDurationFromElement(t);o.default(t).one(d.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){o.default(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(c);i||(i=new t(this),n.data(c,i)),"close"===e&&i[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',g._handleDismiss(new g)),o.default.fn.alert=g._jQueryInterface,o.default.fn.alert.Constructor=g,o.default.fn.alert.noConflict=function(){return o.default.fn.alert=h,g._jQueryInterface};var m="bs.button",p=o.default.fn.button,_="active",v='[data-toggle^="button"]',y='input:not([type="hidden"])',b=".btn",E=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=o.default(this._element).closest('[data-toggle="buttons"]')[0];if(n){var i=this._element.querySelector(y);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(_))t=!1;else{var a=n.querySelector(".active");a&&o.default(a).removeClass(_)}t&&("checkbox"!==i.type&&"radio"!==i.type||(i.checked=!this._element.classList.contains(_)),this.shouldAvoidTriggerChange||o.default(i).trigger("change")),i.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(_)),t&&o.default(this._element).toggleClass(_))},e.dispose=function(){o.default.removeData(this._element,m),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var i=o.default(this),a=i.data(m);a||(a=new t(this),i.data(m,a)),a.shouldAvoidTriggerChange=n,"toggle"===e&&a[e]()}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.button.data-api",v,(function(t){var e=t.target,n=e;if(o.default(e).hasClass("btn")||(e=o.default(e).closest(b)[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var i=e.querySelector(y);if(i&&(i.hasAttribute("disabled")||i.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||E._jQueryInterface.call(o.default(e),"toggle","INPUT"===n.tagName)}})).on("focus.bs.button.data-api blur.bs.button.data-api",v,(function(t){var e=o.default(t.target).closest(b)[0];o.default(e).toggleClass("focus",/^focus(in)?$/.test(t.type))})),o.default(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide(N)},e.nextWhenVisible=function(){var t=o.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide(D)},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(d.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(I);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)o.default(this._element).one(A,(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var i=t>n?N:D;this._slide(i,this._items[t])}},e.dispose=function(){o.default(this._element).off(".bs.carousel"),o.default.removeData(this._element,w),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=r({},k,t),d.typeCheckConfig(T,t,O),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&o.default(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&o.default(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};o.default(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(o.default(this._element).on("pointerdown.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("pointerup.bs.carousel",(function(t){return n(t)})),this._element.classList.add("pointer-event")):(o.default(this._element).on("touchstart.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("touchmove.bs.carousel",(function(e){return function(e){t.touchDeltaX=e.originalEvent.touches&&e.originalEvent.touches.length>1?0:e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),o.default(this._element).on("touchend.bs.carousel",(function(t){return n(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n=t===N,i=t===D,o=this._getItemIndex(e),a=this._items.length-1;if((i&&0===o||n&&o===a)&&!this._config.wrap)return e;var s=(o+(t===D?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(I)),a=o.default.Event("slide.bs.carousel",{relatedTarget:t,direction:e,from:i,to:n});return o.default(this._element).trigger(a),a},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));o.default(e).removeClass(S);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&o.default(n).addClass(S)}},e._updateInterval=function(){var t=this._activeElement||this._element.querySelector(I);if(t){var e=parseInt(t.getAttribute("data-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}},e._slide=function(t,e){var n,i,a,s=this,l=this._element.querySelector(I),r=this._getItemIndex(l),u=e||l&&this._getItemByDirection(t,l),f=this._getItemIndex(u),c=Boolean(this._interval);if(t===N?(n="carousel-item-left",i="carousel-item-next",a="left"):(n="carousel-item-right",i="carousel-item-prev",a="right"),u&&o.default(u).hasClass(S))this._isSliding=!1;else if(!this._triggerSlideEvent(u,a).isDefaultPrevented()&&l&&u){this._isSliding=!0,c&&this.pause(),this._setActiveIndicatorElement(u),this._activeElement=u;var h=o.default.Event(A,{relatedTarget:u,direction:a,from:r,to:f});if(o.default(this._element).hasClass("slide")){o.default(u).addClass(i),d.reflow(u),o.default(l).addClass(n),o.default(u).addClass(n);var g=d.getTransitionDurationFromElement(l);o.default(l).one(d.TRANSITION_END,(function(){o.default(u).removeClass(n+" "+i).addClass(S),o.default(l).removeClass("active "+i+" "+n),s._isSliding=!1,setTimeout((function(){return o.default(s._element).trigger(h)}),0)})).emulateTransitionEnd(g)}else o.default(l).removeClass(S),o.default(u).addClass(S),this._isSliding=!1,o.default(this._element).trigger(h);c&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(w),i=r({},k,o.default(this).data());"object"==typeof e&&(i=r({},i,e));var a="string"==typeof e?e:i.slide;if(n||(n=new t(this,i),o.default(this).data(w,n)),"number"==typeof e)n.to(e);else if("string"==typeof a){if("undefined"==typeof n[a])throw new TypeError('No method named "'+a+'"');n[a]()}else i.interval&&i.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=d.getSelectorFromElement(this);if(n){var i=o.default(n)[0];if(i&&o.default(i).hasClass("carousel")){var a=r({},o.default(i).data(),o.default(this).data()),s=this.getAttribute("data-slide-to");s&&(a.interval=!1),t._jQueryInterface.call(o.default(i),a),s&&o.default(i).data(w).to(s),e.preventDefault()}}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return k}}]),t}();o.default(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",P._dataApiClickHandler),o.default(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),e=0,n=t.length;e0&&(this._selector=s,this._triggerArray.push(a))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){o.default(this._element).hasClass(q)?this.hide():this.show()},e.show=function(){var e,n,i=this;if(!(this._isTransitioning||o.default(this._element).hasClass(q)||(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof i._config.parent?t.getAttribute("data-parent")===i._config.parent:t.classList.contains(F)}))).length&&(e=null),e&&(n=o.default(e).not(this._selector).data(R))&&n._isTransitioning))){var a=o.default.Event("show.bs.collapse");if(o.default(this._element).trigger(a),!a.isDefaultPrevented()){e&&(t._jQueryInterface.call(o.default(e).not(this._selector),"hide"),n||o.default(e).data(R,null));var s=this._getDimension();o.default(this._element).removeClass(F).addClass(Q),this._element.style[s]=0,this._triggerArray.length&&o.default(this._triggerArray).removeClass(B).attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(s[0].toUpperCase()+s.slice(1)),r=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,(function(){o.default(i._element).removeClass(Q).addClass("collapse show"),i._element.style[s]="",i.setTransitioning(!1),o.default(i._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(r),this._element.style[s]=this._element[l]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&o.default(this._element).hasClass(q)){var e=o.default.Event("hide.bs.collapse");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",d.reflow(this._element),o.default(this._element).addClass(Q).removeClass("collapse show");var i=this._triggerArray.length;if(i>0)for(var a=0;a0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t._config.offset(e.offsets,t._element)),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),r({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(K);if(n||(n=new t(this,"object"==typeof e?e:null),o.default(this).data(K,n)),"string"==typeof e){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=[].slice.call(document.querySelectorAll(it)),i=0,a=n.length;i0&&s--,40===e.which&&sdocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add(ht);var i=d.getTransitionDurationFromElement(this._dialog);o.default(this._element).off(d.TRANSITION_END),o.default(this._element).one(d.TRANSITION_END,(function(){t._element.classList.remove(ht),n||o.default(t._element).one(d.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,i)})).emulateTransitionEnd(i),this._element.focus()}},e._showElement=function(t){var e=this,n=o.default(this._element).hasClass(dt),i=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),o.default(this._dialog).hasClass("modal-dialog-scrollable")&&i?i.scrollTop=0:this._element.scrollTop=0,n&&d.reflow(this._element),o.default(this._element).addClass(ct),this._config.focus&&this._enforceFocus();var a=o.default.Event("shown.bs.modal",{relatedTarget:t}),s=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,o.default(e._element).trigger(a)};if(n){var l=d.getTransitionDurationFromElement(this._dialog);o.default(this._dialog).one(d.TRANSITION_END,s).emulateTransitionEnd(l)}else s()},e._enforceFocus=function(){var t=this;o.default(document).off(pt).on(pt,(function(e){document!==e.target&&t._element!==e.target&&0===o.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?o.default(this._element).on(yt,(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||o.default(this._element).off(yt)},e._setResizeEvent=function(){var t=this;this._isShown?o.default(window).on(_t,(function(e){return t.handleUpdate(e)})):o.default(window).off(_t)},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){o.default(document.body).removeClass(ft),t._resetAdjustments(),t._resetScrollbar(),o.default(t._element).trigger(gt)}))},e._removeBackdrop=function(){this._backdrop&&(o.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=o.default(this._element).hasClass(dt)?dt:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",n&&this._backdrop.classList.add(n),o.default(this._backdrop).appendTo(document.body),o.default(this._element).on(vt,(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._triggerBackdropTransition():e.hide())})),n&&d.reflow(this._backdrop),o.default(this._backdrop).addClass(ct),!t)return;if(!n)return void t();var i=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){o.default(this._backdrop).removeClass(ct);var a=function(){e._removeBackdrop(),t&&t()};if(o.default(this._element).hasClass(dt)){var s=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Ut={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},Mt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},Wt=function(){function t(t,e){if("undefined"==typeof a.default)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=o.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(o.default(this.getTipElement()).hasClass(Rt))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),o.default.removeData(this.element,this.constructor.DATA_KEY),o.default(this.element).off(this.constructor.EVENT_KEY),o.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&o.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===o.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=o.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){o.default(this.element).trigger(e);var n=d.findShadowRoot(this.element),i=o.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!i)return;var s=this.getTipElement(),l=d.getUID(this.constructor.NAME);s.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&o.default(s).addClass(Lt);var r="function"==typeof this.config.placement?this.config.placement.call(this,s,this.element):this.config.placement,u=this._getAttachment(r);this.addAttachmentClass(u);var f=this._getContainer();o.default(s).data(this.constructor.DATA_KEY,this),o.default.contains(this.element.ownerDocument.documentElement,this.tip)||o.default(s).appendTo(f),o.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new a.default(this.element,s,this._getPopperConfig(u)),o.default(s).addClass(Rt),o.default(s).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&o.default(document.body).children().on("mouseover",null,o.default.noop);var c=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,o.default(t.element).trigger(t.constructor.Event.SHOWN),e===qt&&t._leave(null,t)};if(o.default(this.tip).hasClass(Lt)){var h=d.getTransitionDurationFromElement(this.tip);o.default(this.tip).one(d.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},e.hide=function(t){var e=this,n=this.getTipElement(),i=o.default.Event(this.constructor.Event.HIDE),a=function(){e._hoverState!==xt&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),o.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(o.default(this.element).trigger(i),!i.isDefaultPrevented()){if(o.default(n).removeClass(Rt),"ontouchstart"in document.documentElement&&o.default(document.body).children().off("mouseover",null,o.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,o.default(this.tip).hasClass(Lt)){var s=d.getTransitionDurationFromElement(n);o.default(n).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-tooltip-"+t)},e.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(o.default(t.querySelectorAll(".tooltip-inner")),this.getTitle()),o.default(t).removeClass("fade show")},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=At(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?o.default(e).parent().is(t)||t.empty().append(e):t.text(o.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return r({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t.config.offset(e.offsets,t.element)),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:d.isElement(this.config.container)?o.default(this.config.container):o.default(document).find(this.config.container)},e._getAttachment=function(t){return Bt[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)o.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==e){var n=e===Ft?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,i=e===Ft?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;o.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(i,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},o.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Qt:Ft]=!0),o.default(e.getTipElement()).hasClass(Rt)||e._hoverState===xt?e._hoverState=xt:(clearTimeout(e._timeout),e._hoverState=xt,e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){e._hoverState===xt&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Qt:Ft]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=qt,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){e._hoverState===qt&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=o.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Pt.indexOf(t)&&delete e[t]})),"number"==typeof(t=r({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d.typeCheckConfig(It,t,this.constructor.DefaultType),t.sanitize&&(t.template=At(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(jt);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(o.default(t).removeClass(Lt),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(kt),a="object"==typeof e&&e;if((i||!/dispose|hide/.test(e))&&(i||(i=new t(this,a),n.data(kt,i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Ht}},{key:"NAME",get:function(){return It}},{key:"DATA_KEY",get:function(){return kt}},{key:"Event",get:function(){return Mt}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return Ut}}]),t}();o.default.fn.tooltip=Wt._jQueryInterface,o.default.fn.tooltip.Constructor=Wt,o.default.fn.tooltip.noConflict=function(){return o.default.fn.tooltip=Ot,Wt._jQueryInterface};var Vt="bs.popover",zt=o.default.fn.popover,Kt=new RegExp("(^|\\s)bs-popover\\S+","g"),Xt=r({},Wt.Default,{placement:"right",trigger:"click",content:"",template:''}),Yt=r({},Wt.DefaultType,{content:"(string|element|function)"}),$t={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},Jt=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),e.prototype.constructor=e,u(e,n);var a=i.prototype;return a.isWithContent=function(){return this.getTitle()||this._getContent()},a.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-popover-"+t)},a.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},a.setContent=function(){var t=o.default(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(".popover-body"),e),t.removeClass("fade show")},a._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},a._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(Kt);null!==e&&e.length>0&&t.removeClass(e.join(""))},i._jQueryInterface=function(t){return this.each((function(){var e=o.default(this).data(Vt),n="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new i(this,n),o.default(this).data(Vt,e)),"string"==typeof t)){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}}))},l(i,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Xt}},{key:"NAME",get:function(){return"popover"}},{key:"DATA_KEY",get:function(){return Vt}},{key:"Event",get:function(){return $t}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return Yt}}]),i}(Wt);o.default.fn.popover=Jt._jQueryInterface,o.default.fn.popover.Constructor=Jt,o.default.fn.popover.noConflict=function(){return o.default.fn.popover=zt,Jt._jQueryInterface};var Gt="scrollspy",Zt="bs.scrollspy",te=o.default.fn[Gt],ee="active",ne="position",ie=".nav, .list-group",oe={offset:10,method:"auto",target:""},ae={offset:"number",method:"string",target:"(string|element)"},se=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,o.default(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?"offset":ne,n="auto"===this._config.method?e:this._config.method,i=n===ne?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,a=d.getSelectorFromElement(t);if(a&&(e=document.querySelector(a)),e){var s=e.getBoundingClientRect();if(s.width||s.height)return[o.default(e)[n]().top+i,a]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){o.default.removeData(this._element,Zt),o.default(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=r({},oe,"object"==typeof t&&t?t:{})).target&&d.isElement(t.target)){var e=o.default(t.target).attr("id");e||(e=d.getUID(Gt),o.default(t.target).attr("id",e)),t.target="#"+e}return d.typeCheckConfig(Gt,t,ae),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;)this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active",ge=function(){function t(t){this._element=t}var e=t.prototype;return e.show=function(){var t=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&o.default(this._element).hasClass(ue)||o.default(this._element).hasClass("disabled"))){var e,n,i=o.default(this._element).closest(".nav, .list-group")[0],a=d.getSelectorFromElement(this._element);if(i){var s="UL"===i.nodeName||"OL"===i.nodeName?he:ce;n=(n=o.default.makeArray(o.default(i).find(s)))[n.length-1]}var l=o.default.Event("hide.bs.tab",{relatedTarget:this._element}),r=o.default.Event("show.bs.tab",{relatedTarget:n});if(n&&o.default(n).trigger(l),o.default(this._element).trigger(r),!r.isDefaultPrevented()&&!l.isDefaultPrevented()){a&&(e=document.querySelector(a)),this._activate(this._element,i);var u=function(){var e=o.default.Event("hidden.bs.tab",{relatedTarget:t._element}),i=o.default.Event("shown.bs.tab",{relatedTarget:n});o.default(n).trigger(e),o.default(t._element).trigger(i)};e?this._activate(e,e.parentNode,u):u()}}},e.dispose=function(){o.default.removeData(this._element,le),this._element=null},e._activate=function(t,e,n){var i=this,a=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?o.default(e).children(ce):o.default(e).find(he))[0],s=n&&a&&o.default(a).hasClass(fe),l=function(){return i._transitionComplete(t,a,n)};if(a&&s){var r=d.getTransitionDurationFromElement(a);o.default(a).removeClass(de).one(d.TRANSITION_END,l).emulateTransitionEnd(r)}else l()},e._transitionComplete=function(t,e,n){if(e){o.default(e).removeClass(ue);var i=o.default(e.parentNode).find("> .dropdown-menu .active")[0];i&&o.default(i).removeClass(ue),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}o.default(t).addClass(ue),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),d.reflow(t),t.classList.contains(fe)&&t.classList.add(de);var a=t.parentNode;if(a&&"LI"===a.nodeName&&(a=a.parentNode),a&&o.default(a).hasClass("dropdown-menu")){var s=o.default(t).closest(".dropdown")[0];if(s){var l=[].slice.call(s.querySelectorAll(".dropdown-toggle"));o.default(l).addClass(ue)}t.setAttribute("aria-expanded",!0)}n&&n()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(le);if(i||(i=new t(this),n.data(le,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),ge._jQueryInterface.call(o.default(this),"show")})),o.default.fn.tab=ge._jQueryInterface,o.default.fn.tab.Constructor=ge,o.default.fn.tab.noConflict=function(){return o.default.fn.tab=re,ge._jQueryInterface};var me="bs.toast",pe=o.default.fn.toast,_e="hide",ve="show",ye="showing",be="click.dismiss.bs.toast",Ee={animation:!0,autohide:!0,delay:500},Te={animation:"boolean",autohide:"boolean",delay:"number"},we=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var e=t.prototype;return e.show=function(){var t=this,e=o.default.Event("show.bs.toast");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var n=function(){t._element.classList.remove(ye),t._element.classList.add(ve),o.default(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove(_e),d.reflow(this._element),this._element.classList.add(ye),this._config.animation){var i=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,n).emulateTransitionEnd(i)}else n()}},e.hide=function(){if(this._element.classList.contains(ve)){var t=o.default.Event("hide.bs.toast");o.default(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},e.dispose=function(){this._clearTimeout(),this._element.classList.contains(ve)&&this._element.classList.remove(ve),o.default(this._element).off(be),o.default.removeData(this._element,me),this._element=null,this._config=null},e._getConfig=function(t){return t=r({},Ee,o.default(this._element).data(),"object"==typeof t&&t?t:{}),d.typeCheckConfig("toast",t,this.constructor.DefaultType),t},e._setListeners=function(){var t=this;o.default(this._element).on(be,'[data-dismiss="toast"]',(function(){return t.hide()}))},e._close=function(){var t=this,e=function(){t._element.classList.add(_e),o.default(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove(ve),this._config.animation){var n=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},e._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(me);if(i||(i=new t(this,"object"==typeof e&&e),n.data(me,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e](this)}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"DefaultType",get:function(){return Te}},{key:"Default",get:function(){return Ee}}]),t}();o.default.fn.toast=we._jQueryInterface,o.default.fn.toast.Constructor=we,o.default.fn.toast.noConflict=function(){return o.default.fn.toast=pe,we._jQueryInterface},t.Alert=g,t.Button=E,t.Carousel=P,t.Collapse=V,t.Dropdown=lt,t.Modal=Ct,t.Popover=Jt,t.Scrollspy=se,t.Tab=ge,t.Toast=we,t.Tooltip=Wt,t.Util=d,Object.defineProperty(t,"__esModule",{value:!0})})); -//# sourceMappingURL=bootstrap.min.js.map \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/js/desktop.ini b/desarrollo/diseno/registro-cliente/js/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-cliente/js/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-cliente/js/jquery.js b/desarrollo/diseno/registro-cliente/js/jquery.js deleted file mode 100644 index b0614034..00000000 --- a/desarrollo/diseno/registro-cliente/js/jquery.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0(a||v.height())},_setFocus:function(){(b.st.focus?b.content.find(b.st.focus).eq(0):b.wrap).focus()},_onFocusIn:function(c){return c.target===b.wrap[0]||a.contains(b.wrap[0],c.target)?void 0:(b._setFocus(),!1)},_parseMarkup:function(b,c,d){var e;d.data&&(c=a.extend(d.data,c)),y(l,[b,c,d]),a.each(c,function(c,d){if(void 0===d||d===!1)return!0;if(e=c.split("_"),e.length>1){var f=b.find(p+"-"+e[0]);if(f.length>0){var g=e[1];"replaceWith"===g?f[0]!==d[0]&&f.replaceWith(d):"img"===g?f.is("img")?f.attr("src",d):f.replaceWith(a("").attr("src",d).attr("class",f.attr("class"))):f.attr(e[1],d)}}else b.find(p+"-"+c).html(d)})},_getScrollbarSize:function(){if(void 0===b.scrollbarSize){var a=document.createElement("div");a.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(a),b.scrollbarSize=a.offsetWidth-a.clientWidth,document.body.removeChild(a)}return b.scrollbarSize}},a.magnificPopup={instance:null,proto:t.prototype,modules:[],open:function(b,c){return A(),b=b?a.extend(!0,{},b):{},b.isObj=!0,b.index=c||0,this.instance.open(b)},close:function(){return a.magnificPopup.instance&&a.magnificPopup.instance.close()},registerModule:function(b,c){c.options&&(a.magnificPopup.defaults[b]=c.options),a.extend(this.proto,c.proto),this.modules.push(b)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("
");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); \ No newline at end of file diff --git a/desarrollo/diseno/registro-cliente/js/main.js b/desarrollo/diseno/registro-cliente/js/main.js deleted file mode 100644 index 9f372360..00000000 --- a/desarrollo/diseno/registro-cliente/js/main.js +++ /dev/null @@ -1,353 +0,0 @@ -// Open Sub Menu -$('.drp_btn').click(function(){ - $(this).siblings('.sub_menu').slideToggle(); -}) - -// Preloader JS - -function preloader_fade() { - $("#preloader").fadeOut('slow'); -} - -$(document).ready(function() { - window.setTimeout("preloader_fade();", 500); //call fade in .5 seconds -} -) - - -// All Slider Js - -$('#frmae_slider').owlCarousel({ - loop:true, - margin:10, - autoplay: true, - smartSpeed: 1500, - nav:false, - dots: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:1 - }, - 1000:{ - items:1 - } - } -}) - -$('#company_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - autoplay: true, - smartSpeed: 1500, - dots: true, - responsive:{ - 0:{ - items:2 - }, - 600:{ - items:3 - }, - 1000:{ - items:5 - } - } -}) - - -$('#testimonial_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - autoplay: true, - smartSpeed: 2500, - dots: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:1 - }, - 1000:{ - items:1 - } - } -}) - - -$('#screen_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - dots: true, - autoplay: true, - smartSpeed: 2500, - center: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:3 - }, - 1000:{ - items:5 - } - } -}) - - -// Number Count -window.addEventListener('scroll', function() { - var element = document.querySelector('#counter'); - var position = element.getBoundingClientRect(); - - // checking whether fully visible - if(position.top >= 0 && position.bottom <= window.innerHeight) { - $('.counter-value').each(function() { - var $this = $(this), - countTo = $this.attr('data-count'); - $({ - countNum: $this.text() - }).animate({ - countNum: countTo - }, - - { - - duration: 2000, - easing: 'swing', - step: function() { - $this.text(Math.floor(this.countNum)); - }, - complete: function() { - $this.text(this.countNum); - //alert('finished'); - } - - }); - }); - } - - if(position.top < window.innerHeight && position.bottom >= 0) { - //console.log('Element is partially visible in screen'); - }else{ - //console.log('Element is not visible'); - $('.counter-value').each(function() { - var $this = $(this), - countTo = 0; - $({ - countNum: $this.text() - }).animate({ - countNum: countTo - }, - - { - - duration: 100, - easing: 'swing', - step: function() { - $this.text(Math.floor(this.countNum)); - }, - complete: function() { - $this.text(this.countNum); - //alert('finished'); - } - - }); - }); - } -}); - - - -// --------Magnify-popup - -$(function() { - $('.popup-youtube').magnificPopup({ - disableOn: 700, - type: 'iframe', - mainClass: 'mfp-fade', - removalDelay: 160, - preloader: false, - fixedContentPos: false - }); -}); - - -// Pricing Section Year Month Jquery -$(document).ready(function () { - - $(".tog_block").click(function () { - $(".tog_btn").toggleClass('month_active'); - $('.month').toggleClass('active'); - $('.years').toggleClass('active'); - - $('.monthly_plan').toggleClass('active'); - $('.yearly_plan').toggleClass('active'); - - }) - - }); - - $(document).ready(function () { - // Add minus icon for collapse element which is open by default - $(".collapse.show").each(function () { - $(this) - .prev(".card-header") - .find(".icon_faq") - .addClass("icofont-minus") - .removeClass("icofont-plus"); - }); - - - // Toggle plus minus icon on show hide of collapse element - $(".collapse").on("show.bs.collapse", function () { - $(this).prev(".card-header").find(".icon_faq").removeClass("icofont-plus").addClass("icofont-minus"); - }) - .on("hide.bs.collapse", function () { - $(this).prev(".card-header").find(".icon_faq").removeClass("icofont-minus").addClass("icofont-plus"); - }); - - $(".collapse").on("show.bs.collapse", function () { - $(this).prev(".card-header").children('h2').children('.btn').addClass("active"); - }) - .on("hide.bs.collapse", function () { - $(this).prev(".card-header").children('h2').children('.btn').removeClass("active"); - }); - }); - - -// Download Section Hover Jquery -window.addEventListener('scroll', function() { - var element = document.querySelector('.free_text'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } -}); - -$(window).on('resize', function() { - if ($(window).width()<768) { - - window.addEventListener('scroll', function() { - var element = document.querySelector('.mobile_mockup'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } - }); - - } - else { - - window.addEventListener('scroll', function() { - var element = document.querySelector('.free_text'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } - }); - - } -}); - - -// Scrool-top -$(document).ready(function() { - var toTop = $('.go_top'); - toTop.on('click', function() { - $('html, body').animate({scrollTop: $('html, body').offset().top,}, 400); - }); - - $(window).scroll(function() { - // declare variable - var topPos = $(this).scrollTop(); - - // if user scrolls down - show scroll to top button - if (topPos > 750) { - $(toTop).css("opacity", "1"); - - } else { - $(toTop).css("opacity", "0"); - } - - }); - -}); - -// Fix Header Js -$(window).scroll(function(){ - if ($(window).scrollTop() >= 250) { - $('header').addClass('fix_style'); - } - else { - $('header').removeClass('fix_style'); - } - if ($(window).scrollTop() >= 260) { - $('header').addClass('fixed'); - } - else { - $('header').removeClass('fixed'); - } -}); - - - - -//YOUTUBE VIDEO -$('.play-button').click(function(e){ - var iframeEl = $(''),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1, -animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('
'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['',''],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("
").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a(' -
- -
-
-
image
-
-

Have any question?

-

If you have any question about our product, service, payment or company, Visit our FAQs page.

-
- READ FAQ - -
-
- - - - - - -
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/css/aos.css b/desarrollo/diseno/registro-comercio/css/aos.css deleted file mode 100644 index d7925a58..00000000 --- a/desarrollo/diseno/registro-comercio/css/aos.css +++ /dev/null @@ -1,1152 +0,0 @@ -[data-aos][data-aos][data-aos-duration="50"], -body[data-aos-duration="50"] [data-aos] { - transition-duration: 50ms -} - -[data-aos][data-aos][data-aos-delay="50"], -body[data-aos-delay="50"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="50"].aos-animate, -body[data-aos-delay="50"] [data-aos].aos-animate { - transition-delay: 50ms -} - -[data-aos][data-aos][data-aos-duration="100"], -body[data-aos-duration="100"] [data-aos] { - transition-duration: .1s -} - -[data-aos][data-aos][data-aos-delay="100"], -body[data-aos-delay="100"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="100"].aos-animate, -body[data-aos-delay="100"] [data-aos].aos-animate { - transition-delay: .1s -} - -[data-aos][data-aos][data-aos-duration="150"], -body[data-aos-duration="150"] [data-aos] { - transition-duration: .15s -} - -[data-aos][data-aos][data-aos-delay="150"], -body[data-aos-delay="150"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="150"].aos-animate, -body[data-aos-delay="150"] [data-aos].aos-animate { - transition-delay: .15s -} - -[data-aos][data-aos][data-aos-duration="200"], -body[data-aos-duration="200"] [data-aos] { - transition-duration: .2s -} - -[data-aos][data-aos][data-aos-delay="200"], -body[data-aos-delay="200"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="200"].aos-animate, -body[data-aos-delay="200"] [data-aos].aos-animate { - transition-delay: .2s -} - -[data-aos][data-aos][data-aos-duration="250"], -body[data-aos-duration="250"] [data-aos] { - transition-duration: .25s -} - -[data-aos][data-aos][data-aos-delay="250"], -body[data-aos-delay="250"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="250"].aos-animate, -body[data-aos-delay="250"] [data-aos].aos-animate { - transition-delay: .25s -} - -[data-aos][data-aos][data-aos-duration="300"], -body[data-aos-duration="300"] [data-aos] { - transition-duration: .3s -} - -[data-aos][data-aos][data-aos-delay="300"], -body[data-aos-delay="300"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="300"].aos-animate, -body[data-aos-delay="300"] [data-aos].aos-animate { - transition-delay: .3s -} - -[data-aos][data-aos][data-aos-duration="350"], -body[data-aos-duration="350"] [data-aos] { - transition-duration: .35s -} - -[data-aos][data-aos][data-aos-delay="350"], -body[data-aos-delay="350"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="350"].aos-animate, -body[data-aos-delay="350"] [data-aos].aos-animate { - transition-delay: .35s -} - -[data-aos][data-aos][data-aos-duration="400"], -body[data-aos-duration="400"] [data-aos] { - transition-duration: .4s -} - -[data-aos][data-aos][data-aos-delay="400"], -body[data-aos-delay="400"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="400"].aos-animate, -body[data-aos-delay="400"] [data-aos].aos-animate { - transition-delay: .4s -} - -[data-aos][data-aos][data-aos-duration="450"], -body[data-aos-duration="450"] [data-aos] { - transition-duration: .45s -} - -[data-aos][data-aos][data-aos-delay="450"], -body[data-aos-delay="450"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="450"].aos-animate, -body[data-aos-delay="450"] [data-aos].aos-animate { - transition-delay: .45s -} - -[data-aos][data-aos][data-aos-duration="500"], -body[data-aos-duration="500"] [data-aos] { - transition-duration: .5s -} - -[data-aos][data-aos][data-aos-delay="500"], -body[data-aos-delay="500"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="500"].aos-animate, -body[data-aos-delay="500"] [data-aos].aos-animate { - transition-delay: .5s -} - -[data-aos][data-aos][data-aos-duration="550"], -body[data-aos-duration="550"] [data-aos] { - transition-duration: .55s -} - -[data-aos][data-aos][data-aos-delay="550"], -body[data-aos-delay="550"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="550"].aos-animate, -body[data-aos-delay="550"] [data-aos].aos-animate { - transition-delay: .55s -} - -[data-aos][data-aos][data-aos-duration="600"], -body[data-aos-duration="600"] [data-aos] { - transition-duration: .6s -} - -[data-aos][data-aos][data-aos-delay="600"], -body[data-aos-delay="600"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="600"].aos-animate, -body[data-aos-delay="600"] [data-aos].aos-animate { - transition-delay: .6s -} - -[data-aos][data-aos][data-aos-duration="650"], -body[data-aos-duration="650"] [data-aos] { - transition-duration: .65s -} - -[data-aos][data-aos][data-aos-delay="650"], -body[data-aos-delay="650"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="650"].aos-animate, -body[data-aos-delay="650"] [data-aos].aos-animate { - transition-delay: .65s -} - -[data-aos][data-aos][data-aos-duration="700"], -body[data-aos-duration="700"] [data-aos] { - transition-duration: .7s -} - -[data-aos][data-aos][data-aos-delay="700"], -body[data-aos-delay="700"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="700"].aos-animate, -body[data-aos-delay="700"] [data-aos].aos-animate { - transition-delay: .7s -} - -[data-aos][data-aos][data-aos-duration="750"], -body[data-aos-duration="750"] [data-aos] { - transition-duration: .75s -} - -[data-aos][data-aos][data-aos-delay="750"], -body[data-aos-delay="750"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="750"].aos-animate, -body[data-aos-delay="750"] [data-aos].aos-animate { - transition-delay: .75s -} - -[data-aos][data-aos][data-aos-duration="800"], -body[data-aos-duration="800"] [data-aos] { - transition-duration: .8s -} - -[data-aos][data-aos][data-aos-delay="800"], -body[data-aos-delay="800"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="800"].aos-animate, -body[data-aos-delay="800"] [data-aos].aos-animate { - transition-delay: .8s -} - -[data-aos][data-aos][data-aos-duration="850"], -body[data-aos-duration="850"] [data-aos] { - transition-duration: .85s -} - -[data-aos][data-aos][data-aos-delay="850"], -body[data-aos-delay="850"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="850"].aos-animate, -body[data-aos-delay="850"] [data-aos].aos-animate { - transition-delay: .85s -} - -[data-aos][data-aos][data-aos-duration="900"], -body[data-aos-duration="900"] [data-aos] { - transition-duration: .9s -} - -[data-aos][data-aos][data-aos-delay="900"], -body[data-aos-delay="900"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="900"].aos-animate, -body[data-aos-delay="900"] [data-aos].aos-animate { - transition-delay: .9s -} - -[data-aos][data-aos][data-aos-duration="950"], -body[data-aos-duration="950"] [data-aos] { - transition-duration: .95s -} - -[data-aos][data-aos][data-aos-delay="950"], -body[data-aos-delay="950"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="950"].aos-animate, -body[data-aos-delay="950"] [data-aos].aos-animate { - transition-delay: .95s -} - -[data-aos][data-aos][data-aos-duration="1000"], -body[data-aos-duration="1000"] [data-aos] { - transition-duration: 1s -} - -[data-aos][data-aos][data-aos-delay="1000"], -body[data-aos-delay="1000"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1000"].aos-animate, -body[data-aos-delay="1000"] [data-aos].aos-animate { - transition-delay: 1s -} - -[data-aos][data-aos][data-aos-duration="1050"], -body[data-aos-duration="1050"] [data-aos] { - transition-duration: 1.05s -} - -[data-aos][data-aos][data-aos-delay="1050"], -body[data-aos-delay="1050"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1050"].aos-animate, -body[data-aos-delay="1050"] [data-aos].aos-animate { - transition-delay: 1.05s -} - -[data-aos][data-aos][data-aos-duration="1100"], -body[data-aos-duration="1100"] [data-aos] { - transition-duration: 1.1s -} - -[data-aos][data-aos][data-aos-delay="1100"], -body[data-aos-delay="1100"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1100"].aos-animate, -body[data-aos-delay="1100"] [data-aos].aos-animate { - transition-delay: 1.1s -} - -[data-aos][data-aos][data-aos-duration="1150"], -body[data-aos-duration="1150"] [data-aos] { - transition-duration: 1.15s -} - -[data-aos][data-aos][data-aos-delay="1150"], -body[data-aos-delay="1150"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1150"].aos-animate, -body[data-aos-delay="1150"] [data-aos].aos-animate { - transition-delay: 1.15s -} - -[data-aos][data-aos][data-aos-duration="1200"], -body[data-aos-duration="1200"] [data-aos] { - transition-duration: 1.2s -} - -[data-aos][data-aos][data-aos-delay="1200"], -body[data-aos-delay="1200"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1200"].aos-animate, -body[data-aos-delay="1200"] [data-aos].aos-animate { - transition-delay: 1.2s -} - -[data-aos][data-aos][data-aos-duration="1250"], -body[data-aos-duration="1250"] [data-aos] { - transition-duration: 1.25s -} - -[data-aos][data-aos][data-aos-delay="1250"], -body[data-aos-delay="1250"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1250"].aos-animate, -body[data-aos-delay="1250"] [data-aos].aos-animate { - transition-delay: 1.25s -} - -[data-aos][data-aos][data-aos-duration="1300"], -body[data-aos-duration="1300"] [data-aos] { - transition-duration: 1.3s -} - -[data-aos][data-aos][data-aos-delay="1300"], -body[data-aos-delay="1300"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1300"].aos-animate, -body[data-aos-delay="1300"] [data-aos].aos-animate { - transition-delay: 1.3s -} - -[data-aos][data-aos][data-aos-duration="1350"], -body[data-aos-duration="1350"] [data-aos] { - transition-duration: 1.35s -} - -[data-aos][data-aos][data-aos-delay="1350"], -body[data-aos-delay="1350"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1350"].aos-animate, -body[data-aos-delay="1350"] [data-aos].aos-animate { - transition-delay: 1.35s -} - -[data-aos][data-aos][data-aos-duration="1400"], -body[data-aos-duration="1400"] [data-aos] { - transition-duration: 1.4s -} - -[data-aos][data-aos][data-aos-delay="1400"], -body[data-aos-delay="1400"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1400"].aos-animate, -body[data-aos-delay="1400"] [data-aos].aos-animate { - transition-delay: 1.4s -} - -[data-aos][data-aos][data-aos-duration="1450"], -body[data-aos-duration="1450"] [data-aos] { - transition-duration: 1.45s -} - -[data-aos][data-aos][data-aos-delay="1450"], -body[data-aos-delay="1450"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1450"].aos-animate, -body[data-aos-delay="1450"] [data-aos].aos-animate { - transition-delay: 1.45s -} - -[data-aos][data-aos][data-aos-duration="1500"], -body[data-aos-duration="1500"] [data-aos] { - transition-duration: 1.5s -} - -[data-aos][data-aos][data-aos-delay="1500"], -body[data-aos-delay="1500"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1500"].aos-animate, -body[data-aos-delay="1500"] [data-aos].aos-animate { - transition-delay: 1.5s -} - -[data-aos][data-aos][data-aos-duration="1550"], -body[data-aos-duration="1550"] [data-aos] { - transition-duration: 1.55s -} - -[data-aos][data-aos][data-aos-delay="1550"], -body[data-aos-delay="1550"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1550"].aos-animate, -body[data-aos-delay="1550"] [data-aos].aos-animate { - transition-delay: 1.55s -} - -[data-aos][data-aos][data-aos-duration="1600"], -body[data-aos-duration="1600"] [data-aos] { - transition-duration: 1.6s -} - -[data-aos][data-aos][data-aos-delay="1600"], -body[data-aos-delay="1600"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1600"].aos-animate, -body[data-aos-delay="1600"] [data-aos].aos-animate { - transition-delay: 1.6s -} - -[data-aos][data-aos][data-aos-duration="1650"], -body[data-aos-duration="1650"] [data-aos] { - transition-duration: 1.65s -} - -[data-aos][data-aos][data-aos-delay="1650"], -body[data-aos-delay="1650"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1650"].aos-animate, -body[data-aos-delay="1650"] [data-aos].aos-animate { - transition-delay: 1.65s -} - -[data-aos][data-aos][data-aos-duration="1700"], -body[data-aos-duration="1700"] [data-aos] { - transition-duration: 1.7s -} - -[data-aos][data-aos][data-aos-delay="1700"], -body[data-aos-delay="1700"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1700"].aos-animate, -body[data-aos-delay="1700"] [data-aos].aos-animate { - transition-delay: 1.7s -} - -[data-aos][data-aos][data-aos-duration="1750"], -body[data-aos-duration="1750"] [data-aos] { - transition-duration: 1.75s -} - -[data-aos][data-aos][data-aos-delay="1750"], -body[data-aos-delay="1750"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1750"].aos-animate, -body[data-aos-delay="1750"] [data-aos].aos-animate { - transition-delay: 1.75s -} - -[data-aos][data-aos][data-aos-duration="1800"], -body[data-aos-duration="1800"] [data-aos] { - transition-duration: 1.8s -} - -[data-aos][data-aos][data-aos-delay="1800"], -body[data-aos-delay="1800"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1800"].aos-animate, -body[data-aos-delay="1800"] [data-aos].aos-animate { - transition-delay: 1.8s -} - -[data-aos][data-aos][data-aos-duration="1850"], -body[data-aos-duration="1850"] [data-aos] { - transition-duration: 1.85s -} - -[data-aos][data-aos][data-aos-delay="1850"], -body[data-aos-delay="1850"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1850"].aos-animate, -body[data-aos-delay="1850"] [data-aos].aos-animate { - transition-delay: 1.85s -} - -[data-aos][data-aos][data-aos-duration="1900"], -body[data-aos-duration="1900"] [data-aos] { - transition-duration: 1.9s -} - -[data-aos][data-aos][data-aos-delay="1900"], -body[data-aos-delay="1900"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1900"].aos-animate, -body[data-aos-delay="1900"] [data-aos].aos-animate { - transition-delay: 1.9s -} - -[data-aos][data-aos][data-aos-duration="1950"], -body[data-aos-duration="1950"] [data-aos] { - transition-duration: 1.95s -} - -[data-aos][data-aos][data-aos-delay="1950"], -body[data-aos-delay="1950"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="1950"].aos-animate, -body[data-aos-delay="1950"] [data-aos].aos-animate { - transition-delay: 1.95s -} - -[data-aos][data-aos][data-aos-duration="2000"], -body[data-aos-duration="2000"] [data-aos] { - transition-duration: 2s -} - -[data-aos][data-aos][data-aos-delay="2000"], -body[data-aos-delay="2000"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2000"].aos-animate, -body[data-aos-delay="2000"] [data-aos].aos-animate { - transition-delay: 2s -} - -[data-aos][data-aos][data-aos-duration="2050"], -body[data-aos-duration="2050"] [data-aos] { - transition-duration: 2.05s -} - -[data-aos][data-aos][data-aos-delay="2050"], -body[data-aos-delay="2050"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2050"].aos-animate, -body[data-aos-delay="2050"] [data-aos].aos-animate { - transition-delay: 2.05s -} - -[data-aos][data-aos][data-aos-duration="2100"], -body[data-aos-duration="2100"] [data-aos] { - transition-duration: 2.1s -} - -[data-aos][data-aos][data-aos-delay="2100"], -body[data-aos-delay="2100"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2100"].aos-animate, -body[data-aos-delay="2100"] [data-aos].aos-animate { - transition-delay: 2.1s -} - -[data-aos][data-aos][data-aos-duration="2150"], -body[data-aos-duration="2150"] [data-aos] { - transition-duration: 2.15s -} - -[data-aos][data-aos][data-aos-delay="2150"], -body[data-aos-delay="2150"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2150"].aos-animate, -body[data-aos-delay="2150"] [data-aos].aos-animate { - transition-delay: 2.15s -} - -[data-aos][data-aos][data-aos-duration="2200"], -body[data-aos-duration="2200"] [data-aos] { - transition-duration: 2.2s -} - -[data-aos][data-aos][data-aos-delay="2200"], -body[data-aos-delay="2200"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2200"].aos-animate, -body[data-aos-delay="2200"] [data-aos].aos-animate { - transition-delay: 2.2s -} - -[data-aos][data-aos][data-aos-duration="2250"], -body[data-aos-duration="2250"] [data-aos] { - transition-duration: 2.25s -} - -[data-aos][data-aos][data-aos-delay="2250"], -body[data-aos-delay="2250"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2250"].aos-animate, -body[data-aos-delay="2250"] [data-aos].aos-animate { - transition-delay: 2.25s -} - -[data-aos][data-aos][data-aos-duration="2300"], -body[data-aos-duration="2300"] [data-aos] { - transition-duration: 2.3s -} - -[data-aos][data-aos][data-aos-delay="2300"], -body[data-aos-delay="2300"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2300"].aos-animate, -body[data-aos-delay="2300"] [data-aos].aos-animate { - transition-delay: 2.3s -} - -[data-aos][data-aos][data-aos-duration="2350"], -body[data-aos-duration="2350"] [data-aos] { - transition-duration: 2.35s -} - -[data-aos][data-aos][data-aos-delay="2350"], -body[data-aos-delay="2350"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2350"].aos-animate, -body[data-aos-delay="2350"] [data-aos].aos-animate { - transition-delay: 2.35s -} - -[data-aos][data-aos][data-aos-duration="2400"], -body[data-aos-duration="2400"] [data-aos] { - transition-duration: 2.4s -} - -[data-aos][data-aos][data-aos-delay="2400"], -body[data-aos-delay="2400"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2400"].aos-animate, -body[data-aos-delay="2400"] [data-aos].aos-animate { - transition-delay: 2.4s -} - -[data-aos][data-aos][data-aos-duration="2450"], -body[data-aos-duration="2450"] [data-aos] { - transition-duration: 2.45s -} - -[data-aos][data-aos][data-aos-delay="2450"], -body[data-aos-delay="2450"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2450"].aos-animate, -body[data-aos-delay="2450"] [data-aos].aos-animate { - transition-delay: 2.45s -} - -[data-aos][data-aos][data-aos-duration="2500"], -body[data-aos-duration="2500"] [data-aos] { - transition-duration: 2.5s -} - -[data-aos][data-aos][data-aos-delay="2500"], -body[data-aos-delay="2500"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2500"].aos-animate, -body[data-aos-delay="2500"] [data-aos].aos-animate { - transition-delay: 2.5s -} - -[data-aos][data-aos][data-aos-duration="2550"], -body[data-aos-duration="2550"] [data-aos] { - transition-duration: 2.55s -} - -[data-aos][data-aos][data-aos-delay="2550"], -body[data-aos-delay="2550"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2550"].aos-animate, -body[data-aos-delay="2550"] [data-aos].aos-animate { - transition-delay: 2.55s -} - -[data-aos][data-aos][data-aos-duration="2600"], -body[data-aos-duration="2600"] [data-aos] { - transition-duration: 2.6s -} - -[data-aos][data-aos][data-aos-delay="2600"], -body[data-aos-delay="2600"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2600"].aos-animate, -body[data-aos-delay="2600"] [data-aos].aos-animate { - transition-delay: 2.6s -} - -[data-aos][data-aos][data-aos-duration="2650"], -body[data-aos-duration="2650"] [data-aos] { - transition-duration: 2.65s -} - -[data-aos][data-aos][data-aos-delay="2650"], -body[data-aos-delay="2650"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2650"].aos-animate, -body[data-aos-delay="2650"] [data-aos].aos-animate { - transition-delay: 2.65s -} - -[data-aos][data-aos][data-aos-duration="2700"], -body[data-aos-duration="2700"] [data-aos] { - transition-duration: 2.7s -} - -[data-aos][data-aos][data-aos-delay="2700"], -body[data-aos-delay="2700"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2700"].aos-animate, -body[data-aos-delay="2700"] [data-aos].aos-animate { - transition-delay: 2.7s -} - -[data-aos][data-aos][data-aos-duration="2750"], -body[data-aos-duration="2750"] [data-aos] { - transition-duration: 2.75s -} - -[data-aos][data-aos][data-aos-delay="2750"], -body[data-aos-delay="2750"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2750"].aos-animate, -body[data-aos-delay="2750"] [data-aos].aos-animate { - transition-delay: 2.75s -} - -[data-aos][data-aos][data-aos-duration="2800"], -body[data-aos-duration="2800"] [data-aos] { - transition-duration: 2.8s -} - -[data-aos][data-aos][data-aos-delay="2800"], -body[data-aos-delay="2800"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2800"].aos-animate, -body[data-aos-delay="2800"] [data-aos].aos-animate { - transition-delay: 2.8s -} - -[data-aos][data-aos][data-aos-duration="2850"], -body[data-aos-duration="2850"] [data-aos] { - transition-duration: 2.85s -} - -[data-aos][data-aos][data-aos-delay="2850"], -body[data-aos-delay="2850"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2850"].aos-animate, -body[data-aos-delay="2850"] [data-aos].aos-animate { - transition-delay: 2.85s -} - -[data-aos][data-aos][data-aos-duration="2900"], -body[data-aos-duration="2900"] [data-aos] { - transition-duration: 2.9s -} - -[data-aos][data-aos][data-aos-delay="2900"], -body[data-aos-delay="2900"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2900"].aos-animate, -body[data-aos-delay="2900"] [data-aos].aos-animate { - transition-delay: 2.9s -} - -[data-aos][data-aos][data-aos-duration="2950"], -body[data-aos-duration="2950"] [data-aos] { - transition-duration: 2.95s -} - -[data-aos][data-aos][data-aos-delay="2950"], -body[data-aos-delay="2950"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="2950"].aos-animate, -body[data-aos-delay="2950"] [data-aos].aos-animate { - transition-delay: 2.95s -} - -[data-aos][data-aos][data-aos-duration="3000"], -body[data-aos-duration="3000"] [data-aos] { - transition-duration: 3s -} - -[data-aos][data-aos][data-aos-delay="3000"], -body[data-aos-delay="3000"] [data-aos] { - transition-delay: 0 -} - -[data-aos][data-aos][data-aos-delay="3000"].aos-animate, -body[data-aos-delay="3000"] [data-aos].aos-animate { - transition-delay: 3s -} - -[data-aos][data-aos][data-aos-easing=linear], -body[data-aos-easing=linear] [data-aos] { - transition-timing-function: cubic-bezier(.25, .25, .75, .75) -} - -[data-aos][data-aos][data-aos-easing=ease], -body[data-aos-easing=ease] [data-aos] { - transition-timing-function: ease -} - -[data-aos][data-aos][data-aos-easing=ease-in], -body[data-aos-easing=ease-in] [data-aos] { - transition-timing-function: ease-in -} - -[data-aos][data-aos][data-aos-easing=ease-out], -body[data-aos-easing=ease-out] [data-aos] { - transition-timing-function: ease-out -} - -[data-aos][data-aos][data-aos-easing=ease-in-out], -body[data-aos-easing=ease-in-out] [data-aos] { - transition-timing-function: ease-in-out -} - -[data-aos][data-aos][data-aos-easing=ease-in-back], -body[data-aos-easing=ease-in-back] [data-aos] { - transition-timing-function: cubic-bezier(.6, -.28, .735, .045) -} - -[data-aos][data-aos][data-aos-easing=ease-out-back], -body[data-aos-easing=ease-out-back] [data-aos] { - transition-timing-function: cubic-bezier(.175, .885, .32, 1.275) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-back], -body[data-aos-easing=ease-in-out-back] [data-aos] { - transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55) -} - -[data-aos][data-aos][data-aos-easing=ease-in-sine], -body[data-aos-easing=ease-in-sine] [data-aos] { - transition-timing-function: cubic-bezier(.47, 0, .745, .715) -} - -[data-aos][data-aos][data-aos-easing=ease-out-sine], -body[data-aos-easing=ease-out-sine] [data-aos] { - transition-timing-function: cubic-bezier(.39, .575, .565, 1) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-sine], -body[data-aos-easing=ease-in-out-sine] [data-aos] { - transition-timing-function: cubic-bezier(.445, .05, .55, .95) -} - -[data-aos][data-aos][data-aos-easing=ease-in-quad], -body[data-aos-easing=ease-in-quad] [data-aos] { - transition-timing-function: cubic-bezier(.55, .085, .68, .53) -} - -[data-aos][data-aos][data-aos-easing=ease-out-quad], -body[data-aos-easing=ease-out-quad] [data-aos] { - transition-timing-function: cubic-bezier(.25, .46, .45, .94) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-quad], -body[data-aos-easing=ease-in-out-quad] [data-aos] { - transition-timing-function: cubic-bezier(.455, .03, .515, .955) -} - -[data-aos][data-aos][data-aos-easing=ease-in-cubic], -body[data-aos-easing=ease-in-cubic] [data-aos] { - transition-timing-function: cubic-bezier(.55, .085, .68, .53) -} - -[data-aos][data-aos][data-aos-easing=ease-out-cubic], -body[data-aos-easing=ease-out-cubic] [data-aos] { - transition-timing-function: cubic-bezier(.25, .46, .45, .94) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], -body[data-aos-easing=ease-in-out-cubic] [data-aos] { - transition-timing-function: cubic-bezier(.455, .03, .515, .955) -} - -[data-aos][data-aos][data-aos-easing=ease-in-quart], -body[data-aos-easing=ease-in-quart] [data-aos] { - transition-timing-function: cubic-bezier(.55, .085, .68, .53) -} - -[data-aos][data-aos][data-aos-easing=ease-out-quart], -body[data-aos-easing=ease-out-quart] [data-aos] { - transition-timing-function: cubic-bezier(.25, .46, .45, .94) -} - -[data-aos][data-aos][data-aos-easing=ease-in-out-quart], -body[data-aos-easing=ease-in-out-quart] [data-aos] { - transition-timing-function: cubic-bezier(.455, .03, .515, .955) -} - -[data-aos^=fade][data-aos^=fade] { - opacity: 0; - transition-property: opacity, transform -} - -[data-aos^=fade][data-aos^=fade].aos-animate { - opacity: 1; - transform: translateZ(0) -} - -[data-aos=fade-up] { - transform: translate3d(0, 100px, 0) -} - -[data-aos=fade-down] { - transform: translate3d(0, -100px, 0) -} - -[data-aos=fade-right] { - transform: translate3d(-100px, 0, 0) -} - -[data-aos=fade-left] { - transform: translate3d(100px, 0, 0) -} - -[data-aos=fade-up-right] { - transform: translate3d(-100px, 100px, 0) -} - -[data-aos=fade-up-left] { - transform: translate3d(100px, 100px, 0) -} - -[data-aos=fade-down-right] { - transform: translate3d(-100px, -100px, 0) -} - -[data-aos=fade-down-left] { - transform: translate3d(100px, -100px, 0) -} - -[data-aos^=zoom][data-aos^=zoom] { - opacity: 0; - transition-property: opacity, transform -} - -[data-aos^=zoom][data-aos^=zoom].aos-animate { - opacity: 1; - transform: translateZ(0) scale(1) -} - -[data-aos=zoom-in] { - transform: scale(.6) -} - -[data-aos=zoom-in-up] { - transform: translate3d(0, 100px, 0) scale(.6) -} - -[data-aos=zoom-in-down] { - transform: translate3d(0, -100px, 0) scale(.6) -} - -[data-aos=zoom-in-right] { - transform: translate3d(-100px, 0, 0) scale(.6) -} - -[data-aos=zoom-in-left] { - transform: translate3d(100px, 0, 0) scale(.6) -} - -[data-aos=zoom-out] { - transform: scale(1.2) -} - -[data-aos=zoom-out-up] { - transform: translate3d(0, 100px, 0) scale(1.2) -} - -[data-aos=zoom-out-down] { - transform: translate3d(0, -100px, 0) scale(1.2) -} - -[data-aos=zoom-out-right] { - transform: translate3d(-100px, 0, 0) scale(1.2) -} - -[data-aos=zoom-out-left] { - transform: translate3d(100px, 0, 0) scale(1.2) -} - -[data-aos^=slide][data-aos^=slide] { - transition-property: transform -} - -[data-aos^=slide][data-aos^=slide].aos-animate { - transform: translateZ(0) -} - -[data-aos=slide-up] { - transform: translate3d(0, 100%, 0) -} - -[data-aos=slide-down] { - transform: translate3d(0, -100%, 0) -} - -[data-aos=slide-right] { - transform: translate3d(-100%, 0, 0) -} - -[data-aos=slide-left] { - transform: translate3d(100%, 0, 0) -} - -[data-aos^=flip][data-aos^=flip] { - backface-visibility: hidden; - transition-property: transform -} - -[data-aos=flip-left] { - transform: perspective(2500px) rotateY(-100deg) -} - -[data-aos=flip-left].aos-animate { - transform: perspective(2500px) rotateY(0) -} - -[data-aos=flip-right] { - transform: perspective(2500px) rotateY(100deg) -} - -[data-aos=flip-right].aos-animate { - transform: perspective(2500px) rotateY(0) -} - -[data-aos=flip-up] { - transform: perspective(2500px) rotateX(-100deg) -} - -[data-aos=flip-up].aos-animate { - transform: perspective(2500px) rotateX(0) -} - -[data-aos=flip-down] { - transform: perspective(2500px) rotateX(100deg) -} - -[data-aos=flip-down].aos-animate { - transform: perspective(2500px) rotateX(0) -} \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/css/bootstrap.min.css b/desarrollo/diseno/registro-comercio/css/bootstrap.min.css deleted file mode 100644 index bd415a3e..00000000 --- a/desarrollo/diseno/registro-comercio/css/bootstrap.min.css +++ /dev/null @@ -1,11509 +0,0 @@ -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace -} - -*, -::after, -::before { - box-sizing: border-box -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: transparent -} - -article, -aside, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section { - display: block -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff -} - -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: .5rem -} - -p { - margin-top: 0; - margin-bottom: 1rem -} - -abbr[data-original-title], -abbr[title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - -webkit-text-decoration-skip-ink: none; - text-decoration-skip-ink: none -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit -} - -dl, -ol, -ul { - margin-top: 0; - margin-bottom: 1rem -} - -ol ol, -ol ul, -ul ol, -ul ul { - margin-bottom: 0 -} - -dt { - font-weight: 700 -} - -dd { - margin-bottom: .5rem; - margin-left: 0 -} - -blockquote { - margin: 0 0 1rem -} - -b, -strong { - font-weight: bolder -} - -small { - font-size: 80% -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline -} - -sub { - bottom: -.25em -} - -sup { - top: -.5em -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent -} - -a:hover { - color: #0056b3; - text-decoration: underline -} - -a:not([href]):not([class]) { - color: inherit; - text-decoration: none -} - -a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none -} - -code, -kbd, -pre, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 1em -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar -} - -figure { - margin: 0 0 1rem -} - -img { - vertical-align: middle; - border-style: none -} - -svg { - overflow: hidden; - vertical-align: middle -} - -table { - border-collapse: collapse -} - -caption { - padding-top: .75rem; - padding-bottom: .75rem; - color: #6c757d; - text-align: left; - caption-side: bottom -} - -th { - text-align: inherit; - text-align: -webkit-match-parent -} - -label { - display: inline-block; - margin-bottom: .5rem -} - -button { - border-radius: 0 -} - -button:focus:not(:focus-visible) { - outline: 0 -} - -button, -input, -optgroup, -select, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit -} - -button, -input { - overflow: visible -} - -button, -select { - text-transform: none -} - -[role=button] { - cursor: pointer -} - -select { - word-wrap: normal -} - -[type=button], -[type=reset], -[type=submit], -button { - -webkit-appearance: button -} - -[type=button]:not(:disabled), -[type=reset]:not(:disabled), -[type=submit]:not(:disabled), -button:not(:disabled) { - cursor: pointer -} - -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - padding: 0; - border-style: none -} - -input[type=checkbox], -input[type=radio] { - box-sizing: border-box; - padding: 0 -} - -textarea { - overflow: auto; - resize: vertical -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0 -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal -} - -progress { - vertical-align: baseline -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto -} - -[type=search] { - outline-offset: -2px; - -webkit-appearance: none -} - -[type=search]::-webkit-search-decoration { - -webkit-appearance: none -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button -} - -output { - display: inline-block -} - -summary { - display: list-item; - cursor: pointer -} - -template { - display: none -} - -[hidden] { - display: none !important -} - -.h1, -.h2, -.h3, -.h4, -.h5, -.h6, -h1, -h2, -h3, -h4, -h5, -h6 { - margin-bottom: .5rem; - font-weight: 500; - line-height: 1.2 -} - -.h1, -h1 { - font-size: 2.5rem -} - -.h2, -h2 { - font-size: 2rem -} - -.h3, -h3 { - font-size: 1.75rem -} - -.h4, -h4 { - font-size: 1.5rem -} - -.h5, -h5 { - font-size: 1.25rem -} - -.h6, -h6 { - font-size: 1rem -} - -.lead { - font-size: 1.25rem; - font-weight: 300 -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2 -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2 -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2 -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2 -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, .1) -} - -.small, -small { - font-size: 80%; - font-weight: 400 -} - -.mark, -mark { - padding: .2em; - background-color: #fcf8e3 -} - -.list-unstyled { - padding-left: 0; - list-style: none -} - -.list-inline { - padding-left: 0; - list-style: none -} - -.list-inline-item { - display: inline-block -} - -.list-inline-item:not(:last-child) { - margin-right: .5rem -} - -.initialism { - font-size: 90%; - text-transform: uppercase -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d -} - -.blockquote-footer::before { - content: "\2014\00A0" -} - -.img-fluid { - max-width: 100%; - height: auto -} - -.img-thumbnail { - padding: .25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: .25rem; - max-width: 100%; - height: auto -} - -.figure { - display: inline-block -} - -.figure-img { - margin-bottom: .5rem; - line-height: 1 -} - -.figure-caption { - font-size: 90%; - color: #6c757d -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word -} - -a>code { - color: inherit -} - -kbd { - padding: .2rem .4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: .2rem -} - -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700 -} - -pre { - display: block; - font-size: 87.5%; - color: #212529 -} - -pre code { - font-size: inherit; - color: inherit; - word-break: normal -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll -} - -.container, -.container-fluid, -.container-lg, -.container-md, -.container-sm, -.container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto -} - -@media (min-width:576px) { - - .container, - .container-sm { - max-width: 540px - } -} - -@media (min-width:768px) { - - .container, - .container-md, - .container-sm { - max-width: 720px - } -} - -@media (min-width:992px) { - - .container, - .container-lg, - .container-md, - .container-sm { - max-width: 960px - } -} - -@media (min-width:1200px) { - - .container, - .container-lg, - .container-md, - .container-sm, - .container-xl { - max-width: 1140px - } -} - -.row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px -} - -.no-gutters { - margin-right: 0; - margin-left: 0 -} - -.no-gutters>.col, -.no-gutters>[class*=col-] { - padding-right: 0; - padding-left: 0 -} - -.col, -.col-1, -.col-10, -.col-11, -.col-12, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-auto, -.col-lg, -.col-lg-1, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-auto, -.col-md, -.col-md-1, -.col-md-10, -.col-md-11, -.col-md-12, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-auto, -.col-sm, -.col-sm-1, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-auto, -.col-xl, -.col-xl-1, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% -} - -.row-cols-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% -} - -.row-cols-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% -} - -.row-cols-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% -} - -.row-cols-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% -} - -.row-cols-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% -} - -.row-cols-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% -} - -.col-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% -} - -.col-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% -} - -.col-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% -} - -.col-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% -} - -.col-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% -} - -.col-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% -} - -.col-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% -} - -.col-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% -} - -.col-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% -} - -.col-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% -} - -.col-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% -} - -.col-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% -} - -.col-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% -} - -.order-first { - -ms-flex-order: -1; - order: -1 -} - -.order-last { - -ms-flex-order: 13; - order: 13 -} - -.order-0 { - -ms-flex-order: 0; - order: 0 -} - -.order-1 { - -ms-flex-order: 1; - order: 1 -} - -.order-2 { - -ms-flex-order: 2; - order: 2 -} - -.order-3 { - -ms-flex-order: 3; - order: 3 -} - -.order-4 { - -ms-flex-order: 4; - order: 4 -} - -.order-5 { - -ms-flex-order: 5; - order: 5 -} - -.order-6 { - -ms-flex-order: 6; - order: 6 -} - -.order-7 { - -ms-flex-order: 7; - order: 7 -} - -.order-8 { - -ms-flex-order: 8; - order: 8 -} - -.order-9 { - -ms-flex-order: 9; - order: 9 -} - -.order-10 { - -ms-flex-order: 10; - order: 10 -} - -.order-11 { - -ms-flex-order: 11; - order: 11 -} - -.order-12 { - -ms-flex-order: 12; - order: 12 -} - -.offset-1 { - margin-left: 8.333333% -} - -.offset-2 { - margin-left: 16.666667% -} - -.offset-3 { - margin-left: 25% -} - -.offset-4 { - margin-left: 33.333333% -} - -.offset-5 { - margin-left: 41.666667% -} - -.offset-6 { - margin-left: 50% -} - -.offset-7 { - margin-left: 58.333333% -} - -.offset-8 { - margin-left: 66.666667% -} - -.offset-9 { - margin-left: 75% -} - -.offset-10 { - margin-left: 83.333333% -} - -.offset-11 { - margin-left: 91.666667% -} - -@media (min-width:576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-sm-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-sm-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-sm-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-sm-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-sm-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-sm-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-sm-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-sm-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-sm-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-sm-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-sm-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-sm-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-sm-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-sm-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-sm-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-sm-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-sm-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-sm-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-sm-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-sm-first { - -ms-flex-order: -1; - order: -1 - } - - .order-sm-last { - -ms-flex-order: 13; - order: 13 - } - - .order-sm-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-sm-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-sm-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-sm-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-sm-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-sm-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-sm-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-sm-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-sm-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-sm-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-sm-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-sm-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-sm-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-sm-0 { - margin-left: 0 - } - - .offset-sm-1 { - margin-left: 8.333333% - } - - .offset-sm-2 { - margin-left: 16.666667% - } - - .offset-sm-3 { - margin-left: 25% - } - - .offset-sm-4 { - margin-left: 33.333333% - } - - .offset-sm-5 { - margin-left: 41.666667% - } - - .offset-sm-6 { - margin-left: 50% - } - - .offset-sm-7 { - margin-left: 58.333333% - } - - .offset-sm-8 { - margin-left: 66.666667% - } - - .offset-sm-9 { - margin-left: 75% - } - - .offset-sm-10 { - margin-left: 83.333333% - } - - .offset-sm-11 { - margin-left: 91.666667% - } -} - -@media (min-width:768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-md-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-md-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-md-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-md-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-md-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-md-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-md-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-md-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-md-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-md-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-md-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-md-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-md-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-md-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-md-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-md-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-md-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-md-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-md-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-md-first { - -ms-flex-order: -1; - order: -1 - } - - .order-md-last { - -ms-flex-order: 13; - order: 13 - } - - .order-md-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-md-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-md-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-md-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-md-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-md-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-md-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-md-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-md-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-md-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-md-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-md-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-md-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-md-0 { - margin-left: 0 - } - - .offset-md-1 { - margin-left: 8.333333% - } - - .offset-md-2 { - margin-left: 16.666667% - } - - .offset-md-3 { - margin-left: 25% - } - - .offset-md-4 { - margin-left: 33.333333% - } - - .offset-md-5 { - margin-left: 41.666667% - } - - .offset-md-6 { - margin-left: 50% - } - - .offset-md-7 { - margin-left: 58.333333% - } - - .offset-md-8 { - margin-left: 66.666667% - } - - .offset-md-9 { - margin-left: 75% - } - - .offset-md-10 { - margin-left: 83.333333% - } - - .offset-md-11 { - margin-left: 91.666667% - } -} - -@media (min-width:992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-lg-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-lg-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-lg-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-lg-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-lg-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-lg-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-lg-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-lg-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-lg-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-lg-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-lg-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-lg-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-lg-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-lg-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-lg-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-lg-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-lg-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-lg-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-lg-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-lg-first { - -ms-flex-order: -1; - order: -1 - } - - .order-lg-last { - -ms-flex-order: 13; - order: 13 - } - - .order-lg-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-lg-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-lg-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-lg-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-lg-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-lg-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-lg-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-lg-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-lg-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-lg-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-lg-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-lg-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-lg-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-lg-0 { - margin-left: 0 - } - - .offset-lg-1 { - margin-left: 8.333333% - } - - .offset-lg-2 { - margin-left: 16.666667% - } - - .offset-lg-3 { - margin-left: 25% - } - - .offset-lg-4 { - margin-left: 33.333333% - } - - .offset-lg-5 { - margin-left: 41.666667% - } - - .offset-lg-6 { - margin-left: 50% - } - - .offset-lg-7 { - margin-left: 58.333333% - } - - .offset-lg-8 { - margin-left: 66.666667% - } - - .offset-lg-9 { - margin-left: 75% - } - - .offset-lg-10 { - margin-left: 83.333333% - } - - .offset-lg-11 { - margin-left: 91.666667% - } -} - -@media (min-width:1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-xl-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-xl-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-xl-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-xl-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-xl-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-xl-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-xl-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-xl-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-xl-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-xl-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-xl-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-xl-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-xl-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-xl-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-xl-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-xl-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-xl-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-xl-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-xl-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-xl-first { - -ms-flex-order: -1; - order: -1 - } - - .order-xl-last { - -ms-flex-order: 13; - order: 13 - } - - .order-xl-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-xl-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-xl-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-xl-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-xl-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-xl-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-xl-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-xl-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-xl-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-xl-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-xl-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-xl-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-xl-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-xl-0 { - margin-left: 0 - } - - .offset-xl-1 { - margin-left: 8.333333% - } - - .offset-xl-2 { - margin-left: 16.666667% - } - - .offset-xl-3 { - margin-left: 25% - } - - .offset-xl-4 { - margin-left: 33.333333% - } - - .offset-xl-5 { - margin-left: 41.666667% - } - - .offset-xl-6 { - margin-left: 50% - } - - .offset-xl-7 { - margin-left: 58.333333% - } - - .offset-xl-8 { - margin-left: 66.666667% - } - - .offset-xl-9 { - margin-left: 75% - } - - .offset-xl-10 { - margin-left: 83.333333% - } - - .offset-xl-11 { - margin-left: 91.666667% - } -} - -.table { - width: 100%; - margin-bottom: 1rem; - color: #212529 -} - -.table td, -.table th { - padding: .75rem; - vertical-align: top; - border-top: 1px solid #dee2e6 -} - -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6 -} - -.table tbody+tbody { - border-top: 2px solid #dee2e6 -} - -.table-sm td, -.table-sm th { - padding: .3rem -} - -.table-bordered { - border: 1px solid #dee2e6 -} - -.table-bordered td, -.table-bordered th { - border: 1px solid #dee2e6 -} - -.table-bordered thead td, -.table-bordered thead th { - border-bottom-width: 2px -} - -.table-borderless tbody+tbody, -.table-borderless td, -.table-borderless th, -.table-borderless thead th { - border: 0 -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, .05) -} - -.table-hover tbody tr:hover { - color: #212529; - background-color: rgba(0, 0, 0, .075) -} - -.table-primary, -.table-primary>td, -.table-primary>th { - background-color: #b8daff -} - -.table-primary tbody+tbody, -.table-primary td, -.table-primary th, -.table-primary thead th { - border-color: #7abaff -} - -.table-hover .table-primary:hover { - background-color: #9fcdff -} - -.table-hover .table-primary:hover>td, -.table-hover .table-primary:hover>th { - background-color: #9fcdff -} - -.table-secondary, -.table-secondary>td, -.table-secondary>th { - background-color: #d6d8db -} - -.table-secondary tbody+tbody, -.table-secondary td, -.table-secondary th, -.table-secondary thead th { - border-color: #b3b7bb -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf -} - -.table-hover .table-secondary:hover>td, -.table-hover .table-secondary:hover>th { - background-color: #c8cbcf -} - -.table-success, -.table-success>td, -.table-success>th { - background-color: #c3e6cb -} - -.table-success tbody+tbody, -.table-success td, -.table-success th, -.table-success thead th { - border-color: #8fd19e -} - -.table-hover .table-success:hover { - background-color: #b1dfbb -} - -.table-hover .table-success:hover>td, -.table-hover .table-success:hover>th { - background-color: #b1dfbb -} - -.table-info, -.table-info>td, -.table-info>th { - background-color: #bee5eb -} - -.table-info tbody+tbody, -.table-info td, -.table-info th, -.table-info thead th { - border-color: #86cfda -} - -.table-hover .table-info:hover { - background-color: #abdde5 -} - -.table-hover .table-info:hover>td, -.table-hover .table-info:hover>th { - background-color: #abdde5 -} - -.table-warning, -.table-warning>td, -.table-warning>th { - background-color: #ffeeba -} - -.table-warning tbody+tbody, -.table-warning td, -.table-warning th, -.table-warning thead th { - border-color: #ffdf7e -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1 -} - -.table-hover .table-warning:hover>td, -.table-hover .table-warning:hover>th { - background-color: #ffe8a1 -} - -.table-danger, -.table-danger>td, -.table-danger>th { - background-color: #f5c6cb -} - -.table-danger tbody+tbody, -.table-danger td, -.table-danger th, -.table-danger thead th { - border-color: #ed969e -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7 -} - -.table-hover .table-danger:hover>td, -.table-hover .table-danger:hover>th { - background-color: #f1b0b7 -} - -.table-light, -.table-light>td, -.table-light>th { - background-color: #fdfdfe -} - -.table-light tbody+tbody, -.table-light td, -.table-light th, -.table-light thead th { - border-color: #fbfcfc -} - -.table-hover .table-light:hover { - background-color: #ececf6 -} - -.table-hover .table-light:hover>td, -.table-hover .table-light:hover>th { - background-color: #ececf6 -} - -.table-dark, -.table-dark>td, -.table-dark>th { - background-color: #c6c8ca -} - -.table-dark tbody+tbody, -.table-dark td, -.table-dark th, -.table-dark thead th { - border-color: #95999c -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe -} - -.table-hover .table-dark:hover>td, -.table-hover .table-dark:hover>th { - background-color: #b9bbbe -} - -.table-active, -.table-active>td, -.table-active>th { - background-color: rgba(0, 0, 0, .075) -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, .075) -} - -.table-hover .table-active:hover>td, -.table-hover .table-active:hover>th { - background-color: rgba(0, 0, 0, .075) -} - -.table .thead-dark th { - color: #fff; - background-color: #343a40; - border-color: #454d55 -} - -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6 -} - -.table-dark { - color: #fff; - background-color: #343a40 -} - -.table-dark td, -.table-dark th, -.table-dark thead th { - border-color: #454d55 -} - -.table-dark.table-bordered { - border: 0 -} - -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, .05) -} - -.table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, .075) -} - -@media (max-width:575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-sm>.table-bordered { - border: 0 - } -} - -@media (max-width:767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-md>.table-bordered { - border: 0 - } -} - -@media (max-width:991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-lg>.table-bordered { - border: 0 - } -} - -@media (max-width:1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-xl>.table-bordered { - border: 0 - } -} - -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch -} - -.table-responsive>.table-bordered { - border: 0 -} - -.form-control { - display: block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - padding: .375rem .75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: .25rem; - transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .form-control { - transition: none - } -} - -.form-control::-ms-expand { - background-color: transparent; - border: 0 -} - -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::-moz-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control:disabled, -.form-control[readonly] { - background-color: #e9ecef; - opacity: 1 -} - -input[type=date].form-control, -input[type=datetime-local].form-control, -input[type=month].form-control, -input[type=time].form-control { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -select.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057 -} - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff -} - -.form-control-file, -.form-control-range { - display: block; - width: 100% -} - -.col-form-label { - padding-top: calc(.375rem + 1px); - padding-bottom: calc(.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5 -} - -.col-form-label-lg { - padding-top: calc(.5rem + 1px); - padding-bottom: calc(.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5 -} - -.col-form-label-sm { - padding-top: calc(.25rem + 1px); - padding-bottom: calc(.25rem + 1px); - font-size: .875rem; - line-height: 1.5 -} - -.form-control-plaintext { - display: block; - width: 100%; - padding: .375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0 -} - -.form-control-plaintext.form-control-lg, -.form-control-plaintext.form-control-sm { - padding-right: 0; - padding-left: 0 -} - -.form-control-sm { - height: calc(1.5em + .5rem + 2px); - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -select.form-control[multiple], -select.form-control[size] { - height: auto -} - -textarea.form-control { - height: auto -} - -.form-group { - margin-bottom: 1rem -} - -.form-text { - display: block; - margin-top: .25rem -} - -.form-row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px -} - -.form-row>.col, -.form-row>[class*=col-] { - padding-right: 5px; - padding-left: 5px -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem -} - -.form-check-input { - position: absolute; - margin-top: .3rem; - margin-left: -1.25rem -} - -.form-check-input:disabled~.form-check-label, -.form-check-input[disabled]~.form-check-label { - color: #6c757d -} - -.form-check-label { - margin-bottom: 0 -} - -.form-check-inline { - display: -ms-inline-flexbox; - display: inline-flex; - -ms-flex-align: center; - align-items: center; - padding-left: 0; - margin-right: .75rem -} - -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: .3125rem; - margin-left: 0 -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: .25rem; - font-size: 80%; - color: #28a745 -} - -.valid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: .25rem .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, .9); - border-radius: .25rem -} - -.form-row>.col>.valid-tooltip, -.form-row>[class*=col-]>.valid-tooltip { - left: 5px -} - -.is-valid~.valid-feedback, -.is-valid~.valid-tooltip, -.was-validated :valid~.valid-feedback, -.was-validated :valid~.valid-tooltip { - display: block -} - -.form-control.is-valid, -.was-validated .form-control:valid { - border-color: #28a745; - padding-right: calc(1.5em + .75rem) !important; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(.375em + .1875rem) center; - background-size: calc(.75em + .375rem) calc(.75em + .375rem) -} - -.form-control.is-valid:focus, -.was-validated .form-control:valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.was-validated select.form-control:valid, -select.form-control.is-valid { - padding-right: 3rem !important; - background-position: right 1.5rem center -} - -.was-validated textarea.form-control:valid, -textarea.form-control.is-valid { - padding-right: calc(1.5em + .75rem); - background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem) -} - -.custom-select.is-valid, -.was-validated .custom-select:valid { - border-color: #28a745; - padding-right: calc(.75em + 2.3125rem) !important; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat -} - -.custom-select.is-valid:focus, -.was-validated .custom-select:valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.form-check-input.is-valid~.form-check-label, -.was-validated .form-check-input:valid~.form-check-label { - color: #28a745 -} - -.form-check-input.is-valid~.valid-feedback, -.form-check-input.is-valid~.valid-tooltip, -.was-validated .form-check-input:valid~.valid-feedback, -.was-validated .form-check-input:valid~.valid-tooltip { - display: block -} - -.custom-control-input.is-valid~.custom-control-label, -.was-validated .custom-control-input:valid~.custom-control-label { - color: #28a745 -} - -.custom-control-input.is-valid~.custom-control-label::before, -.was-validated .custom-control-input:valid~.custom-control-label::before { - border-color: #28a745 -} - -.custom-control-input.is-valid:checked~.custom-control-label::before, -.was-validated .custom-control-input:valid:checked~.custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57 -} - -.custom-control-input.is-valid:focus~.custom-control-label::before, -.was-validated .custom-control-input:valid:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before, -.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before { - border-color: #28a745 -} - -.custom-file-input.is-valid~.custom-file-label, -.was-validated .custom-file-input:valid~.custom-file-label { - border-color: #28a745 -} - -.custom-file-input.is-valid:focus~.custom-file-label, -.was-validated .custom-file-input:valid:focus~.custom-file-label { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: .25rem; - font-size: 80%; - color: #dc3545 -} - -.invalid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: .25rem .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, .9); - border-radius: .25rem -} - -.form-row>.col>.invalid-tooltip, -.form-row>[class*=col-]>.invalid-tooltip { - left: 5px -} - -.is-invalid~.invalid-feedback, -.is-invalid~.invalid-tooltip, -.was-validated :invalid~.invalid-feedback, -.was-validated :invalid~.invalid-tooltip { - display: block -} - -.form-control.is-invalid, -.was-validated .form-control:invalid { - border-color: #dc3545; - padding-right: calc(1.5em + .75rem) !important; - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(.375em + .1875rem) center; - background-size: calc(.75em + .375rem) calc(.75em + .375rem) -} - -.form-control.is-invalid:focus, -.was-validated .form-control:invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.was-validated select.form-control:invalid, -select.form-control.is-invalid { - padding-right: 3rem !important; - background-position: right 1.5rem center -} - -.was-validated textarea.form-control:invalid, -textarea.form-control.is-invalid { - padding-right: calc(1.5em + .75rem); - background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem) -} - -.custom-select.is-invalid, -.was-validated .custom-select:invalid { - border-color: #dc3545; - padding-right: calc(.75em + 2.3125rem) !important; - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat -} - -.custom-select.is-invalid:focus, -.was-validated .custom-select:invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.form-check-input.is-invalid~.form-check-label, -.was-validated .form-check-input:invalid~.form-check-label { - color: #dc3545 -} - -.form-check-input.is-invalid~.invalid-feedback, -.form-check-input.is-invalid~.invalid-tooltip, -.was-validated .form-check-input:invalid~.invalid-feedback, -.was-validated .form-check-input:invalid~.invalid-tooltip { - display: block -} - -.custom-control-input.is-invalid~.custom-control-label, -.was-validated .custom-control-input:invalid~.custom-control-label { - color: #dc3545 -} - -.custom-control-input.is-invalid~.custom-control-label::before, -.was-validated .custom-control-input:invalid~.custom-control-label::before { - border-color: #dc3545 -} - -.custom-control-input.is-invalid:checked~.custom-control-label::before, -.was-validated .custom-control-input:invalid:checked~.custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d -} - -.custom-control-input.is-invalid:focus~.custom-control-label::before, -.was-validated .custom-control-input:invalid:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before, -.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before { - border-color: #dc3545 -} - -.custom-file-input.is-invalid~.custom-file-label, -.was-validated .custom-file-input:invalid~.custom-file-label { - border-color: #dc3545 -} - -.custom-file-input.is-invalid:focus~.custom-file-label, -.was-validated .custom-file-input:invalid:focus~.custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.form-inline { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center -} - -.form-inline .form-check { - width: 100% -} - -@media (min-width:576px) { - .form-inline label { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: 0 - } - - .form-inline .form-group { - display: -ms-flexbox; - display: flex; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center; - margin-bottom: 0 - } - - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle - } - - .form-inline .form-control-plaintext { - display: inline-block - } - - .form-inline .custom-select, - .form-inline .input-group { - width: auto - } - - .form-inline .form-check { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: auto; - padding-left: 0 - } - - .form-inline .form-check-input { - position: relative; - -ms-flex-negative: 0; - flex-shrink: 0; - margin-top: 0; - margin-right: .25rem; - margin-left: 0 - } - - .form-inline .custom-control { - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center - } - - .form-inline .custom-control-label { - margin-bottom: 0 - } -} - -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: .375rem .75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: .25rem; - transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .btn { - transition: none - } -} - -.btn:hover { - color: #212529; - text-decoration: none -} - -.btn.focus, -.btn:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.btn.disabled, -.btn:disabled { - opacity: .65 -} - -.btn:not(:disabled):not(.disabled) { - cursor: pointer -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc -} - -.btn-primary.focus, -.btn-primary:focus { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; - box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) -} - -.btn-primary.disabled, -.btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-primary:not(:disabled):not(.disabled).active, -.btn-primary:not(:disabled):not(.disabled):active, -.show>.btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf -} - -.btn-primary:not(:disabled):not(.disabled).active:focus, -.btn-primary:not(:disabled):not(.disabled):active:focus, -.show>.btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62 -} - -.btn-secondary.focus, -.btn-secondary:focus { - color: #fff; - background-color: #5a6268; - border-color: #545b62; - box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5) -} - -.btn-secondary.disabled, -.btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-secondary:not(:disabled):not(.disabled).active, -.btn-secondary:not(:disabled):not(.disabled):active, -.show>.btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b -} - -.btn-secondary:not(:disabled):not(.disabled).active:focus, -.btn-secondary:not(:disabled):not(.disabled):active:focus, -.show>.btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5) -} - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34 -} - -.btn-success.focus, -.btn-success:focus { - color: #fff; - background-color: #218838; - border-color: #1e7e34; - box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5) -} - -.btn-success.disabled, -.btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-success:not(:disabled):not(.disabled).active, -.btn-success:not(:disabled):not(.disabled):active, -.show>.btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430 -} - -.btn-success:not(:disabled):not(.disabled).active:focus, -.btn-success:not(:disabled):not(.disabled):active:focus, -.show>.btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5) -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b -} - -.btn-info.focus, -.btn-info:focus { - color: #fff; - background-color: #138496; - border-color: #117a8b; - box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) -} - -.btn-info.disabled, -.btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-info:not(:disabled):not(.disabled).active, -.btn-info:not(:disabled):not(.disabled):active, -.show>.btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f -} - -.btn-info:not(:disabled):not(.disabled).active:focus, -.btn-info:not(:disabled):not(.disabled):active:focus, -.show>.btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00 -} - -.btn-warning.focus, -.btn-warning:focus { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; - box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) -} - -.btn-warning.disabled, -.btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-warning:not(:disabled):not(.disabled).active, -.btn-warning:not(:disabled):not(.disabled):active, -.show>.btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500 -} - -.btn-warning:not(:disabled):not(.disabled).active:focus, -.btn-warning:not(:disabled):not(.disabled):active:focus, -.show>.btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130 -} - -.btn-danger.focus, -.btn-danger:focus { - color: #fff; - background-color: #c82333; - border-color: #bd2130; - box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5) -} - -.btn-danger.disabled, -.btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-danger:not(:disabled):not(.disabled).active, -.btn-danger:not(:disabled):not(.disabled):active, -.show>.btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d -} - -.btn-danger:not(:disabled):not(.disabled).active:focus, -.btn-danger:not(:disabled):not(.disabled):active:focus, -.show>.btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5) -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5 -} - -.btn-light.focus, -.btn-light:focus { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; - box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) -} - -.btn-light.disabled, -.btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-light:not(:disabled):not(.disabled).active, -.btn-light:not(:disabled):not(.disabled):active, -.show>.btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df -} - -.btn-light:not(:disabled):not(.disabled).active:focus, -.btn-light:not(:disabled):not(.disabled):active:focus, -.show>.btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124 -} - -.btn-dark.focus, -.btn-dark:focus { - color: #fff; - background-color: #23272b; - border-color: #1d2124; - box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5) -} - -.btn-dark.disabled, -.btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-dark:not(:disabled):not(.disabled).active, -.btn-dark:not(:disabled):not(.disabled):active, -.show>.btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d -} - -.btn-dark:not(:disabled):not(.disabled).active:focus, -.btn-dark:not(:disabled):not(.disabled):active:focus, -.show>.btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5) -} - -.btn-outline-primary { - color: #007bff; - border-color: #007bff -} - -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-outline-primary.focus, -.btn-outline-primary:focus { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.btn-outline-primary.disabled, -.btn-outline-primary:disabled { - color: #007bff; - background-color: transparent -} - -.btn-outline-primary:not(:disabled):not(.disabled).active, -.btn-outline-primary:not(:disabled):not(.disabled):active, -.show>.btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-outline-primary:not(:disabled):not(.disabled).active:focus, -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary.focus, -.btn-outline-secondary:focus { - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.btn-outline-secondary.disabled, -.btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent -} - -.btn-outline-secondary:not(:disabled):not(.disabled).active, -.btn-outline-secondary:not(:disabled):not(.disabled):active, -.show>.btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.btn-outline-success { - color: #28a745; - border-color: #28a745 -} - -.btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-outline-success.focus, -.btn-outline-success:focus { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.btn-outline-success.disabled, -.btn-outline-success:disabled { - color: #28a745; - background-color: transparent -} - -.btn-outline-success:not(:disabled):not(.disabled).active, -.btn-outline-success:not(:disabled):not(.disabled):active, -.show>.btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-outline-success:not(:disabled):not(.disabled).active:focus, -.btn-outline-success:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info.focus, -.btn-outline-info:focus { - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.btn-outline-info.disabled, -.btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent -} - -.btn-outline-info:not(:disabled):not(.disabled).active, -.btn-outline-info:not(:disabled):not(.disabled):active, -.show>.btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info:not(:disabled):not(.disabled).active:focus, -.btn-outline-info:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning.focus, -.btn-outline-warning:focus { - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.btn-outline-warning.disabled, -.btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent -} - -.btn-outline-warning:not(:disabled):not(.disabled).active, -.btn-outline-warning:not(:disabled):not(.disabled):active, -.show>.btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning:not(:disabled):not(.disabled).active:focus, -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger.focus, -.btn-outline-danger:focus { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.btn-outline-danger.disabled, -.btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent -} - -.btn-outline-danger:not(:disabled):not(.disabled).active, -.btn-outline-danger:not(:disabled):not(.disabled):active, -.show>.btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger:not(:disabled):not(.disabled).active:focus, -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light.focus, -.btn-outline-light:focus { - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.btn-outline-light.disabled, -.btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent -} - -.btn-outline-light:not(:disabled):not(.disabled).active, -.btn-outline-light:not(:disabled):not(.disabled):active, -.show>.btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light:not(:disabled):not(.disabled).active:focus, -.btn-outline-light:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.btn-outline-dark { - color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark.focus, -.btn-outline-dark:focus { - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.btn-outline-dark.disabled, -.btn-outline-dark:disabled { - color: #343a40; - background-color: transparent -} - -.btn-outline-dark:not(:disabled):not(.disabled).active, -.btn-outline-dark:not(:disabled):not(.disabled):active, -.show>.btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark:not(:disabled):not(.disabled).active:focus, -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.btn-link { - font-weight: 400; - color: #007bff; - text-decoration: none -} - -.btn-link:hover { - color: #0056b3; - text-decoration: underline -} - -.btn-link.focus, -.btn-link:focus { - text-decoration: underline -} - -.btn-link.disabled, -.btn-link:disabled { - color: #6c757d; - pointer-events: none -} - -.btn-group-lg>.btn, -.btn-lg { - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -.btn-group-sm>.btn, -.btn-sm { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.btn-block { - display: block; - width: 100% -} - -.btn-block+.btn-block { - margin-top: .5rem -} - -input[type=button].btn-block, -input[type=reset].btn-block, -input[type=submit].btn-block { - width: 100% -} - -.fade { - transition: opacity .15s linear -} - -@media (prefers-reduced-motion:reduce) { - .fade { - transition: none - } -} - -.fade:not(.show) { - opacity: 0 -} - -.collapse:not(.show) { - display: none -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height .35s ease -} - -@media (prefers-reduced-motion:reduce) { - .collapsing { - transition: none - } -} - -.dropdown, -.dropleft, -.dropright, -.dropup { - position: relative -} - -.dropdown-toggle { - white-space: nowrap -} - -.dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid; - border-right: .3em solid transparent; - border-bottom: 0; - border-left: .3em solid transparent -} - -.dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: .5rem 0; - margin: .125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .15); - border-radius: .25rem -} - -.dropdown-menu-left { - right: auto; - left: 0 -} - -.dropdown-menu-right { - right: 0; - left: auto -} - -@media (min-width:576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0 - } - - .dropdown-menu-sm-right { - right: 0; - left: auto - } -} - -@media (min-width:768px) { - .dropdown-menu-md-left { - right: auto; - left: 0 - } - - .dropdown-menu-md-right { - right: 0; - left: auto - } -} - -@media (min-width:992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0 - } - - .dropdown-menu-lg-right { - right: 0; - left: auto - } -} - -@media (min-width:1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0 - } - - .dropdown-menu-xl-right { - right: 0; - left: auto - } -} - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: .125rem -} - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: 0; - border-right: .3em solid transparent; - border-bottom: .3em solid; - border-left: .3em solid transparent -} - -.dropup .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: .125rem -} - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid transparent; - border-right: 0; - border-bottom: .3em solid transparent; - border-left: .3em solid -} - -.dropright .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropright .dropdown-toggle::after { - vertical-align: 0 -} - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: .125rem -} - -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: "" -} - -.dropleft .dropdown-toggle::after { - display: none -} - -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid transparent; - border-right: .3em solid; - border-bottom: .3em solid transparent -} - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropleft .dropdown-toggle::before { - vertical-align: 0 -} - -.dropdown-menu[x-placement^=bottom], -.dropdown-menu[x-placement^=left], -.dropdown-menu[x-placement^=right], -.dropdown-menu[x-placement^=top] { - right: auto; - bottom: auto -} - -.dropdown-divider { - height: 0; - margin: .5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef -} - -.dropdown-item { - display: block; - width: 100%; - padding: .25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0 -} - -.dropdown-item:focus, -.dropdown-item:hover { - color: #16181b; - text-decoration: none; - background-color: #e9ecef -} - -.dropdown-item.active, -.dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff -} - -.dropdown-item.disabled, -.dropdown-item:disabled { - color: #adb5bd; - pointer-events: none; - background-color: transparent -} - -.dropdown-menu.show { - display: block -} - -.dropdown-header { - display: block; - padding: .5rem 1.5rem; - margin-bottom: 0; - font-size: .875rem; - color: #6c757d; - white-space: nowrap -} - -.dropdown-item-text { - display: block; - padding: .25rem 1.5rem; - color: #212529 -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle -} - -.btn-group-vertical>.btn, -.btn-group>.btn { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto -} - -.btn-group-vertical>.btn:hover, -.btn-group>.btn:hover { - z-index: 1 -} - -.btn-group-vertical>.btn.active, -.btn-group-vertical>.btn:active, -.btn-group-vertical>.btn:focus, -.btn-group>.btn.active, -.btn-group>.btn:active, -.btn-group>.btn:focus { - z-index: 1 -} - -.btn-toolbar { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-pack: start; - justify-content: flex-start -} - -.btn-toolbar .input-group { - width: auto -} - -.btn-group>.btn-group:not(:first-child), -.btn-group>.btn:not(:first-child) { - margin-left: -1px -} - -.btn-group>.btn-group:not(:last-child)>.btn, -.btn-group>.btn:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.btn-group>.btn-group:not(:first-child)>.btn, -.btn-group>.btn:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.dropdown-toggle-split { - padding-right: .5625rem; - padding-left: .5625rem -} - -.dropdown-toggle-split::after, -.dropright .dropdown-toggle-split::after, -.dropup .dropdown-toggle-split::after { - margin-left: 0 -} - -.dropleft .dropdown-toggle-split::before { - margin-right: 0 -} - -.btn-group-sm>.btn+.dropdown-toggle-split, -.btn-sm+.dropdown-toggle-split { - padding-right: .375rem; - padding-left: .375rem -} - -.btn-group-lg>.btn+.dropdown-toggle-split, -.btn-lg+.dropdown-toggle-split { - padding-right: .75rem; - padding-left: .75rem -} - -.btn-group-vertical { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: center; - justify-content: center -} - -.btn-group-vertical>.btn, -.btn-group-vertical>.btn-group { - width: 100% -} - -.btn-group-vertical>.btn-group:not(:first-child), -.btn-group-vertical>.btn:not(:first-child) { - margin-top: -1px -} - -.btn-group-vertical>.btn-group:not(:last-child)>.btn, -.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 -} - -.btn-group-vertical>.btn-group:not(:first-child)>.btn, -.btn-group-vertical>.btn:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.btn-group-toggle>.btn, -.btn-group-toggle>.btn-group>.btn { - margin-bottom: 0 -} - -.btn-group-toggle>.btn input[type=checkbox], -.btn-group-toggle>.btn input[type=radio], -.btn-group-toggle>.btn-group>.btn input[type=checkbox], -.btn-group-toggle>.btn-group>.btn input[type=radio] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none -} - -.input-group { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: stretch; - align-items: stretch; - width: 100% -} - -.input-group>.custom-file, -.input-group>.custom-select, -.input-group>.form-control, -.input-group>.form-control-plaintext { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0 -} - -.input-group>.custom-file+.custom-file, -.input-group>.custom-file+.custom-select, -.input-group>.custom-file+.form-control, -.input-group>.custom-select+.custom-file, -.input-group>.custom-select+.custom-select, -.input-group>.custom-select+.form-control, -.input-group>.form-control+.custom-file, -.input-group>.form-control+.custom-select, -.input-group>.form-control+.form-control, -.input-group>.form-control-plaintext+.custom-file, -.input-group>.form-control-plaintext+.custom-select, -.input-group>.form-control-plaintext+.form-control { - margin-left: -1px -} - -.input-group>.custom-file .custom-file-input:focus~.custom-file-label, -.input-group>.custom-select:focus, -.input-group>.form-control:focus { - z-index: 3 -} - -.input-group>.custom-file .custom-file-input:focus { - z-index: 4 -} - -.input-group>.custom-select:not(:first-child), -.input-group>.form-control:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.input-group>.custom-file { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center -} - -.input-group>.custom-file:not(:last-child) .custom-file-label, -.input-group>.custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group>.custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label, -.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after, -.input-group:not(.has-validation)>.custom-select:not(:last-child), -.input-group:not(.has-validation)>.form-control:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label, -.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after, -.input-group.has-validation>.custom-select:nth-last-child(n+3), -.input-group.has-validation>.form-control:nth-last-child(n+3) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group-append, -.input-group-prepend { - display: -ms-flexbox; - display: flex -} - -.input-group-append .btn, -.input-group-prepend .btn { - position: relative; - z-index: 2 -} - -.input-group-append .btn:focus, -.input-group-prepend .btn:focus { - z-index: 3 -} - -.input-group-append .btn+.btn, -.input-group-append .btn+.input-group-text, -.input-group-append .input-group-text+.btn, -.input-group-append .input-group-text+.input-group-text, -.input-group-prepend .btn+.btn, -.input-group-prepend .btn+.input-group-text, -.input-group-prepend .input-group-text+.btn, -.input-group-prepend .input-group-text+.input-group-text { - margin-left: -1px -} - -.input-group-prepend { - margin-right: -1px -} - -.input-group-append { - margin-left: -1px -} - -.input-group-text { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: .375rem .75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: .25rem -} - -.input-group-text input[type=checkbox], -.input-group-text input[type=radio] { - margin-top: 0 -} - -.input-group-lg>.custom-select, -.input-group-lg>.form-control:not(textarea) { - height: calc(1.5em + 1rem + 2px) -} - -.input-group-lg>.custom-select, -.input-group-lg>.form-control, -.input-group-lg>.input-group-append>.btn, -.input-group-lg>.input-group-append>.input-group-text, -.input-group-lg>.input-group-prepend>.btn, -.input-group-lg>.input-group-prepend>.input-group-text { - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -.input-group-sm>.custom-select, -.input-group-sm>.form-control:not(textarea) { - height: calc(1.5em + .5rem + 2px) -} - -.input-group-sm>.custom-select, -.input-group-sm>.form-control, -.input-group-sm>.input-group-append>.btn, -.input-group-sm>.input-group-append>.input-group-text, -.input-group-sm>.input-group-prepend>.btn, -.input-group-sm>.input-group-prepend>.input-group-text { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.input-group-lg>.custom-select, -.input-group-sm>.custom-select { - padding-right: 1.75rem -} - -.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn, -.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text, -.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn, -.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text, -.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), -.input-group>.input-group-append:last-child>.input-group-text:not(:last-child), -.input-group>.input-group-prepend>.btn, -.input-group>.input-group-prepend>.input-group-text { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group>.input-group-append>.btn, -.input-group>.input-group-append>.input-group-text, -.input-group>.input-group-prepend:first-child>.btn:not(:first-child), -.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), -.input-group>.input-group-prepend:not(:first-child)>.btn, -.input-group>.input-group-prepend:not(:first-child)>.input-group-text { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.custom-control { - position: relative; - z-index: 1; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; - -webkit-print-color-adjust: exact; - color-adjust: exact -} - -.custom-control-inline { - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 1rem -} - -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 1.25rem; - opacity: 0 -} - -.custom-control-input:checked~.custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff -} - -.custom-control-input:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-control-input:focus:not(:checked)~.custom-control-label::before { - border-color: #80bdff -} - -.custom-control-input:not(:disabled):active~.custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff -} - -.custom-control-input:disabled~.custom-control-label, -.custom-control-input[disabled]~.custom-control-label { - color: #6c757d -} - -.custom-control-input:disabled~.custom-control-label::before, -.custom-control-input[disabled]~.custom-control-label::before { - background-color: #e9ecef -} - -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top -} - -.custom-control-label::before { - position: absolute; - top: .25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - background-color: #fff; - border: #adb5bd solid 1px -} - -.custom-control-label::after { - position: absolute; - top: .25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background: 50%/50% 50% no-repeat -} - -.custom-checkbox .custom-control-label::before { - border-radius: .25rem -} - -.custom-checkbox .custom-control-input:checked~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e") -} - -.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before { - border-color: #007bff; - background-color: #007bff -} - -.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e") -} - -.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-radio .custom-control-label::before { - border-radius: 50% -} - -.custom-radio .custom-control-input:checked~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") -} - -.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-switch { - padding-left: 2.25rem -} - -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: .5rem -} - -.custom-switch .custom-control-label::after { - top: calc(.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: .5rem; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out; - transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .custom-switch .custom-control-label::after { - transition: none - } -} - -.custom-switch .custom-control-input:checked~.custom-control-label::after { - background-color: #fff; - -webkit-transform: translateX(.75rem); - transform: translateX(.75rem) -} - -.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - padding: .375rem 1.75rem .375rem .75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat; - border: 1px solid #ced4da; - border-radius: .25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -.custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff -} - -.custom-select[multiple], -.custom-select[size]:not([size="1"]) { - height: auto; - padding-right: .75rem; - background-image: none -} - -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef -} - -.custom-select::-ms-expand { - display: none -} - -.custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057 -} - -.custom-select-sm { - height: calc(1.5em + .5rem + 2px); - padding-top: .25rem; - padding-bottom: .25rem; - padding-left: .5rem; - font-size: .875rem -} - -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: .5rem; - padding-bottom: .5rem; - padding-left: 1rem; - font-size: 1.25rem -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - margin-bottom: 0 -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + .75rem + 2px); - margin: 0; - overflow: hidden; - opacity: 0 -} - -.custom-file-input:focus~.custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-file-input:disabled~.custom-file-label, -.custom-file-input[disabled]~.custom-file-label { - background-color: #e9ecef -} - -.custom-file-input:lang(en)~.custom-file-label::after { - content: "Browse" -} - -.custom-file-input~.custom-file-label[data-browse]::after { - content: attr(data-browse) -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + .75rem + 2px); - padding: .375rem .75rem; - overflow: hidden; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: .25rem -} - -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + .75rem); - padding: .375rem .75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 .25rem .25rem 0 -} - -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -.custom-range:focus { - outline: 0 -} - -.custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range::-moz-focus-outer { - border: 0 -} - -.custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - -webkit-appearance: none; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-webkit-slider-thumb { - -webkit-transition: none; - transition: none - } -} - -.custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-webkit-slider-runnable-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem -} - -.custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - -moz-appearance: none; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-moz-range-thumb { - -moz-transition: none; - transition: none - } -} - -.custom-range::-moz-range-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-moz-range-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem -} - -.custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: .2rem; - margin-left: .2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -ms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-ms-thumb { - -ms-transition: none; - transition: none - } -} - -.custom-range::-ms-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-ms-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: .5rem -} - -.custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem -} - -.custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem -} - -.custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd -} - -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default -} - -.custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd -} - -.custom-range:disabled::-moz-range-track { - cursor: default -} - -.custom-range:disabled::-ms-thumb { - background-color: #adb5bd -} - -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none - } -} - -.nav { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none -} - -.nav-link { - display: block; - padding: .5rem 1rem -} - -.nav-link:focus, -.nav-link:hover { - text-decoration: none -} - -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6 -} - -.nav-tabs .nav-link { - margin-bottom: -1px; - border: 1px solid transparent; - border-top-left-radius: .25rem; - border-top-right-radius: .25rem -} - -.nav-tabs .nav-link:focus, -.nav-tabs .nav-link:hover { - border-color: #e9ecef #e9ecef #dee2e6 -} - -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent -} - -.nav-tabs .nav-item.show .nav-link, -.nav-tabs .nav-link.active { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff -} - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.nav-pills .nav-link { - border-radius: .25rem -} - -.nav-pills .nav-link.active, -.nav-pills .show>.nav-link { - color: #fff; - background-color: #007bff -} - -.nav-fill .nav-item, -.nav-fill>.nav-link { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - text-align: center -} - -.nav-justified .nav-item, -.nav-justified>.nav-link { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - text-align: center -} - -.tab-content>.tab-pane { - display: none -} - -.tab-content>.active { - display: block -} - -.navbar { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between; - padding: .5rem 1rem -} - -.navbar .container, -.navbar .container-fluid, -.navbar .container-lg, -.navbar .container-md, -.navbar .container-sm, -.navbar .container-xl { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between -} - -.navbar-brand { - display: inline-block; - padding-top: .3125rem; - padding-bottom: .3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap -} - -.navbar-brand:focus, -.navbar-brand:hover { - text-decoration: none -} - -.navbar-nav { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none -} - -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0 -} - -.navbar-nav .dropdown-menu { - position: static; - float: none -} - -.navbar-text { - display: inline-block; - padding-top: .5rem; - padding-bottom: .5rem -} - -.navbar-collapse { - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-align: center; - align-items: center -} - -.navbar-toggler { - padding: .25rem .75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: .25rem -} - -.navbar-toggler:focus, -.navbar-toggler:hover { - text-decoration: none -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: 50%/100% 100% no-repeat -} - -.navbar-nav-scroll { - max-height: 75vh; - overflow-y: auto -} - -@media (max-width:575.98px) { - - .navbar-expand-sm>.container, - .navbar-expand-sm>.container-fluid, - .navbar-expand-sm>.container-lg, - .navbar-expand-sm>.container-md, - .navbar-expand-sm>.container-sm, - .navbar-expand-sm>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:576px) { - .navbar-expand-sm { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-sm .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-sm>.container, - .navbar-expand-sm>.container-fluid, - .navbar-expand-sm>.container-lg, - .navbar-expand-sm>.container-md, - .navbar-expand-sm>.container-sm, - .navbar-expand-sm>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-sm .navbar-nav-scroll { - overflow: visible - } - - .navbar-expand-sm .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-sm .navbar-toggler { - display: none - } -} - -@media (max-width:767.98px) { - - .navbar-expand-md>.container, - .navbar-expand-md>.container-fluid, - .navbar-expand-md>.container-lg, - .navbar-expand-md>.container-md, - .navbar-expand-md>.container-sm, - .navbar-expand-md>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:768px) { - .navbar-expand-md { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-md .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-md .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-md>.container, - .navbar-expand-md>.container-fluid, - .navbar-expand-md>.container-lg, - .navbar-expand-md>.container-md, - .navbar-expand-md>.container-sm, - .navbar-expand-md>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-md .navbar-nav-scroll { - overflow: visible - } - - .navbar-expand-md .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-md .navbar-toggler { - display: none - } -} - -@media (max-width:991.98px) { - - .navbar-expand-lg>.container, - .navbar-expand-lg>.container-fluid, - .navbar-expand-lg>.container-lg, - .navbar-expand-lg>.container-md, - .navbar-expand-lg>.container-sm, - .navbar-expand-lg>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:992px) { - .navbar-expand-lg { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-lg .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-lg>.container, - .navbar-expand-lg>.container-fluid, - .navbar-expand-lg>.container-lg, - .navbar-expand-lg>.container-md, - .navbar-expand-lg>.container-sm, - .navbar-expand-lg>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-lg .navbar-nav-scroll { - overflow: visible - } - - .navbar-expand-lg .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-lg .navbar-toggler { - display: none - } -} - -@media (max-width:1199.98px) { - - .navbar-expand-xl>.container, - .navbar-expand-xl>.container-fluid, - .navbar-expand-xl>.container-lg, - .navbar-expand-xl>.container-md, - .navbar-expand-xl>.container-sm, - .navbar-expand-xl>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:1200px) { - .navbar-expand-xl { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-xl .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-xl>.container, - .navbar-expand-xl>.container-fluid, - .navbar-expand-xl>.container-lg, - .navbar-expand-xl>.container-md, - .navbar-expand-xl>.container-sm, - .navbar-expand-xl>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-xl .navbar-nav-scroll { - overflow: visible - } - - .navbar-expand-xl .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-xl .navbar-toggler { - display: none - } -} - -.navbar-expand { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start -} - -.navbar-expand>.container, -.navbar-expand>.container-fluid, -.navbar-expand>.container-lg, -.navbar-expand>.container-md, -.navbar-expand>.container-sm, -.navbar-expand>.container-xl { - padding-right: 0; - padding-left: 0 -} - -.navbar-expand .navbar-nav { - -ms-flex-direction: row; - flex-direction: row -} - -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute -} - -.navbar-expand .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem -} - -.navbar-expand>.container, -.navbar-expand>.container-fluid, -.navbar-expand>.container-lg, -.navbar-expand>.container-md, -.navbar-expand>.container-sm, -.navbar-expand>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap -} - -.navbar-expand .navbar-nav-scroll { - overflow: visible -} - -.navbar-expand .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto -} - -.navbar-expand .navbar-toggler { - display: none -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-brand:focus, -.navbar-light .navbar-brand:hover { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, .5) -} - -.navbar-light .navbar-nav .nav-link:focus, -.navbar-light .navbar-nav .nav-link:hover { - color: rgba(0, 0, 0, .7) -} - -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, .3) -} - -.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: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, .5); - border-color: rgba(0, 0, 0, .1) -} - -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") -} - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, .5) -} - -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-text a:focus, -.navbar-light .navbar-text a:hover { - color: rgba(0, 0, 0, .9) -} - -.navbar-dark .navbar-brand { - color: #fff -} - -.navbar-dark .navbar-brand:focus, -.navbar-dark .navbar-brand:hover { - color: #fff -} - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, .5) -} - -.navbar-dark .navbar-nav .nav-link:focus, -.navbar-dark .navbar-nav .nav-link:hover { - color: rgba(255, 255, 255, .75) -} - -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, .25) -} - -.navbar-dark .navbar-nav .active>.nav-link, -.navbar-dark .navbar-nav .nav-link.active, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .show>.nav-link { - color: #fff -} - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, .5); - border-color: rgba(255, 255, 255, .1) -} - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") -} - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, .5) -} - -.navbar-dark .navbar-text a { - color: #fff -} - -.navbar-dark .navbar-text a:focus, -.navbar-dark .navbar-text a:hover { - color: #fff -} - -.card { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, .125); - border-radius: .25rem -} - -.card>hr { - margin-right: 0; - margin-left: 0 -} - -.card>.list-group { - border-top: inherit; - border-bottom: inherit -} - -.card>.list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.card>.list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(.25rem - 1px); - border-bottom-left-radius: calc(.25rem - 1px) -} - -.card>.card-header+.list-group, -.card>.list-group+.card-footer { - border-top: 0 -} - -.card-body { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem -} - -.card-title { - margin-bottom: .75rem -} - -.card-subtitle { - margin-top: -.375rem; - margin-bottom: 0 -} - -.card-text:last-child { - margin-bottom: 0 -} - -.card-link:hover { - text-decoration: none -} - -.card-link+.card-link { - margin-left: 1.25rem -} - -.card-header { - padding: .75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, .03); - border-bottom: 1px solid rgba(0, 0, 0, .125) -} - -.card-header:first-child { - border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0 -} - -.card-footer { - padding: .75rem 1.25rem; - background-color: rgba(0, 0, 0, .03); - border-top: 1px solid rgba(0, 0, 0, .125) -} - -.card-footer:last-child { - border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px) -} - -.card-header-tabs { - margin-right: -.625rem; - margin-bottom: -.75rem; - margin-left: -.625rem; - border-bottom: 0 -} - -.card-header-pills { - margin-right: -.625rem; - margin-left: -.625rem -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; - border-radius: calc(.25rem - 1px) -} - -.card-img, -.card-img-bottom, -.card-img-top { - -ms-flex-negative: 0; - flex-shrink: 0; - width: 100% -} - -.card-img, -.card-img-top { - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(.25rem - 1px); - border-bottom-left-radius: calc(.25rem - 1px) -} - -.card-deck .card { - margin-bottom: 15px -} - -@media (min-width:576px) { - .card-deck { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px - } - - .card-deck .card { - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px - } -} - -.card-group>.card { - margin-bottom: 15px -} - -@media (min-width:576px) { - .card-group { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap - } - - .card-group>.card { - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-bottom: 0 - } - - .card-group>.card+.card { - margin-left: 0; - border-left: 0 - } - - .card-group>.card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 - } - - .card-group>.card:not(:last-child) .card-header, - .card-group>.card:not(:last-child) .card-img-top { - border-top-right-radius: 0 - } - - .card-group>.card:not(:last-child) .card-footer, - .card-group>.card:not(:last-child) .card-img-bottom { - border-bottom-right-radius: 0 - } - - .card-group>.card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 - } - - .card-group>.card:not(:first-child) .card-header, - .card-group>.card:not(:first-child) .card-img-top { - border-top-left-radius: 0 - } - - .card-group>.card:not(:first-child) .card-footer, - .card-group>.card:not(:first-child) .card-img-bottom { - border-bottom-left-radius: 0 - } -} - -.card-columns .card { - margin-bottom: .75rem -} - -@media (min-width:576px) { - .card-columns { - -webkit-column-count: 3; - -moz-column-count: 3; - column-count: 3; - -webkit-column-gap: 1.25rem; - -moz-column-gap: 1.25rem; - column-gap: 1.25rem; - orphans: 1; - widows: 1 - } - - .card-columns .card { - display: inline-block; - width: 100% - } -} - -.accordion { - overflow-anchor: none -} - -.accordion>.card { - overflow: hidden -} - -.accordion>.card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 -} - -.accordion>.card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.accordion>.card>.card-header { - border-radius: 0; - margin-bottom: -1px -} - -.breadcrumb { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding: .75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: .25rem -} - -.breadcrumb-item+.breadcrumb-item { - padding-left: .5rem -} - -.breadcrumb-item+.breadcrumb-item::before { - float: left; - padding-right: .5rem; - color: #6c757d; - content: "/" -} - -.breadcrumb-item+.breadcrumb-item:hover::before { - text-decoration: underline -} - -.breadcrumb-item+.breadcrumb-item:hover::before { - text-decoration: none -} - -.breadcrumb-item.active { - color: #6c757d -} - -.pagination { - display: -ms-flexbox; - display: flex; - padding-left: 0; - list-style: none; - border-radius: .25rem -} - -.page-link { - position: relative; - display: block; - padding: .5rem .75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6 -} - -.page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6 -} - -.page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: .25rem; - border-bottom-left-radius: .25rem -} - -.page-item:last-child .page-link { - border-top-right-radius: .25rem; - border-bottom-right-radius: .25rem -} - -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6 -} - -.pagination-lg .page-link { - padding: .75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5 -} - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: .3rem; - border-bottom-left-radius: .3rem -} - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: .3rem; - border-bottom-right-radius: .3rem -} - -.pagination-sm .page-link { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5 -} - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: .2rem; - border-bottom-left-radius: .2rem -} - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: .2rem; - border-bottom-right-radius: .2rem -} - -.badge { - display: inline-block; - padding: .25em .4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25rem; - transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .badge { - transition: none - } -} - -a.badge:focus, -a.badge:hover { - text-decoration: none -} - -.badge:empty { - display: none -} - -.btn .badge { - position: relative; - top: -1px -} - -.badge-pill { - padding-right: .6em; - padding-left: .6em; - border-radius: 10rem -} - -.badge-primary { - color: #fff; - background-color: #007bff -} - -a.badge-primary:focus, -a.badge-primary:hover { - color: #fff; - background-color: #0062cc -} - -a.badge-primary.focus, -a.badge-primary:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.badge-secondary { - color: #fff; - background-color: #6c757d -} - -a.badge-secondary:focus, -a.badge-secondary:hover { - color: #fff; - background-color: #545b62 -} - -a.badge-secondary.focus, -a.badge-secondary:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.badge-success { - color: #fff; - background-color: #28a745 -} - -a.badge-success:focus, -a.badge-success:hover { - color: #fff; - background-color: #1e7e34 -} - -a.badge-success.focus, -a.badge-success:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.badge-info { - color: #fff; - background-color: #17a2b8 -} - -a.badge-info:focus, -a.badge-info:hover { - color: #fff; - background-color: #117a8b -} - -a.badge-info.focus, -a.badge-info:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.badge-warning { - color: #212529; - background-color: #ffc107 -} - -a.badge-warning:focus, -a.badge-warning:hover { - color: #212529; - background-color: #d39e00 -} - -a.badge-warning.focus, -a.badge-warning:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.badge-danger { - color: #fff; - background-color: #dc3545 -} - -a.badge-danger:focus, -a.badge-danger:hover { - color: #fff; - background-color: #bd2130 -} - -a.badge-danger.focus, -a.badge-danger:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.badge-light { - color: #212529; - background-color: #f8f9fa -} - -a.badge-light:focus, -a.badge-light:hover { - color: #212529; - background-color: #dae0e5 -} - -a.badge-light.focus, -a.badge-light:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.badge-dark { - color: #fff; - background-color: #343a40 -} - -a.badge-dark:focus, -a.badge-dark:hover { - color: #fff; - background-color: #1d2124 -} - -a.badge-dark.focus, -a.badge-dark:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: .3rem -} - -@media (min-width:576px) { - .jumbotron { - padding: 4rem 2rem - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0 -} - -.alert { - position: relative; - padding: .75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: .25rem -} - -.alert-heading { - color: inherit -} - -.alert-link { - font-weight: 700 -} - -.alert-dismissible { - padding-right: 4rem -} - -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: .75rem 1.25rem; - color: inherit -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff -} - -.alert-primary hr { - border-top-color: #9fcdff -} - -.alert-primary .alert-link { - color: #002752 -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db -} - -.alert-secondary hr { - border-top-color: #c8cbcf -} - -.alert-secondary .alert-link { - color: #202326 -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb -} - -.alert-success hr { - border-top-color: #b1dfbb -} - -.alert-success .alert-link { - color: #0b2e13 -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb -} - -.alert-info hr { - border-top-color: #abdde5 -} - -.alert-info .alert-link { - color: #062c33 -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba -} - -.alert-warning hr { - border-top-color: #ffe8a1 -} - -.alert-warning .alert-link { - color: #533f03 -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb -} - -.alert-danger hr { - border-top-color: #f1b0b7 -} - -.alert-danger .alert-link { - color: #491217 -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe -} - -.alert-light hr { - border-top-color: #ececf6 -} - -.alert-light .alert-link { - color: #686868 -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca -} - -.alert-dark hr { - border-top-color: #b9bbbe -} - -.alert-dark .alert-link { - color: #040505 -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0 - } - - to { - background-position: 0 0 - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0 - } - - to { - background-position: 0 0 - } -} - -.progress { - display: -ms-flexbox; - display: flex; - height: 1rem; - overflow: hidden; - line-height: 0; - font-size: .75rem; - background-color: #e9ecef; - border-radius: .25rem -} - -.progress-bar { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #007bff; - transition: width .6s ease -} - -@media (prefers-reduced-motion:reduce) { - .progress-bar { - transition: none - } -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem -} - -.progress-bar-animated { - -webkit-animation: 1s linear infinite progress-bar-stripes; - animation: 1s linear infinite progress-bar-stripes -} - -@media (prefers-reduced-motion:reduce) { - .progress-bar-animated { - -webkit-animation: none; - animation: none - } -} - -.media { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start -} - -.media-body { - -ms-flex: 1; - flex: 1 -} - -.list-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: .25rem -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit -} - -.list-group-item-action:focus, -.list-group-item-action:hover { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa -} - -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef -} - -.list-group-item { - position: relative; - display: block; - padding: .75rem 1.25rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, .125) -} - -.list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit -} - -.list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit -} - -.list-group-item.disabled, -.list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff -} - -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.list-group-item+.list-group-item { - border-top-width: 0 -} - -.list-group-item+.list-group-item.active { - margin-top: -1px; - border-top-width: 1px -} - -.list-group-horizontal { - -ms-flex-direction: row; - flex-direction: row -} - -.list-group-horizontal>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 -} - -.list-group-horizontal>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 -} - -.list-group-horizontal>.list-group-item.active { - margin-top: 0 -} - -.list-group-horizontal>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 -} - -.list-group-horizontal>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px -} - -@media (min-width:576px) { - .list-group-horizontal-sm { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-sm>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-sm>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-sm>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-sm>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-sm>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:768px) { - .list-group-horizontal-md { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-md>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-md>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-md>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-md>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-md>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:992px) { - .list-group-horizontal-lg { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-lg>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-lg>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-lg>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-lg>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-lg>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:1200px) { - .list-group-horizontal-xl { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-xl>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-xl>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-xl>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-xl>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-xl>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -.list-group-flush { - border-radius: 0 -} - -.list-group-flush>.list-group-item { - border-width: 0 0 1px -} - -.list-group-flush>.list-group-item:last-child { - border-bottom-width: 0 -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff -} - -.list-group-item-primary.list-group-item-action:focus, -.list-group-item-primary.list-group-item-action:hover { - color: #004085; - background-color: #9fcdff -} - -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085 -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db -} - -.list-group-item-secondary.list-group-item-action:focus, -.list-group-item-secondary.list-group-item-action:hover { - color: #383d41; - background-color: #c8cbcf -} - -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41 -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb -} - -.list-group-item-success.list-group-item-action:focus, -.list-group-item-success.list-group-item-action:hover { - color: #155724; - background-color: #b1dfbb -} - -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724 -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb -} - -.list-group-item-info.list-group-item-action:focus, -.list-group-item-info.list-group-item-action:hover { - color: #0c5460; - background-color: #abdde5 -} - -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460 -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba -} - -.list-group-item-warning.list-group-item-action:focus, -.list-group-item-warning.list-group-item-action:hover { - color: #856404; - background-color: #ffe8a1 -} - -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404 -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb -} - -.list-group-item-danger.list-group-item-action:focus, -.list-group-item-danger.list-group-item-action:hover { - color: #721c24; - background-color: #f1b0b7 -} - -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24 -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe -} - -.list-group-item-light.list-group-item-action:focus, -.list-group-item-light.list-group-item-action:hover { - color: #818182; - background-color: #ececf6 -} - -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182 -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca -} - -.list-group-item-dark.list-group-item-action:focus, -.list-group-item-dark.list-group-item-action:hover { - color: #1b1e21; - background-color: #b9bbbe -} - -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21 -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5 -} - -.close:hover { - color: #000; - text-decoration: none -} - -.close:not(:disabled):not(.disabled):focus, -.close:not(:disabled):not(.disabled):hover { - opacity: .75 -} - -button.close { - padding: 0; - background-color: transparent; - border: 0 -} - -a.close.disabled { - pointer-events: none -} - -.toast { - -ms-flex-preferred-size: 350px; - flex-basis: 350px; - max-width: 350px; - font-size: .875rem; - background-color: rgba(255, 255, 255, .85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .1); - box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1); - opacity: 0; - border-radius: .25rem -} - -.toast:not(:last-child) { - margin-bottom: .75rem -} - -.toast.showing { - opacity: 1 -} - -.toast.show { - display: block; - opacity: 1 -} - -.toast.hide { - display: none -} - -.toast-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: .25rem .75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, .85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, .05); - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.toast-body { - padding: .75rem -} - -.modal-open { - overflow: hidden -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto -} - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0 -} - -.modal-dialog { - position: relative; - width: auto; - margin: .5rem; - pointer-events: none -} - -.modal.fade .modal-dialog { - transition: -webkit-transform .3s ease-out; - transition: transform .3s ease-out; - transition: transform .3s ease-out, -webkit-transform .3s ease-out; - -webkit-transform: translate(0, -50px); - transform: translate(0, -50px) -} - -@media (prefers-reduced-motion:reduce) { - .modal.fade .modal-dialog { - transition: none - } -} - -.modal.show .modal-dialog { - -webkit-transform: none; - transform: none -} - -.modal.modal-static .modal-dialog { - -webkit-transform: scale(1.02); - transform: scale(1.02) -} - -.modal-dialog-scrollable { - display: -ms-flexbox; - display: flex; - max-height: calc(100% - 1rem) -} - -.modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden -} - -.modal-dialog-scrollable .modal-footer, -.modal-dialog-scrollable .modal-header { - -ms-flex-negative: 0; - flex-shrink: 0 -} - -.modal-dialog-scrollable .modal-body { - overflow-y: auto -} - -.modal-dialog-centered { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - min-height: calc(100% - 1rem) -} - -.modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - height: -webkit-min-content; - height: -moz-min-content; - height: min-content; - content: "" -} - -.modal-dialog-centered.modal-dialog-scrollable { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - height: 100% -} - -.modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none -} - -.modal-dialog-centered.modal-dialog-scrollable::before { - content: none -} - -.modal-content { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem; - outline: 0 -} - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000 -} - -.modal-backdrop.fade { - opacity: 0 -} - -.modal-backdrop.show { - opacity: .5 -} - -.modal-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(.3rem - 1px); - border-top-right-radius: calc(.3rem - 1px) -} - -.modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5 -} - -.modal-body { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1rem -} - -.modal-footer { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: end; - justify-content: flex-end; - padding: .75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(.3rem - 1px); - border-bottom-left-radius: calc(.3rem - 1px) -} - -.modal-footer>* { - margin: .25rem -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll -} - -@media (min-width:576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto - } - - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem) - } - - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem) - } - - .modal-dialog-centered { - min-height: calc(100% - 3.5rem) - } - - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - height: -webkit-min-content; - height: -moz-min-content; - height: min-content - } - - .modal-sm { - max-width: 300px - } -} - -@media (min-width:992px) { - - .modal-lg, - .modal-xl { - max-width: 800px - } -} - -@media (min-width:1200px) { - .modal-xl { - max-width: 1140px - } -} - -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: .875rem; - word-wrap: break-word; - opacity: 0 -} - -.tooltip.show { - opacity: .9 -} - -.tooltip .arrow { - position: absolute; - display: block; - width: .8rem; - height: .4rem -} - -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid -} - -.bs-tooltip-auto[x-placement^=top], -.bs-tooltip-top { - padding: .4rem 0 -} - -.bs-tooltip-auto[x-placement^=top] .arrow, -.bs-tooltip-top .arrow { - bottom: 0 -} - -.bs-tooltip-auto[x-placement^=top] .arrow::before, -.bs-tooltip-top .arrow::before { - top: 0; - border-width: .4rem .4rem 0; - border-top-color: #000 -} - -.bs-tooltip-auto[x-placement^=right], -.bs-tooltip-right { - padding: 0 .4rem -} - -.bs-tooltip-auto[x-placement^=right] .arrow, -.bs-tooltip-right .arrow { - left: 0; - width: .4rem; - height: .8rem -} - -.bs-tooltip-auto[x-placement^=right] .arrow::before, -.bs-tooltip-right .arrow::before { - right: 0; - border-width: .4rem .4rem .4rem 0; - border-right-color: #000 -} - -.bs-tooltip-auto[x-placement^=bottom], -.bs-tooltip-bottom { - padding: .4rem 0 -} - -.bs-tooltip-auto[x-placement^=bottom] .arrow, -.bs-tooltip-bottom .arrow { - top: 0 -} - -.bs-tooltip-auto[x-placement^=bottom] .arrow::before, -.bs-tooltip-bottom .arrow::before { - bottom: 0; - border-width: 0 .4rem .4rem; - border-bottom-color: #000 -} - -.bs-tooltip-auto[x-placement^=left], -.bs-tooltip-left { - padding: 0 .4rem -} - -.bs-tooltip-auto[x-placement^=left] .arrow, -.bs-tooltip-left .arrow { - right: 0; - width: .4rem; - height: .8rem -} - -.bs-tooltip-auto[x-placement^=left] .arrow::before, -.bs-tooltip-left .arrow::before { - left: 0; - border-width: .4rem 0 .4rem .4rem; - border-left-color: #000 -} - -.tooltip-inner { - max-width: 200px; - padding: .25rem .5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: .25rem -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: .875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem -} - -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: .5rem; - margin: 0 .3rem -} - -.popover .arrow::after, -.popover .arrow::before { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid -} - -.bs-popover-auto[x-placement^=top], -.bs-popover-top { - margin-bottom: .5rem -} - -.bs-popover-auto[x-placement^=top]>.arrow, -.bs-popover-top>.arrow { - bottom: calc(-.5rem - 1px) -} - -.bs-popover-auto[x-placement^=top]>.arrow::before, -.bs-popover-top>.arrow::before { - bottom: 0; - border-width: .5rem .5rem 0; - border-top-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=top]>.arrow::after, -.bs-popover-top>.arrow::after { - bottom: 1px; - border-width: .5rem .5rem 0; - border-top-color: #fff -} - -.bs-popover-auto[x-placement^=right], -.bs-popover-right { - margin-left: .5rem -} - -.bs-popover-auto[x-placement^=right]>.arrow, -.bs-popover-right>.arrow { - left: calc(-.5rem - 1px); - width: .5rem; - height: 1rem; - margin: .3rem 0 -} - -.bs-popover-auto[x-placement^=right]>.arrow::before, -.bs-popover-right>.arrow::before { - left: 0; - border-width: .5rem .5rem .5rem 0; - border-right-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=right]>.arrow::after, -.bs-popover-right>.arrow::after { - left: 1px; - border-width: .5rem .5rem .5rem 0; - border-right-color: #fff -} - -.bs-popover-auto[x-placement^=bottom], -.bs-popover-bottom { - margin-top: .5rem -} - -.bs-popover-auto[x-placement^=bottom]>.arrow, -.bs-popover-bottom>.arrow { - top: calc(-.5rem - 1px) -} - -.bs-popover-auto[x-placement^=bottom]>.arrow::before, -.bs-popover-bottom>.arrow::before { - top: 0; - border-width: 0 .5rem .5rem .5rem; - border-bottom-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=bottom]>.arrow::after, -.bs-popover-bottom>.arrow::after { - top: 1px; - border-width: 0 .5rem .5rem .5rem; - border-bottom-color: #fff -} - -.bs-popover-auto[x-placement^=bottom] .popover-header::before, -.bs-popover-bottom .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7 -} - -.bs-popover-auto[x-placement^=left], -.bs-popover-left { - margin-right: .5rem -} - -.bs-popover-auto[x-placement^=left]>.arrow, -.bs-popover-left>.arrow { - right: calc(-.5rem - 1px); - width: .5rem; - height: 1rem; - margin: .3rem 0 -} - -.bs-popover-auto[x-placement^=left]>.arrow::before, -.bs-popover-left>.arrow::before { - right: 0; - border-width: .5rem 0 .5rem .5rem; - border-left-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=left]>.arrow::after, -.bs-popover-left>.arrow::after { - right: 1px; - border-width: .5rem 0 .5rem .5rem; - border-left-color: #fff -} - -.popover-header { - padding: .5rem .75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(.3rem - 1px); - border-top-right-radius: calc(.3rem - 1px) -} - -.popover-header:empty { - display: none -} - -.popover-body { - padding: .5rem .75rem; - color: #212529 -} - -.carousel { - position: relative -} - -.carousel.pointer-event { - -ms-touch-action: pan-y; - touch-action: pan-y -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden -} - -.carousel-inner::after { - display: block; - clear: both; - content: "" -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - transition: -webkit-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .carousel-item { - transition: none - } -} - -.carousel-item-next, -.carousel-item-prev, -.carousel-item.active { - display: block -} - -.active.carousel-item-right, -.carousel-item-next:not(.carousel-item-left) { - -webkit-transform: translateX(100%); - transform: translateX(100%) -} - -.active.carousel-item-left, -.carousel-item-prev:not(.carousel-item-right) { - -webkit-transform: translateX(-100%); - transform: translateX(-100%) -} - -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - -webkit-transform: none; - transform: none -} - -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right, -.carousel-fade .carousel-item.active { - z-index: 1; - opacity: 1 -} - -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: opacity 0s .6s -} - -@media (prefers-reduced-motion:reduce) { - - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none - } -} - -.carousel-control-next, -.carousel-control-prev { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: 15%; - padding: 0; - color: #fff; - text-align: center; - background: 0 0; - border: 0; - opacity: .5; - transition: opacity .15s ease -} - -@media (prefers-reduced-motion:reduce) { - - .carousel-control-next, - .carousel-control-prev { - transition: none - } -} - -.carousel-control-next:focus, -.carousel-control-next:hover, -.carousel-control-prev:focus, -.carousel-control-prev:hover { - color: #fff; - text-decoration: none; - outline: 0; - opacity: .9 -} - -.carousel-control-prev { - left: 0 -} - -.carousel-control-next { - right: 0 -} - -.carousel-control-next-icon, -.carousel-control-prev-icon { - display: inline-block; - width: 20px; - height: 20px; - background: 50%/100% 100% no-repeat -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e") -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e") -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: -ms-flexbox; - display: flex; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none -} - -.carousel-indicators li { - box-sizing: content-box; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity .6s ease -} - -@media (prefers-reduced-motion:reduce) { - .carousel-indicators li { - transition: none - } -} - -.carousel-indicators .active { - opacity: 1 -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center -} - -@-webkit-keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -@keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -.125em; - border: .25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - -webkit-animation: .75s linear infinite spinner-border; - animation: .75s linear infinite spinner-border -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: .2em -} - -@-webkit-keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0) - } - - 50% { - opacity: 1; - -webkit-transform: none; - transform: none - } -} - -@keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0) - } - - 50% { - opacity: 1; - -webkit-transform: none; - transform: none - } -} - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: -.125em; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - -webkit-animation: .75s linear infinite spinner-grow; - animation: .75s linear infinite spinner-grow -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem -} - -@media (prefers-reduced-motion:reduce) { - - .spinner-border, - .spinner-grow { - -webkit-animation-duration: 1.5s; - animation-duration: 1.5s - } -} - -.align-baseline { - vertical-align: baseline !important -} - -.align-top { - vertical-align: top !important -} - -.align-middle { - vertical-align: middle !important -} - -.align-bottom { - vertical-align: bottom !important -} - -.align-text-bottom { - vertical-align: text-bottom !important -} - -.align-text-top { - vertical-align: text-top !important -} - -.bg-primary { - background-color: #007bff !important -} - -a.bg-primary:focus, -a.bg-primary:hover, -button.bg-primary:focus, -button.bg-primary:hover { - background-color: #0062cc !important -} - -.bg-secondary { - background-color: #6c757d !important -} - -a.bg-secondary:focus, -a.bg-secondary:hover, -button.bg-secondary:focus, -button.bg-secondary:hover { - background-color: #545b62 !important -} - -.bg-success { - background-color: #28a745 !important -} - -a.bg-success:focus, -a.bg-success:hover, -button.bg-success:focus, -button.bg-success:hover { - background-color: #1e7e34 !important -} - -.bg-info { - background-color: #17a2b8 !important -} - -a.bg-info:focus, -a.bg-info:hover, -button.bg-info:focus, -button.bg-info:hover { - background-color: #117a8b !important -} - -.bg-warning { - background-color: #ffc107 !important -} - -a.bg-warning:focus, -a.bg-warning:hover, -button.bg-warning:focus, -button.bg-warning:hover { - background-color: #d39e00 !important -} - -.bg-danger { - background-color: #dc3545 !important -} - -a.bg-danger:focus, -a.bg-danger:hover, -button.bg-danger:focus, -button.bg-danger:hover { - background-color: #bd2130 !important -} - -.bg-light { - background-color: #f8f9fa !important -} - -a.bg-light:focus, -a.bg-light:hover, -button.bg-light:focus, -button.bg-light:hover { - background-color: #dae0e5 !important -} - -.bg-dark { - background-color: #343a40 !important -} - -a.bg-dark:focus, -a.bg-dark:hover, -button.bg-dark:focus, -button.bg-dark:hover { - background-color: #1d2124 !important -} - -.bg-white { - background-color: #fff !important -} - -.bg-transparent { - background-color: transparent !important -} - -.border { - border: 1px solid #dee2e6 !important -} - -.border-top { - border-top: 1px solid #dee2e6 !important -} - -.border-right { - border-right: 1px solid #dee2e6 !important -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important -} - -.border-left { - border-left: 1px solid #dee2e6 !important -} - -.border-0 { - border: 0 !important -} - -.border-top-0 { - border-top: 0 !important -} - -.border-right-0 { - border-right: 0 !important -} - -.border-bottom-0 { - border-bottom: 0 !important -} - -.border-left-0 { - border-left: 0 !important -} - -.border-primary { - border-color: #007bff !important -} - -.border-secondary { - border-color: #6c757d !important -} - -.border-success { - border-color: #28a745 !important -} - -.border-info { - border-color: #17a2b8 !important -} - -.border-warning { - border-color: #ffc107 !important -} - -.border-danger { - border-color: #dc3545 !important -} - -.border-light { - border-color: #f8f9fa !important -} - -.border-dark { - border-color: #343a40 !important -} - -.border-white { - border-color: #fff !important -} - -.rounded-sm { - border-radius: .2rem !important -} - -.rounded { - border-radius: .25rem !important -} - -.rounded-top { - border-top-left-radius: .25rem !important; - border-top-right-radius: .25rem !important -} - -.rounded-right { - border-top-right-radius: .25rem !important; - border-bottom-right-radius: .25rem !important -} - -.rounded-bottom { - border-bottom-right-radius: .25rem !important; - border-bottom-left-radius: .25rem !important -} - -.rounded-left { - border-top-left-radius: .25rem !important; - border-bottom-left-radius: .25rem !important -} - -.rounded-lg { - border-radius: .3rem !important -} - -.rounded-circle { - border-radius: 50% !important -} - -.rounded-pill { - border-radius: 50rem !important -} - -.rounded-0 { - border-radius: 0 !important -} - -.clearfix::after { - display: block; - clear: both; - content: "" -} - -.d-none { - display: none !important -} - -.d-inline { - display: inline !important -} - -.d-inline-block { - display: inline-block !important -} - -.d-block { - display: block !important -} - -.d-table { - display: table !important -} - -.d-table-row { - display: table-row !important -} - -.d-table-cell { - display: table-cell !important -} - -.d-flex { - display: -ms-flexbox !important; - display: flex !important -} - -.d-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important -} - -@media (min-width:576px) { - .d-sm-none { - display: none !important - } - - .d-sm-inline { - display: inline !important - } - - .d-sm-inline-block { - display: inline-block !important - } - - .d-sm-block { - display: block !important - } - - .d-sm-table { - display: table !important - } - - .d-sm-table-row { - display: table-row !important - } - - .d-sm-table-cell { - display: table-cell !important - } - - .d-sm-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-sm-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:768px) { - .d-md-none { - display: none !important - } - - .d-md-inline { - display: inline !important - } - - .d-md-inline-block { - display: inline-block !important - } - - .d-md-block { - display: block !important - } - - .d-md-table { - display: table !important - } - - .d-md-table-row { - display: table-row !important - } - - .d-md-table-cell { - display: table-cell !important - } - - .d-md-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-md-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:992px) { - .d-lg-none { - display: none !important - } - - .d-lg-inline { - display: inline !important - } - - .d-lg-inline-block { - display: inline-block !important - } - - .d-lg-block { - display: block !important - } - - .d-lg-table { - display: table !important - } - - .d-lg-table-row { - display: table-row !important - } - - .d-lg-table-cell { - display: table-cell !important - } - - .d-lg-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-lg-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:1200px) { - .d-xl-none { - display: none !important - } - - .d-xl-inline { - display: inline !important - } - - .d-xl-inline-block { - display: inline-block !important - } - - .d-xl-block { - display: block !important - } - - .d-xl-table { - display: table !important - } - - .d-xl-table-row { - display: table-row !important - } - - .d-xl-table-cell { - display: table-cell !important - } - - .d-xl-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-xl-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media print { - .d-print-none { - display: none !important - } - - .d-print-inline { - display: inline !important - } - - .d-print-inline-block { - display: inline-block !important - } - - .d-print-block { - display: block !important - } - - .d-print-table { - display: table !important - } - - .d-print-table-row { - display: table-row !important - } - - .d-print-table-cell { - display: table-cell !important - } - - .d-print-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-print-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden -} - -.embed-responsive::before { - display: block; - content: "" -} - -.embed-responsive .embed-responsive-item, -.embed-responsive embed, -.embed-responsive iframe, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0 -} - -.embed-responsive-21by9::before { - padding-top: 42.857143% -} - -.embed-responsive-16by9::before { - padding-top: 56.25% -} - -.embed-responsive-4by3::before { - padding-top: 75% -} - -.embed-responsive-1by1::before { - padding-top: 100% -} - -.flex-row { - -ms-flex-direction: row !important; - flex-direction: row !important -} - -.flex-column { - -ms-flex-direction: column !important; - flex-direction: column !important -} - -.flex-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important -} - -.flex-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important -} - -.flex-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important -} - -.flex-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important -} - -.flex-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important -} - -.flex-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important -} - -.flex-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important -} - -.justify-content-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important -} - -.justify-content-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important -} - -.justify-content-center { - -ms-flex-pack: center !important; - justify-content: center !important -} - -.justify-content-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important -} - -.align-items-start { - -ms-flex-align: start !important; - align-items: flex-start !important -} - -.align-items-end { - -ms-flex-align: end !important; - align-items: flex-end !important -} - -.align-items-center { - -ms-flex-align: center !important; - align-items: center !important -} - -.align-items-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important -} - -.align-items-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important -} - -@media (min-width:576px) { - .flex-sm-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-sm-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-sm-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-sm-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-sm-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-sm-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-sm-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-sm-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-sm-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-sm-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-sm-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-sm-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-sm-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-sm-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-sm-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-sm-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-sm-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-sm-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:768px) { - .flex-md-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-md-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-md-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-md-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-md-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-md-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-md-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-md-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-md-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-md-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-md-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-md-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-md-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-md-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-md-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-md-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-md-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-md-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:992px) { - .flex-lg-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-lg-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-lg-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-lg-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-lg-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-lg-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-lg-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-lg-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-lg-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-lg-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-lg-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-lg-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-lg-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-lg-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-lg-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-lg-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-lg-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-lg-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:1200px) { - .flex-xl-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-xl-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-xl-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-xl-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-xl-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-xl-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-xl-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-xl-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-xl-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-xl-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-xl-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-xl-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-xl-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-xl-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-xl-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-xl-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-xl-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-xl-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -.float-left { - float: left !important -} - -.float-right { - float: right !important -} - -.float-none { - float: none !important -} - -@media (min-width:576px) { - .float-sm-left { - float: left !important - } - - .float-sm-right { - float: right !important - } - - .float-sm-none { - float: none !important - } -} - -@media (min-width:768px) { - .float-md-left { - float: left !important - } - - .float-md-right { - float: right !important - } - - .float-md-none { - float: none !important - } -} - -@media (min-width:992px) { - .float-lg-left { - float: left !important - } - - .float-lg-right { - float: right !important - } - - .float-lg-none { - float: none !important - } -} - -@media (min-width:1200px) { - .float-xl-left { - float: left !important - } - - .float-xl-right { - float: right !important - } - - .float-xl-none { - float: none !important - } -} - -.user-select-all { - -webkit-user-select: all !important; - -moz-user-select: all !important; - user-select: all !important -} - -.user-select-auto { - -webkit-user-select: auto !important; - -moz-user-select: auto !important; - -ms-user-select: auto !important; - user-select: auto !important -} - -.user-select-none { - -webkit-user-select: none !important; - -moz-user-select: none !important; - -ms-user-select: none !important; - user-select: none !important -} - -.overflow-auto { - overflow: auto !important -} - -.overflow-hidden { - overflow: hidden !important -} - -.position-static { - position: static !important -} - -.position-relative { - position: relative !important -} - -.position-absolute { - position: absolute !important -} - -.position-fixed { - position: fixed !important -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030 -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030 -} - -@supports ((position:-webkit-sticky) or (position:sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020 - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0 -} - -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal -} - -.shadow-sm { - box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important -} - -.shadow { - box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important -} - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important -} - -.shadow-none { - box-shadow: none !important -} - -.w-25 { - width: 25% !important -} - -.w-50 { - width: 50% !important -} - -.w-75 { - width: 75% !important -} - -.w-100 { - width: 100% !important -} - -.w-auto { - width: auto !important -} - -.h-25 { - height: 25% !important -} - -.h-50 { - height: 50% !important -} - -.h-75 { - height: 75% !important -} - -.h-100 { - height: 100% !important -} - -.h-auto { - height: auto !important -} - -.mw-100 { - max-width: 100% !important -} - -.mh-100 { - max-height: 100% !important -} - -.min-vw-100 { - min-width: 100vw !important -} - -.min-vh-100 { - min-height: 100vh !important -} - -.vw-100 { - width: 100vw !important -} - -.vh-100 { - height: 100vh !important -} - -.m-0 { - margin: 0 !important -} - -.mt-0, -.my-0 { - margin-top: 0 !important -} - -.mr-0, -.mx-0 { - margin-right: 0 !important -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important -} - -.ml-0, -.mx-0 { - margin-left: 0 !important -} - -.m-1 { - margin: .25rem !important -} - -.mt-1, -.my-1 { - margin-top: .25rem !important -} - -.mr-1, -.mx-1 { - margin-right: .25rem !important -} - -.mb-1, -.my-1 { - margin-bottom: .25rem !important -} - -.ml-1, -.mx-1 { - margin-left: .25rem !important -} - -.m-2 { - margin: .5rem !important -} - -.mt-2, -.my-2 { - margin-top: .5rem !important -} - -.mr-2, -.mx-2 { - margin-right: .5rem !important -} - -.mb-2, -.my-2 { - margin-bottom: .5rem !important -} - -.ml-2, -.mx-2 { - margin-left: .5rem !important -} - -.m-3 { - margin: 1rem !important -} - -.mt-3, -.my-3 { - margin-top: 1rem !important -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important -} - -.m-4 { - margin: 1.5rem !important -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important -} - -.m-5 { - margin: 3rem !important -} - -.mt-5, -.my-5 { - margin-top: 3rem !important -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important -} - -.p-0 { - padding: 0 !important -} - -.pt-0, -.py-0 { - padding-top: 0 !important -} - -.pr-0, -.px-0 { - padding-right: 0 !important -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important -} - -.pl-0, -.px-0 { - padding-left: 0 !important -} - -.p-1 { - padding: .25rem !important -} - -.pt-1, -.py-1 { - padding-top: .25rem !important -} - -.pr-1, -.px-1 { - padding-right: .25rem !important -} - -.pb-1, -.py-1 { - padding-bottom: .25rem !important -} - -.pl-1, -.px-1 { - padding-left: .25rem !important -} - -.p-2 { - padding: .5rem !important -} - -.pt-2, -.py-2 { - padding-top: .5rem !important -} - -.pr-2, -.px-2 { - padding-right: .5rem !important -} - -.pb-2, -.py-2 { - padding-bottom: .5rem !important -} - -.pl-2, -.px-2 { - padding-left: .5rem !important -} - -.p-3 { - padding: 1rem !important -} - -.pt-3, -.py-3 { - padding-top: 1rem !important -} - -.pr-3, -.px-3 { - padding-right: 1rem !important -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important -} - -.pl-3, -.px-3 { - padding-left: 1rem !important -} - -.p-4 { - padding: 1.5rem !important -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important -} - -.p-5 { - padding: 3rem !important -} - -.pt-5, -.py-5 { - padding-top: 3rem !important -} - -.pr-5, -.px-5 { - padding-right: 3rem !important -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important -} - -.pl-5, -.px-5 { - padding-left: 3rem !important -} - -.m-n1 { - margin: -.25rem !important -} - -.mt-n1, -.my-n1 { - margin-top: -.25rem !important -} - -.mr-n1, -.mx-n1 { - margin-right: -.25rem !important -} - -.mb-n1, -.my-n1 { - margin-bottom: -.25rem !important -} - -.ml-n1, -.mx-n1 { - margin-left: -.25rem !important -} - -.m-n2 { - margin: -.5rem !important -} - -.mt-n2, -.my-n2 { - margin-top: -.5rem !important -} - -.mr-n2, -.mx-n2 { - margin-right: -.5rem !important -} - -.mb-n2, -.my-n2 { - margin-bottom: -.5rem !important -} - -.ml-n2, -.mx-n2 { - margin-left: -.5rem !important -} - -.m-n3 { - margin: -1rem !important -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important -} - -.m-n4 { - margin: -1.5rem !important -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important -} - -.m-n5 { - margin: -3rem !important -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important -} - -.m-auto { - margin: auto !important -} - -.mt-auto, -.my-auto { - margin-top: auto !important -} - -.mr-auto, -.mx-auto { - margin-right: auto !important -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important -} - -.ml-auto, -.mx-auto { - margin-left: auto !important -} - -@media (min-width:576px) { - .m-sm-0 { - margin: 0 !important - } - - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important - } - - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important - } - - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important - } - - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important - } - - .m-sm-1 { - margin: .25rem !important - } - - .mt-sm-1, - .my-sm-1 { - margin-top: .25rem !important - } - - .mr-sm-1, - .mx-sm-1 { - margin-right: .25rem !important - } - - .mb-sm-1, - .my-sm-1 { - margin-bottom: .25rem !important - } - - .ml-sm-1, - .mx-sm-1 { - margin-left: .25rem !important - } - - .m-sm-2 { - margin: .5rem !important - } - - .mt-sm-2, - .my-sm-2 { - margin-top: .5rem !important - } - - .mr-sm-2, - .mx-sm-2 { - margin-right: .5rem !important - } - - .mb-sm-2, - .my-sm-2 { - margin-bottom: .5rem !important - } - - .ml-sm-2, - .mx-sm-2 { - margin-left: .5rem !important - } - - .m-sm-3 { - margin: 1rem !important - } - - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important - } - - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important - } - - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important - } - - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important - } - - .m-sm-4 { - margin: 1.5rem !important - } - - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important - } - - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important - } - - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important - } - - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important - } - - .m-sm-5 { - margin: 3rem !important - } - - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important - } - - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important - } - - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important - } - - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important - } - - .p-sm-0 { - padding: 0 !important - } - - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important - } - - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important - } - - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important - } - - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important - } - - .p-sm-1 { - padding: .25rem !important - } - - .pt-sm-1, - .py-sm-1 { - padding-top: .25rem !important - } - - .pr-sm-1, - .px-sm-1 { - padding-right: .25rem !important - } - - .pb-sm-1, - .py-sm-1 { - padding-bottom: .25rem !important - } - - .pl-sm-1, - .px-sm-1 { - padding-left: .25rem !important - } - - .p-sm-2 { - padding: .5rem !important - } - - .pt-sm-2, - .py-sm-2 { - padding-top: .5rem !important - } - - .pr-sm-2, - .px-sm-2 { - padding-right: .5rem !important - } - - .pb-sm-2, - .py-sm-2 { - padding-bottom: .5rem !important - } - - .pl-sm-2, - .px-sm-2 { - padding-left: .5rem !important - } - - .p-sm-3 { - padding: 1rem !important - } - - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important - } - - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important - } - - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important - } - - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important - } - - .p-sm-4 { - padding: 1.5rem !important - } - - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important - } - - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important - } - - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important - } - - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important - } - - .p-sm-5 { - padding: 3rem !important - } - - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important - } - - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important - } - - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important - } - - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important - } - - .m-sm-n1 { - margin: -.25rem !important - } - - .mt-sm-n1, - .my-sm-n1 { - margin-top: -.25rem !important - } - - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -.25rem !important - } - - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -.25rem !important - } - - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -.25rem !important - } - - .m-sm-n2 { - margin: -.5rem !important - } - - .mt-sm-n2, - .my-sm-n2 { - margin-top: -.5rem !important - } - - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -.5rem !important - } - - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -.5rem !important - } - - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -.5rem !important - } - - .m-sm-n3 { - margin: -1rem !important - } - - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important - } - - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important - } - - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important - } - - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important - } - - .m-sm-n4 { - margin: -1.5rem !important - } - - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important - } - - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important - } - - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important - } - - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important - } - - .m-sm-n5 { - margin: -3rem !important - } - - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important - } - - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important - } - - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important - } - - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important - } - - .m-sm-auto { - margin: auto !important - } - - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important - } - - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important - } - - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important - } - - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important - } -} - -@media (min-width:768px) { - .m-md-0 { - margin: 0 !important - } - - .mt-md-0, - .my-md-0 { - margin-top: 0 !important - } - - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important - } - - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important - } - - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important - } - - .m-md-1 { - margin: .25rem !important - } - - .mt-md-1, - .my-md-1 { - margin-top: .25rem !important - } - - .mr-md-1, - .mx-md-1 { - margin-right: .25rem !important - } - - .mb-md-1, - .my-md-1 { - margin-bottom: .25rem !important - } - - .ml-md-1, - .mx-md-1 { - margin-left: .25rem !important - } - - .m-md-2 { - margin: .5rem !important - } - - .mt-md-2, - .my-md-2 { - margin-top: .5rem !important - } - - .mr-md-2, - .mx-md-2 { - margin-right: .5rem !important - } - - .mb-md-2, - .my-md-2 { - margin-bottom: .5rem !important - } - - .ml-md-2, - .mx-md-2 { - margin-left: .5rem !important - } - - .m-md-3 { - margin: 1rem !important - } - - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important - } - - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important - } - - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important - } - - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important - } - - .m-md-4 { - margin: 1.5rem !important - } - - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important - } - - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important - } - - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important - } - - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important - } - - .m-md-5 { - margin: 3rem !important - } - - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important - } - - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important - } - - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important - } - - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important - } - - .p-md-0 { - padding: 0 !important - } - - .pt-md-0, - .py-md-0 { - padding-top: 0 !important - } - - .pr-md-0, - .px-md-0 { - padding-right: 0 !important - } - - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important - } - - .pl-md-0, - .px-md-0 { - padding-left: 0 !important - } - - .p-md-1 { - padding: .25rem !important - } - - .pt-md-1, - .py-md-1 { - padding-top: .25rem !important - } - - .pr-md-1, - .px-md-1 { - padding-right: .25rem !important - } - - .pb-md-1, - .py-md-1 { - padding-bottom: .25rem !important - } - - .pl-md-1, - .px-md-1 { - padding-left: .25rem !important - } - - .p-md-2 { - padding: .5rem !important - } - - .pt-md-2, - .py-md-2 { - padding-top: .5rem !important - } - - .pr-md-2, - .px-md-2 { - padding-right: .5rem !important - } - - .pb-md-2, - .py-md-2 { - padding-bottom: .5rem !important - } - - .pl-md-2, - .px-md-2 { - padding-left: .5rem !important - } - - .p-md-3 { - padding: 1rem !important - } - - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important - } - - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important - } - - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important - } - - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important - } - - .p-md-4 { - padding: 1.5rem !important - } - - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important - } - - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important - } - - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important - } - - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important - } - - .p-md-5 { - padding: 3rem !important - } - - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important - } - - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important - } - - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important - } - - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important - } - - .m-md-n1 { - margin: -.25rem !important - } - - .mt-md-n1, - .my-md-n1 { - margin-top: -.25rem !important - } - - .mr-md-n1, - .mx-md-n1 { - margin-right: -.25rem !important - } - - .mb-md-n1, - .my-md-n1 { - margin-bottom: -.25rem !important - } - - .ml-md-n1, - .mx-md-n1 { - margin-left: -.25rem !important - } - - .m-md-n2 { - margin: -.5rem !important - } - - .mt-md-n2, - .my-md-n2 { - margin-top: -.5rem !important - } - - .mr-md-n2, - .mx-md-n2 { - margin-right: -.5rem !important - } - - .mb-md-n2, - .my-md-n2 { - margin-bottom: -.5rem !important - } - - .ml-md-n2, - .mx-md-n2 { - margin-left: -.5rem !important - } - - .m-md-n3 { - margin: -1rem !important - } - - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important - } - - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important - } - - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important - } - - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important - } - - .m-md-n4 { - margin: -1.5rem !important - } - - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important - } - - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important - } - - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important - } - - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important - } - - .m-md-n5 { - margin: -3rem !important - } - - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important - } - - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important - } - - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important - } - - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important - } - - .m-md-auto { - margin: auto !important - } - - .mt-md-auto, - .my-md-auto { - margin-top: auto !important - } - - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important - } - - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important - } - - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important - } -} - -@media (min-width:992px) { - .m-lg-0 { - margin: 0 !important - } - - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important - } - - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important - } - - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important - } - - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important - } - - .m-lg-1 { - margin: .25rem !important - } - - .mt-lg-1, - .my-lg-1 { - margin-top: .25rem !important - } - - .mr-lg-1, - .mx-lg-1 { - margin-right: .25rem !important - } - - .mb-lg-1, - .my-lg-1 { - margin-bottom: .25rem !important - } - - .ml-lg-1, - .mx-lg-1 { - margin-left: .25rem !important - } - - .m-lg-2 { - margin: .5rem !important - } - - .mt-lg-2, - .my-lg-2 { - margin-top: .5rem !important - } - - .mr-lg-2, - .mx-lg-2 { - margin-right: .5rem !important - } - - .mb-lg-2, - .my-lg-2 { - margin-bottom: .5rem !important - } - - .ml-lg-2, - .mx-lg-2 { - margin-left: .5rem !important - } - - .m-lg-3 { - margin: 1rem !important - } - - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important - } - - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important - } - - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important - } - - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important - } - - .m-lg-4 { - margin: 1.5rem !important - } - - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important - } - - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important - } - - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important - } - - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important - } - - .m-lg-5 { - margin: 3rem !important - } - - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important - } - - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important - } - - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important - } - - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important - } - - .p-lg-0 { - padding: 0 !important - } - - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important - } - - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important - } - - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important - } - - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important - } - - .p-lg-1 { - padding: .25rem !important - } - - .pt-lg-1, - .py-lg-1 { - padding-top: .25rem !important - } - - .pr-lg-1, - .px-lg-1 { - padding-right: .25rem !important - } - - .pb-lg-1, - .py-lg-1 { - padding-bottom: .25rem !important - } - - .pl-lg-1, - .px-lg-1 { - padding-left: .25rem !important - } - - .p-lg-2 { - padding: .5rem !important - } - - .pt-lg-2, - .py-lg-2 { - padding-top: .5rem !important - } - - .pr-lg-2, - .px-lg-2 { - padding-right: .5rem !important - } - - .pb-lg-2, - .py-lg-2 { - padding-bottom: .5rem !important - } - - .pl-lg-2, - .px-lg-2 { - padding-left: .5rem !important - } - - .p-lg-3 { - padding: 1rem !important - } - - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important - } - - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important - } - - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important - } - - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important - } - - .p-lg-4 { - padding: 1.5rem !important - } - - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important - } - - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important - } - - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important - } - - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important - } - - .p-lg-5 { - padding: 3rem !important - } - - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important - } - - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important - } - - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important - } - - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important - } - - .m-lg-n1 { - margin: -.25rem !important - } - - .mt-lg-n1, - .my-lg-n1 { - margin-top: -.25rem !important - } - - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -.25rem !important - } - - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -.25rem !important - } - - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -.25rem !important - } - - .m-lg-n2 { - margin: -.5rem !important - } - - .mt-lg-n2, - .my-lg-n2 { - margin-top: -.5rem !important - } - - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -.5rem !important - } - - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -.5rem !important - } - - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -.5rem !important - } - - .m-lg-n3 { - margin: -1rem !important - } - - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important - } - - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important - } - - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important - } - - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important - } - - .m-lg-n4 { - margin: -1.5rem !important - } - - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important - } - - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important - } - - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important - } - - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important - } - - .m-lg-n5 { - margin: -3rem !important - } - - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important - } - - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important - } - - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important - } - - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important - } - - .m-lg-auto { - margin: auto !important - } - - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important - } - - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important - } - - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important - } - - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important - } -} - -@media (min-width:1200px) { - .m-xl-0 { - margin: 0 !important - } - - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important - } - - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important - } - - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important - } - - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important - } - - .m-xl-1 { - margin: .25rem !important - } - - .mt-xl-1, - .my-xl-1 { - margin-top: .25rem !important - } - - .mr-xl-1, - .mx-xl-1 { - margin-right: .25rem !important - } - - .mb-xl-1, - .my-xl-1 { - margin-bottom: .25rem !important - } - - .ml-xl-1, - .mx-xl-1 { - margin-left: .25rem !important - } - - .m-xl-2 { - margin: .5rem !important - } - - .mt-xl-2, - .my-xl-2 { - margin-top: .5rem !important - } - - .mr-xl-2, - .mx-xl-2 { - margin-right: .5rem !important - } - - .mb-xl-2, - .my-xl-2 { - margin-bottom: .5rem !important - } - - .ml-xl-2, - .mx-xl-2 { - margin-left: .5rem !important - } - - .m-xl-3 { - margin: 1rem !important - } - - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important - } - - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important - } - - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important - } - - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important - } - - .m-xl-4 { - margin: 1.5rem !important - } - - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important - } - - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important - } - - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important - } - - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important - } - - .m-xl-5 { - margin: 3rem !important - } - - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important - } - - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important - } - - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important - } - - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important - } - - .p-xl-0 { - padding: 0 !important - } - - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important - } - - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important - } - - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important - } - - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important - } - - .p-xl-1 { - padding: .25rem !important - } - - .pt-xl-1, - .py-xl-1 { - padding-top: .25rem !important - } - - .pr-xl-1, - .px-xl-1 { - padding-right: .25rem !important - } - - .pb-xl-1, - .py-xl-1 { - padding-bottom: .25rem !important - } - - .pl-xl-1, - .px-xl-1 { - padding-left: .25rem !important - } - - .p-xl-2 { - padding: .5rem !important - } - - .pt-xl-2, - .py-xl-2 { - padding-top: .5rem !important - } - - .pr-xl-2, - .px-xl-2 { - padding-right: .5rem !important - } - - .pb-xl-2, - .py-xl-2 { - padding-bottom: .5rem !important - } - - .pl-xl-2, - .px-xl-2 { - padding-left: .5rem !important - } - - .p-xl-3 { - padding: 1rem !important - } - - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important - } - - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important - } - - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important - } - - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important - } - - .p-xl-4 { - padding: 1.5rem !important - } - - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important - } - - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important - } - - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important - } - - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important - } - - .p-xl-5 { - padding: 3rem !important - } - - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important - } - - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important - } - - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important - } - - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important - } - - .m-xl-n1 { - margin: -.25rem !important - } - - .mt-xl-n1, - .my-xl-n1 { - margin-top: -.25rem !important - } - - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -.25rem !important - } - - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -.25rem !important - } - - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -.25rem !important - } - - .m-xl-n2 { - margin: -.5rem !important - } - - .mt-xl-n2, - .my-xl-n2 { - margin-top: -.5rem !important - } - - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -.5rem !important - } - - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -.5rem !important - } - - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -.5rem !important - } - - .m-xl-n3 { - margin: -1rem !important - } - - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important - } - - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important - } - - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important - } - - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important - } - - .m-xl-n4 { - margin: -1.5rem !important - } - - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important - } - - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important - } - - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important - } - - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important - } - - .m-xl-n5 { - margin: -3rem !important - } - - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important - } - - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important - } - - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important - } - - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important - } - - .m-xl-auto { - margin: auto !important - } - - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important - } - - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important - } - - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important - } - - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important - } -} - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: rgba(0, 0, 0, 0) -} - -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important -} - -.text-justify { - text-align: justify !important -} - -.text-wrap { - white-space: normal !important -} - -.text-nowrap { - white-space: nowrap !important -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap -} - -.text-left { - text-align: left !important -} - -.text-right { - text-align: right !important -} - -.text-center { - text-align: center !important -} - -@media (min-width:576px) { - .text-sm-left { - text-align: left !important - } - - .text-sm-right { - text-align: right !important - } - - .text-sm-center { - text-align: center !important - } -} - -@media (min-width:768px) { - .text-md-left { - text-align: left !important - } - - .text-md-right { - text-align: right !important - } - - .text-md-center { - text-align: center !important - } -} - -@media (min-width:992px) { - .text-lg-left { - text-align: left !important - } - - .text-lg-right { - text-align: right !important - } - - .text-lg-center { - text-align: center !important - } -} - -@media (min-width:1200px) { - .text-xl-left { - text-align: left !important - } - - .text-xl-right { - text-align: right !important - } - - .text-xl-center { - text-align: center !important - } -} - -.text-lowercase { - text-transform: lowercase !important -} - -.text-uppercase { - text-transform: uppercase !important -} - -.text-capitalize { - text-transform: capitalize !important -} - -.font-weight-light { - font-weight: 300 !important -} - -.font-weight-lighter { - font-weight: lighter !important -} - -.font-weight-normal { - font-weight: 400 !important -} - -.font-weight-bold { - font-weight: 700 !important -} - -.font-weight-bolder { - font-weight: bolder !important -} - -.font-italic { - font-style: italic !important -} - -.text-white { - color: #fff !important -} - -.text-primary { - color: #007bff !important -} - -a.text-primary:focus, -a.text-primary:hover { - color: #0056b3 !important -} - -.text-secondary { - color: #6c757d !important -} - -a.text-secondary:focus, -a.text-secondary:hover { - color: #494f54 !important -} - -.text-success { - color: #28a745 !important -} - -a.text-success:focus, -a.text-success:hover { - color: #19692c !important -} - -.text-info { - color: #17a2b8 !important -} - -a.text-info:focus, -a.text-info:hover { - color: #0f6674 !important -} - -.text-warning { - color: #ffc107 !important -} - -a.text-warning:focus, -a.text-warning:hover { - color: #ba8b00 !important -} - -.text-danger { - color: #dc3545 !important -} - -a.text-danger:focus, -a.text-danger:hover { - color: #a71d2a !important -} - -.text-light { - color: #f8f9fa !important -} - -a.text-light:focus, -a.text-light:hover { - color: #cbd3da !important -} - -.text-dark { - color: #343a40 !important -} - -a.text-dark:focus, -a.text-dark:hover { - color: #121416 !important -} - -.text-body { - color: #212529 !important -} - -.text-muted { - color: #6c757d !important -} - -.text-black-50 { - color: rgba(0, 0, 0, .5) !important -} - -.text-white-50 { - color: rgba(255, 255, 255, .5) !important -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0 -} - -.text-decoration-none { - text-decoration: none !important -} - -.text-break { - word-break: break-word !important; - word-wrap: break-word !important -} - -.text-reset { - color: inherit !important -} - -.visible { - visibility: visible !important -} - -.invisible { - visibility: hidden !important -} - -@media print { - - *, - ::after, - ::before { - text-shadow: none !important; - box-shadow: none !important - } - - a:not(.btn) { - text-decoration: underline - } - - abbr[title]::after { - content: " (" attr(title) ")" - } - - pre { - white-space: pre-wrap !important - } - - blockquote, - pre { - border: 1px solid #adb5bd; - page-break-inside: avoid - } - - img, - tr { - page-break-inside: avoid - } - - h2, - h3, - p { - orphans: 3; - widows: 3 - } - - h2, - h3 { - page-break-after: avoid - } - - @page { - size: a3 - } - - body { - min-width: 992px !important - } - - .container { - min-width: 992px !important - } - - .navbar { - display: none - } - - .badge { - border: 1px solid #000 - } - - .table { - border-collapse: collapse !important - } - - .table td, - .table th { - background-color: #fff !important - } - - .table-bordered td, - .table-bordered th { - border: 1px solid #dee2e6 !important - } - - .table-dark { - color: inherit - } - - .table-dark tbody+tbody, - .table-dark td, - .table-dark th, - .table-dark thead th { - border-color: #dee2e6 - } - - .table .thead-dark th { - color: inherit; - border-color: #dee2e6 - } -} - -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/css/desktop.ini b/desarrollo/diseno/registro-comercio/css/desktop.ini deleted file mode 100644 index eab26fd7..00000000 Binary files a/desarrollo/diseno/registro-comercio/css/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/css/icofont.min.css b/desarrollo/diseno/registro-comercio/css/icofont.min.css deleted file mode 100644 index 2484430f..00000000 --- a/desarrollo/diseno/registro-comercio/css/icofont.min.css +++ /dev/null @@ -1,8609 +0,0 @@ -/*! -* @package IcoFont -* @version 1.0.1 -* @author IcoFont https://icofont.com -* @copyright Copyright (c) 2015 - 2018 IcoFont -* @license - https://icofont.com/license/ -*/ -@font-face { - font-family: IcoFont; - font-weight: 400; - font-style: Regular; - src: url(../fonts/icofont.woff2) format("woff2"), url(../fonts/icofont.woff) format("woff") -} - -[class*=" icofont-"], -[class^=icofont-] { - font-family: IcoFont !important; - speak: none; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - white-space: nowrap; - word-wrap: normal; - direction: ltr; - line-height: 1; - -webkit-font-feature-settings: "liga"; - -webkit-font-smoothing: antialiased -} - -.icofont-angry-monster:before { - content: "\e800" -} - -.icofont-bathtub:before { - content: "\e801" -} - -.icofont-bird-wings:before { - content: "\e802" -} - -.icofont-bow:before { - content: "\e803" -} - -.icofont-castle:before { - content: "\e804" -} - -.icofont-circuit:before { - content: "\e805" -} - -.icofont-crown-king:before { - content: "\e806" -} - -.icofont-crown-queen:before { - content: "\e807" -} - -.icofont-dart:before { - content: "\e808" -} - -.icofont-disability-race:before { - content: "\e809" -} - -.icofont-diving-goggle:before { - content: "\e80a" -} - -.icofont-eye-open:before { - content: "\e80b" -} - -.icofont-flora-flower:before { - content: "\e80c" -} - -.icofont-flora:before { - content: "\e80d" -} - -.icofont-gift-box:before { - content: "\e80e" -} - -.icofont-halloween-pumpkin:before { - content: "\e80f" -} - -.icofont-hand-power:before { - content: "\e810" -} - -.icofont-hand-thunder:before { - content: "\e811" -} - -.icofont-king-monster:before { - content: "\e812" -} - -.icofont-love:before { - content: "\e813" -} - -.icofont-magician-hat:before { - content: "\e814" -} - -.icofont-native-american:before { - content: "\e815" -} - -.icofont-owl-look:before { - content: "\e816" -} - -.icofont-phoenix:before { - content: "\e817" -} - -.icofont-robot-face:before { - content: "\e818" -} - -.icofont-sand-clock:before { - content: "\e819" -} - -.icofont-shield-alt:before { - content: "\e81a" -} - -.icofont-ship-wheel:before { - content: "\e81b" -} - -.icofont-skull-danger:before { - content: "\e81c" -} - -.icofont-skull-face:before { - content: "\e81d" -} - -.icofont-snowmobile:before { - content: "\e81e" -} - -.icofont-space-shuttle:before { - content: "\e81f" -} - -.icofont-star-shape:before { - content: "\e820" -} - -.icofont-swirl:before { - content: "\e821" -} - -.icofont-tattoo-wing:before { - content: "\e822" -} - -.icofont-throne:before { - content: "\e823" -} - -.icofont-tree-alt:before { - content: "\e824" -} - -.icofont-triangle:before { - content: "\e825" -} - -.icofont-unity-hand:before { - content: "\e826" -} - -.icofont-weed:before { - content: "\e827" -} - -.icofont-woman-bird:before { - content: "\e828" -} - -.icofont-bat:before { - content: "\e829" -} - -.icofont-bear-face:before { - content: "\e82a" -} - -.icofont-bear-tracks:before { - content: "\e82b" -} - -.icofont-bear:before { - content: "\e82c" -} - -.icofont-bird-alt:before { - content: "\e82d" -} - -.icofont-bird-flying:before { - content: "\e82e" -} - -.icofont-bird:before { - content: "\e82f" -} - -.icofont-birds:before { - content: "\e830" -} - -.icofont-bone:before { - content: "\e831" -} - -.icofont-bull:before { - content: "\e832" -} - -.icofont-butterfly-alt:before { - content: "\e833" -} - -.icofont-butterfly:before { - content: "\e834" -} - -.icofont-camel-alt:before { - content: "\e835" -} - -.icofont-camel-head:before { - content: "\e836" -} - -.icofont-camel:before { - content: "\e837" -} - -.icofont-cat-alt-1:before { - content: "\e838" -} - -.icofont-cat-alt-2:before { - content: "\e839" -} - -.icofont-cat-alt-3:before { - content: "\e83a" -} - -.icofont-cat-dog:before { - content: "\e83b" -} - -.icofont-cat-face:before { - content: "\e83c" -} - -.icofont-cat:before { - content: "\e83d" -} - -.icofont-cow-head:before { - content: "\e83e" -} - -.icofont-cow:before { - content: "\e83f" -} - -.icofont-crab:before { - content: "\e840" -} - -.icofont-crocodile:before { - content: "\e841" -} - -.icofont-deer-head:before { - content: "\e842" -} - -.icofont-dog-alt:before { - content: "\e843" -} - -.icofont-dog-barking:before { - content: "\e844" -} - -.icofont-dog:before { - content: "\e845" -} - -.icofont-dolphin:before { - content: "\e846" -} - -.icofont-duck-tracks:before { - content: "\e847" -} - -.icofont-eagle-head:before { - content: "\e848" -} - -.icofont-eaten-fish:before { - content: "\e849" -} - -.icofont-elephant-alt:before { - content: "\e84a" -} - -.icofont-elephant-head-alt:before { - content: "\e84b" -} - -.icofont-elephant-head:before { - content: "\e84c" -} - -.icofont-elephant:before { - content: "\e84d" -} - -.icofont-elk:before { - content: "\e84e" -} - -.icofont-fish-1:before { - content: "\e84f" -} - -.icofont-fish-2:before { - content: "\e850" -} - -.icofont-fish-3:before { - content: "\e851" -} - -.icofont-fish-4:before { - content: "\e852" -} - -.icofont-fish-5:before { - content: "\e853" -} - -.icofont-fish:before { - content: "\e854" -} - -.icofont-fox-alt:before { - content: "\e855" -} - -.icofont-fox:before { - content: "\e856" -} - -.icofont-frog-tracks:before { - content: "\e857" -} - -.icofont-frog:before { - content: "\e858" -} - -.icofont-froggy:before { - content: "\e859" -} - -.icofont-giraffe-head-1:before { - content: "\e85a" -} - -.icofont-giraffe-head-2:before { - content: "\e85b" -} - -.icofont-giraffe-head:before { - content: "\e85c" -} - -.icofont-giraffe:before { - content: "\e85d" -} - -.icofont-goat-head:before { - content: "\e85e" -} - -.icofont-gorilla:before { - content: "\e85f" -} - -.icofont-hen-tracks:before { - content: "\e860" -} - -.icofont-horse-head-1:before { - content: "\e861" -} - -.icofont-horse-head-2:before { - content: "\e862" -} - -.icofont-horse-head:before { - content: "\e863" -} - -.icofont-horse-tracks:before { - content: "\e864" -} - -.icofont-jellyfish:before { - content: "\e865" -} - -.icofont-kangaroo:before { - content: "\e866" -} - -.icofont-lemur:before { - content: "\e867" -} - -.icofont-lion-head-1:before { - content: "\e868" -} - -.icofont-lion-head-2:before { - content: "\e869" -} - -.icofont-lion-head:before { - content: "\e86a" -} - -.icofont-lion:before { - content: "\e86b" -} - -.icofont-monkey-2:before { - content: "\e86c" -} - -.icofont-monkey-3:before { - content: "\e86d" -} - -.icofont-monkey-face:before { - content: "\e86e" -} - -.icofont-monkey:before { - content: "\e86f" -} - -.icofont-octopus-alt:before { - content: "\e870" -} - -.icofont-octopus:before { - content: "\e871" -} - -.icofont-owl:before { - content: "\e872" -} - -.icofont-panda-face:before { - content: "\e873" -} - -.icofont-panda:before { - content: "\e874" -} - -.icofont-panther:before { - content: "\e875" -} - -.icofont-parrot-lip:before { - content: "\e876" -} - -.icofont-parrot:before { - content: "\e877" -} - -.icofont-paw:before { - content: "\e878" -} - -.icofont-pelican:before { - content: "\e879" -} - -.icofont-penguin:before { - content: "\e87a" -} - -.icofont-pig-face:before { - content: "\e87b" -} - -.icofont-pig:before { - content: "\e87c" -} - -.icofont-pigeon-1:before { - content: "\e87d" -} - -.icofont-pigeon-2:before { - content: "\e87e" -} - -.icofont-pigeon:before { - content: "\e87f" -} - -.icofont-rabbit:before { - content: "\e880" -} - -.icofont-rat:before { - content: "\e881" -} - -.icofont-rhino-head:before { - content: "\e882" -} - -.icofont-rhino:before { - content: "\e883" -} - -.icofont-rooster:before { - content: "\e884" -} - -.icofont-seahorse:before { - content: "\e885" -} - -.icofont-seal:before { - content: "\e886" -} - -.icofont-shrimp-alt:before { - content: "\e887" -} - -.icofont-shrimp:before { - content: "\e888" -} - -.icofont-snail-1:before { - content: "\e889" -} - -.icofont-snail-2:before { - content: "\e88a" -} - -.icofont-snail-3:before { - content: "\e88b" -} - -.icofont-snail:before { - content: "\e88c" -} - -.icofont-snake:before { - content: "\e88d" -} - -.icofont-squid:before { - content: "\e88e" -} - -.icofont-squirrel:before { - content: "\e88f" -} - -.icofont-tiger-face:before { - content: "\e890" -} - -.icofont-tiger:before { - content: "\e891" -} - -.icofont-turtle:before { - content: "\e892" -} - -.icofont-whale:before { - content: "\e893" -} - -.icofont-woodpecker:before { - content: "\e894" -} - -.icofont-zebra:before { - content: "\e895" -} - -.icofont-brand-acer:before { - content: "\e896" -} - -.icofont-brand-adidas:before { - content: "\e897" -} - -.icofont-brand-adobe:before { - content: "\e898" -} - -.icofont-brand-air-new-zealand:before { - content: "\e899" -} - -.icofont-brand-airbnb:before { - content: "\e89a" -} - -.icofont-brand-aircell:before { - content: "\e89b" -} - -.icofont-brand-airtel:before { - content: "\e89c" -} - -.icofont-brand-alcatel:before { - content: "\e89d" -} - -.icofont-brand-alibaba:before { - content: "\e89e" -} - -.icofont-brand-aliexpress:before { - content: "\e89f" -} - -.icofont-brand-alipay:before { - content: "\e8a0" -} - -.icofont-brand-amazon:before { - content: "\e8a1" -} - -.icofont-brand-amd:before { - content: "\e8a2" -} - -.icofont-brand-american-airlines:before { - content: "\e8a3" -} - -.icofont-brand-android-robot:before { - content: "\e8a4" -} - -.icofont-brand-android:before { - content: "\e8a5" -} - -.icofont-brand-aol:before { - content: "\e8a6" -} - -.icofont-brand-apple:before { - content: "\e8a7" -} - -.icofont-brand-appstore:before { - content: "\e8a8" -} - -.icofont-brand-asus:before { - content: "\e8a9" -} - -.icofont-brand-ati:before { - content: "\e8aa" -} - -.icofont-brand-att:before { - content: "\e8ab" -} - -.icofont-brand-audi:before { - content: "\e8ac" -} - -.icofont-brand-axiata:before { - content: "\e8ad" -} - -.icofont-brand-bada:before { - content: "\e8ae" -} - -.icofont-brand-bbc:before { - content: "\e8af" -} - -.icofont-brand-bing:before { - content: "\e8b0" -} - -.icofont-brand-blackberry:before { - content: "\e8b1" -} - -.icofont-brand-bmw:before { - content: "\e8b2" -} - -.icofont-brand-box:before { - content: "\e8b3" -} - -.icofont-brand-burger-king:before { - content: "\e8b4" -} - -.icofont-brand-business-insider:before { - content: "\e8b5" -} - -.icofont-brand-buzzfeed:before { - content: "\e8b6" -} - -.icofont-brand-cannon:before { - content: "\e8b7" -} - -.icofont-brand-casio:before { - content: "\e8b8" -} - -.icofont-brand-china-mobile:before { - content: "\e8b9" -} - -.icofont-brand-china-telecom:before { - content: "\e8ba" -} - -.icofont-brand-china-unicom:before { - content: "\e8bb" -} - -.icofont-brand-cisco:before { - content: "\e8bc" -} - -.icofont-brand-citibank:before { - content: "\e8bd" -} - -.icofont-brand-cnet:before { - content: "\e8be" -} - -.icofont-brand-cnn:before { - content: "\e8bf" -} - -.icofont-brand-cocal-cola:before { - content: "\e8c0" -} - -.icofont-brand-compaq:before { - content: "\e8c1" -} - -.icofont-brand-debian:before { - content: "\e8c2" -} - -.icofont-brand-delicious:before { - content: "\e8c3" -} - -.icofont-brand-dell:before { - content: "\e8c4" -} - -.icofont-brand-designbump:before { - content: "\e8c5" -} - -.icofont-brand-designfloat:before { - content: "\e8c6" -} - -.icofont-brand-disney:before { - content: "\e8c7" -} - -.icofont-brand-dodge:before { - content: "\e8c8" -} - -.icofont-brand-dove:before { - content: "\e8c9" -} - -.icofont-brand-drupal:before { - content: "\e8ca" -} - -.icofont-brand-ebay:before { - content: "\e8cb" -} - -.icofont-brand-eleven:before { - content: "\e8cc" -} - -.icofont-brand-emirates:before { - content: "\e8cd" -} - -.icofont-brand-espn:before { - content: "\e8ce" -} - -.icofont-brand-etihad-airways:before { - content: "\e8cf" -} - -.icofont-brand-etisalat:before { - content: "\e8d0" -} - -.icofont-brand-etsy:before { - content: "\e8d1" -} - -.icofont-brand-fastrack:before { - content: "\e8d2" -} - -.icofont-brand-fedex:before { - content: "\e8d3" -} - -.icofont-brand-ferrari:before { - content: "\e8d4" -} - -.icofont-brand-fitbit:before { - content: "\e8d5" -} - -.icofont-brand-flikr:before { - content: "\e8d6" -} - -.icofont-brand-forbes:before { - content: "\e8d7" -} - -.icofont-brand-foursquare:before { - content: "\e8d8" -} - -.icofont-brand-foxconn:before { - content: "\e8d9" -} - -.icofont-brand-fujitsu:before { - content: "\e8da" -} - -.icofont-brand-general-electric:before { - content: "\e8db" -} - -.icofont-brand-gillette:before { - content: "\e8dc" -} - -.icofont-brand-gizmodo:before { - content: "\e8dd" -} - -.icofont-brand-gnome:before { - content: "\e8de" -} - -.icofont-brand-google:before { - content: "\e8df" -} - -.icofont-brand-gopro:before { - content: "\e8e0" -} - -.icofont-brand-gucci:before { - content: "\e8e1" -} - -.icofont-brand-hallmark:before { - content: "\e8e2" -} - -.icofont-brand-hi5:before { - content: "\e8e3" -} - -.icofont-brand-honda:before { - content: "\e8e4" -} - -.icofont-brand-hp:before { - content: "\e8e5" -} - -.icofont-brand-hsbc:before { - content: "\e8e6" -} - -.icofont-brand-htc:before { - content: "\e8e7" -} - -.icofont-brand-huawei:before { - content: "\e8e8" -} - -.icofont-brand-hulu:before { - content: "\e8e9" -} - -.icofont-brand-hyundai:before { - content: "\e8ea" -} - -.icofont-brand-ibm:before { - content: "\e8eb" -} - -.icofont-brand-icofont:before { - content: "\e8ec" -} - -.icofont-brand-icq:before { - content: "\e8ed" -} - -.icofont-brand-ikea:before { - content: "\e8ee" -} - -.icofont-brand-imdb:before { - content: "\e8ef" -} - -.icofont-brand-indiegogo:before { - content: "\e8f0" -} - -.icofont-brand-intel:before { - content: "\e8f1" -} - -.icofont-brand-ipair:before { - content: "\e8f2" -} - -.icofont-brand-jaguar:before { - content: "\e8f3" -} - -.icofont-brand-java:before { - content: "\e8f4" -} - -.icofont-brand-joomla:before { - content: "\e8f5" -} - -.icofont-brand-kickstarter:before { - content: "\e8f6" -} - -.icofont-brand-kik:before { - content: "\e8f7" -} - -.icofont-brand-lastfm:before { - content: "\e8f8" -} - -.icofont-brand-lego:before { - content: "\e8f9" -} - -.icofont-brand-lenovo:before { - content: "\e8fa" -} - -.icofont-brand-levis:before { - content: "\e8fb" -} - -.icofont-brand-lexus:before { - content: "\e8fc" -} - -.icofont-brand-lg:before { - content: "\e8fd" -} - -.icofont-brand-life-hacker:before { - content: "\e8fe" -} - -.icofont-brand-linux-mint:before { - content: "\e8ff" -} - -.icofont-brand-linux:before { - content: "\e900" -} - -.icofont-brand-lionix:before { - content: "\e901" -} - -.icofont-brand-loreal:before { - content: "\e902" -} - -.icofont-brand-louis-vuitton:before { - content: "\e903" -} - -.icofont-brand-mac-os:before { - content: "\e904" -} - -.icofont-brand-marvel-app:before { - content: "\e905" -} - -.icofont-brand-mashable:before { - content: "\e906" -} - -.icofont-brand-mazda:before { - content: "\e907" -} - -.icofont-brand-mcdonals:before { - content: "\e908" -} - -.icofont-brand-mercedes:before { - content: "\e909" -} - -.icofont-brand-micromax:before { - content: "\e90a" -} - -.icofont-brand-microsoft:before { - content: "\e90b" -} - -.icofont-brand-mobileme:before { - content: "\e90c" -} - -.icofont-brand-mobily:before { - content: "\e90d" -} - -.icofont-brand-motorola:before { - content: "\e90e" -} - -.icofont-brand-msi:before { - content: "\e90f" -} - -.icofont-brand-mts:before { - content: "\e910" -} - -.icofont-brand-myspace:before { - content: "\e911" -} - -.icofont-brand-mytv:before { - content: "\e912" -} - -.icofont-brand-nasa:before { - content: "\e913" -} - -.icofont-brand-natgeo:before { - content: "\e914" -} - -.icofont-brand-nbc:before { - content: "\e915" -} - -.icofont-brand-nescafe:before { - content: "\e916" -} - -.icofont-brand-nestle:before { - content: "\e917" -} - -.icofont-brand-netflix:before { - content: "\e918" -} - -.icofont-brand-nexus:before { - content: "\e919" -} - -.icofont-brand-nike:before { - content: "\e91a" -} - -.icofont-brand-nokia:before { - content: "\e91b" -} - -.icofont-brand-nvidia:before { - content: "\e91c" -} - -.icofont-brand-omega:before { - content: "\e91d" -} - -.icofont-brand-opensuse:before { - content: "\e91e" -} - -.icofont-brand-oracle:before { - content: "\e91f" -} - -.icofont-brand-panasonic:before { - content: "\e920" -} - -.icofont-brand-paypal:before { - content: "\e921" -} - -.icofont-brand-pepsi:before { - content: "\e922" -} - -.icofont-brand-philips:before { - content: "\e923" -} - -.icofont-brand-pizza-hut:before { - content: "\e924" -} - -.icofont-brand-playstation:before { - content: "\e925" -} - -.icofont-brand-puma:before { - content: "\e926" -} - -.icofont-brand-qatar-air:before { - content: "\e927" -} - -.icofont-brand-qvc:before { - content: "\e928" -} - -.icofont-brand-readernaut:before { - content: "\e929" -} - -.icofont-brand-redbull:before { - content: "\e92a" -} - -.icofont-brand-reebok:before { - content: "\e92b" -} - -.icofont-brand-reuters:before { - content: "\e92c" -} - -.icofont-brand-samsung:before { - content: "\e92d" -} - -.icofont-brand-sap:before { - content: "\e92e" -} - -.icofont-brand-saudia-airlines:before { - content: "\e92f" -} - -.icofont-brand-scribd:before { - content: "\e930" -} - -.icofont-brand-shell:before { - content: "\e931" -} - -.icofont-brand-siemens:before { - content: "\e932" -} - -.icofont-brand-sk-telecom:before { - content: "\e933" -} - -.icofont-brand-slideshare:before { - content: "\e934" -} - -.icofont-brand-smashing-magazine:before { - content: "\e935" -} - -.icofont-brand-snapchat:before { - content: "\e936" -} - -.icofont-brand-sony-ericsson:before { - content: "\e937" -} - -.icofont-brand-sony:before { - content: "\e938" -} - -.icofont-brand-soundcloud:before { - content: "\e939" -} - -.icofont-brand-sprint:before { - content: "\e93a" -} - -.icofont-brand-squidoo:before { - content: "\e93b" -} - -.icofont-brand-starbucks:before { - content: "\e93c" -} - -.icofont-brand-stc:before { - content: "\e93d" -} - -.icofont-brand-steam:before { - content: "\e93e" -} - -.icofont-brand-suzuki:before { - content: "\e93f" -} - -.icofont-brand-symbian:before { - content: "\e940" -} - -.icofont-brand-t-mobile:before { - content: "\e941" -} - -.icofont-brand-tango:before { - content: "\e942" -} - -.icofont-brand-target:before { - content: "\e943" -} - -.icofont-brand-tata-indicom:before { - content: "\e944" -} - -.icofont-brand-techcrunch:before { - content: "\e945" -} - -.icofont-brand-telenor:before { - content: "\e946" -} - -.icofont-brand-teliasonera:before { - content: "\e947" -} - -.icofont-brand-tesla:before { - content: "\e948" -} - -.icofont-brand-the-verge:before { - content: "\e949" -} - -.icofont-brand-thenextweb:before { - content: "\e94a" -} - -.icofont-brand-toshiba:before { - content: "\e94b" -} - -.icofont-brand-toyota:before { - content: "\e94c" -} - -.icofont-brand-tribenet:before { - content: "\e94d" -} - -.icofont-brand-ubuntu:before { - content: "\e94e" -} - -.icofont-brand-unilever:before { - content: "\e94f" -} - -.icofont-brand-vaio:before { - content: "\e950" -} - -.icofont-brand-verizon:before { - content: "\e951" -} - -.icofont-brand-viber:before { - content: "\e952" -} - -.icofont-brand-vodafone:before { - content: "\e953" -} - -.icofont-brand-volkswagen:before { - content: "\e954" -} - -.icofont-brand-walmart:before { - content: "\e955" -} - -.icofont-brand-warnerbros:before { - content: "\e956" -} - -.icofont-brand-whatsapp:before { - content: "\e957" -} - -.icofont-brand-wikipedia:before { - content: "\e958" -} - -.icofont-brand-windows:before { - content: "\e959" -} - -.icofont-brand-wire:before { - content: "\e95a" -} - -.icofont-brand-wordpress:before { - content: "\e95b" -} - -.icofont-brand-xiaomi:before { - content: "\e95c" -} - -.icofont-brand-yahoobuzz:before { - content: "\e95d" -} - -.icofont-brand-yamaha:before { - content: "\e95e" -} - -.icofont-brand-youtube:before { - content: "\e95f" -} - -.icofont-brand-zain:before { - content: "\e960" -} - -.icofont-bank-alt:before { - content: "\e961" -} - -.icofont-bank:before { - content: "\e962" -} - -.icofont-barcode:before { - content: "\e963" -} - -.icofont-bill-alt:before { - content: "\e964" -} - -.icofont-billboard:before { - content: "\e965" -} - -.icofont-briefcase-1:before { - content: "\e966" -} - -.icofont-briefcase-2:before { - content: "\e967" -} - -.icofont-businessman:before { - content: "\e968" -} - -.icofont-businesswoman:before { - content: "\e969" -} - -.icofont-chair:before { - content: "\e96a" -} - -.icofont-coins:before { - content: "\e96b" -} - -.icofont-company:before { - content: "\e96c" -} - -.icofont-contact-add:before { - content: "\e96d" -} - -.icofont-files-stack:before { - content: "\e96e" -} - -.icofont-handshake-deal:before { - content: "\e96f" -} - -.icofont-id-card:before { - content: "\e970" -} - -.icofont-meeting-add:before { - content: "\e971" -} - -.icofont-money-bag:before { - content: "\e972" -} - -.icofont-pie-chart:before { - content: "\e973" -} - -.icofont-presentation-alt:before { - content: "\e974" -} - -.icofont-presentation:before { - content: "\e975" -} - -.icofont-stamp:before { - content: "\e976" -} - -.icofont-stock-mobile:before { - content: "\e977" -} - -.icofont-chart-arrows-axis:before { - content: "\e978" -} - -.icofont-chart-bar-graph:before { - content: "\e979" -} - -.icofont-chart-flow-1:before { - content: "\e97a" -} - -.icofont-chart-flow-2:before { - content: "\e97b" -} - -.icofont-chart-flow:before { - content: "\e97c" -} - -.icofont-chart-growth:before { - content: "\e97d" -} - -.icofont-chart-histogram-alt:before { - content: "\e97e" -} - -.icofont-chart-histogram:before { - content: "\e97f" -} - -.icofont-chart-line-alt:before { - content: "\e980" -} - -.icofont-chart-line:before { - content: "\e981" -} - -.icofont-chart-pie-alt:before { - content: "\e982" -} - -.icofont-chart-pie:before { - content: "\e983" -} - -.icofont-chart-radar-graph:before { - content: "\e984" -} - -.icofont-architecture-alt:before { - content: "\e985" -} - -.icofont-architecture:before { - content: "\e986" -} - -.icofont-barricade:before { - content: "\e987" -} - -.icofont-bolt:before { - content: "\e988" -} - -.icofont-bricks:before { - content: "\e989" -} - -.icofont-building-alt:before { - content: "\e98a" -} - -.icofont-bull-dozer:before { - content: "\e98b" -} - -.icofont-calculations:before { - content: "\e98c" -} - -.icofont-cement-mix:before { - content: "\e98d" -} - -.icofont-cement-mixer:before { - content: "\e98e" -} - -.icofont-concrete-mixer:before { - content: "\e98f" -} - -.icofont-danger-zone:before { - content: "\e990" -} - -.icofont-drill:before { - content: "\e991" -} - -.icofont-eco-energy:before { - content: "\e992" -} - -.icofont-eco-environmen:before { - content: "\e993" -} - -.icofont-energy-air:before { - content: "\e994" -} - -.icofont-energy-oil:before { - content: "\e995" -} - -.icofont-energy-savings:before { - content: "\e996" -} - -.icofont-energy-solar:before { - content: "\e997" -} - -.icofont-energy-water:before { - content: "\e998" -} - -.icofont-engineer:before { - content: "\e999" -} - -.icofont-fire-extinguisher-alt:before { - content: "\e99a" -} - -.icofont-fire-extinguisher:before { - content: "\e99b" -} - -.icofont-fix-tools:before { - content: "\e99c" -} - -.icofont-fork-lift:before { - content: "\e99d" -} - -.icofont-glue-oil:before { - content: "\e99e" -} - -.icofont-hammer-alt:before { - content: "\e99f" -} - -.icofont-hammer:before { - content: "\e9a0" -} - -.icofont-help-robot:before { - content: "\e9a1" -} - -.icofont-industries-1:before { - content: "\e9a2" -} - -.icofont-industries-2:before { - content: "\e9a3" -} - -.icofont-industries-3:before { - content: "\e9a4" -} - -.icofont-industries-4:before { - content: "\e9a5" -} - -.icofont-industries-5:before { - content: "\e9a6" -} - -.icofont-industries:before { - content: "\e9a7" -} - -.icofont-labour:before { - content: "\e9a8" -} - -.icofont-mining:before { - content: "\e9a9" -} - -.icofont-paint-brush:before { - content: "\e9aa" -} - -.icofont-pollution:before { - content: "\e9ab" -} - -.icofont-power-zone:before { - content: "\e9ac" -} - -.icofont-radio-active:before { - content: "\e9ad" -} - -.icofont-recycle-alt:before { - content: "\e9ae" -} - -.icofont-recycling-man:before { - content: "\e9af" -} - -.icofont-safety-hat-light:before { - content: "\e9b0" -} - -.icofont-safety-hat:before { - content: "\e9b1" -} - -.icofont-saw:before { - content: "\e9b2" -} - -.icofont-screw-driver:before { - content: "\e9b3" -} - -.icofont-tools-1:before { - content: "\e9b4" -} - -.icofont-tools-bag:before { - content: "\e9b5" -} - -.icofont-tow-truck:before { - content: "\e9b6" -} - -.icofont-trolley:before { - content: "\e9b7" -} - -.icofont-trowel:before { - content: "\e9b8" -} - -.icofont-under-construction-alt:before { - content: "\e9b9" -} - -.icofont-under-construction:before { - content: "\e9ba" -} - -.icofont-vehicle-cement:before { - content: "\e9bb" -} - -.icofont-vehicle-crane:before { - content: "\e9bc" -} - -.icofont-vehicle-delivery-van:before { - content: "\e9bd" -} - -.icofont-vehicle-dozer:before { - content: "\e9be" -} - -.icofont-vehicle-excavator:before { - content: "\e9bf" -} - -.icofont-vehicle-trucktor:before { - content: "\e9c0" -} - -.icofont-vehicle-wrecking:before { - content: "\e9c1" -} - -.icofont-worker:before { - content: "\e9c2" -} - -.icofont-workers-group:before { - content: "\e9c3" -} - -.icofont-wrench:before { - content: "\e9c4" -} - -.icofont-afghani-false:before { - content: "\e9c5" -} - -.icofont-afghani-minus:before { - content: "\e9c6" -} - -.icofont-afghani-plus:before { - content: "\e9c7" -} - -.icofont-afghani-true:before { - content: "\e9c8" -} - -.icofont-afghani:before { - content: "\e9c9" -} - -.icofont-baht-false:before { - content: "\e9ca" -} - -.icofont-baht-minus:before { - content: "\e9cb" -} - -.icofont-baht-plus:before { - content: "\e9cc" -} - -.icofont-baht-true:before { - content: "\e9cd" -} - -.icofont-baht:before { - content: "\e9ce" -} - -.icofont-bitcoin-false:before { - content: "\e9cf" -} - -.icofont-bitcoin-minus:before { - content: "\e9d0" -} - -.icofont-bitcoin-plus:before { - content: "\e9d1" -} - -.icofont-bitcoin-true:before { - content: "\e9d2" -} - -.icofont-bitcoin:before { - content: "\e9d3" -} - -.icofont-dollar-flase:before { - content: "\e9d4" -} - -.icofont-dollar-minus:before { - content: "\e9d5" -} - -.icofont-dollar-plus:before { - content: "\e9d6" -} - -.icofont-dollar-true:before { - content: "\e9d7" -} - -.icofont-dollar:before { - content: "\e9d8" -} - -.icofont-dong-false:before { - content: "\e9d9" -} - -.icofont-dong-minus:before { - content: "\e9da" -} - -.icofont-dong-plus:before { - content: "\e9db" -} - -.icofont-dong-true:before { - content: "\e9dc" -} - -.icofont-dong:before { - content: "\e9dd" -} - -.icofont-euro-false:before { - content: "\e9de" -} - -.icofont-euro-minus:before { - content: "\e9df" -} - -.icofont-euro-plus:before { - content: "\e9e0" -} - -.icofont-euro-true:before { - content: "\e9e1" -} - -.icofont-euro:before { - content: "\e9e2" -} - -.icofont-frank-false:before { - content: "\e9e3" -} - -.icofont-frank-minus:before { - content: "\e9e4" -} - -.icofont-frank-plus:before { - content: "\e9e5" -} - -.icofont-frank-true:before { - content: "\e9e6" -} - -.icofont-frank:before { - content: "\e9e7" -} - -.icofont-hryvnia-false:before { - content: "\e9e8" -} - -.icofont-hryvnia-minus:before { - content: "\e9e9" -} - -.icofont-hryvnia-plus:before { - content: "\e9ea" -} - -.icofont-hryvnia-true:before { - content: "\e9eb" -} - -.icofont-hryvnia:before { - content: "\e9ec" -} - -.icofont-lira-false:before { - content: "\e9ed" -} - -.icofont-lira-minus:before { - content: "\e9ee" -} - -.icofont-lira-plus:before { - content: "\e9ef" -} - -.icofont-lira-true:before { - content: "\e9f0" -} - -.icofont-lira:before { - content: "\e9f1" -} - -.icofont-peseta-false:before { - content: "\e9f2" -} - -.icofont-peseta-minus:before { - content: "\e9f3" -} - -.icofont-peseta-plus:before { - content: "\e9f4" -} - -.icofont-peseta-true:before { - content: "\e9f5" -} - -.icofont-peseta:before { - content: "\e9f6" -} - -.icofont-peso-false:before { - content: "\e9f7" -} - -.icofont-peso-minus:before { - content: "\e9f8" -} - -.icofont-peso-plus:before { - content: "\e9f9" -} - -.icofont-peso-true:before { - content: "\e9fa" -} - -.icofont-peso:before { - content: "\e9fb" -} - -.icofont-pound-false:before { - content: "\e9fc" -} - -.icofont-pound-minus:before { - content: "\e9fd" -} - -.icofont-pound-plus:before { - content: "\e9fe" -} - -.icofont-pound-true:before { - content: "\e9ff" -} - -.icofont-pound:before { - content: "\ea00" -} - -.icofont-renminbi-false:before { - content: "\ea01" -} - -.icofont-renminbi-minus:before { - content: "\ea02" -} - -.icofont-renminbi-plus:before { - content: "\ea03" -} - -.icofont-renminbi-true:before { - content: "\ea04" -} - -.icofont-renminbi:before { - content: "\ea05" -} - -.icofont-riyal-false:before { - content: "\ea06" -} - -.icofont-riyal-minus:before { - content: "\ea07" -} - -.icofont-riyal-plus:before { - content: "\ea08" -} - -.icofont-riyal-true:before { - content: "\ea09" -} - -.icofont-riyal:before { - content: "\ea0a" -} - -.icofont-rouble-false:before { - content: "\ea0b" -} - -.icofont-rouble-minus:before { - content: "\ea0c" -} - -.icofont-rouble-plus:before { - content: "\ea0d" -} - -.icofont-rouble-true:before { - content: "\ea0e" -} - -.icofont-rouble:before { - content: "\ea0f" -} - -.icofont-rupee-false:before { - content: "\ea10" -} - -.icofont-rupee-minus:before { - content: "\ea11" -} - -.icofont-rupee-plus:before { - content: "\ea12" -} - -.icofont-rupee-true:before { - content: "\ea13" -} - -.icofont-rupee:before { - content: "\ea14" -} - -.icofont-taka-false:before { - content: "\ea15" -} - -.icofont-taka-minus:before { - content: "\ea16" -} - -.icofont-taka-plus:before { - content: "\ea17" -} - -.icofont-taka-true:before { - content: "\ea18" -} - -.icofont-taka:before { - content: "\ea19" -} - -.icofont-turkish-lira-false:before { - content: "\ea1a" -} - -.icofont-turkish-lira-minus:before { - content: "\ea1b" -} - -.icofont-turkish-lira-plus:before { - content: "\ea1c" -} - -.icofont-turkish-lira-true:before { - content: "\ea1d" -} - -.icofont-turkish-lira:before { - content: "\ea1e" -} - -.icofont-won-false:before { - content: "\ea1f" -} - -.icofont-won-minus:before { - content: "\ea20" -} - -.icofont-won-plus:before { - content: "\ea21" -} - -.icofont-won-true:before { - content: "\ea22" -} - -.icofont-won:before { - content: "\ea23" -} - -.icofont-yen-false:before { - content: "\ea24" -} - -.icofont-yen-minus:before { - content: "\ea25" -} - -.icofont-yen-plus:before { - content: "\ea26" -} - -.icofont-yen-true:before { - content: "\ea27" -} - -.icofont-yen:before { - content: "\ea28" -} - -.icofont-android-nexus:before { - content: "\ea29" -} - -.icofont-android-tablet:before { - content: "\ea2a" -} - -.icofont-apple-watch:before { - content: "\ea2b" -} - -.icofont-drawing-tablet:before { - content: "\ea2c" -} - -.icofont-earphone:before { - content: "\ea2d" -} - -.icofont-flash-drive:before { - content: "\ea2e" -} - -.icofont-game-console:before { - content: "\ea2f" -} - -.icofont-game-controller:before { - content: "\ea30" -} - -.icofont-game-pad:before { - content: "\ea31" -} - -.icofont-game:before { - content: "\ea32" -} - -.icofont-headphone-alt-1:before { - content: "\ea33" -} - -.icofont-headphone-alt-2:before { - content: "\ea34" -} - -.icofont-headphone-alt-3:before { - content: "\ea35" -} - -.icofont-headphone-alt:before { - content: "\ea36" -} - -.icofont-headphone:before { - content: "\ea37" -} - -.icofont-htc-one:before { - content: "\ea38" -} - -.icofont-imac:before { - content: "\ea39" -} - -.icofont-ipad:before { - content: "\ea3a" -} - -.icofont-iphone:before { - content: "\ea3b" -} - -.icofont-ipod-nano:before { - content: "\ea3c" -} - -.icofont-ipod-touch:before { - content: "\ea3d" -} - -.icofont-keyboard-alt:before { - content: "\ea3e" -} - -.icofont-keyboard-wireless:before { - content: "\ea3f" -} - -.icofont-keyboard:before { - content: "\ea40" -} - -.icofont-laptop-alt:before { - content: "\ea41" -} - -.icofont-laptop:before { - content: "\ea42" -} - -.icofont-macbook:before { - content: "\ea43" -} - -.icofont-magic-mouse:before { - content: "\ea44" -} - -.icofont-micro-chip:before { - content: "\ea45" -} - -.icofont-microphone-alt:before { - content: "\ea46" -} - -.icofont-microphone:before { - content: "\ea47" -} - -.icofont-monitor:before { - content: "\ea48" -} - -.icofont-mouse:before { - content: "\ea49" -} - -.icofont-mp3-player:before { - content: "\ea4a" -} - -.icofont-nintendo:before { - content: "\ea4b" -} - -.icofont-playstation-alt:before { - content: "\ea4c" -} - -.icofont-psvita:before { - content: "\ea4d" -} - -.icofont-radio-mic:before { - content: "\ea4e" -} - -.icofont-radio:before { - content: "\ea4f" -} - -.icofont-refrigerator:before { - content: "\ea50" -} - -.icofont-samsung-galaxy:before { - content: "\ea51" -} - -.icofont-surface-tablet:before { - content: "\ea52" -} - -.icofont-ui-head-phone:before { - content: "\ea53" -} - -.icofont-ui-keyboard:before { - content: "\ea54" -} - -.icofont-washing-machine:before { - content: "\ea55" -} - -.icofont-wifi-router:before { - content: "\ea56" -} - -.icofont-wii-u:before { - content: "\ea57" -} - -.icofont-windows-lumia:before { - content: "\ea58" -} - -.icofont-wireless-mouse:before { - content: "\ea59" -} - -.icofont-xbox-360:before { - content: "\ea5a" -} - -.icofont-arrow-down:before { - content: "\ea5b" -} - -.icofont-arrow-left:before { - content: "\ea5c" -} - -.icofont-arrow-right:before { - content: "\ea5d" -} - -.icofont-arrow-up:before { - content: "\ea5e" -} - -.icofont-block-down:before { - content: "\ea5f" -} - -.icofont-block-left:before { - content: "\ea60" -} - -.icofont-block-right:before { - content: "\ea61" -} - -.icofont-block-up:before { - content: "\ea62" -} - -.icofont-bubble-down:before { - content: "\ea63" -} - -.icofont-bubble-left:before { - content: "\ea64" -} - -.icofont-bubble-right:before { - content: "\ea65" -} - -.icofont-bubble-up:before { - content: "\ea66" -} - -.icofont-caret-down:before { - content: "\ea67" -} - -.icofont-caret-left:before { - content: "\ea68" -} - -.icofont-caret-right:before { - content: "\ea69" -} - -.icofont-caret-up:before { - content: "\ea6a" -} - -.icofont-circled-down:before { - content: "\ea6b" -} - -.icofont-circled-left:before { - content: "\ea6c" -} - -.icofont-circled-right:before { - content: "\ea6d" -} - -.icofont-circled-up:before { - content: "\ea6e" -} - -.icofont-collapse:before { - content: "\ea6f" -} - -.icofont-cursor-drag:before { - content: "\ea70" -} - -.icofont-curved-double-left:before { - content: "\ea71" -} - -.icofont-curved-double-right:before { - content: "\ea72" -} - -.icofont-curved-down:before { - content: "\ea73" -} - -.icofont-curved-left:before { - content: "\ea74" -} - -.icofont-curved-right:before { - content: "\ea75" -} - -.icofont-curved-up:before { - content: "\ea76" -} - -.icofont-dotted-down:before { - content: "\ea77" -} - -.icofont-dotted-left:before { - content: "\ea78" -} - -.icofont-dotted-right:before { - content: "\ea79" -} - -.icofont-dotted-up:before { - content: "\ea7a" -} - -.icofont-double-left:before { - content: "\ea7b" -} - -.icofont-double-right:before { - content: "\ea7c" -} - -.icofont-expand-alt:before { - content: "\ea7d" -} - -.icofont-hand-down:before { - content: "\ea7e" -} - -.icofont-hand-drag:before { - content: "\ea7f" -} - -.icofont-hand-drag1:before { - content: "\ea80" -} - -.icofont-hand-drag2:before { - content: "\ea81" -} - -.icofont-hand-drawn-alt-down:before { - content: "\ea82" -} - -.icofont-hand-drawn-alt-left:before { - content: "\ea83" -} - -.icofont-hand-drawn-alt-right:before { - content: "\ea84" -} - -.icofont-hand-drawn-alt-up:before { - content: "\ea85" -} - -.icofont-hand-drawn-down:before { - content: "\ea86" -} - -.icofont-hand-drawn-left:before { - content: "\ea87" -} - -.icofont-hand-drawn-right:before { - content: "\ea88" -} - -.icofont-hand-drawn-up:before { - content: "\ea89" -} - -.icofont-hand-grippers:before { - content: "\ea8a" -} - -.icofont-hand-left:before { - content: "\ea8b" -} - -.icofont-hand-right:before { - content: "\ea8c" -} - -.icofont-hand-up:before { - content: "\ea8d" -} - -.icofont-line-block-down:before { - content: "\ea8e" -} - -.icofont-line-block-left:before { - content: "\ea8f" -} - -.icofont-line-block-right:before { - content: "\ea90" -} - -.icofont-line-block-up:before { - content: "\ea91" -} - -.icofont-long-arrow-down:before { - content: "\ea92" -} - -.icofont-long-arrow-left:before { - content: "\ea93" -} - -.icofont-long-arrow-right:before { - content: "\ea94" -} - -.icofont-long-arrow-up:before { - content: "\ea95" -} - -.icofont-rounded-collapse:before { - content: "\ea96" -} - -.icofont-rounded-double-left:before { - content: "\ea97" -} - -.icofont-rounded-double-right:before { - content: "\ea98" -} - -.icofont-rounded-down:before { - content: "\ea99" -} - -.icofont-rounded-expand:before { - content: "\ea9a" -} - -.icofont-rounded-left-down:before { - content: "\ea9b" -} - -.icofont-rounded-left-up:before { - content: "\ea9c" -} - -.icofont-rounded-left:before { - content: "\ea9d" -} - -.icofont-rounded-right-down:before { - content: "\ea9e" -} - -.icofont-rounded-right-up:before { - content: "\ea9f" -} - -.icofont-rounded-right:before { - content: "\eaa0" -} - -.icofont-rounded-up:before { - content: "\eaa1" -} - -.icofont-scroll-bubble-down:before { - content: "\eaa2" -} - -.icofont-scroll-bubble-left:before { - content: "\eaa3" -} - -.icofont-scroll-bubble-right:before { - content: "\eaa4" -} - -.icofont-scroll-bubble-up:before { - content: "\eaa5" -} - -.icofont-scroll-double-down:before { - content: "\eaa6" -} - -.icofont-scroll-double-left:before { - content: "\eaa7" -} - -.icofont-scroll-double-right:before { - content: "\eaa8" -} - -.icofont-scroll-double-up:before { - content: "\eaa9" -} - -.icofont-scroll-down:before { - content: "\eaaa" -} - -.icofont-scroll-left:before { - content: "\eaab" -} - -.icofont-scroll-long-down:before { - content: "\eaac" -} - -.icofont-scroll-long-left:before { - content: "\eaad" -} - -.icofont-scroll-long-right:before { - content: "\eaae" -} - -.icofont-scroll-long-up:before { - content: "\eaaf" -} - -.icofont-scroll-right:before { - content: "\eab0" -} - -.icofont-scroll-up:before { - content: "\eab1" -} - -.icofont-simple-down:before { - content: "\eab2" -} - -.icofont-simple-left-down:before { - content: "\eab3" -} - -.icofont-simple-left-up:before { - content: "\eab4" -} - -.icofont-simple-left:before { - content: "\eab5" -} - -.icofont-simple-right-down:before { - content: "\eab6" -} - -.icofont-simple-right-up:before { - content: "\eab7" -} - -.icofont-simple-right:before { - content: "\eab8" -} - -.icofont-simple-up:before { - content: "\eab9" -} - -.icofont-square-down:before { - content: "\eaba" -} - -.icofont-square-left:before { - content: "\eabb" -} - -.icofont-square-right:before { - content: "\eabc" -} - -.icofont-square-up:before { - content: "\eabd" -} - -.icofont-stylish-down:before { - content: "\eabe" -} - -.icofont-stylish-left:before { - content: "\eabf" -} - -.icofont-stylish-right:before { - content: "\eac0" -} - -.icofont-stylish-up:before { - content: "\eac1" -} - -.icofont-swoosh-down:before { - content: "\eac2" -} - -.icofont-swoosh-left:before { - content: "\eac3" -} - -.icofont-swoosh-right:before { - content: "\eac4" -} - -.icofont-swoosh-up:before { - content: "\eac5" -} - -.icofont-thin-double-left:before { - content: "\eac6" -} - -.icofont-thin-double-right:before { - content: "\eac7" -} - -.icofont-thin-down:before { - content: "\eac8" -} - -.icofont-thin-left:before { - content: "\eac9" -} - -.icofont-thin-right:before { - content: "\eaca" -} - -.icofont-thin-up:before { - content: "\eacb" -} - -.icofont-abc:before { - content: "\eacc" -} - -.icofont-atom:before { - content: "\eacd" -} - -.icofont-award:before { - content: "\eace" -} - -.icofont-bell-alt:before { - content: "\eacf" -} - -.icofont-black-board:before { - content: "\ead0" -} - -.icofont-book-alt:before { - content: "\ead1" -} - -.icofont-book:before { - content: "\ead2" -} - -.icofont-brainstorming:before { - content: "\ead3" -} - -.icofont-certificate-alt-1:before { - content: "\ead4" -} - -.icofont-certificate-alt-2:before { - content: "\ead5" -} - -.icofont-certificate:before { - content: "\ead6" -} - -.icofont-education:before { - content: "\ead7" -} - -.icofont-electron:before { - content: "\ead8" -} - -.icofont-fountain-pen:before { - content: "\ead9" -} - -.icofont-globe-alt:before { - content: "\eada" -} - -.icofont-graduate-alt:before { - content: "\eadb" -} - -.icofont-graduate:before { - content: "\eadc" -} - -.icofont-group-students:before { - content: "\eadd" -} - -.icofont-hat-alt:before { - content: "\eade" -} - -.icofont-hat:before { - content: "\eadf" -} - -.icofont-instrument:before { - content: "\eae0" -} - -.icofont-lamp-light:before { - content: "\eae1" -} - -.icofont-medal:before { - content: "\eae2" -} - -.icofont-microscope-alt:before { - content: "\eae3" -} - -.icofont-microscope:before { - content: "\eae4" -} - -.icofont-paper:before { - content: "\eae5" -} - -.icofont-pen-alt-4:before { - content: "\eae6" -} - -.icofont-pen-nib:before { - content: "\eae7" -} - -.icofont-pencil-alt-5:before { - content: "\eae8" -} - -.icofont-quill-pen:before { - content: "\eae9" -} - -.icofont-read-book-alt:before { - content: "\eaea" -} - -.icofont-read-book:before { - content: "\eaeb" -} - -.icofont-school-bag:before { - content: "\eaec" -} - -.icofont-school-bus:before { - content: "\eaed" -} - -.icofont-student-alt:before { - content: "\eaee" -} - -.icofont-student:before { - content: "\eaef" -} - -.icofont-teacher:before { - content: "\eaf0" -} - -.icofont-test-bulb:before { - content: "\eaf1" -} - -.icofont-test-tube-alt:before { - content: "\eaf2" -} - -.icofont-university:before { - content: "\eaf3" -} - -.icofont-angry:before { - content: "\eaf4" -} - -.icofont-astonished:before { - content: "\eaf5" -} - -.icofont-confounded:before { - content: "\eaf6" -} - -.icofont-confused:before { - content: "\eaf7" -} - -.icofont-crying:before { - content: "\eaf8" -} - -.icofont-dizzy:before { - content: "\eaf9" -} - -.icofont-expressionless:before { - content: "\eafa" -} - -.icofont-heart-eyes:before { - content: "\eafb" -} - -.icofont-laughing:before { - content: "\eafc" -} - -.icofont-nerd-smile:before { - content: "\eafd" -} - -.icofont-open-mouth:before { - content: "\eafe" -} - -.icofont-rage:before { - content: "\eaff" -} - -.icofont-rolling-eyes:before { - content: "\eb00" -} - -.icofont-sad:before { - content: "\eb01" -} - -.icofont-simple-smile:before { - content: "\eb02" -} - -.icofont-slightly-smile:before { - content: "\eb03" -} - -.icofont-smirk:before { - content: "\eb04" -} - -.icofont-stuck-out-tongue:before { - content: "\eb05" -} - -.icofont-wink-smile:before { - content: "\eb06" -} - -.icofont-worried:before { - content: "\eb07" -} - -.icofont-file-alt:before { - content: "\eb08" -} - -.icofont-file-audio:before { - content: "\eb09" -} - -.icofont-file-avi-mp4:before { - content: "\eb0a" -} - -.icofont-file-bmp:before { - content: "\eb0b" -} - -.icofont-file-code:before { - content: "\eb0c" -} - -.icofont-file-css:before { - content: "\eb0d" -} - -.icofont-file-document:before { - content: "\eb0e" -} - -.icofont-file-eps:before { - content: "\eb0f" -} - -.icofont-file-excel:before { - content: "\eb10" -} - -.icofont-file-exe:before { - content: "\eb11" -} - -.icofont-file-file:before { - content: "\eb12" -} - -.icofont-file-flv:before { - content: "\eb13" -} - -.icofont-file-gif:before { - content: "\eb14" -} - -.icofont-file-html5:before { - content: "\eb15" -} - -.icofont-file-image:before { - content: "\eb16" -} - -.icofont-file-iso:before { - content: "\eb17" -} - -.icofont-file-java:before { - content: "\eb18" -} - -.icofont-file-javascript:before { - content: "\eb19" -} - -.icofont-file-jpg:before { - content: "\eb1a" -} - -.icofont-file-midi:before { - content: "\eb1b" -} - -.icofont-file-mov:before { - content: "\eb1c" -} - -.icofont-file-mp3:before { - content: "\eb1d" -} - -.icofont-file-pdf:before { - content: "\eb1e" -} - -.icofont-file-php:before { - content: "\eb1f" -} - -.icofont-file-png:before { - content: "\eb20" -} - -.icofont-file-powerpoint:before { - content: "\eb21" -} - -.icofont-file-presentation:before { - content: "\eb22" -} - -.icofont-file-psb:before { - content: "\eb23" -} - -.icofont-file-psd:before { - content: "\eb24" -} - -.icofont-file-python:before { - content: "\eb25" -} - -.icofont-file-ruby:before { - content: "\eb26" -} - -.icofont-file-spreadsheet:before { - content: "\eb27" -} - -.icofont-file-sql:before { - content: "\eb28" -} - -.icofont-file-svg:before { - content: "\eb29" -} - -.icofont-file-text:before { - content: "\eb2a" -} - -.icofont-file-tiff:before { - content: "\eb2b" -} - -.icofont-file-video:before { - content: "\eb2c" -} - -.icofont-file-wave:before { - content: "\eb2d" -} - -.icofont-file-wmv:before { - content: "\eb2e" -} - -.icofont-file-word:before { - content: "\eb2f" -} - -.icofont-file-zip:before { - content: "\eb30" -} - -.icofont-cycling-alt:before { - content: "\eb31" -} - -.icofont-cycling:before { - content: "\eb32" -} - -.icofont-dumbbell:before { - content: "\eb33" -} - -.icofont-dumbbells:before { - content: "\eb34" -} - -.icofont-gym-alt-1:before { - content: "\eb35" -} - -.icofont-gym-alt-2:before { - content: "\eb36" -} - -.icofont-gym-alt-3:before { - content: "\eb37" -} - -.icofont-gym:before { - content: "\eb38" -} - -.icofont-muscle-weight:before { - content: "\eb39" -} - -.icofont-muscle:before { - content: "\eb3a" -} - -.icofont-apple:before { - content: "\eb3b" -} - -.icofont-arabian-coffee:before { - content: "\eb3c" -} - -.icofont-artichoke:before { - content: "\eb3d" -} - -.icofont-asparagus:before { - content: "\eb3e" -} - -.icofont-avocado:before { - content: "\eb3f" -} - -.icofont-baby-food:before { - content: "\eb40" -} - -.icofont-banana:before { - content: "\eb41" -} - -.icofont-bbq:before { - content: "\eb42" -} - -.icofont-beans:before { - content: "\eb43" -} - -.icofont-beer:before { - content: "\eb44" -} - -.icofont-bell-pepper-capsicum:before { - content: "\eb45" -} - -.icofont-birthday-cake:before { - content: "\eb46" -} - -.icofont-bread:before { - content: "\eb47" -} - -.icofont-broccoli:before { - content: "\eb48" -} - -.icofont-burger:before { - content: "\eb49" -} - -.icofont-cabbage:before { - content: "\eb4a" -} - -.icofont-carrot:before { - content: "\eb4b" -} - -.icofont-cauli-flower:before { - content: "\eb4c" -} - -.icofont-cheese:before { - content: "\eb4d" -} - -.icofont-chef:before { - content: "\eb4e" -} - -.icofont-cherry:before { - content: "\eb4f" -} - -.icofont-chicken-fry:before { - content: "\eb50" -} - -.icofont-chicken:before { - content: "\eb51" -} - -.icofont-cocktail:before { - content: "\eb52" -} - -.icofont-coconut-water:before { - content: "\eb53" -} - -.icofont-coconut:before { - content: "\eb54" -} - -.icofont-coffee-alt:before { - content: "\eb55" -} - -.icofont-coffee-cup:before { - content: "\eb56" -} - -.icofont-coffee-mug:before { - content: "\eb57" -} - -.icofont-coffee-pot:before { - content: "\eb58" -} - -.icofont-cola:before { - content: "\eb59" -} - -.icofont-corn:before { - content: "\eb5a" -} - -.icofont-croissant:before { - content: "\eb5b" -} - -.icofont-crop-plant:before { - content: "\eb5c" -} - -.icofont-cucumber:before { - content: "\eb5d" -} - -.icofont-culinary:before { - content: "\eb5e" -} - -.icofont-cup-cake:before { - content: "\eb5f" -} - -.icofont-dining-table:before { - content: "\eb60" -} - -.icofont-donut:before { - content: "\eb61" -} - -.icofont-egg-plant:before { - content: "\eb62" -} - -.icofont-egg-poached:before { - content: "\eb63" -} - -.icofont-farmer-alt:before { - content: "\eb64" -} - -.icofont-farmer:before { - content: "\eb65" -} - -.icofont-fast-food:before { - content: "\eb66" -} - -.icofont-food-basket:before { - content: "\eb67" -} - -.icofont-food-cart:before { - content: "\eb68" -} - -.icofont-fork-and-knife:before { - content: "\eb69" -} - -.icofont-french-fries:before { - content: "\eb6a" -} - -.icofont-fruits:before { - content: "\eb6b" -} - -.icofont-grapes:before { - content: "\eb6c" -} - -.icofont-honey:before { - content: "\eb6d" -} - -.icofont-hot-dog:before { - content: "\eb6e" -} - -.icofont-ice-cream-alt:before { - content: "\eb6f" -} - -.icofont-ice-cream:before { - content: "\eb70" -} - -.icofont-juice:before { - content: "\eb71" -} - -.icofont-ketchup:before { - content: "\eb72" -} - -.icofont-kiwi:before { - content: "\eb73" -} - -.icofont-layered-cake:before { - content: "\eb74" -} - -.icofont-lemon-alt:before { - content: "\eb75" -} - -.icofont-lemon:before { - content: "\eb76" -} - -.icofont-lobster:before { - content: "\eb77" -} - -.icofont-mango:before { - content: "\eb78" -} - -.icofont-milk:before { - content: "\eb79" -} - -.icofont-mushroom:before { - content: "\eb7a" -} - -.icofont-noodles:before { - content: "\eb7b" -} - -.icofont-onion:before { - content: "\eb7c" -} - -.icofont-orange:before { - content: "\eb7d" -} - -.icofont-pear:before { - content: "\eb7e" -} - -.icofont-peas:before { - content: "\eb7f" -} - -.icofont-pepper:before { - content: "\eb80" -} - -.icofont-pie-alt:before { - content: "\eb81" -} - -.icofont-pie:before { - content: "\eb82" -} - -.icofont-pineapple:before { - content: "\eb83" -} - -.icofont-pizza-slice:before { - content: "\eb84" -} - -.icofont-pizza:before { - content: "\eb85" -} - -.icofont-plant:before { - content: "\eb86" -} - -.icofont-popcorn:before { - content: "\eb87" -} - -.icofont-potato:before { - content: "\eb88" -} - -.icofont-pumpkin:before { - content: "\eb89" -} - -.icofont-raddish:before { - content: "\eb8a" -} - -.icofont-restaurant-menu:before { - content: "\eb8b" -} - -.icofont-restaurant:before { - content: "\eb8c" -} - -.icofont-salt-and-pepper:before { - content: "\eb8d" -} - -.icofont-sandwich:before { - content: "\eb8e" -} - -.icofont-sausage:before { - content: "\eb8f" -} - -.icofont-soft-drinks:before { - content: "\eb90" -} - -.icofont-soup-bowl:before { - content: "\eb91" -} - -.icofont-spoon-and-fork:before { - content: "\eb92" -} - -.icofont-steak:before { - content: "\eb93" -} - -.icofont-strawberry:before { - content: "\eb94" -} - -.icofont-sub-sandwich:before { - content: "\eb95" -} - -.icofont-sushi:before { - content: "\eb96" -} - -.icofont-taco:before { - content: "\eb97" -} - -.icofont-tea-pot:before { - content: "\eb98" -} - -.icofont-tea:before { - content: "\eb99" -} - -.icofont-tomato:before { - content: "\eb9a" -} - -.icofont-watermelon:before { - content: "\eb9b" -} - -.icofont-wheat:before { - content: "\eb9c" -} - -.icofont-baby-backpack:before { - content: "\eb9d" -} - -.icofont-baby-cloth:before { - content: "\eb9e" -} - -.icofont-baby-milk-bottle:before { - content: "\eb9f" -} - -.icofont-baby-trolley:before { - content: "\eba0" -} - -.icofont-baby:before { - content: "\eba1" -} - -.icofont-candy:before { - content: "\eba2" -} - -.icofont-holding-hands:before { - content: "\eba3" -} - -.icofont-infant-nipple:before { - content: "\eba4" -} - -.icofont-kids-scooter:before { - content: "\eba5" -} - -.icofont-safety-pin:before { - content: "\eba6" -} - -.icofont-teddy-bear:before { - content: "\eba7" -} - -.icofont-toy-ball:before { - content: "\eba8" -} - -.icofont-toy-cat:before { - content: "\eba9" -} - -.icofont-toy-duck:before { - content: "\ebaa" -} - -.icofont-toy-elephant:before { - content: "\ebab" -} - -.icofont-toy-hand:before { - content: "\ebac" -} - -.icofont-toy-horse:before { - content: "\ebad" -} - -.icofont-toy-lattu:before { - content: "\ebae" -} - -.icofont-toy-train:before { - content: "\ebaf" -} - -.icofont-burglar:before { - content: "\ebb0" -} - -.icofont-cannon-firing:before { - content: "\ebb1" -} - -.icofont-cc-camera:before { - content: "\ebb2" -} - -.icofont-cop-badge:before { - content: "\ebb3" -} - -.icofont-cop:before { - content: "\ebb4" -} - -.icofont-court-hammer:before { - content: "\ebb5" -} - -.icofont-court:before { - content: "\ebb6" -} - -.icofont-finger-print:before { - content: "\ebb7" -} - -.icofont-gavel:before { - content: "\ebb8" -} - -.icofont-handcuff-alt:before { - content: "\ebb9" -} - -.icofont-handcuff:before { - content: "\ebba" -} - -.icofont-investigation:before { - content: "\ebbb" -} - -.icofont-investigator:before { - content: "\ebbc" -} - -.icofont-jail:before { - content: "\ebbd" -} - -.icofont-judge:before { - content: "\ebbe" -} - -.icofont-law-alt-1:before { - content: "\ebbf" -} - -.icofont-law-alt-2:before { - content: "\ebc0" -} - -.icofont-law-alt-3:before { - content: "\ebc1" -} - -.icofont-law-book:before { - content: "\ebc2" -} - -.icofont-law-document:before { - content: "\ebc3" -} - -.icofont-law-order:before { - content: "\ebc4" -} - -.icofont-law-protect:before { - content: "\ebc5" -} - -.icofont-law-scales:before { - content: "\ebc6" -} - -.icofont-law:before { - content: "\ebc7" -} - -.icofont-lawyer-alt-1:before { - content: "\ebc8" -} - -.icofont-lawyer-alt-2:before { - content: "\ebc9" -} - -.icofont-lawyer:before { - content: "\ebca" -} - -.icofont-legal:before { - content: "\ebcb" -} - -.icofont-pistol:before { - content: "\ebcc" -} - -.icofont-police-badge:before { - content: "\ebcd" -} - -.icofont-police-cap:before { - content: "\ebce" -} - -.icofont-police-car-alt-1:before { - content: "\ebcf" -} - -.icofont-police-car-alt-2:before { - content: "\ebd0" -} - -.icofont-police-car:before { - content: "\ebd1" -} - -.icofont-police-hat:before { - content: "\ebd2" -} - -.icofont-police-van:before { - content: "\ebd3" -} - -.icofont-police:before { - content: "\ebd4" -} - -.icofont-thief-alt:before { - content: "\ebd5" -} - -.icofont-thief:before { - content: "\ebd6" -} - -.icofont-abacus-alt:before { - content: "\ebd7" -} - -.icofont-abacus:before { - content: "\ebd8" -} - -.icofont-angle-180:before { - content: "\ebd9" -} - -.icofont-angle-45:before { - content: "\ebda" -} - -.icofont-angle-90:before { - content: "\ebdb" -} - -.icofont-angle:before { - content: "\ebdc" -} - -.icofont-calculator-alt-1:before { - content: "\ebdd" -} - -.icofont-calculator-alt-2:before { - content: "\ebde" -} - -.icofont-calculator:before { - content: "\ebdf" -} - -.icofont-circle-ruler-alt:before { - content: "\ebe0" -} - -.icofont-circle-ruler:before { - content: "\ebe1" -} - -.icofont-compass-alt-1:before { - content: "\ebe2" -} - -.icofont-compass-alt-2:before { - content: "\ebe3" -} - -.icofont-compass-alt-3:before { - content: "\ebe4" -} - -.icofont-compass-alt-4:before { - content: "\ebe5" -} - -.icofont-golden-ratio:before { - content: "\ebe6" -} - -.icofont-marker-alt-1:before { - content: "\ebe7" -} - -.icofont-marker-alt-2:before { - content: "\ebe8" -} - -.icofont-marker-alt-3:before { - content: "\ebe9" -} - -.icofont-marker:before { - content: "\ebea" -} - -.icofont-math:before { - content: "\ebeb" -} - -.icofont-mathematical-alt-1:before { - content: "\ebec" -} - -.icofont-mathematical-alt-2:before { - content: "\ebed" -} - -.icofont-mathematical:before { - content: "\ebee" -} - -.icofont-pen-alt-1:before { - content: "\ebef" -} - -.icofont-pen-alt-2:before { - content: "\ebf0" -} - -.icofont-pen-alt-3:before { - content: "\ebf1" -} - -.icofont-pen-holder-alt-1:before { - content: "\ebf2" -} - -.icofont-pen-holder:before { - content: "\ebf3" -} - -.icofont-pen:before { - content: "\ebf4" -} - -.icofont-pencil-alt-1:before { - content: "\ebf5" -} - -.icofont-pencil-alt-2:before { - content: "\ebf6" -} - -.icofont-pencil-alt-3:before { - content: "\ebf7" -} - -.icofont-pencil-alt-4:before { - content: "\ebf8" -} - -.icofont-pencil:before { - content: "\ebf9" -} - -.icofont-ruler-alt-1:before { - content: "\ebfa" -} - -.icofont-ruler-alt-2:before { - content: "\ebfb" -} - -.icofont-ruler-compass-alt:before { - content: "\ebfc" -} - -.icofont-ruler-compass:before { - content: "\ebfd" -} - -.icofont-ruler-pencil-alt-1:before { - content: "\ebfe" -} - -.icofont-ruler-pencil-alt-2:before { - content: "\ebff" -} - -.icofont-ruler-pencil:before { - content: "\ec00" -} - -.icofont-ruler:before { - content: "\ec01" -} - -.icofont-rulers-alt:before { - content: "\ec02" -} - -.icofont-rulers:before { - content: "\ec03" -} - -.icofont-square-root:before { - content: "\ec04" -} - -.icofont-ui-calculator:before { - content: "\ec05" -} - -.icofont-aids:before { - content: "\ec06" -} - -.icofont-ambulance-crescent:before { - content: "\ec07" -} - -.icofont-ambulance-cross:before { - content: "\ec08" -} - -.icofont-ambulance:before { - content: "\ec09" -} - -.icofont-autism:before { - content: "\ec0a" -} - -.icofont-bandage:before { - content: "\ec0b" -} - -.icofont-blind:before { - content: "\ec0c" -} - -.icofont-blood-drop:before { - content: "\ec0d" -} - -.icofont-blood-test:before { - content: "\ec0e" -} - -.icofont-blood:before { - content: "\ec0f" -} - -.icofont-brain-alt:before { - content: "\ec10" -} - -.icofont-brain:before { - content: "\ec11" -} - -.icofont-capsule:before { - content: "\ec12" -} - -.icofont-crutch:before { - content: "\ec13" -} - -.icofont-disabled:before { - content: "\ec14" -} - -.icofont-dna-alt-1:before { - content: "\ec15" -} - -.icofont-dna-alt-2:before { - content: "\ec16" -} - -.icofont-dna:before { - content: "\ec17" -} - -.icofont-doctor-alt:before { - content: "\ec18" -} - -.icofont-doctor:before { - content: "\ec19" -} - -.icofont-drug-pack:before { - content: "\ec1a" -} - -.icofont-drug:before { - content: "\ec1b" -} - -.icofont-first-aid-alt:before { - content: "\ec1c" -} - -.icofont-first-aid:before { - content: "\ec1d" -} - -.icofont-heart-beat-alt:before { - content: "\ec1e" -} - -.icofont-heart-beat:before { - content: "\ec1f" -} - -.icofont-heartbeat:before { - content: "\ec20" -} - -.icofont-herbal:before { - content: "\ec21" -} - -.icofont-hospital:before { - content: "\ec22" -} - -.icofont-icu:before { - content: "\ec23" -} - -.icofont-injection-syringe:before { - content: "\ec24" -} - -.icofont-laboratory:before { - content: "\ec25" -} - -.icofont-medical-sign-alt:before { - content: "\ec26" -} - -.icofont-medical-sign:before { - content: "\ec27" -} - -.icofont-nurse-alt:before { - content: "\ec28" -} - -.icofont-nurse:before { - content: "\ec29" -} - -.icofont-nursing-home:before { - content: "\ec2a" -} - -.icofont-operation-theater:before { - content: "\ec2b" -} - -.icofont-paralysis-disability:before { - content: "\ec2c" -} - -.icofont-patient-bed:before { - content: "\ec2d" -} - -.icofont-patient-file:before { - content: "\ec2e" -} - -.icofont-pills:before { - content: "\ec2f" -} - -.icofont-prescription:before { - content: "\ec30" -} - -.icofont-pulse:before { - content: "\ec31" -} - -.icofont-stethoscope-alt:before { - content: "\ec32" -} - -.icofont-stethoscope:before { - content: "\ec33" -} - -.icofont-stretcher:before { - content: "\ec34" -} - -.icofont-surgeon-alt:before { - content: "\ec35" -} - -.icofont-surgeon:before { - content: "\ec36" -} - -.icofont-tablets:before { - content: "\ec37" -} - -.icofont-test-bottle:before { - content: "\ec38" -} - -.icofont-test-tube:before { - content: "\ec39" -} - -.icofont-thermometer-alt:before { - content: "\ec3a" -} - -.icofont-thermometer:before { - content: "\ec3b" -} - -.icofont-tooth:before { - content: "\ec3c" -} - -.icofont-xray:before { - content: "\ec3d" -} - -.icofont-ui-add:before { - content: "\ec3e" -} - -.icofont-ui-alarm:before { - content: "\ec3f" -} - -.icofont-ui-battery:before { - content: "\ec40" -} - -.icofont-ui-block:before { - content: "\ec41" -} - -.icofont-ui-bluetooth:before { - content: "\ec42" -} - -.icofont-ui-brightness:before { - content: "\ec43" -} - -.icofont-ui-browser:before { - content: "\ec44" -} - -.icofont-ui-calendar:before { - content: "\ec45" -} - -.icofont-ui-call:before { - content: "\ec46" -} - -.icofont-ui-camera:before { - content: "\ec47" -} - -.icofont-ui-cart:before { - content: "\ec48" -} - -.icofont-ui-cell-phone:before { - content: "\ec49" -} - -.icofont-ui-chat:before { - content: "\ec4a" -} - -.icofont-ui-check:before { - content: "\ec4b" -} - -.icofont-ui-clip-board:before { - content: "\ec4c" -} - -.icofont-ui-clip:before { - content: "\ec4d" -} - -.icofont-ui-clock:before { - content: "\ec4e" -} - -.icofont-ui-close:before { - content: "\ec4f" -} - -.icofont-ui-contact-list:before { - content: "\ec50" -} - -.icofont-ui-copy:before { - content: "\ec51" -} - -.icofont-ui-cut:before { - content: "\ec52" -} - -.icofont-ui-delete:before { - content: "\ec53" -} - -.icofont-ui-dial-phone:before { - content: "\ec54" -} - -.icofont-ui-edit:before { - content: "\ec55" -} - -.icofont-ui-email:before { - content: "\ec56" -} - -.icofont-ui-file:before { - content: "\ec57" -} - -.icofont-ui-fire-wall:before { - content: "\ec58" -} - -.icofont-ui-flash-light:before { - content: "\ec59" -} - -.icofont-ui-flight:before { - content: "\ec5a" -} - -.icofont-ui-folder:before { - content: "\ec5b" -} - -.icofont-ui-game:before { - content: "\ec5c" -} - -.icofont-ui-handicapped:before { - content: "\ec5d" -} - -.icofont-ui-home:before { - content: "\ec5e" -} - -.icofont-ui-image:before { - content: "\ec5f" -} - -.icofont-ui-laoding:before { - content: "\ec60" -} - -.icofont-ui-lock:before { - content: "\ec61" -} - -.icofont-ui-love-add:before { - content: "\ec62" -} - -.icofont-ui-love-broken:before { - content: "\ec63" -} - -.icofont-ui-love-remove:before { - content: "\ec64" -} - -.icofont-ui-love:before { - content: "\ec65" -} - -.icofont-ui-map:before { - content: "\ec66" -} - -.icofont-ui-message:before { - content: "\ec67" -} - -.icofont-ui-messaging:before { - content: "\ec68" -} - -.icofont-ui-movie:before { - content: "\ec69" -} - -.icofont-ui-music-player:before { - content: "\ec6a" -} - -.icofont-ui-music:before { - content: "\ec6b" -} - -.icofont-ui-mute:before { - content: "\ec6c" -} - -.icofont-ui-network:before { - content: "\ec6d" -} - -.icofont-ui-next:before { - content: "\ec6e" -} - -.icofont-ui-note:before { - content: "\ec6f" -} - -.icofont-ui-office:before { - content: "\ec70" -} - -.icofont-ui-password:before { - content: "\ec71" -} - -.icofont-ui-pause:before { - content: "\ec72" -} - -.icofont-ui-play-stop:before { - content: "\ec73" -} - -.icofont-ui-play:before { - content: "\ec74" -} - -.icofont-ui-pointer:before { - content: "\ec75" -} - -.icofont-ui-power:before { - content: "\ec76" -} - -.icofont-ui-press:before { - content: "\ec77" -} - -.icofont-ui-previous:before { - content: "\ec78" -} - -.icofont-ui-rate-add:before { - content: "\ec79" -} - -.icofont-ui-rate-blank:before { - content: "\ec7a" -} - -.icofont-ui-rate-remove:before { - content: "\ec7b" -} - -.icofont-ui-rating:before { - content: "\ec7c" -} - -.icofont-ui-record:before { - content: "\ec7d" -} - -.icofont-ui-remove:before { - content: "\ec7e" -} - -.icofont-ui-reply:before { - content: "\ec7f" -} - -.icofont-ui-rotation:before { - content: "\ec80" -} - -.icofont-ui-rss:before { - content: "\ec81" -} - -.icofont-ui-search:before { - content: "\ec82" -} - -.icofont-ui-settings:before { - content: "\ec83" -} - -.icofont-ui-social-link:before { - content: "\ec84" -} - -.icofont-ui-tag:before { - content: "\ec85" -} - -.icofont-ui-text-chat:before { - content: "\ec86" -} - -.icofont-ui-text-loading:before { - content: "\ec87" -} - -.icofont-ui-theme:before { - content: "\ec88" -} - -.icofont-ui-timer:before { - content: "\ec89" -} - -.icofont-ui-touch-phone:before { - content: "\ec8a" -} - -.icofont-ui-travel:before { - content: "\ec8b" -} - -.icofont-ui-unlock:before { - content: "\ec8c" -} - -.icofont-ui-user-group:before { - content: "\ec8d" -} - -.icofont-ui-user:before { - content: "\ec8e" -} - -.icofont-ui-v-card:before { - content: "\ec8f" -} - -.icofont-ui-video-chat:before { - content: "\ec90" -} - -.icofont-ui-video-message:before { - content: "\ec91" -} - -.icofont-ui-video-play:before { - content: "\ec92" -} - -.icofont-ui-video:before { - content: "\ec93" -} - -.icofont-ui-volume:before { - content: "\ec94" -} - -.icofont-ui-weather:before { - content: "\ec95" -} - -.icofont-ui-wifi:before { - content: "\ec96" -} - -.icofont-ui-zoom-in:before { - content: "\ec97" -} - -.icofont-ui-zoom-out:before { - content: "\ec98" -} - -.icofont-cassette-player:before { - content: "\ec99" -} - -.icofont-cassette:before { - content: "\ec9a" -} - -.icofont-forward:before { - content: "\ec9b" -} - -.icofont-guiter:before { - content: "\ec9c" -} - -.icofont-movie:before { - content: "\ec9d" -} - -.icofont-multimedia:before { - content: "\ec9e" -} - -.icofont-music-alt:before { - content: "\ec9f" -} - -.icofont-music-disk:before { - content: "\eca0" -} - -.icofont-music-note:before { - content: "\eca1" -} - -.icofont-music-notes:before { - content: "\eca2" -} - -.icofont-music:before { - content: "\eca3" -} - -.icofont-mute-volume:before { - content: "\eca4" -} - -.icofont-pause:before { - content: "\eca5" -} - -.icofont-play-alt-1:before { - content: "\eca6" -} - -.icofont-play-alt-2:before { - content: "\eca7" -} - -.icofont-play-alt-3:before { - content: "\eca8" -} - -.icofont-play-pause:before { - content: "\eca9" -} - -.icofont-play:before { - content: "\ecaa" -} - -.icofont-record:before { - content: "\ecab" -} - -.icofont-retro-music-disk:before { - content: "\ecac" -} - -.icofont-rewind:before { - content: "\ecad" -} - -.icofont-song-notes:before { - content: "\ecae" -} - -.icofont-sound-wave-alt:before { - content: "\ecaf" -} - -.icofont-sound-wave:before { - content: "\ecb0" -} - -.icofont-stop:before { - content: "\ecb1" -} - -.icofont-video-alt:before { - content: "\ecb2" -} - -.icofont-video-cam:before { - content: "\ecb3" -} - -.icofont-video-clapper:before { - content: "\ecb4" -} - -.icofont-video:before { - content: "\ecb5" -} - -.icofont-volume-bar:before { - content: "\ecb6" -} - -.icofont-volume-down:before { - content: "\ecb7" -} - -.icofont-volume-mute:before { - content: "\ecb8" -} - -.icofont-volume-off:before { - content: "\ecb9" -} - -.icofont-volume-up:before { - content: "\ecba" -} - -.icofont-youtube-play:before { - content: "\ecbb" -} - -.icofont-2checkout-alt:before { - content: "\ecbc" -} - -.icofont-2checkout:before { - content: "\ecbd" -} - -.icofont-amazon-alt:before { - content: "\ecbe" -} - -.icofont-amazon:before { - content: "\ecbf" -} - -.icofont-american-express-alt:before { - content: "\ecc0" -} - -.icofont-american-express:before { - content: "\ecc1" -} - -.icofont-apple-pay-alt:before { - content: "\ecc2" -} - -.icofont-apple-pay:before { - content: "\ecc3" -} - -.icofont-bank-transfer-alt:before { - content: "\ecc4" -} - -.icofont-bank-transfer:before { - content: "\ecc5" -} - -.icofont-braintree-alt:before { - content: "\ecc6" -} - -.icofont-braintree:before { - content: "\ecc7" -} - -.icofont-cash-on-delivery-alt:before { - content: "\ecc8" -} - -.icofont-cash-on-delivery:before { - content: "\ecc9" -} - -.icofont-diners-club-alt-1:before { - content: "\ecca" -} - -.icofont-diners-club-alt-2:before { - content: "\eccb" -} - -.icofont-diners-club-alt-3:before { - content: "\eccc" -} - -.icofont-diners-club:before { - content: "\eccd" -} - -.icofont-discover-alt:before { - content: "\ecce" -} - -.icofont-discover:before { - content: "\eccf" -} - -.icofont-eway-alt:before { - content: "\ecd0" -} - -.icofont-eway:before { - content: "\ecd1" -} - -.icofont-google-wallet-alt-1:before { - content: "\ecd2" -} - -.icofont-google-wallet-alt-2:before { - content: "\ecd3" -} - -.icofont-google-wallet-alt-3:before { - content: "\ecd4" -} - -.icofont-google-wallet:before { - content: "\ecd5" -} - -.icofont-jcb-alt:before { - content: "\ecd6" -} - -.icofont-jcb:before { - content: "\ecd7" -} - -.icofont-maestro-alt:before { - content: "\ecd8" -} - -.icofont-maestro:before { - content: "\ecd9" -} - -.icofont-mastercard-alt:before { - content: "\ecda" -} - -.icofont-mastercard:before { - content: "\ecdb" -} - -.icofont-payoneer-alt:before { - content: "\ecdc" -} - -.icofont-payoneer:before { - content: "\ecdd" -} - -.icofont-paypal-alt:before { - content: "\ecde" -} - -.icofont-paypal:before { - content: "\ecdf" -} - -.icofont-sage-alt:before { - content: "\ece0" -} - -.icofont-sage:before { - content: "\ece1" -} - -.icofont-skrill-alt:before { - content: "\ece2" -} - -.icofont-skrill:before { - content: "\ece3" -} - -.icofont-stripe-alt:before { - content: "\ece4" -} - -.icofont-stripe:before { - content: "\ece5" -} - -.icofont-visa-alt:before { - content: "\ece6" -} - -.icofont-visa-electron:before { - content: "\ece7" -} - -.icofont-visa:before { - content: "\ece8" -} - -.icofont-western-union-alt:before { - content: "\ece9" -} - -.icofont-western-union:before { - content: "\ecea" -} - -.icofont-boy:before { - content: "\eceb" -} - -.icofont-business-man-alt-1:before { - content: "\ecec" -} - -.icofont-business-man-alt-2:before { - content: "\eced" -} - -.icofont-business-man-alt-3:before { - content: "\ecee" -} - -.icofont-business-man:before { - content: "\ecef" -} - -.icofont-female:before { - content: "\ecf0" -} - -.icofont-funky-man:before { - content: "\ecf1" -} - -.icofont-girl-alt:before { - content: "\ecf2" -} - -.icofont-girl:before { - content: "\ecf3" -} - -.icofont-group:before { - content: "\ecf4" -} - -.icofont-hotel-boy-alt:before { - content: "\ecf5" -} - -.icofont-hotel-boy:before { - content: "\ecf6" -} - -.icofont-kid:before { - content: "\ecf7" -} - -.icofont-man-in-glasses:before { - content: "\ecf8" -} - -.icofont-people:before { - content: "\ecf9" -} - -.icofont-support:before { - content: "\ecfa" -} - -.icofont-user-alt-1:before { - content: "\ecfb" -} - -.icofont-user-alt-2:before { - content: "\ecfc" -} - -.icofont-user-alt-3:before { - content: "\ecfd" -} - -.icofont-user-alt-4:before { - content: "\ecfe" -} - -.icofont-user-alt-5:before { - content: "\ecff" -} - -.icofont-user-alt-6:before { - content: "\ed00" -} - -.icofont-user-alt-7:before { - content: "\ed01" -} - -.icofont-user-female:before { - content: "\ed02" -} - -.icofont-user-male:before { - content: "\ed03" -} - -.icofont-user-suited:before { - content: "\ed04" -} - -.icofont-user:before { - content: "\ed05" -} - -.icofont-users-alt-1:before { - content: "\ed06" -} - -.icofont-users-alt-2:before { - content: "\ed07" -} - -.icofont-users-alt-3:before { - content: "\ed08" -} - -.icofont-users-alt-4:before { - content: "\ed09" -} - -.icofont-users-alt-5:before { - content: "\ed0a" -} - -.icofont-users-alt-6:before { - content: "\ed0b" -} - -.icofont-users-social:before { - content: "\ed0c" -} - -.icofont-users:before { - content: "\ed0d" -} - -.icofont-waiter-alt:before { - content: "\ed0e" -} - -.icofont-waiter:before { - content: "\ed0f" -} - -.icofont-woman-in-glasses:before { - content: "\ed10" -} - -.icofont-search-1:before { - content: "\ed11" -} - -.icofont-search-2:before { - content: "\ed12" -} - -.icofont-search-document:before { - content: "\ed13" -} - -.icofont-search-folder:before { - content: "\ed14" -} - -.icofont-search-job:before { - content: "\ed15" -} - -.icofont-search-map:before { - content: "\ed16" -} - -.icofont-search-property:before { - content: "\ed17" -} - -.icofont-search-restaurant:before { - content: "\ed18" -} - -.icofont-search-stock:before { - content: "\ed19" -} - -.icofont-search-user:before { - content: "\ed1a" -} - -.icofont-search:before { - content: "\ed1b" -} - -.icofont-500px:before { - content: "\ed1c" -} - -.icofont-aim:before { - content: "\ed1d" -} - -.icofont-badoo:before { - content: "\ed1e" -} - -.icofont-baidu-tieba:before { - content: "\ed1f" -} - -.icofont-bbm-messenger:before { - content: "\ed20" -} - -.icofont-bebo:before { - content: "\ed21" -} - -.icofont-behance:before { - content: "\ed22" -} - -.icofont-blogger:before { - content: "\ed23" -} - -.icofont-bootstrap:before { - content: "\ed24" -} - -.icofont-brightkite:before { - content: "\ed25" -} - -.icofont-cloudapp:before { - content: "\ed26" -} - -.icofont-concrete5:before { - content: "\ed27" -} - -.icofont-delicious:before { - content: "\ed28" -} - -.icofont-designbump:before { - content: "\ed29" -} - -.icofont-designfloat:before { - content: "\ed2a" -} - -.icofont-deviantart:before { - content: "\ed2b" -} - -.icofont-digg:before { - content: "\ed2c" -} - -.icofont-dotcms:before { - content: "\ed2d" -} - -.icofont-dribbble:before { - content: "\ed2e" -} - -.icofont-dribble:before { - content: "\ed2f" -} - -.icofont-dropbox:before { - content: "\ed30" -} - -.icofont-ebuddy:before { - content: "\ed31" -} - -.icofont-ello:before { - content: "\ed32" -} - -.icofont-ember:before { - content: "\ed33" -} - -.icofont-envato:before { - content: "\ed34" -} - -.icofont-evernote:before { - content: "\ed35" -} - -.icofont-facebook-messenger:before { - content: "\ed36" -} - -.icofont-facebook:before { - content: "\ed37" -} - -.icofont-feedburner:before { - content: "\ed38" -} - -.icofont-flikr:before { - content: "\ed39" -} - -.icofont-folkd:before { - content: "\ed3a" -} - -.icofont-foursquare:before { - content: "\ed3b" -} - -.icofont-friendfeed:before { - content: "\ed3c" -} - -.icofont-ghost:before { - content: "\ed3d" -} - -.icofont-github:before { - content: "\ed3e" -} - -.icofont-gnome:before { - content: "\ed3f" -} - -.icofont-google-buzz:before { - content: "\ed40" -} - -.icofont-google-hangouts:before { - content: "\ed41" -} - -.icofont-google-map:before { - content: "\ed42" -} - -.icofont-google-plus:before { - content: "\ed43" -} - -.icofont-google-talk:before { - content: "\ed44" -} - -.icofont-hype-machine:before { - content: "\ed45" -} - -.icofont-instagram:before { - content: "\ed46" -} - -.icofont-kakaotalk:before { - content: "\ed47" -} - -.icofont-kickstarter:before { - content: "\ed48" -} - -.icofont-kik:before { - content: "\ed49" -} - -.icofont-kiwibox:before { - content: "\ed4a" -} - -.icofont-line-messenger:before { - content: "\ed4b" -} - -.icofont-line:before { - content: "\ed4c" -} - -.icofont-linkedin:before { - content: "\ed4d" -} - -.icofont-linux-mint:before { - content: "\ed4e" -} - -.icofont-live-messenger:before { - content: "\ed4f" -} - -.icofont-livejournal:before { - content: "\ed50" -} - -.icofont-magento:before { - content: "\ed51" -} - -.icofont-meetme:before { - content: "\ed52" -} - -.icofont-meetup:before { - content: "\ed53" -} - -.icofont-mixx:before { - content: "\ed54" -} - -.icofont-newsvine:before { - content: "\ed55" -} - -.icofont-nimbuss:before { - content: "\ed56" -} - -.icofont-odnoklassniki:before { - content: "\ed57" -} - -.icofont-opencart:before { - content: "\ed58" -} - -.icofont-oscommerce:before { - content: "\ed59" -} - -.icofont-pandora:before { - content: "\ed5a" -} - -.icofont-photobucket:before { - content: "\ed5b" -} - -.icofont-picasa:before { - content: "\ed5c" -} - -.icofont-pinterest:before { - content: "\ed5d" -} - -.icofont-prestashop:before { - content: "\ed5e" -} - -.icofont-qik:before { - content: "\ed5f" -} - -.icofont-qq:before { - content: "\ed60" -} - -.icofont-readernaut:before { - content: "\ed61" -} - -.icofont-reddit:before { - content: "\ed62" -} - -.icofont-renren:before { - content: "\ed63" -} - -.icofont-rss:before { - content: "\ed64" -} - -.icofont-shopify:before { - content: "\ed65" -} - -.icofont-silverstripe:before { - content: "\ed66" -} - -.icofont-skype:before { - content: "\ed67" -} - -.icofont-slack:before { - content: "\ed68" -} - -.icofont-slashdot:before { - content: "\ed69" -} - -.icofont-slidshare:before { - content: "\ed6a" -} - -.icofont-smugmug:before { - content: "\ed6b" -} - -.icofont-snapchat:before { - content: "\ed6c" -} - -.icofont-soundcloud:before { - content: "\ed6d" -} - -.icofont-spotify:before { - content: "\ed6e" -} - -.icofont-stack-exchange:before { - content: "\ed6f" -} - -.icofont-stack-overflow:before { - content: "\ed70" -} - -.icofont-steam:before { - content: "\ed71" -} - -.icofont-stumbleupon:before { - content: "\ed72" -} - -.icofont-tagged:before { - content: "\ed73" -} - -.icofont-technorati:before { - content: "\ed74" -} - -.icofont-telegram:before { - content: "\ed75" -} - -.icofont-tinder:before { - content: "\ed76" -} - -.icofont-trello:before { - content: "\ed77" -} - -.icofont-tumblr:before { - content: "\ed78" -} - -.icofont-twitch:before { - content: "\ed79" -} - -.icofont-twitter:before { - content: "\ed7a" -} - -.icofont-typo3:before { - content: "\ed7b" -} - -.icofont-ubercart:before { - content: "\ed7c" -} - -.icofont-viber:before { - content: "\ed7d" -} - -.icofont-viddler:before { - content: "\ed7e" -} - -.icofont-vimeo:before { - content: "\ed7f" -} - -.icofont-vine:before { - content: "\ed80" -} - -.icofont-virb:before { - content: "\ed81" -} - -.icofont-virtuemart:before { - content: "\ed82" -} - -.icofont-vk:before { - content: "\ed83" -} - -.icofont-wechat:before { - content: "\ed84" -} - -.icofont-weibo:before { - content: "\ed85" -} - -.icofont-whatsapp:before { - content: "\ed86" -} - -.icofont-xing:before { - content: "\ed87" -} - -.icofont-yahoo:before { - content: "\ed88" -} - -.icofont-yelp:before { - content: "\ed89" -} - -.icofont-youku:before { - content: "\ed8a" -} - -.icofont-youtube:before { - content: "\ed8b" -} - -.icofont-zencart:before { - content: "\ed8c" -} - -.icofont-badminton-birdie:before { - content: "\ed8d" -} - -.icofont-baseball:before { - content: "\ed8e" -} - -.icofont-baseballer:before { - content: "\ed8f" -} - -.icofont-basketball-hoop:before { - content: "\ed90" -} - -.icofont-basketball:before { - content: "\ed91" -} - -.icofont-billiard-ball:before { - content: "\ed92" -} - -.icofont-boot-alt-1:before { - content: "\ed93" -} - -.icofont-boot-alt-2:before { - content: "\ed94" -} - -.icofont-boot:before { - content: "\ed95" -} - -.icofont-bowling-alt:before { - content: "\ed96" -} - -.icofont-bowling:before { - content: "\ed97" -} - -.icofont-canoe:before { - content: "\ed98" -} - -.icofont-cheer-leader:before { - content: "\ed99" -} - -.icofont-climbing:before { - content: "\ed9a" -} - -.icofont-corner:before { - content: "\ed9b" -} - -.icofont-field-alt:before { - content: "\ed9c" -} - -.icofont-field:before { - content: "\ed9d" -} - -.icofont-football-alt:before { - content: "\ed9e" -} - -.icofont-football-american:before { - content: "\ed9f" -} - -.icofont-football:before { - content: "\eda0" -} - -.icofont-foul:before { - content: "\eda1" -} - -.icofont-goal-keeper:before { - content: "\eda2" -} - -.icofont-goal:before { - content: "\eda3" -} - -.icofont-golf-alt:before { - content: "\eda4" -} - -.icofont-golf-bag:before { - content: "\eda5" -} - -.icofont-golf-cart:before { - content: "\eda6" -} - -.icofont-golf-field:before { - content: "\eda7" -} - -.icofont-golf:before { - content: "\eda8" -} - -.icofont-golfer:before { - content: "\eda9" -} - -.icofont-helmet:before { - content: "\edaa" -} - -.icofont-hockey-alt:before { - content: "\edab" -} - -.icofont-hockey:before { - content: "\edac" -} - -.icofont-ice-skate:before { - content: "\edad" -} - -.icofont-jersey-alt:before { - content: "\edae" -} - -.icofont-jersey:before { - content: "\edaf" -} - -.icofont-jumping:before { - content: "\edb0" -} - -.icofont-kick:before { - content: "\edb1" -} - -.icofont-leg:before { - content: "\edb2" -} - -.icofont-match-review:before { - content: "\edb3" -} - -.icofont-medal-sport:before { - content: "\edb4" -} - -.icofont-offside:before { - content: "\edb5" -} - -.icofont-olympic-logo:before { - content: "\edb6" -} - -.icofont-olympic:before { - content: "\edb7" -} - -.icofont-padding:before { - content: "\edb8" -} - -.icofont-penalty-card:before { - content: "\edb9" -} - -.icofont-racer:before { - content: "\edba" -} - -.icofont-racing-car:before { - content: "\edbb" -} - -.icofont-racing-flag-alt:before { - content: "\edbc" -} - -.icofont-racing-flag:before { - content: "\edbd" -} - -.icofont-racings-wheel:before { - content: "\edbe" -} - -.icofont-referee:before { - content: "\edbf" -} - -.icofont-refree-jersey:before { - content: "\edc0" -} - -.icofont-result-sport:before { - content: "\edc1" -} - -.icofont-rugby-ball:before { - content: "\edc2" -} - -.icofont-rugby-player:before { - content: "\edc3" -} - -.icofont-rugby:before { - content: "\edc4" -} - -.icofont-runner-alt-1:before { - content: "\edc5" -} - -.icofont-runner-alt-2:before { - content: "\edc6" -} - -.icofont-runner:before { - content: "\edc7" -} - -.icofont-score-board:before { - content: "\edc8" -} - -.icofont-skiing-man:before { - content: "\edc9" -} - -.icofont-skydiving-goggles:before { - content: "\edca" -} - -.icofont-snow-mobile:before { - content: "\edcb" -} - -.icofont-steering:before { - content: "\edcc" -} - -.icofont-stopwatch:before { - content: "\edcd" -} - -.icofont-substitute:before { - content: "\edce" -} - -.icofont-swimmer:before { - content: "\edcf" -} - -.icofont-table-tennis:before { - content: "\edd0" -} - -.icofont-team-alt:before { - content: "\edd1" -} - -.icofont-team:before { - content: "\edd2" -} - -.icofont-tennis-player:before { - content: "\edd3" -} - -.icofont-tennis:before { - content: "\edd4" -} - -.icofont-tracking:before { - content: "\edd5" -} - -.icofont-trophy-alt:before { - content: "\edd6" -} - -.icofont-trophy:before { - content: "\edd7" -} - -.icofont-volleyball-alt:before { - content: "\edd8" -} - -.icofont-volleyball-fire:before { - content: "\edd9" -} - -.icofont-volleyball:before { - content: "\edda" -} - -.icofont-water-bottle:before { - content: "\eddb" -} - -.icofont-whistle-alt:before { - content: "\eddc" -} - -.icofont-whistle:before { - content: "\eddd" -} - -.icofont-win-trophy:before { - content: "\edde" -} - -.icofont-align-center:before { - content: "\eddf" -} - -.icofont-align-left:before { - content: "\ede0" -} - -.icofont-align-right:before { - content: "\ede1" -} - -.icofont-all-caps:before { - content: "\ede2" -} - -.icofont-bold:before { - content: "\ede3" -} - -.icofont-brush:before { - content: "\ede4" -} - -.icofont-clip-board:before { - content: "\ede5" -} - -.icofont-code-alt:before { - content: "\ede6" -} - -.icofont-color-bucket:before { - content: "\ede7" -} - -.icofont-color-picker:before { - content: "\ede8" -} - -.icofont-copy-invert:before { - content: "\ede9" -} - -.icofont-copy:before { - content: "\edea" -} - -.icofont-cut:before { - content: "\edeb" -} - -.icofont-delete-alt:before { - content: "\edec" -} - -.icofont-edit-alt:before { - content: "\eded" -} - -.icofont-eraser-alt:before { - content: "\edee" -} - -.icofont-font:before { - content: "\edef" -} - -.icofont-heading:before { - content: "\edf0" -} - -.icofont-indent:before { - content: "\edf1" -} - -.icofont-italic-alt:before { - content: "\edf2" -} - -.icofont-italic:before { - content: "\edf3" -} - -.icofont-justify-all:before { - content: "\edf4" -} - -.icofont-justify-center:before { - content: "\edf5" -} - -.icofont-justify-left:before { - content: "\edf6" -} - -.icofont-justify-right:before { - content: "\edf7" -} - -.icofont-link-broken:before { - content: "\edf8" -} - -.icofont-outdent:before { - content: "\edf9" -} - -.icofont-paper-clip:before { - content: "\edfa" -} - -.icofont-paragraph:before { - content: "\edfb" -} - -.icofont-pin:before { - content: "\edfc" -} - -.icofont-printer:before { - content: "\edfd" -} - -.icofont-redo:before { - content: "\edfe" -} - -.icofont-rotation:before { - content: "\edff" -} - -.icofont-save:before { - content: "\ee00" -} - -.icofont-small-cap:before { - content: "\ee01" -} - -.icofont-strike-through:before { - content: "\ee02" -} - -.icofont-sub-listing:before { - content: "\ee03" -} - -.icofont-subscript:before { - content: "\ee04" -} - -.icofont-superscript:before { - content: "\ee05" -} - -.icofont-table:before { - content: "\ee06" -} - -.icofont-text-height:before { - content: "\ee07" -} - -.icofont-text-width:before { - content: "\ee08" -} - -.icofont-trash:before { - content: "\ee09" -} - -.icofont-underline:before { - content: "\ee0a" -} - -.icofont-undo:before { - content: "\ee0b" -} - -.icofont-air-balloon:before { - content: "\ee0c" -} - -.icofont-airplane-alt:before { - content: "\ee0d" -} - -.icofont-airplane:before { - content: "\ee0e" -} - -.icofont-articulated-truck:before { - content: "\ee0f" -} - -.icofont-auto-mobile:before { - content: "\ee10" -} - -.icofont-auto-rickshaw:before { - content: "\ee11" -} - -.icofont-bicycle-alt-1:before { - content: "\ee12" -} - -.icofont-bicycle-alt-2:before { - content: "\ee13" -} - -.icofont-bicycle:before { - content: "\ee14" -} - -.icofont-bus-alt-1:before { - content: "\ee15" -} - -.icofont-bus-alt-2:before { - content: "\ee16" -} - -.icofont-bus-alt-3:before { - content: "\ee17" -} - -.icofont-bus:before { - content: "\ee18" -} - -.icofont-cab:before { - content: "\ee19" -} - -.icofont-cable-car:before { - content: "\ee1a" -} - -.icofont-car-alt-1:before { - content: "\ee1b" -} - -.icofont-car-alt-2:before { - content: "\ee1c" -} - -.icofont-car-alt-3:before { - content: "\ee1d" -} - -.icofont-car-alt-4:before { - content: "\ee1e" -} - -.icofont-car:before { - content: "\ee1f" -} - -.icofont-delivery-time:before { - content: "\ee20" -} - -.icofont-fast-delivery:before { - content: "\ee21" -} - -.icofont-fire-truck-alt:before { - content: "\ee22" -} - -.icofont-fire-truck:before { - content: "\ee23" -} - -.icofont-free-delivery:before { - content: "\ee24" -} - -.icofont-helicopter:before { - content: "\ee25" -} - -.icofont-motor-bike-alt:before { - content: "\ee26" -} - -.icofont-motor-bike:before { - content: "\ee27" -} - -.icofont-motor-biker:before { - content: "\ee28" -} - -.icofont-oil-truck:before { - content: "\ee29" -} - -.icofont-rickshaw:before { - content: "\ee2a" -} - -.icofont-rocket-alt-1:before { - content: "\ee2b" -} - -.icofont-rocket-alt-2:before { - content: "\ee2c" -} - -.icofont-rocket:before { - content: "\ee2d" -} - -.icofont-sail-boat-alt-1:before { - content: "\ee2e" -} - -.icofont-sail-boat-alt-2:before { - content: "\ee2f" -} - -.icofont-sail-boat:before { - content: "\ee30" -} - -.icofont-scooter:before { - content: "\ee31" -} - -.icofont-sea-plane:before { - content: "\ee32" -} - -.icofont-ship-alt:before { - content: "\ee33" -} - -.icofont-ship:before { - content: "\ee34" -} - -.icofont-speed-boat:before { - content: "\ee35" -} - -.icofont-taxi:before { - content: "\ee36" -} - -.icofont-tractor:before { - content: "\ee37" -} - -.icofont-train-line:before { - content: "\ee38" -} - -.icofont-train-steam:before { - content: "\ee39" -} - -.icofont-tram:before { - content: "\ee3a" -} - -.icofont-truck-alt:before { - content: "\ee3b" -} - -.icofont-truck-loaded:before { - content: "\ee3c" -} - -.icofont-truck:before { - content: "\ee3d" -} - -.icofont-van-alt:before { - content: "\ee3e" -} - -.icofont-van:before { - content: "\ee3f" -} - -.icofont-yacht:before { - content: "\ee40" -} - -.icofont-5-star-hotel:before { - content: "\ee41" -} - -.icofont-air-ticket:before { - content: "\ee42" -} - -.icofont-beach-bed:before { - content: "\ee43" -} - -.icofont-beach:before { - content: "\ee44" -} - -.icofont-camping-vest:before { - content: "\ee45" -} - -.icofont-direction-sign:before { - content: "\ee46" -} - -.icofont-hill-side:before { - content: "\ee47" -} - -.icofont-hill:before { - content: "\ee48" -} - -.icofont-hotel:before { - content: "\ee49" -} - -.icofont-island-alt:before { - content: "\ee4a" -} - -.icofont-island:before { - content: "\ee4b" -} - -.icofont-sandals-female:before { - content: "\ee4c" -} - -.icofont-sandals-male:before { - content: "\ee4d" -} - -.icofont-travelling:before { - content: "\ee4e" -} - -.icofont-breakdown:before { - content: "\ee4f" -} - -.icofont-celsius:before { - content: "\ee50" -} - -.icofont-clouds:before { - content: "\ee51" -} - -.icofont-cloudy:before { - content: "\ee52" -} - -.icofont-dust:before { - content: "\ee53" -} - -.icofont-eclipse:before { - content: "\ee54" -} - -.icofont-fahrenheit:before { - content: "\ee55" -} - -.icofont-forest-fire:before { - content: "\ee56" -} - -.icofont-full-night:before { - content: "\ee57" -} - -.icofont-full-sunny:before { - content: "\ee58" -} - -.icofont-hail-night:before { - content: "\ee59" -} - -.icofont-hail-rainy-night:before { - content: "\ee5a" -} - -.icofont-hail-rainy-sunny:before { - content: "\ee5b" -} - -.icofont-hail-rainy:before { - content: "\ee5c" -} - -.icofont-hail-sunny:before { - content: "\ee5d" -} - -.icofont-hail-thunder-night:before { - content: "\ee5e" -} - -.icofont-hail-thunder-sunny:before { - content: "\ee5f" -} - -.icofont-hail-thunder:before { - content: "\ee60" -} - -.icofont-hail:before { - content: "\ee61" -} - -.icofont-hill-night:before { - content: "\ee62" -} - -.icofont-hill-sunny:before { - content: "\ee63" -} - -.icofont-hurricane:before { - content: "\ee64" -} - -.icofont-meteor:before { - content: "\ee65" -} - -.icofont-night:before { - content: "\ee66" -} - -.icofont-rainy-night:before { - content: "\ee67" -} - -.icofont-rainy-sunny:before { - content: "\ee68" -} - -.icofont-rainy-thunder:before { - content: "\ee69" -} - -.icofont-rainy:before { - content: "\ee6a" -} - -.icofont-snow-alt:before { - content: "\ee6b" -} - -.icofont-snow-flake:before { - content: "\ee6c" -} - -.icofont-snow-temp:before { - content: "\ee6d" -} - -.icofont-snow:before { - content: "\ee6e" -} - -.icofont-snowy-hail:before { - content: "\ee6f" -} - -.icofont-snowy-night-hail:before { - content: "\ee70" -} - -.icofont-snowy-night-rainy:before { - content: "\ee71" -} - -.icofont-snowy-night:before { - content: "\ee72" -} - -.icofont-snowy-rainy:before { - content: "\ee73" -} - -.icofont-snowy-sunny-hail:before { - content: "\ee74" -} - -.icofont-snowy-sunny-rainy:before { - content: "\ee75" -} - -.icofont-snowy-sunny:before { - content: "\ee76" -} - -.icofont-snowy-thunder-night:before { - content: "\ee77" -} - -.icofont-snowy-thunder-sunny:before { - content: "\ee78" -} - -.icofont-snowy-thunder:before { - content: "\ee79" -} - -.icofont-snowy-windy-night:before { - content: "\ee7a" -} - -.icofont-snowy-windy-sunny:before { - content: "\ee7b" -} - -.icofont-snowy-windy:before { - content: "\ee7c" -} - -.icofont-snowy:before { - content: "\ee7d" -} - -.icofont-sun-alt:before { - content: "\ee7e" -} - -.icofont-sun-rise:before { - content: "\ee7f" -} - -.icofont-sun-set:before { - content: "\ee80" -} - -.icofont-sun:before { - content: "\ee81" -} - -.icofont-sunny-day-temp:before { - content: "\ee82" -} - -.icofont-sunny:before { - content: "\ee83" -} - -.icofont-thunder-light:before { - content: "\ee84" -} - -.icofont-tornado:before { - content: "\ee85" -} - -.icofont-umbrella-alt:before { - content: "\ee86" -} - -.icofont-umbrella:before { - content: "\ee87" -} - -.icofont-volcano:before { - content: "\ee88" -} - -.icofont-wave:before { - content: "\ee89" -} - -.icofont-wind-scale-0:before { - content: "\ee8a" -} - -.icofont-wind-scale-1:before { - content: "\ee8b" -} - -.icofont-wind-scale-10:before { - content: "\ee8c" -} - -.icofont-wind-scale-11:before { - content: "\ee8d" -} - -.icofont-wind-scale-12:before { - content: "\ee8e" -} - -.icofont-wind-scale-2:before { - content: "\ee8f" -} - -.icofont-wind-scale-3:before { - content: "\ee90" -} - -.icofont-wind-scale-4:before { - content: "\ee91" -} - -.icofont-wind-scale-5:before { - content: "\ee92" -} - -.icofont-wind-scale-6:before { - content: "\ee93" -} - -.icofont-wind-scale-7:before { - content: "\ee94" -} - -.icofont-wind-scale-8:before { - content: "\ee95" -} - -.icofont-wind-scale-9:before { - content: "\ee96" -} - -.icofont-wind-waves:before { - content: "\ee97" -} - -.icofont-wind:before { - content: "\ee98" -} - -.icofont-windy-hail:before { - content: "\ee99" -} - -.icofont-windy-night:before { - content: "\ee9a" -} - -.icofont-windy-raining:before { - content: "\ee9b" -} - -.icofont-windy-sunny:before { - content: "\ee9c" -} - -.icofont-windy-thunder-raining:before { - content: "\ee9d" -} - -.icofont-windy-thunder:before { - content: "\ee9e" -} - -.icofont-windy:before { - content: "\ee9f" -} - -.icofont-addons:before { - content: "\eea0" -} - -.icofont-address-book:before { - content: "\eea1" -} - -.icofont-adjust:before { - content: "\eea2" -} - -.icofont-alarm:before { - content: "\eea3" -} - -.icofont-anchor:before { - content: "\eea4" -} - -.icofont-archive:before { - content: "\eea5" -} - -.icofont-at:before { - content: "\eea6" -} - -.icofont-attachment:before { - content: "\eea7" -} - -.icofont-audio:before { - content: "\eea8" -} - -.icofont-automation:before { - content: "\eea9" -} - -.icofont-badge:before { - content: "\eeaa" -} - -.icofont-bag-alt:before { - content: "\eeab" -} - -.icofont-bag:before { - content: "\eeac" -} - -.icofont-ban:before { - content: "\eead" -} - -.icofont-bar-code:before { - content: "\eeae" -} - -.icofont-bars:before { - content: "\eeaf" -} - -.icofont-basket:before { - content: "\eeb0" -} - -.icofont-battery-empty:before { - content: "\eeb1" -} - -.icofont-battery-full:before { - content: "\eeb2" -} - -.icofont-battery-half:before { - content: "\eeb3" -} - -.icofont-battery-low:before { - content: "\eeb4" -} - -.icofont-beaker:before { - content: "\eeb5" -} - -.icofont-beard:before { - content: "\eeb6" -} - -.icofont-bed:before { - content: "\eeb7" -} - -.icofont-bell:before { - content: "\eeb8" -} - -.icofont-beverage:before { - content: "\eeb9" -} - -.icofont-bill:before { - content: "\eeba" -} - -.icofont-bin:before { - content: "\eebb" -} - -.icofont-binary:before { - content: "\eebc" -} - -.icofont-binoculars:before { - content: "\eebd" -} - -.icofont-bluetooth:before { - content: "\eebe" -} - -.icofont-bomb:before { - content: "\eebf" -} - -.icofont-book-mark:before { - content: "\eec0" -} - -.icofont-box:before { - content: "\eec1" -} - -.icofont-briefcase:before { - content: "\eec2" -} - -.icofont-broken:before { - content: "\eec3" -} - -.icofont-bucket:before { - content: "\eec4" -} - -.icofont-bucket1:before { - content: "\eec5" -} - -.icofont-bucket2:before { - content: "\eec6" -} - -.icofont-bug:before { - content: "\eec7" -} - -.icofont-building:before { - content: "\eec8" -} - -.icofont-bulb-alt:before { - content: "\eec9" -} - -.icofont-bullet:before { - content: "\eeca" -} - -.icofont-bullhorn:before { - content: "\eecb" -} - -.icofont-bullseye:before { - content: "\eecc" -} - -.icofont-calendar:before { - content: "\eecd" -} - -.icofont-camera-alt:before { - content: "\eece" -} - -.icofont-camera:before { - content: "\eecf" -} - -.icofont-card:before { - content: "\eed0" -} - -.icofont-cart-alt:before { - content: "\eed1" -} - -.icofont-cart:before { - content: "\eed2" -} - -.icofont-cc:before { - content: "\eed3" -} - -.icofont-charging:before { - content: "\eed4" -} - -.icofont-chat:before { - content: "\eed5" -} - -.icofont-check-alt:before { - content: "\eed6" -} - -.icofont-check-circled:before { - content: "\eed7" -} - -.icofont-check:before { - content: "\eed8" -} - -.icofont-checked:before { - content: "\eed9" -} - -.icofont-children-care:before { - content: "\eeda" -} - -.icofont-clip:before { - content: "\eedb" -} - -.icofont-clock-time:before { - content: "\eedc" -} - -.icofont-close-circled:before { - content: "\eedd" -} - -.icofont-close-line-circled:before { - content: "\eede" -} - -.icofont-close-line-squared-alt:before { - content: "\eedf" -} - -.icofont-close-line-squared:before { - content: "\eee0" -} - -.icofont-close-line:before { - content: "\eee1" -} - -.icofont-close-squared-alt:before { - content: "\eee2" -} - -.icofont-close-squared:before { - content: "\eee3" -} - -.icofont-close:before { - content: "\eee4" -} - -.icofont-cloud-download:before { - content: "\eee5" -} - -.icofont-cloud-refresh:before { - content: "\eee6" -} - -.icofont-cloud-upload:before { - content: "\eee7" -} - -.icofont-cloud:before { - content: "\eee8" -} - -.icofont-code-not-allowed:before { - content: "\eee9" -} - -.icofont-code:before { - content: "\eeea" -} - -.icofont-comment:before { - content: "\eeeb" -} - -.icofont-compass-alt:before { - content: "\eeec" -} - -.icofont-compass:before { - content: "\eeed" -} - -.icofont-computer:before { - content: "\eeee" -} - -.icofont-connection:before { - content: "\eeef" -} - -.icofont-console:before { - content: "\eef0" -} - -.icofont-contacts:before { - content: "\eef1" -} - -.icofont-contrast:before { - content: "\eef2" -} - -.icofont-copyright:before { - content: "\eef3" -} - -.icofont-credit-card:before { - content: "\eef4" -} - -.icofont-crop:before { - content: "\eef5" -} - -.icofont-crown:before { - content: "\eef6" -} - -.icofont-cube:before { - content: "\eef7" -} - -.icofont-cubes:before { - content: "\eef8" -} - -.icofont-dashboard-web:before { - content: "\eef9" -} - -.icofont-dashboard:before { - content: "\eefa" -} - -.icofont-data:before { - content: "\eefb" -} - -.icofont-database-add:before { - content: "\eefc" -} - -.icofont-database-locked:before { - content: "\eefd" -} - -.icofont-database-remove:before { - content: "\eefe" -} - -.icofont-database:before { - content: "\eeff" -} - -.icofont-delete:before { - content: "\ef00" -} - -.icofont-diamond:before { - content: "\ef01" -} - -.icofont-dice-multiple:before { - content: "\ef02" -} - -.icofont-dice:before { - content: "\ef03" -} - -.icofont-disc:before { - content: "\ef04" -} - -.icofont-diskette:before { - content: "\ef05" -} - -.icofont-document-folder:before { - content: "\ef06" -} - -.icofont-download-alt:before { - content: "\ef07" -} - -.icofont-download:before { - content: "\ef08" -} - -.icofont-downloaded:before { - content: "\ef09" -} - -.icofont-drag:before { - content: "\ef0a" -} - -.icofont-drag1:before { - content: "\ef0b" -} - -.icofont-drag2:before { - content: "\ef0c" -} - -.icofont-drag3:before { - content: "\ef0d" -} - -.icofont-earth:before { - content: "\ef0e" -} - -.icofont-ebook:before { - content: "\ef0f" -} - -.icofont-edit:before { - content: "\ef10" -} - -.icofont-eject:before { - content: "\ef11" -} - -.icofont-email:before { - content: "\ef12" -} - -.icofont-envelope-open:before { - content: "\ef13" -} - -.icofont-envelope:before { - content: "\ef14" -} - -.icofont-eraser:before { - content: "\ef15" -} - -.icofont-error:before { - content: "\ef16" -} - -.icofont-excavator:before { - content: "\ef17" -} - -.icofont-exchange:before { - content: "\ef18" -} - -.icofont-exclamation-circle:before { - content: "\ef19" -} - -.icofont-exclamation-square:before { - content: "\ef1a" -} - -.icofont-exclamation-tringle:before { - content: "\ef1b" -} - -.icofont-exclamation:before { - content: "\ef1c" -} - -.icofont-exit:before { - content: "\ef1d" -} - -.icofont-expand:before { - content: "\ef1e" -} - -.icofont-external-link:before { - content: "\ef1f" -} - -.icofont-external:before { - content: "\ef20" -} - -.icofont-eye-alt:before { - content: "\ef21" -} - -.icofont-eye-blocked:before { - content: "\ef22" -} - -.icofont-eye-dropper:before { - content: "\ef23" -} - -.icofont-eye:before { - content: "\ef24" -} - -.icofont-favourite:before { - content: "\ef25" -} - -.icofont-fax:before { - content: "\ef26" -} - -.icofont-file-fill:before { - content: "\ef27" -} - -.icofont-film:before { - content: "\ef28" -} - -.icofont-filter:before { - content: "\ef29" -} - -.icofont-fire-alt:before { - content: "\ef2a" -} - -.icofont-fire-burn:before { - content: "\ef2b" -} - -.icofont-fire:before { - content: "\ef2c" -} - -.icofont-flag-alt-1:before { - content: "\ef2d" -} - -.icofont-flag-alt-2:before { - content: "\ef2e" -} - -.icofont-flag:before { - content: "\ef2f" -} - -.icofont-flame-torch:before { - content: "\ef30" -} - -.icofont-flash-light:before { - content: "\ef31" -} - -.icofont-flash:before { - content: "\ef32" -} - -.icofont-flask:before { - content: "\ef33" -} - -.icofont-focus:before { - content: "\ef34" -} - -.icofont-folder-open:before { - content: "\ef35" -} - -.icofont-folder:before { - content: "\ef36" -} - -.icofont-foot-print:before { - content: "\ef37" -} - -.icofont-garbage:before { - content: "\ef38" -} - -.icofont-gear-alt:before { - content: "\ef39" -} - -.icofont-gear:before { - content: "\ef3a" -} - -.icofont-gears:before { - content: "\ef3b" -} - -.icofont-gift:before { - content: "\ef3c" -} - -.icofont-glass:before { - content: "\ef3d" -} - -.icofont-globe:before { - content: "\ef3e" -} - -.icofont-graffiti:before { - content: "\ef3f" -} - -.icofont-grocery:before { - content: "\ef40" -} - -.icofont-hand:before { - content: "\ef41" -} - -.icofont-hanger:before { - content: "\ef42" -} - -.icofont-hard-disk:before { - content: "\ef43" -} - -.icofont-heart-alt:before { - content: "\ef44" -} - -.icofont-heart:before { - content: "\ef45" -} - -.icofont-history:before { - content: "\ef46" -} - -.icofont-home:before { - content: "\ef47" -} - -.icofont-horn:before { - content: "\ef48" -} - -.icofont-hour-glass:before { - content: "\ef49" -} - -.icofont-id:before { - content: "\ef4a" -} - -.icofont-image:before { - content: "\ef4b" -} - -.icofont-inbox:before { - content: "\ef4c" -} - -.icofont-infinite:before { - content: "\ef4d" -} - -.icofont-info-circle:before { - content: "\ef4e" -} - -.icofont-info-square:before { - content: "\ef4f" -} - -.icofont-info:before { - content: "\ef50" -} - -.icofont-institution:before { - content: "\ef51" -} - -.icofont-interface:before { - content: "\ef52" -} - -.icofont-invisible:before { - content: "\ef53" -} - -.icofont-jacket:before { - content: "\ef54" -} - -.icofont-jar:before { - content: "\ef55" -} - -.icofont-jewlery:before { - content: "\ef56" -} - -.icofont-karate:before { - content: "\ef57" -} - -.icofont-key-hole:before { - content: "\ef58" -} - -.icofont-key:before { - content: "\ef59" -} - -.icofont-label:before { - content: "\ef5a" -} - -.icofont-lamp:before { - content: "\ef5b" -} - -.icofont-layers:before { - content: "\ef5c" -} - -.icofont-layout:before { - content: "\ef5d" -} - -.icofont-leaf:before { - content: "\ef5e" -} - -.icofont-leaflet:before { - content: "\ef5f" -} - -.icofont-learn:before { - content: "\ef60" -} - -.icofont-lego:before { - content: "\ef61" -} - -.icofont-lens:before { - content: "\ef62" -} - -.icofont-letter:before { - content: "\ef63" -} - -.icofont-letterbox:before { - content: "\ef64" -} - -.icofont-library:before { - content: "\ef65" -} - -.icofont-license:before { - content: "\ef66" -} - -.icofont-life-bouy:before { - content: "\ef67" -} - -.icofont-life-buoy:before { - content: "\ef68" -} - -.icofont-life-jacket:before { - content: "\ef69" -} - -.icofont-life-ring:before { - content: "\ef6a" -} - -.icofont-light-bulb:before { - content: "\ef6b" -} - -.icofont-lighter:before { - content: "\ef6c" -} - -.icofont-lightning-ray:before { - content: "\ef6d" -} - -.icofont-like:before { - content: "\ef6e" -} - -.icofont-line-height:before { - content: "\ef6f" -} - -.icofont-link-alt:before { - content: "\ef70" -} - -.icofont-link:before { - content: "\ef71" -} - -.icofont-list:before { - content: "\ef72" -} - -.icofont-listening:before { - content: "\ef73" -} - -.icofont-listine-dots:before { - content: "\ef74" -} - -.icofont-listing-box:before { - content: "\ef75" -} - -.icofont-listing-number:before { - content: "\ef76" -} - -.icofont-live-support:before { - content: "\ef77" -} - -.icofont-location-arrow:before { - content: "\ef78" -} - -.icofont-location-pin:before { - content: "\ef79" -} - -.icofont-lock:before { - content: "\ef7a" -} - -.icofont-login:before { - content: "\ef7b" -} - -.icofont-logout:before { - content: "\ef7c" -} - -.icofont-lollipop:before { - content: "\ef7d" -} - -.icofont-long-drive:before { - content: "\ef7e" -} - -.icofont-look:before { - content: "\ef7f" -} - -.icofont-loop:before { - content: "\ef80" -} - -.icofont-luggage:before { - content: "\ef81" -} - -.icofont-lunch:before { - content: "\ef82" -} - -.icofont-lungs:before { - content: "\ef83" -} - -.icofont-magic-alt:before { - content: "\ef84" -} - -.icofont-magic:before { - content: "\ef85" -} - -.icofont-magnet:before { - content: "\ef86" -} - -.icofont-mail-box:before { - content: "\ef87" -} - -.icofont-mail:before { - content: "\ef88" -} - -.icofont-male:before { - content: "\ef89" -} - -.icofont-map-pins:before { - content: "\ef8a" -} - -.icofont-map:before { - content: "\ef8b" -} - -.icofont-maximize:before { - content: "\ef8c" -} - -.icofont-measure:before { - content: "\ef8d" -} - -.icofont-medicine:before { - content: "\ef8e" -} - -.icofont-mega-phone:before { - content: "\ef8f" -} - -.icofont-megaphone-alt:before { - content: "\ef90" -} - -.icofont-megaphone:before { - content: "\ef91" -} - -.icofont-memorial:before { - content: "\ef92" -} - -.icofont-memory-card:before { - content: "\ef93" -} - -.icofont-mic-mute:before { - content: "\ef94" -} - -.icofont-mic:before { - content: "\ef95" -} - -.icofont-military:before { - content: "\ef96" -} - -.icofont-mill:before { - content: "\ef97" -} - -.icofont-minus-circle:before { - content: "\ef98" -} - -.icofont-minus-square:before { - content: "\ef99" -} - -.icofont-minus:before { - content: "\ef9a" -} - -.icofont-mobile-phone:before { - content: "\ef9b" -} - -.icofont-molecule:before { - content: "\ef9c" -} - -.icofont-money:before { - content: "\ef9d" -} - -.icofont-moon:before { - content: "\ef9e" -} - -.icofont-mop:before { - content: "\ef9f" -} - -.icofont-muffin:before { - content: "\efa0" -} - -.icofont-mustache:before { - content: "\efa1" -} - -.icofont-navigation-menu:before { - content: "\efa2" -} - -.icofont-navigation:before { - content: "\efa3" -} - -.icofont-network-tower:before { - content: "\efa4" -} - -.icofont-network:before { - content: "\efa5" -} - -.icofont-news:before { - content: "\efa6" -} - -.icofont-newspaper:before { - content: "\efa7" -} - -.icofont-no-smoking:before { - content: "\efa8" -} - -.icofont-not-allowed:before { - content: "\efa9" -} - -.icofont-notebook:before { - content: "\efaa" -} - -.icofont-notepad:before { - content: "\efab" -} - -.icofont-notification:before { - content: "\efac" -} - -.icofont-numbered:before { - content: "\efad" -} - -.icofont-opposite:before { - content: "\efae" -} - -.icofont-optic:before { - content: "\efaf" -} - -.icofont-options:before { - content: "\efb0" -} - -.icofont-package:before { - content: "\efb1" -} - -.icofont-page:before { - content: "\efb2" -} - -.icofont-paint:before { - content: "\efb3" -} - -.icofont-paper-plane:before { - content: "\efb4" -} - -.icofont-paperclip:before { - content: "\efb5" -} - -.icofont-papers:before { - content: "\efb6" -} - -.icofont-pay:before { - content: "\efb7" -} - -.icofont-penguin-linux:before { - content: "\efb8" -} - -.icofont-pestle:before { - content: "\efb9" -} - -.icofont-phone-circle:before { - content: "\efba" -} - -.icofont-phone:before { - content: "\efbb" -} - -.icofont-picture:before { - content: "\efbc" -} - -.icofont-pine:before { - content: "\efbd" -} - -.icofont-pixels:before { - content: "\efbe" -} - -.icofont-plugin:before { - content: "\efbf" -} - -.icofont-plus-circle:before { - content: "\efc0" -} - -.icofont-plus-square:before { - content: "\efc1" -} - -.icofont-plus:before { - content: "\efc2" -} - -.icofont-polygonal:before { - content: "\efc3" -} - -.icofont-power:before { - content: "\efc4" -} - -.icofont-price:before { - content: "\efc5" -} - -.icofont-print:before { - content: "\efc6" -} - -.icofont-puzzle:before { - content: "\efc7" -} - -.icofont-qr-code:before { - content: "\efc8" -} - -.icofont-queen:before { - content: "\efc9" -} - -.icofont-question-circle:before { - content: "\efca" -} - -.icofont-question-square:before { - content: "\efcb" -} - -.icofont-question:before { - content: "\efcc" -} - -.icofont-quote-left:before { - content: "\efcd" -} - -.icofont-quote-right:before { - content: "\efce" -} - -.icofont-random:before { - content: "\efcf" -} - -.icofont-recycle:before { - content: "\efd0" -} - -.icofont-refresh:before { - content: "\efd1" -} - -.icofont-repair:before { - content: "\efd2" -} - -.icofont-reply-all:before { - content: "\efd3" -} - -.icofont-reply:before { - content: "\efd4" -} - -.icofont-resize:before { - content: "\efd5" -} - -.icofont-responsive:before { - content: "\efd6" -} - -.icofont-retweet:before { - content: "\efd7" -} - -.icofont-road:before { - content: "\efd8" -} - -.icofont-robot:before { - content: "\efd9" -} - -.icofont-royal:before { - content: "\efda" -} - -.icofont-rss-feed:before { - content: "\efdb" -} - -.icofont-safety:before { - content: "\efdc" -} - -.icofont-sale-discount:before { - content: "\efdd" -} - -.icofont-satellite:before { - content: "\efde" -} - -.icofont-send-mail:before { - content: "\efdf" -} - -.icofont-server:before { - content: "\efe0" -} - -.icofont-settings-alt:before { - content: "\efe1" -} - -.icofont-settings:before { - content: "\efe2" -} - -.icofont-share-alt:before { - content: "\efe3" -} - -.icofont-share-boxed:before { - content: "\efe4" -} - -.icofont-share:before { - content: "\efe5" -} - -.icofont-shield:before { - content: "\efe6" -} - -.icofont-shopping-cart:before { - content: "\efe7" -} - -.icofont-sign-in:before { - content: "\efe8" -} - -.icofont-sign-out:before { - content: "\efe9" -} - -.icofont-signal:before { - content: "\efea" -} - -.icofont-site-map:before { - content: "\efeb" -} - -.icofont-smart-phone:before { - content: "\efec" -} - -.icofont-soccer:before { - content: "\efed" -} - -.icofont-sort-alt:before { - content: "\efee" -} - -.icofont-sort:before { - content: "\efef" -} - -.icofont-space:before { - content: "\eff0" -} - -.icofont-spanner:before { - content: "\eff1" -} - -.icofont-speech-comments:before { - content: "\eff2" -} - -.icofont-speed-meter:before { - content: "\eff3" -} - -.icofont-spinner-alt-1:before { - content: "\eff4" -} - -.icofont-spinner-alt-2:before { - content: "\eff5" -} - -.icofont-spinner-alt-3:before { - content: "\eff6" -} - -.icofont-spinner-alt-4:before { - content: "\eff7" -} - -.icofont-spinner-alt-5:before { - content: "\eff8" -} - -.icofont-spinner-alt-6:before { - content: "\eff9" -} - -.icofont-spinner:before { - content: "\effa" -} - -.icofont-spreadsheet:before { - content: "\effb" -} - -.icofont-square:before { - content: "\effc" -} - -.icofont-ssl-security:before { - content: "\effd" -} - -.icofont-star-alt-1:before { - content: "\effe" -} - -.icofont-star-alt-2:before { - content: "\efff" -} - -.icofont-star:before { - content: "\f000" -} - -.icofont-street-view:before { - content: "\f001" -} - -.icofont-support-faq:before { - content: "\f002" -} - -.icofont-tack-pin:before { - content: "\f003" -} - -.icofont-tag:before { - content: "\f004" -} - -.icofont-tags:before { - content: "\f005" -} - -.icofont-tasks-alt:before { - content: "\f006" -} - -.icofont-tasks:before { - content: "\f007" -} - -.icofont-telephone:before { - content: "\f008" -} - -.icofont-telescope:before { - content: "\f009" -} - -.icofont-terminal:before { - content: "\f00a" -} - -.icofont-thumbs-down:before { - content: "\f00b" -} - -.icofont-thumbs-up:before { - content: "\f00c" -} - -.icofont-tick-boxed:before { - content: "\f00d" -} - -.icofont-tick-mark:before { - content: "\f00e" -} - -.icofont-ticket:before { - content: "\f00f" -} - -.icofont-tie:before { - content: "\f010" -} - -.icofont-toggle-off:before { - content: "\f011" -} - -.icofont-toggle-on:before { - content: "\f012" -} - -.icofont-tools-alt-2:before { - content: "\f013" -} - -.icofont-tools:before { - content: "\f014" -} - -.icofont-touch:before { - content: "\f015" -} - -.icofont-traffic-light:before { - content: "\f016" -} - -.icofont-transparent:before { - content: "\f017" -} - -.icofont-tree:before { - content: "\f018" -} - -.icofont-unique-idea:before { - content: "\f019" -} - -.icofont-unlock:before { - content: "\f01a" -} - -.icofont-unlocked:before { - content: "\f01b" -} - -.icofont-upload-alt:before { - content: "\f01c" -} - -.icofont-upload:before { - content: "\f01d" -} - -.icofont-usb-drive:before { - content: "\f01e" -} - -.icofont-usb:before { - content: "\f01f" -} - -.icofont-vector-path:before { - content: "\f020" -} - -.icofont-verification-check:before { - content: "\f021" -} - -.icofont-wall-clock:before { - content: "\f022" -} - -.icofont-wall:before { - content: "\f023" -} - -.icofont-wallet:before { - content: "\f024" -} - -.icofont-warning-alt:before { - content: "\f025" -} - -.icofont-warning:before { - content: "\f026" -} - -.icofont-water-drop:before { - content: "\f027" -} - -.icofont-web:before { - content: "\f028" -} - -.icofont-wheelchair:before { - content: "\f029" -} - -.icofont-wifi-alt:before { - content: "\f02a" -} - -.icofont-wifi:before { - content: "\f02b" -} - -.icofont-world:before { - content: "\f02c" -} - -.icofont-zigzag:before { - content: "\f02d" -} - -.icofont-zipped:before { - content: "\f02e" -} - -.icofont-xs { - font-size: .5em -} - -.icofont-sm { - font-size: .75em -} - -.icofont-md { - font-size: 1.25em -} - -.icofont-lg { - font-size: 1.5em -} - -.icofont-1x { - font-size: 1em -} - -.icofont-2x { - font-size: 2em -} - -.icofont-3x { - font-size: 3em -} - -.icofont-4x { - font-size: 4em -} - -.icofont-5x { - font-size: 5em -} - -.icofont-6x { - font-size: 6em -} - -.icofont-7x { - font-size: 7em -} - -.icofont-8x { - font-size: 8em -} - -.icofont-9x { - font-size: 9em -} - -.icofont-10x { - font-size: 10em -} - -.icofont-fw { - text-align: center; - width: 1.25em -} - -.icofont-ul { - list-style-type: none; - padding-left: 0; - margin-left: 0 -} - -.icofont-ul>li { - position: relative; - line-height: 2em -} - -.icofont-ul>li .icofont { - display: inline-block; - vertical-align: middle -} - -.icofont-border { - border: solid .08em #f1f1f1; - border-radius: .1em; - padding: .2em .25em .15em -} - -.icofont-pull-left { - float: left -} - -.icofont-pull-right { - float: right -} - -.icofont.icofont-pull-left { - margin-right: .3em -} - -.icofont.icofont-pull-right { - margin-left: .3em -} - -.icofont-spin { - -webkit-animation: icofont-spin 2s infinite linear; - animation: icofont-spin 2s infinite linear; - display: inline-block -} - -.icofont-pulse { - -webkit-animation: icofont-spin 1s infinite steps(8); - animation: icofont-spin 1s infinite steps(8); - display: inline-block -} - -@-webkit-keyframes icofont-spin { - 0% { - -webkit-transform: rotate(0); - transform: rotate(0) - } - - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -@keyframes icofont-spin { - 0% { - -webkit-transform: rotate(0); - transform: rotate(0) - } - - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -.icofont-rotate-90 { - -webkit-transform: rotate(90deg); - transform: rotate(90deg) -} - -.icofont-rotate-180 { - -webkit-transform: rotate(180deg); - transform: rotate(180deg) -} - -.icofont-rotate-270 { - -webkit-transform: rotate(270deg); - transform: rotate(270deg) -} - -.icofont-flip-horizontal { - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1) -} - -.icofont-flip-vertical { - -webkit-transform: scale(1, -1); - transform: scale(1, -1) -} - -.icofont-flip-horizontal.icofont-flip-vertical { - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1) -} - -:root .icofont-flip-horizontal, -:root .icofont-flip-vertical, -:root .icofont-rotate-180, -:root .icofont-rotate-270, -:root .icofont-rotate-90 { - -webkit-filter: none; - filter: none; - display: inline-block -} - -.icofont-inverse { - color: #fff -} - -.sr-only { - border: 0; - clip: rect(0, 0, 0, 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px -} - -.sr-only-focusable:active, -.sr-only-focusable:focus { - clip: auto; - height: auto; - margin: 0; - overflow: visible; - position: static; - width: auto -} \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/css/magnific-popup.min.css b/desarrollo/diseno/registro-comercio/css/magnific-popup.min.css deleted file mode 100644 index c00c6ff9..00000000 --- a/desarrollo/diseno/registro-comercio/css/magnific-popup.min.css +++ /dev/null @@ -1 +0,0 @@ -.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/css/owl.carousel.min.css b/desarrollo/diseno/registro-comercio/css/owl.carousel.min.css deleted file mode 100644 index a71df11c..00000000 --- a/desarrollo/diseno/registro-comercio/css/owl.carousel.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/** - * 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 .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .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%;top: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 .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 .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/css/responsive.css b/desarrollo/diseno/registro-comercio/css/responsive.css deleted file mode 100644 index 9c4bb11b..00000000 --- a/desarrollo/diseno/registro-comercio/css/responsive.css +++ /dev/null @@ -1,335 +0,0 @@ -:root { - --light-purple: #F6F4FE; - --purple: #6A49F2; - --bg-purple: #6A49F2; - --dark-purple: #32236F; - --body-text-purple: #3E3F66; - --text-white: #ffffff; - --bg-white: #ffffff; - --slider-dots-color: #D4D2DD; - --light-bg: #DFDAF3; -} - -/* ------Media-Query-Start--------- */ -@media screen and (max-width:1300px) { - - /* hero banner bg animation */ - .banner_section .hero_bg { position: absolute; top: -200px; right: -300px;} - - /* features section */ - .features_section .feature_detail .feature_box {width: 350px;} - .features_section .feature_detail .left_data {padding-left: 75px;} - .features_section .feature_detail .right_data {padding-right: 75px;} - - /* modern ui section bg animation */ - .modernui_section_bg { position: absolute; right: -500px;} - - /* how it work section bg animation */ - .how_section_bg { position: absolute; left: -600px; z-index: -1;} - - /* feature section bg animation */ - .faq_section .faq_bg { position: absolute; right: -600px; } - - /* footer section bg animation */ - footer .footer_bg { position: absolute; left: -600px;} - - -} - - -@media screen and (max-width:1200px) { - - .row_am {padding: 50px 0;} - - /* navigation bar section */ - .navbar-expand-lg .navbar-nav .nav-link {padding: 5px 10px;} - .navbar-expand-lg .navbar-nav .nav-link.dark_btn {padding: 9px 30px;} - .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {right: 5px;} - .banner_section .banner_slider .right_icon {right: -30px;} - - /* banner section */ - .banner_section .banner_images img {max-width: 100%;} - .trial_box form .form-group .form-control {width: 250px;} - - /* features section */ - .features_section .features_inner {padding: 150px 0 50px 0;} - .features_section .container {padding-top: 150px;} - .features_section .feature_detail .feature_box {width: 300px;} - .features_section .feature_detail .left_data {padding-left: 15px;} - .features_section .feature_detail .right_data {padding-right: 15px;} - - /* about app section */ - .about_app_section .about_text .app_statstic li {width: 210px; padding-left: 20px;} - .about_app_section .about_text .app_statstic li p:first-child {font-size: 30px;} - - /* modern ui section */ - .modern_ui_section .ui_images::before {width: 475px; height: 475px;} - .modern_ui_section .ui_images .right_img img:nth-child(1) {margin-left: -60px;} - .modern_ui_section .ui_images .right_img img:nth-child(2) {margin-left: -140px;} - - /* download app section */ - .free_app_section .container .free_app_inner .free_img img {transform: scale(.8);} - .free_app_section .container .free_app_inner .free_img img:last-child {margin-left: -120px;} - .free_app_section .container .free_app_inner .free_img {margin-top: -180px;} - - /* newsletter section */ - .newsletter_box .section_title {width: 60%;} - .newsletter_box .section_title h2 {font-size: 24px; letter-spacing: 1px;} - .newsletter_box form .form-group .form-control {width: 250px;} - - -} - -@media screen and (max-width:992px) { - - /* navigation section */ - .navbar-toggler-icon {display: flex; align-items: center; color: var(--body-text-purple); justify-content: flex-end;} - .free_app_section .container .free_app_inner .free_text .section_title h2 , .section_title h2 {font-size: 30px;} - header.fix_style {padding: 5px 0;} - - - /* navigation section */ - .navbar-expand-lg .navbar-nav {align-items: flex-start;} - .navbar-toggler {padding-right: 0; line-height: 1.7;} - .navbar-expand-lg .navbar-nav {padding: 20px 15px; background-color: var(--bg-white); border-radius: 15px; box-shadow: 0 4px 10px #EDE9FE; border: 1px solid var(--light-purple) ;} - .navbar-expand-lg .navbar-nav .nav-link.dark_btn {margin-left: 0; margin-top: 15px;} - .navbar-expand-lg .navbar-nav .has_dropdown {flex-direction: column; align-items: flex-start; width: 100%; box-shadow: none;} - .navbar-expand-lg .navbar-nav .has_dropdown:hover {box-shadow: none;} - .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {position: absolute; right: 0; padding: 0 10px;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {position: relative; opacity: 1; pointer-events: all; top: auto; background-color: transparent; width: 100%; border-bottom: 1px solid #6b49f268; border-radius: 0; width: 100%; min-width: 100%; max-width: 100%; margin-left: 10px; display: none; box-shadow: none; margin-top: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {padding: 0; margin-top: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {padding: 5px 10px; display: block; padding-left: 0;} - .navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {margin-top: 0;} - - /* banner section */ - .banner_section .banner_text h1 {font-size: 40px;} - .banner_section .banner_slider {margin-top: 50px;} - .banner_section .banner_slider .left_icon {left: 0;} - .banner_section .banner_slider .right_icon {right: 0;} - .banner_section {text-align: center;} - .banner_section .app_btn , .banner_section .used_app {justify-content: center;} - .trial_box {justify-content: center;} - .trial_box form {width: 80%;} - .trial_box form .form-group .form-control {width: 370px;} - .trial_box_list ul {justify-content: center;} - .banner_section .banner_images {margin-top: 100px;} - - /* hero banner bg animation */ - .banner_section .hero_bg { position: absolute; top: 100px; right: -300px;} - - - /* features section */ - .features_section .container {padding-top: 100px;} - .features_section .features_inner .feature_img {top: -50px;} - .features_section .features_inner {padding-top: 120px;} - .features_section .feature_detail .feature_img {width: 275px;} - .features_section .feature_detail .feature_box .data_block {margin-bottom: 30px;} - .features_section .feature_detail .feature_box {width: 200px;} - - /* about app section */ - .about_app_section .row {flex-direction: column-reverse;} - .about_app_section .about_img {justify-content: flex-start; margin-top: 75px; margin-left: 0;} - .about_app_section .about_img::before {left: 50%;} - .about_app_section .about_img .screen_img {margin-left: -170px;} - .about_app_section .about_text .app_statstic {justify-content: flex-start;} - .about_app_section .about_text .app_statstic li {width: 35%; margin-right: 30px;} - .about_app_section .about_img::before {left: 35%;} - - /* modern ui section */ - .modernui_section_bg {right: -700px;} - .modern_ui_section .ui_images {margin-top: 30px;} - .modern_ui_section .ui_text {padding-right: 0;} - .modern_ui_section .ui_images .right_img {display: flex; flex-direction: column; align-items: center;} - - /* how it work section */ - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 280px;} - .how_it_works .yt_video .thumbnil a {top: 57%;} - .how_it_works .yt_video .thumbnil a span {font-size: 20px;} - - /* testimonial section */ - #testimonial_slider {max-width: 500px;} - - /* pricing section */ - .pricing_section .pricing_pannel .pricing_block {padding-left: 15px; padding-right: 15px; min-height: 600px; padding-top: 30px;} - .pricing_section .pricing_pannel .pricing_block .price {font-size: 36px;} - .pricing_section .pricing_pannel .pricing_block .benifits li p {font-size: 14px;} - - /* interface section */ - .interface_section .screen_slider {min-height: 550px;} - - /* download app section */ - .free_app_section .container .free_app_inner {padding: 20px 15px;} - .free_app_section .container .free_app_inner .free_img img {transform: scale(.7);} - .free_app_section .container .free_app_inner .free_img img:last-child {margin-left: -180px;} - .free_app_section .container .free_app_inner .free_text .app_btn li a {padding: 10px 20px;} - - /* latest story section */ - .latest_story .story_box .story_text {padding: 15px;} - - /* newsletter section */ - .newsletter_box {flex-direction: column; padding: 30px 20px;} - .newsletter_box .section_title , .newsletter_box form {width: 100%; margin: 10px 0; justify-content: center;} - .newsletter_box form .form-group .form-control {width: 350px;} - .newsletter_box .section_title h2, .newsletter_box .section_title p {text-align: center;} - - /* footer section */ - footer .top_footer .logo , footer h3 {margin-bottom: 20px;} - footer .abt_side {margin-bottom: 50px;} - footer .top_footer .try_out {margin-left: 0;} - footer .top_footer .col-md-6 {margin-bottom: 15px;} - - - -} - -@media screen and (max-width:767px) { - - body {font-size: 14px; text-align: center;} - .row_am {padding: 30px 0;} - .section_title p br {display: none;} - .free_app_section .container .free_app_inner .free_text .section_title h2, .section_title h2 {font-size: 24px;} - - /* navbar section */ - .navbar {padding-top: 15px;} - .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {text-align: left; line-height: 1.5; font-size: 14px;} - - /* banner section */ - .banner_section {margin-top: 100px;} - .banner_section .banner_text h1 {font-size: 30px;} - .banner_section .app_btn , .banner_section .used_app {justify-content: center;} - .banner_section .app_btn li:last-child {margin-left: 0;} - .banner_section .app_btn li {margin: 0 15px;} - .banner_section .app_btn li a {padding: 10px 20px;} - .banner_section .app_btn li a img {height: 25px;} - .banner_section .banner_slider .left_icon {left: -40px;} - .banner_section .banner_slider .right_icon {right: -40px; z-index: 1000;} - .banner_section .banner_slider::before {width: 350px; height: 350px;} - .trial_box form {flex-direction: column;} - .trial_box form .form-group .form-control {width: 100%; margin-bottom: 10px;} - .banner_section .banner_images {text-align: center;} - .banner_section .banner_images.image_box2 {text-align: center; margin-top: 10px;} - .features_section .container {padding-top: 60px;} - .features_section .features_inner {padding-top: 70px;} - - /* trusted logo section */ - .trusted_section .company_logos {padding-top: 0;} - .trusted_section .company_logos img {max-width: 70%;} - - /* features section */ - .features_section .features_inner .feature_box {text-align: center;} - .features_section .features_inner .feature_img {top: -20px;} - .features_section .feature_detail {flex-direction: column-reverse; padding-top: 30px; margin-top: 0;} - .features_section .feature_detail .feature_img {position: relative; top: auto; left: auto; transform: none; width: 75%; margin: 0 auto;} - .features_section .feature_detail .feature_box {width: 100%; padding: 0 15px; text-align: center;} - .features_section .feature_detail .left_data .data_block .icon {margin-right: 0;} - .features_section .feature_detail .right_data .data_block .icon {margin-left: 0;} - .features_section .feature_detail .feature_box .data_block {margin-bottom: 0; margin-top: 30px;} - - /* about app section */ - .about_app_section .about_text , .about_app_section .about_text .section_title {text-align: center;} - .about_app_section .about_text .app_statstic {margin-top: 0; justify-content: space-between;} - .about_app_section .about_text .app_statstic li {width: 48%; margin-right: 0;} - .about_app_section .about_text .app_statstic li p:first-child {font-size: 18px;} - .about_app_section .about_img {margin: 0; margin-top: 50px; justify-content: center;} - .about_app_section .about_img::before {width: 350px; height: 350px;} - - /* modern ui section */ - .modern_ui_section .ui_images {margin-top: 10px;} - .modern_ui_section .section_title {text-align: center;} - .modern_ui_section .design_block li {padding-left: 0; margin-bottom: 30px;} - .modern_ui_section .design_block li::before {position: relative; left: auto; top: auto; display: inline-block;} - - .modern_ui_section .ui_images img {max-width: 100%;} - .modern_ui_section .ui_images::before {width: 350px; height: 350px;} - .modern_ui_section .ui_images .left_img {width: 70%;} - .modern_ui_section .ui_images .right_img {justify-content: center;} - .modern_ui_section .ui_images .right_img img:nth-child(1) {top: 0; width: 100px;} - .modern_ui_section .ui_images .right_img img:nth-child(3) {margin-top: 0;} - - /* how it work section */ - .how_it_works .how_it_inner {padding: 50px 15px;} - .how_it_works .step_block ul {padding-top: 30px;} - .how_it_works .step_block ul li , .how_it_works .step_block ul li:nth-child(2) {flex-direction: column; padding-left: 30px;} - .how_it_works .step_block ul li .step_text h4 {font-size: 18px;} - .how_it_works .step_block ul li::before {left: 0; transform: none; height: calc(100% + 10px); top: 40px;} - .how_it_works .step_block ul li:first-child::before {height: calc(100% + 50px);} - .how_it_works .step_block ul li:first-child::after {left: -5px; transform: none; display: none;} - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img , - .how_it_works .step_block ul li:nth-child(2) .step_text, .how_it_works .step_block ul li:nth-child(2) .step_img {text-align: center;} - .how_it_works .step_block ul li .step_text, .how_it_works .step_block ul li .step_img {width: 100%;} - .how_it_works .step_block ul li .step_number {position: absolute; top: -5px; left: -23px; width: 50px; height: 50px;} - .how_it_works .step_block ul li:last-child::before {opacity: 0;} - .how_it_works .step_block ul li .step_number h3 {font-size: 15px; margin-bottom: 0; margin-top: -2px;} - .how_it_works .yt_video {margin-top: -50px;} - .how_it_works .yt_video .thumbnil {height: 300px; border-radius: 15px;} - .how_it_works .yt_video .thumbnil img {height: 100%; object-fit: cover; object-position: center; border-radius: 15px;} - .how_it_works .yt_video .thumbnil a {width: 100%;} - .how_it_works .yt_video .thumbnil a .play_btn::after {width: 140px; height: 140px;} - .how_it_works .yt_video .thumbnil a .play_btn::before {width: 120px; height: 120px;} - .how_it_works .yt_video .thumbnil a .play_btn img {height: auto;} - - /* testimonial section */ - .testimonial_section .testimonial_block {margin: 0;} - .testimonial_section .testimonial_block .avtar_faces {display: none;} - .testimonial_section .testimonial_block .testimonial_slide_box {width: 100%;} - - /* pricing section */ - .pricing_section .pricing_pannel .pricing_block {min-height: auto; padding: 30px 15px;} - .pricing_section .pricing_pannel .pricing_block .icon {margin-bottom: 15px;} - .pricing_section .contact_text {margin-top: -20px;} - - /* faq section */ - .faq_section .faq_panel .card-header h2 {text-align: left;} - .faq_section .faq_panel .card-header .btn {font-size: 16px; padding-right: 30px;} - .faq_section .faq_panel .card-body p {text-align: left;} - - /* interface section */ - .interface_section .screen_slider {/*min-height: 720px;*/} - .interface_section .owl-item .screen_frame_img img {transform: scale(1);} - - /* download section */ - .free_app_section .container .free_app_inner {padding: 50px 15px; padding-bottom: 0; z-index: 99;} - .free_app_section .container .free_app_inner .free_img {margin-top: 0; justify-content: center;} - .free_app_section .container .free_app_inner .free_img img {max-width: 100%;} - .free_app_section .container .free_app_inner .free_text .section_title {text-align: center;} - .free_app_section .container .free_app_inner .free_text .app_btn {flex-direction: column;} - .free_app_section .container .free_app_inner .free_text .app_btn li a {width: 200px; text-align: center;} - .free_app_section .container .free_app_inner .free_text .app_btn li:last-child {margin-left: 0; margin-top: 15px;} - - /* latest story section */ - .latest_story .story_box {margin-bottom: 30px;} - - /* newsletter section */ - .newsletter_box form {flex-direction: column; align-items: center;} - .newsletter_box form .form-group {width: 100%;} - .newsletter_box form .form-group .form-control {width: 100%; margin-bottom: 15px;} - .newsletter_box .section_title p {font-size: 13px;} - - /* footer section */ - footer .links , footer .abt_side {margin-bottom: 30px;} - footer .top_footer .social_media {justify-content: center;} - footer .top_footer .social_media li a {margin: 0 5px;} - footer .top_footer .try_out {margin-left: 0;} - footer .app_btn li a {margin: 0 auto;} - footer .bottom_footer .developer_text {text-align: center; margin-top: 10px;} - footer .go_top {right: 10px;} - footer .top_footer .col-md-6 {margin-bottom: 0px;} - - /* animation line section */ - .anim_line , .anim_line.dark_bg {width: 140%;} - - /* latest story section */ - .latest_story .story_box .story_img img {width: 100%;} - - /* go top button section */ - .go_top {bottom: 30px; z-index: 999;} - - .purple_backdrop {display: none;} - -} - -@media screen and (max-width:479px) { - - /* about app section */ - .about_app_section .about_img::before {left: 49%;} -} \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/css/style.css b/desarrollo/diseno/registro-comercio/css/style.css deleted file mode 100644 index 897dcee7..00000000 --- a/desarrollo/diseno/registro-comercio/css/style.css +++ /dev/null @@ -1,2550 +0,0 @@ -/*----------------------------------------------------------------------------------- - -[Table of contents] - -1. Font -2. Css Variable for colors -3. Common CSS -4. Preloader CSS -5. Header - Main Navigation ( section ) -6. Hero Slider ( section ) -7. Trusted Logo Slider ( section ) -8. Features ( section ) -9. About us ( section ) -10. Modern UI ( section ) -11. How it works ( section ) -12. Testimonials ( section ) -13. Pricing ( section ) -14. Faq ( section ) -15. Interface ( section ) -16. Download app ( section ) -17. Latest story ( section ) -18. Newsletter ( section ) -19. Footer ( section ) -20. Animation CSS ( section ) - - ------------------------------------------------------------------------------------*/ - -/* --------Font--------------- */ -/* poppins-300 - latin */ -@font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 300; - src: url('../fonts/poppins-v20-latin-300.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-300.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-300.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-regular - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 400; - src: url('../fonts/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-italic - latin */ - @font-face { - font-family: 'Poppins'; - font-style: italic; - font-weight: 400; - src: url('../fonts/poppins-v20-latin-italic.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-italic.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-500 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 500; - src: url('../fonts/poppins-v20-latin-500.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-500.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-500italic - latin */ - @font-face { - font-family: 'Poppins'; - font-style: italic; - font-weight: 500; - src: url('../fonts/poppins-v20-latin-500italic.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-500italic.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-500italic.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-500italic.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-500italic.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-600 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 600; - src: url('../fonts/poppins-v20-latin-600.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-600.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-600.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-700 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 700; - src: url('../fonts/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-700.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */ - } - /* poppins-800 - latin */ - @font-face { - font-family: 'Poppins'; - font-style: normal; - font-weight: 800; - src: url('../fonts/poppins-v20-latin-800.eot'); /* IE9 Compat Modes */ - src: local(''), - url('../fonts/poppins-v20-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../fonts/poppins-v20-latin-800.woff2') format('woff2'), /* Super Modern Browsers */ - url('../fonts/poppins-v20-latin-800.woff') format('woff'), /* Modern Browsers */ - url('../fonts/poppins-v20-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../fonts/poppins-v20-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */ - } - -/* -----------Css-variable------ */ - -:root { - --light-purple: #F6F4FE; - --purple: #E63108; - --bg-purple: #E63108; - --dark-purple: #E63108; - --dark-bg-text: #9995b1; - --body-text-purple: #171718; - --text-white: #ffffff; - --bg-white: #ffffff; - --slider-dots-color: #D4D2DD; - --light-bg: #DFDAF3; - --black: #000; - --lapieza: #003b73; -} - - - -/* ------Common-Css------------- */ - -html{scroll-behavior:smooth} - -body { - margin: 0; - padding: 0; - box-sizing: border-box; - font-size: 16px; - line-height: 1.7; - font-family: 'Poppins', sans-serif; - color: var(--body-text-purple); - /*background-color: var(--light-purple);*/ -} - -.page_wrapper { - width: 100%; - overflow-x: hidden; -} - -a { - text-decoration: none; - color: var(--body-text-purple); -} - -a:hover { - text-decoration: none; - color: var(--body-text-purple); -} - -ul, -li { - padding: 0; - list-style-type: none; - margin: 0; -} - -button:focus, -.btn.focus, -.btn:focus { - outline: none; - box-shadow: none; -} - -@media screen and (min-width:1200px) { - .container { - max-width: 1170px; - } -} - -.section_title { - text-align: center; -} - -/* section heading h2 */ -.section_title h2 { - font-size: 40px; - font-weight: 700; - color: var(--dark-purple); -} - -.section_title h2 span { - color: var(--purple); -} - -.row_am { - padding: 50px 0; -} - -/* purple button */ -.puprple_btn { - background-color: var(--purple); - color: var(--text-white); - border-radius: 50px; - padding: 10px 40px; - position: relative; - overflow: hidden; - z-index: 1; - font-weight: 500; -} - -.puprple_btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-white); - border-radius: 50px; - transition: .6s all; - z-index: -1; -} - -.puprple_btn:hover::before { - width: 100%; -} - -.puprple_btn:hover { - color: var(--purple); -} - -/* white button */ -.white_btn { - padding: 10px 45px; - border: 1px solid var(--purple); - color: var(--purple); - border-radius: 50px; - background-color: var(--bg-white); - font-weight: 700; - position: relative; - z-index: 1; - overflow: hidden; - font-weight: 500; -} - -.white_btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-purple); - border-radius: 50px; - transition: .6s all; - z-index: -1; -} - -.white_btn:hover::before { - width: 110%; -} - -.white_btn:hover { - color: var(--text-white); -} - -.highlited_block .white_btn:hover { - border-color: var(--bg-white); -} - -/* slider controls */ -.owl-carousel .owl-dots { - display: flex; - align-items: center; - justify-content: center; - position: relative; - margin-top: 20px; -} - -.owl-carousel .owl-dots button { - display: block; - width: 15px; - height: 15px; - background-color: var(--slider-dots-color); - border-radius: 15px; - margin: 0 5px; -} - -.owl-carousel .owl-dots button.active { - background-color: var(--purple); -} - -/* -------------Preloader-Css-Start-------------- */ - -/* Preloader */ -#preloader { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: rgba(255, 255, 255, 0.9); - z-index: 999999; -} - -#loader { - display: block; - position: relative; - left: 50%; - top: 50%; - width: 150px; - height: 150px; - margin: -75px 0 0 -75px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #003b73; - -webkit-animation: spin 2s linear infinite; - animation: spin 2s linear infinite; -} - -#loader:before { - content: ""; - position: absolute; - top: 5px; - left: 5px; - right: 5px; - bottom: 5px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #E63108; - -webkit-animation: spin 3s linear infinite; - animation: spin 3s linear infinite; -} - -#loader:after { - content: ""; - position: absolute; - top: 15px; - left: 15px; - right: 15px; - bottom: 15px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #000; - -webkit-animation: spin 1.5s linear infinite; - animation: spin 1.5s linear infinite; -} - -@-webkit-keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - - - - -/* -----------Header-Css-Start------------------- */ -/* header wraper */ -header { - position: relative; - width: 100%; - z-index: 99999; - transition: .4s all; -} - -header.fix_style { - position: fixed; - top: 0; - backdrop-filter: blur(5px); - background-color: #ffffffb4; - padding: 15px 0; - transition: none; - opacity: 0; - pointer-events: none; -} - -header.fixed { - pointer-events: all; - opacity: 1; - transition: .4s all; -} - -header.fixed .navbar { - padding: 0; -} - -/* navigation bar */ -.navbar { - padding-left: 0; - padding-right: 0; - padding-top: 35px; -} - -.navbar-expand-lg .navbar-nav { - align-items: center; -} - -.navbar-expand-lg .navbar-nav .nav-link { - padding: 5px 20px; - font-weight: 500; -} - -.navbar-expand-lg .navbar-nav .nav-link:hover { - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn { - color: var(--text-white); - background-color: var(--purple); - font-size: 16px; - padding: 9px 40px; - border-radius: 25px; - margin-left: 20px; - position: relative; -} - - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before, -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - content: ''; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 42px; - z-index: -1; -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before { - animation: pulse-blue-medium-sm 3.5s infinite -} - -.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after { - animation: pulse-blue-small-sm 3.5s infinite -} - -.navbar-brand img { - width: 150px; -} - -/* navigation bar dropdown */ -.navbar-expand-lg .navbar-nav .has_dropdown { - display: flex; - align-items: center; - position: relative; - border-radius: 10px 10px 0 0; - transition: .4s all; -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover { - background-color: var(--bg-white); - box-shadow: 0px 4px 10px #c5c5c580; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn { - position: relative; - right: 15px; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu { - position: absolute; - top: 100%; - background-color: var(--bg-white); - border-radius: 0 10px 10px 10px; - min-width: 210px; - max-width: 230px; - margin-top: -10px; - transition: .4s all; - opacity: 0; - pointer-events: none; - box-shadow: 0px 4px 10px #c5c5c580; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul { - margin-left: 0; - padding: 10px 20px; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a { - font-size: 15px; - position: relative; - transition: .4s all; - line-height: 35px; - font-weight: 500; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before { - content: ""; - width: 10px; - height: 10px; - display: inline-block; - border: 2px solid var(--purple); - border-radius: 10px; - margin-right: 5px; - position: absolute; - left: -10px; - top: 50%; - transform: translateY(-50%); - opacity: 0; - transition: .4s all; -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover { - padding-left: 15px; - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before { - opacity: 1; - left: 0; -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover>a, -.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn { - color: var(--purple); -} - -.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu { - opacity: 1; - pointer-events: all; - margin-top: -1px; -} - -/* navigation toggle menu */ -.toggle-wrap { - padding: 10px; - position: relative; - cursor: pointer; - - /*disable selection*/ - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - } - - .toggle-bar, - .toggle-bar::before, - .toggle-bar::after, - .toggle-wrap.active .toggle-bar, - .toggle-wrap.active .toggle-bar::before, - .toggle-wrap.active .toggle-bar::after { - -webkit-transition: all .2s ease-in-out; - -moz-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; - transition: all .2s ease-in-out; - } - - .toggle-bar { - width: 25px; - margin: 10px 0; - position: relative; - border-top: 4px solid var(--body-text-purple); - display: block; - } - - .toggle-bar::before, - .toggle-bar::after { - content: ""; - display: block; - background: var(--body-text-purple); - height: 4px; - width: 30px; - position: absolute; - top: -12px; - right: 0px; - -ms-transform: rotate(0deg); - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - -ms-transform-origin: 13%; - -webkit-transform-origin: 13%; - transform-origin: 13%; - } - - .toggle-bar::after { - top: 4px; - } - - .toggle-wrap.active .toggle-bar { - border-top: 6px solid transparent; - } - - .toggle-wrap.active .toggle-bar::before { - -ms-transform: rotate(45deg); - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - } - - .toggle-wrap.active .toggle-bar::after { - -ms-transform: rotate(-45deg); - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - } - - -/* ---------Hero-Slider-Css-Start------------------ */ -/* hero banner wraper */ -.banner_section { - margin-top: 120px; - position: relative; -} - - -.banner_section .container { - position: relative; -} - -.banner_section .row { - align-items: center; -} - -/* hero banner text */ -.banner_section .banner_text { - margin-top: -50px; -} - -/* hero banner heading h1 */ -.banner_section .banner_text h1 { - font-size: 50px; - color: var(--lapieza); - letter-spacing: -1.5px; - font-weight: 700; -} - - -.banner_section-lapieza .banner_text-lapieza h1 span { - color: var(--black); -} - -/* hero banner wraper */ -.banner_section-lapieza { - margin-top: 120px; - position: relative; -} - - -.banner_section-lapieza .container { - position: relative; -} - -.banner_section-lapieza .row { - align-items: center; -} - -/* hero banner text */ -.banner_section-lapieza .banner_text-lapieza { - margin-top: -50px; -} - -/* hero banner heading h1 */ -.banner_section-lapieza .banner_text-lapieza h1 { - font-size: 50px; - color: var(--black); - letter-spacing: -1.5px; - font-weight: 700; -} - - -.banner_section-lapieza .banner_text-lapieza h1 span { - color: var(--black); -} - -/* trial box wraper */ -.trial_box { - display: flex; - justify-content: space-between; - align-items: center; - margin-bottom: 10px; - position: relative; - z-index: 99; - width: 100%; -} - -.trial_box form { - width: 60%; -} - -/* trial input */ -.trial_box form { - display: flex; -} - -.trial_box form .form-group { - margin-bottom: 0; -} - -.trial_box form .form-group .form-control { - width: 360px; - height: 55px; - border-radius: 6px; - color: var(--dark-purple); -} - -.trial_box form .form-group .form-control::placeholder { - color: var(--dark-purple); -} - -/* trial_box button */ -.trial_box form .form-group .btn { - height: 55px; - width: 100%; - text-transform: uppercase; - min-width: 177px; - color: var(--text-white); - background-color: #E63108; - border-radius: 6px; - /* margin-left: 10px; */ - font-weight: 600; - position: relative; - overflow: hidden; - z-index: 1; -} - -.trial_box form .form-group .btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-white); - border-radius: 0; - transition: .6s all; - z-index: -1; -} - -.trial_box form .form-group .btn:hover::before { - width: 100%; -} - -.trial_box form .form-group .btn:hover { - color: var(--purple); -} - -/* hero slider button */ -.banner_section .app_btn { - display: flex; - align-items: center; -} - -/* trial box text */ -.trial_box_list ul { - position: relative; - display: flex; -} - -.trial_box_list ul li{ - text-align: left; - padding: 0 25px 0 0; - font-size: 15px; -} - -/* hero banner list */ -.banner_section .app_btn li a { - display: block; - padding: 12px 30px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; -} - -.banner_section .app_btn li:last-child { - margin-left: 25px; -} - -.banner_section .app_btn li a img { - transition: .4s all; -} - -.banner_section .app_btn li a .white_img { - position: absolute; - left: 50%; - transform: translateX(-50%); - opacity: 0; -} - -.banner_section .app_btn li a:hover { - background-color: var(--purple); -} - -.banner_section .app_btn li a:hover .blue_img { - opacity: 0; -} - -.banner_section .app_btn li a:hover .white_img { - opacity: 1; -} - -/* hero banner users */ -.banner_section .used_app { - display: flex; - align-items: center; - margin-top: 35px; -} - -.banner_section .used_app ul { - display: flex; - align-items: center; - margin-right: 10px; -} - -.banner_section .used_app ul li:not(:first-child) { - margin-left: -15px; -} - -.banner_section .used_app p { - font-size: 15px; - line-height: 19px; - margin-bottom: 0; -} - -/* hero slider images */ -.banner_section .banner_images { - /*display: flex;*/ - position: relative; -} - -.banner_section .banner_images img { - border-radius: 20px; - box-shadow: 0px 4px 10px #ca97e4; - margin-bottom: 20px; -} - -.banner_section .banner_images { - text-align: right; -} - -.banner_section .banner_images.image_box2{ - text-align: left; -} - -.banner_section .banner_images .banner_image1 img{ - animation-delay: 1s; -} - -.banner_section .banner_images .banner_image2 img{ - animation-delay: 4s; -} - -.banner_section .banner_images .banner_image3 img{ - animation-delay: 3s; -} - -.banner_section .banner_images .banner_image4 img{ - animation-delay: 2s; -} - - -/* hero banner bg animation */ -.banner_section .hero_bg { - position: absolute; - top: -200px; - right: 50px; -} - -.banner_section .hero_bg { - animation: mymove 10s infinite; -} - - -@keyframes mymove { - 50% {transform: rotate(360deg);} -} - - -/* hero banner control dots */ -.banner_section .owl-dots { - margin-top: 40px; -} - -.owl-carousel .owl-item img { - max-width: 100%; - width: auto; -} - - - - -/* ------------Trusted-Section-Css-Start----------- */ - -/* trusted logos wraper */ -.trusted_section { - padding: 100px 0; -} - -.trusted_section .company_logos { - padding-top: 20px; -} - -.trusted_section .company_logos img { - filter: grayscale(1); - margin: 0 auto; - transition: .4s all; -} - -.trusted_section .company_logos img:hover { - filter: grayscale(0); -} - - - -/* ----------Feature-Detail-Section-start------ */ - -/* features section wraper */ -.features_section { - /* padding-top: 200px; */ - position: relative; - -} - -/* features section image */ -.features_section .features_inner .feature_img { - width: 70%; - /*height: 50%;*/ - overflow: auto; - margin: auto; - position: absolute; - top: -90px; - left: 0; - bottom: 0; - right: 0; - -} - -.features_section .features_inner .feature_img img { - max-width: 100%; -} - -.features_section .container { - max-width: 1370px; -} - -.features_section .features_inner { - position: relative; - background-color: rgba(255, 255, 255, 0.8); - padding: 66px 0 70px 0; - border-radius: 30px; - box-shadow: 0px 4px 30px #EDE9FE; - border: solid 1px var(--bg-white) ; - -} - -/* features box block */ -.features_section .features_inner .features_block { - max-width: 1170px; - margin: 0 auto; - padding: 40px 20px 0 20px; -} - -/* features section box */ - -.features_section .features_inner .feature_box { - width: 100%; - text-align: left; -} - -.features_section .features_inner .feature_box .image { - position: relative; - max-width: 100%; -} - -.features_section .features_inner .feature_box .image img { - border-radius: 12px 12px 0 0; - max-width: 100%; -} - -.features_section .features_inner .feature_box .text { - padding: 50px 0 0 0; -} - -.features_section .features_inner .feature_box .text h4 { - font-size: 20px; - color: var(--dark-purple); - font-weight: 600; -} - - -/* feature section bg animation */ - -.feature_section_bg { - position: absolute; - top: 0; - left: -300px; -} - - -/* bg animation */ -.feature_section_bg { - animation: mymove 5s infinite; -} - - -@keyframes mymove { - 50% {transform: rotate(180deg);} -} - -/* -----------------About-App-Section-Css-Start------------------ */ - -/* about us section wraper */ -.about_app_section .about_img { - display: flex; - align-items: center; - position: relative; -} - -/* about us section images*/ -.about_app_section .about_img img { - max-width: 100%; -} - -.about_app_section .about_img::before { - content: ""; - position: absolute; - left: 38%; - top: 50%; - transform: translate(-50%, -50%); - width: 500px; - height: 500px; - background-color: var(--bg-white); - border-radius: 100%; - z-index: -1; -} - -.about_app_section .about_img .screen_img { - margin-left: -135px; - margin-top: 110px; -} - -.about_app_section .about_text .section_title { - text-align: left; -} - -.about_app_section .about_text .section_title h2 { - margin-bottom: 15px; -} - -/* about us section statastics nomber */ -.about_app_section .about_text .app_statstic { - display: flex; - flex-wrap: wrap; - justify-content: space-between; - margin-bottom: 10px; - margin-top: 40px; -} - -.about_app_section .about_text .app_statstic li { - width: 248px; - background-color: var(--bg-white); - margin-bottom: 30px; - display: flex; - align-items: center; - border-radius: 12px; - padding: 15px 10px; - padding-left: 35px; - box-shadow: 0px 4px 10px #EDE9FE; -} - -.about_app_section .about_text .app_statstic li .icon { - margin-right: 9px; -} - -.about_app_section .about_text .app_statstic li p { - margin-bottom: 0; - line-height: 1; - color: var(--dark-purple); -} - -.about_app_section .about_text .app_statstic li p:first-child { - font-size: 40px; - font-weight: 600; - margin-bottom: 3px; -} - - -/* -------------Modern-Ui-Section-Css-Start---------------- */ -/* modern ui section wraper */ -.modern_ui_section { - position: relative; -} - -.modern_ui_section .row { - align-items: center; -} - -.modern_ui_section .design_block { - margin-top: 45px; -} - -/* modern ui text */ -.modern_ui_section .section_title { - text-align: left; -} - -.modern_ui_section .ui_text { - padding-right: 75px; -} - -/* modern ui list */ -.modern_ui_section .design_block li { - padding-left: 40px; - position: relative; - margin-bottom: 25px; -} - -.modern_ui_section .design_block li::before { - content: ""; - position: absolute; - left: 0; - top: 5px; - background-image: url(../images/right_icon.png); - width: 22px; - height: 22px; - background-repeat: no-repeat; - background-position: center; - background-size: contain; -} - -.modern_ui_section .design_block li h4 { - font-size: 20px; - color: var(--dark-purple); - font-weight: 600; - margin-bottom: 8px; -} - -.modern_ui_section .design_block li p { - margin-bottom: 0; -} - -/* modern ui images */ -.modern_ui_section .ui_images { - display: flex; - position: relative; -} - -.modern_ui_section .ui_images::before { - /*content: ""; - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - width: 570px; - height: 570px; - border-radius: 100%; - background-color: var(--bg-white); - z-index: -1;*/ -} - -.modern_ui_section .ui_images .right_img img:nth-child(3) { - margin-left: -140px; - margin-top: -20px; -} - -.modern_ui_section .ui_images .right_img img:nth-child(2) { - margin-left: -90px; - margin-top: -20px; -} - -.modern_ui_section .ui_images .right_img img:nth-child(1) { - position: relative; - top: 15px; - z-index: 99; - margin-left: -15px; -} - -/* modern ui section bg animation */ - -.modernui_section_bg { - position: absolute; - top: -200px; - right: -300px; -} - - -/* bg animation */ -.modernui_section_bg { - animation: mymove 10s infinite; -} - - -@keyframes mymove { - 50% {transform: rotate(180deg);} -} - - -/* -------------How_It_Works-Section-Css-Start------------------ */ - -/* how it works wraper */ -.how_it_works { - position: relative; -} - -.how_it_works .container { - max-width: 1370px; -} - -.how_it_works .how_it_inner { - background-color: rgba(255, 255, 255, 0.8); - border: solid 1px var(--bg-white); - padding: 70px 0; - padding-bottom: 50px; - border-radius: 30px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* how it works list */ -.how_it_works .step_block ul { - max-width: 1080px; - margin: 0 auto; - padding: 10px; -} - -.how_it_works .step_block ul li { - display: flex; - align-items: center; - justify-content: space-between; - position: relative; - margin-bottom: 50px; -} - -.how_it_works .step_block ul li::before { - content: ""; - position: absolute; - left: 50%; - top: 50px; - transform: translateX(-50%); - width: 4px; - height: calc(100% + 100px); - background-color: var(--light-bg); -} - -.how_it_works .step_block ul li:first-child::after { - content: ""; - position: absolute; - left: 50%; - top: 0; - transform: translateX(-50%); - width: 14px; - height: 14px; - background-color: var(--light-bg); - border-radius: 15px; -} - -.how_it_works .step_block ul li:first-child::before { - top: 0; -} - -.how_it_works .step_block ul li:last-child::before { - height: 50%; - top: 0; -} - -.how_it_works .step_block ul li .step_text, -.how_it_works .step_block ul li .step_img { - width: 360px; - text-align: right; -} - -/* how it works image */ -.how_it_works .step_block ul li .step_img img { - max-width: 100%; - border-radius: 16px; -} - -/* how it works heading h4 */ -.how_it_works .step_block ul li .step_text h4 { - font-size: 20px; - font-weight: 600; -} - -.how_it_works .step_block ul li .step_text .app_icon { - margin-bottom: 10px; -} - -.how_it_works .step_block ul li .step_text .app_icon a { - display: inline-block; - width: 40px; - height: 40px; - border-radius: 100%; - background-color: var(--light-bg); - color: var(--text-white); - font-size: 20px; - text-align: center; - line-height: 40px; - transition: .4s all; -} - -.how_it_works .step_block ul li .step_text .app_icon a:hover { - background-color: #003b73; -} - -.how_it_works .step_block ul li .step_text span { - font-weight: 600; -} - -.how_it_works .step_block ul li .step_text span a { - color: #003b73; - text-decoration: underline; -} - -.how_it_works .step_block ul li:nth-child(2) { - flex-direction: row-reverse; -} - -.how_it_works .step_block ul li:nth-child(2) .step_text, -.how_it_works .step_block ul li:nth-child(2) .step_img { - text-align: left; -} - -/* how it works numbers */ -.how_it_works .step_block ul li .step_number { - background-position: center; - width: 80px; - height: 80px; - display: flex; - justify-content: center; - align-items: center; - position: relative; - border-radius: 200px; -} - -.how_it_works .step_block ul li .step_number.number1{ - background:#fff1da; - border: #f9e8cd solid 7px; -} - -.how_it_works .step_block ul li .step_number.number2{ - background:#d8fdff; - border: #c5f5f8 solid 7px; -} - -.how_it_works .step_block ul li .step_number.number3{ - background:#ffe9f1; - border: #fcdde9 solid 7px; -} - -/* how it works numbers heading h3 */ -.how_it_works .step_block ul li .step_number h3 { - font-size: 30px; - font-weight: 600; - padding-top: 8px; -} - -/* how it works video */ -.how_it_works .yt_video { - max-width: 1170px; - margin: 0 auto; - margin-top: -200px; - position: relative; - overflow: hidden; -} - -/* how it works video animation line */ -.how_it_works .yt_video .anim_line { - z-index: 999; -} - -.how_it_works .yt_video .thumbnil { - position: relative; -} - -.how_it_works .yt_video .thumbnil img { - max-width: 100%; -} - -.how_it_works .yt_video .thumbnil a { - position: absolute; - left: 50%; - top: 50%; - transform: translate(-50%, -50%); - text-align: center; - color: var(--text-white); - font-weight: 600; - z-index: 999; - cursor: pointer; -} - -.how_it_works .yt_video .thumbnil a span { - display: block; - font-weight: 700; - font-size: 30px; -} - -.how_it_works .yt_video .thumbnil a .play_btn { - background-color: rgba(255, 255, 255, 0.1); - width: 96px; - height: 96px; - border-radius: 100px; - text-align: center; - margin: 0 auto; - line-height: 96px; - position: relative; - display: block; - margin-bottom: 40px; -} - -.how_it_works .yt_video .thumbnil a .play_btn img { - width: 50px; - position: relative; - z-index: 999; -} - -/* how it works video model */ -.modal { - z-index: 999999; -} - -.modal-backdrop.show { - z-index: 99999; - opacity: .7; -} - -.youtube-video .modal-dialog { - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - margin: auto; - width: 100%; - padding: 0 15px; - height: 100%; - max-width: 1240px !important; - display: flex; - flex-direction: column; - justify-content: center; -} - -#video-container { - position: relative; - padding-bottom: 50%; - padding-top: 30px; - height: 0; - overflow: hidden; -} - -iframe#youtubevideo { - position: absolute; - top: 0; - left: 0; - height: 100%; - width: 100%; -} -.youtube-video .modal-footer { - border: none; - text-align: center; - display: block; - padding: 0; -} - -.youtube-video .modal-content { - background: none !important; - border: none; -} - -#close-video { - color: #fff; - font-size: 30px; -} - -/* how it work section bg animation */ - -.how_section_bg { - position: absolute; - top: 0; - left: -300px; - z-index: -1; -} - - -/* bg animation */ -.how_section_bg { - animation: mymove 5s infinite; -} - - -@keyframes mymove { - 50% {transform: rotate(180deg);} -} - -/* ------------Testimonial-Slider-Css-Start------------- */ -/* testimonials wraper */ -.testimonial_section { - padding: 50px 0 100px 0; -} -#testimonial_slider { - max-width: 550px; - margin: 0 auto; -} - -.testimonial_section .testimonial_block { - background-image: url(../images/testimonial_bg.png); - background-size: cover; - background-position: center; - position: relative; - margin-top: 65px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box { - text-align: center; - width: 430px; - padding: 10px; - margin: 0 auto; -} - -/* testimonials rating */ -.testimonial_section .testimonial_block .rating span { - color: #FC9400; - font-size: 18px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box .review { - margin-top: 10px; - margin-bottom: 30px; -} - -/* testimonials image */ -.testimonial_section .testimonial_block .testimonial_slide_box .testimonial_img img { - margin: 0 auto; -} - -/* testimonials heading h3 */ -.testimonial_section .testimonial_block .testimonial_slide_box h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 0; - margin-top: 10px; -} - -.testimonial_section .testimonial_block .testimonial_slide_box .designation { - font-size: 15px; -} - -/* testimonials total review */ -.testimonial_section .total_review { - text-align: center; - margin-top: 60px; -} - -.testimonial_section .total_review .rating { - display: flex; - align-items: center; - justify-content: center; -} - -/* testimonials paragraph */ -.testimonial_section .total_review .rating p { - margin-bottom: 0; - font-weight: 600; - margin-left: 5px; - color: var(--dark-purple); -} - -/* testimonials heading */ -.testimonial_section .total_review h3 { - font-size: 50px; - font-weight: 600; - margin-bottom: 0; - color: var(--dark-purple); -} - -.testimonial_section .total_review a { - color: var(--purple); - font-weight: 700; -} - -.testimonial_section .testimonial_block .avtar_faces { - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); - z-index: -1; - width: 100%; -} - -.testimonial_section .testimonial_block .avtar_faces img { - max-width: 100%; -} - - -/* -------------------Pricing-Section---------------------- */ - -/* pricing wraper */ -.pricing_section { - background: #32236f; - padding: 100px 0; -} - -.pricing_section .section_title h2 { - color: var(--text-white); -} - -.pricing_section .section_title p { - color: var(--text-white); -} - -.pricing_section .toggle_block { - display: flex; - align-items: center; - justify-content: center; -} - -/* pricing toggle button */ -.pricing_section .toggle_block span { - color: var(--dark-bg-text); - font-weight: 600; - display: block; - margin: 0 5px; -} - -.tog_btn.month_active { - left: 35px !important; -} - -.pricing_section .toggle_block span.deactive { - color: var(--body-text-purple); -} - -.pricing_section .toggle_block .offer { - background-color: var(--bg-white); - border-radius: 5px; - padding: 2px 10px; - font-weight: 400; - font-size: 13px; - color: var(--purple); -} - -.pricing_section .toggle_block .tog_block { - width: 70px; - height: 35px; - background-color: var(--bg-white); - border-radius: 18px; - margin: 0 10px; - position: relative; - cursor: pointer; -} - -.pricing_section .toggle_block .tog_block .tog_btn { - height: 23px; - width: 23px; - border-radius: 25px; - display: block; - background-color: var(--purple); - position: absolute; - left: 3px; - top: 50%; - transform: translateY(-50%); - transition: .4s all; -} - -.pricing_section .toggle_block .month.active, -.pricing_section .toggle_block .years.active { - color: var(--text-white); -} - -/* pricing pannel */ -.pricing_section .pricing_pannel { - margin-top: 50px; - display: none; -} - -.pricing_section .pricing_pannel.active { - display: block; -} - -.pricing_section .pricing_pannel .pricing_block { - text-align: center; - background-color: var(--bg-white); - min-height: 700px; - border-radius: 12px; - padding-top: 60px; - margin-bottom: 40px; - box-shadow: 0px 4px 30px #1d1445; -} - -.pricing_section .pricing_pannel .pricing_block.highlited_block { - background-color: var(--purple); -} - -.pricing_section .pricing_pannel .pricing_block.highlited_block p, -.pricing_section .pricing_pannel .pricing_block.highlited_block h3, -.pricing_section .pricing_pannel .pricing_block.highlited_block span, -.pricing_section .pricing_pannel .pricing_block.highlited_block .pkg_name span { - color: var(--text-white); -} - -.pricing_section .pricing_pannel .pricing_block .icon { - margin-bottom: 35px; -} - -/* pricing box image */ -.pricing_section .pricing_pannel .pricing_block .icon img { - /*width: 100%;*/ -} - -/* pricing box heading h3 */ -.pricing_section .pricing_pannel .pricing_block .pkg_name h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 0; -} - -.pricing_section .pricing_pannel .pricing_block .pkg_name span { - color: var(--body-text-purple); - font-size: 15px; -} - -.pricing_section .pricing_pannel .pricing_block .price { - font-size: 48px; - color: var(--purple); - margin: 25px 0; - display: block; - font-weight: 600; -} - -/* pricing box list */ -.pricing_section .pricing_pannel .pricing_block .benifits { - margin-bottom: 40px; -} - -.pricing_section .pricing_pannel .pricing_block .benifits li p { - margin-bottom: 5px; -} - -.pricing_section .contact_text { - text-align: center; - margin-bottom: 0; - color: var(--text-white); -} - -.pricing_section .contact_text a { - color: var(--purple); - text-decoration: underline; - color: var(--text-white); -} - - -/* -------------FAQ-Section-Css-Start----------------- */ - -/* faq wraper */ -.faq_section { - padding: 100px 0; - position: relative; -} - -.faq_section .faq_panel { - margin-top: 40px; -} - -/* faq box */ -.faq_section .faq_panel .card { - border: none; - margin-bottom: 20px; - border-radius: 12px; - background-color: var(--light-purple); - padding: 16px 0; -} - -.faq_section .faq_panel .card:last-child { - margin-bottom: 0; -} - -.faq_section .faq_panel .card-header { - background-color: transparent; - border: none; - padding-bottom: 0; - padding-top: 0; -} - -.faq_section .faq_panel .card-header .btn { - padding: 0; - color: var(--dark-purple); - font-weight: 600; - font-size: 20px; -} - -.faq_section .faq_panel .card-header .btn.active { - color: var(--purple); -} - -.faq_panel .accordion button, -.faq_panel .accordion button:hover, -.faq_panel .accordion button:focus { - text-decoration: none; -} - -.faq_section .faq_panel .card-header .icon_faq { - position: absolute; - right: 20px; - color: #839BC0; -} - -/* faq heading h2 */ -.faq_section .faq_panel .card-header h2 { - line-height: 1; -} - -/* faq paragraph */ -.faq_section .faq_panel .card-body { - padding-bottom: 0; -} - - -/* feature section bg animation */ - -.faq_section .faq_bg { - position: absolute; - top: 0; - right: -300px; -} - - -/* bg animation */ -.faq_section .faq_bg { - animation: mymove 5s infinite; -} - - -@keyframes mymove { - 50% {transform: rotate(180deg);} -} - -/* -----------Interface_Section-Css-Start----------------- */ - -/* interface wraper */ -.interface_section .screen_slider { - margin-top: 35px; - min-height: 720px; -} - -/* interface images */ -.interface_section .owl-item .screen_frame_img img { - transform: scale(.9); - border: 2px solid #000; - border-radius: 20px; - transition: 1s all; - margin: 0 auto; -} - -.interface_section .owl-item.center .screen_frame_img img { - transform: scale(1); - border: 3px solid #000; - -} - - -/* -----------Download_App_Section-Start------------------ */ - -/* download app wraper */ -.free_app_section { - padding-top: 180px; - position: relative; -} - -.free_app_section .container { - max-width: 1370px; -} - -.free_app_section .container .free_app_inner { - background-color: #003b73; - border-radius: 30px; - padding: 20px 100px; - padding-bottom: 50px; - position: relative; - z-index: 999999; -} - -/* download app dark background */ -.free_app_section .container .free_app_inner .dark_bg { - overflow: hidden; -} - -.free_app_section .container .free_app_inner .dark_bg span { - z-index: 9999; -} - -.free_app_section .container .free_app_inner .row { - align-items: center; -} - -.free_app_section .container .free_app_inner .free_text .section_title { - text-align: left; -} - -/* download app heading h2 */ -.free_app_section .container .free_app_inner .free_text .section_title h2 { - margin-bottom: 20px; -} - -.free_app_section .container .free_app_inner .free_text .section_title h2, -.free_app_section .container .free_app_inner .free_text .section_title p { - color: var(--text-white); -} - -.free_app_section .container .free_app_inner .free_text .app_btn { - display: flex; - align-items: center; -} - -.free_app_section .container .free_app_inner .free_text .app_btn li a { - display: block; - /* padding: 12px 30px; */ - background-color: #003b73; - /* border: 6px solid #E63108; */ - position: relative; - border-radius: 12px; - transition: .4s all; -} - -.free_app_section .container .free_app_inner .free_text .app_btn li a:hover { - -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); --moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -} - -.free_app_section .container .free_app_inner .free_text .app_btn li:last-child { - margin-left: 25px; -} - -.free_app_section .container .free_app_inner .free_img { - display: flex; - align-items: center; - margin-top: -120px; -} - -.free_app_section .container .free_app_inner .free_img img:last-child { - margin-left: -65px; -} - -.purple_backdrop { - content: ""; - position: fixed; - left: 0; - top: 0; - background-color: #E63108; - width: 100%; - height: 100%; - z-index: 99999; - opacity: 0; - transition: .4s all; - pointer-events: none; -} - -/* ---------------Latest_Story-Css-Start------------- */ - -/* latest story wraper */ -.latest_story { - -} - -/* latest story box */ -.latest_story .story_box { - background-color: var(--bg-white); - text-align: center; - border-radius: 10px; - box-shadow: 0px 4px 30px #EDE9FE; -} - -/* latest story image */ -.latest_story .story_box .story_img { - position: relative; -} - -.latest_story .story_box .story_img img { - max-width: 100%; -} - -.latest_story .story_box .story_img span { - position: absolute; - left: 15px; - top: 15px; - font-size: 14px; - color: var(--text-white); -} - -/* latest story pargraph */ -.latest_story .story_box .story_text { - padding: 20px 30px; -} - -/* latest story heading h3 */ -.latest_story .story_box .story_text h3 { - color: var(--dark-purple); - font-size: 20px; - margin-bottom: 15px; - font-weight: 600; -} - -/* latest story link text */ -.latest_story .story_box .story_text a { - color: var(--purple); - margin-top: 25px; - display: block; - font-size: 14px; - margin-bottom: 10px; - font-weight: 600; -} - -.latest_story .story_box .story_text a:hover { - text-decoration:underline; -} - - - -/* -------------Newsletter-Section-Css-Start------------- */ - -/* newsletter wraper */ -.newsletter_box { - background-color: var(--bg-purple); - padding: 50px; - border-radius: 12px; - box-shadow: 0 4px 10px #0c0c0c21; - display: flex; - justify-content: space-between; - align-items: center; - margin-bottom: -95px; - position: relative; - z-index: 99; -} - -.newsletter_box .section_title { - width: 45%; -} - -.newsletter_box form { - width: 60%; -} - -/* newsletter heading h2 */ -.newsletter_box .section_title h2 { - margin-bottom: 5px; - letter-spacing: -1px; -} - -.newsletter_box .section_title h2, -.newsletter_box .section_title p { - color: var(--text-white); - text-align: left; -} - -/* newsletter paragraph */ -.newsletter_box .section_title p { - margin-bottom: 0; -} - -/* newsletter input */ -.newsletter_box form { - display: flex; -} - -.newsletter_box form .form-group { - margin-bottom: 0; -} - -.newsletter_box form .form-group .form-control { - width: 430px; - height: 55px; - border-radius: 6px; - color: var(--dark-purple); -} - -.newsletter_box form .form-group .form-control::placeholder { - color: var(--dark-purple); -} - -/* newsletter button */ -.newsletter_box form .form-group .btn { - height: 55px; - width: 170px; - text-transform: uppercase; - color: var(--purple); - background-color: var(--bg-white); - border-radius: 6px; - margin-left: 10px; - font-weight: 600; - position: relative; - overflow: hidden; - z-index: 1; -} - -.newsletter_box form .form-group .btn::before { - content: ""; - position: absolute; - left: 0; - top: 0; - width: 0%; - height: 100%; - background-color: var(--bg-purple); - border-radius: 0; - transition: .6s all; - z-index: -1; -} - -.newsletter_box form .form-group .btn:hover::before { - width: 100%; -} - -.newsletter_box form .form-group .btn:hover { - color: var(--text-white); -} - - -/* ------Footer-Css-Start-------------- */ -/* footer wraper */ -footer { - position: relative; -} - -footer .top_footer { - padding: 180px 0 60px 0; - position: relative; - overflow: hidden; -} - -/* footer logo */ -footer .top_footer .logo { - margin-bottom: 40px; -} - -footer .top_footer .logo img { - width: 150px; -} - -footer .top_footer .abt_side li { - padding: 0 0 10px 0; -} - -/* footer social media icon */ -footer .top_footer .social_media { - display: flex; - margin-top: 20px; -} - -/* footer link list */ -footer .top_footer .social_media li a { - display: block; - width: 37px; - height: 37px; - text-align: center; - line-height: 37px; - font-size: 15px; - border: 1px solid #dddde2; - border-radius: 50px; - margin-right: 10px; - transition: .4s all; -} - -footer .top_footer .social_media li a:hover { - background-color: var(--bg-purple); - color: var(--text-white); -} - -footer .top_footer .try_out { - margin-left: -20px; -} - -footer .app_btn li a { - display: block; - padding: 12px 10px; - background-color: var(--bg-white); - border: 2px solid var(--purple); - position: relative; - border-radius: 12px; - transition: .4s all; - width: 175px; - text-align: center; -} - -footer .app_btn li a:hover { - -webkit-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); - -moz-box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); - box-shadow: 1px 4px 8px -2px rgba(0,0,0,0.5); -} - -footer .app_btn li:last-child { - margin-top: 20px; -} - -footer .bottom_footer { - border-top: #dddde2 solid 1px; -} - -/* footer heading colors variable */ -footer h2, -footer h3 { - color: var(--dark-purple); -} - -/* footer text colors variable */ -footer p, -footer a { - color: var(--body-text-purple); -} - -footer a:hover { - color: var(--purple); -} - -/* footer heading h3 */ -footer h3 { - font-size: 20px; - font-weight: 600; - margin-bottom: 50px; - padding-top: 10px; -} - -footer .links ul li a { - display: block; - margin-bottom: 10px; -} - -/* footer last */ -footer .bottom_footer { - padding: 20px 0; -} - -footer .bottom_footer p { - margin-bottom: 0; - font-size: 15px; -} - -footer .bottom_footer .developer_text { - text-align: right; -} - -footer .bottom_footer .developer_text a { - text-decoration: underline; -} - -/* footer section bg animation */ - -footer .footer_bg { - position: absolute; - bottom: 0px; - left: -400px; -} - - - -/* footer go top button */ -.go_top { - position: fixed; - right: 30px; - bottom: 75px; - cursor: pointer; - transition: .4s all; - opacity: 0; -} - -.go_top:hover { - bottom: 80px; -} - -/* -----------Animation-Css-Start-------------- */ - -/* animation line wraper */ -.anim_line { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 50%; - transform: translateX(-50%); -} - -.anim_line span { - position: absolute; - z-index: 99999; - top: -275px; - animation: star_down_one 6s infinite linear; - opacity: 0; -} - -.anim_line.dark_bg { - max-width: 1170px; -} - -.anim_line.dark_bg span { - transform: rotate(180deg); -} - -.anim_line span:first-child { - left: -17%; - animation-delay: 3s; -} - -.anim_line span:nth-child(2) { - left: 0%; - animation-delay: 5s; -} - -.anim_line span:nth-child(3) { - left: 17%; - animation-delay: 1s; -} - -.anim_line span:nth-child(4) { - left: 34%; - animation-delay: 4s; -} - -.anim_line span:nth-child(5) { - left: 51%; - animation-delay: 7s; -} - -.anim_line span:nth-child(6) { - left: 68%; -} - -.anim_line span:nth-child(7) { - left: 85%; - animation-delay: 3s; -} - -.anim_line span:nth-child(8) { - left: 99%; - animation-delay: 2s; -} - -.anim_line span:nth-child(9) { - left: 117%; - animation-delay: 5s; -} - -/* footer .top_footer .anim_line span:first-child { - left: 5%; -} - -footer .top_footer .anim_line span:nth-child(2) { - left: 13%; -} */ - -@keyframes star_down_one { - 0% { - opacity: 0; - top: -250px; - } - - 10% { - opacity: 1; - } - - 90% { - opacity: 1; - } - - 100% { - top: 100%; - opacity: 0; - } -} - - - - -/* --------Object-Moving-Animation-Css-Start----- */ -.moving_animation { - animation: moving_object 6s infinite linear; -} - -.moving_position_animatin { - position: relative; - animation: moving_position_animatin 6s infinite linear; - z-index: -1; -} - -.about_app_section .about_img .screen_img img { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(3) { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(2) { - animation-delay: 3s; -} - -.modern_ui_section .ui_images .right_img img:nth-child(1) { - animation-delay: 3s; -} - -@keyframes moving_object { - 0% { - transform: translateY(0); - } - - 50% { - transform: translateY(-30px); - } - - 100% { - transform: translateY(0); - } -} - -@keyframes moving_position_animatin { - 0% { - transform: translateY(0); - } - - 50% { - transform: translateY(-30px); - } - - 100% { - transform: translateY(0); - } -} - - -/* ------------Waves-Animation---------------- */ -.waves-block { - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50% , -50%); - width: 150px; - height: 150px; -} - -.waves { - width: 150px; - height: 150px; - background: rgba(255, 255, 255, 0.3); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - border-radius: 100%; - z-index: -1; - -webkit-animation: waves 3s ease-in-out infinite; - animation: waves 3s ease-in-out infinite; -} - -.wave-1 { - -webkit-animation-delay: 0s; - animation-delay: 0s; -} - -.wave-2 { - -webkit-animation-delay: 1s; - animation-delay: 1s; - position: absolute; - top: 0; -} - -.wave-3 { - -webkit-animation-delay: 2s; - animation-delay: 2s; - position: absolute; - top: 0; -} - -@keyframes waves { - 0% { - -webkit-transform: scale(0.2, 0.2); - transform: scale(0.2, 0.2); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - } - - 50% { - opacity: 0.9; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; - } - - 100% { - -webkit-transform: scale(0.9, 0.9); - transform: scale(0.9, 0.9); - opacity: 0; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; - } -} - - - -/*------Header Btn Animation------*/ -@keyframes pulse-blue-small-sm { - 0% { - box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.7); - } - - 100%, - 30% { - box-shadow: 0 0 0 12px transparent - } -} - -@keyframes pulse-blue-medium-sm { - 0% { - box-shadow: 0 0 0 0 rgba(107, 73, 242, 0.4); - } - - 100%, - 30% { - box-shadow: 0 0 0 20px transparent - } -} - diff --git a/desarrollo/diseno/registro-comercio/desktop.ini b/desarrollo/diseno/registro-comercio/desktop.ini deleted file mode 100644 index eab26fd7..00000000 Binary files a/desarrollo/diseno/registro-comercio/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/desktop.ini b/desarrollo/diseno/registro-comercio/fonts/desktop.ini deleted file mode 100644 index eab26fd7..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/icofont.eot b/desarrollo/diseno/registro-comercio/fonts/icofont.eot deleted file mode 100644 index 56e15db4..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/icofont.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/icofont.svg b/desarrollo/diseno/registro-comercio/fonts/icofont.svg deleted file mode 100644 index 8535ec67..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/icofont.svg +++ /dev/null @@ -1,2105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/fonts/icofont.ttf b/desarrollo/diseno/registro-comercio/fonts/icofont.ttf deleted file mode 100644 index ba6d2356..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/icofont.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/icofont.woff b/desarrollo/diseno/registro-comercio/fonts/icofont.woff deleted file mode 100644 index 48002ce2..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/icofont.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/icofont.woff2 b/desarrollo/diseno/registro-comercio/fonts/icofont.woff2 deleted file mode 100644 index 75f03d7b..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/icofont.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.eot b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.eot deleted file mode 100644 index bbfdbf30..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.svg b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.svg deleted file mode 100644 index ce805153..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.svg +++ /dev/null @@ -1,321 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.ttf b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.ttf deleted file mode 100644 index dafd4e09..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.woff b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.woff deleted file mode 100644 index 482673b3..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.woff2 b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.woff2 deleted file mode 100644 index 962b734e..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-300.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.eot b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.eot deleted file mode 100644 index a41067bf..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.svg b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.svg deleted file mode 100644 index a00b27cb..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.ttf b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.ttf deleted file mode 100644 index 81ef3c85..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.woff b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.woff deleted file mode 100644 index f0334422..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.woff2 b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.woff2 deleted file mode 100644 index c6603368..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.eot b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.eot deleted file mode 100644 index c53b28fc..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.svg b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.svg deleted file mode 100644 index fac9b18f..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.svg +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.ttf b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.ttf deleted file mode 100644 index 20854052..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.woff b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.woff deleted file mode 100644 index ed570119..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.woff2 b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.woff2 deleted file mode 100644 index b995ebb6..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-500italic.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.eot b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.eot deleted file mode 100644 index 7bbdbbab..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.svg b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.svg deleted file mode 100644 index 63d4ce3d..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.ttf b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.ttf deleted file mode 100644 index 5cfa4913..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.woff b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.woff deleted file mode 100644 index 2370956d..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.woff2 b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.woff2 deleted file mode 100644 index 921e962b..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-600.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.eot b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.eot deleted file mode 100644 index 09db74db..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.svg b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.svg deleted file mode 100644 index 9056a3d5..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.ttf b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.ttf deleted file mode 100644 index 2cc94c2a..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.woff b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.woff deleted file mode 100644 index b8b8ce59..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.woff2 b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.woff2 deleted file mode 100644 index bf022fc7..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-700.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.eot b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.eot deleted file mode 100644 index 4425744a..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.svg b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.svg deleted file mode 100644 index 2ac71d9b..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.svg +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.ttf b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.ttf deleted file mode 100644 index 7a65fc54..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.woff b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.woff deleted file mode 100644 index 30728f54..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.woff2 b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.woff2 deleted file mode 100644 index f107b369..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-800.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.eot b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.eot deleted file mode 100644 index cde85654..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.svg b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.svg deleted file mode 100644 index 78aacea8..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.svg +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.ttf b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.ttf deleted file mode 100644 index e9f8ce6d..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.woff b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.woff deleted file mode 100644 index 772d71ca..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.woff2 b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.woff2 deleted file mode 100644 index 11123368..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-italic.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.eot b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.eot deleted file mode 100644 index e23dd26e..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.eot and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.svg b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.svg deleted file mode 100644 index bc983e49..00000000 --- a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.ttf b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.ttf deleted file mode 100644 index dfb38c42..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.ttf and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.woff b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.woff deleted file mode 100644 index 2a04ae32..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.woff and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.woff2 b/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.woff2 deleted file mode 100644 index b69e0091..00000000 Binary files a/desarrollo/diseno/registro-comercio/fonts/poppins-v20-latin-regular.woff2 and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/about-frame.png b/desarrollo/diseno/registro-comercio/images/about-frame.png deleted file mode 100644 index eb7e4257..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/about-frame.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/about-screen.png b/desarrollo/diseno/registro-comercio/images/about-screen.png deleted file mode 100644 index 8d3f57dd..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/about-screen.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/anim_line.png b/desarrollo/diseno/registro-comercio/images/anim_line.png deleted file mode 100644 index ced15363..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/anim_line.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/appstore_blue.png b/desarrollo/diseno/registro-comercio/images/appstore_blue.png deleted file mode 100644 index 2f8fad98..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/appstore_blue.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/appstore_white.png b/desarrollo/diseno/registro-comercio/images/appstore_white.png deleted file mode 100644 index 78db0a97..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/appstore_white.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/avtar_testimonial.png b/desarrollo/diseno/registro-comercio/images/avtar_testimonial.png deleted file mode 100644 index 9388ea8f..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/avtar_testimonial.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/banner-shape.svg b/desarrollo/diseno/registro-comercio/images/banner-shape.svg deleted file mode 100644 index efb2df7b..00000000 --- a/desarrollo/diseno/registro-comercio/images/banner-shape.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/images/bannerimage1.png b/desarrollo/diseno/registro-comercio/images/bannerimage1.png deleted file mode 100644 index 8531bd8f..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/bannerimage1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/bannerimage2.png b/desarrollo/diseno/registro-comercio/images/bannerimage2.png deleted file mode 100644 index a40e1f49..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/bannerimage2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/bannerimage3.png b/desarrollo/diseno/registro-comercio/images/bannerimage3.png deleted file mode 100644 index 907a6f20..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/bannerimage3.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/bannerimage4.png b/desarrollo/diseno/registro-comercio/images/bannerimage4.png deleted file mode 100644 index 8efb769a..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/bannerimage4.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/countries.png b/desarrollo/diseno/registro-comercio/images/countries.png deleted file mode 100644 index 7bc51279..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/countries.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/create_account.jpg b/desarrollo/diseno/registro-comercio/images/create_account.jpg deleted file mode 100644 index 1d49331d..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/create_account.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/desktop.ini b/desarrollo/diseno/registro-comercio/images/desktop.ini deleted file mode 100644 index eab26fd7..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/device-feature.png b/desarrollo/diseno/registro-comercio/images/device-feature.png deleted file mode 100644 index 61824edd..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/device-feature.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/download-screen01.png b/desarrollo/diseno/registro-comercio/images/download-screen01.png deleted file mode 100644 index a09a9876..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/download-screen01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/download-screen02.png b/desarrollo/diseno/registro-comercio/images/download-screen02.png deleted file mode 100644 index c0a4ec76..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/download-screen02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/download.png b/desarrollo/diseno/registro-comercio/images/download.png deleted file mode 100644 index 8920d33f..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/download.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/download_app.jpg b/desarrollo/diseno/registro-comercio/images/download_app.jpg deleted file mode 100644 index 449850f7..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/download_app.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/enjoy_app.jpg b/desarrollo/diseno/registro-comercio/images/enjoy_app.jpg deleted file mode 100644 index f9ff64e5..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/enjoy_app.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/envato.png b/desarrollo/diseno/registro-comercio/images/envato.png deleted file mode 100644 index 5f41512c..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/envato.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/favicon.ico b/desarrollo/diseno/registro-comercio/images/favicon.ico deleted file mode 100644 index e69de29b..00000000 diff --git a/desarrollo/diseno/registro-comercio/images/favicon.png b/desarrollo/diseno/registro-comercio/images/favicon.png deleted file mode 100644 index 0799fa75..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/favicon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/followers.png b/desarrollo/diseno/registro-comercio/images/followers.png deleted file mode 100644 index f0a22132..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/followers.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/footer_logo.png b/desarrollo/diseno/registro-comercio/images/footer_logo.png deleted file mode 100644 index 8f54056d..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/footer_logo.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/functional.png b/desarrollo/diseno/registro-comercio/images/functional.png deleted file mode 100644 index 108b8c5d..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/functional.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/go_top.png b/desarrollo/diseno/registro-comercio/images/go_top.png deleted file mode 100644 index 4be65284..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/go_top.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/go_top2.png b/desarrollo/diseno/registro-comercio/images/go_top2.png deleted file mode 100644 index 258951ef..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/go_top2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/googleplay_blue.png b/desarrollo/diseno/registro-comercio/images/googleplay_blue.png deleted file mode 100644 index 73207505..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/googleplay_blue.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/googleplay_white.png b/desarrollo/diseno/registro-comercio/images/googleplay_white.png deleted file mode 100644 index a737edfb..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/googleplay_white.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/hero-bg.png b/desarrollo/diseno/registro-comercio/images/hero-bg.png deleted file mode 100644 index df2f9f5d..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/hero-bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/hero-red-bg.png b/desarrollo/diseno/registro-comercio/images/hero-red-bg.png deleted file mode 100644 index 9ddb62f6..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/hero-red-bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/icon_bg.png b/desarrollo/diseno/registro-comercio/images/icon_bg.png deleted file mode 100644 index f968fcc9..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/icon_bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/live-chat.png b/desarrollo/diseno/registro-comercio/images/live-chat.png deleted file mode 100644 index 9140294d..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/live-chat.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/logo.png b/desarrollo/diseno/registro-comercio/images/logo.png deleted file mode 100644 index 260952ce..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/logo.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/message_icon.png b/desarrollo/diseno/registro-comercio/images/message_icon.png deleted file mode 100644 index 4ffeb3a7..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/message_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/mobile_frame.png b/desarrollo/diseno/registro-comercio/images/mobile_frame.png deleted file mode 100644 index f7f5249e..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/mobile_frame.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/mobile_frame1.png b/desarrollo/diseno/registro-comercio/images/mobile_frame1.png deleted file mode 100644 index 1c5864f7..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/mobile_frame1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/mobile_frame_svg.svg b/desarrollo/diseno/registro-comercio/images/mobile_frame_svg.svg deleted file mode 100644 index e05c0a2c..00000000 --- a/desarrollo/diseno/registro-comercio/images/mobile_frame_svg.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/desarrollo/diseno/registro-comercio/images/modern01.png b/desarrollo/diseno/registro-comercio/images/modern01.png deleted file mode 100644 index 487a2bdd..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/modern01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/modern02.png b/desarrollo/diseno/registro-comercio/images/modern02.png deleted file mode 100644 index 4bea402f..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/modern02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/modern03.png b/desarrollo/diseno/registro-comercio/images/modern03.png deleted file mode 100644 index 19857a22..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/modern03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/paypal.png b/desarrollo/diseno/registro-comercio/images/paypal.png deleted file mode 100644 index bc9ec711..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/paypal.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/play_icon.png b/desarrollo/diseno/registro-comercio/images/play_icon.png deleted file mode 100644 index feb549d4..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/play_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/play_icon1.png b/desarrollo/diseno/registro-comercio/images/play_icon1.png deleted file mode 100644 index 028255ea..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/play_icon1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/play_icon22.png b/desarrollo/diseno/registro-comercio/images/play_icon22.png deleted file mode 100644 index 377debfd..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/play_icon22.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/premium.png b/desarrollo/diseno/registro-comercio/images/premium.png deleted file mode 100644 index 6bb9f4b1..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/premium.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/reviews.png b/desarrollo/diseno/registro-comercio/images/reviews.png deleted file mode 100644 index a1e77b85..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/reviews.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/right_icon.png b/desarrollo/diseno/registro-comercio/images/right_icon.png deleted file mode 100644 index 704fee02..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/right_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/screen-1.png b/desarrollo/diseno/registro-comercio/images/screen-1.png deleted file mode 100644 index 539f84f0..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/screen-1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/screen-2.png b/desarrollo/diseno/registro-comercio/images/screen-2.png deleted file mode 100644 index 38d04bd5..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/screen-2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/screen-3.png b/desarrollo/diseno/registro-comercio/images/screen-3.png deleted file mode 100644 index 2bf96891..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/screen-3.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/screen-4.png b/desarrollo/diseno/registro-comercio/images/screen-4.png deleted file mode 100644 index 90c8af2b..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/screen-4.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/screen-5.png b/desarrollo/diseno/registro-comercio/images/screen-5.png deleted file mode 100644 index ee8e8543..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/screen-5.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/screen.png b/desarrollo/diseno/registro-comercio/images/screen.png deleted file mode 100644 index 9f593329..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/screen.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/screen1.png b/desarrollo/diseno/registro-comercio/images/screen1.png deleted file mode 100644 index 166f4920..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/screen1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/section-bg.png b/desarrollo/diseno/registro-comercio/images/section-bg.png deleted file mode 100644 index bbf65e51..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/section-bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/secure_data.png b/desarrollo/diseno/registro-comercio/images/secure_data.png deleted file mode 100644 index e33eec87..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/secure_data.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/shield_icon.png b/desarrollo/diseno/registro-comercio/images/shield_icon.png deleted file mode 100644 index bac7b4c0..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/shield_icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/shopboat.png b/desarrollo/diseno/registro-comercio/images/shopboat.png deleted file mode 100644 index 3d95f087..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/shopboat.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/slack.png b/desarrollo/diseno/registro-comercio/images/slack.png deleted file mode 100644 index 1dd64f1d..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/slack.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/spoty.png b/desarrollo/diseno/registro-comercio/images/spoty.png deleted file mode 100644 index 0b6b5d0f..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/spoty.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/standard.png b/desarrollo/diseno/registro-comercio/images/standard.png deleted file mode 100644 index 9bf81281..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/standard.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/story01.png b/desarrollo/diseno/registro-comercio/images/story01.png deleted file mode 100644 index 6e6892ac..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/story01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/story02.png b/desarrollo/diseno/registro-comercio/images/story02.png deleted file mode 100644 index d202c54d..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/story02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/story03.png b/desarrollo/diseno/registro-comercio/images/story03.png deleted file mode 100644 index bcc07757..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/story03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/support.png b/desarrollo/diseno/registro-comercio/images/support.png deleted file mode 100644 index 0e7515ac..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/support.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/testimonial_bg.png b/desarrollo/diseno/registro-comercio/images/testimonial_bg.png deleted file mode 100644 index 5f7e4374..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/testimonial_bg.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/testimonial_user1.png b/desarrollo/diseno/registro-comercio/images/testimonial_user1.png deleted file mode 100644 index 6fff6259..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/testimonial_user1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/testimonial_user2.png b/desarrollo/diseno/registro-comercio/images/testimonial_user2.png deleted file mode 100644 index cace92fa..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/testimonial_user2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/testimonial_user3.png b/desarrollo/diseno/registro-comercio/images/testimonial_user3.png deleted file mode 100644 index c1f22602..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/testimonial_user3.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/unlimited.png b/desarrollo/diseno/registro-comercio/images/unlimited.png deleted file mode 100644 index 9dd320fd..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/unlimited.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/used01.png b/desarrollo/diseno/registro-comercio/images/used01.png deleted file mode 100644 index 471fc0cf..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/used01.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/used02.png b/desarrollo/diseno/registro-comercio/images/used02.png deleted file mode 100644 index bed846b0..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/used02.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/used03.png b/desarrollo/diseno/registro-comercio/images/used03.png deleted file mode 100644 index 6fd9c30f..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/used03.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/used04.png b/desarrollo/diseno/registro-comercio/images/used04.png deleted file mode 100644 index 83a52217..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/used04.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/images/yt_thumb.png b/desarrollo/diseno/registro-comercio/images/yt_thumb.png deleted file mode 100644 index 185b05b1..00000000 Binary files a/desarrollo/diseno/registro-comercio/images/yt_thumb.png and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/index.html b/desarrollo/diseno/registro-comercio/index.html deleted file mode 100644 index 3b27ef63..00000000 --- a/desarrollo/diseno/registro-comercio/index.html +++ /dev/null @@ -1,500 +0,0 @@ - - - - - - - - - La Pieza.DO | Todo lo que buscas! - - - - - - - - - - - - - - - - - - - - - -
- - -
-
-
- - - - - - - - - -
- -
image
- -
-
- - - - -
- -

Lo que hace de La Pieza.DO
una opción única!

- -

Maneja tu inventario, recibe pagos, factura y vende en linea
de la manera segura y efectiva.

-
- - -
-
-
-
-
- image -
-
-

Datos Seguros

-

Contamos con los estándares internacionales de seguridad y SSL.

-
-
-
- -
-
-
- image -
-
-

Automatización de Servicios

-

Simple para vender, simple para ganar, Todo automatizado.

-
-
-
- -
-
-
- image -
-
-

Inteligencia Artificial

-

Para conocer el comportamiento de compra de tus clientes y ofrecerles lo mejor.

-
-
-
- -
-
-
- image -
-
-

Tu inventario en linea

-

Te ayudamos a organizar tu inventario, ponerlo en línea y a vender!.

-
-
-
-
- -
- -
- -
- -
- - - -
- -
- -
-
- - - -
-
- - - -
-
- -
- -
- - - -
- -
image
- -
- -
-
- -
-
-

Diseño moderno
y pensado para ti!

-

- Nuestra misión es que tengas una herramienta que te permita realizar tus ventas de forma rápida y segura y súper fácil de usar. -

-
-
    -
  • -

    Fácil Acceso

    -

    Solo tienes que poner tu email, teléfono, facebook o instagram, tu contraseña y ¡listo!.

    -
  • -
  • -

    Sincronice con su sistema en la computadora

    -

    Cuando estés en línea, todo se sincroniza en tu computadora, para que puedas acceder a tu negocio desde cualquier lugar.

    -
  • -
  • -

    Tu inventario a la mano

    -

    Tenemos la gestión de inventario para ti desde tu móvil o computadora, todo con un solo clic.

    -
  • -
-
-
-
- -
-
- image -
- -
- image - image - image -
-
-
-
- -
- -
- - - -
- -
image
- -
-
-
- -

Cómo funciona La Pieza.DO en 3 sencillos pasos

- -

Usar La Pieza.DO es súper fácil, solo sigue estos pasos.

-
-
- -
    - -
  • -
    -

    Descarga la app

    -
    - - - -
    -

    Descarga la App en Google Play o Play Store

    -
    -
    -

    01

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Registrate y crea una cuenta

    - Totalmente Gratis! -

    Inicia sesión en la aplicación o en tu computadora. Una cuenta para todos los dispositivos.

    -
    -
    -

    02

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Todo listo disfruta la app!

    - Si tienes alguna pregunta visita FAQs. -

    Obten la experiencia más increíble.
    Explora y comparte la app.

    -
    -
    -

    03

    -
    -
    - image -
    -
  • -
-
-
-
- -
- -
- -
image
- -
-
- -

FAQ - Preguntas Frecuentes

- -

Aqui tenemos todas las respuestas a tus preguntas con respecto al uso de La Pieza.DO. Aquí podrás encontrar respuestas rápidas para que puedas utilizar la aplicación.

-
- -
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-
- -
- - -
- -
-
- -
- -
-
-
-

Descargala grátis para Android y Apple

-

Descarga nuestra app y sácale provecho a tu negocio en línea. Registrate y descubre lo nuevo que tenemos para ti.

-
- -
-
- - -
-
- image - image -
-
-
- -
-
- -
- - - - -
- -
- image -
-
- - - - - -
- -
- - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/index.php b/desarrollo/diseno/registro-comercio/index.php deleted file mode 100644 index 17a19fe1..00000000 --- a/desarrollo/diseno/registro-comercio/index.php +++ /dev/null @@ -1,503 +0,0 @@ - - - - - - - - - La Pieza.DO | Todo lo que buscas! - - - - - - - - - - - - - - - - - - - - - -
- - -
-
-
- - - - - - - - - -
- -
image
- -
-
- - - - -
- -

Lo que hace de La Pieza.DO
una opción única!

- -

Maneja tu inventario, recibe pagos, factura y vende en linea
de la manera segura y efectiva.

-
- - -
-
-
-
-
- image -
-
-

Datos Seguros

-

Contamos con los estándares internacionales de seguridad y SSL.

-
-
-
- -
-
-
- image -
-
-

Automatización de Servicios

-

Simple para vender, simple para ganar, Todo automatizado.

-
-
-
- -
-
-
- image -
-
-

Inteligencia Artificial

-

Para conocer el comportamiento de compra de tus clientes y ofrecerles lo mejor.

-
-
-
- -
-
-
- image -
-
-

Tu inventario en linea

-

Te ayudamos a organizar tu inventario, ponerlo en línea y a vender!.

-
-
-
-
- -
- -
- -
- -
- - - -
- -
- -
-
- - - -
-
- - - -
-
- -
- -
- - - -
- -
image
- -
- -
-
- -
-
-

Diseño moderno
y pensado para ti!

-

- Nuestra misión es que tengas una herramienta que te permita realizar tus ventas de forma rápida y segura y súper fácil de usar. -

-
-
    -
  • -

    Fácil Acceso

    -

    Solo tienes que poner tu email, teléfono, facebook o instagram, tu contraseña y ¡listo!.

    -
  • -
  • -

    Sincronice con su sistema en la computadora

    -

    Cuando estés en línea, todo se sincroniza en tu computadora, para que puedas acceder a tu negocio desde cualquier lugar.

    -
  • -
  • -

    Tu inventario a la mano

    -

    Tenemos la gestión de inventario para ti desde tu móvil o computadora, todo con un solo clic.

    -
  • -
-
-
-
- -
-
- image -
- -
- image - image - image -
-
-
-
- -
- -
- - - -
- -
image
- -
-
-
- -

Cómo funciona La Pieza.DO en 3 sencillos pasos

- -

Usar La Pieza.DO es súper fácil, solo sigue estos pasos.

-
-
- -
    - -
  • -
    -

    Descarga la app

    -
    - - - -
    -

    Descarga la App en Google Play o Play Store

    -
    -
    -

    01

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Registrate y crea una cuenta

    - Totalmente Gratis! -

    Inicia sesión en la aplicación o en tu computadora. Una cuenta para todos los dispositivos.

    -
    -
    -

    02

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Todo listo disfruta la app!

    - Si tienes alguna pregunta visita FAQs. -

    Obten la experiencia más increíble.
    Explora y comparte la app.

    -
    -
    -

    03

    -
    -
    - image -
    -
  • -
-
-
-
- -
- -
- -
image
- -
-
- -

FAQ - Preguntas Frecuentes

- -

Aqui tenemos todas las respuestas a tus preguntas con respecto al uso de La Pieza.DO. Aquí podrás encontrar respuestas rápidas para que puedas utilizar la aplicación.

-
- -
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a galley of type and - scrambled it to make a type specimen book. It has survived not only five cen turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-
- -
- - -
- -
-
- -
- -
-
-
-

Descargala grátis para Android y Apple

-

Descarga nuestra app y sácale provecho a tu negocio en línea. Registrate y descubre lo nuevo que tenemos para ti.

-
- -
-
- - -
-
- image - image -
-
-
- -
-
- -
- - - - -
- -
- image -
-
- - - - - -
- -
- - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/js/aos.js b/desarrollo/diseno/registro-comercio/js/aos.js deleted file mode 100644 index 0ba1c7b6..00000000 --- a/desarrollo/diseno/registro-comercio/js/aos.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,x),(0,b.default)(w,x.once),w},O=function(){w=(0,h.default)(),j()},_=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},S=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},z=function(e){x=i(x,e),w=(0,h.default)();var t=document.all&&!window.atob;return S(x.disable)||t?_():(document.querySelector("body").setAttribute("data-aos-easing",x.easing),document.querySelector("body").setAttribute("data-aos-duration",x.duration),document.querySelector("body").setAttribute("data-aos-delay",x.delay),"DOMContentLoaded"===x.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?j(!0):"load"===x.startEvent?window.addEventListener(x.startEvent,function(){j(!0)}):document.addEventListener(x.startEvent,function(){j(!0)}),window.addEventListener("resize",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("orientationchange",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,x.once)},x.throttleDelay)),x.disableMutationObserver||(0,d.default)("[data-aos]",O),w)};e.exports={init:z,refresh:j,refreshHard:O}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),_?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,z&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(_=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(f);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return s;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f="Expected a function",s=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),_?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,z&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(_=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==s}function a(e){if("number"==typeof e)return e;if(r(e))return f;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",f=NaN,s="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e,t){var n=window.document,r=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,a=new r(o);i=t,a.observe(n.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}function o(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),n=Array.prototype.slice.call(e.removedNodes),o=t.concat(n).filter(function(e){return e.hasAttribute&&e.hasAttribute("data-aos")}).length;o&&i()})}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){};t.default=n},function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;ne.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])}); \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/js/bootstrap.min.js b/desarrollo/diseno/registro-comercio/js/bootstrap.min.js deleted file mode 100644 index 50720ead..00000000 --- a/desarrollo/diseno/registro-comercio/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v4.6.1 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var o=i(e),a=i(n);function s(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};d.jQueryDetection(),o.default.fn.emulateTransitionEnd=function(t){var e=this,n=!1;return o.default(this).one(d.TRANSITION_END,(function(){n=!0})),setTimeout((function(){n||d.triggerTransitionEnd(e)}),t),this},o.default.event.special[d.TRANSITION_END]={bindType:f,delegateType:f,handle:function(t){if(o.default(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var c="bs.alert",h=o.default.fn.alert,g=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){o.default.removeData(this._element,c),this._element=null},e._getRootElement=function(t){var e=d.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=o.default(t).closest(".alert")[0]),n},e._triggerCloseEvent=function(t){var e=o.default.Event("close.bs.alert");return o.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(o.default(t).removeClass("show"),o.default(t).hasClass("fade")){var n=d.getTransitionDurationFromElement(t);o.default(t).one(d.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){o.default(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(c);i||(i=new t(this),n.data(c,i)),"close"===e&&i[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',g._handleDismiss(new g)),o.default.fn.alert=g._jQueryInterface,o.default.fn.alert.Constructor=g,o.default.fn.alert.noConflict=function(){return o.default.fn.alert=h,g._jQueryInterface};var m="bs.button",p=o.default.fn.button,_="active",v='[data-toggle^="button"]',y='input:not([type="hidden"])',b=".btn",E=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=o.default(this._element).closest('[data-toggle="buttons"]')[0];if(n){var i=this._element.querySelector(y);if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains(_))t=!1;else{var a=n.querySelector(".active");a&&o.default(a).removeClass(_)}t&&("checkbox"!==i.type&&"radio"!==i.type||(i.checked=!this._element.classList.contains(_)),this.shouldAvoidTriggerChange||o.default(i).trigger("change")),i.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains(_)),t&&o.default(this._element).toggleClass(_))},e.dispose=function(){o.default.removeData(this._element,m),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var i=o.default(this),a=i.data(m);a||(a=new t(this),i.data(m,a)),a.shouldAvoidTriggerChange=n,"toggle"===e&&a[e]()}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.button.data-api",v,(function(t){var e=t.target,n=e;if(o.default(e).hasClass("btn")||(e=o.default(e).closest(b)[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var i=e.querySelector(y);if(i&&(i.hasAttribute("disabled")||i.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||E._jQueryInterface.call(o.default(e),"toggle","INPUT"===n.tagName)}})).on("focus.bs.button.data-api blur.bs.button.data-api",v,(function(t){var e=o.default(t.target).closest(b)[0];o.default(e).toggleClass("focus",/^focus(in)?$/.test(t.type))})),o.default(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide(N)},e.nextWhenVisible=function(){var t=o.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide(D)},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(d.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(I);var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)o.default(this._element).one(A,(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var i=t>n?N:D;this._slide(i,this._items[t])}},e.dispose=function(){o.default(this._element).off(".bs.carousel"),o.default.removeData(this._element,w),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=r({},k,t),d.typeCheckConfig(T,t,O),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&o.default(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&o.default(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){t._pointerEvent&&j[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};o.default(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(o.default(this._element).on("pointerdown.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("pointerup.bs.carousel",(function(t){return n(t)})),this._element.classList.add("pointer-event")):(o.default(this._element).on("touchstart.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("touchmove.bs.carousel",(function(e){return function(e){t.touchDeltaX=e.originalEvent.touches&&e.originalEvent.touches.length>1?0:e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),o.default(this._element).on("touchend.bs.carousel",(function(t){return n(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n=t===N,i=t===D,o=this._getItemIndex(e),a=this._items.length-1;if((i&&0===o||n&&o===a)&&!this._config.wrap)return e;var s=(o+(t===D?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(I)),a=o.default.Event("slide.bs.carousel",{relatedTarget:t,direction:e,from:i,to:n});return o.default(this._element).trigger(a),a},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));o.default(e).removeClass(S);var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&o.default(n).addClass(S)}},e._updateInterval=function(){var t=this._activeElement||this._element.querySelector(I);if(t){var e=parseInt(t.getAttribute("data-interval"),10);e?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=e):this._config.interval=this._config.defaultInterval||this._config.interval}},e._slide=function(t,e){var n,i,a,s=this,l=this._element.querySelector(I),r=this._getItemIndex(l),u=e||l&&this._getItemByDirection(t,l),f=this._getItemIndex(u),c=Boolean(this._interval);if(t===N?(n="carousel-item-left",i="carousel-item-next",a="left"):(n="carousel-item-right",i="carousel-item-prev",a="right"),u&&o.default(u).hasClass(S))this._isSliding=!1;else if(!this._triggerSlideEvent(u,a).isDefaultPrevented()&&l&&u){this._isSliding=!0,c&&this.pause(),this._setActiveIndicatorElement(u),this._activeElement=u;var h=o.default.Event(A,{relatedTarget:u,direction:a,from:r,to:f});if(o.default(this._element).hasClass("slide")){o.default(u).addClass(i),d.reflow(u),o.default(l).addClass(n),o.default(u).addClass(n);var g=d.getTransitionDurationFromElement(l);o.default(l).one(d.TRANSITION_END,(function(){o.default(u).removeClass(n+" "+i).addClass(S),o.default(l).removeClass("active "+i+" "+n),s._isSliding=!1,setTimeout((function(){return o.default(s._element).trigger(h)}),0)})).emulateTransitionEnd(g)}else o.default(l).removeClass(S),o.default(u).addClass(S),this._isSliding=!1,o.default(this._element).trigger(h);c&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(w),i=r({},k,o.default(this).data());"object"==typeof e&&(i=r({},i,e));var a="string"==typeof e?e:i.slide;if(n||(n=new t(this,i),o.default(this).data(w,n)),"number"==typeof e)n.to(e);else if("string"==typeof a){if("undefined"==typeof n[a])throw new TypeError('No method named "'+a+'"');n[a]()}else i.interval&&i.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=d.getSelectorFromElement(this);if(n){var i=o.default(n)[0];if(i&&o.default(i).hasClass("carousel")){var a=r({},o.default(i).data(),o.default(this).data()),s=this.getAttribute("data-slide-to");s&&(a.interval=!1),t._jQueryInterface.call(o.default(i),a),s&&o.default(i).data(w).to(s),e.preventDefault()}}},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return k}}]),t}();o.default(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",P._dataApiClickHandler),o.default(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),e=0,n=t.length;e0&&(this._selector=s,this._triggerArray.push(a))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){o.default(this._element).hasClass(q)?this.hide():this.show()},e.show=function(){var e,n,i=this;if(!(this._isTransitioning||o.default(this._element).hasClass(q)||(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof i._config.parent?t.getAttribute("data-parent")===i._config.parent:t.classList.contains(F)}))).length&&(e=null),e&&(n=o.default(e).not(this._selector).data(R))&&n._isTransitioning))){var a=o.default.Event("show.bs.collapse");if(o.default(this._element).trigger(a),!a.isDefaultPrevented()){e&&(t._jQueryInterface.call(o.default(e).not(this._selector),"hide"),n||o.default(e).data(R,null));var s=this._getDimension();o.default(this._element).removeClass(F).addClass(Q),this._element.style[s]=0,this._triggerArray.length&&o.default(this._triggerArray).removeClass(B).attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(s[0].toUpperCase()+s.slice(1)),r=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,(function(){o.default(i._element).removeClass(Q).addClass("collapse show"),i._element.style[s]="",i.setTransitioning(!1),o.default(i._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(r),this._element.style[s]=this._element[l]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&o.default(this._element).hasClass(q)){var e=o.default.Event("hide.bs.collapse");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",d.reflow(this._element),o.default(this._element).addClass(Q).removeClass("collapse show");var i=this._triggerArray.length;if(i>0)for(var a=0;a0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t._config.offset(e.offsets,t._element)),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),r({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data(K);if(n||(n=new t(this,"object"==typeof e?e:null),o.default(this).data(K,n)),"string"==typeof e){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=[].slice.call(document.querySelectorAll(it)),i=0,a=n.length;i0&&s--,40===e.which&&sdocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add(ht);var i=d.getTransitionDurationFromElement(this._dialog);o.default(this._element).off(d.TRANSITION_END),o.default(this._element).one(d.TRANSITION_END,(function(){t._element.classList.remove(ht),n||o.default(t._element).one(d.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,i)})).emulateTransitionEnd(i),this._element.focus()}},e._showElement=function(t){var e=this,n=o.default(this._element).hasClass(dt),i=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),o.default(this._dialog).hasClass("modal-dialog-scrollable")&&i?i.scrollTop=0:this._element.scrollTop=0,n&&d.reflow(this._element),o.default(this._element).addClass(ct),this._config.focus&&this._enforceFocus();var a=o.default.Event("shown.bs.modal",{relatedTarget:t}),s=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,o.default(e._element).trigger(a)};if(n){var l=d.getTransitionDurationFromElement(this._dialog);o.default(this._dialog).one(d.TRANSITION_END,s).emulateTransitionEnd(l)}else s()},e._enforceFocus=function(){var t=this;o.default(document).off(pt).on(pt,(function(e){document!==e.target&&t._element!==e.target&&0===o.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?o.default(this._element).on(yt,(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||o.default(this._element).off(yt)},e._setResizeEvent=function(){var t=this;this._isShown?o.default(window).on(_t,(function(e){return t.handleUpdate(e)})):o.default(window).off(_t)},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){o.default(document.body).removeClass(ft),t._resetAdjustments(),t._resetScrollbar(),o.default(t._element).trigger(gt)}))},e._removeBackdrop=function(){this._backdrop&&(o.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=o.default(this._element).hasClass(dt)?dt:"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",n&&this._backdrop.classList.add(n),o.default(this._backdrop).appendTo(document.body),o.default(this._element).on(vt,(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"===e._config.backdrop?e._triggerBackdropTransition():e.hide())})),n&&d.reflow(this._backdrop),o.default(this._backdrop).addClass(ct),!t)return;if(!n)return void t();var i=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){o.default(this._backdrop).removeClass(ct);var a=function(){e._removeBackdrop(),t&&t()};if(o.default(this._element).hasClass(dt)){var s=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",customClass:"",sanitize:!0,sanitizeFn:null,whiteList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Ut={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(number|string|function)",container:"(string|element|boolean)",fallbackPlacement:"(string|array)",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",whiteList:"object",popperConfig:"(null|object)"},Mt={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},Wt=function(){function t(t,e){if("undefined"==typeof a.default)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=o.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(o.default(this.getTipElement()).hasClass(Rt))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),o.default.removeData(this.element,this.constructor.DATA_KEY),o.default(this.element).off(this.constructor.EVENT_KEY),o.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&o.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===o.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=o.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){o.default(this.element).trigger(e);var n=d.findShadowRoot(this.element),i=o.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!i)return;var s=this.getTipElement(),l=d.getUID(this.constructor.NAME);s.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&o.default(s).addClass(Lt);var r="function"==typeof this.config.placement?this.config.placement.call(this,s,this.element):this.config.placement,u=this._getAttachment(r);this.addAttachmentClass(u);var f=this._getContainer();o.default(s).data(this.constructor.DATA_KEY,this),o.default.contains(this.element.ownerDocument.documentElement,this.tip)||o.default(s).appendTo(f),o.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new a.default(this.element,s,this._getPopperConfig(u)),o.default(s).addClass(Rt),o.default(s).addClass(this.config.customClass),"ontouchstart"in document.documentElement&&o.default(document.body).children().on("mouseover",null,o.default.noop);var c=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,o.default(t.element).trigger(t.constructor.Event.SHOWN),e===qt&&t._leave(null,t)};if(o.default(this.tip).hasClass(Lt)){var h=d.getTransitionDurationFromElement(this.tip);o.default(this.tip).one(d.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},e.hide=function(t){var e=this,n=this.getTipElement(),i=o.default.Event(this.constructor.Event.HIDE),a=function(){e._hoverState!==xt&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),o.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(o.default(this.element).trigger(i),!i.isDefaultPrevented()){if(o.default(n).removeClass(Rt),"ontouchstart"in document.documentElement&&o.default(document.body).children().off("mouseover",null,o.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,o.default(this.tip).hasClass(Lt)){var s=d.getTransitionDurationFromElement(n);o.default(n).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-tooltip-"+t)},e.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(o.default(t.querySelectorAll(".tooltip-inner")),this.getTitle()),o.default(t).removeClass("fade show")},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=At(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?o.default(e).parent().is(t)||t.empty().append(e):t.text(o.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return r({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t.config.offset(e.offsets,t.element)),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:d.isElement(this.config.container)?o.default(this.config.container):o.default(document).find(this.config.container)},e._getAttachment=function(t){return Bt[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)o.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==e){var n=e===Ft?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,i=e===Ft?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;o.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(i,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},o.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Qt:Ft]=!0),o.default(e.getTipElement()).hasClass(Rt)||e._hoverState===xt?e._hoverState=xt:(clearTimeout(e._timeout),e._hoverState=xt,e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){e._hoverState===xt&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Qt:Ft]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=qt,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){e._hoverState===qt&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=o.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Pt.indexOf(t)&&delete e[t]})),"number"==typeof(t=r({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d.typeCheckConfig(It,t,this.constructor.DefaultType),t.sanitize&&(t.template=At(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(jt);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(o.default(t).removeClass(Lt),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(kt),a="object"==typeof e&&e;if((i||!/dispose|hide/.test(e))&&(i||(i=new t(this,a),n.data(kt,i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Ht}},{key:"NAME",get:function(){return It}},{key:"DATA_KEY",get:function(){return kt}},{key:"Event",get:function(){return Mt}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return Ut}}]),t}();o.default.fn.tooltip=Wt._jQueryInterface,o.default.fn.tooltip.Constructor=Wt,o.default.fn.tooltip.noConflict=function(){return o.default.fn.tooltip=Ot,Wt._jQueryInterface};var Vt="bs.popover",zt=o.default.fn.popover,Kt=new RegExp("(^|\\s)bs-popover\\S+","g"),Xt=r({},Wt.Default,{placement:"right",trigger:"click",content:"",template:''}),Yt=r({},Wt.DefaultType,{content:"(string|element|function)"}),$t={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},Jt=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),e.prototype.constructor=e,u(e,n);var a=i.prototype;return a.isWithContent=function(){return this.getTitle()||this._getContent()},a.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-popover-"+t)},a.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},a.setContent=function(){var t=o.default(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(".popover-body"),e),t.removeClass("fade show")},a._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},a._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(Kt);null!==e&&e.length>0&&t.removeClass(e.join(""))},i._jQueryInterface=function(t){return this.each((function(){var e=o.default(this).data(Vt),n="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new i(this,n),o.default(this).data(Vt,e)),"string"==typeof t)){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}}))},l(i,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"Default",get:function(){return Xt}},{key:"NAME",get:function(){return"popover"}},{key:"DATA_KEY",get:function(){return Vt}},{key:"Event",get:function(){return $t}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return Yt}}]),i}(Wt);o.default.fn.popover=Jt._jQueryInterface,o.default.fn.popover.Constructor=Jt,o.default.fn.popover.noConflict=function(){return o.default.fn.popover=zt,Jt._jQueryInterface};var Gt="scrollspy",Zt="bs.scrollspy",te=o.default.fn[Gt],ee="active",ne="position",ie=".nav, .list-group",oe={offset:10,method:"auto",target:""},ae={offset:"number",method:"string",target:"(string|element)"},se=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,o.default(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?"offset":ne,n="auto"===this._config.method?e:this._config.method,i=n===ne?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,a=d.getSelectorFromElement(t);if(a&&(e=document.querySelector(a)),e){var s=e.getBoundingClientRect();if(s.width||s.height)return[o.default(e)[n]().top+i,a]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){o.default.removeData(this._element,Zt),o.default(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=r({},oe,"object"==typeof t&&t?t:{})).target&&d.isElement(t.target)){var e=o.default(t.target).attr("id");e||(e=d.getUID(Gt),o.default(t.target).attr("id",e)),t.target="#"+e}return d.typeCheckConfig(Gt,t,ae),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;)this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active",ge=function(){function t(t){this._element=t}var e=t.prototype;return e.show=function(){var t=this;if(!(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&o.default(this._element).hasClass(ue)||o.default(this._element).hasClass("disabled"))){var e,n,i=o.default(this._element).closest(".nav, .list-group")[0],a=d.getSelectorFromElement(this._element);if(i){var s="UL"===i.nodeName||"OL"===i.nodeName?he:ce;n=(n=o.default.makeArray(o.default(i).find(s)))[n.length-1]}var l=o.default.Event("hide.bs.tab",{relatedTarget:this._element}),r=o.default.Event("show.bs.tab",{relatedTarget:n});if(n&&o.default(n).trigger(l),o.default(this._element).trigger(r),!r.isDefaultPrevented()&&!l.isDefaultPrevented()){a&&(e=document.querySelector(a)),this._activate(this._element,i);var u=function(){var e=o.default.Event("hidden.bs.tab",{relatedTarget:t._element}),i=o.default.Event("shown.bs.tab",{relatedTarget:n});o.default(n).trigger(e),o.default(t._element).trigger(i)};e?this._activate(e,e.parentNode,u):u()}}},e.dispose=function(){o.default.removeData(this._element,le),this._element=null},e._activate=function(t,e,n){var i=this,a=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?o.default(e).children(ce):o.default(e).find(he))[0],s=n&&a&&o.default(a).hasClass(fe),l=function(){return i._transitionComplete(t,a,n)};if(a&&s){var r=d.getTransitionDurationFromElement(a);o.default(a).removeClass(de).one(d.TRANSITION_END,l).emulateTransitionEnd(r)}else l()},e._transitionComplete=function(t,e,n){if(e){o.default(e).removeClass(ue);var i=o.default(e.parentNode).find("> .dropdown-menu .active")[0];i&&o.default(i).removeClass(ue),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}o.default(t).addClass(ue),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),d.reflow(t),t.classList.contains(fe)&&t.classList.add(de);var a=t.parentNode;if(a&&"LI"===a.nodeName&&(a=a.parentNode),a&&o.default(a).hasClass("dropdown-menu")){var s=o.default(t).closest(".dropdown")[0];if(s){var l=[].slice.call(s.querySelectorAll(".dropdown-toggle"));o.default(l).addClass(ue)}t.setAttribute("aria-expanded",!0)}n&&n()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(le);if(i||(i=new t(this),n.data(le,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}}]),t}();o.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),ge._jQueryInterface.call(o.default(this),"show")})),o.default.fn.tab=ge._jQueryInterface,o.default.fn.tab.Constructor=ge,o.default.fn.tab.noConflict=function(){return o.default.fn.tab=re,ge._jQueryInterface};var me="bs.toast",pe=o.default.fn.toast,_e="hide",ve="show",ye="showing",be="click.dismiss.bs.toast",Ee={animation:!0,autohide:!0,delay:500},Te={animation:"boolean",autohide:"boolean",delay:"number"},we=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var e=t.prototype;return e.show=function(){var t=this,e=o.default.Event("show.bs.toast");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var n=function(){t._element.classList.remove(ye),t._element.classList.add(ve),o.default(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove(_e),d.reflow(this._element),this._element.classList.add(ye),this._config.animation){var i=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,n).emulateTransitionEnd(i)}else n()}},e.hide=function(){if(this._element.classList.contains(ve)){var t=o.default.Event("hide.bs.toast");o.default(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},e.dispose=function(){this._clearTimeout(),this._element.classList.contains(ve)&&this._element.classList.remove(ve),o.default(this._element).off(be),o.default.removeData(this._element,me),this._element=null,this._config=null},e._getConfig=function(t){return t=r({},Ee,o.default(this._element).data(),"object"==typeof t&&t?t:{}),d.typeCheckConfig("toast",t,this.constructor.DefaultType),t},e._setListeners=function(){var t=this;o.default(this._element).on(be,'[data-dismiss="toast"]',(function(){return t.hide()}))},e._close=function(){var t=this,e=function(){t._element.classList.add(_e),o.default(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove(ve),this._config.animation){var n=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},e._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data(me);if(i||(i=new t(this,"object"==typeof e&&e),n.data(me,i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e](this)}}))},l(t,null,[{key:"VERSION",get:function(){return"4.6.1"}},{key:"DefaultType",get:function(){return Te}},{key:"Default",get:function(){return Ee}}]),t}();o.default.fn.toast=we._jQueryInterface,o.default.fn.toast.Constructor=we,o.default.fn.toast.noConflict=function(){return o.default.fn.toast=pe,we._jQueryInterface},t.Alert=g,t.Button=E,t.Carousel=P,t.Collapse=V,t.Dropdown=lt,t.Modal=Ct,t.Popover=Jt,t.Scrollspy=se,t.Tab=ge,t.Toast=we,t.Tooltip=Wt,t.Util=d,Object.defineProperty(t,"__esModule",{value:!0})})); -//# sourceMappingURL=bootstrap.min.js.map \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/js/desktop.ini b/desarrollo/diseno/registro-comercio/js/desktop.ini deleted file mode 100644 index eab26fd7..00000000 Binary files a/desarrollo/diseno/registro-comercio/js/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-comercio/js/jquery.js b/desarrollo/diseno/registro-comercio/js/jquery.js deleted file mode 100644 index b0614034..00000000 --- a/desarrollo/diseno/registro-comercio/js/jquery.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0(a||v.height())},_setFocus:function(){(b.st.focus?b.content.find(b.st.focus).eq(0):b.wrap).focus()},_onFocusIn:function(c){return c.target===b.wrap[0]||a.contains(b.wrap[0],c.target)?void 0:(b._setFocus(),!1)},_parseMarkup:function(b,c,d){var e;d.data&&(c=a.extend(d.data,c)),y(l,[b,c,d]),a.each(c,function(c,d){if(void 0===d||d===!1)return!0;if(e=c.split("_"),e.length>1){var f=b.find(p+"-"+e[0]);if(f.length>0){var g=e[1];"replaceWith"===g?f[0]!==d[0]&&f.replaceWith(d):"img"===g?f.is("img")?f.attr("src",d):f.replaceWith(a("").attr("src",d).attr("class",f.attr("class"))):f.attr(e[1],d)}}else b.find(p+"-"+c).html(d)})},_getScrollbarSize:function(){if(void 0===b.scrollbarSize){var a=document.createElement("div");a.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(a),b.scrollbarSize=a.offsetWidth-a.clientWidth,document.body.removeChild(a)}return b.scrollbarSize}},a.magnificPopup={instance:null,proto:t.prototype,modules:[],open:function(b,c){return A(),b=b?a.extend(!0,{},b):{},b.isObj=!0,b.index=c||0,this.instance.open(b)},close:function(){return a.magnificPopup.instance&&a.magnificPopup.instance.close()},registerModule:function(b,c){c.options&&(a.magnificPopup.defaults[b]=c.options),a.extend(this.proto,c.proto),this.modules.push(b)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("
");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/js/main.js b/desarrollo/diseno/registro-comercio/js/main.js deleted file mode 100644 index 9f372360..00000000 --- a/desarrollo/diseno/registro-comercio/js/main.js +++ /dev/null @@ -1,353 +0,0 @@ -// Open Sub Menu -$('.drp_btn').click(function(){ - $(this).siblings('.sub_menu').slideToggle(); -}) - -// Preloader JS - -function preloader_fade() { - $("#preloader").fadeOut('slow'); -} - -$(document).ready(function() { - window.setTimeout("preloader_fade();", 500); //call fade in .5 seconds -} -) - - -// All Slider Js - -$('#frmae_slider').owlCarousel({ - loop:true, - margin:10, - autoplay: true, - smartSpeed: 1500, - nav:false, - dots: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:1 - }, - 1000:{ - items:1 - } - } -}) - -$('#company_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - autoplay: true, - smartSpeed: 1500, - dots: true, - responsive:{ - 0:{ - items:2 - }, - 600:{ - items:3 - }, - 1000:{ - items:5 - } - } -}) - - -$('#testimonial_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - autoplay: true, - smartSpeed: 2500, - dots: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:1 - }, - 1000:{ - items:1 - } - } -}) - - -$('#screen_slider').owlCarousel({ - loop:true, - margin:10, - nav:false, - dots: true, - autoplay: true, - smartSpeed: 2500, - center: true, - responsive:{ - 0:{ - items:1 - }, - 600:{ - items:3 - }, - 1000:{ - items:5 - } - } -}) - - -// Number Count -window.addEventListener('scroll', function() { - var element = document.querySelector('#counter'); - var position = element.getBoundingClientRect(); - - // checking whether fully visible - if(position.top >= 0 && position.bottom <= window.innerHeight) { - $('.counter-value').each(function() { - var $this = $(this), - countTo = $this.attr('data-count'); - $({ - countNum: $this.text() - }).animate({ - countNum: countTo - }, - - { - - duration: 2000, - easing: 'swing', - step: function() { - $this.text(Math.floor(this.countNum)); - }, - complete: function() { - $this.text(this.countNum); - //alert('finished'); - } - - }); - }); - } - - if(position.top < window.innerHeight && position.bottom >= 0) { - //console.log('Element is partially visible in screen'); - }else{ - //console.log('Element is not visible'); - $('.counter-value').each(function() { - var $this = $(this), - countTo = 0; - $({ - countNum: $this.text() - }).animate({ - countNum: countTo - }, - - { - - duration: 100, - easing: 'swing', - step: function() { - $this.text(Math.floor(this.countNum)); - }, - complete: function() { - $this.text(this.countNum); - //alert('finished'); - } - - }); - }); - } -}); - - - -// --------Magnify-popup - -$(function() { - $('.popup-youtube').magnificPopup({ - disableOn: 700, - type: 'iframe', - mainClass: 'mfp-fade', - removalDelay: 160, - preloader: false, - fixedContentPos: false - }); -}); - - -// Pricing Section Year Month Jquery -$(document).ready(function () { - - $(".tog_block").click(function () { - $(".tog_btn").toggleClass('month_active'); - $('.month').toggleClass('active'); - $('.years').toggleClass('active'); - - $('.monthly_plan').toggleClass('active'); - $('.yearly_plan').toggleClass('active'); - - }) - - }); - - $(document).ready(function () { - // Add minus icon for collapse element which is open by default - $(".collapse.show").each(function () { - $(this) - .prev(".card-header") - .find(".icon_faq") - .addClass("icofont-minus") - .removeClass("icofont-plus"); - }); - - - // Toggle plus minus icon on show hide of collapse element - $(".collapse").on("show.bs.collapse", function () { - $(this).prev(".card-header").find(".icon_faq").removeClass("icofont-plus").addClass("icofont-minus"); - }) - .on("hide.bs.collapse", function () { - $(this).prev(".card-header").find(".icon_faq").removeClass("icofont-minus").addClass("icofont-plus"); - }); - - $(".collapse").on("show.bs.collapse", function () { - $(this).prev(".card-header").children('h2').children('.btn').addClass("active"); - }) - .on("hide.bs.collapse", function () { - $(this).prev(".card-header").children('h2').children('.btn').removeClass("active"); - }); - }); - - -// Download Section Hover Jquery -window.addEventListener('scroll', function() { - var element = document.querySelector('.free_text'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } -}); - -$(window).on('resize', function() { - if ($(window).width()<768) { - - window.addEventListener('scroll', function() { - var element = document.querySelector('.mobile_mockup'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } - }); - - } - else { - - window.addEventListener('scroll', function() { - var element = document.querySelector('.free_text'); - var position = element.getBoundingClientRect(); - - if(position.top < window.innerHeight && position.bottom >= 0) { - $('.purple_backdrop').css("opacity", "1"); - }else{ - //console.log('Element is not visible'); - $('.purple_backdrop').css("opacity", "0"); - } - }); - - } -}); - - -// Scrool-top -$(document).ready(function() { - var toTop = $('.go_top'); - toTop.on('click', function() { - $('html, body').animate({scrollTop: $('html, body').offset().top,}, 400); - }); - - $(window).scroll(function() { - // declare variable - var topPos = $(this).scrollTop(); - - // if user scrolls down - show scroll to top button - if (topPos > 750) { - $(toTop).css("opacity", "1"); - - } else { - $(toTop).css("opacity", "0"); - } - - }); - -}); - -// Fix Header Js -$(window).scroll(function(){ - if ($(window).scrollTop() >= 250) { - $('header').addClass('fix_style'); - } - else { - $('header').removeClass('fix_style'); - } - if ($(window).scrollTop() >= 260) { - $('header').addClass('fixed'); - } - else { - $('header').removeClass('fixed'); - } -}); - - - - -//YOUTUBE VIDEO -$('.play-button').click(function(e){ - var iframeEl = $(''),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1, -animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('
'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['',''],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("
").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a(' - -
-
-
- - - - - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/business-billing.php b/desarrollo/diseno/registro-comercio/registro-form/business-billing.php deleted file mode 100644 index 0ef0b535..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/business-billing.php +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Dirección de Facturación

-

Escribe los detalles de facturación de tu negocio, también puedes elegir tu ubicación en el mapa!

- -
-
-
-
-
- -
- - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/business-payments.php b/desarrollo/diseno/registro-comercio/registro-form/business-payments.php deleted file mode 100644 index 97791279..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/business-payments.php +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de Pago

-

Escribe los datos de la cuenta de banco donde deseas recibir tus fondos luego de hacer una venta!

- -
-
-
-
-
- -
- - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/email-verification.php b/desarrollo/diseno/registro-comercio/registro-form/email-verification.php deleted file mode 100644 index f7f47d2a..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/email-verification.php +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Verificación de correo electrónico

-

Por favor verifica tu dirección de correo electrónico [email protected]
y coloca el código de verificación aqui!

- -

No lo has recibido aún? Reenviar código

-
-
-
-
-
- -
- - - - - - - - - - - - - - -
- - - diff --git a/desarrollo/diseno/registro-comercio/registro-form/personal-account.php b/desarrollo/diseno/registro-comercio/registro-form/personal-account.php deleted file mode 100644 index 8c9da215..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/personal-account.php +++ /dev/null @@ -1,278 +0,0 @@ - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de la cuenta personal

-

Escribe tus informaciones y una contraseña segura para registrar su tienda.

- -
- -
-
-
- -
- - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/personal-billing.php b/desarrollo/diseno/registro-comercio/registro-form/personal-billing.php deleted file mode 100644 index b57c26cf..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/personal-billing.php +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Dirección de Facturación

-

Escribe los detalles de facturación de tu negocio, también puedes elegir tu ubicación en el mapa!

- -
-
-
-
-
- -
- - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/personal-payments.php b/desarrollo/diseno/registro-comercio/registro-form/personal-payments.php deleted file mode 100644 index 4cc3a7c0..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/personal-payments.php +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de Pago

-

Escribe los datos de la cuenta de banco donde deseas recibir tus fondos luego de hacer una venta!

- -
-
-
-
-
- -
- - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/personal-shop.php b/desarrollo/diseno/registro-comercio/registro-form/personal-shop.php deleted file mode 100644 index 23c22848..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/personal-shop.php +++ /dev/null @@ -1,189 +0,0 @@ - - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de la tienda

- - -
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - diff --git a/desarrollo/diseno/registro-comercio/registro-form/personal.php b/desarrollo/diseno/registro-comercio/registro-form/personal.php deleted file mode 100644 index 200dbaec..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/personal.php +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de la cuenta personal

-

Escribe tus informaciones y una contraseña segura para continuar al siguiente paso.

- -
-
-
-
- -
- - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/register.php b/desarrollo/diseno/registro-comercio/registro-form/register.php deleted file mode 100644 index ae491a12..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/register.php +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-

Vamos! Únete a nuestra plataforma

-

Introduce un correo electrónico válido para completar algunos sencillos pasos
para registrar tu cuenta.

- -
-
-
-
-
-
-

Ya tienes una cuenta?  Entra aqui!

-
-
-
- - -
-
- - - - - - - - - - - - - -
- - \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/signup-complete.php b/desarrollo/diseno/registro-comercio/registro-form/signup-complete.php deleted file mode 100644 index c8cc8746..00000000 --- a/desarrollo/diseno/registro-comercio/registro-form/signup-complete.php +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-

Tu Registro fue Completado!

-

Bienvenido a La Pieza.DO, en breve nuestro departamento de servicios te enviara un email con todos los detalles de tu cuenta y la confirmación de tu registro.

- Finalizar -
-
- - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-form/assets/css/bootstrap.min.css b/desarrollo/diseno/registro-form/assets/css/bootstrap.min.css deleted file mode 100644 index 1c835fd6..00000000 --- a/desarrollo/diseno/registro-form/assets/css/bootstrap.min.css +++ /dev/null @@ -1,121 +0,0 @@ -@charset "UTF-8";/*! - * Bootstrap v5.3.0-alpha3 (https://getbootstrap.com/) - * Copyright 2011-2023 The Bootstrap Authors - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} - */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#adb5bd;--bs-body-color-rgb:173,181,189;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(173, 181, 189, 0.75);--bs-secondary-color-rgb:173,181,189;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(173, 181, 189, 0.5);--bs-tertiary-color-rgb:173,181,189;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color,inherit)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(0, 0, 0, 0.12);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#bacbe6;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#cbccce;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#bcd0c7;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#badce3;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#e6dbb9;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#dfc2c4;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#dfe0e1;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#373b3e;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-tertiary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-moz-placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control-plaintext~label::after,.form-floating>.form-control:focus~label::after,.form-floating>.form-control:not(:placeholder-shown)~label::after,.form-floating>.form-select~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>.form-control:-webkit-autofill~label{color:rgba(var(--bs-body-color-rgb),.65);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>:disabled~label{color:#6c757d}.form-floating>:disabled~label::after{background-color:var(--bs-secondary-bg)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(var(--bs-border-width) * -1);border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(var(--bs-border-width) * -1)}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#86b7fe;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(var(--bs-border-width) * -1)}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;--bs-btn-close-white-filter:invert(1) grayscale(100%) brightness(200%);box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{filter:var(--bs-btn-close-white-filter)}[data-bs-theme=dark] .btn-close{filter:var(--bs-btn-close-white-filter)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}[data-bs-theme=dark] .carousel .carousel-control-next-icon,[data-bs-theme=dark] .carousel .carousel-control-prev-icon,[data-bs-theme=dark].carousel .carousel-control-next-icon,[data-bs-theme=dark].carousel .carousel-control-prev-icon{filter:invert(1) grayscale(100)}[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target]{background-color:#000}[data-bs-theme=dark] .carousel .carousel-caption,[data-bs-theme=dark].carousel .carousel-caption{color:#000}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:575.98px){.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}}@media (max-width:575.98px){.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:767.98px){.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:767.98px){.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}}@media (max-width:767.98px){.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:991.98px){.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}}@media (max-width:991.98px){.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1199.98px){.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}}@media (max-width:1199.98px){.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}}@media (max-width:1399.98px){.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}}@media (max-width:1399.98px){.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(13,110,253,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(108,117,125,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(25,135,84,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(13,202,240,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(220,53,69,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(248,249,250,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(33,37,41,var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))}.link-secondary{color:RGBA(var(--bs-secondary-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))}.link-success{color:RGBA(var(--bs-success-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))}.link-info{color:RGBA(var(--bs-info-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))}.link-warning{color:RGBA(var(--bs-warning-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))}.link-danger{color:RGBA(var(--bs-danger-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))}.link-light{color:RGBA(var(--bs-light-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))}.link-dark{color:RGBA(var(--bs-dark-rgb,var(--bs-link-opacity,1)));-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75));-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75));text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ - - -/*-- custom css start --*/ -.justify-end{ - justify-content: flex-end !important; -} -.relative{ - position: relative; -} -.container-fluid, .container-lg, .container-md, .container-sm, .container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto; -} -.row{ - margin-left: -15px !important; - margin-right: -15px !important; - } -.col-xxl-1, -.col-xxl-2, -.col-xxl-3, -.col-xxl-4, -.col-xxl-5, -.col-xxl-6, -.col-xxl-7, -.col-xxl-8, -.col-xxl-9, -.col-xxl-10, -.col-xxl-11, -.col-xxl-12, -.col-xl-1, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-lg-1, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-md-1, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-10, -.col-md-11, -.col-md-12, -.col-sm-1, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-1, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-10, -.col-11, -.col-12{ - padding-left: 15px !important; - padding-right: 15px !important; -} - - -.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}} - -.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}} - -@media only screen and (max-width: 575px) { - .row{ - margin-left: 0px !important; - margin-right: 0px !important; - } - .p-sm-0{ - padding: 0px !important; - } -} -/*-- custom css End --*/ \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/assets/css/desktop.ini b/desarrollo/diseno/registro-form/assets/css/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-form/assets/css/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/css/line-awesome.min.css b/desarrollo/diseno/registro-form/assets/css/line-awesome.min.css deleted file mode 100644 index 5636d52c..00000000 --- a/desarrollo/diseno/registro-form/assets/css/line-awesome.min.css +++ /dev/null @@ -1 +0,0 @@ -.la,.lab,.lad,.lal,.lar,.las{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.la-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.la-xs{font-size:.75em}.la-sm{font-size:.875em}.la-1x{font-size:1em}.la-2x{font-size:2em}.la-3x{font-size:3em}.la-4x{font-size:4em}.la-5x{font-size:5em}.la-6x{font-size:6em}.la-7x{font-size:7em}.la-8x{font-size:8em}.la-9x{font-size:9em}.la-10x{font-size:10em}.la-fw{text-align:center;width:1.25em}.la-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.la-ul>li{position:relative}.la-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.la-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.la-pull-left{float:left}.la-pull-right{float:right}.la.la-pull-left,.lab.la-pull-left,.lal.la-pull-left,.lar.la-pull-left,.las.la-pull-left{margin-right:.3em}.la.la-pull-right,.lab.la-pull-right,.lal.la-pull-right,.lar.la-pull-right,.las.la-pull-right{margin-left:.3em}.la-spin{-webkit-animation:la-spin 2s infinite linear;animation:la-spin 2s infinite linear}.la-pulse{-webkit-animation:la-spin 1s infinite steps(8);animation:la-spin 1s infinite steps(8)}@-webkit-keyframes la-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes la-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.la-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.la-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.la-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.la-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.la-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.la-flip-both,.la-flip-horizontal.la-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .la-flip-both,:root .la-flip-horizontal,:root .la-flip-vertical,:root .la-rotate-180,:root .la-rotate-270,:root .la-rotate-90{-webkit-filter:none;filter:none}.la-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.la-stack-1x,.la-stack-2x{left:0;position:absolute;text-align:center;width:100%}.la-stack-1x{line-height:inherit}.la-stack-2x{font-size:2em}.la-inverse{color:#fff}.la-500px:before{content:"\f26e"}.la-accessible-icon:before{content:"\f368"}.la-accusoft:before{content:"\f369"}.la-acquisitions-incorporated:before{content:"\f6af"}.la-ad:before{content:"\f641"}.la-address-book:before{content:"\f2b9"}.la-address-card:before{content:"\f2bb"}.la-adjust:before{content:"\f042"}.la-adn:before{content:"\f170"}.la-adobe:before{content:"\f778"}.la-adversal:before{content:"\f36a"}.la-affiliatetheme:before{content:"\f36b"}.la-air-freshener:before{content:"\f5d0"}.la-airbnb:before{content:"\f834"}.la-algolia:before{content:"\f36c"}.la-align-center:before{content:"\f037"}.la-align-justify:before{content:"\f039"}.la-align-left:before{content:"\f036"}.la-align-right:before{content:"\f038"}.la-alipay:before{content:"\f642"}.la-allergies:before{content:"\f461"}.la-amazon:before{content:"\f270"}.la-amazon-pay:before{content:"\f42c"}.la-ambulance:before{content:"\f0f9"}.la-american-sign-language-interpreting:before{content:"\f2a3"}.la-amilia:before{content:"\f36d"}.la-anchor:before{content:"\f13d"}.la-android:before{content:"\f17b"}.la-angellist:before{content:"\f209"}.la-angle-double-down:before{content:"\f103"}.la-angle-double-left:before{content:"\f100"}.la-angle-double-right:before{content:"\f101"}.la-angle-double-up:before{content:"\f102"}.la-angle-down:before{content:"\f107"}.la-angle-left:before{content:"\f104"}.la-angle-right:before{content:"\f105"}.la-angle-up:before{content:"\f106"}.la-angry:before{content:"\f556"}.la-angrycreative:before{content:"\f36e"}.la-angular:before{content:"\f420"}.la-ankh:before{content:"\f644"}.la-app-store:before{content:"\f36f"}.la-app-store-ios:before{content:"\f370"}.la-apper:before{content:"\f371"}.la-apple:before{content:"\f179"}.la-apple-alt:before{content:"\f5d1"}.la-apple-pay:before{content:"\f415"}.la-archive:before{content:"\f187"}.la-archway:before{content:"\f557"}.la-arrow-alt-circle-down:before{content:"\f358"}.la-arrow-alt-circle-left:before{content:"\f359"}.la-arrow-alt-circle-right:before{content:"\f35a"}.la-arrow-alt-circle-up:before{content:"\f35b"}.la-arrow-circle-down:before{content:"\f0ab"}.la-arrow-circle-left:before{content:"\f0a8"}.la-arrow-circle-right:before{content:"\f0a9"}.la-arrow-circle-up:before{content:"\f0aa"}.la-arrow-down:before{content:"\f063"}.la-arrow-left:before{content:"\f060"}.la-arrow-right:before{content:"\f061"}.la-arrow-up:before{content:"\f062"}.la-arrows-alt:before{content:"\f0b2"}.la-arrows-alt-h:before{content:"\f337"}.la-arrows-alt-v:before{content:"\f338"}.la-artstation:before{content:"\f77a"}.la-assistive-listening-systems:before{content:"\f2a2"}.la-asterisk:before{content:"\f069"}.la-asymmetrik:before{content:"\f372"}.la-at:before{content:"\f1fa"}.la-atlas:before{content:"\f558"}.la-atlassian:before{content:"\f77b"}.la-atom:before{content:"\f5d2"}.la-audible:before{content:"\f373"}.la-audio-description:before{content:"\f29e"}.la-autoprefixer:before{content:"\f41c"}.la-avianex:before{content:"\f374"}.la-aviato:before{content:"\f421"}.la-award:before{content:"\f559"}.la-aws:before{content:"\f375"}.la-baby:before{content:"\f77c"}.la-baby-carriage:before{content:"\f77d"}.la-backspace:before{content:"\f55a"}.la-backward:before{content:"\f04a"}.la-bacon:before{content:"\f7e5"}.la-balance-scale:before{content:"\f24e"}.la-balance-scale-left:before{content:"\f515"}.la-balance-scale-right:before{content:"\f516"}.la-ban:before{content:"\f05e"}.la-band-aid:before{content:"\f462"}.la-bandcamp:before{content:"\f2d5"}.la-barcode:before{content:"\f02a"}.la-bars:before{content:"\f0c9"}.la-baseball-ball:before{content:"\f433"}.la-basketball-ball:before{content:"\f434"}.la-bath:before{content:"\f2cd"}.la-battery-empty:before{content:"\f244"}.la-battery-full:before{content:"\f240"}.la-battery-half:before{content:"\f242"}.la-battery-quarter:before{content:"\f243"}.la-battery-three-quarters:before{content:"\f241"}.la-battle-net:before{content:"\f835"}.la-bed:before{content:"\f236"}.la-beer:before{content:"\f0fc"}.la-behance:before{content:"\f1b4"}.la-behance-square:before{content:"\f1b5"}.la-bell:before{content:"\f0f3"}.la-bell-slash:before{content:"\f1f6"}.la-bezier-curve:before{content:"\f55b"}.la-bible:before{content:"\f647"}.la-bicycle:before{content:"\f206"}.la-biking:before{content:"\f84a"}.la-bimobject:before{content:"\f378"}.la-binoculars:before{content:"\f1e5"}.la-biohazard:before{content:"\f780"}.la-birthday-cake:before{content:"\f1fd"}.la-bitbucket:before{content:"\f171"}.la-bitcoin:before{content:"\f379"}.la-bity:before{content:"\f37a"}.la-black-tie:before{content:"\f27e"}.la-blackberry:before{content:"\f37b"}.la-blender:before{content:"\f517"}.la-blender-phone:before{content:"\f6b6"}.la-blind:before{content:"\f29d"}.la-blog:before{content:"\f781"}.la-blogger:before{content:"\f37c"}.la-blogger-b:before{content:"\f37d"}.la-bluetooth:before{content:"\f293"}.la-bluetooth-b:before{content:"\f294"}.la-bold:before{content:"\f032"}.la-bolt:before{content:"\f0e7"}.la-bomb:before{content:"\f1e2"}.la-bone:before{content:"\f5d7"}.la-bong:before{content:"\f55c"}.la-book:before{content:"\f02d"}.la-book-dead:before{content:"\f6b7"}.la-book-medical:before{content:"\f7e6"}.la-book-open:before{content:"\f518"}.la-book-reader:before{content:"\f5da"}.la-bookmark:before{content:"\f02e"}.la-bootstrap:before{content:"\f836"}.la-border-all:before{content:"\f84c"}.la-border-none:before{content:"\f850"}.la-border-style:before{content:"\f853"}.la-bowling-ball:before{content:"\f436"}.la-box:before{content:"\f466"}.la-box-open:before{content:"\f49e"}.la-boxes:before{content:"\f468"}.la-braille:before{content:"\f2a1"}.la-brain:before{content:"\f5dc"}.la-bread-slice:before{content:"\f7ec"}.la-briefcase:before{content:"\f0b1"}.la-briefcase-medical:before{content:"\f469"}.la-broadcast-tower:before{content:"\f519"}.la-broom:before{content:"\f51a"}.la-brush:before{content:"\f55d"}.la-btc:before{content:"\f15a"}.la-buffer:before{content:"\f837"}.la-bug:before{content:"\f188"}.la-building:before{content:"\f1ad"}.la-bullhorn:before{content:"\f0a1"}.la-bullseye:before{content:"\f140"}.la-burn:before{content:"\f46a"}.la-buromobelexperte:before{content:"\f37f"}.la-bus:before{content:"\f207"}.la-bus-alt:before{content:"\f55e"}.la-business-time:before{content:"\f64a"}.la-buy-n-large:before{content:"\f8a6"}.la-buysellads:before{content:"\f20d"}.la-calculator:before{content:"\f1ec"}.la-calendar:before{content:"\f133"}.la-calendar-alt:before{content:"\f073"}.la-calendar-check:before{content:"\f274"}.la-calendar-day:before{content:"\f783"}.la-calendar-minus:before{content:"\f272"}.la-calendar-plus:before{content:"\f271"}.la-calendar-times:before{content:"\f273"}.la-calendar-week:before{content:"\f784"}.la-camera:before{content:"\f030"}.la-camera-retro:before{content:"\f083"}.la-campground:before{content:"\f6bb"}.la-canadian-maple-leaf:before{content:"\f785"}.la-candy-cane:before{content:"\f786"}.la-cannabis:before{content:"\f55f"}.la-capsules:before{content:"\f46b"}.la-car:before{content:"\f1b9"}.la-car-alt:before{content:"\f5de"}.la-car-battery:before{content:"\f5df"}.la-car-crash:before{content:"\f5e1"}.la-car-side:before{content:"\f5e4"}.la-caret-down:before{content:"\f0d7"}.la-caret-left:before{content:"\f0d9"}.la-caret-right:before{content:"\f0da"}.la-caret-square-down:before{content:"\f150"}.la-caret-square-left:before{content:"\f191"}.la-caret-square-right:before{content:"\f152"}.la-caret-square-up:before{content:"\f151"}.la-caret-up:before{content:"\f0d8"}.la-carrot:before{content:"\f787"}.la-cart-arrow-down:before{content:"\f218"}.la-cart-plus:before{content:"\f217"}.la-cash-register:before{content:"\f788"}.la-cat:before{content:"\f6be"}.la-cc-amazon-pay:before{content:"\f42d"}.la-cc-amex:before{content:"\f1f3"}.la-cc-apple-pay:before{content:"\f416"}.la-cc-diners-club:before{content:"\f24c"}.la-cc-discover:before{content:"\f1f2"}.la-cc-jcb:before{content:"\f24b"}.la-cc-mastercard:before{content:"\f1f1"}.la-cc-paypal:before{content:"\f1f4"}.la-cc-stripe:before{content:"\f1f5"}.la-cc-visa:before{content:"\f1f0"}.la-centercode:before{content:"\f380"}.la-centos:before{content:"\f789"}.la-certificate:before{content:"\f0a3"}.la-chair:before{content:"\f6c0"}.la-chalkboard:before{content:"\f51b"}.la-chalkboard-teacher:before{content:"\f51c"}.la-charging-station:before{content:"\f5e7"}.la-chart-area:before{content:"\f1fe"}.la-chart-bar:before{content:"\f080"}.la-chart-line:before{content:"\f201"}.la-chart-pie:before{content:"\f200"}.la-check:before{content:"\f00c"}.la-check-circle:before{content:"\f058"}.la-check-double:before{content:"\f560"}.la-check-square:before{content:"\f14a"}.la-cheese:before{content:"\f7ef"}.la-chess:before{content:"\f439"}.la-chess-bishop:before{content:"\f43a"}.la-chess-board:before{content:"\f43c"}.la-chess-king:before{content:"\f43f"}.la-chess-knight:before{content:"\f441"}.la-chess-pawn:before{content:"\f443"}.la-chess-queen:before{content:"\f445"}.la-chess-rook:before{content:"\f447"}.la-chevron-circle-down:before{content:"\f13a"}.la-chevron-circle-left:before{content:"\f137"}.la-chevron-circle-right:before{content:"\f138"}.la-chevron-circle-up:before{content:"\f139"}.la-chevron-down:before{content:"\f078"}.la-chevron-left:before{content:"\f053"}.la-chevron-right:before{content:"\f054"}.la-chevron-up:before{content:"\f077"}.la-child:before{content:"\f1ae"}.la-chrome:before{content:"\f268"}.la-chromecast:before{content:"\f838"}.la-church:before{content:"\f51d"}.la-circle:before{content:"\f111"}.la-circle-notch:before{content:"\f1ce"}.la-city:before{content:"\f64f"}.la-clinic-medical:before{content:"\f7f2"}.la-clipboard:before{content:"\f328"}.la-clipboard-check:before{content:"\f46c"}.la-clipboard-list:before{content:"\f46d"}.la-clock:before{content:"\f017"}.la-clone:before{content:"\f24d"}.la-closed-captioning:before{content:"\f20a"}.la-cloud:before{content:"\f0c2"}.la-cloud-download-alt:before{content:"\f381"}.la-cloud-meatball:before{content:"\f73b"}.la-cloud-moon:before{content:"\f6c3"}.la-cloud-moon-rain:before{content:"\f73c"}.la-cloud-rain:before{content:"\f73d"}.la-cloud-showers-heavy:before{content:"\f740"}.la-cloud-sun:before{content:"\f6c4"}.la-cloud-sun-rain:before{content:"\f743"}.la-cloud-upload-alt:before{content:"\f382"}.la-cloudscale:before{content:"\f383"}.la-cloudsmith:before{content:"\f384"}.la-cloudversify:before{content:"\f385"}.la-cocktail:before{content:"\f561"}.la-code:before{content:"\f121"}.la-code-branch:before{content:"\f126"}.la-codepen:before{content:"\f1cb"}.la-codiepie:before{content:"\f284"}.la-coffee:before{content:"\f0f4"}.la-cog:before{content:"\f013"}.la-cogs:before{content:"\f085"}.la-coins:before{content:"\f51e"}.la-columns:before{content:"\f0db"}.la-comment:before{content:"\f075"}.la-comment-alt:before{content:"\f27a"}.la-comment-dollar:before{content:"\f651"}.la-comment-dots:before{content:"\f4ad"}.la-comment-medical:before{content:"\f7f5"}.la-comment-slash:before{content:"\f4b3"}.la-comments:before{content:"\f086"}.la-comments-dollar:before{content:"\f653"}.la-compact-disc:before{content:"\f51f"}.la-compass:before{content:"\f14e"}.la-compress:before{content:"\f066"}.la-compress-arrows-alt:before{content:"\f78c"}.la-concierge-bell:before{content:"\f562"}.la-confluence:before{content:"\f78d"}.la-connectdevelop:before{content:"\f20e"}.la-contao:before{content:"\f26d"}.la-cookie:before{content:"\f563"}.la-cookie-bite:before{content:"\f564"}.la-copy:before{content:"\f0c5"}.la-copyright:before{content:"\f1f9"}.la-cotton-bureau:before{content:"\f89e"}.la-couch:before{content:"\f4b8"}.la-cpanel:before{content:"\f388"}.la-creative-commons:before{content:"\f25e"}.la-creative-commons-by:before{content:"\f4e7"}.la-creative-commons-nc:before{content:"\f4e8"}.la-creative-commons-nc-eu:before{content:"\f4e9"}.la-creative-commons-nc-jp:before{content:"\f4ea"}.la-creative-commons-nd:before{content:"\f4eb"}.la-creative-commons-pd:before{content:"\f4ec"}.la-creative-commons-pd-alt:before{content:"\f4ed"}.la-creative-commons-remix:before{content:"\f4ee"}.la-creative-commons-sa:before{content:"\f4ef"}.la-creative-commons-sampling:before{content:"\f4f0"}.la-creative-commons-sampling-plus:before{content:"\f4f1"}.la-creative-commons-share:before{content:"\f4f2"}.la-creative-commons-zero:before{content:"\f4f3"}.la-credit-card:before{content:"\f09d"}.la-critical-role:before{content:"\f6c9"}.la-crop:before{content:"\f125"}.la-crop-alt:before{content:"\f565"}.la-cross:before{content:"\f654"}.la-crosshairs:before{content:"\f05b"}.la-crow:before{content:"\f520"}.la-crown:before{content:"\f521"}.la-crutch:before{content:"\f7f7"}.la-css3:before{content:"\f13c"}.la-css3-alt:before{content:"\f38b"}.la-cube:before{content:"\f1b2"}.la-cubes:before{content:"\f1b3"}.la-cut:before{content:"\f0c4"}.la-cuttlefish:before{content:"\f38c"}.la-d-and-d:before{content:"\f38d"}.la-d-and-d-beyond:before{content:"\f6ca"}.la-dashcube:before{content:"\f210"}.la-database:before{content:"\f1c0"}.la-deaf:before{content:"\f2a4"}.la-delicious:before{content:"\f1a5"}.la-democrat:before{content:"\f747"}.la-deploydog:before{content:"\f38e"}.la-deskpro:before{content:"\f38f"}.la-desktop:before{content:"\f108"}.la-dev:before{content:"\f6cc"}.la-deviantart:before{content:"\f1bd"}.la-dharmachakra:before{content:"\f655"}.la-dhl:before{content:"\f790"}.la-diagnoses:before{content:"\f470"}.la-diaspora:before{content:"\f791"}.la-dice:before{content:"\f522"}.la-dice-d20:before{content:"\f6cf"}.la-dice-d6:before{content:"\f6d1"}.la-dice-five:before{content:"\f523"}.la-dice-four:before{content:"\f524"}.la-dice-one:before{content:"\f525"}.la-dice-six:before{content:"\f526"}.la-dice-three:before{content:"\f527"}.la-dice-two:before{content:"\f528"}.la-digg:before{content:"\f1a6"}.la-digital-ocean:before{content:"\f391"}.la-digital-tachograph:before{content:"\f566"}.la-directions:before{content:"\f5eb"}.la-discord:before{content:"\f392"}.la-discourse:before{content:"\f393"}.la-divide:before{content:"\f529"}.la-dizzy:before{content:"\f567"}.la-dna:before{content:"\f471"}.la-dochub:before{content:"\f394"}.la-docker:before{content:"\f395"}.la-dog:before{content:"\f6d3"}.la-dollar-sign:before{content:"\f155"}.la-dolly:before{content:"\f472"}.la-dolly-flatbed:before{content:"\f474"}.la-donate:before{content:"\f4b9"}.la-door-closed:before{content:"\f52a"}.la-door-open:before{content:"\f52b"}.la-dot-circle:before{content:"\f192"}.la-dove:before{content:"\f4ba"}.la-download:before{content:"\f019"}.la-draft2digital:before{content:"\f396"}.la-drafting-compass:before{content:"\f568"}.la-dragon:before{content:"\f6d5"}.la-draw-polygon:before{content:"\f5ee"}.la-dribbble:before{content:"\f17d"}.la-dribbble-square:before{content:"\f397"}.la-dropbox:before{content:"\f16b"}.la-drum:before{content:"\f569"}.la-drum-steelpan:before{content:"\f56a"}.la-drumstick-bite:before{content:"\f6d7"}.la-drupal:before{content:"\f1a9"}.la-dumbbell:before{content:"\f44b"}.la-dumpster:before{content:"\f793"}.la-dumpster-fire:before{content:"\f794"}.la-dungeon:before{content:"\f6d9"}.la-dyalog:before{content:"\f399"}.la-earlybirds:before{content:"\f39a"}.la-ebay:before{content:"\f4f4"}.la-edge:before{content:"\f282"}.la-edit:before{content:"\f044"}.la-egg:before{content:"\f7fb"}.la-eject:before{content:"\f052"}.la-elementor:before{content:"\f430"}.la-ellipsis-h:before{content:"\f141"}.la-ellipsis-v:before{content:"\f142"}.la-ello:before{content:"\f5f1"}.la-ember:before{content:"\f423"}.la-empire:before{content:"\f1d1"}.la-envelope:before{content:"\f0e0"}.la-envelope-open:before{content:"\f2b6"}.la-envelope-open-text:before{content:"\f658"}.la-envelope-square:before{content:"\f199"}.la-envira:before{content:"\f299"}.la-equals:before{content:"\f52c"}.la-eraser:before{content:"\f12d"}.la-erlang:before{content:"\f39d"}.la-ethereum:before{content:"\f42e"}.la-ethernet:before{content:"\f796"}.la-etsy:before{content:"\f2d7"}.la-euro-sign:before{content:"\f153"}.la-evernote:before{content:"\f839"}.la-exchange-alt:before{content:"\f362"}.la-exclamation:before{content:"\f12a"}.la-exclamation-circle:before{content:"\f06a"}.la-exclamation-triangle:before{content:"\f071"}.la-expand:before{content:"\f065"}.la-expand-arrows-alt:before{content:"\f31e"}.la-expeditedssl:before{content:"\f23e"}.la-external-link-alt:before{content:"\f35d"}.la-external-link-square-alt:before{content:"\f360"}.la-eye:before{content:"\f06e"}.la-eye-dropper:before{content:"\f1fb"}.la-eye-slash:before{content:"\f070"}.la-facebook:before{content:"\f09a"}.la-facebook-f:before{content:"\f39e"}.la-facebook-messenger:before{content:"\f39f"}.la-facebook-square:before{content:"\f082"}.la-fan:before{content:"\f863"}.la-fantasy-flight-games:before{content:"\f6dc"}.la-fast-backward:before{content:"\f049"}.la-fast-forward:before{content:"\f050"}.la-fax:before{content:"\f1ac"}.la-feather:before{content:"\f52d"}.la-feather-alt:before{content:"\f56b"}.la-fedex:before{content:"\f797"}.la-fedora:before{content:"\f798"}.la-female:before{content:"\f182"}.la-fighter-jet:before{content:"\f0fb"}.la-figma:before{content:"\f799"}.la-file:before{content:"\f15b"}.la-file-alt:before{content:"\f15c"}.la-file-archive:before{content:"\f1c6"}.la-file-audio:before{content:"\f1c7"}.la-file-code:before{content:"\f1c9"}.la-file-contract:before{content:"\f56c"}.la-file-csv:before{content:"\f6dd"}.la-file-download:before{content:"\f56d"}.la-file-excel:before{content:"\f1c3"}.la-file-export:before{content:"\f56e"}.la-file-image:before{content:"\f1c5"}.la-file-import:before{content:"\f56f"}.la-file-invoice:before{content:"\f570"}.la-file-invoice-dollar:before{content:"\f571"}.la-file-medical:before{content:"\f477"}.la-file-medical-alt:before{content:"\f478"}.la-file-pdf:before{content:"\f1c1"}.la-file-powerpoint:before{content:"\f1c4"}.la-file-prescription:before{content:"\f572"}.la-file-signature:before{content:"\f573"}.la-file-upload:before{content:"\f574"}.la-file-video:before{content:"\f1c8"}.la-file-word:before{content:"\f1c2"}.la-fill:before{content:"\f575"}.la-fill-drip:before{content:"\f576"}.la-film:before{content:"\f008"}.la-filter:before{content:"\f0b0"}.la-fingerprint:before{content:"\f577"}.la-fire:before{content:"\f06d"}.la-fire-alt:before{content:"\f7e4"}.la-fire-extinguisher:before{content:"\f134"}.la-firefox:before{content:"\f269"}.la-first-aid:before{content:"\f479"}.la-first-order:before{content:"\f2b0"}.la-first-order-alt:before{content:"\f50a"}.la-firstdraft:before{content:"\f3a1"}.la-fish:before{content:"\f578"}.la-fist-raised:before{content:"\f6de"}.la-flag:before{content:"\f024"}.la-flag-checkered:before{content:"\f11e"}.la-flag-usa:before{content:"\f74d"}.la-flask:before{content:"\f0c3"}.la-flickr:before{content:"\f16e"}.la-flipboard:before{content:"\f44d"}.la-flushed:before{content:"\f579"}.la-fly:before{content:"\f417"}.la-folder:before{content:"\f07b"}.la-folder-minus:before{content:"\f65d"}.la-folder-open:before{content:"\f07c"}.la-folder-plus:before{content:"\f65e"}.la-font:before{content:"\f031"}.la-font-awesome:before{content:"\f2b4"}.la-font-awesome-alt:before{content:"\f35c"}.la-font-awesome-flag:before{content:"\f425"}.la-font-awesome-logo-full:before{content:"\f4e6"}.la-fonticons:before{content:"\f280"}.la-fonticons-fi:before{content:"\f3a2"}.la-football-ball:before{content:"\f44e"}.la-fort-awesome:before{content:"\f286"}.la-fort-awesome-alt:before{content:"\f3a3"}.la-forumbee:before{content:"\f211"}.la-forward:before{content:"\f04e"}.la-foursquare:before{content:"\f180"}.la-free-code-camp:before{content:"\f2c5"}.la-freebsd:before{content:"\f3a4"}.la-frog:before{content:"\f52e"}.la-frown:before{content:"\f119"}.la-frown-open:before{content:"\f57a"}.la-fulcrum:before{content:"\f50b"}.la-funnel-dollar:before{content:"\f662"}.la-futbol:before{content:"\f1e3"}.la-galactic-republic:before{content:"\f50c"}.la-galactic-senate:before{content:"\f50d"}.la-gamepad:before{content:"\f11b"}.la-gas-pump:before{content:"\f52f"}.la-gavel:before{content:"\f0e3"}.la-gem:before{content:"\f3a5"}.la-genderless:before{content:"\f22d"}.la-get-pocket:before{content:"\f265"}.la-gg:before{content:"\f260"}.la-gg-circle:before{content:"\f261"}.la-ghost:before{content:"\f6e2"}.la-gift:before{content:"\f06b"}.la-gifts:before{content:"\f79c"}.la-git:before{content:"\f1d3"}.la-git-alt:before{content:"\f841"}.la-git-square:before{content:"\f1d2"}.la-github:before{content:"\f09b"}.la-github-alt:before{content:"\f113"}.la-github-square:before{content:"\f092"}.la-gitkraken:before{content:"\f3a6"}.la-gitlab:before{content:"\f296"}.la-gitter:before{content:"\f426"}.la-glass-cheers:before{content:"\f79f"}.la-glass-martini:before{content:"\f000"}.la-glass-martini-alt:before{content:"\f57b"}.la-glass-whiskey:before{content:"\f7a0"}.la-glasses:before{content:"\f530"}.la-glide:before{content:"\f2a5"}.la-glide-g:before{content:"\f2a6"}.la-globe:before{content:"\f0ac"}.la-globe-africa:before{content:"\f57c"}.la-globe-americas:before{content:"\f57d"}.la-globe-asia:before{content:"\f57e"}.la-globe-europe:before{content:"\f7a2"}.la-gofore:before{content:"\f3a7"}.la-golf-ball:before{content:"\f450"}.la-goodreads:before{content:"\f3a8"}.la-goodreads-g:before{content:"\f3a9"}.la-google:before{content:"\f1a0"}.la-google-drive:before{content:"\f3aa"}.la-google-play:before{content:"\f3ab"}.la-google-plus:before{content:"\f2b3"}.la-google-plus-g:before{content:"\f0d5"}.la-google-plus-square:before{content:"\f0d4"}.la-google-wallet:before{content:"\f1ee"}.la-gopuram:before{content:"\f664"}.la-graduation-cap:before{content:"\f19d"}.la-gratipay:before{content:"\f184"}.la-grav:before{content:"\f2d6"}.la-greater-than:before{content:"\f531"}.la-greater-than-equal:before{content:"\f532"}.la-grimace:before{content:"\f57f"}.la-grin:before{content:"\f580"}.la-grin-alt:before{content:"\f581"}.la-grin-beam:before{content:"\f582"}.la-grin-beam-sweat:before{content:"\f583"}.la-grin-hearts:before{content:"\f584"}.la-grin-squint:before{content:"\f585"}.la-grin-squint-tears:before{content:"\f586"}.la-grin-stars:before{content:"\f587"}.la-grin-tears:before{content:"\f588"}.la-grin-tongue:before{content:"\f589"}.la-grin-tongue-squint:before{content:"\f58a"}.la-grin-tongue-wink:before{content:"\f58b"}.la-grin-wink:before{content:"\f58c"}.la-grip-horizontal:before{content:"\f58d"}.la-grip-lines:before{content:"\f7a4"}.la-grip-lines-vertical:before{content:"\f7a5"}.la-grip-vertical:before{content:"\f58e"}.la-gripfire:before{content:"\f3ac"}.la-grunt:before{content:"\f3ad"}.la-guitar:before{content:"\f7a6"}.la-gulp:before{content:"\f3ae"}.la-h-square:before{content:"\f0fd"}.la-hacker-news:before{content:"\f1d4"}.la-hacker-news-square:before{content:"\f3af"}.la-hackerrank:before{content:"\f5f7"}.la-hamburger:before{content:"\f805"}.la-hammer:before{content:"\f6e3"}.la-hamsa:before{content:"\f665"}.la-hand-holding:before{content:"\f4bd"}.la-hand-holding-heart:before{content:"\f4be"}.la-hand-holding-usd:before{content:"\f4c0"}.la-hand-lizard:before{content:"\f258"}.la-hand-middle-finger:before{content:"\f806"}.la-hand-paper:before{content:"\f256"}.la-hand-peace:before{content:"\f25b"}.la-hand-point-down:before{content:"\f0a7"}.la-hand-point-left:before{content:"\f0a5"}.la-hand-point-right:before{content:"\f0a4"}.la-hand-point-up:before{content:"\f0a6"}.la-hand-pointer:before{content:"\f25a"}.la-hand-rock:before{content:"\f255"}.la-hand-scissors:before{content:"\f257"}.la-hand-spock:before{content:"\f259"}.la-hands:before{content:"\f4c2"}.la-hands-helping:before{content:"\f4c4"}.la-handshake:before{content:"\f2b5"}.la-hanukiah:before{content:"\f6e6"}.la-hard-hat:before{content:"\f807"}.la-hashtag:before{content:"\f292"}.la-hat-cowboy:before{content:"\f8c0"}.la-hat-cowboy-side:before{content:"\f8c1"}.la-hat-wizard:before{content:"\f6e8"}.la-haykal:before{content:"\f666"}.la-hdd:before{content:"\f0a0"}.la-heading:before{content:"\f1dc"}.la-headphones:before{content:"\f025"}.la-headphones-alt:before{content:"\f58f"}.la-headset:before{content:"\f590"}.la-heart:before{content:"\f004"}.la-heart-broken:before{content:"\f7a9"}.la-heartbeat:before{content:"\f21e"}.la-helicopter:before{content:"\f533"}.la-highlighter:before{content:"\f591"}.la-hiking:before{content:"\f6ec"}.la-hippo:before{content:"\f6ed"}.la-hips:before{content:"\f452"}.la-hire-a-helper:before{content:"\f3b0"}.la-history:before{content:"\f1da"}.la-hockey-puck:before{content:"\f453"}.la-holly-berry:before{content:"\f7aa"}.la-home:before{content:"\f015"}.la-hooli:before{content:"\f427"}.la-hornbill:before{content:"\f592"}.la-horse:before{content:"\f6f0"}.la-horse-head:before{content:"\f7ab"}.la-hospital:before{content:"\f0f8"}.la-hospital-alt:before{content:"\f47d"}.la-hospital-symbol:before{content:"\f47e"}.la-hot-tub:before{content:"\f593"}.la-hotdog:before{content:"\f80f"}.la-hotel:before{content:"\f594"}.la-hotjar:before{content:"\f3b1"}.la-hourglass:before{content:"\f254"}.la-hourglass-end:before{content:"\f253"}.la-hourglass-half:before{content:"\f252"}.la-hourglass-start:before{content:"\f251"}.la-house-damage:before{content:"\f6f1"}.la-houzz:before{content:"\f27c"}.la-hryvnia:before{content:"\f6f2"}.la-html5:before{content:"\f13b"}.la-hubspot:before{content:"\f3b2"}.la-i-cursor:before{content:"\f246"}.la-ice-cream:before{content:"\f810"}.la-icicles:before{content:"\f7ad"}.la-icons:before{content:"\f86d"}.la-id-badge:before{content:"\f2c1"}.la-id-card:before{content:"\f2c2"}.la-id-card-alt:before{content:"\f47f"}.la-igloo:before{content:"\f7ae"}.la-image:before{content:"\f03e"}.la-images:before{content:"\f302"}.la-imdb:before{content:"\f2d8"}.la-inbox:before{content:"\f01c"}.la-indent:before{content:"\f03c"}.la-industry:before{content:"\f275"}.la-infinity:before{content:"\f534"}.la-info:before{content:"\f129"}.la-info-circle:before{content:"\f05a"}.la-instagram:before{content:"\f16d"}.la-intercom:before{content:"\f7af"}.la-internet-explorer:before{content:"\f26b"}.la-invision:before{content:"\f7b0"}.la-ioxhost:before{content:"\f208"}.la-italic:before{content:"\f033"}.la-itch-io:before{content:"\f83a"}.la-itunes:before{content:"\f3b4"}.la-itunes-note:before{content:"\f3b5"}.la-java:before{content:"\f4e4"}.la-jedi:before{content:"\f669"}.la-jedi-order:before{content:"\f50e"}.la-jenkins:before{content:"\f3b6"}.la-jira:before{content:"\f7b1"}.la-joget:before{content:"\f3b7"}.la-joint:before{content:"\f595"}.la-joomla:before{content:"\f1aa"}.la-journal-whills:before{content:"\f66a"}.la-js:before{content:"\f3b8"}.la-js-square:before{content:"\f3b9"}.la-jsfiddle:before{content:"\f1cc"}.la-kaaba:before{content:"\f66b"}.la-kaggle:before{content:"\f5fa"}.la-key:before{content:"\f084"}.la-keybase:before{content:"\f4f5"}.la-keyboard:before{content:"\f11c"}.la-keycdn:before{content:"\f3ba"}.la-khanda:before{content:"\f66d"}.la-kickstarter:before{content:"\f3bb"}.la-kickstarter-k:before{content:"\f3bc"}.la-kiss:before{content:"\f596"}.la-kiss-beam:before{content:"\f597"}.la-kiss-wink-heart:before{content:"\f598"}.la-kiwi-bird:before{content:"\f535"}.la-korvue:before{content:"\f42f"}.la-landmark:before{content:"\f66f"}.la-language:before{content:"\f1ab"}.la-laptop:before{content:"\f109"}.la-laptop-code:before{content:"\f5fc"}.la-laptop-medical:before{content:"\f812"}.la-laravel:before{content:"\f3bd"}.la-lastfm:before{content:"\f202"}.la-lastfm-square:before{content:"\f203"}.la-laugh:before{content:"\f599"}.la-laugh-beam:before{content:"\f59a"}.la-laugh-squint:before{content:"\f59b"}.la-laugh-wink:before{content:"\f59c"}.la-layer-group:before{content:"\f5fd"}.la-leaf:before{content:"\f06c"}.la-leanpub:before{content:"\f212"}.la-lemon:before{content:"\f094"}.la-less:before{content:"\f41d"}.la-less-than:before{content:"\f536"}.la-less-than-equal:before{content:"\f537"}.la-level-down-alt:before{content:"\f3be"}.la-level-up-alt:before{content:"\f3bf"}.la-life-ring:before{content:"\f1cd"}.la-lightbulb:before{content:"\f0eb"}.la-line:before{content:"\f3c0"}.la-link:before{content:"\f0c1"}.la-linkedin:before{content:"\f08c"}.la-linkedin-in:before{content:"\f0e1"}.la-linode:before{content:"\f2b8"}.la-linux:before{content:"\f17c"}.la-lira-sign:before{content:"\f195"}.la-list:before{content:"\f03a"}.la-list-alt:before{content:"\f022"}.la-list-ol:before{content:"\f0cb"}.la-list-ul:before{content:"\f0ca"}.la-location-arrow:before{content:"\f124"}.la-lock:before{content:"\f023"}.la-lock-open:before{content:"\f3c1"}.la-long-arrow-alt-down:before{content:"\f309"}.la-long-arrow-alt-left:before{content:"\f30a"}.la-long-arrow-alt-right:before{content:"\f30b"}.la-long-arrow-alt-up:before{content:"\f30c"}.la-low-vision:before{content:"\f2a8"}.la-luggage-cart:before{content:"\f59d"}.la-lyft:before{content:"\f3c3"}.la-magento:before{content:"\f3c4"}.la-magic:before{content:"\f0d0"}.la-magnet:before{content:"\f076"}.la-mail-bulk:before{content:"\f674"}.la-mailchimp:before{content:"\f59e"}.la-male:before{content:"\f183"}.la-mandalorian:before{content:"\f50f"}.la-map:before{content:"\f279"}.la-map-marked:before{content:"\f59f"}.la-map-marked-alt:before{content:"\f5a0"}.la-map-marker:before{content:"\f041"}.la-map-marker-alt:before{content:"\f3c5"}.la-map-pin:before{content:"\f276"}.la-map-signs:before{content:"\f277"}.la-markdown:before{content:"\f60f"}.la-marker:before{content:"\f5a1"}.la-mars:before{content:"\f222"}.la-mars-double:before{content:"\f227"}.la-mars-stroke:before{content:"\f229"}.la-mars-stroke-h:before{content:"\f22b"}.la-mars-stroke-v:before{content:"\f22a"}.la-mask:before{content:"\f6fa"}.la-mastodon:before{content:"\f4f6"}.la-maxcdn:before{content:"\f136"}.la-mdb:before{content:"\f8ca"}.la-medal:before{content:"\f5a2"}.la-medapps:before{content:"\f3c6"}.la-medium:before{content:"\f23a"}.la-medium-m:before{content:"\f3c7"}.la-medkit:before{content:"\f0fa"}.la-medrt:before{content:"\f3c8"}.la-meetup:before{content:"\f2e0"}.la-megaport:before{content:"\f5a3"}.la-meh:before{content:"\f11a"}.la-meh-blank:before{content:"\f5a4"}.la-meh-rolling-eyes:before{content:"\f5a5"}.la-memory:before{content:"\f538"}.la-mendeley:before{content:"\f7b3"}.la-menorah:before{content:"\f676"}.la-mercury:before{content:"\f223"}.la-meteor:before{content:"\f753"}.la-microchip:before{content:"\f2db"}.la-microphone:before{content:"\f130"}.la-microphone-alt:before{content:"\f3c9"}.la-microphone-alt-slash:before{content:"\f539"}.la-microphone-slash:before{content:"\f131"}.la-microscope:before{content:"\f610"}.la-microsoft:before{content:"\f3ca"}.la-minus:before{content:"\f068"}.la-minus-circle:before{content:"\f056"}.la-minus-square:before{content:"\f146"}.la-mitten:before{content:"\f7b5"}.la-mix:before{content:"\f3cb"}.la-mixcloud:before{content:"\f289"}.la-mizuni:before{content:"\f3cc"}.la-mobile:before{content:"\f10b"}.la-mobile-alt:before{content:"\f3cd"}.la-modx:before{content:"\f285"}.la-monero:before{content:"\f3d0"}.la-money-bill:before{content:"\f0d6"}.la-money-bill-alt:before{content:"\f3d1"}.la-money-bill-wave:before{content:"\f53a"}.la-money-bill-wave-alt:before{content:"\f53b"}.la-money-check:before{content:"\f53c"}.la-money-check-alt:before{content:"\f53d"}.la-monument:before{content:"\f5a6"}.la-moon:before{content:"\f186"}.la-mortar-pestle:before{content:"\f5a7"}.la-mosque:before{content:"\f678"}.la-motorcycle:before{content:"\f21c"}.la-mountain:before{content:"\f6fc"}.la-mouse:before{content:"\f8cc"}.la-mouse-pointer:before{content:"\f245"}.la-mug-hot:before{content:"\f7b6"}.la-music:before{content:"\f001"}.la-napster:before{content:"\f3d2"}.la-neos:before{content:"\f612"}.la-network-wired:before{content:"\f6ff"}.la-neuter:before{content:"\f22c"}.la-newspaper:before{content:"\f1ea"}.la-nimblr:before{content:"\f5a8"}.la-node:before{content:"\f419"}.la-node-js:before{content:"\f3d3"}.la-not-equal:before{content:"\f53e"}.la-notes-medical:before{content:"\f481"}.la-npm:before{content:"\f3d4"}.la-ns8:before{content:"\f3d5"}.la-nutritionix:before{content:"\f3d6"}.la-object-group:before{content:"\f247"}.la-object-ungroup:before{content:"\f248"}.la-odnoklassniki:before{content:"\f263"}.la-odnoklassniki-square:before{content:"\f264"}.la-oil-can:before{content:"\f613"}.la-old-republic:before{content:"\f510"}.la-om:before{content:"\f679"}.la-opencart:before{content:"\f23d"}.la-openid:before{content:"\f19b"}.la-opera:before{content:"\f26a"}.la-optin-monster:before{content:"\f23c"}.la-orcid:before{content:"\f8d2"}.la-osi:before{content:"\f41a"}.la-otter:before{content:"\f700"}.la-outdent:before{content:"\f03b"}.la-page4:before{content:"\f3d7"}.la-pagelines:before{content:"\f18c"}.la-pager:before{content:"\f815"}.la-paint-brush:before{content:"\f1fc"}.la-paint-roller:before{content:"\f5aa"}.la-palette:before{content:"\f53f"}.la-palfed:before{content:"\f3d8"}.la-pallet:before{content:"\f482"}.la-paper-plane:before{content:"\f1d8"}.la-paperclip:before{content:"\f0c6"}.la-parachute-box:before{content:"\f4cd"}.la-paragraph:before{content:"\f1dd"}.la-parking:before{content:"\f540"}.la-passport:before{content:"\f5ab"}.la-pastafarianism:before{content:"\f67b"}.la-paste:before{content:"\f0ea"}.la-patreon:before{content:"\f3d9"}.la-pause:before{content:"\f04c"}.la-pause-circle:before{content:"\f28b"}.la-paw:before{content:"\f1b0"}.la-paypal:before{content:"\f1ed"}.la-peace:before{content:"\f67c"}.la-pen:before{content:"\f304"}.la-pen-alt:before{content:"\f305"}.la-pen-fancy:before{content:"\f5ac"}.la-pen-nib:before{content:"\f5ad"}.la-pen-square:before{content:"\f14b"}.la-pencil-alt:before{content:"\f303"}.la-pencil-ruler:before{content:"\f5ae"}.la-penny-arcade:before{content:"\f704"}.la-people-carry:before{content:"\f4ce"}.la-pepper-hot:before{content:"\f816"}.la-percent:before{content:"\f295"}.la-percentage:before{content:"\f541"}.la-periscope:before{content:"\f3da"}.la-person-booth:before{content:"\f756"}.la-phabricator:before{content:"\f3db"}.la-phoenix-framework:before{content:"\f3dc"}.la-phoenix-squadron:before{content:"\f511"}.la-phone:before{content:"\f095"}.la-phone-alt:before{content:"\f879"}.la-phone-slash:before{content:"\f3dd"}.la-phone-square:before{content:"\f098"}.la-phone-square-alt:before{content:"\f87b"}.la-phone-volume:before{content:"\f2a0"}.la-photo-video:before{content:"\f87c"}.la-php:before{content:"\f457"}.la-pied-piper:before{content:"\f2ae"}.la-pied-piper-alt:before{content:"\f1a8"}.la-pied-piper-hat:before{content:"\f4e5"}.la-pied-piper-pp:before{content:"\f1a7"}.la-piggy-bank:before{content:"\f4d3"}.la-pills:before{content:"\f484"}.la-pinterest:before{content:"\f0d2"}.la-pinterest-p:before{content:"\f231"}.la-pinterest-square:before{content:"\f0d3"}.la-pizza-slice:before{content:"\f818"}.la-place-of-worship:before{content:"\f67f"}.la-plane:before{content:"\f072"}.la-plane-arrival:before{content:"\f5af"}.la-plane-departure:before{content:"\f5b0"}.la-play:before{content:"\f04b"}.la-play-circle:before{content:"\f144"}.la-playstation:before{content:"\f3df"}.la-plug:before{content:"\f1e6"}.la-plus:before{content:"\f067"}.la-plus-circle:before{content:"\f055"}.la-plus-square:before{content:"\f0fe"}.la-podcast:before{content:"\f2ce"}.la-poll:before{content:"\f681"}.la-poll-h:before{content:"\f682"}.la-poo:before{content:"\f2fe"}.la-poo-storm:before{content:"\f75a"}.la-poop:before{content:"\f619"}.la-portrait:before{content:"\f3e0"}.la-pound-sign:before{content:"\f154"}.la-power-off:before{content:"\f011"}.la-pray:before{content:"\f683"}.la-praying-hands:before{content:"\f684"}.la-prescription:before{content:"\f5b1"}.la-prescription-bottle:before{content:"\f485"}.la-prescription-bottle-alt:before{content:"\f486"}.la-print:before{content:"\f02f"}.la-procedures:before{content:"\f487"}.la-product-hunt:before{content:"\f288"}.la-project-diagram:before{content:"\f542"}.la-pushed:before{content:"\f3e1"}.la-puzzle-piece:before{content:"\f12e"}.la-python:before{content:"\f3e2"}.la-qq:before{content:"\f1d6"}.la-qrcode:before{content:"\f029"}.la-question:before{content:"\f128"}.la-question-circle:before{content:"\f059"}.la-quidditch:before{content:"\f458"}.la-quinscape:before{content:"\f459"}.la-quora:before{content:"\f2c4"}.la-quote-left:before{content:"\f10d"}.la-quote-right:before{content:"\f10e"}.la-quran:before{content:"\f687"}.la-r-project:before{content:"\f4f7"}.la-radiation:before{content:"\f7b9"}.la-radiation-alt:before{content:"\f7ba"}.la-rainbow:before{content:"\f75b"}.la-random:before{content:"\f074"}.la-raspberry-pi:before{content:"\f7bb"}.la-ravelry:before{content:"\f2d9"}.la-react:before{content:"\f41b"}.la-reacteurope:before{content:"\f75d"}.la-readme:before{content:"\f4d5"}.la-rebel:before{content:"\f1d0"}.la-receipt:before{content:"\f543"}.la-record-vinyl:before{content:"\f8d9"}.la-recycle:before{content:"\f1b8"}.la-red-river:before{content:"\f3e3"}.la-reddit:before{content:"\f1a1"}.la-reddit-alien:before{content:"\f281"}.la-reddit-square:before{content:"\f1a2"}.la-redhat:before{content:"\f7bc"}.la-redo:before{content:"\f01e"}.la-redo-alt:before{content:"\f2f9"}.la-registered:before{content:"\f25d"}.la-remove-format:before{content:"\f87d"}.la-renren:before{content:"\f18b"}.la-reply:before{content:"\f3e5"}.la-reply-all:before{content:"\f122"}.la-replyd:before{content:"\f3e6"}.la-republican:before{content:"\f75e"}.la-researchgate:before{content:"\f4f8"}.la-resolving:before{content:"\f3e7"}.la-restroom:before{content:"\f7bd"}.la-retweet:before{content:"\f079"}.la-rev:before{content:"\f5b2"}.la-ribbon:before{content:"\f4d6"}.la-ring:before{content:"\f70b"}.la-road:before{content:"\f018"}.la-robot:before{content:"\f544"}.la-rocket:before{content:"\f135"}.la-rocketchat:before{content:"\f3e8"}.la-rockrms:before{content:"\f3e9"}.la-route:before{content:"\f4d7"}.la-rss:before{content:"\f09e"}.la-rss-square:before{content:"\f143"}.la-ruble-sign:before{content:"\f158"}.la-ruler:before{content:"\f545"}.la-ruler-combined:before{content:"\f546"}.la-ruler-horizontal:before{content:"\f547"}.la-ruler-vertical:before{content:"\f548"}.la-running:before{content:"\f70c"}.la-rupee-sign:before{content:"\f156"}.la-sad-cry:before{content:"\f5b3"}.la-sad-tear:before{content:"\f5b4"}.la-safari:before{content:"\f267"}.la-salesforce:before{content:"\f83b"}.la-sass:before{content:"\f41e"}.la-satellite:before{content:"\f7bf"}.la-satellite-dish:before{content:"\f7c0"}.la-save:before{content:"\f0c7"}.la-schlix:before{content:"\f3ea"}.la-school:before{content:"\f549"}.la-screwdriver:before{content:"\f54a"}.la-scribd:before{content:"\f28a"}.la-scroll:before{content:"\f70e"}.la-sd-card:before{content:"\f7c2"}.la-search:before{content:"\f002"}.la-search-dollar:before{content:"\f688"}.la-search-location:before{content:"\f689"}.la-search-minus:before{content:"\f010"}.la-search-plus:before{content:"\f00e"}.la-searchengin:before{content:"\f3eb"}.la-seedling:before{content:"\f4d8"}.la-sellcast:before{content:"\f2da"}.la-sellsy:before{content:"\f213"}.la-server:before{content:"\f233"}.la-servicestack:before{content:"\f3ec"}.la-shapes:before{content:"\f61f"}.la-share:before{content:"\f064"}.la-share-alt:before{content:"\f1e0"}.la-share-alt-square:before{content:"\f1e1"}.la-share-square:before{content:"\f14d"}.la-shekel-sign:before{content:"\f20b"}.la-shield-alt:before{content:"\f3ed"}.la-ship:before{content:"\f21a"}.la-shipping-fast:before{content:"\f48b"}.la-shirtsinbulk:before{content:"\f214"}.la-shoe-prints:before{content:"\f54b"}.la-shopping-bag:before{content:"\f290"}.la-shopping-basket:before{content:"\f291"}.la-shopping-cart:before{content:"\f07a"}.la-shopware:before{content:"\f5b5"}.la-shower:before{content:"\f2cc"}.la-shuttle-van:before{content:"\f5b6"}.la-sign:before{content:"\f4d9"}.la-sign-in-alt:before{content:"\f2f6"}.la-sign-language:before{content:"\f2a7"}.la-sign-out-alt:before{content:"\f2f5"}.la-signal:before{content:"\f012"}.la-signature:before{content:"\f5b7"}.la-sim-card:before{content:"\f7c4"}.la-simplybuilt:before{content:"\f215"}.la-sistrix:before{content:"\f3ee"}.la-sitemap:before{content:"\f0e8"}.la-sith:before{content:"\f512"}.la-skating:before{content:"\f7c5"}.la-sketch:before{content:"\f7c6"}.la-skiing:before{content:"\f7c9"}.la-skiing-nordic:before{content:"\f7ca"}.la-skull:before{content:"\f54c"}.la-skull-crossbones:before{content:"\f714"}.la-skyatlas:before{content:"\f216"}.la-skype:before{content:"\f17e"}.la-slack:before{content:"\f198"}.la-slack-hash:before{content:"\f3ef"}.la-slash:before{content:"\f715"}.la-sleigh:before{content:"\f7cc"}.la-sliders-h:before{content:"\f1de"}.la-slideshare:before{content:"\f1e7"}.la-smile:before{content:"\f118"}.la-smile-beam:before{content:"\f5b8"}.la-smile-wink:before{content:"\f4da"}.la-smog:before{content:"\f75f"}.la-smoking:before{content:"\f48d"}.la-smoking-ban:before{content:"\f54d"}.la-sms:before{content:"\f7cd"}.la-snapchat:before{content:"\f2ab"}.la-snapchat-ghost:before{content:"\f2ac"}.la-snapchat-square:before{content:"\f2ad"}.la-snowboarding:before{content:"\f7ce"}.la-snowflake:before{content:"\f2dc"}.la-snowman:before{content:"\f7d0"}.la-snowplow:before{content:"\f7d2"}.la-socks:before{content:"\f696"}.la-solar-panel:before{content:"\f5ba"}.la-sort:before{content:"\f0dc"}.la-sort-alpha-down:before{content:"\f15d"}.la-sort-alpha-down-alt:before{content:"\f881"}.la-sort-alpha-up:before{content:"\f15e"}.la-sort-alpha-up-alt:before{content:"\f882"}.la-sort-amount-down:before{content:"\f160"}.la-sort-amount-down-alt:before{content:"\f884"}.la-sort-amount-up:before{content:"\f161"}.la-sort-amount-up-alt:before{content:"\f885"}.la-sort-down:before{content:"\f0dd"}.la-sort-numeric-down:before{content:"\f162"}.la-sort-numeric-down-alt:before{content:"\f886"}.la-sort-numeric-up:before{content:"\f163"}.la-sort-numeric-up-alt:before{content:"\f887"}.la-sort-up:before{content:"\f0de"}.la-soundcloud:before{content:"\f1be"}.la-sourcetree:before{content:"\f7d3"}.la-spa:before{content:"\f5bb"}.la-space-shuttle:before{content:"\f197"}.la-speakap:before{content:"\f3f3"}.la-speaker-deck:before{content:"\f83c"}.la-spell-check:before{content:"\f891"}.la-spider:before{content:"\f717"}.la-spinner:before{content:"\f110"}.la-splotch:before{content:"\f5bc"}.la-spotify:before{content:"\f1bc"}.la-spray-can:before{content:"\f5bd"}.la-square:before{content:"\f0c8"}.la-square-full:before{content:"\f45c"}.la-square-root-alt:before{content:"\f698"}.la-squarespace:before{content:"\f5be"}.la-stack-exchange:before{content:"\f18d"}.la-stack-overflow:before{content:"\f16c"}.la-stackpath:before{content:"\f842"}.la-stamp:before{content:"\f5bf"}.la-star:before{content:"\f005"}.la-star-and-crescent:before{content:"\f699"}.la-star-half:before{content:"\f089"}.la-star-half-alt:before{content:"\f5c0"}.la-star-of-david:before{content:"\f69a"}.la-star-of-life:before{content:"\f621"}.la-staylinked:before{content:"\f3f5"}.la-steam:before{content:"\f1b6"}.la-steam-square:before{content:"\f1b7"}.la-steam-symbol:before{content:"\f3f6"}.la-step-backward:before{content:"\f048"}.la-step-forward:before{content:"\f051"}.la-stethoscope:before{content:"\f0f1"}.la-sticker-mule:before{content:"\f3f7"}.la-sticky-note:before{content:"\f249"}.la-stop:before{content:"\f04d"}.la-stop-circle:before{content:"\f28d"}.la-stopwatch:before{content:"\f2f2"}.la-store:before{content:"\f54e"}.la-store-alt:before{content:"\f54f"}.la-strava:before{content:"\f428"}.la-stream:before{content:"\f550"}.la-street-view:before{content:"\f21d"}.la-strikethrough:before{content:"\f0cc"}.la-stripe:before{content:"\f429"}.la-stripe-s:before{content:"\f42a"}.la-stroopwafel:before{content:"\f551"}.la-studiovinari:before{content:"\f3f8"}.la-stumbleupon:before{content:"\f1a4"}.la-stumbleupon-circle:before{content:"\f1a3"}.la-subscript:before{content:"\f12c"}.la-subway:before{content:"\f239"}.la-suitcase:before{content:"\f0f2"}.la-suitcase-rolling:before{content:"\f5c1"}.la-sun:before{content:"\f185"}.la-superpowers:before{content:"\f2dd"}.la-superscript:before{content:"\f12b"}.la-supple:before{content:"\f3f9"}.la-surprise:before{content:"\f5c2"}.la-suse:before{content:"\f7d6"}.la-swatchbook:before{content:"\f5c3"}.la-swift:before{content:"\f8e1"}.la-swimmer:before{content:"\f5c4"}.la-swimming-pool:before{content:"\f5c5"}.la-symfony:before{content:"\f83d"}.la-synagogue:before{content:"\f69b"}.la-sync:before{content:"\f021"}.la-sync-alt:before{content:"\f2f1"}.la-syringe:before{content:"\f48e"}.la-table:before{content:"\f0ce"}.la-table-tennis:before{content:"\f45d"}.la-tablet:before{content:"\f10a"}.la-tablet-alt:before{content:"\f3fa"}.la-tablets:before{content:"\f490"}.la-tachometer-alt:before{content:"\f3fd"}.la-tag:before{content:"\f02b"}.la-tags:before{content:"\f02c"}.la-tape:before{content:"\f4db"}.la-tasks:before{content:"\f0ae"}.la-taxi:before{content:"\f1ba"}.la-teamspeak:before{content:"\f4f9"}.la-teeth:before{content:"\f62e"}.la-teeth-open:before{content:"\f62f"}.la-telegram:before{content:"\f2c6"}.la-telegram-plane:before{content:"\f3fe"}.la-temperature-high:before{content:"\f769"}.la-temperature-low:before{content:"\f76b"}.la-tencent-weibo:before{content:"\f1d5"}.la-tenge:before{content:"\f7d7"}.la-terminal:before{content:"\f120"}.la-text-height:before{content:"\f034"}.la-text-width:before{content:"\f035"}.la-th:before{content:"\f00a"}.la-th-large:before{content:"\f009"}.la-th-list:before{content:"\f00b"}.la-the-red-yeti:before{content:"\f69d"}.la-theater-masks:before{content:"\f630"}.la-themeco:before{content:"\f5c6"}.la-themeisle:before{content:"\f2b2"}.la-thermometer:before{content:"\f491"}.la-thermometer-empty:before{content:"\f2cb"}.la-thermometer-full:before{content:"\f2c7"}.la-thermometer-half:before{content:"\f2c9"}.la-thermometer-quarter:before{content:"\f2ca"}.la-thermometer-three-quarters:before{content:"\f2c8"}.la-think-peaks:before{content:"\f731"}.la-thumbs-down:before{content:"\f165"}.la-thumbs-up:before{content:"\f164"}.la-thumbtack:before{content:"\f08d"}.la-ticket-alt:before{content:"\f3ff"}.la-times:before{content:"\f00d"}.la-times-circle:before{content:"\f057"}.la-tint:before{content:"\f043"}.la-tint-slash:before{content:"\f5c7"}.la-tired:before{content:"\f5c8"}.la-toggle-off:before{content:"\f204"}.la-toggle-on:before{content:"\f205"}.la-toilet:before{content:"\f7d8"}.la-toilet-paper:before{content:"\f71e"}.la-toolbox:before{content:"\f552"}.la-tools:before{content:"\f7d9"}.la-tooth:before{content:"\f5c9"}.la-torah:before{content:"\f6a0"}.la-torii-gate:before{content:"\f6a1"}.la-tractor:before{content:"\f722"}.la-trade-federation:before{content:"\f513"}.la-trademark:before{content:"\f25c"}.la-traffic-light:before{content:"\f637"}.la-train:before{content:"\f238"}.la-tram:before{content:"\f7da"}.la-transgender:before{content:"\f224"}.la-transgender-alt:before{content:"\f225"}.la-trash:before{content:"\f1f8"}.la-trash-alt:before{content:"\f2ed"}.la-trash-restore:before{content:"\f829"}.la-trash-restore-alt:before{content:"\f82a"}.la-tree:before{content:"\f1bb"}.la-trello:before{content:"\f181"}.la-tripadvisor:before{content:"\f262"}.la-trophy:before{content:"\f091"}.la-truck:before{content:"\f0d1"}.la-truck-loading:before{content:"\f4de"}.la-truck-monster:before{content:"\f63b"}.la-truck-moving:before{content:"\f4df"}.la-truck-pickup:before{content:"\f63c"}.la-tshirt:before{content:"\f553"}.la-tty:before{content:"\f1e4"}.la-tumblr:before{content:"\f173"}.la-tumblr-square:before{content:"\f174"}.la-tv:before{content:"\f26c"}.la-twitch:before{content:"\f1e8"}.la-twitter:before{content:"\f099"}.la-twitter-square:before{content:"\f081"}.la-typo3:before{content:"\f42b"}.la-uber:before{content:"\f402"}.la-ubuntu:before{content:"\f7df"}.la-uikit:before{content:"\f403"}.la-umbraco:before{content:"\f8e8"}.la-umbrella:before{content:"\f0e9"}.la-umbrella-beach:before{content:"\f5ca"}.la-underline:before{content:"\f0cd"}.la-undo:before{content:"\f0e2"}.la-undo-alt:before{content:"\f2ea"}.la-uniregistry:before{content:"\f404"}.la-universal-access:before{content:"\f29a"}.la-university:before{content:"\f19c"}.la-unlink:before{content:"\f127"}.la-unlock:before{content:"\f09c"}.la-unlock-alt:before{content:"\f13e"}.la-untappd:before{content:"\f405"}.la-upload:before{content:"\f093"}.la-ups:before{content:"\f7e0"}.la-usb:before{content:"\f287"}.la-user:before{content:"\f007"}.la-user-alt:before{content:"\f406"}.la-user-alt-slash:before{content:"\f4fa"}.la-user-astronaut:before{content:"\f4fb"}.la-user-check:before{content:"\f4fc"}.la-user-circle:before{content:"\f2bd"}.la-user-clock:before{content:"\f4fd"}.la-user-cog:before{content:"\f4fe"}.la-user-edit:before{content:"\f4ff"}.la-user-friends:before{content:"\f500"}.la-user-graduate:before{content:"\f501"}.la-user-injured:before{content:"\f728"}.la-user-lock:before{content:"\f502"}.la-user-md:before{content:"\f0f0"}.la-user-minus:before{content:"\f503"}.la-user-ninja:before{content:"\f504"}.la-user-nurse:before{content:"\f82f"}.la-user-plus:before{content:"\f234"}.la-user-secret:before{content:"\f21b"}.la-user-shield:before{content:"\f505"}.la-user-slash:before{content:"\f506"}.la-user-tag:before{content:"\f507"}.la-user-tie:before{content:"\f508"}.la-user-times:before{content:"\f235"}.la-users:before{content:"\f0c0"}.la-users-cog:before{content:"\f509"}.la-usps:before{content:"\f7e1"}.la-ussunnah:before{content:"\f407"}.la-utensil-spoon:before{content:"\f2e5"}.la-utensils:before{content:"\f2e7"}.la-vaadin:before{content:"\f408"}.la-vector-square:before{content:"\f5cb"}.la-venus:before{content:"\f221"}.la-venus-double:before{content:"\f226"}.la-venus-mars:before{content:"\f228"}.la-viacoin:before{content:"\f237"}.la-viadeo:before{content:"\f2a9"}.la-viadeo-square:before{content:"\f2aa"}.la-vial:before{content:"\f492"}.la-vials:before{content:"\f493"}.la-viber:before{content:"\f409"}.la-video:before{content:"\f03d"}.la-video-slash:before{content:"\f4e2"}.la-vihara:before{content:"\f6a7"}.la-vimeo:before{content:"\f40a"}.la-vimeo-square:before{content:"\f194"}.la-vimeo-v:before{content:"\f27d"}.la-vine:before{content:"\f1ca"}.la-vk:before{content:"\f189"}.la-vnv:before{content:"\f40b"}.la-voicemail:before{content:"\f897"}.la-volleyball-ball:before{content:"\f45f"}.la-volume-down:before{content:"\f027"}.la-volume-mute:before{content:"\f6a9"}.la-volume-off:before{content:"\f026"}.la-volume-up:before{content:"\f028"}.la-vote-yea:before{content:"\f772"}.la-vr-cardboard:before{content:"\f729"}.la-vuejs:before{content:"\f41f"}.la-walking:before{content:"\f554"}.la-wallet:before{content:"\f555"}.la-warehouse:before{content:"\f494"}.la-water:before{content:"\f773"}.la-wave-square:before{content:"\f83e"}.la-waze:before{content:"\f83f"}.la-weebly:before{content:"\f5cc"}.la-weibo:before{content:"\f18a"}.la-weight:before{content:"\f496"}.la-weight-hanging:before{content:"\f5cd"}.la-weixin:before{content:"\f1d7"}.la-whatsapp:before{content:"\f232"}.la-whatsapp-square:before{content:"\f40c"}.la-wheelchair:before{content:"\f193"}.la-whmcs:before{content:"\f40d"}.la-wifi:before{content:"\f1eb"}.la-wikipedia-w:before{content:"\f266"}.la-wind:before{content:"\f72e"}.la-window-close:before{content:"\f410"}.la-window-maximize:before{content:"\f2d0"}.la-window-minimize:before{content:"\f2d1"}.la-window-restore:before{content:"\f2d2"}.la-windows:before{content:"\f17a"}.la-wine-bottle:before{content:"\f72f"}.la-wine-glass:before{content:"\f4e3"}.la-wine-glass-alt:before{content:"\f5ce"}.la-wix:before{content:"\f5cf"}.la-wizards-of-the-coast:before{content:"\f730"}.la-wolf-pack-battalion:before{content:"\f514"}.la-won-sign:before{content:"\f159"}.la-wordpress:before{content:"\f19a"}.la-wordpress-simple:before{content:"\f411"}.la-wpbeginner:before{content:"\f297"}.la-wpexplorer:before{content:"\f2de"}.la-wpforms:before{content:"\f298"}.la-wpressr:before{content:"\f3e4"}.la-wrench:before{content:"\f0ad"}.la-x-ray:before{content:"\f497"}.la-xbox:before{content:"\f412"}.la-xing:before{content:"\f168"}.la-xing-square:before{content:"\f169"}.la-y-combinator:before{content:"\f23b"}.la-yahoo:before{content:"\f19e"}.la-yammer:before{content:"\f840"}.la-yandex:before{content:"\f413"}.la-yandex-international:before{content:"\f414"}.la-yarn:before{content:"\f7e3"}.la-yelp:before{content:"\f1e9"}.la-yen-sign:before{content:"\f157"}.la-yin-yang:before{content:"\f6ad"}.la-yoast:before{content:"\f2b1"}.la-youtube:before{content:"\f167"}.la-youtube-square:before{content:"\f431"}.la-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:'Line Awesome Brands';font-style:normal;font-weight:400;font-display:auto;src:url(../fonts/la-brands-400.eot);src:url(../fonts/la-brands-400.eot?#iefix) format("embedded-opentype"),url(../fonts/la-brands-400.woff2) format("woff2"),url(../fonts/la-brands-400.woff) format("woff"),url(../fonts/la-brands-400.ttf) format("truetype"),url(../fonts/la-brands-400.svg#lineawesome) format("svg")}.lab{font-family:'Line Awesome Brands'}@font-face{font-family:'Line Awesome Free';font-style:normal;font-weight:400;font-display:auto;src:url(../fonts/la-regular-400.eot);src:url(../fonts/la-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/la-regular-400.woff2) format("woff2"),url(../fonts/la-regular-400.woff) format("woff"),url(../fonts/la-regular-400.ttf) format("truetype"),url(../fonts/la-regular-400.svg#lineawesome) format("svg")}.lar{font-family:'Line Awesome Free';font-weight:400}@font-face{font-family:'Line Awesome Free';font-style:normal;font-weight:900;font-display:auto;src:url(../fonts/la-solid-900.eot);src:url(../fonts/la-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/la-solid-900.woff2) format("woff2"),url(../fonts/la-solid-900.woff) format("woff"),url(../fonts/la-solid-900.ttf) format("truetype"),url(../fonts/la-solid-900.svg#lineawesome) format("svg")}.la,.las{font-family:'Line Awesome Free';font-weight:900}.la.la-glass:before{content:"\f000"}.la.la-meetup{font-family:'Line Awesome Brands';font-weight:400}.la.la-star-o{font-family:'Line Awesome Free';font-weight:400}.la.la-star-o:before{content:"\f005"}.la.la-remove:before{content:"\f00d"}.la.la-close:before{content:"\f00d"}.la.la-gear:before{content:"\f013"}.la.la-trash-o{font-family:'Line Awesome Free';font-weight:400}.la.la-trash-o:before{content:"\f2ed"}.la.la-file-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-o:before{content:"\f15b"}.la.la-clock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-clock-o:before{content:"\f017"}.la.la-arrow-circle-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-down:before{content:"\f358"}.la.la-arrow-circle-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-up:before{content:"\f35b"}.la.la-play-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-play-circle-o:before{content:"\f144"}.la.la-repeat:before{content:"\f01e"}.la.la-rotate-right:before{content:"\f01e"}.la.la-refresh:before{content:"\f021"}.la.la-list-alt{font-family:'Line Awesome Free';font-weight:400}.la.la-dedent:before{content:"\f03b"}.la.la-video-camera:before{content:"\f03d"}.la.la-picture-o{font-family:'Line Awesome Free';font-weight:400}.la.la-picture-o:before{content:"\f03e"}.la.la-photo{font-family:'Line Awesome Free';font-weight:400}.la.la-photo:before{content:"\f03e"}.la.la-image{font-family:'Line Awesome Free';font-weight:400}.la.la-image:before{content:"\f03e"}.la.la-pencil:before{content:"\f303"}.la.la-map-marker:before{content:"\f3c5"}.la.la-pencil-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-pencil-square-o:before{content:"\f044"}.la.la-share-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-share-square-o:before{content:"\f14d"}.la.la-check-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-check-square-o:before{content:"\f14a"}.la.la-arrows:before{content:"\f0b2"}.la.la-times-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-times-circle-o:before{content:"\f057"}.la.la-check-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-check-circle-o:before{content:"\f058"}.la.la-mail-forward:before{content:"\f064"}.la.la-eye{font-family:'Line Awesome Free';font-weight:400}.la.la-eye-slash{font-family:'Line Awesome Free';font-weight:400}.la.la-warning:before{content:"\f071"}.la.la-calendar:before{content:"\f073"}.la.la-arrows-v:before{content:"\f338"}.la.la-arrows-h:before{content:"\f337"}.la.la-bar-chart{font-family:'Line Awesome Free';font-weight:400}.la.la-bar-chart:before{content:"\f080"}.la.la-bar-chart-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bar-chart-o:before{content:"\f080"}.la.la-twitter-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-gears:before{content:"\f085"}.la.la-thumbs-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-thumbs-o-up:before{content:"\f164"}.la.la-thumbs-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-thumbs-o-down:before{content:"\f165"}.la.la-heart-o{font-family:'Line Awesome Free';font-weight:400}.la.la-heart-o:before{content:"\f004"}.la.la-sign-out:before{content:"\f2f5"}.la.la-linkedin-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-linkedin-square:before{content:"\f08c"}.la.la-thumb-tack:before{content:"\f08d"}.la.la-external-link:before{content:"\f35d"}.la.la-sign-in:before{content:"\f2f6"}.la.la-github-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-lemon-o{font-family:'Line Awesome Free';font-weight:400}.la.la-lemon-o:before{content:"\f094"}.la.la-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-square-o:before{content:"\f0c8"}.la.la-bookmark-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bookmark-o:before{content:"\f02e"}.la.la-twitter{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook:before{content:"\f39e"}.la.la-facebook-f{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-f:before{content:"\f39e"}.la.la-github{font-family:'Line Awesome Brands';font-weight:400}.la.la-credit-card{font-family:'Line Awesome Free';font-weight:400}.la.la-feed:before{content:"\f09e"}.la.la-hdd-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hdd-o:before{content:"\f0a0"}.la.la-hand-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-right:before{content:"\f0a4"}.la.la-hand-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-left:before{content:"\f0a5"}.la.la-hand-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-up:before{content:"\f0a6"}.la.la-hand-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-down:before{content:"\f0a7"}.la.la-arrows-alt:before{content:"\f31e"}.la.la-group:before{content:"\f0c0"}.la.la-chain:before{content:"\f0c1"}.la.la-scissors:before{content:"\f0c4"}.la.la-files-o{font-family:'Line Awesome Free';font-weight:400}.la.la-files-o:before{content:"\f0c5"}.la.la-floppy-o{font-family:'Line Awesome Free';font-weight:400}.la.la-floppy-o:before{content:"\f0c7"}.la.la-navicon:before{content:"\f0c9"}.la.la-reorder:before{content:"\f0c9"}.la.la-pinterest{font-family:'Line Awesome Brands';font-weight:400}.la.la-pinterest-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus:before{content:"\f0d5"}.la.la-money{font-family:'Line Awesome Free';font-weight:400}.la.la-money:before{content:"\f3d1"}.la.la-unsorted:before{content:"\f0dc"}.la.la-sort-desc:before{content:"\f0dd"}.la.la-sort-asc:before{content:"\f0de"}.la.la-linkedin{font-family:'Line Awesome Brands';font-weight:400}.la.la-linkedin:before{content:"\f0e1"}.la.la-rotate-left:before{content:"\f0e2"}.la.la-legal:before{content:"\f0e3"}.la.la-tachometer:before{content:"\f3fd"}.la.la-dashboard:before{content:"\f3fd"}.la.la-comment-o{font-family:'Line Awesome Free';font-weight:400}.la.la-comment-o:before{content:"\f075"}.la.la-comments-o{font-family:'Line Awesome Free';font-weight:400}.la.la-comments-o:before{content:"\f086"}.la.la-flash:before{content:"\f0e7"}.la.la-clipboard{font-family:'Line Awesome Free';font-weight:400}.la.la-paste{font-family:'Line Awesome Free';font-weight:400}.la.la-paste:before{content:"\f328"}.la.la-lightbulb-o{font-family:'Line Awesome Free';font-weight:400}.la.la-lightbulb-o:before{content:"\f0eb"}.la.la-exchange:before{content:"\f362"}.la.la-cloud-download:before{content:"\f381"}.la.la-cloud-upload:before{content:"\f382"}.la.la-bell-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bell-o:before{content:"\f0f3"}.la.la-cutlery:before{content:"\f2e7"}.la.la-file-text-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-text-o:before{content:"\f15c"}.la.la-building-o{font-family:'Line Awesome Free';font-weight:400}.la.la-building-o:before{content:"\f1ad"}.la.la-hospital-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hospital-o:before{content:"\f0f8"}.la.la-tablet:before{content:"\f3fa"}.la.la-mobile:before{content:"\f3cd"}.la.la-mobile-phone:before{content:"\f3cd"}.la.la-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-circle-o:before{content:"\f111"}.la.la-mail-reply:before{content:"\f3e5"}.la.la-github-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-folder-o{font-family:'Line Awesome Free';font-weight:400}.la.la-folder-o:before{content:"\f07b"}.la.la-folder-open-o{font-family:'Line Awesome Free';font-weight:400}.la.la-folder-open-o:before{content:"\f07c"}.la.la-smile-o{font-family:'Line Awesome Free';font-weight:400}.la.la-smile-o:before{content:"\f118"}.la.la-frown-o{font-family:'Line Awesome Free';font-weight:400}.la.la-frown-o:before{content:"\f119"}.la.la-meh-o{font-family:'Line Awesome Free';font-weight:400}.la.la-meh-o:before{content:"\f11a"}.la.la-keyboard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-keyboard-o:before{content:"\f11c"}.la.la-flag-o{font-family:'Line Awesome Free';font-weight:400}.la.la-flag-o:before{content:"\f024"}.la.la-mail-reply-all:before{content:"\f122"}.la.la-star-half-o{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-o:before{content:"\f089"}.la.la-star-half-empty{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-empty:before{content:"\f089"}.la.la-star-half-full{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-full:before{content:"\f089"}.la.la-code-fork:before{content:"\f126"}.la.la-chain-broken:before{content:"\f127"}.la.la-shield:before{content:"\f3ed"}.la.la-calendar-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-o:before{content:"\f133"}.la.la-maxcdn{font-family:'Line Awesome Brands';font-weight:400}.la.la-html5{font-family:'Line Awesome Brands';font-weight:400}.la.la-css3{font-family:'Line Awesome Brands';font-weight:400}.la.la-ticket:before{content:"\f3ff"}.la.la-minus-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-minus-square-o:before{content:"\f146"}.la.la-level-up:before{content:"\f3bf"}.la.la-level-down:before{content:"\f3be"}.la.la-pencil-square:before{content:"\f14b"}.la.la-external-link-square:before{content:"\f360"}.la.la-compass{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-down:before{content:"\f150"}.la.la-toggle-down{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-down:before{content:"\f150"}.la.la-caret-square-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-up:before{content:"\f151"}.la.la-toggle-up{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-up:before{content:"\f151"}.la.la-caret-square-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-right:before{content:"\f152"}.la.la-toggle-right{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-right:before{content:"\f152"}.la.la-eur:before{content:"\f153"}.la.la-euro:before{content:"\f153"}.la.la-gbp:before{content:"\f154"}.la.la-usd:before{content:"\f155"}.la.la-dollar:before{content:"\f155"}.la.la-inr:before{content:"\f156"}.la.la-rupee:before{content:"\f156"}.la.la-jpy:before{content:"\f157"}.la.la-cny:before{content:"\f157"}.la.la-rmb:before{content:"\f157"}.la.la-yen:before{content:"\f157"}.la.la-rub:before{content:"\f158"}.la.la-ruble:before{content:"\f158"}.la.la-rouble:before{content:"\f158"}.la.la-krw:before{content:"\f159"}.la.la-won:before{content:"\f159"}.la.la-btc{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitcoin{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitcoin:before{content:"\f15a"}.la.la-file-text:before{content:"\f15c"}.la.la-sort-alpha-asc:before{content:"\f15d"}.la.la-sort-alpha-desc:before{content:"\f881"}.la.la-sort-amount-asc:before{content:"\f160"}.la.la-sort-amount-desc:before{content:"\f884"}.la.la-sort-numeric-asc:before{content:"\f162"}.la.la-sort-numeric-desc:before{content:"\f886"}.la.la-youtube-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube{font-family:'Line Awesome Brands';font-weight:400}.la.la-xing{font-family:'Line Awesome Brands';font-weight:400}.la.la-xing-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube-play{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube-play:before{content:"\f167"}.la.la-dropbox{font-family:'Line Awesome Brands';font-weight:400}.la.la-stack-overflow{font-family:'Line Awesome Brands';font-weight:400}.la.la-instagram{font-family:'Line Awesome Brands';font-weight:400}.la.la-flickr{font-family:'Line Awesome Brands';font-weight:400}.la.la-adn{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket-square:before{content:"\f171"}.la.la-tumblr{font-family:'Line Awesome Brands';font-weight:400}.la.la-tumblr-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-long-arrow-down:before{content:"\f309"}.la.la-long-arrow-up:before{content:"\f30c"}.la.la-long-arrow-left:before{content:"\f30a"}.la.la-long-arrow-right:before{content:"\f30b"}.la.la-apple{font-family:'Line Awesome Brands';font-weight:400}.la.la-windows{font-family:'Line Awesome Brands';font-weight:400}.la.la-android{font-family:'Line Awesome Brands';font-weight:400}.la.la-linux{font-family:'Line Awesome Brands';font-weight:400}.la.la-dribbble{font-family:'Line Awesome Brands';font-weight:400}.la.la-skype{font-family:'Line Awesome Brands';font-weight:400}.la.la-foursquare{font-family:'Line Awesome Brands';font-weight:400}.la.la-trello{font-family:'Line Awesome Brands';font-weight:400}.la.la-gratipay{font-family:'Line Awesome Brands';font-weight:400}.la.la-gittip{font-family:'Line Awesome Brands';font-weight:400}.la.la-gittip:before{content:"\f184"}.la.la-sun-o{font-family:'Line Awesome Free';font-weight:400}.la.la-sun-o:before{content:"\f185"}.la.la-moon-o{font-family:'Line Awesome Free';font-weight:400}.la.la-moon-o:before{content:"\f186"}.la.la-vk{font-family:'Line Awesome Brands';font-weight:400}.la.la-weibo{font-family:'Line Awesome Brands';font-weight:400}.la.la-renren{font-family:'Line Awesome Brands';font-weight:400}.la.la-pagelines{font-family:'Line Awesome Brands';font-weight:400}.la.la-stack-exchange{font-family:'Line Awesome Brands';font-weight:400}.la.la-arrow-circle-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-right:before{content:"\f35a"}.la.la-arrow-circle-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-left:before{content:"\f359"}.la.la-caret-square-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-left:before{content:"\f191"}.la.la-toggle-left{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-left:before{content:"\f191"}.la.la-dot-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-dot-circle-o:before{content:"\f192"}.la.la-vimeo-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-try:before{content:"\f195"}.la.la-turkish-lira:before{content:"\f195"}.la.la-plus-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-plus-square-o:before{content:"\f0fe"}.la.la-slack{font-family:'Line Awesome Brands';font-weight:400}.la.la-wordpress{font-family:'Line Awesome Brands';font-weight:400}.la.la-openid{font-family:'Line Awesome Brands';font-weight:400}.la.la-institution:before{content:"\f19c"}.la.la-bank:before{content:"\f19c"}.la.la-mortar-board:before{content:"\f19d"}.la.la-yahoo{font-family:'Line Awesome Brands';font-weight:400}.la.la-google{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-stumbleupon-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-stumbleupon{font-family:'Line Awesome Brands';font-weight:400}.la.la-delicious{font-family:'Line Awesome Brands';font-weight:400}.la.la-digg{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper-pp{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-drupal{font-family:'Line Awesome Brands';font-weight:400}.la.la-joomla{font-family:'Line Awesome Brands';font-weight:400}.la.la-spoon:before{content:"\f2e5"}.la.la-behance{font-family:'Line Awesome Brands';font-weight:400}.la.la-behance-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-steam{font-family:'Line Awesome Brands';font-weight:400}.la.la-steam-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-automobile:before{content:"\f1b9"}.la.la-cab:before{content:"\f1ba"}.la.la-envelope-o{font-family:'Line Awesome Free';font-weight:400}.la.la-envelope-o:before{content:"\f0e0"}.la.la-deviantart{font-family:'Line Awesome Brands';font-weight:400}.la.la-soundcloud{font-family:'Line Awesome Brands';font-weight:400}.la.la-file-pdf-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-pdf-o:before{content:"\f1c1"}.la.la-file-word-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-word-o:before{content:"\f1c2"}.la.la-file-excel-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-excel-o:before{content:"\f1c3"}.la.la-file-powerpoint-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-powerpoint-o:before{content:"\f1c4"}.la.la-file-image-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-image-o:before{content:"\f1c5"}.la.la-file-photo-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-photo-o:before{content:"\f1c5"}.la.la-file-picture-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-picture-o:before{content:"\f1c5"}.la.la-file-archive-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-archive-o:before{content:"\f1c6"}.la.la-file-zip-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-zip-o:before{content:"\f1c6"}.la.la-file-audio-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-audio-o:before{content:"\f1c7"}.la.la-file-sound-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-sound-o:before{content:"\f1c7"}.la.la-file-video-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-video-o:before{content:"\f1c8"}.la.la-file-movie-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-movie-o:before{content:"\f1c8"}.la.la-file-code-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-code-o:before{content:"\f1c9"}.la.la-vine{font-family:'Line Awesome Brands';font-weight:400}.la.la-codepen{font-family:'Line Awesome Brands';font-weight:400}.la.la-jsfiddle{font-family:'Line Awesome Brands';font-weight:400}.la.la-life-ring{font-family:'Line Awesome Free';font-weight:400}.la.la-life-bouy{font-family:'Line Awesome Free';font-weight:400}.la.la-life-bouy:before{content:"\f1cd"}.la.la-life-buoy{font-family:'Line Awesome Free';font-weight:400}.la.la-life-buoy:before{content:"\f1cd"}.la.la-life-saver{font-family:'Line Awesome Free';font-weight:400}.la.la-life-saver:before{content:"\f1cd"}.la.la-support{font-family:'Line Awesome Free';font-weight:400}.la.la-support:before{content:"\f1cd"}.la.la-circle-o-notch:before{content:"\f1ce"}.la.la-rebel{font-family:'Line Awesome Brands';font-weight:400}.la.la-ra{font-family:'Line Awesome Brands';font-weight:400}.la.la-ra:before{content:"\f1d0"}.la.la-resistance{font-family:'Line Awesome Brands';font-weight:400}.la.la-resistance:before{content:"\f1d0"}.la.la-empire{font-family:'Line Awesome Brands';font-weight:400}.la.la-ge{font-family:'Line Awesome Brands';font-weight:400}.la.la-ge:before{content:"\f1d1"}.la.la-git-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-git{font-family:'Line Awesome Brands';font-weight:400}.la.la-hacker-news{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator-square:before{content:"\f1d4"}.la.la-yc-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc-square:before{content:"\f1d4"}.la.la-tencent-weibo{font-family:'Line Awesome Brands';font-weight:400}.la.la-qq{font-family:'Line Awesome Brands';font-weight:400}.la.la-weixin{font-family:'Line Awesome Brands';font-weight:400}.la.la-wechat{font-family:'Line Awesome Brands';font-weight:400}.la.la-wechat:before{content:"\f1d7"}.la.la-send:before{content:"\f1d8"}.la.la-paper-plane-o{font-family:'Line Awesome Free';font-weight:400}.la.la-paper-plane-o:before{content:"\f1d8"}.la.la-send-o{font-family:'Line Awesome Free';font-weight:400}.la.la-send-o:before{content:"\f1d8"}.la.la-circle-thin{font-family:'Line Awesome Free';font-weight:400}.la.la-circle-thin:before{content:"\f111"}.la.la-header:before{content:"\f1dc"}.la.la-sliders:before{content:"\f1de"}.la.la-futbol-o{font-family:'Line Awesome Free';font-weight:400}.la.la-futbol-o:before{content:"\f1e3"}.la.la-soccer-ball-o{font-family:'Line Awesome Free';font-weight:400}.la.la-soccer-ball-o:before{content:"\f1e3"}.la.la-slideshare{font-family:'Line Awesome Brands';font-weight:400}.la.la-twitch{font-family:'Line Awesome Brands';font-weight:400}.la.la-yelp{font-family:'Line Awesome Brands';font-weight:400}.la.la-newspaper-o{font-family:'Line Awesome Free';font-weight:400}.la.la-newspaper-o:before{content:"\f1ea"}.la.la-paypal{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-wallet{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-visa{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-mastercard{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-discover{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-amex{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-paypal{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-stripe{font-family:'Line Awesome Brands';font-weight:400}.la.la-bell-slash-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bell-slash-o:before{content:"\f1f6"}.la.la-trash:before{content:"\f2ed"}.la.la-copyright{font-family:'Line Awesome Free';font-weight:400}.la.la-eyedropper:before{content:"\f1fb"}.la.la-area-chart:before{content:"\f1fe"}.la.la-pie-chart:before{content:"\f200"}.la.la-line-chart:before{content:"\f201"}.la.la-lastfm{font-family:'Line Awesome Brands';font-weight:400}.la.la-lastfm-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-ioxhost{font-family:'Line Awesome Brands';font-weight:400}.la.la-angellist{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc{font-family:'Line Awesome Free';font-weight:400}.la.la-cc:before{content:"\f20a"}.la.la-ils:before{content:"\f20b"}.la.la-shekel:before{content:"\f20b"}.la.la-sheqel:before{content:"\f20b"}.la.la-meanpath{font-family:'Line Awesome Brands';font-weight:400}.la.la-meanpath:before{content:"\f2b4"}.la.la-buysellads{font-family:'Line Awesome Brands';font-weight:400}.la.la-connectdevelop{font-family:'Line Awesome Brands';font-weight:400}.la.la-dashcube{font-family:'Line Awesome Brands';font-weight:400}.la.la-forumbee{font-family:'Line Awesome Brands';font-weight:400}.la.la-leanpub{font-family:'Line Awesome Brands';font-weight:400}.la.la-sellsy{font-family:'Line Awesome Brands';font-weight:400}.la.la-shirtsinbulk{font-family:'Line Awesome Brands';font-weight:400}.la.la-simplybuilt{font-family:'Line Awesome Brands';font-weight:400}.la.la-skyatlas{font-family:'Line Awesome Brands';font-weight:400}.la.la-diamond{font-family:'Line Awesome Free';font-weight:400}.la.la-diamond:before{content:"\f3a5"}.la.la-intersex:before{content:"\f224"}.la.la-facebook-official{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-official:before{content:"\f09a"}.la.la-pinterest-p{font-family:'Line Awesome Brands';font-weight:400}.la.la-whatsapp{font-family:'Line Awesome Brands';font-weight:400}.la.la-hotel:before{content:"\f236"}.la.la-viacoin{font-family:'Line Awesome Brands';font-weight:400}.la.la-medium{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc:before{content:"\f23b"}.la.la-optin-monster{font-family:'Line Awesome Brands';font-weight:400}.la.la-opencart{font-family:'Line Awesome Brands';font-weight:400}.la.la-expeditedssl{font-family:'Line Awesome Brands';font-weight:400}.la.la-battery-4:before{content:"\f240"}.la.la-battery:before{content:"\f240"}.la.la-battery-3:before{content:"\f241"}.la.la-battery-2:before{content:"\f242"}.la.la-battery-1:before{content:"\f243"}.la.la-battery-0:before{content:"\f244"}.la.la-object-group{font-family:'Line Awesome Free';font-weight:400}.la.la-object-ungroup{font-family:'Line Awesome Free';font-weight:400}.la.la-sticky-note-o{font-family:'Line Awesome Free';font-weight:400}.la.la-sticky-note-o:before{content:"\f249"}.la.la-cc-jcb{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-diners-club{font-family:'Line Awesome Brands';font-weight:400}.la.la-clone{font-family:'Line Awesome Free';font-weight:400}.la.la-hourglass-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hourglass-o:before{content:"\f254"}.la.la-hourglass-1:before{content:"\f251"}.la.la-hourglass-2:before{content:"\f252"}.la.la-hourglass-3:before{content:"\f253"}.la.la-hand-rock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-rock-o:before{content:"\f255"}.la.la-hand-grab-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-grab-o:before{content:"\f255"}.la.la-hand-paper-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-paper-o:before{content:"\f256"}.la.la-hand-stop-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-stop-o:before{content:"\f256"}.la.la-hand-scissors-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-scissors-o:before{content:"\f257"}.la.la-hand-lizard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-lizard-o:before{content:"\f258"}.la.la-hand-spock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-spock-o:before{content:"\f259"}.la.la-hand-pointer-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-pointer-o:before{content:"\f25a"}.la.la-hand-peace-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-peace-o:before{content:"\f25b"}.la.la-registered{font-family:'Line Awesome Free';font-weight:400}.la.la-creative-commons{font-family:'Line Awesome Brands';font-weight:400}.la.la-gg{font-family:'Line Awesome Brands';font-weight:400}.la.la-gg-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-tripadvisor{font-family:'Line Awesome Brands';font-weight:400}.la.la-odnoklassniki{font-family:'Line Awesome Brands';font-weight:400}.la.la-odnoklassniki-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-get-pocket{font-family:'Line Awesome Brands';font-weight:400}.la.la-wikipedia-w{font-family:'Line Awesome Brands';font-weight:400}.la.la-safari{font-family:'Line Awesome Brands';font-weight:400}.la.la-chrome{font-family:'Line Awesome Brands';font-weight:400}.la.la-firefox{font-family:'Line Awesome Brands';font-weight:400}.la.la-opera{font-family:'Line Awesome Brands';font-weight:400}.la.la-internet-explorer{font-family:'Line Awesome Brands';font-weight:400}.la.la-television:before{content:"\f26c"}.la.la-contao{font-family:'Line Awesome Brands';font-weight:400}.la.la-500px{font-family:'Line Awesome Brands';font-weight:400}.la.la-amazon{font-family:'Line Awesome Brands';font-weight:400}.la.la-calendar-plus-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-plus-o:before{content:"\f271"}.la.la-calendar-minus-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-minus-o:before{content:"\f272"}.la.la-calendar-times-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-times-o:before{content:"\f273"}.la.la-calendar-check-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-check-o:before{content:"\f274"}.la.la-map-o{font-family:'Line Awesome Free';font-weight:400}.la.la-map-o:before{content:"\f279"}.la.la-commenting:before{content:"\f4ad"}.la.la-commenting-o{font-family:'Line Awesome Free';font-weight:400}.la.la-commenting-o:before{content:"\f4ad"}.la.la-houzz{font-family:'Line Awesome Brands';font-weight:400}.la.la-vimeo{font-family:'Line Awesome Brands';font-weight:400}.la.la-vimeo:before{content:"\f27d"}.la.la-black-tie{font-family:'Line Awesome Brands';font-weight:400}.la.la-fonticons{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit-alien{font-family:'Line Awesome Brands';font-weight:400}.la.la-edge{font-family:'Line Awesome Brands';font-weight:400}.la.la-credit-card-alt:before{content:"\f09d"}.la.la-codiepie{font-family:'Line Awesome Brands';font-weight:400}.la.la-modx{font-family:'Line Awesome Brands';font-weight:400}.la.la-fort-awesome{font-family:'Line Awesome Brands';font-weight:400}.la.la-usb{font-family:'Line Awesome Brands';font-weight:400}.la.la-product-hunt{font-family:'Line Awesome Brands';font-weight:400}.la.la-mixcloud{font-family:'Line Awesome Brands';font-weight:400}.la.la-scribd{font-family:'Line Awesome Brands';font-weight:400}.la.la-pause-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-pause-circle-o:before{content:"\f28b"}.la.la-stop-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-stop-circle-o:before{content:"\f28d"}.la.la-bluetooth{font-family:'Line Awesome Brands';font-weight:400}.la.la-bluetooth-b{font-family:'Line Awesome Brands';font-weight:400}.la.la-gitlab{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpbeginner{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpforms{font-family:'Line Awesome Brands';font-weight:400}.la.la-envira{font-family:'Line Awesome Brands';font-weight:400}.la.la-wheelchair-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-wheelchair-alt:before{content:"\f368"}.la.la-question-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-question-circle-o:before{content:"\f059"}.la.la-volume-control-phone:before{content:"\f2a0"}.la.la-asl-interpreting:before{content:"\f2a3"}.la.la-deafness:before{content:"\f2a4"}.la.la-hard-of-hearing:before{content:"\f2a4"}.la.la-glide{font-family:'Line Awesome Brands';font-weight:400}.la.la-glide-g{font-family:'Line Awesome Brands';font-weight:400}.la.la-signing:before{content:"\f2a7"}.la.la-viadeo{font-family:'Line Awesome Brands';font-weight:400}.la.la-viadeo-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat-ghost{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper{font-family:'Line Awesome Brands';font-weight:400}.la.la-first-order{font-family:'Line Awesome Brands';font-weight:400}.la.la-yoast{font-family:'Line Awesome Brands';font-weight:400}.la.la-themeisle{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-official{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-official:before{content:"\f2b3"}.la.la-google-plus-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-circle:before{content:"\f2b3"}.la.la-font-awesome{font-family:'Line Awesome Brands';font-weight:400}.la.la-fa{font-family:'Line Awesome Brands';font-weight:400}.la.la-fa:before{content:"\f2b4"}.la.la-handshake-o{font-family:'Line Awesome Free';font-weight:400}.la.la-handshake-o:before{content:"\f2b5"}.la.la-envelope-open-o{font-family:'Line Awesome Free';font-weight:400}.la.la-envelope-open-o:before{content:"\f2b6"}.la.la-linode{font-family:'Line Awesome Brands';font-weight:400}.la.la-address-book-o{font-family:'Line Awesome Free';font-weight:400}.la.la-address-book-o:before{content:"\f2b9"}.la.la-vcard:before{content:"\f2bb"}.la.la-address-card-o{font-family:'Line Awesome Free';font-weight:400}.la.la-address-card-o:before{content:"\f2bb"}.la.la-vcard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-vcard-o:before{content:"\f2bb"}.la.la-user-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-user-circle-o:before{content:"\f2bd"}.la.la-user-o{font-family:'Line Awesome Free';font-weight:400}.la.la-user-o:before{content:"\f007"}.la.la-id-badge{font-family:'Line Awesome Free';font-weight:400}.la.la-drivers-license:before{content:"\f2c2"}.la.la-id-card-o{font-family:'Line Awesome Free';font-weight:400}.la.la-id-card-o:before{content:"\f2c2"}.la.la-drivers-license-o{font-family:'Line Awesome Free';font-weight:400}.la.la-drivers-license-o:before{content:"\f2c2"}.la.la-quora{font-family:'Line Awesome Brands';font-weight:400}.la.la-free-code-camp{font-family:'Line Awesome Brands';font-weight:400}.la.la-telegram{font-family:'Line Awesome Brands';font-weight:400}.la.la-thermometer-4:before{content:"\f2c7"}.la.la-thermometer:before{content:"\f2c7"}.la.la-thermometer-3:before{content:"\f2c8"}.la.la-thermometer-2:before{content:"\f2c9"}.la.la-thermometer-1:before{content:"\f2ca"}.la.la-thermometer-0:before{content:"\f2cb"}.la.la-bathtub:before{content:"\f2cd"}.la.la-s15:before{content:"\f2cd"}.la.la-window-maximize{font-family:'Line Awesome Free';font-weight:400}.la.la-window-restore{font-family:'Line Awesome Free';font-weight:400}.la.la-times-rectangle:before{content:"\f410"}.la.la-window-close-o{font-family:'Line Awesome Free';font-weight:400}.la.la-window-close-o:before{content:"\f410"}.la.la-times-rectangle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-times-rectangle-o:before{content:"\f410"}.la.la-bandcamp{font-family:'Line Awesome Brands';font-weight:400}.la.la-grav{font-family:'Line Awesome Brands';font-weight:400}.la.la-etsy{font-family:'Line Awesome Brands';font-weight:400}.la.la-imdb{font-family:'Line Awesome Brands';font-weight:400}.la.la-ravelry{font-family:'Line Awesome Brands';font-weight:400}.la.la-eercast{font-family:'Line Awesome Brands';font-weight:400}.la.la-eercast:before{content:"\f2da"}.la.la-snowflake-o{font-family:'Line Awesome Free';font-weight:400}.la.la-snowflake-o:before{content:"\f2dc"}.la.la-superpowers{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpexplorer{font-family:'Line Awesome Brands';font-weight:400}.la.la-spotify{font-family:'Line Awesome Brands';font-weight:400} diff --git a/desarrollo/diseno/registro-form/assets/css/main.css b/desarrollo/diseno/registro-form/assets/css/main.css deleted file mode 100644 index 2b6ff056..00000000 --- a/desarrollo/diseno/registro-form/assets/css/main.css +++ /dev/null @@ -1,266 +0,0 @@ -/*======================================================================= -* Template Name: Anfra -* Template URI: http://uigigs.com/html/Anfra -* Author: Uigigs -* Author URI: http://uigigs.com/ -* Description: Virtual Corona Prediction -* Version: 1.0 -* License: GPL v2 or later -* License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -* Tags: html, template, Anfra, Covid19, Virtual Corona Test, Corona -======================================================================= */ -/*---------------------------------------------- - 1.0 General Style ------------------------------------------------*/ -.pt30 { - padding-top: 30px; -} - -.pb30 { - padding-bottom: 30px; -} - -.pt40 { - padding-top: 40px; -} - -.pb40 { - padding-bottom: 40px; -} - -.pt60 { - padding-top: 60px; -} - -.pb60 { - padding-bottom: 60px; -} - -.pt70 { - padding-top: 70px; -} - -.pb70 { - padding-bottom: 70px; -} - -.pt80 { - padding-top: 80px; -} - -.pb80 { - padding-bottom: 80px; -} - -.pt100 { - padding-top: 100px; -} - -.pb100 { - padding-bottom: 100px; -} - -.pt130 { - padding-top: 130px; -} - -.pb130 { - padding-bottom: 130px; -} - -.pt150 { - padding-top: 150px; -} - -.pb150 { - padding-bottom: 150px; -} - -.pt180 { - padding-top: 180px; -} - -.pb180 { - padding-bottom: 180px; -} - -.pt200 { - padding-top: 200px; -} - -.pb200 { - padding-bottom: 200px; -} - -.mt10 { - margin-top: 10px; -} - -.mb10 { - margin-bottom: 10px; -} - -.mt20 { - margin-top: 20px; -} - -.mb20 { - margin-bottom: 20px; -} - -html { - font-size: 62.5%; -} - -body { - padding: 0; - margin: 0; - font-family: "Roboto", sans-serif; - font-size: 1.4rem; - line-height: 1.85; - color: #546274; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: "Roboto", sans-serif; - font-weight: 700; - line-height: 1.3; - margin-top: 0; - margin-bottom: 0; - color: inherit; -} -h1 a, -h2 a, -h3 a, -h4 a, -h5 a, -h6 a { - color: inherit; -} -h1 a:hover, -h2 a:hover, -h3 a:hover, -h4 a:hover, -h5 a:hover, -h6 a:hover { - color: inherit; -} - -h1 { - font-size: 6.4rem; -} - -h2 { - font-size: 4.8rem; -} - -h3 { - font-size: 3.6rem; -} - -h4 { - font-size: 2.8rem; -} - -h5 { - font-size: 2.2rem; -} - -h6 { - font-size: 1.8rem; -} - -p { - line-height: 1.85; - font-size: 1.4rem; - color: #546274; - margin: 0; - padding: 0; -} - -a { - -o-transition: all 0.3s ease; - transition: all 0.3s ease; - -ms-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -webkit-transition: all 0.3s ease; - outline: none; - text-decoration: none; -} - -a, -a:hover, -a:focus { - text-decoration: none; - display: inline-block; - color: inherit; - outline: none; -} - -textarea { - resize: none; -} - -input::-webkit-input-placeholder, -.form-control::-webkit-input-placeholder { - color: #546274; -} -input:-moz-placeholder, -.form-control:-moz-placeholder { - color: #546274; -} -input::-moz-placeholder, -.form-control::-moz-placeholder { - color: #546274; -} -input:-ms-input-placeholder, -.form-control:-ms-input-placeholder { - color: #546274; -} - -button, .btn { - border: 0; - background: transparent; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -.primary-color { - color: #1e85ff; -} - -.primary-bg { - background: #1e85ff; -} - -.white-text { - color: #ffffff; -} - -.white-bg { - background: #ffffff; -} - -.ugf-bg { - background-size: cover; -} - -/*------------------------------------------ - Responsive --------------------------------------------*/ -@media (max-width: 991px) { - .right-content-md { - margin-top: 30px; - } -} -@media all and (max-width: 767px) { - .right-content-sm { - margin-top: 30px; - } -} \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/assets/css/owl.carousel.min.css b/desarrollo/diseno/registro-form/assets/css/owl.carousel.min.css deleted file mode 100644 index a71df11c..00000000 --- a/desarrollo/diseno/registro-form/assets/css/owl.carousel.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/** - * 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 .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .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%;top: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 .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 .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/assets/css/theme-1.css b/desarrollo/diseno/registro-form/assets/css/theme-1.css deleted file mode 100644 index 4537f92c..00000000 --- a/desarrollo/diseno/registro-form/assets/css/theme-1.css +++ /dev/null @@ -1,1089 +0,0 @@ -.pt30 { - padding-top: 30px; -} - -.pb30 { - padding-bottom: 30px; -} - -.pt40 { - padding-top: 40px; -} - -.pb40 { - padding-bottom: 40px; -} - -.pt60 { - padding-top: 60px; -} - -.pb60 { - padding-bottom: 60px; -} - -.pt70 { - padding-top: 70px; -} - -.pb70 { - padding-bottom: 70px; -} - -.pt80 { - padding-top: 80px; -} - -.pb80 { - padding-bottom: 80px; -} - -.pt100 { - padding-top: 100px; -} - -.pb100 { - padding-bottom: 100px; -} - -.pt130 { - padding-top: 130px; -} - -.pb130 { - padding-bottom: 130px; -} - -.pt150 { - padding-top: 150px; -} - -.pb150 { - padding-bottom: 150px; -} - -.pt180 { - padding-top: 180px; -} - -.pb180 { - padding-bottom: 180px; -} - -.pt200 { - padding-top: 200px; -} - -.pb200 { - padding-bottom: 200px; -} - -.mt10 { - margin-top: 10px; -} - -.mb10 { - margin-bottom: 10px; -} - -.mt20 { - margin-top: 20px; -} - -.mb20 { - margin-bottom: 20px; -} - -.theme-bg { - background: url(../images/bg/theme-9-bg.jpg) no-repeat center right; - background-size: cover; -} - -.flat-grey-bg { - background: url(../images/bg/flat-grey-bg.jpg) no-repeat center right; - background-size: cover; -} - -.final-bg { - background: url(../images/bg/final-bg.jpg) no-repeat center bottom; - background-size: cover; -} - -.ugf-wrapper { - position: relative; -} -.ugf-wrapper .ugf-content-block { - min-height: 100vh; -} -.ugf-wrapper .ugf-content-block .logo.md-black-logo .logo-dark { - display: none; -} -.ugf-wrapper .ugf-sidebar { - position: absolute; - top: 0; - left: 0; - width: 33.5%; - min-height: 100vh; - height: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - padding: 40px 100px; - z-index: 9; -} -.ugf-wrapper .ugf-sidebar.sidebar-steps { - -webkit-box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.04); - box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.04); - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - min-width: 240px; -} -.ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step + .step { - margin-top: 40px; -} -.ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step.step-onprocess span { - color: #fff; - border-color: #fff; -} -.ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step.step-onprocess p { - color: #fff; -} -.ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step.complete-step span { - position: relative; - border: 0; -} -.ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step.complete-step span:before { - position: absolute; - top: 0; - left: 0; - height: 30px; - width: 30px; - content: url("../images/check.png"); -} -.ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step span { - height: 30px; - -webkit-box-flex: 0; - -ms-flex: 0 0 30px; - flex: 0 0 30px; - border-radius: 50%; - border: 1px solid rgba(0, 0, 0, 0.12); - line-height: 30px; - text-align: center; - font-size: 1.4rem; - color: #546274; - font-family: "Roboto", sans-serif; - font-weight: 700; - margin-right: 12px; -} -.ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step p { - font-size: 1.4rem; - color: #546274; - font-family: "Roboto", sans-serif; - font-weight: 700; - text-transform: uppercase; - margin-bottom: 0; -} - -.logo { - position: absolute; - top: 50px; - left: 100px; - z-index: 10; -} -.light-logo{ - display: block; -} -.dark-logo{ - display: none; -} - -.ugf-sidebar-bg { - background: url(../images/bg/sidebar-bg.jpg) no-repeat center bottom; - background-size: cover; -} - -.ugf-sidebar-bg-2 { - background: url(../images/bg/sidebar-bg2.jpg) no-repeat center bottom; - background-size: cover; -} - -.ugf-sidebar-bg-3 { - background: url(../images/bg/sidebar-bg2.jpg) no-repeat center bottom; - background-size: cover; -} - -.ugf-sidebar-bg-4 { - background: url(../images/bg/sidebar-bg2.jpg) no-repeat center bottom; - background-size: cover; -} - -.ugf-sidebar-bg-5 { - background: url(../images/bg/sidebar-bg2.jpg) no-repeat center bottom; - background-size: cover; -} - -.ugf-sidebar-bg-6 { - background: url(../images/bg/sidebar-bg2.jpg) no-repeat center bottom; - background-size: cover; -} - -.testimonial-carousel { - overflow: hidden; - position: relative; -} -.testimonial-carousel .item .quote { - margin-bottom: 25px; -} -.testimonial-carousel .item .quote img { - width: 50px; -} -.testimonial-carousel .item p { - font-size: 2rem; - font-family: "Roboto", sans-serif; - font-weight: 400; - color: #ffffff; - font-style: italic; - margin-bottom: 40px; -} -.testimonial-carousel .item .name, -.testimonial-carousel .item .designation { - font-size: 1.4rem; - font-family: "Roboto", sans-serif; - font-weight: 400; - color: #ffffff; -} -.testimonial-carousel .owl-dots { - position: absolute; - bottom: 13px; - right: 0; -} -.testimonial-carousel .owl-dots .owl-dot { - height: 10px; - width: 10px; - border-radius: 50%; - background: rgba(255, 255, 255, 0.1); - margin-left: 10px; - -webkit-transition: all 0.3s ease; - -o-transition: all 0.3s ease; - transition: all 0.3s ease; - outline: none; -} -.testimonial-carousel .owl-dots .owl-dot.active { - background: #ffffff; -} - -.ugf-sidebar .clients { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-top: 100px; -} - -.ugf-content.pt270 { - padding-top: 270px; -} -.ugf-content.pt340 { - padding-top: 340px; -} -.ugf-content.pt150 { - padding-top: 150px; -} -.ugf-content .prev-page { - font-size: 1.5rem; - font-weight: 700; - font-family: "Roboto", sans-serif; - color: #b2becc; - text-transform: uppercase; - position: relative; - padding-left: 20px; - margin-bottom: 50px; -} -.ugf-content .prev-page:before { - position: absolute; - top: 1px; - left: 0; - content: url(../images/arrow-left-grey.png); -} -.ugf-content h2 { - font-size: 3.6rem; - color: #1c2437; - font-weight: 700; - font-family: "Roboto", sans-serif; -} -.ugf-content h2 span { - display: block; -} -.ugf-content p { - font-size: 1.5rem; - color: #546274; - font-weight: 400; - font-family: "Roboto", sans-serif; - margin-top: 20px; -} -.ugf-content form { - margin-top: 40px; - max-width: 470px; -} -.ugf-content form.form-flex { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 100%; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-box-align: end; - -ms-flex-align: end; - align-items: flex-end; -} -.ugf-content form.form-flex .form-group { - -webkit-box-flex: 0; - -ms-flex: 0 0 calc(100% - 200px); - flex: 0 0 calc(100% - 200px); - margin-bottom: 0; -} -.ugf-content form.form-flex .btn { - -webkit-box-flex: 0; - -ms-flex: 0 0 170px; - flex: 0 0 170px; - background: #005fff; - color: #ffffff; - font-size: 1.4rem; - height: 60px; - padding: 0; - text-align: center; - font-weight: 700; - font-family: "Roboto", sans-serif; - text-transform: uppercase; - border-radius: 10px; - border: 0; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0 28px; - margin-bottom: 0; -} -.ugf-content form.form-flex .btn span { - line-height: 0; -} -.ugf-content form.form-flex .btn i { - font-size: 2rem; -} -.ugf-content form.email-form { - max-width: 100%; -} -.ugf-content form.email-verification-form .form-group { - -webkit-box-flex: 0; - -ms-flex: 0 0 80px; - flex: 0 0 80px; -} -.ugf-content form.email-verification-form .form-group:nth-child(5) { - border-right: 1px solid rgba(0, 0, 0, 0.12) !important; -} -.ugf-content form.email-verification-form .form-group .form-control { - font-size: 4rem; - height: 80px; - text-align: center; - border-right: 0; - background-image: none; -} -.ugf-content form.email-verification-form .form-group .form-control::-webkit-inner-spin-button, -.ugf-content form.email-verification-form .form-group .form-control::-webkit-outer-spin-button { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - margin: 0; -} -.ugf-content form.email-verification-form .btn { - margin-bottom: 0; - margin-left: 30px; - height: 80px; - -webkit-box-flex: 0; - -ms-flex: 0 0 120px; - flex: 0 0 120px; -} -.ugf-content form.account-form { - width: 100%; - max-width: 100%; - padding-bottom: 80px; -} -.ugf-content form.account-form .select-input { - position: relative; -} -.ugf-content form.account-form .select-input span { - position: absolute; - top: 27px; - right: 15px; - height: 0; - width: 0; - border-top: 6px solid #b2becc; - border-left: 6px solid transparent; - border-right: 6px solid transparent; -} -.ugf-content form.account-form .select-input .form-control { - padding-right: 0; - padding-left: 15px; - color: #b2becc; - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; -} -.ugf-content form.account-form .select-input .form-control option { - color: #546274; -} -.ugf-content form.account-form .birth-date { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} -.ugf-content form.account-form .birth-date .birth-date-input { - -webkit-box-flex: 0; - -ms-flex: 0 0 calc(33.33% - 8px); - flex: 0 0 calc(33.33% - 8px); - position: relative; -} -.ugf-content form.account-form .pass-group { - position: relative; -} -.ugf-content form.account-form .pass-group .pass-toggler-btn { - position: absolute; - bottom: 15px; - right: 20px; -} -.ugf-content form.account-form .pass-group .pass-toggler-btn i { - font-size: 2rem; - color: #b2becc; -} -.ugf-content form.account-form .pass-group .pass-toggler-btn #eye-slash { - display: none; -} -.ugf-content form.account-form .form-group.check-gender { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - border-radius: 10px; -} -.ugf-content form.account-form .form-group.check-gender .custom-radio { - -webkit-box-flex: 0; - -ms-flex: 0 0 173px; - flex: 0 0 173px; - margin-right: 20px; - border-radius: 10px; -} -.ugf-content form.account-form .form-group.check-gender .custom-radio .custom-control-input { - display: none; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; - -moz-appearance: none; - -webkit-appearance: none; - appearance: none; - border-radius: 10px; - -} -.ugf-content form.account-form .form-group.check-gender .custom-radio .custom-control-input:checked ~ .custom-control-label { - border-color: #005fff; - color: #005fff; -} -.ugf-content form.account-form .form-group.check-gender .custom-radio .custom-control-input:checked ~ .custom-control-label::before { - background: #005fff; -} -.ugf-content form.account-form .form-group.check-gender .custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: none; - content: url(../images/check-white.svg); -} -.ugf-content form.account-form .form-group.check-gender .custom-radio .custom-control-label { - background: #ffffff; - height: 60px; - border: 1px solid rgba(0, 0, 0, 0.12); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - font-size: 1.5rem; - font-weight: 400; - font-family: "Roboto", sans-serif; - color: #b2becc; - padding-left: 58px; - text-transform: capitalize; - border-radius: 10px; - -} -.ugf-content form.account-form .form-group.check-gender .custom-radio .custom-control-label:before { - height: 18px; - width: 18px; - border-radius: 2px; - background: #e1e7ee; - border: none; - top: 19px; - left: 20px; -} -.ugf-content form.account-form .form-group.check-gender .custom-radio .custom-control-label:after { - height: 18px; - width: 18px; - top: 20px; - left: 20px; -} -.ugf-content form.account-form .btn { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0 35px; - border-radius: 10px; - -} -.ugf-content form .form-group { - margin-bottom: 25px; - position: relative; -} -.ugf-content form .form-group label { - display: block; - font-size: 1.2rem; - font-weight: 700; - color: #1c2437; - font-family: "Roboto", sans-serif; - text-transform: uppercase; -} -.ugf-content form .form-group .form-control { - height: 60px; - border-radius: 10px; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; - font-size: 1.4rem; - padding: 0 20px; - border: 1px solid rgba(0, 0, 0, 0.12); -} -.ugf-content form .form-group .form-control::-webkit-input-placeholder { - /* Chrome/Opera/Safari */ - color: #b2becc; -} -.ugf-content form .form-group .form-control::-moz-placeholder { - /* Firefox 19+ */ - color: #b2becc; -} -.ugf-content form .form-group .form-control:-ms-input-placeholder { - /* IE 10+ */ - color: #b2becc; -} -.ugf-content form .form-group .form-control:-moz-placeholder { - /* Firefox 18- */ - color: #b2becc; -} -.ugf-content form .form-group .form-control.has-error { - border-color: #ff3e58; -} -.ugf-content form .form-group .form-control.has-error ~ .error-msg { - position: absolute; - top: -2px; - right: 0; - font-size: 1.2rem; - font-weight: 400; - color: #ff3e58; -} -.ugf-content form .form-group.check-flex { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.ugf-content form .form-group.check-flex .custom-checkbox .custom-control-input { - height: 18px; - width: 18px; - border-radius: 3px; - border: 3px solid rgba(0, 0, 0, 0.12); - outline: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.ugf-content form .form-group.check-flex .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { - background: #1888f5; -} -.ugf-content form .form-group.check-flex .custom-checkbox .custom-control-label { - width: auto; - text-align: left; - position: static; - top: auto; - left: auto; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - padding-left: 30px; - cursor: default; - text-transform: capitalize; - font-size: 1.4rem; - font-weight: 400; - color: #546274; -} -.ugf-content form .form-group.check-flex .custom-checkbox .custom-control-label:before { - top: 2px; - left: 0; - height: 18px; - width: 18px; - border-radius: 3px; - border: 2px solid rgba(0, 0, 0, 0.12); - -webkit-box-shadow: none; - box-shadow: none; - outline: none; -} -.ugf-content form .form-group.check-flex .custom-checkbox .custom-control-label:after { - top: 2px; - left: 0; - height: 18px; - width: 18px; -} -.ugf-content form .form-group.check-flex .custom-checkbox .custom-control-label a { - color: #005fff; -} -.ugf-content form .form-group.check-flex a { - color: #546274; - font-family: "Roboto", sans-serif; - font-weight: 400; -} -.ugf-content form .form-group.check-flex a:hover { - color: #005fff; -} -.ugf-content form .form-group.mb10 { - margin-bottom: 10px; -} -.ugf-content form .btn { - margin-bottom: 20px; - width: 250px; - text-align: center; - background: #005fff; - color: #ffffff; - font-size: 1.4rem; - height: 60px; - padding: 0; - font-weight: 700; - font-family: "Roboto", sans-serif; - text-transform: uppercase; - border-radius: 0; - border: 0; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; -} -.ugf-content form .btn-wrap { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} -.ugf-content form .btn-wrap .btn { - margin-right: 30px; -} -.ugf-content form .btn-wrap a { - margin-bottom: 20px; - font-size: 1.4rem; - font-family: "Roboto", sans-serif; - color: #97a2ae; - font-weight: 700; - text-transform: uppercase; -} -.ugf-content .account-category { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-top: 40px; - margin-bottom: 70px; -} -.ugf-content .account-category .account-type { - height: 230px; - -webkit-box-flex: 0; - -ms-flex: 0 0 230px; - flex: 0 0 230px; - border-radius: 10px; - -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.05); - box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.05); - border: 1px solid rgba(0, 0, 0, 0.12); - text-align: center; - margin-right: 30px; - background: #ffffff; - padding-top: 50px; - margin-bottom: 30px; -} -.ugf-content .account-category .account-type .account-icon { - height: 80px; - width: 80px; - border-radius: 5px; - border: 1px solid rgba(0, 95, 255, 0.2); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - margin: 0 auto; -} -.ugf-content .account-category .account-type p { - font-size: 1.4rem; - font-weight: 700; - color: #1c2437; - font-family: "Roboto", sans-serif; - text-transform: uppercase; -} -.ugf-content .account-category .account-type .icon i { - color: #1c2437; -} -.ugf-content .account-category .account-type:hover { - border-color: #005fff; -} -.ugf-content .account-category .account-type:hover p { - color: #005fff; -} -.ugf-content .account-category .account-type:hover .icon i { - color: #005fff; -} - - -.btn-width{ - max-width: 300px; - width: 100%; -} - -.alternet-access { - position: absolute; - top: 60px; - right: 100px; -} -.alternet-access p { - font-size: 1.4rem; - font-weight: 400; - color: #546274; - font-family: "Roboto", sans-serif; -} -.alternet-access p a { - color: #005fff; -} - -.resend-code { - font-size: 1.5rem; - font-family: "Roboto", sans-serif; - font-weight: 400; - color: #546274; - margin-top: 30px !important; -} -.resend-code a { - color: #005fff; - font-weight: 700; -} - -.final-content { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - height: 100vh; - text-align: center; - padding: 150px 15px; -} -.final-content h2 { - font-size: 3.6rem; - font-weight: 700; - color: #1c2437; - font-family: "Roboto", sans-serif; - margin-top: 35px; - margin-bottom: 10px; -} -.final-content p { - color: #546274; - font-size: 1.5rem; - font-weight: 400; - font-family: "Roboto", sans-serif; - margin-bottom: 40px; -} -.final-content .btn { - width: 270px; - text-align: center; - background: #005fff; - color: #ffffff; - font-size: 1.4rem; - height: 60px; - padding: 0; - font-weight: 700; - font-family: "Roboto", sans-serif; - text-transform: uppercase; - border-radius: 10px; - border: 0; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; - line-height: 60px; -} - -@media all and (max-width: 1600px) { - .logo { - top: 50px; - left: 60px; - } - - .alternet-access { - right: 60px; - } - - .ugf-wrapper .ugf-sidebar { - padding: 40px 60px; - } - - .ugf-sidebar .clients { - margin-top: 40px; - } - - .testimonial-carousel .item .quote { - margin-bottom: 20px; - } - .testimonial-carousel .item p { - margin-bottom: 30px; - } - - .ugf-content.pt270 { - padding-top: 180px; - } - .ugf-content.pt340 { - padding-top: 250px; - } -} -@media all and (max-width: 991px) { - .light-logo{ - display: none; - } - .dark-logo{ - display: block; - } - .ugf-wrapper .ugf-content-block { - min-height: auto; - } - .ugf-wrapper .ugf-content-block .logo { - width: 690px; - left: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - } - .ugf-wrapper .ugf-content-block .logo.md-black-logo .logo-light { - display: none; - } - .ugf-wrapper .ugf-content-block .logo.md-black-logo .logo-dark { - display: inline-block; - } - .ugf-wrapper .ugf-content-block .ugf-content { - padding: 200px 0 0; - } - .ugf-wrapper .ugf-content-block .alternet-access { - width: 690px; - position: static; - margin: 0 auto; - margin-bottom: 100px; - margin-top: 30px; - } - .ugf-wrapper .ugf-sidebar { - position: static; - width: 100%; - min-height: auto; - display: block; - padding: 100px 0 40px; - } - .ugf-wrapper .ugf-sidebar.sidebar-steps { - padding-bottom: 100px; - } - .ugf-wrapper .ugf-sidebar.sidebar-steps .steps { - max-width: 690px; - margin: 0 auto; - } - .ugf-wrapper .ugf-sidebar .testimonial-carousel { - max-width: 690px; - margin: 0 auto; - } - .ugf-wrapper .ugf-sidebar .clients { - max-width: 690px; - margin: 40px auto 0; - } - - .resend-code { - margin-bottom: 100px; - } -} -@media all and (max-width: 767px) { - .ugf-wrapper .ugf-content-block .logo { - width: calc(100% - 30px); - left: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - transform: translateX(-50%); - } - .ugf-wrapper .ugf-content-block .ugf-content { - padding: 200px 0 0; - } - .ugf-wrapper .ugf-content-block .alternet-access { - width: calc(100% - 30px); - position: static; - margin: 0 auto; - margin-bottom: 100px; - margin-top: 30px; - } - .ugf-wrapper .ugf-sidebar { - position: static; - width: 100%; - min-height: auto; - display: block; - padding: 100px 0 40px; - } - .ugf-wrapper .ugf-sidebar.sidebar-steps .steps { - max-width: calc(100% - 30px); - } - .ugf-wrapper .ugf-sidebar .testimonial-carousel { - max-width: calc(100% - 30px); - margin: 0 auto; - } - .ugf-wrapper .ugf-sidebar .clients { - width: 100%; - max-width: 500px; - margin: 40px 0 0 15px; - } - - .ugf-content form.email-verification-form { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - .ugf-content form.email-verification-form .form-group { - -webkit-box-flex: 0; - -ms-flex: 0 0 55px; - flex: 0 0 55px; - } - .ugf-content form.email-verification-form .form-group .form-control { - height: 55px; - font-size: 2rem; - } - .ugf-content form.email-verification-form .btn { - height: 55px; - margin-left: 20px; - } -} -@media all and (max-width: 539px) { - .ugf-content form.form-flex { - display: block; - max-width: 400px; - } - .ugf-content form.form-flex .form-group { - margin-bottom: 25px; - } - .ugf-content form.email-verification-form { - -ms-flex-wrap: wrap; - flex-wrap: wrap; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - max-width: 415px; - } - .ugf-content form.email-verification-form .btn { - margin-bottom: 25px; - margin-left: auto; - } - - .resend-code { - margin-top: 10px !important; - } - - .ugf-wrapper .ugf-sidebar .clients { - margin: 0; - margin-top: 25px; - padding: 0 15px; - } - .ugf-wrapper .ugf-sidebar .clients .client { - -webkit-box-flex: 0; - -ms-flex: 0 0 50%; - flex: 0 0 50%; - margin-top: 15px; - } - - .ugf-wrapper .ugf-sidebar.sidebar-steps .steps .step + .step { - margin-top: 30px; - } - - .final-content h2 { - font-size: 3.2rem; - } -} -@media all and (max-width: 469px) { - .ugf-content form.email-verification-form { - max-width: 394px; - } - .ugf-content form.email-verification-form .btn { - margin-bottom: 25px; - margin-left: 0; - } -} \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/assets/desktop.ini b/desarrollo/diseno/registro-form/assets/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-form/assets/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/account-business.png b/desarrollo/diseno/registro-form/assets/images/account-business.png deleted file mode 100644 index 9d36745a..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/account-business.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/account-personal.png b/desarrollo/diseno/registro-form/assets/images/account-personal.png deleted file mode 100644 index 2ceb1319..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/account-personal.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/apple-touch-icon.png b/desarrollo/diseno/registro-form/assets/images/apple-touch-icon.png deleted file mode 100644 index 3b55ab08..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/apple-touch-icon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/bg/desktop.ini b/desarrollo/diseno/registro-form/assets/images/bg/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/bg/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/bg/sidebar-bg.jpg b/desarrollo/diseno/registro-form/assets/images/bg/sidebar-bg.jpg deleted file mode 100644 index 572c3cc7..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/bg/sidebar-bg.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/bg/sidebar-bg2.jpg b/desarrollo/diseno/registro-form/assets/images/bg/sidebar-bg2.jpg deleted file mode 100644 index 5cceb11a..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/bg/sidebar-bg2.jpg and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/big-green-check.png b/desarrollo/diseno/registro-form/assets/images/big-green-check.png deleted file mode 100644 index c01e7fbd..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/big-green-check.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/client/1.png b/desarrollo/diseno/registro-form/assets/images/client/1.png deleted file mode 100644 index 15e3646d..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/client/1.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/client/2.png b/desarrollo/diseno/registro-form/assets/images/client/2.png deleted file mode 100644 index 84f1e815..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/client/2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/client/3.png b/desarrollo/diseno/registro-form/assets/images/client/3.png deleted file mode 100644 index 54ce84f5..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/client/3.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/client/4.png b/desarrollo/diseno/registro-form/assets/images/client/4.png deleted file mode 100644 index 6866a926..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/client/4.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/client/desktop.ini b/desarrollo/diseno/registro-form/assets/images/client/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/client/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/desktop.ini b/desarrollo/diseno/registro-form/assets/images/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/favicon.png b/desarrollo/diseno/registro-form/assets/images/favicon.png deleted file mode 100644 index 0799fa75..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/favicon.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/icon-114x114.png b/desarrollo/diseno/registro-form/assets/images/icon-114x114.png deleted file mode 100644 index 205a4722..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/icon-114x114.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/icon-72x72.png b/desarrollo/diseno/registro-form/assets/images/icon-72x72.png deleted file mode 100644 index c5bb7d22..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/icon-72x72.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/logo-dark2.png b/desarrollo/diseno/registro-form/assets/images/logo-dark2.png deleted file mode 100644 index 77d60c7b..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/logo-dark2.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/logo.png b/desarrollo/diseno/registro-form/assets/images/logo.png deleted file mode 100644 index e536923c..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/logo.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/quote (1).png b/desarrollo/diseno/registro-form/assets/images/quote (1).png deleted file mode 100644 index ee83b342..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/quote (1).png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/quote (2).png b/desarrollo/diseno/registro-form/assets/images/quote (2).png deleted file mode 100644 index ee83b342..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/quote (2).png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/images/quote.png b/desarrollo/diseno/registro-form/assets/images/quote.png deleted file mode 100644 index ee83b342..00000000 Binary files a/desarrollo/diseno/registro-form/assets/images/quote.png and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/js/bootstrap.min.js b/desarrollo/diseno/registro-form/assets/js/bootstrap.min.js deleted file mode 100644 index 4e65dfb1..00000000 --- a/desarrollo/diseno/registro-form/assets/js/bootstrap.min.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! - * Bootstrap v5.3.0-alpha3 (https://getbootstrap.com/) - * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e()}(this,(function(){"use strict";const t=new Map,e={set(e,i,n){t.has(e)||t.set(e,new Map);const s=t.get(e);s.has(i)||0===s.size?s.set(i,n):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(e,i)=>t.has(e)&&t.get(e).get(i)||null,remove(e,i){if(!t.has(e))return;const n=t.get(e);n.delete(i),0===n.size&&t.delete(e)}},i="transitionend",n=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),s=t=>{t.dispatchEvent(new Event(i))},o=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),r=t=>o(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(n(t)):null,a=t=>{if(!o(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},l=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),c=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?c(t.parentNode):null},h=()=>{},d=t=>{t.offsetHeight},u=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,f=[],p=()=>"rtl"===document.documentElement.dir,m=t=>{var e;e=()=>{const e=u();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(f.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of f)t()})),f.push(e)):e()},g=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,_=(t,e,n=!0)=>{if(!n)return void g(t);const o=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let r=!1;const a=({target:n})=>{n===e&&(r=!0,e.removeEventListener(i,a),g(t))};e.addEventListener(i,a),setTimeout((()=>{r||s(e)}),o)},b=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},v=/[^.]*(?=\..*)\.|.*/,y=/\..*/,w=/::\d+$/,A={};let E=1;const T={mouseenter:"mouseover",mouseleave:"mouseout"},C=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function O(t,e){return e&&`${e}::${E++}`||t.uidEvent||E++}function x(t){const e=O(t);return t.uidEvent=e,A[e]=A[e]||{},A[e]}function k(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function L(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=N(t);return C.has(o)||(o=t),[n,s,o]}function S(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=L(e,i,n);if(e in T){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=x(t),c=l[a]||(l[a]={}),h=k(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=O(r,e.replace(v,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return j(s,{delegateTarget:r}),n.oneOff&&P.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return j(n,{delegateTarget:t}),i.oneOff&&P.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function D(t,e,i,n,s){const o=k(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function I(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&D(t,e,i,r.callable,r.delegationSelector)}function N(t){return t=t.replace(y,""),T[t]||t}const P={on(t,e,i,n){S(t,e,i,n,!1)},one(t,e,i,n){S(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=L(e,i,n),a=r!==e,l=x(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))I(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(w,"");a&&!e.includes(s)||D(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;D(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=u();let s=null,o=!0,r=!0,a=!1;e!==N(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=j(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function j(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function M(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function F(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const H={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${F(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${F(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=M(t.dataset[n])}return e},getDataAttribute:(t,e)=>M(t.getAttribute(`data-bs-${F(e)}`))};class ${static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=o(e)?H.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...o(e)?H.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],r=o(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(r))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${r}" but expected type "${s}".`)}var i}}class W extends ${constructor(t,i){super(),(t=r(t))&&(this._element=t,this._config=this._getConfig(i),e.set(this._element,this.constructor.DATA_KEY,this))}dispose(){e.remove(this._element,this.constructor.DATA_KEY),P.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){_(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return e.get(r(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.0-alpha2"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const B=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?i.trim():null}return n(e)},z={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!l(t)&&a(t)))},getSelectorFromElement(t){const e=B(t);return e&&z.findOne(e)?e:null},getElementFromSelector(t){const e=B(t);return e?z.findOne(e):null},getMultipleElementsFromSelector(t){const e=B(t);return e?z.find(e):[]}},R=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;P.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),l(this))return;const s=z.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))};class q extends W{static get NAME(){return"alert"}close(){if(P.trigger(this._element,"close.bs.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),P.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=q.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}R(q,"close"),m(q);const V='[data-bs-toggle="button"]';class K extends W{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=K.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}P.on(document,"click.bs.button.data-api",V,(t=>{t.preventDefault();const e=t.target.closest(V);K.getOrCreateInstance(e).toggle()})),m(K);const Q={endCallback:null,leftCallback:null,rightCallback:null},X={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class Y extends ${constructor(t,e){super(),this._element=t,t&&Y.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return Q}static get DefaultType(){return X}static get NAME(){return"swipe"}dispose(){P.off(this._element,".bs.swipe")}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),g(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&g(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(P.on(this._element,"pointerdown.bs.swipe",(t=>this._start(t))),P.on(this._element,"pointerup.bs.swipe",(t=>this._end(t))),this._element.classList.add("pointer-event")):(P.on(this._element,"touchstart.bs.swipe",(t=>this._start(t))),P.on(this._element,"touchmove.bs.swipe",(t=>this._move(t))),P.on(this._element,"touchend.bs.swipe",(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const U="next",G="prev",J="left",Z="right",tt="slid.bs.carousel",et="carousel",it="active",nt={ArrowLeft:Z,ArrowRight:J},st={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},ot={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class rt extends W{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=z.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===et&&this.cycle()}static get Default(){return st}static get DefaultType(){return ot}static get NAME(){return"carousel"}next(){this._slide(U)}nextWhenVisible(){!document.hidden&&a(this._element)&&this.next()}prev(){this._slide(G)}pause(){this._isSliding&&s(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?P.one(this._element,tt,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void P.one(this._element,tt,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?U:G;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&P.on(this._element,"keydown.bs.carousel",(t=>this._keydown(t))),"hover"===this._config.pause&&(P.on(this._element,"mouseenter.bs.carousel",(()=>this.pause())),P.on(this._element,"mouseleave.bs.carousel",(()=>this._maybeEnableCycle()))),this._config.touch&&Y.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of z.find(".carousel-item img",this._element))P.on(t,"dragstart.bs.carousel",(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(J)),rightCallback:()=>this._slide(this._directionToOrder(Z)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new Y(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=nt[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=z.findOne(".active",this._indicatorsElement);e.classList.remove(it),e.removeAttribute("aria-current");const i=z.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(it),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===U,s=e||b(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>P.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r("slide.bs.carousel").defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),d(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(it),i.classList.remove(it,c,l),this._isSliding=!1,r(tt)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return z.findOne(".active.carousel-item",this._element)}_getItems(){return z.find(".carousel-item",this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return p()?t===J?G:U:t===J?U:G}_orderToDirection(t){return p()?t===G?J:Z:t===G?Z:J}static jQueryInterface(t){return this.each((function(){const e=rt.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}P.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",(function(t){const e=z.getElementFromSelector(this);if(!e||!e.classList.contains(et))return;t.preventDefault();const i=rt.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===H.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),P.on(window,"load.bs.carousel.data-api",(()=>{const t=z.find('[data-bs-ride="carousel"]');for(const e of t)rt.getOrCreateInstance(e)})),m(rt);const at="show",lt="collapse",ct="collapsing",ht='[data-bs-toggle="collapse"]',dt={parent:null,toggle:!0},ut={parent:"(null|element)",toggle:"boolean"};class ft extends W{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=z.find(ht);for(const t of i){const e=z.getSelectorFromElement(t),i=z.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return dt}static get DefaultType(){return ut}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>ft.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(P.trigger(this._element,"show.bs.collapse").defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(lt),this._element.classList.add(ct),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ct),this._element.classList.add(lt,at),this._element.style[e]="",P.trigger(this._element,"shown.bs.collapse")}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(P.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,d(this._element),this._element.classList.add(ct),this._element.classList.remove(lt,at);for(const t of this._triggerArray){const e=z.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(ct),this._element.classList.add(lt),P.trigger(this._element,"hidden.bs.collapse")}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(at)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=r(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(ht);for(const e of t){const t=z.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=z.find(":scope .collapse .collapse",this._config.parent);return z.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=ft.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}P.on(document,"click.bs.collapse.data-api",ht,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of z.getMultipleElementsFromSelector(this))ft.getOrCreateInstance(t,{toggle:!1}).toggle()})),m(ft);var pt="top",mt="bottom",gt="right",_t="left",bt="auto",vt=[pt,mt,gt,_t],yt="start",wt="end",At="clippingParents",Et="viewport",Tt="popper",Ct="reference",Ot=vt.reduce((function(t,e){return t.concat([e+"-"+yt,e+"-"+wt])}),[]),xt=[].concat(vt,[bt]).reduce((function(t,e){return t.concat([e,e+"-"+yt,e+"-"+wt])}),[]),kt="beforeRead",Lt="read",St="afterRead",Dt="beforeMain",It="main",Nt="afterMain",Pt="beforeWrite",jt="write",Mt="afterWrite",Ft=[kt,Lt,St,Dt,It,Nt,Pt,jt,Mt];function Ht(t){return t?(t.nodeName||"").toLowerCase():null}function $t(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function Wt(t){return t instanceof $t(t).Element||t instanceof Element}function Bt(t){return t instanceof $t(t).HTMLElement||t instanceof HTMLElement}function zt(t){return"undefined"!=typeof ShadowRoot&&(t instanceof $t(t).ShadowRoot||t instanceof ShadowRoot)}const Rt={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];Bt(s)&&Ht(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});Bt(n)&&Ht(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function qt(t){return t.split("-")[0]}var Vt=Math.max,Kt=Math.min,Qt=Math.round;function Xt(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function Yt(){return!/^((?!chrome|android).)*safari/i.test(Xt())}function Ut(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&Bt(t)&&(s=t.offsetWidth>0&&Qt(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&Qt(n.height)/t.offsetHeight||1);var r=(Wt(t)?$t(t):window).visualViewport,a=!Yt()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function Gt(t){var e=Ut(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function Jt(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&zt(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function Zt(t){return $t(t).getComputedStyle(t)}function te(t){return["table","td","th"].indexOf(Ht(t))>=0}function ee(t){return((Wt(t)?t.ownerDocument:t.document)||window.document).documentElement}function ie(t){return"html"===Ht(t)?t:t.assignedSlot||t.parentNode||(zt(t)?t.host:null)||ee(t)}function ne(t){return Bt(t)&&"fixed"!==Zt(t).position?t.offsetParent:null}function se(t){for(var e=$t(t),i=ne(t);i&&te(i)&&"static"===Zt(i).position;)i=ne(i);return i&&("html"===Ht(i)||"body"===Ht(i)&&"static"===Zt(i).position)?e:i||function(t){var e=/firefox/i.test(Xt());if(/Trident/i.test(Xt())&&Bt(t)&&"fixed"===Zt(t).position)return null;var i=ie(t);for(zt(i)&&(i=i.host);Bt(i)&&["html","body"].indexOf(Ht(i))<0;){var n=Zt(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function oe(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function re(t,e,i){return Vt(t,Kt(e,i))}function ae(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function le(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const ce={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,i=t.state,n=t.name,s=t.options,o=i.elements.arrow,r=i.modifiersData.popperOffsets,a=qt(i.placement),l=oe(a),c=[_t,gt].indexOf(a)>=0?"height":"width";if(o&&r){var h=function(t,e){return ae("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:le(t,vt))}(s.padding,i),d=Gt(o),u="y"===l?pt:_t,f="y"===l?mt:gt,p=i.rects.reference[c]+i.rects.reference[l]-r[l]-i.rects.popper[c],m=r[l]-i.rects.reference[l],g=se(o),_=g?"y"===l?g.clientHeight||0:g.clientWidth||0:0,b=p/2-m/2,v=h[u],y=_-d[c]-h[f],w=_/2-d[c]/2+b,A=re(v,w,y),E=l;i.modifiersData[n]=((e={})[E]=A,e.centerOffset=A-w,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&Jt(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function he(t){return t.split("-")[1]}var de={top:"auto",right:"auto",bottom:"auto",left:"auto"};function ue(t){var e,i=t.popper,n=t.popperRect,s=t.placement,o=t.variation,r=t.offsets,a=t.position,l=t.gpuAcceleration,c=t.adaptive,h=t.roundOffsets,d=t.isFixed,u=r.x,f=void 0===u?0:u,p=r.y,m=void 0===p?0:p,g="function"==typeof h?h({x:f,y:m}):{x:f,y:m};f=g.x,m=g.y;var _=r.hasOwnProperty("x"),b=r.hasOwnProperty("y"),v=_t,y=pt,w=window;if(c){var A=se(i),E="clientHeight",T="clientWidth";A===$t(i)&&"static"!==Zt(A=ee(i)).position&&"absolute"===a&&(E="scrollHeight",T="scrollWidth"),(s===pt||(s===_t||s===gt)&&o===wt)&&(y=mt,m-=(d&&A===w&&w.visualViewport?w.visualViewport.height:A[E])-n.height,m*=l?1:-1),s!==_t&&(s!==pt&&s!==mt||o!==wt)||(v=gt,f-=(d&&A===w&&w.visualViewport?w.visualViewport.width:A[T])-n.width,f*=l?1:-1)}var C,O=Object.assign({position:a},c&&de),x=!0===h?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:Qt(i*s)/s||0,y:Qt(n*s)/s||0}}({x:f,y:m},$t(i)):{x:f,y:m};return f=x.x,m=x.y,l?Object.assign({},O,((C={})[y]=b?"0":"",C[v]=_?"0":"",C.transform=(w.devicePixelRatio||1)<=1?"translate("+f+"px, "+m+"px)":"translate3d("+f+"px, "+m+"px, 0)",C)):Object.assign({},O,((e={})[y]=b?m+"px":"",e[v]=_?f+"px":"",e.transform="",e))}const fe={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:qt(e.placement),variation:he(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,ue(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,ue(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var pe={passive:!0};const me={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=$t(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,pe)})),a&&l.addEventListener("resize",i.update,pe),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,pe)})),a&&l.removeEventListener("resize",i.update,pe)}},data:{}};var ge={left:"right",right:"left",bottom:"top",top:"bottom"};function _e(t){return t.replace(/left|right|bottom|top/g,(function(t){return ge[t]}))}var be={start:"end",end:"start"};function ve(t){return t.replace(/start|end/g,(function(t){return be[t]}))}function ye(t){var e=$t(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function we(t){return Ut(ee(t)).left+ye(t).scrollLeft}function Ae(t){var e=Zt(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function Ee(t){return["html","body","#document"].indexOf(Ht(t))>=0?t.ownerDocument.body:Bt(t)&&Ae(t)?t:Ee(ie(t))}function Te(t,e){var i;void 0===e&&(e=[]);var n=Ee(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=$t(n),r=s?[o].concat(o.visualViewport||[],Ae(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(Te(ie(r)))}function Ce(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function Oe(t,e,i){return e===Et?Ce(function(t,e){var i=$t(t),n=ee(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=Yt();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+we(t),y:l}}(t,i)):Wt(e)?function(t,e){var i=Ut(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):Ce(function(t){var e,i=ee(t),n=ye(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=Vt(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=Vt(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+we(t),l=-n.scrollTop;return"rtl"===Zt(s||i).direction&&(a+=Vt(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(ee(t)))}function xe(t){var e,i=t.reference,n=t.element,s=t.placement,o=s?qt(s):null,r=s?he(s):null,a=i.x+i.width/2-n.width/2,l=i.y+i.height/2-n.height/2;switch(o){case pt:e={x:a,y:i.y-n.height};break;case mt:e={x:a,y:i.y+i.height};break;case gt:e={x:i.x+i.width,y:l};break;case _t:e={x:i.x-n.width,y:l};break;default:e={x:i.x,y:i.y}}var c=o?oe(o):null;if(null!=c){var h="y"===c?"height":"width";switch(r){case yt:e[c]=e[c]-(i[h]/2-n[h]/2);break;case wt:e[c]=e[c]+(i[h]/2-n[h]/2)}}return e}function ke(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=void 0===n?t.placement:n,o=i.strategy,r=void 0===o?t.strategy:o,a=i.boundary,l=void 0===a?At:a,c=i.rootBoundary,h=void 0===c?Et:c,d=i.elementContext,u=void 0===d?Tt:d,f=i.altBoundary,p=void 0!==f&&f,m=i.padding,g=void 0===m?0:m,_=ae("number"!=typeof g?g:le(g,vt)),b=u===Tt?Ct:Tt,v=t.rects.popper,y=t.elements[p?b:u],w=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=Te(ie(t)),i=["absolute","fixed"].indexOf(Zt(t).position)>=0&&Bt(t)?se(t):t;return Wt(i)?e.filter((function(t){return Wt(t)&&Jt(t,i)&&"body"!==Ht(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=Oe(t,i,n);return e.top=Vt(s.top,e.top),e.right=Kt(s.right,e.right),e.bottom=Kt(s.bottom,e.bottom),e.left=Vt(s.left,e.left),e}),Oe(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(Wt(y)?y:y.contextElement||ee(t.elements.popper),l,h,r),A=Ut(t.elements.reference),E=xe({reference:A,element:v,strategy:"absolute",placement:s}),T=Ce(Object.assign({},v,E)),C=u===Tt?T:A,O={top:w.top-C.top+_.top,bottom:C.bottom-w.bottom+_.bottom,left:w.left-C.left+_.left,right:C.right-w.right+_.right},x=t.modifiersData.offset;if(u===Tt&&x){var k=x[s];Object.keys(O).forEach((function(t){var e=[gt,mt].indexOf(t)>=0?1:-1,i=[pt,mt].indexOf(t)>=0?"y":"x";O[t]+=k[i]*e}))}return O}function Le(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,a=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?xt:l,h=he(n),d=h?a?Ot:Ot.filter((function(t){return he(t)===h})):vt,u=d.filter((function(t){return c.indexOf(t)>=0}));0===u.length&&(u=d);var f=u.reduce((function(e,i){return e[i]=ke(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[qt(i)],e}),{});return Object.keys(f).sort((function(t,e){return f[t]-f[e]}))}const Se={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name;if(!e.modifiersData[n]._skip){for(var s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0===r||r,l=i.fallbackPlacements,c=i.padding,h=i.boundary,d=i.rootBoundary,u=i.altBoundary,f=i.flipVariations,p=void 0===f||f,m=i.allowedAutoPlacements,g=e.options.placement,_=qt(g),b=l||(_!==g&&p?function(t){if(qt(t)===bt)return[];var e=_e(t);return[ve(t),e,ve(e)]}(g):[_e(g)]),v=[g].concat(b).reduce((function(t,i){return t.concat(qt(i)===bt?Le(e,{placement:i,boundary:h,rootBoundary:d,padding:c,flipVariations:p,allowedAutoPlacements:m}):i)}),[]),y=e.rects.reference,w=e.rects.popper,A=new Map,E=!0,T=v[0],C=0;C=0,S=L?"width":"height",D=ke(e,{placement:O,boundary:h,rootBoundary:d,altBoundary:u,padding:c}),I=L?k?gt:_t:k?mt:pt;y[S]>w[S]&&(I=_e(I));var N=_e(I),P=[];if(o&&P.push(D[x]<=0),a&&P.push(D[I]<=0,D[N]<=0),P.every((function(t){return t}))){T=O,E=!1;break}A.set(O,P)}if(E)for(var j=function(t){var e=v.find((function(e){var i=A.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return T=e,"break"},M=p?3:1;M>0&&"break"!==j(M);M--);e.placement!==T&&(e.modifiersData[n]._skip=!0,e.placement=T,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function De(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function Ie(t){return[pt,gt,mt,_t].some((function(e){return t[e]>=0}))}const Ne={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=ke(e,{elementContext:"reference"}),a=ke(e,{altBoundary:!0}),l=De(r,n),c=De(a,s,o),h=Ie(l),d=Ie(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},Pe={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.offset,o=void 0===s?[0,0]:s,r=xt.reduce((function(t,i){return t[i]=function(t,e,i){var n=qt(t),s=[_t,pt].indexOf(n)>=0?-1:1,o="function"==typeof i?i(Object.assign({},e,{placement:t})):i,r=o[0],a=o[1];return r=r||0,a=(a||0)*s,[_t,gt].indexOf(n)>=0?{x:a,y:r}:{x:r,y:a}}(i,e.rects,o),t}),{}),a=r[e.placement],l=a.x,c=a.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=l,e.modifiersData.popperOffsets.y+=c),e.modifiersData[n]=r}},je={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=xe({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},Me={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,i=t.options,n=t.name,s=i.mainAxis,o=void 0===s||s,r=i.altAxis,a=void 0!==r&&r,l=i.boundary,c=i.rootBoundary,h=i.altBoundary,d=i.padding,u=i.tether,f=void 0===u||u,p=i.tetherOffset,m=void 0===p?0:p,g=ke(e,{boundary:l,rootBoundary:c,padding:d,altBoundary:h}),_=qt(e.placement),b=he(e.placement),v=!b,y=oe(_),w="x"===y?"y":"x",A=e.modifiersData.popperOffsets,E=e.rects.reference,T=e.rects.popper,C="function"==typeof m?m(Object.assign({},e.rects,{placement:e.placement})):m,O="number"==typeof C?{mainAxis:C,altAxis:C}:Object.assign({mainAxis:0,altAxis:0},C),x=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,k={x:0,y:0};if(A){if(o){var L,S="y"===y?pt:_t,D="y"===y?mt:gt,I="y"===y?"height":"width",N=A[y],P=N+g[S],j=N-g[D],M=f?-T[I]/2:0,F=b===yt?E[I]:T[I],H=b===yt?-T[I]:-E[I],$=e.elements.arrow,W=f&&$?Gt($):{width:0,height:0},B=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},z=B[S],R=B[D],q=re(0,E[I],W[I]),V=v?E[I]/2-M-q-z-O.mainAxis:F-q-z-O.mainAxis,K=v?-E[I]/2+M+q+R+O.mainAxis:H+q+R+O.mainAxis,Q=e.elements.arrow&&se(e.elements.arrow),X=Q?"y"===y?Q.clientTop||0:Q.clientLeft||0:0,Y=null!=(L=null==x?void 0:x[y])?L:0,U=N+K-Y,G=re(f?Kt(P,N+V-Y-X):P,N,f?Vt(j,U):j);A[y]=G,k[y]=G-N}if(a){var J,Z="x"===y?pt:_t,tt="x"===y?mt:gt,et=A[w],it="y"===w?"height":"width",nt=et+g[Z],st=et-g[tt],ot=-1!==[pt,_t].indexOf(_),rt=null!=(J=null==x?void 0:x[w])?J:0,at=ot?nt:et-E[it]-T[it]-rt+O.altAxis,lt=ot?et+E[it]+T[it]-rt-O.altAxis:st,ct=f&&ot?function(t,e,i){var n=re(t,e,i);return n>i?i:n}(at,et,lt):re(f?at:nt,et,f?lt:st);A[w]=ct,k[w]=ct-et}e.modifiersData[n]=k}},requiresIfExists:["offset"]};function Fe(t,e,i){void 0===i&&(i=!1);var n,s,o=Bt(e),r=Bt(e)&&function(t){var e=t.getBoundingClientRect(),i=Qt(e.width)/t.offsetWidth||1,n=Qt(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=ee(e),l=Ut(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==Ht(e)||Ae(a))&&(c=(n=e)!==$t(n)&&Bt(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:ye(n)),Bt(e)?((h=Ut(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=we(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function He(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var $e={placement:"bottom",modifiers:[],strategy:"absolute"};function We(){for(var t=arguments.length,e=new Array(t),i=0;iNumber.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(H.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...g(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=z.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>a(t)));i.length&&b(i,e,t===Xe,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=ci.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=z.find(Ze);for(const i of e){const e=ci.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Qe,Xe].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Je)?this:z.prev(this,Je)[0]||z.next(this,Je)[0]||z.findOne(Je,t.delegateTarget.parentNode),o=ci.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}P.on(document,Ue,Je,ci.dataApiKeydownHandler),P.on(document,Ue,ti,ci.dataApiKeydownHandler),P.on(document,Ye,ci.clearMenus),P.on(document,"keyup.bs.dropdown.data-api",ci.clearMenus),P.on(document,Ye,Je,(function(t){t.preventDefault(),ci.getOrCreateInstance(this).toggle()})),m(ci);const hi="show",di="mousedown.bs.backdrop",ui={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},fi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class pi extends ${constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return ui}static get DefaultType(){return fi}static get NAME(){return"backdrop"}show(t){if(!this._config.isVisible)return void g(t);this._append();const e=this._getElement();this._config.isAnimated&&d(e),e.classList.add(hi),this._emulateAnimation((()=>{g(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(hi),this._emulateAnimation((()=>{this.dispose(),g(t)}))):g(t)}dispose(){this._isAppended&&(P.off(this._element,di),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=r(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),P.on(t,di,(()=>{g(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){_(t,this._getElement(),this._config.isAnimated)}}const mi=".bs.focustrap",gi="backward",_i={autofocus:!0,trapElement:null},bi={autofocus:"boolean",trapElement:"element"};class vi extends ${constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return _i}static get DefaultType(){return bi}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),P.off(document,mi),P.on(document,"focusin.bs.focustrap",(t=>this._handleFocusin(t))),P.on(document,"keydown.tab.bs.focustrap",(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,P.off(document,mi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=z.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===gi?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?gi:"forward")}}const yi=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",wi=".sticky-top",Ai="padding-right",Ei="margin-right";class Ti{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,Ai,(e=>e+t)),this._setElementAttributes(yi,Ai,(e=>e+t)),this._setElementAttributes(wi,Ei,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,Ai),this._resetElementAttributes(yi,Ai),this._resetElementAttributes(wi,Ei)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&H.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=H.getDataAttribute(t,e);null!==i?(H.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(o(t))e(t);else for(const i of z.find(t,this._element))e(i)}}const Ci=".bs.modal",Oi="hidden.bs.modal",xi="show.bs.modal",ki="modal-open",Li="show",Si="modal-static",Di={backdrop:!0,focus:!0,keyboard:!0},Ii={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class Ni extends W{constructor(t,e){super(t,e),this._dialog=z.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new Ti,this._addEventListeners()}static get Default(){return Di}static get DefaultType(){return Ii}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||P.trigger(this._element,xi,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(ki),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(P.trigger(this._element,"hide.bs.modal").defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(Li),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){P.off(window,Ci),P.off(this._dialog,Ci),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new pi({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new vi({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=z.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),d(this._element),this._element.classList.add(Li),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,P.trigger(this._element,"shown.bs.modal",{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){P.on(this._element,"keydown.dismiss.bs.modal",(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),P.on(window,"resize.bs.modal",(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),P.on(this._element,"mousedown.dismiss.bs.modal",(t=>{P.one(this._element,"click.dismiss.bs.modal",(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(ki),this._resetAdjustments(),this._scrollBar.reset(),P.trigger(this._element,Oi)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(P.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(Si)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(Si),this._queueCallback((()=>{this._element.classList.remove(Si),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=p()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=p()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Ni.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}P.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=z.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),P.one(e,xi,(t=>{t.defaultPrevented||P.one(e,Oi,(()=>{a(this)&&this.focus()}))}));const i=z.findOne(".modal.show");i&&Ni.getInstance(i).hide(),Ni.getOrCreateInstance(e).toggle(this)})),R(Ni),m(Ni);const Pi="show",ji="showing",Mi="hiding",Fi=".offcanvas.show",Hi="hidePrevented.bs.offcanvas",$i="hidden.bs.offcanvas",Wi={backdrop:!0,keyboard:!0,scroll:!1},Bi={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class zi extends W{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return Wi}static get DefaultType(){return Bi}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||P.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new Ti).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(ji),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Pi),this._element.classList.remove(ji),P.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(P.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add(Mi),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Pi,Mi),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new Ti).reset(),P.trigger(this._element,$i)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new pi({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():P.trigger(this._element,Hi)}:null})}_initializeFocusTrap(){return new vi({trapElement:this._element})}_addEventListeners(){P.on(this._element,"keydown.dismiss.bs.offcanvas",(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():P.trigger(this._element,Hi))}))}static jQueryInterface(t){return this.each((function(){const e=zi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}P.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=z.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this))return;P.one(e,$i,(()=>{a(this)&&this.focus()}));const i=z.findOne(Fi);i&&i!==e&&zi.getInstance(i).hide(),zi.getOrCreateInstance(e).toggle(this)})),P.on(window,"load.bs.offcanvas.data-api",(()=>{for(const t of z.find(Fi))zi.getOrCreateInstance(t).show()})),P.on(window,"resize.bs.offcanvas",(()=>{for(const t of z.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&zi.getOrCreateInstance(t).hide()})),R(zi),m(zi);const Ri=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),qi=/^(?:(?:https?|mailto|ftp|tel|file|sms):|[^#&/:?]*(?:[#/?]|$))/i,Vi=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Ki=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Ri.has(i)||Boolean(qi.test(t.nodeValue)||Vi.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Qi={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Xi={allowList:Qi,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"
"},Yi={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Ui={entry:"(string|element|function|null)",selector:"(string|element)"};class Gi extends ${constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Xi}static get DefaultType(){return Yi}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Ui)}_setContent(t,e,i){const n=z.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?o(e)?this._putElementInTemplate(r(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Ki(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return g(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Ji=new Set(["sanitize","allowList","sanitizeFn"]),Zi="fade",tn="show",en=".modal",nn="hide.bs.modal",sn="hover",on="focus",rn={AUTO:"auto",TOP:"top",RIGHT:p()?"left":"right",BOTTOM:"bottom",LEFT:p()?"right":"left"},an={allowList:Qi,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},ln={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cn extends W{constructor(t,e){if(void 0===Ve)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,e),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return an}static get DefaultType(){return ln}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),P.off(this._element.closest(en),nn,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=P.trigger(this._element,this.constructor.eventName("show")),e=(c(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),P.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(tn),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))P.on(t,"mouseover",h);this._queueCallback((()=>{P.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!P.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(tn),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))P.off(t,"mouseover",h);this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),P.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(Zi,tn),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(Zi),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Gi({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(Zi)}_isShown(){return this.tip&&this.tip.classList.contains(tn)}_createPopper(t){const e=g(this._config.placement,[this,t,this._element]),i=rn[e.toUpperCase()];return qe(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return g(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...g(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)P.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===sn?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===sn?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");P.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?on:sn]=!0,e._enter()})),P.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?on:sn]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},P.on(this._element.closest(en),nn,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=H.getDataAttributes(this._element);for(const t of Object.keys(e))Ji.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:r(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(cn);const hn={...cn.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},dn={...cn.DefaultType,content:"(null|string|element|function)"};class un extends cn{static get Default(){return hn}static get DefaultType(){return dn}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=un.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}m(un);const fn="click.bs.scrollspy",pn="active",mn="[href]",gn={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},_n={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class bn extends W{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return gn}static get DefaultType(){return _n}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=r(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(P.off(this._config.target,fn),P.on(this._config.target,fn,mn,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=z.find(mn,this._config.target);for(const e of t){if(!e.hash||l(e))continue;const t=z.findOne(e.hash,this._element);a(t)&&(this._targetLinks.set(e.hash,e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(pn),this._activateParents(t),P.trigger(this._element,"activate.bs.scrollspy",{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))z.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(pn);else for(const e of z.parents(t,".nav, .list-group"))for(const t of z.prev(e,".nav-link, .nav-item > .nav-link, .list-group-item"))t.classList.add(pn)}_clearActiveClass(t){t.classList.remove(pn);const e=z.find("[href].active",t);for(const t of e)t.classList.remove(pn)}static jQueryInterface(t){return this.each((function(){const e=bn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}P.on(window,"load.bs.scrollspy.data-api",(()=>{for(const t of z.find('[data-bs-spy="scroll"]'))bn.getOrCreateInstance(t)})),m(bn);const vn="ArrowLeft",yn="ArrowRight",wn="ArrowUp",An="ArrowDown",En="active",Tn="fade",Cn="show",On='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',xn=`.nav-link:not(.dropdown-toggle), .list-group-item:not(.dropdown-toggle), [role="tab"]:not(.dropdown-toggle), ${On}`;class kn extends W{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),P.on(this._element,"keydown.bs.tab",(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?P.trigger(e,"hide.bs.tab",{relatedTarget:t}):null;P.trigger(t,"show.bs.tab",{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(En),this._activate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),P.trigger(t,"shown.bs.tab",{relatedTarget:e})):t.classList.add(Cn)}),t,t.classList.contains(Tn)))}_deactivate(t,e){t&&(t.classList.remove(En),t.blur(),this._deactivate(z.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),P.trigger(t,"hidden.bs.tab",{relatedTarget:e})):t.classList.remove(Cn)}),t,t.classList.contains(Tn)))}_keydown(t){if(![vn,yn,wn,An].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=[yn,An].includes(t.key),i=b(this._getChildren().filter((t=>!l(t))),t.target,e,!0);i&&(i.focus({preventScroll:!0}),kn.getOrCreateInstance(i).show())}_getChildren(){return z.find(xn,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=z.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=z.findOne(t,i);s&&s.classList.toggle(n,e)};n(".dropdown-toggle",En),n(".dropdown-menu",Cn),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(En)}_getInnerElement(t){return t.matches(xn)?t:z.findOne(xn,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=kn.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}P.on(document,"click.bs.tab",On,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),l(this)||kn.getOrCreateInstance(this).show()})),P.on(window,"load.bs.tab",(()=>{for(const t of z.find('.active[data-bs-toggle="tab"], .active[data-bs-toggle="pill"], .active[data-bs-toggle="list"]'))kn.getOrCreateInstance(t)})),m(kn);const Ln="hide",Sn="show",Dn="showing",In={animation:"boolean",autohide:"boolean",delay:"number"},Nn={animation:!0,autohide:!0,delay:5e3};class Pn extends W{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return Nn}static get DefaultType(){return In}static get NAME(){return"toast"}show(){P.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(Ln),d(this._element),this._element.classList.add(Sn,Dn),this._queueCallback((()=>{this._element.classList.remove(Dn),P.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(P.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.add(Dn),this._queueCallback((()=>{this._element.classList.add(Ln),this._element.classList.remove(Dn,Sn),P.trigger(this._element,"hidden.bs.toast")}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(Sn),super.dispose()}isShown(){return this._element.classList.contains(Sn)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){P.on(this._element,"mouseover.bs.toast",(t=>this._onInteraction(t,!0))),P.on(this._element,"mouseout.bs.toast",(t=>this._onInteraction(t,!1))),P.on(this._element,"focusin.bs.toast",(t=>this._onInteraction(t,!0))),P.on(this._element,"focusout.bs.toast",(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Pn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return R(Pn),m(Pn),{Alert:q,Button:K,Carousel:rt,Collapse:ft,Dropdown:ci,Modal:Ni,Offcanvas:zi,Popover:un,ScrollSpy:bn,Tab:kn,Toast:Pn,Tooltip:cn}})); -//# sourceMappingURL=bootstrap.bundle.min.js.map diff --git a/desarrollo/diseno/registro-form/assets/js/custom.js b/desarrollo/diseno/registro-form/assets/js/custom.js deleted file mode 100644 index 726cf4a2..00000000 --- a/desarrollo/diseno/registro-form/assets/js/custom.js +++ /dev/null @@ -1,136 +0,0 @@ - -$(document).ready(function() { - 'use strict'; - - // /*------------------------------------- - // Sticky NabBar - // -------------------------------------*/ - // $(window).on('scroll', function () { - // var scroll = $(window).scrollTop(); - - // if (scroll >= 1) { - // $('.ugf-nav-wrap').addClass('fixed'); - // } else { - // $('.ugf-nav-wrap').removeClass('fixed'); - // } - // }); - - /*-------------------------------------------- - File Input - --------------------------------------------*/ - // function handleChange(inputId) { - // var fileUploader = document.getElementById(inputId); - // var getFile = fileUploader.files - - - // var uploadedFile = getFile[getFile.length - 1]; - // readFile(uploadedFile, inputId); - - - // } - - // $('.input-file').on('change', function(e) { - // handleChange(e.target.id); - // }) - - // function readFile(uploadedFile, inputId) { - // if (uploadedFile) { - // var reader = new FileReader(); - // reader.onload = () => { - // var parent = document.getElementById('p-' + inputId); - // parent.innerHTML = ``; - // }; - - // reader.readAsDataURL(uploadedFile); - // } - // }; - - /*-------------------------------------------- - togglePassword - --------------------------------------------*/ - - function togglePassword(){ - let input = document.getElementById("inputPass"); - var eye = document.getElementById("eye"); - var eyeSlash = document.getElementById("eye-slash"); - - if(input.type === "password"){ - input.type = "text" - eye.style.display = "none"; - eyeSlash.style.display = "inline"; - } else { - input.type = "password" - eye.style.display = "inline"; - eyeSlash.style.display = "none"; - } - } - - $('.pass-toggler-btn').on('click', 'i', function() { - togglePassword(); - }) - - - /*-------------------------------------------- - Owl Carousel - --------------------------------------------*/ - - $('.testimonial-carousel').owlCarousel({ - loop:true, - items: 1, - autoplay: true, - autoplayHoverPause: true, - dots: true, - nav: false, - autoplaySpeed: 600, - dotsSpeed: 600, - margin: 15 - }) - - // $('.ugf-slider').owlCarousel({ - // loop:true, - // items: 1, - // autoplay: true, - // autoplayHoverPause: true, - // dots: true, - // nav: false, - // autoplaySpeed: 600, - // dotsSpeed: 600, - // margin: 15 - // }) - - /*-------------------------------------------- - Country Select - --------------------------------------------*/ - - // $("#country").countrySelect(); - - // var windowWidth = $(window).width(); - - // $(window).resize(function() { - // if(windowWidth != $(window).width()) { - // countryList() - // } - // }); - - // function countryList() { - // var screenSize = $(window).width(); - // var countryInputWidth = $('#country').width(); - // var countryListWidth = countryInputWidth; - - // $('.kyc-form .country-list').width(countryListWidth + 86); - // } - // countryList(); - - /*-------------------------------------------- - File Input - --------------------------------------------*/ - - // var fileInput = document.querySelector( ".custom-file-input" ); - // var the_return = document.querySelector(".file-return"); - - // $(fileInput).on('change', function(event) { - // $(the_return).html(this.value); - // }) - - -}) \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/assets/js/desktop.ini b/desarrollo/diseno/registro-form/assets/js/desktop.ini deleted file mode 100644 index 054c8d00..00000000 Binary files a/desarrollo/diseno/registro-form/assets/js/desktop.ini and /dev/null differ diff --git a/desarrollo/diseno/registro-form/assets/js/email-decode.min.js b/desarrollo/diseno/registro-form/assets/js/email-decode.min.js deleted file mode 100644 index 725b7c67..00000000 --- a/desarrollo/diseno/registro-form/assets/js/email-decode.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(){"use strict";function e(e){try{if("undefined"==typeof console)return;"error"in console?console.error(e):console.log(e)}catch(e){}}function t(e){return d.innerHTML='',d.childNodes[0].getAttribute("href")||""}function r(e,t){var r=e.substr(t,2);return parseInt(r,16)}function n(n,c){for(var o="",a=r(n,c),i=c+2;i-1&&(o.href="mailto:"+n(o.href,a+l.length))}catch(i){e(i)}}function o(t){for(var r=t.querySelectorAll(u),c=0;c+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function Le(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=Fe(m.pixelPosition,function(e,t){if(t)return t=We(e,n),Ie.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 01||a.items.merge,f[d]=e?b*c:this._items[d].width();this._widths=f}},{filter:["items","settings"],run:function(){var b=[],c=this._items,d=this.settings,e=Math.max(2*d.items,4),f=2*Math.ceil(c.length/2),g=d.loop&&c.length?d.rewind?e:Math.max(e,f):0,h="",i="";for(g/=2;g>0;)b.push(this.normalize(b.length/2,!0)),h+=c[b[b.length-1]][0].outerHTML,b.push(this.normalize(c.length-1-(b.length-1)/2,!0)),i=c[b[b.length-1]][0].outerHTML+i,g-=1;this._clones=b,a(h).addClass("cloned").appendTo(this.$stage),a(i).addClass("cloned").prependTo(this.$stage)}},{filter:["width","items","settings"],run:function(){for(var a=this.settings.rtl?1:-1,b=this._clones.length+this._items.length,c=-1,d=0,e=0,f=[];++c",h)||this.op(b,"<",g)&&this.op(b,">",h))&&i.push(c);this.$stage.children(".active").removeClass("active"),this.$stage.children(":eq("+i.join("), :eq(")+")").addClass("active"),this.$stage.children(".center").removeClass("center"),this.settings.center&&this.$stage.children().eq(this.current()).addClass("center")}}],e.prototype.initializeStage=function(){this.$stage=this.$element.find("."+this.settings.stageClass),this.$stage.length||(this.$element.addClass(this.options.loadingClass),this.$stage=a("<"+this.settings.stageElement+">",{class:this.settings.stageClass}).wrap(a("
",{class:this.settings.stageOuterClass})),this.$element.append(this.$stage.parent()))},e.prototype.initializeItems=function(){var b=this.$element.find(".owl-item");if(b.length)return this._items=b.get().map(function(b){return a(b)}),this._mergers=this._items.map(function(){return 1}),void this.refresh();this.replace(this.$element.children().not(this.$stage.parent())),this.isVisible()?this.refresh():this.invalidate("width"),this.$element.removeClass(this.options.loadingClass).addClass(this.options.loadedClass)},e.prototype.initialize=function(){if(this.enter("initializing"),this.trigger("initialize"),this.$element.toggleClass(this.settings.rtlClass,this.settings.rtl),this.settings.autoWidth&&!this.is("pre-loading")){var a,b,c;a=this.$element.find("img"),b=this.settings.nestedItemSelector?"."+this.settings.nestedItemSelector:d,c=this.$element.children(b).width(),a.length&&c<=0&&this.preloadAutoWidthImages(a)}this.initializeStage(),this.initializeItems(),this.registerEventHandlers(),this.leave("initializing"),this.trigger("initialized")},e.prototype.isVisible=function(){return!this.settings.checkVisibility||this.$element.is(":visible")},e.prototype.setup=function(){var b=this.viewport(),c=this.options.responsive,d=-1,e=null;c?(a.each(c,function(a){a<=b&&a>d&&(d=Number(a))}),e=a.extend({},this.options,c[d]),"function"==typeof e.stagePadding&&(e.stagePadding=e.stagePadding()),delete e.responsive,e.responsiveClass&&this.$element.attr("class",this.$element.attr("class").replace(new RegExp("("+this.options.responsiveClass+"-)\\S+\\s","g"),"$1"+d))):e=a.extend({},this.options),this.trigger("change",{property:{name:"settings",value:e}}),this._breakpoint=d,this.settings=e,this.invalidate("settings"),this.trigger("changed",{property:{name:"settings",value:this.settings}})},e.prototype.optionsLogic=function(){this.settings.autoWidth&&(this.settings.stagePadding=!1,this.settings.merge=!1)},e.prototype.prepare=function(b){var c=this.trigger("prepare",{content:b});return c.data||(c.data=a("<"+this.settings.itemElement+"/>").addClass(this.options.itemClass).append(b)),this.trigger("prepared",{content:c.data}),c.data},e.prototype.update=function(){for(var b=0,c=this._pipe.length,d=a.proxy(function(a){return this[a]},this._invalidated),e={};b0)&&this._pipe[b].run(e),b++;this._invalidated={},!this.is("valid")&&this.enter("valid")},e.prototype.width=function(a){switch(a=a||e.Width.Default){case e.Width.Inner:case e.Width.Outer:return this._width;default:return this._width-2*this.settings.stagePadding+this.settings.margin}},e.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")},e.prototype.onThrottledResize=function(){b.clearTimeout(this.resizeTimer),this.resizeTimer=b.setTimeout(this._handlers.onResize,this.settings.responsiveRefreshRate)},e.prototype.onResize=function(){return!!this._items.length&&(this._width!==this.$element.width()&&(!!this.isVisible()&&(this.enter("resizing"),this.trigger("resize").isDefaultPrevented()?(this.leave("resizing"),!1):(this.invalidate("width"),this.refresh(),this.leave("resizing"),void this.trigger("resized")))))},e.prototype.registerEventHandlers=function(){a.support.transition&&this.$stage.on(a.support.transition.end+".owl.core",a.proxy(this.onTransitionEnd,this)),!1!==this.settings.responsive&&this.on(b,"resize",this._handlers.onThrottledResize),this.settings.mouseDrag&&(this.$element.addClass(this.options.dragClass),this.$stage.on("mousedown.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("dragstart.owl.core selectstart.owl.core",function(){return!1})),this.settings.touchDrag&&(this.$stage.on("touchstart.owl.core",a.proxy(this.onDragStart,this)),this.$stage.on("touchcancel.owl.core",a.proxy(this.onDragEnd,this)))},e.prototype.onDragStart=function(b){var d=null;3!==b.which&&(a.support.transform?(d=this.$stage.css("transform").replace(/.*\(|\)| /g,"").split(","),d={x:d[16===d.length?12:4],y:d[16===d.length?13:5]}):(d=this.$stage.position(),d={x:this.settings.rtl?d.left+this.$stage.width()-this.width()+this.settings.margin:d.left,y:d.top}),this.is("animating")&&(a.support.transform?this.animate(d.x):this.$stage.stop(),this.invalidate("position")),this.$element.toggleClass(this.options.grabClass,"mousedown"===b.type),this.speed(0),this._drag.time=(new Date).getTime(),this._drag.target=a(b.target),this._drag.stage.start=d,this._drag.stage.current=d,this._drag.pointer=this.pointer(b),a(c).on("mouseup.owl.core touchend.owl.core",a.proxy(this.onDragEnd,this)),a(c).one("mousemove.owl.core touchmove.owl.core",a.proxy(function(b){var d=this.difference(this._drag.pointer,this.pointer(b));a(c).on("mousemove.owl.core touchmove.owl.core",a.proxy(this.onDragMove,this)),Math.abs(d.x)0^this.settings.rtl?"left":"right";a(c).off(".owl.core"),this.$element.removeClass(this.options.grabClass),(0!==d.x&&this.is("dragging")||!this.is("valid"))&&(this.speed(this.settings.dragEndSpeed||this.settings.smartSpeed),this.current(this.closest(e.x,0!==d.x?f:this._drag.direction)),this.invalidate("position"),this.update(),this._drag.direction=f,(Math.abs(d.x)>3||(new Date).getTime()-this._drag.time>300)&&this._drag.target.one("click.owl.core",function(){return!1})),this.is("dragging")&&(this.leave("dragging"),this.trigger("dragged"))},e.prototype.closest=function(b,c){var e=-1,f=30,g=this.width(),h=this.coordinates();return this.settings.freeDrag||a.each(h,a.proxy(function(a,i){return"left"===c&&b>i-f&&bi-g-f&&b",h[a+1]!==d?h[a+1]:i-g)&&(e="left"===c?a+1:a),-1===e},this)),this.settings.loop||(this.op(b,">",h[this.minimum()])?e=b=this.minimum():this.op(b,"<",h[this.maximum()])&&(e=b=this.maximum())),e},e.prototype.animate=function(b){var c=this.speed()>0;this.is("animating")&&this.onTransitionEnd(),c&&(this.enter("animating"),this.trigger("translate")),a.support.transform3d&&a.support.transition?this.$stage.css({transform:"translate3d("+b+"px,0px,0px)",transition:this.speed()/1e3+"s"+(this.settings.slideTransition?" "+this.settings.slideTransition:"")}):c?this.$stage.animate({left:b+"px"},this.speed(),this.settings.fallbackEasing,a.proxy(this.onTransitionEnd,this)):this.$stage.css({left:b+"px"})},e.prototype.is=function(a){return this._states.current[a]&&this._states.current[a]>0},e.prototype.current=function(a){if(a===d)return this._current;if(0===this._items.length)return d;if(a=this.normalize(a),this._current!==a){var b=this.trigger("change",{property:{name:"position",value:a}});b.data!==d&&(a=this.normalize(b.data)),this._current=a,this.invalidate("position"),this.trigger("changed",{property:{name:"position",value:this._current}})}return this._current},e.prototype.invalidate=function(b){return"string"===a.type(b)&&(this._invalidated[b]=!0,this.is("valid")&&this.leave("valid")),a.map(this._invalidated,function(a,b){return b})},e.prototype.reset=function(a){(a=this.normalize(a))!==d&&(this._speed=0,this._current=a,this.suppress(["translate","translated"]),this.animate(this.coordinates(a)),this.release(["translate","translated"]))},e.prototype.normalize=function(a,b){var c=this._items.length,e=b?0:this._clones.length;return!this.isNumeric(a)||c<1?a=d:(a<0||a>=c+e)&&(a=((a-e/2)%c+c)%c+e/2),a},e.prototype.relative=function(a){return a-=this._clones.length/2,this.normalize(a,!0)},e.prototype.maximum=function(a){var b,c,d,e=this.settings,f=this._coordinates.length;if(e.loop)f=this._clones.length/2+this._items.length-1;else if(e.autoWidth||e.merge){if(b=this._items.length)for(c=this._items[--b].width(),d=this.$element.width();b--&&!((c+=this._items[b].width()+this.settings.margin)>d););f=b+1}else f=e.center?this._items.length-1:this._items.length-e.items;return a&&(f-=this._clones.length/2),Math.max(f,0)},e.prototype.minimum=function(a){return a?0:this._clones.length/2},e.prototype.items=function(a){return a===d?this._items.slice():(a=this.normalize(a,!0),this._items[a])},e.prototype.mergers=function(a){return a===d?this._mergers.slice():(a=this.normalize(a,!0),this._mergers[a])},e.prototype.clones=function(b){var c=this._clones.length/2,e=c+this._items.length,f=function(a){return a%2==0?e+a/2:c-(a+1)/2};return b===d?a.map(this._clones,function(a,b){return f(b)}):a.map(this._clones,function(a,c){return a===b?f(c):null})},e.prototype.speed=function(a){return a!==d&&(this._speed=a),this._speed},e.prototype.coordinates=function(b){var c,e=1,f=b-1;return b===d?a.map(this._coordinates,a.proxy(function(a,b){return this.coordinates(b)},this)):(this.settings.center?(this.settings.rtl&&(e=-1,f=b+1),c=this._coordinates[b],c+=(this.width()-c+(this._coordinates[f]||0))/2*e):c=this._coordinates[f]||0,c=Math.ceil(c))},e.prototype.duration=function(a,b,c){return 0===c?0:Math.min(Math.max(Math.abs(b-a),1),6)*Math.abs(c||this.settings.smartSpeed)},e.prototype.to=function(a,b){var c=this.current(),d=null,e=a-this.relative(c),f=(e>0)-(e<0),g=this._items.length,h=this.minimum(),i=this.maximum();this.settings.loop?(!this.settings.rewind&&Math.abs(e)>g/2&&(e+=-1*f*g),a=c+e,(d=((a-h)%g+g)%g+h)!==a&&d-e<=i&&d-e>0&&(c=d-e,a=d,this.reset(c))):this.settings.rewind?(i+=1,a=(a%i+i)%i):a=Math.max(h,Math.min(i,a)),this.speed(this.duration(c,a,b)),this.current(a),this.isVisible()&&this.update()},e.prototype.next=function(a){a=a||!1,this.to(this.relative(this.current())+1,a)},e.prototype.prev=function(a){a=a||!1,this.to(this.relative(this.current())-1,a)},e.prototype.onTransitionEnd=function(a){if(a!==d&&(a.stopPropagation(),(a.target||a.srcElement||a.originalTarget)!==this.$stage.get(0)))return!1;this.leave("animating"),this.trigger("translated")},e.prototype.viewport=function(){var d;return this.options.responsiveBaseElement!==b?d=a(this.options.responsiveBaseElement).width():b.innerWidth?d=b.innerWidth:c.documentElement&&c.documentElement.clientWidth?d=c.documentElement.clientWidth:console.warn("Can not detect viewport width."),d},e.prototype.replace=function(b){this.$stage.empty(),this._items=[],b&&(b=b instanceof jQuery?b:a(b)),this.settings.nestedItemSelector&&(b=b.find("."+this.settings.nestedItemSelector)),b.filter(function(){return 1===this.nodeType}).each(a.proxy(function(a,b){b=this.prepare(b),this.$stage.append(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)},this)),this.reset(this.isNumeric(this.settings.startPosition)?this.settings.startPosition:0),this.invalidate("items")},e.prototype.add=function(b,c){var e=this.relative(this._current);c=c===d?this._items.length:this.normalize(c,!0),b=b instanceof jQuery?b:a(b),this.trigger("add",{content:b,position:c}),b=this.prepare(b),0===this._items.length||c===this._items.length?(0===this._items.length&&this.$stage.append(b),0!==this._items.length&&this._items[c-1].after(b),this._items.push(b),this._mergers.push(1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)):(this._items[c].before(b),this._items.splice(c,0,b),this._mergers.splice(c,0,1*b.find("[data-merge]").addBack("[data-merge]").attr("data-merge")||1)),this._items[e]&&this.reset(this._items[e].index()),this.invalidate("items"),this.trigger("added",{content:b,position:c})},e.prototype.remove=function(a){(a=this.normalize(a,!0))!==d&&(this.trigger("remove",{content:this._items[a],position:a}),this._items[a].remove(),this._items.splice(a,1),this._mergers.splice(a,1),this.invalidate("items"),this.trigger("removed",{content:null,position:a}))},e.prototype.preloadAutoWidthImages=function(b){b.each(a.proxy(function(b,c){this.enter("pre-loading"),c=a(c),a(new Image).one("load",a.proxy(function(a){c.attr("src",a.target.src),c.css("opacity",1),this.leave("pre-loading"),!this.is("pre-loading")&&!this.is("initializing")&&this.refresh()},this)).attr("src",c.attr("src")||c.attr("data-src")||c.attr("data-src-retina"))},this))},e.prototype.destroy=function(){this.$element.off(".owl.core"),this.$stage.off(".owl.core"),a(c).off(".owl.core"),!1!==this.settings.responsive&&(b.clearTimeout(this.resizeTimer),this.off(b,"resize",this._handlers.onThrottledResize));for(var d in this._plugins)this._plugins[d].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")},e.prototype.op=function(a,b,c){var d=this.settings.rtl;switch(b){case"<":return d?a>c:a":return d?ac;case">=":return d?a<=c:a>=c;case"<=":return d?a>=c:a<=c}},e.prototype.on=function(a,b,c,d){a.addEventListener?a.addEventListener(b,c,d):a.attachEvent&&a.attachEvent("on"+b,c)},e.prototype.off=function(a,b,c,d){a.removeEventListener?a.removeEventListener(b,c,d):a.detachEvent&&a.detachEvent("on"+b,c)},e.prototype.trigger=function(b,c,d,f,g){var h={item:{count:this._items.length,index:this.current()}},i=a.camelCase(a.grep(["on",b,d],function(a){return a}).join("-").toLowerCase()),j=a.Event([b,"owl",d||"carousel"].join(".").toLowerCase(),a.extend({relatedTarget:this},h,c));return this._supress[b]||(a.each(this._plugins,function(a,b){b.onTrigger&&b.onTrigger(j)}),this.register({type:e.Type.Event,name:b}),this.$element.trigger(j),this.settings&&"function"==typeof this.settings[i]&&this.settings[i].call(this,j)),j},e.prototype.enter=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]===d&&(this._states.current[b]=0),this._states.current[b]++},this))},e.prototype.leave=function(b){a.each([b].concat(this._states.tags[b]||[]),a.proxy(function(a,b){this._states.current[b]--},this))},e.prototype.register=function(b){if(b.type===e.Type.Event){if(a.event.special[b.name]||(a.event.special[b.name]={}),!a.event.special[b.name].owl){var c=a.event.special[b.name]._default;a.event.special[b.name]._default=function(a){return!c||!c.apply||a.namespace&&-1!==a.namespace.indexOf("owl")?a.namespace&&a.namespace.indexOf("owl")>-1:c.apply(this,arguments)},a.event.special[b.name].owl=!0}}else b.type===e.Type.State&&(this._states.tags[b.name]?this._states.tags[b.name]=this._states.tags[b.name].concat(b.tags):this._states.tags[b.name]=b.tags,this._states.tags[b.name]=a.grep(this._states.tags[b.name],a.proxy(function(c,d){return a.inArray(c,this._states.tags[b.name])===d},this)))},e.prototype.suppress=function(b){a.each(b,a.proxy(function(a,b){this._supress[b]=!0},this))},e.prototype.release=function(b){a.each(b,a.proxy(function(a,b){delete this._supress[b]},this))},e.prototype.pointer=function(a){var c={x:null,y:null};return a=a.originalEvent||a||b.event,a=a.touches&&a.touches.length?a.touches[0]:a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:a,a.pageX?(c.x=a.pageX,c.y=a.pageY):(c.x=a.clientX,c.y=a.clientY),c},e.prototype.isNumeric=function(a){return!isNaN(parseFloat(a))},e.prototype.difference=function(a,b){return{x:a.x-b.x,y:a.y-b.y}},a.fn.owlCarousel=function(b){var c=Array.prototype.slice.call(arguments,1);return this.each(function(){var d=a(this),f=d.data("owl.carousel");f||(f=new e(this,"object"==typeof b&&b),d.data("owl.carousel",f),a.each(["next","prev","to","destroy","refresh","replace","add","remove"],function(b,c){f.register({type:e.Type.Event,name:c}),f.$element.on(c+".owl.carousel.core",a.proxy(function(a){a.namespace&&a.relatedTarget!==this&&(this.suppress([c]),f[c].apply(this,[].slice.call(arguments,1)),this.release([c]))},f))})),"string"==typeof b&&"_"!==b.charAt(0)&&f[b].apply(f,c)})},a.fn.owlCarousel.Constructor=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._interval=null,this._visible=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoRefresh&&this.watch()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers)};e.Defaults={autoRefresh:!0,autoRefreshInterval:500},e.prototype.watch=function(){this._interval||(this._visible=this._core.isVisible(),this._interval=b.setInterval(a.proxy(this.refresh,this),this._core.settings.autoRefreshInterval))},e.prototype.refresh=function(){this._core.isVisible()!==this._visible&&(this._visible=!this._visible,this._core.$element.toggleClass("owl-hidden",!this._visible),this._visible&&this._core.invalidate("width")&&this._core.refresh())},e.prototype.destroy=function(){var a,c;b.clearInterval(this._interval);for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(c in Object.getOwnPropertyNames(this))"function"!=typeof this[c]&&(this[c]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoRefresh=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._loaded=[],this._handlers={"initialized.owl.carousel change.owl.carousel resized.owl.carousel":a.proxy(function(b){if(b.namespace&&this._core.settings&&this._core.settings.lazyLoad&&(b.property&&"position"==b.property.name||"initialized"==b.type)){var c=this._core.settings,e=c.center&&Math.ceil(c.items/2)||c.items,f=c.center&&-1*e||0,g=(b.property&&b.property.value!==d?b.property.value:this._core.current())+f,h=this._core.clones().length,i=a.proxy(function(a,b){this.load(b)},this);for(c.lazyLoadEager>0&&(e+=c.lazyLoadEager,c.loop&&(g-=c.lazyLoadEager,e++));f++-1||(e.each(a.proxy(function(c,d){var e,f=a(d),g=b.devicePixelRatio>1&&f.attr("data-src-retina")||f.attr("data-src")||f.attr("data-srcset");this._core.trigger("load",{element:f,url:g},"lazy"),f.is("img")?f.one("load.owl.lazy",a.proxy(function(){f.css("opacity",1),this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("src",g):f.is("source")?f.one("load.owl.lazy",a.proxy(function(){this._core.trigger("loaded",{element:f,url:g},"lazy")},this)).attr("srcset",g):(e=new Image,e.onload=a.proxy(function(){f.css({"background-image":'url("'+g+'")',opacity:"1"}),this._core.trigger("loaded",{element:f,url:g},"lazy")},this),e.src=g)},this)),this._loaded.push(d.get(0)))},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this._core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Lazy=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(c){this._core=c,this._previousHeight=null,this._handlers={"initialized.owl.carousel refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&this.update()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&"position"===a.property.name&&this.update()},this),"loaded.owl.lazy":a.proxy(function(a){a.namespace&&this._core.settings.autoHeight&&a.element.closest("."+this._core.settings.itemClass).index()===this._core.current()&&this.update()},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._intervalId=null;var d=this;a(b).on("load",function(){d._core.settings.autoHeight&&d.update()}),a(b).resize(function(){d._core.settings.autoHeight&&(null!=d._intervalId&&clearTimeout(d._intervalId),d._intervalId=setTimeout(function(){d.update()},250))})};e.Defaults={autoHeight:!1,autoHeightClass:"owl-height"},e.prototype.update=function(){var b=this._core._current,c=b+this._core.settings.items,d=this._core.settings.lazyLoad,e=this._core.$stage.children().toArray().slice(b,c),f=[],g=0;a.each(e,function(b,c){f.push(a(c).height())}),g=Math.max.apply(null,f),g<=1&&d&&this._previousHeight&&(g=this._previousHeight),this._previousHeight=g,this._core.$stage.parent().height(g).addClass(this._core.settings.autoHeightClass)},e.prototype.destroy=function(){var a,b;for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.AutoHeight=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._videos={},this._playing=null,this._handlers={"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.register({type:"state",name:"playing",tags:["interacting"]})},this),"resize.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.video&&this.isInFullScreen()&&a.preventDefault()},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._core.is("resizing")&&this._core.$stage.find(".cloned .owl-video-frame").remove()},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"===a.property.name&&this._playing&&this.stop()},this),"prepared.owl.carousel":a.proxy(function(b){if(b.namespace){var c=a(b.content).find(".owl-video");c.length&&(c.css("display","none"),this.fetch(c,a(b.content)))}},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this._core.$element.on(this._handlers),this._core.$element.on("click.owl.video",".owl-video-play-icon",a.proxy(function(a){this.play(a)},this))};e.Defaults={video:!1,videoHeight:!1,videoWidth:!1},e.prototype.fetch=function(a,b){var c=function(){return a.attr("data-vimeo-id")?"vimeo":a.attr("data-vzaar-id")?"vzaar":"youtube"}(),d=a.attr("data-vimeo-id")||a.attr("data-youtube-id")||a.attr("data-vzaar-id"),e=a.attr("data-width")||this._core.settings.videoWidth,f=a.attr("data-height")||this._core.settings.videoHeight,g=a.attr("href");if(!g)throw new Error("Missing video URL.");if(d=g.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+)?/),d[3].indexOf("youtu")>-1)c="youtube";else if(d[3].indexOf("vimeo")>-1)c="vimeo";else{if(!(d[3].indexOf("vzaar")>-1))throw new Error("Video URL not supported.");c="vzaar"}d=d[6],this._videos[g]={type:c,id:d,width:e,height:f},b.attr("data-video",g),this.thumbnail(a,this._videos[g])},e.prototype.thumbnail=function(b,c){var d,e,f,g=c.width&&c.height?"width:"+c.width+"px;height:"+c.height+"px;":"",h=b.find("img"),i="src",j="",k=this._core.settings,l=function(c){e='
',d=k.lazyLoad?a("
",{class:"owl-video-tn "+j,srcType:c}):a("
",{class:"owl-video-tn",style:"opacity:1;background-image:url("+c+")"}),b.after(d),b.after(e)};if(b.wrap(a("
",{class:"owl-video-wrapper",style:g})),this._core.settings.lazyLoad&&(i="data-src",j="owl-lazy"),h.length)return l(h.attr(i)),h.remove(),!1;"youtube"===c.type?(f="//img.youtube.com/vi/"+c.id+"/hqdefault.jpg",l(f)):"vimeo"===c.type?a.ajax({type:"GET",url:"//vimeo.com/api/v2/video/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a[0].thumbnail_large,l(f)}}):"vzaar"===c.type&&a.ajax({type:"GET",url:"//vzaar.com/api/videos/"+c.id+".json",jsonp:"callback",dataType:"jsonp",success:function(a){f=a.framegrab_url,l(f)}})},e.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")},e.prototype.play=function(b){var c,d=a(b.target),e=d.closest("."+this._core.settings.itemClass),f=this._videos[e.attr("data-video")],g=f.width||"100%",h=f.height||this._core.$stage.height();this._playing||(this._core.enter("playing"),this._core.trigger("play",null,"video"),e=this._core.items(this._core.relative(e.index())),this._core.reset(e.index()),c=a(''),c.attr("height",h),c.attr("width",g),"youtube"===f.type?c.attr("src","//www.youtube.com/embed/"+f.id+"?autoplay=1&rel=0&v="+f.id):"vimeo"===f.type?c.attr("src","//player.vimeo.com/video/"+f.id+"?autoplay=1"):"vzaar"===f.type&&c.attr("src","//view.vzaar.com/"+f.id+"/player?autoplay=true"),a(c).wrap('
').insertAfter(e.find(".owl-video")),this._playing=e.addClass("owl-video-playing"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass("owl-video-frame")},e.prototype.destroy=function(){var a,b;this._core.$element.off("click.owl.video");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={"change.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),"drag.owl.carousel dragged.owl.carousel translated.owl.carousel":a.proxy(function(a){a.namespace&&(this.swapping="translated"==a.type)},this),"translate.owl.carousel":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1, -animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+"px"}).addClass("animated owl-animated-out").addClass(g)),f&&e.one(a.support.animation.end,c).addClass("animated owl-animated-in").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:""}).removeClass("animated owl-animated-out owl-animated-in").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={"changed.owl.carousel":a.proxy(function(a){a.namespace&&"settings"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&"position"===a.property.name&&this._paused&&(this._time=0)},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),"play.owl.autoplay":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),"stop.owl.autoplay":a.proxy(function(a){a.namespace&&this.stop()},this),"mouseover.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"mouseleave.owl.autoplay":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.play()},this),"touchstart.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is("rotating")&&this.pause()},this),"touchend.owl.core":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is("interacting")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is("rotating")||this._core.enter("rotating"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is("rotating")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave("rotating"))},e.prototype.pause=function(){this._core.is("rotating")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))"function"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){"use strict";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={"prepared.owl.carousel":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push('
'+a(b.content).find("[data-dot]").addBack("[data-dot]").attr("data-dot")+"
")},this),"added.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),"remove.owl.carousel":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),"changed.owl.carousel":a.proxy(function(a){a.namespace&&"position"==a.property.name&&this.draw()},this),"initialized.owl.carousel":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger("initialize",null,"navigation"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger("initialized",null,"navigation"))},this),"refreshed.owl.carousel":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger("refresh",null,"navigation"),this.update(),this.draw(),this._core.trigger("refreshed",null,"navigation"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:['',''],navSpeed:!1,navElement:'button type="button" role="presentation"',navContainer:!1,navContainerClass:"owl-nav",navClass:["owl-prev","owl-next"],slideBy:1,dotClass:"owl-dot",dotsClass:"owl-dots",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a("
").addClass(c.navContainerClass).appendTo(this.$element)).addClass("disabled"),this._controls.$previous=a("<"+c.navElement+">").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on("click",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a("<"+c.navElement+">").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on("click",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a(' - -

No lo has recibido aún? Reenviar código

-
-
-
-
-
- -
-
- - - - - - - - - - - - - - -
- - - diff --git a/desarrollo/diseno/registro-form/login-information.php b/desarrollo/diseno/registro-form/login-information.php deleted file mode 100644 index 50e53258..00000000 --- a/desarrollo/diseno/registro-form/login-information.php +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-

Bienvenido!

-

Introduce un correo electrónico válido para completar algunos sencillos pasos
para registrar tu cuenta.

- -
-
-
-
-
-
-

Ya tienes una cuenta?  Entra aqui!

-
-
- - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/business-account.php b/desarrollo/diseno/registro-form/other-views/business-account.php deleted file mode 100644 index 8dd7ebd3..00000000 --- a/desarrollo/diseno/registro-form/other-views/business-account.php +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de la cuenta de negocios

-

Escribe las informaciones de tu negocio y una contraseña segura para continuar al siguiente paso.

- -
-
-
-
- -
- - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/business-billing.php b/desarrollo/diseno/registro-form/other-views/business-billing.php deleted file mode 100644 index bbdbf56b..00000000 --- a/desarrollo/diseno/registro-form/other-views/business-billing.php +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Dirección de Facturación

-

Escribe los detalles de facturación de tu negocio, también puedes elegir tu ubicación en el mapa!

- -
-
-
-
-
- -
- - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/business-payments.php b/desarrollo/diseno/registro-form/other-views/business-payments.php deleted file mode 100644 index 02b96672..00000000 --- a/desarrollo/diseno/registro-form/other-views/business-payments.php +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de Pago

-

Escribe los datos de la cuenta de banco donde deseas recibir tus fondos luego de hacer una venta!

- -
-
-
-
-
- -
- - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/login-information-business.php b/desarrollo/diseno/registro-form/other-views/login-information-business.php deleted file mode 100644 index ee4064e2..00000000 --- a/desarrollo/diseno/registro-form/other-views/login-information-business.php +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-

Bienvenido!

-

Introduce un correo electrónico válido para completar algunos sencillos pasos
para registrar tu cuenta.

- -
-
-
-
-
-
-

Ya tienes una cuenta?  Entra aqui!

-
-
-
- - -
-
- - - - - - - - - - - - - -
- - \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/personal-account.php b/desarrollo/diseno/registro-form/other-views/personal-account.php deleted file mode 100644 index 713553fa..00000000 --- a/desarrollo/diseno/registro-form/other-views/personal-account.php +++ /dev/null @@ -1,275 +0,0 @@ - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de la cuenta personal

-

Escribe tus informaciones y una contraseña segura para registrar su tienda.

- - -
- -
-
-
- -
- - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/personal-billing.php b/desarrollo/diseno/registro-form/other-views/personal-billing.php deleted file mode 100644 index cbdc4dc1..00000000 --- a/desarrollo/diseno/registro-form/other-views/personal-billing.php +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Dirección de Facturación

-

Escribe los detalles de facturación de tu negocio, también puedes elegir tu ubicación en el mapa!

- -
-
-
-
-
- -
- - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/personal-payments.php b/desarrollo/diseno/registro-form/other-views/personal-payments.php deleted file mode 100644 index bb32a76f..00000000 --- a/desarrollo/diseno/registro-form/other-views/personal-payments.php +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de Pago

-

Escribe los datos de la cuenta de banco donde deseas recibir tus fondos luego de hacer una venta!

- -
-
-
-
-
- -
- - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/personal-shop.php b/desarrollo/diseno/registro-form/other-views/personal-shop.php deleted file mode 100644 index 7af28d0d..00000000 --- a/desarrollo/diseno/registro-form/other-views/personal-shop.php +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de la tienda

- - -
-
-
- -
- - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/other-views/personal.php b/desarrollo/diseno/registro-form/other-views/personal.php deleted file mode 100644 index 200dbaec..00000000 --- a/desarrollo/diseno/registro-form/other-views/personal.php +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- Volver Atrás -

Detalles de la cuenta personal

-

Escribe tus informaciones y una contraseña segura para continuar al siguiente paso.

- -
-
-
-
- -
- - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/registro-form/register.php b/desarrollo/diseno/registro-form/register.php deleted file mode 100644 index ddc9f03d..00000000 --- a/desarrollo/diseno/registro-form/register.php +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-

Vamos! Únete a nuestra plataforma

-

Selecciona el tipo de cuenta

- -
-
-
-
-
- -
- - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/registro-form/signup-complete.php b/desarrollo/diseno/registro-form/signup-complete.php deleted file mode 100644 index f6bc4096..00000000 --- a/desarrollo/diseno/registro-form/signup-complete.php +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-

Tu Registro fue Completado!

-

Bienvenido a La Pieza.DO, en breve nuestro departamento de servicios te enviara un email con todos los detalles de tu cuenta y la confirmación de tu registro.

- Ir al Panel de [Vendedor o Negocio] -
-
- - - - - - - - - - - - - - -
\ No newline at end of file diff --git a/desarrollo/diseno/support-center/404.php b/desarrollo/diseno/support-center/404.php deleted file mode 100644 index 90a05799..00000000 --- a/desarrollo/diseno/support-center/404.php +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - -
- -
- -
- -
-
- -
-

Something is wrong

-

The page you are looking for was moved, removed, - renamed or might never existed.

- - Go to - Home -
-
-
- -
- -
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/articles.php b/desarrollo/diseno/support-center/articles.php deleted file mode 100644 index 0933d1c2..00000000 --- a/desarrollo/diseno/support-center/articles.php +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Article

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
- -
-

What is the basic starter?

-

Installation quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius - modi tempora incidunt ut laboe et doloreagnam aliquam quaerat voluptatem. Ut enim ad - minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi - aliquid ex ea commodi consequatur? Quis autem vel eum iure

-

Rrem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius - modi tempora incidunt ut laboe et dolore gnam aliquam quaerat voluptatem. Ut enim ad - minima veniam, quis nostrum

-
-

Install dependencies

-
    -
  1. Download and install Node.js if - it's not installed on your machine
  2. -
  3. Install the Gulp command line tools, - gulp-cli, with npm install gulp-cli -g
  4. -
  5. Navigate to the root directory of your project and run npm install - to install dependencies
  6. -
  7. Run gulp serve.
  8. -
-

With the above command, a static web server starts in your browser which points to - /src directory. It watch your files to reload the browser upon change to - the HTML files, or JS and CSS files. Also, it watch your SCSS and JS files to - compile them to page.min.css and page.min.js upon each change.

-
-
-

Write code

-

Time for development. Now you're ready to create your HTML files and writing your - custom CSS and JS codes.

-

- HTML
Since most of the websites have a global layout - for whole of the application, you might want to start modifying index.php file and - create a global layout for your website. Check available layout features such as navbar, header, cover, footer, etc. as well as all the blocks and UI Kit.

-

- SCSS
Write your additional styles inside - /assets/scss/_style.scss. Feel free to create more scss files and even - subdirectories inside /scss folder to split your code to smaller chunks and import - them inside /scss/page.scss file. Our Gulp task is watching all of the - scss files inside /scss directory and recompile the page.min.css upon each change. -

-

- JavaScript
Your additional JavaScript codes should be - write inside /assets/js/src/script.js. Again, if you need to split your - code to several JS files, simply create them inside /js/src directory and require - them inside the /js/src/page.js. Our Gulp task is watching all of the - JS files inside /js/src directory and recompile page.min.js after each change using - Webpack.

-
-
-

Distribute

-

Done with development? Run gulp dist to deploy your code inside - /dist directory. This task simply remove unnecessary files (scss files, - scss folder, unminified css and js files, etc.) in the /dist folder. Now you can use - the /dist folder in your server side coding or upload to your web server.

-
-
- -
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/blog-detail.php b/desarrollo/diseno/support-center/blog-detail.php deleted file mode 100644 index 568b176d..00000000 --- a/desarrollo/diseno/support-center/blog-detail.php +++ /dev/null @@ -1,486 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Blog Details

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
-
-
-
-
-
- -

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis tempus eleifend - tortor, vel molestie orci feugiat sit amet. Donec posuere rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.
-
Aenean suscipit arcu purus, eget blandit dolor consequat quis. In - maximus sagittis justo, a aliquam leo luctus condimentum. Proin velit lectus, - venenatis vehicula risus sed, gravida feugiat ligula. Nam maximus, urna eget - elementum consectetur, eros justo volutpat diam, eu porta neque lorem at massa. - Nunc scelerisque est eu erat cursus, sed elementum lectus sagittis.
-
-
-
-
-
-
-
-
-

- Sed sed aliquam diam. Etiam convallis lorem fringilla lobortis - dictum. Vivamus volutpat tempor ligula suscipit pulvinar. - Cras accumsan leo lorem, at accumsan neque mattis vel.

-

Lorum Ipsum is that the text does not attract attention to itself - or distract the viewer's layout.

-
-
-
-
-
-
-
-
-
- by Jhon Kenedy -
- -
-
-
-
-
-
-
-

About The Theodore

-
- Dynamically innovate resource and
leveling customer service for state of - the art customer service. -
- -
-
-
-
-
-

Comments (03)

-
-
-
-
-
-
-
-
Rayan Collins
- October 6, 2020 -
-
Sed sed faucibus est, sit amet eleifend metus. Nunc pharetra - tincidunt eros non viverra. - Curabitur vulputate augue sapien, sed porttitor mauris facilisis euismod. -
- -
-
-
-
-
-
-
-
Liam Irvines
- October 5, 2020 -
-
Sed sed faucibus est, sit amet eleifend metus. Nunc pharetra - tincidunt eros non viverra. - Curabitur vulputate augue sapien, sed porttitor mauris facilisis euismod. -
- -
-
-
-
-
-
-
-
Rayan Collins
- October 4, 2020 -
-
Sed sed faucibus est, sit amet eleifend metus. Nunc pharetra - tincidunt eros non viverra. - Curabitur vulputate augue sapien, sed porttitor mauris facilisis euismod. -
- -
-
-
-
-
-
-

Leave Reply Comments

-
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
-
-
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/blog.php b/desarrollo/diseno/support-center/blog.php deleted file mode 100644 index d4dd68ca..00000000 --- a/desarrollo/diseno/support-center/blog.php +++ /dev/null @@ -1,448 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Blog

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
-
- -
-
-
-
-
- -

Lorem ipsum dolor sit amet, consectetur - adipiscing elit.

-
Eveniet in vulputate velit esse molestie consequat, dolore - eu - feugiat nulla facilisis at seds eros sed et accumsan et iusto odio - dignissim. Temporibus autem quibusdam et aut officiis.
-
-
-
-
-
- by Jhon Kenedy -
- -
-
-
-
- - -
-
-
-
-
- -

Lorem ipsum dolor sit amet, consectetur - adipiscing elit.

-
Eveniet in vulputate velit esse molestie consequat, dolore - eu - feugiat nulla facilisis at seds eros sed et accumsan et iusto odio - dignissim. Temporibus autem quibusdam et aut officiis.
-
-
-
-
-
- by Jhon Kenedy -
- -
-
-
-
- - -
-
-
-
-
- -

Lorem ipsum dolor sit amet, consectetur - adipiscing elit.

-
Eveniet in vulputate velit esse molestie consequat, dolore - eu - feugiat nulla facilisis at seds eros sed et accumsan et iusto odio - dignissim. Temporibus autem quibusdam et aut officiis.
-
-
-
-
-
- by Jhon Kenedy -
- -
-
-
-
- - -
-
    -
  • -
  • 1
  • -
  • 2
  • -
  • 3
  • -
  • 4
  • -
  • 5
  • -
  • -
-
- -
-
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/button.php b/desarrollo/diseno/support-center/button.php deleted file mode 100644 index 8f093da8..00000000 --- a/desarrollo/diseno/support-center/button.php +++ /dev/null @@ -1,1135 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Buttons

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
- -
- - -
-
-
-

Buttons

-
-
-

Use Bootstrap’s custom button styles for actions in forms, dialogs, and more. - Includes support for a handful of contextual variations, sizes, states, and - more.

-

The .btn classes are designed to be used - with the <button> element. However, - you can also use these classes on <a> or - <input> elements (though some - browsers may apply a slightly different rendering).

-
-
- Link - - - - -
-
-
-
-
-<a href="#" class="btn btn-primary" role="button">Link</a>
-<button class="btn btn-primary">Button</button>
-<input type="button" class="btn btn-primary" value="Input" />
-<input type="submit" class="btn btn-primary" value="Submit" />
-<input type="reset" class="btn btn-primary" value="Reset" />
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Button variations

-
-
-

Use any of the available button classes to quickly create a styled button . We - provide a variety of colors for you to express different emotions.

- - -
-
-
-<a href="#" class="btn btn-primary">Primary</a>
-<a href="#" class="btn btn-secondary">Secondary</a>
-<a href="#" class="btn btn-success">Success</a>
-<a href="#" class="btn btn-info">Info</a>
-<a href="#" class="btn btn-warning">Warning</a>
-<a href="#" class="btn btn-danger">Danger</a>
-<a href="#" class="btn btn-link">Link</a>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Disabled buttons

-
-
-

Make buttons look inactive by adding the disabled boolean attribute to any .btn element. <a>s don’t support the disabled - attribute, so you must add the .disabled - class to make it visually appear disabled.

- -
-
-
-<a href="#" class="btn btn-primary disabled">Primary</a>
-<a href="#" class="btn btn-secondary disabled">Secondary</a>
-<a href="#" class="btn btn-success disabled">Success</a>
-<a href="#" class="btn btn-info disabled">Info</a>
-<a href="#" class="btn btn-warning disabled">Warning</a>
-<a href="#" class="btn btn-danger disabled">Danger</a>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Color variations

-
-
-

The classic button, in different colors.

-
-
- Blue - Azure - Indigo - Purple - Pink - Red - Orange - Yellow - Lime - Green - Teal - Cyan -
-
-
-
-
-<a href="#" class="btn btn-blue">Blue</a>
-<a href="#" class="btn text-white bg-azure">Azure</a>
-<a href="#" class="btn text-white bg-indigo">Indigo</a>
-<a href="#" class="btn text-white bg-purple">Purple</a>
-<a href="#" class="btn text-white bg-pink">Pink</a>
-<a href="#" class="btn text-white bg-red">Red</a>
-<a href="#" class="btn text-white bg-orange">Orange</a>
-<a href="#" class="btn text-white bg-yellow">Yellow</a>
-<a href="#" class="btn text-white bg-lime">Lime</a>
-<a href="#" class="btn text-white bg-green">Green</a>
-<a href="#" class="btn text-white bg-teal">Teal</a>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Square buttons

-
-
-

Add .btn-square to button to remove - border-radius.

- -
-
-
-<a href="#" class="btn btn-square btn-primary">Primary</a>
-<a href="#" class="btn btn-square btn-secondary">Secondary</a>
-<a href="#" class="btn btn-square btn-success">Success</a>
-<a href="#" class="btn btn-square btn-info">Info</a>
-<a href="#" class="btn btn-square btn-warning">Warning</a>
-<a href="#" class="btn btn-square btn-danger">Danger</a>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Pill buttons

-
-
-

Add .btn-pill class to any button to make - them more rounded.

- -
-
-
-<a href="#" class="btn btn-pill btn-primary">Primary</a>
-<a href="#" class="btn btn-pill btn-secondary">Secondary</a>
-<a href="#" class="btn btn-pill btn-success">Success</a>
-<a href="#" class="btn btn-pill btn-info">Info</a>
-<a href="#" class="btn btn-pill btn-warning">Warning</a>
-<a href="#" class="btn btn-pill btn-danger">Danger</a>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Outline buttons

-
-
-

In need of a button, but not the hefty background colors they bring? Replace the - default modifier classes with the .btn-outline-* - ones to remove all - background images and colors on any button.

- -
-
-
-<a href="#" class="btn btn-outline-primary">Primary</a>
-<a href="#" class="btn btn-outline-secondary">Secondary</a>
-<a href="#" class="btn btn-outline-success">Success</a>
-<a href="#" class="btn btn-outline-info">Info</a>
-<a href="#" class="btn btn-outline-warning">Warning</a>
-<a href="#" class="btn btn-outline-danger">Danger</a>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Button size

-
-
-

Add .btn-lg or .btn-sm for additional sizes.

-
-
- - -
-
-
-
-
-<button type="button" class="btn btn-primary btn-lg">Large button</button>
-<button type="button" class="btn btn-secondary btn-lg">Large button</button>
-
-
Markup
-
Copy -
-
-
-
-
- - -
-
-
-
-
-<button type="button" class="btn btn-primary btn-sm">Small button</button>
-<button type="button" class="btn btn-secondary btn-sm">Small button</button>
-
-
Markup
-
Copy -
-
-
-

Create block level buttons—those that span the full width of a parent—by adding - .btn-block.

-
- - -
-
-
-
-<button type="button" class="btn btn-primary btn-block">Block level button</button>
-<button type="button" class="btn btn-secondary btn-block">Block level button</button>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Button with icon

-
-
-

Basic buttons are traditional buttons with borders and background with an extra - commponent like an icon. You can place it either on the left or the right which - ever you want with different color opitons.

-
-
- - - - - - -
-
-
-
-
-<button type="button" class="btn btn-dark"><i class="le le-upload mr-2"></i>Upload</button>
-<button type="button" class="btn btn-warning"><i class="le le-heart mr-2"></i>I like</button>
-<button type="button" class="btn btn-success"><i class="le le-check mr-2"></i>I agree</button>
-<button type="button" class="btn btn-outline-primary"><i class="le le-plus mr-2"></i>More</button>
-<button type="button" class="btn btn-danger"><i class="le le-link mr-2"></i>Link</button>
-<button type="button" class="btn btn-info"><i class="le le-message-circle mr-2"></i>Comment</button>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Social buttons

-
-
-
-
- - - - - - - - - - -
-
-
-
-
-<button type="button" class="btn btn-facebook"><i class="la la-facebook mr-2"></i>Facebook</button>
-<button type="button" class="btn btn-twitter"><i class="la la-twitter mr-2"></i>Twitter</button>
-<button type="button" class="btn btn-google"><i class="la la-google mr-2"></i>Google</button>
-<button type="button" class="btn btn-youtube"><i class="la la-youtube mr-2"></i>Youtube</button>
-<button type="button" class="btn btn-vimeo"><i class="la la-vimeo mr-2"></i>Vimeo</button>
-<button type="button" class="btn btn-dribbble"><i class="la la-dribbble mr-2"></i>Dribble</button>
-<button type="button" class="btn btn-github"><i class="la la-github mr-2"></i>Github</button>
-<button type="button" class="btn btn-instagram"><i class="la la-instagram mr-2"></i>Instagram</button>
-<button type="button" class="btn btn-pinterest"><i class="la la-pinterest mr-2"></i>Pinterest</button>
-<button type="button" class="btn btn-vk"><i class="la la-vk mr-2"></i>VKontakte</button>
-<button type="button" class="btn btn-rss"><i class="la la-rss mr-2"></i>RSS</button>
-<button type="button" class="btn btn-flickr"><i class="la la-flickr mr-2"></i>Flickr</button>
-<button type="button" class="btn btn-bitbucket"><i class="la la-bitbucket mr-2"></i>Bitbucket</button>
-
-
Markup
-
Copy -
-
-
-

You can use only icons.

-
-
- - - - - - - - - - - - - -
-
-
-
-
-<button type="button" class="btn btn-icon btn-facebook"><i class="la la-facebook"></i></button>
-<button type="button" class="btn btn-icon btn-twitter"><i class="la la-twitter"></i></button>
-<button type="button" class="btn btn-icon btn-google"><i class="la la-google"></i></button>
-<button type="button" class="btn btn-icon btn-youtube"><i class="la la-youtube"></i></button>
-<button type="button" class="btn btn-icon btn-vimeo"><i class="la la-vimeo"></i></button>
-<button type="button" class="btn btn-icon btn-dribbble"><i class="la la-dribbble"></i></button>
-<button type="button" class="btn btn-icon btn-github"><i class="la la-github"></i></button>
-<button type="button" class="btn btn-icon btn-instagram"><i class="la la-instagram"></i></button>
-<button type="button" class="btn btn-icon btn-pinterest"><i class="la la-pinterest"></i></button>
-<button type="button" class="btn btn-icon btn-vk"><i class="la la-vk"></i></button>
-<button type="button" class="btn btn-icon btn-rss"><i class="la la-rss"></i></button>
-<button type="button" class="btn btn-icon btn-flickr"><i class="la la-flickr"></i></button>
-<button type="button" class="btn btn-icon btn-bitbucket"><i class="la la-bitbucket"></i></button>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Icon buttons

-
-
-

Icon only button. Add .btn-icon class to - remove unnecessary padding from button.

-
-
- - - - - - - -
-
-
-
-
-<button type="button" class="btn btn-icon btn-primary"><i class="ri-lightbulb-line"></i></button>
-<button type="button" class="btn btn-icon btn-primary btn-github"><i class="ri-github-line"></i></button>
-<button type="button" class="btn btn-icon btn-primary btn-success"><i class="ri-download-line"></i></button>
-<button type="button" class="btn btn-icon btn-primary btn-warning"><i class="ri-alert-line"></i></button>
-<button type="button" class="btn btn-icon btn-primary btn-danger"><i class="ri-delete-bin-7-line"></i></button>
-<button type="button" class="btn btn-icon btn-primary btn-purple"><i class="ri-pie-chart-line"></i></button>
-<button type="button" class="btn btn-icon btn-primary btn-secondary"><i class="ri-share-line"></i></button>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Button dropdown

-
-
-

Wrap the dropdown’s toggle (your button or link) and the dropdown menu within - .dropdown, or another element that - declares position: relative;. Dropdowns - can be triggered from <a> or <button> elements to better fit your - potential needs.

-
-
- - - -
-
-
-
-
-<div class="dropdown">
-    <button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown">
-        <i class="le le-calendar"></i>
-    </button>
-<div class="dropdown-menu">
-    <a class="dropdown-item" href="#">Dropdown link</a>
-    <a class="dropdown-item" href="#">Dropdown link</a>
-</div>
-</div>
-<div class="dropdown">
-    <button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown">
-        <i class="le le-calendar mr-2"></i>Show calendar
-    </button>
-    <div class="dropdown-menu">
-    <a class="dropdown-item" href="#">Dropdown link</a>
-    <a class="dropdown-item" href="#">Dropdown link</a>
-    </div>
-</div>
-<div class="dropdown">
-    <button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown">
-            Show calendar
-    </button>
-    <div class="dropdown-menu">
-    <a class="dropdown-item" href="#">Dropdown link</a>
-    <a class="dropdown-item" href="#">Dropdown link</a>
-    </div>
-</div>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

List of buttons

-
-
-

You can now create a list of buttons with the .btn-list container.

- -
-
-    
-<div class="btn-list">
-    <a href="#" class="btn btn-success">Save changes</a>
-    <a href="#" class="btn btn-secondary">Save and continue</a>
-    <a href="#" class="btn btn-danger">Cancel</a>
-</div>
-
-
Markup
-
Copy -
-
-
-

If the list is very long, it will automatically wrap on multiple lines, while - keeping all buttons evenly spaced.

- -
-
-
-<div class="btn-list">
-    <a href="#" class="btn btn-secondary">One</a>
-    <a href="#" class="btn btn-secondary">Two</a>
-    <a href="#" class="btn btn-secondary">Three</a>
-    <a href="#" class="btn btn-secondary">Four</a>
-    <a href="#" class="btn btn-secondary">Five</a>
-    <a href="#" class="btn btn-secondary">Six</a>
-    <a href="#" class="btn btn-secondary">Seven</a>
-    <a href="#" class="btn btn-secondary">Eight</a>
-    <a href="#" class="btn btn-secondary">Nine</a>
-    <a href="#" class="btn btn-secondary">Ten</a>
-    <a href="#" class="btn btn-secondary">Eleven</a>
-    <a href="#" class="btn btn-secondary">Twelve</a>
-    <a href="#" class="btn btn-secondary">Thirteen</a>
-    <a href="#" class="btn btn-secondary">Fourteen</a>
-    <a href="#" class="btn btn-secondary">Fifteen</a>
-    <a href="#" class="btn btn-secondary">Sixteen</a>
-    <a href="#" class="btn btn-secondary">Seventeen</a>
-    <a href="#" class="btn btn-secondary">Eighteen</a>
-    <a href="#" class="btn btn-secondary">Nineteen</a>
-</div>
-
-
Markup
-
Copy -
-
-
-

Use the .text-center or the .text-right modifiers to alter the - alignment.

- -
-
-
-<div class="btn-list text-center">
-    <a href="#" class="btn btn-primary">Save changes</a>
-    <a href="#" class="btn btn-secondary">Save and continue</a>
-</div>
-
-
Markup
-
Copy -
-
-
- -
-
-    
-<div class="btn-list text-right">
-    <a href="#" class="btn btn-primary">Save changes</a>
-    <a href="#" class="btn btn-secondary">Save and continue</a>
-</div>
-
-
Markup
-
Copy -
-
-
-
-
-
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/changelog.php b/desarrollo/diseno/support-center/changelog.php deleted file mode 100644 index 84b366a8..00000000 --- a/desarrollo/diseno/support-center/changelog.php +++ /dev/null @@ -1,372 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Changelog

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
- -
- Update -
Deskoto Help Center v1.0 is released!
- Updated over a week ago -

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc molestie eu leo at consequat. Maecenas - finibus pellentesque nibh, nec pretium nisl ultrices at. Ut est enim, egestas at purus non, viverra mollis - arcu. Quisque leo felis, fringilla eu elementum vestibulum, consequat et mi.

-
- - -
- Bug Fix -
Login Auth Issue Fixed on Deskoto
- Updated over a week ago -

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc molestie eu leo at consequat. Maecenas - finibus pellentesque nibh, nec pretium nisl ultrices at. Ut est enim, egestas at purus non, viverra mollis - arcu. Quisque leo felis, fringilla eu elementum vestibulum, consequat et mi.

-
- - -
- Feature -
Deskoto new feature is released!
- Updated over a week ago -

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc molestie eu leo at consequat. Maecenas - finibus pellentesque nibh, nec pretium nisl ultrices at. Ut est enim, egestas at purus non, viverra mollis - arcu. Quisque leo felis, fringilla eu elementum vestibulum, consequat et mi.

-
- - -
- Bug Fix -
Responsive Issues Fixed on Deskoto v0.3
- Updated over a week ago -

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc molestie eu leo at consequat. Maecenas - finibus pellentesque nibh, nec pretium nisl ultrices at. Ut est enim, egestas at purus non, viverra mollis - arcu. Quisque leo felis, fringilla eu elementum vestibulum, consequat et mi.

-
- -
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create your own 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/contact.php b/desarrollo/diseno/support-center/contact.php deleted file mode 100644 index 128c3cb1..00000000 --- a/desarrollo/diseno/support-center/contact.php +++ /dev/null @@ -1,387 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Contact Us

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
-
-

Leave us a message.

-
- -
- -
-
- -
-
- - -
-
- -
-
- - -
-
- -
-
- - -
-
- -
-
- - -
-
- -
-
- - -
- -
- -
- -
-
-
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/css/icons.css b/desarrollo/diseno/support-center/css/icons.css deleted file mode 100644 index cd954961..00000000 --- a/desarrollo/diseno/support-center/css/icons.css +++ /dev/null @@ -1,17866 +0,0 @@ -/* -Template Name: COV+19 -Author: Acavo -File: icons.css -*/ - -/*====================================================== -* -// 01 -- Line Awesome -// 02 -- Remix Icon -// 03 -- Flaticon -* -=======================================================*/ -/*====================================== - - 01 -- Line awesome - -=======================================*/ - -.la, -.las, -.lar, -.lal, -.lad, -.lab { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1; -} - -.la-lg { - font-size: 1.33333em; - line-height: 0.75em; - vertical-align: -.0667em; -} - -.la-xs { - font-size: .75em; -} - -.la-sm { - font-size: .875em; -} - -.la-1x { - font-size: 1em; -} - -.la-2x { - font-size: 2em; -} - -.la-3x { - font-size: 3em; -} - -.la-4x { - font-size: 4em; -} - -.la-5x { - font-size: 5em; -} - -.la-6x { - font-size: 6em; -} - -.la-7x { - font-size: 7em; -} - -.la-8x { - font-size: 8em; -} - -.la-9x { - font-size: 9em; -} - -.la-10x { - font-size: 10em; -} - -.la-fw { - text-align: center; - width: 1.25em; -} - -.la-ul { - list-style-type: none; - margin-left: 2.5em; - padding-left: 0; -} - -.la-ul>li { - position: relative; -} - -.la-li { - left: -2em; - position: absolute; - text-align: center; - width: 2em; - line-height: inherit; -} - -.la-border { - border: solid 0.08em #eee; - border-radius: .1em; - padding: .2em .25em .15em; -} - -.la-pull-left { - float: left; -} - -.la-pull-right { - float: right; -} - -.la.la-pull-left, -.las.la-pull-left, -.lar.la-pull-left, -.lal.la-pull-left, -.lab.la-pull-left { - margin-right: .3em; -} - -.la.la-pull-right, -.las.la-pull-right, -.lar.la-pull-right, -.lal.la-pull-right, -.lab.la-pull-right { - margin-left: .3em; -} - -.la-spin { - -webkit-animation: la-spin 2s infinite linear; - animation: la-spin 2s infinite linear; -} - -.la-pulse { - -webkit-animation: la-spin 1s infinite steps(8); - animation: la-spin 1s infinite steps(8); -} - -@-webkit-keyframes la-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes la-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -.la-rotate-90 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} - -.la-rotate-180 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} - -.la-rotate-270 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform: rotate(270deg); - transform: rotate(270deg); -} - -.la-flip-horizontal { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); -} - -.la-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(1, -1); - transform: scale(1, -1); -} - -.la-flip-both, -.la-flip-horizontal.la-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); -} - -:root .la-rotate-90, -:root .la-rotate-180, -:root .la-rotate-270, -:root .la-flip-horizontal, -:root .la-flip-vertical, -:root .la-flip-both { - -webkit-filter: none; - filter: none; -} - -.la-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; -} - -.la-stack-1x, -.la-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; -} - -.la-stack-1x { - line-height: inherit; -} - -.la-stack-2x { - font-size: 2em; -} - -.la-inverse { - color: #fff; -} - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ -.la-500px:before { - content: "\f26e"; -} - -.la-accessible-icon:before { - content: "\f368"; -} - -.la-accusoft:before { - content: "\f369"; -} - -.la-acquisitions-incorporated:before { - content: "\f6af"; -} - -.la-ad:before { - content: "\f641"; -} - -.la-address-book:before { - content: "\f2b9"; -} - -.la-address-card:before { - content: "\f2bb"; -} - -.la-adjust:before { - content: "\f042"; -} - -.la-adn:before { - content: "\f170"; -} - -.la-adobe:before { - content: "\f778"; -} - -.la-adversal:before { - content: "\f36a"; -} - -.la-affiliatetheme:before { - content: "\f36b"; -} - -.la-air-freshener:before { - content: "\f5d0"; -} - -.la-airbnb:before { - content: "\f834"; -} - -.la-algolia:before { - content: "\f36c"; -} - -.la-align-center:before { - content: "\f037"; -} - -.la-align-justify:before { - content: "\f039"; -} - -.la-align-left:before { - content: "\f036"; -} - -.la-align-right:before { - content: "\f038"; -} - -.la-alipay:before { - content: "\f642"; -} - -.la-allergies:before { - content: "\f461"; -} - -.la-amazon:before { - content: "\f270"; -} - -.la-amazon-pay:before { - content: "\f42c"; -} - -.la-ambulance:before { - content: "\f0f9"; -} - -.la-american-sign-language-interpreting:before { - content: "\f2a3"; -} - -.la-amilia:before { - content: "\f36d"; -} - -.la-anchor:before { - content: "\f13d"; -} - -.la-android:before { - content: "\f17b"; -} - -.la-angellist:before { - content: "\f209"; -} - -.la-angle-double-down:before { - content: "\f103"; -} - -.la-angle-double-left:before { - content: "\f100"; -} - -.la-angle-double-right:before { - content: "\f101"; -} - -.la-angle-double-up:before { - content: "\f102"; -} - -.la-angle-down:before { - content: "\f107"; -} - -.la-angle-left:before { - content: "\f104"; -} - -.la-angle-right:before { - content: "\f105"; -} - -.la-angle-up:before { - content: "\f106"; -} - -.la-angry:before { - content: "\f556"; -} - -.la-angrycreative:before { - content: "\f36e"; -} - -.la-angular:before { - content: "\f420"; -} - -.la-ankh:before { - content: "\f644"; -} - -.la-app-store:before { - content: "\f36f"; -} - -.la-app-store-ios:before { - content: "\f370"; -} - -.la-apper:before { - content: "\f371"; -} - -.la-apple:before { - content: "\f179"; -} - -.la-apple-alt:before { - content: "\f5d1"; -} - -.la-apple-pay:before { - content: "\f415"; -} - -.la-archive:before { - content: "\f187"; -} - -.la-archway:before { - content: "\f557"; -} - -.la-arrow-alt-circle-down:before { - content: "\f358"; -} - -.la-arrow-alt-circle-left:before { - content: "\f359"; -} - -.la-arrow-alt-circle-right:before { - content: "\f35a"; -} - -.la-arrow-alt-circle-up:before { - content: "\f35b"; -} - -.la-arrow-circle-down:before { - content: "\f0ab"; -} - -.la-arrow-circle-left:before { - content: "\f0a8"; -} - -.la-arrow-circle-right:before { - content: "\f0a9"; -} - -.la-arrow-circle-up:before { - content: "\f0aa"; -} - -.la-arrow-down:before { - content: "\f063"; -} - -.la-arrow-left:before { - content: "\f060"; -} - -.la-arrow-right:before { - content: "\f061"; -} - -.la-arrow-up:before { - content: "\f062"; -} - -.la-arrows-alt:before { - content: "\f0b2"; -} - -.la-arrows-alt-h:before { - content: "\f337"; -} - -.la-arrows-alt-v:before { - content: "\f338"; -} - -.la-artstation:before { - content: "\f77a"; -} - -.la-assistive-listening-systems:before { - content: "\f2a2"; -} - -.la-asterisk:before { - content: "\f069"; -} - -.la-asymmetrik:before { - content: "\f372"; -} - -.la-at:before { - content: "\f1fa"; -} - -.la-atlas:before { - content: "\f558"; -} - -.la-atlassian:before { - content: "\f77b"; -} - -.la-atom:before { - content: "\f5d2"; -} - -.la-audible:before { - content: "\f373"; -} - -.la-audio-description:before { - content: "\f29e"; -} - -.la-autoprefixer:before { - content: "\f41c"; -} - -.la-avianex:before { - content: "\f374"; -} - -.la-aviato:before { - content: "\f421"; -} - -.la-award:before { - content: "\f559"; -} - -.la-aws:before { - content: "\f375"; -} - -.la-baby:before { - content: "\f77c"; -} - -.la-baby-carriage:before { - content: "\f77d"; -} - -.la-backspace:before { - content: "\f55a"; -} - -.la-backward:before { - content: "\f04a"; -} - -.la-bacon:before { - content: "\f7e5"; -} - -.la-balance-scale:before { - content: "\f24e"; -} - -.la-balance-scale-left:before { - content: "\f515"; -} - -.la-balance-scale-right:before { - content: "\f516"; -} - -.la-ban:before { - content: "\f05e"; -} - -.la-band-aid:before { - content: "\f462"; -} - -.la-bandcamp:before { - content: "\f2d5"; -} - -.la-barcode:before { - content: "\f02a"; -} - -.la-bars:before { - content: "\f0c9"; -} - -.la-baseball-ball:before { - content: "\f433"; -} - -.la-basketball-ball:before { - content: "\f434"; -} - -.la-bath:before { - content: "\f2cd"; -} - -.la-battery-empty:before { - content: "\f244"; -} - -.la-battery-full:before { - content: "\f240"; -} - -.la-battery-half:before { - content: "\f242"; -} - -.la-battery-quarter:before { - content: "\f243"; -} - -.la-battery-three-quarters:before { - content: "\f241"; -} - -.la-battle-net:before { - content: "\f835"; -} - -.la-bed:before { - content: "\f236"; -} - -.la-beer:before { - content: "\f0fc"; -} - -.la-behance:before { - content: "\f1b4"; -} - -.la-behance-square:before { - content: "\f1b5"; -} - -.la-bell:before { - content: "\f0f3"; -} - -.la-bell-slash:before { - content: "\f1f6"; -} - -.la-bezier-curve:before { - content: "\f55b"; -} - -.la-bible:before { - content: "\f647"; -} - -.la-bicycle:before { - content: "\f206"; -} - -.la-biking:before { - content: "\f84a"; -} - -.la-bimobject:before { - content: "\f378"; -} - -.la-binoculars:before { - content: "\f1e5"; -} - -.la-biohazard:before { - content: "\f780"; -} - -.la-birthday-cake:before { - content: "\f1fd"; -} - -.la-bitbucket:before { - content: "\f171"; -} - -.la-bitcoin:before { - content: "\f379"; -} - -.la-bity:before { - content: "\f37a"; -} - -.la-black-tie:before { - content: "\f27e"; -} - -.la-blackberry:before { - content: "\f37b"; -} - -.la-blender:before { - content: "\f517"; -} - -.la-blender-phone:before { - content: "\f6b6"; -} - -.la-blind:before { - content: "\f29d"; -} - -.la-blog:before { - content: "\f781"; -} - -.la-blogger:before { - content: "\f37c"; -} - -.la-blogger-b:before { - content: "\f37d"; -} - -.la-bluetooth:before { - content: "\f293"; -} - -.la-bluetooth-b:before { - content: "\f294"; -} - -.la-bold:before { - content: "\f032"; -} - -.la-bolt:before { - content: "\f0e7"; -} - -.la-bomb:before { - content: "\f1e2"; -} - -.la-bone:before { - content: "\f5d7"; -} - -.la-bong:before { - content: "\f55c"; -} - -.la-book:before { - content: "\f02d"; -} - -.la-book-dead:before { - content: "\f6b7"; -} - -.la-book-medical:before { - content: "\f7e6"; -} - -.la-book-open:before { - content: "\f518"; -} - -.la-book-reader:before { - content: "\f5da"; -} - -.la-bookmark:before { - content: "\f02e"; -} - -.la-bootstrap:before { - content: "\f836"; -} - -.la-border-all:before { - content: "\f84c"; -} - -.la-border-none:before { - content: "\f850"; -} - -.la-border-style:before { - content: "\f853"; -} - -.la-bowling-ball:before { - content: "\f436"; -} - -.la-box:before { - content: "\f466"; -} - -.la-box-open:before { - content: "\f49e"; -} - -.la-boxes:before { - content: "\f468"; -} - -.la-braille:before { - content: "\f2a1"; -} - -.la-brain:before { - content: "\f5dc"; -} - -.la-bread-slice:before { - content: "\f7ec"; -} - -.la-briefcase:before { - content: "\f0b1"; -} - -.la-briefcase-medical:before { - content: "\f469"; -} - -.la-broadcast-tower:before { - content: "\f519"; -} - -.la-broom:before { - content: "\f51a"; -} - -.la-brush:before { - content: "\f55d"; -} - -.la-btc:before { - content: "\f15a"; -} - -.la-buffer:before { - content: "\f837"; -} - -.la-bug:before { - content: "\f188"; -} - -.la-building:before { - content: "\f1ad"; -} - -.la-bullhorn:before { - content: "\f0a1"; -} - -.la-bullseye:before { - content: "\f140"; -} - -.la-burn:before { - content: "\f46a"; -} - -.la-buromobelexperte:before { - content: "\f37f"; -} - -.la-bus:before { - content: "\f207"; -} - -.la-bus-alt:before { - content: "\f55e"; -} - -.la-business-time:before { - content: "\f64a"; -} - -.la-buy-n-large:before { - content: "\f8a6"; -} - -.la-buysellads:before { - content: "\f20d"; -} - -.la-calculator:before { - content: "\f1ec"; -} - -.la-calendar:before { - content: "\f133"; -} - -.la-calendar-alt:before { - content: "\f073"; -} - -.la-calendar-check:before { - content: "\f274"; -} - -.la-calendar-day:before { - content: "\f783"; -} - -.la-calendar-minus:before { - content: "\f272"; -} - -.la-calendar-plus:before { - content: "\f271"; -} - -.la-calendar-times:before { - content: "\f273"; -} - -.la-calendar-week:before { - content: "\f784"; -} - -.la-camera:before { - content: "\f030"; -} - -.la-camera-retro:before { - content: "\f083"; -} - -.la-campground:before { - content: "\f6bb"; -} - -.la-canadian-maple-leaf:before { - content: "\f785"; -} - -.la-candy-cane:before { - content: "\f786"; -} - -.la-cannabis:before { - content: "\f55f"; -} - -.la-capsules:before { - content: "\f46b"; -} - -.la-car:before { - content: "\f1b9"; -} - -.la-car-alt:before { - content: "\f5de"; -} - -.la-car-battery:before { - content: "\f5df"; -} - -.la-car-crash:before { - content: "\f5e1"; -} - -.la-car-side:before { - content: "\f5e4"; -} - -.la-caret-down:before { - content: "\f0d7"; -} - -.la-caret-left:before { - content: "\f0d9"; -} - -.la-caret-right:before { - content: "\f0da"; -} - -.la-caret-square-down:before { - content: "\f150"; -} - -.la-caret-square-left:before { - content: "\f191"; -} - -.la-caret-square-right:before { - content: "\f152"; -} - -.la-caret-square-up:before { - content: "\f151"; -} - -.la-caret-up:before { - content: "\f0d8"; -} - -.la-carrot:before { - content: "\f787"; -} - -.la-cart-arrow-down:before { - content: "\f218"; -} - -.la-cart-plus:before { - content: "\f217"; -} - -.la-cash-register:before { - content: "\f788"; -} - -.la-cat:before { - content: "\f6be"; -} - -.la-cc-amazon-pay:before { - content: "\f42d"; -} - -.la-cc-amex:before { - content: "\f1f3"; -} - -.la-cc-apple-pay:before { - content: "\f416"; -} - -.la-cc-diners-club:before { - content: "\f24c"; -} - -.la-cc-discover:before { - content: "\f1f2"; -} - -.la-cc-jcb:before { - content: "\f24b"; -} - -.la-cc-mastercard:before { - content: "\f1f1"; -} - -.la-cc-paypal:before { - content: "\f1f4"; -} - -.la-cc-stripe:before { - content: "\f1f5"; -} - -.la-cc-visa:before { - content: "\f1f0"; -} - -.la-centercode:before { - content: "\f380"; -} - -.la-centos:before { - content: "\f789"; -} - -.la-certificate:before { - content: "\f0a3"; -} - -.la-chair:before { - content: "\f6c0"; -} - -.la-chalkboard:before { - content: "\f51b"; -} - -.la-chalkboard-teacher:before { - content: "\f51c"; -} - -.la-charging-station:before { - content: "\f5e7"; -} - -.la-chart-area:before { - content: "\f1fe"; -} - -.la-chart-bar:before { - content: "\f080"; -} - -.la-chart-line:before { - content: "\f201"; -} - -.la-chart-pie:before { - content: "\f200"; -} - -.la-check:before { - content: "\f00c"; -} - -.la-check-circle:before { - content: "\f058"; -} - -.la-check-double:before { - content: "\f560"; -} - -.la-check-square:before { - content: "\f14a"; -} - -.la-cheese:before { - content: "\f7ef"; -} - -.la-chess:before { - content: "\f439"; -} - -.la-chess-bishop:before { - content: "\f43a"; -} - -.la-chess-board:before { - content: "\f43c"; -} - -.la-chess-king:before { - content: "\f43f"; -} - -.la-chess-knight:before { - content: "\f441"; -} - -.la-chess-pawn:before { - content: "\f443"; -} - -.la-chess-queen:before { - content: "\f445"; -} - -.la-chess-rook:before { - content: "\f447"; -} - -.la-chevron-circle-down:before { - content: "\f13a"; -} - -.la-chevron-circle-left:before { - content: "\f137"; -} - -.la-chevron-circle-right:before { - content: "\f138"; -} - -.la-chevron-circle-up:before { - content: "\f139"; -} - -.la-chevron-down:before { - content: "\f078"; -} - -.la-chevron-left:before { - content: "\f053"; -} - -.la-chevron-right:before { - content: "\f054"; -} - -.la-chevron-up:before { - content: "\f077"; -} - -.la-child:before { - content: "\f1ae"; -} - -.la-chrome:before { - content: "\f268"; -} - -.la-chromecast:before { - content: "\f838"; -} - -.la-church:before { - content: "\f51d"; -} - -.la-circle:before { - content: "\f111"; -} - -.la-circle-notch:before { - content: "\f1ce"; -} - -.la-city:before { - content: "\f64f"; -} - -.la-clinic-medical:before { - content: "\f7f2"; -} - -.la-clipboard:before { - content: "\f328"; -} - -.la-clipboard-check:before { - content: "\f46c"; -} - -.la-clipboard-list:before { - content: "\f46d"; -} - -.la-clock:before { - content: "\f017"; -} - -.la-clone:before { - content: "\f24d"; -} - -.la-closed-captioning:before { - content: "\f20a"; -} - -.la-cloud:before { - content: "\f0c2"; -} - -.la-cloud-download-alt:before { - content: "\f381"; -} - -.la-cloud-meatball:before { - content: "\f73b"; -} - -.la-cloud-moon:before { - content: "\f6c3"; -} - -.la-cloud-moon-rain:before { - content: "\f73c"; -} - -.la-cloud-rain:before { - content: "\f73d"; -} - -.la-cloud-showers-heavy:before { - content: "\f740"; -} - -.la-cloud-sun:before { - content: "\f6c4"; -} - -.la-cloud-sun-rain:before { - content: "\f743"; -} - -.la-cloud-upload-alt:before { - content: "\f382"; -} - -.la-cloudscale:before { - content: "\f383"; -} - -.la-cloudsmith:before { - content: "\f384"; -} - -.la-cloudversify:before { - content: "\f385"; -} - -.la-cocktail:before { - content: "\f561"; -} - -.la-code:before { - content: "\f121"; -} - -.la-code-branch:before { - content: "\f126"; -} - -.la-codepen:before { - content: "\f1cb"; -} - -.la-codiepie:before { - content: "\f284"; -} - -.la-coffee:before { - content: "\f0f4"; -} - -.la-cog:before { - content: "\f013"; -} - -.la-cogs:before { - content: "\f085"; -} - -.la-coins:before { - content: "\f51e"; -} - -.la-columns:before { - content: "\f0db"; -} - -.la-comment:before { - content: "\f075"; -} - -.la-comment-alt:before { - content: "\f27a"; -} - -.la-comment-dollar:before { - content: "\f651"; -} - -.la-comment-dots:before { - content: "\f4ad"; -} - -.la-comment-medical:before { - content: "\f7f5"; -} - -.la-comment-slash:before { - content: "\f4b3"; -} - -.la-comments:before { - content: "\f086"; -} - -.la-comments-dollar:before { - content: "\f653"; -} - -.la-compact-disc:before { - content: "\f51f"; -} - -.la-compass:before { - content: "\f14e"; -} - -.la-compress:before { - content: "\f066"; -} - -.la-compress-arrows-alt:before { - content: "\f78c"; -} - -.la-concierge-bell:before { - content: "\f562"; -} - -.la-confluence:before { - content: "\f78d"; -} - -.la-connectdevelop:before { - content: "\f20e"; -} - -.la-contao:before { - content: "\f26d"; -} - -.la-cookie:before { - content: "\f563"; -} - -.la-cookie-bite:before { - content: "\f564"; -} - -.la-copy:before { - content: "\f0c5"; -} - -.la-copyright:before { - content: "\f1f9"; -} - -.la-cotton-bureau:before { - content: "\f89e"; -} - -.la-couch:before { - content: "\f4b8"; -} - -.la-cpanel:before { - content: "\f388"; -} - -.la-creative-commons:before { - content: "\f25e"; -} - -.la-creative-commons-by:before { - content: "\f4e7"; -} - -.la-creative-commons-nc:before { - content: "\f4e8"; -} - -.la-creative-commons-nc-eu:before { - content: "\f4e9"; -} - -.la-creative-commons-nc-jp:before { - content: "\f4ea"; -} - -.la-creative-commons-nd:before { - content: "\f4eb"; -} - -.la-creative-commons-pd:before { - content: "\f4ec"; -} - -.la-creative-commons-pd-alt:before { - content: "\f4ed"; -} - -.la-creative-commons-remix:before { - content: "\f4ee"; -} - -.la-creative-commons-sa:before { - content: "\f4ef"; -} - -.la-creative-commons-sampling:before { - content: "\f4f0"; -} - -.la-creative-commons-sampling-plus:before { - content: "\f4f1"; -} - -.la-creative-commons-share:before { - content: "\f4f2"; -} - -.la-creative-commons-zero:before { - content: "\f4f3"; -} - -.la-credit-card:before { - content: "\f09d"; -} - -.la-critical-role:before { - content: "\f6c9"; -} - -.la-crop:before { - content: "\f125"; -} - -.la-crop-alt:before { - content: "\f565"; -} - -.la-cross:before { - content: "\f654"; -} - -.la-crosshairs:before { - content: "\f05b"; -} - -.la-crow:before { - content: "\f520"; -} - -.la-crown:before { - content: "\f521"; -} - -.la-crutch:before { - content: "\f7f7"; -} - -.la-css3:before { - content: "\f13c"; -} - -.la-css3-alt:before { - content: "\f38b"; -} - -.la-cube:before { - content: "\f1b2"; -} - -.la-cubes:before { - content: "\f1b3"; -} - -.la-cut:before { - content: "\f0c4"; -} - -.la-cuttlefish:before { - content: "\f38c"; -} - -.la-d-and-d:before { - content: "\f38d"; -} - -.la-d-and-d-beyond:before { - content: "\f6ca"; -} - -.la-dashcube:before { - content: "\f210"; -} - -.la-database:before { - content: "\f1c0"; -} - -.la-deaf:before { - content: "\f2a4"; -} - -.la-delicious:before { - content: "\f1a5"; -} - -.la-democrat:before { - content: "\f747"; -} - -.la-deploydog:before { - content: "\f38e"; -} - -.la-deskpro:before { - content: "\f38f"; -} - -.la-desktop:before { - content: "\f108"; -} - -.la-dev:before { - content: "\f6cc"; -} - -.la-deviantart:before { - content: "\f1bd"; -} - -.la-dharmachakra:before { - content: "\f655"; -} - -.la-dhl:before { - content: "\f790"; -} - -.la-diagnoses:before { - content: "\f470"; -} - -.la-diaspora:before { - content: "\f791"; -} - -.la-dice:before { - content: "\f522"; -} - -.la-dice-d20:before { - content: "\f6cf"; -} - -.la-dice-d6:before { - content: "\f6d1"; -} - -.la-dice-five:before { - content: "\f523"; -} - -.la-dice-four:before { - content: "\f524"; -} - -.la-dice-one:before { - content: "\f525"; -} - -.la-dice-six:before { - content: "\f526"; -} - -.la-dice-three:before { - content: "\f527"; -} - -.la-dice-two:before { - content: "\f528"; -} - -.la-digg:before { - content: "\f1a6"; -} - -.la-digital-ocean:before { - content: "\f391"; -} - -.la-digital-tachograph:before { - content: "\f566"; -} - -.la-directions:before { - content: "\f5eb"; -} - -.la-discord:before { - content: "\f392"; -} - -.la-discourse:before { - content: "\f393"; -} - -.la-divide:before { - content: "\f529"; -} - -.la-dizzy:before { - content: "\f567"; -} - -.la-dna:before { - content: "\f471"; -} - -.la-dochub:before { - content: "\f394"; -} - -.la-docker:before { - content: "\f395"; -} - -.la-dog:before { - content: "\f6d3"; -} - -.la-dollar-sign:before { - content: "\f155"; -} - -.la-dolly:before { - content: "\f472"; -} - -.la-dolly-flatbed:before { - content: "\f474"; -} - -.la-donate:before { - content: "\f4b9"; -} - -.la-door-closed:before { - content: "\f52a"; -} - -.la-door-open:before { - content: "\f52b"; -} - -.la-dot-circle:before { - content: "\f192"; -} - -.la-dove:before { - content: "\f4ba"; -} - -.la-download:before { - content: "\f019"; -} - -.la-draft2digital:before { - content: "\f396"; -} - -.la-drafting-compass:before { - content: "\f568"; -} - -.la-dragon:before { - content: "\f6d5"; -} - -.la-draw-polygon:before { - content: "\f5ee"; -} - -.la-dribbble:before { - content: "\f17d"; -} - -.la-dribbble-square:before { - content: "\f397"; -} - -.la-dropbox:before { - content: "\f16b"; -} - -.la-drum:before { - content: "\f569"; -} - -.la-drum-steelpan:before { - content: "\f56a"; -} - -.la-drumstick-bite:before { - content: "\f6d7"; -} - -.la-drupal:before { - content: "\f1a9"; -} - -.la-dumbbell:before { - content: "\f44b"; -} - -.la-dumpster:before { - content: "\f793"; -} - -.la-dumpster-fire:before { - content: "\f794"; -} - -.la-dungeon:before { - content: "\f6d9"; -} - -.la-dyalog:before { - content: "\f399"; -} - -.la-earlybirds:before { - content: "\f39a"; -} - -.la-ebay:before { - content: "\f4f4"; -} - -.la-edge:before { - content: "\f282"; -} - -.la-edit:before { - content: "\f044"; -} - -.la-egg:before { - content: "\f7fb"; -} - -.la-eject:before { - content: "\f052"; -} - -.la-elementor:before { - content: "\f430"; -} - -.la-ellipsis-h:before { - content: "\f141"; -} - -.la-ellipsis-v:before { - content: "\f142"; -} - -.la-ello:before { - content: "\f5f1"; -} - -.la-ember:before { - content: "\f423"; -} - -.la-empire:before { - content: "\f1d1"; -} - -.la-envelope:before { - content: "\f0e0"; -} - -.la-envelope-open:before { - content: "\f2b6"; -} - -.la-envelope-open-text:before { - content: "\f658"; -} - -.la-envelope-square:before { - content: "\f199"; -} - -.la-envira:before { - content: "\f299"; -} - -.la-equals:before { - content: "\f52c"; -} - -.la-eraser:before { - content: "\f12d"; -} - -.la-erlang:before { - content: "\f39d"; -} - -.la-ethereum:before { - content: "\f42e"; -} - -.la-ethernet:before { - content: "\f796"; -} - -.la-etsy:before { - content: "\f2d7"; -} - -.la-euro-sign:before { - content: "\f153"; -} - -.la-evernote:before { - content: "\f839"; -} - -.la-exchange-alt:before { - content: "\f362"; -} - -.la-exclamation:before { - content: "\f12a"; -} - -.la-exclamation-circle:before { - content: "\f06a"; -} - -.la-exclamation-triangle:before { - content: "\f071"; -} - -.la-expand:before { - content: "\f065"; -} - -.la-expand-arrows-alt:before { - content: "\f31e"; -} - -.la-expeditedssl:before { - content: "\f23e"; -} - -.la-external-link-alt:before { - content: "\f35d"; -} - -.la-external-link-square-alt:before { - content: "\f360"; -} - -.la-eye:before { - content: "\f06e"; -} - -.la-eye-dropper:before { - content: "\f1fb"; -} - -.la-eye-slash:before { - content: "\f070"; -} - -.la-facebook:before { - content: "\f09a"; -} - -.la-facebook-f:before { - content: "\f39e"; -} - -.la-facebook-messenger:before { - content: "\f39f"; -} - -.la-facebook-square:before { - content: "\f082"; -} - -.la-fan:before { - content: "\f863"; -} - -.la-fantasy-flight-games:before { - content: "\f6dc"; -} - -.la-fast-backward:before { - content: "\f049"; -} - -.la-fast-forward:before { - content: "\f050"; -} - -.la-fax:before { - content: "\f1ac"; -} - -.la-feather:before { - content: "\f52d"; -} - -.la-feather-alt:before { - content: "\f56b"; -} - -.la-fedex:before { - content: "\f797"; -} - -.la-fedora:before { - content: "\f798"; -} - -.la-female:before { - content: "\f182"; -} - -.la-fighter-jet:before { - content: "\f0fb"; -} - -.la-figma:before { - content: "\f799"; -} - -.la-file:before { - content: "\f15b"; -} - -.la-file-alt:before { - content: "\f15c"; -} - -.la-file-archive:before { - content: "\f1c6"; -} - -.la-file-audio:before { - content: "\f1c7"; -} - -.la-file-code:before { - content: "\f1c9"; -} - -.la-file-contract:before { - content: "\f56c"; -} - -.la-file-csv:before { - content: "\f6dd"; -} - -.la-file-download:before { - content: "\f56d"; -} - -.la-file-excel:before { - content: "\f1c3"; -} - -.la-file-export:before { - content: "\f56e"; -} - -.la-file-image:before { - content: "\f1c5"; -} - -.la-file-import:before { - content: "\f56f"; -} - -.la-file-invoice:before { - content: "\f570"; -} - -.la-file-invoice-dollar:before { - content: "\f571"; -} - -.la-file-medical:before { - content: "\f477"; -} - -.la-file-medical-alt:before { - content: "\f478"; -} - -.la-file-pdf:before { - content: "\f1c1"; -} - -.la-file-powerpoint:before { - content: "\f1c4"; -} - -.la-file-prescription:before { - content: "\f572"; -} - -.la-file-signature:before { - content: "\f573"; -} - -.la-file-upload:before { - content: "\f574"; -} - -.la-file-video:before { - content: "\f1c8"; -} - -.la-file-word:before { - content: "\f1c2"; -} - -.la-fill:before { - content: "\f575"; -} - -.la-fill-drip:before { - content: "\f576"; -} - -.la-film:before { - content: "\f008"; -} - -.la-filter:before { - content: "\f0b0"; -} - -.la-fingerprint:before { - content: "\f577"; -} - -.la-fire:before { - content: "\f06d"; -} - -.la-fire-alt:before { - content: "\f7e4"; -} - -.la-fire-extinguisher:before { - content: "\f134"; -} - -.la-firefox:before { - content: "\f269"; -} - -.la-first-aid:before { - content: "\f479"; -} - -.la-first-order:before { - content: "\f2b0"; -} - -.la-first-order-alt:before { - content: "\f50a"; -} - -.la-firstdraft:before { - content: "\f3a1"; -} - -.la-fish:before { - content: "\f578"; -} - -.la-fist-raised:before { - content: "\f6de"; -} - -.la-flag:before { - content: "\f024"; -} - -.la-flag-checkered:before { - content: "\f11e"; -} - -.la-flag-usa:before { - content: "\f74d"; -} - -.la-flask:before { - content: "\f0c3"; -} - -.la-flickr:before { - content: "\f16e"; -} - -.la-flipboard:before { - content: "\f44d"; -} - -.la-flushed:before { - content: "\f579"; -} - -.la-fly:before { - content: "\f417"; -} - -.la-folder:before { - content: "\f07b"; -} - -.la-folder-minus:before { - content: "\f65d"; -} - -.la-folder-open:before { - content: "\f07c"; -} - -.la-folder-plus:before { - content: "\f65e"; -} - -.la-font:before { - content: "\f031"; -} - -.la-font-awesome:before { - content: "\f2b4"; -} - -.la-font-awesome-alt:before { - content: "\f35c"; -} - -.la-font-awesome-flag:before { - content: "\f425"; -} - -.la-font-awesome-logo-full:before { - content: "\f4e6"; -} - -.la-fonticons:before { - content: "\f280"; -} - -.la-fonticons-fi:before { - content: "\f3a2"; -} - -.la-football-ball:before { - content: "\f44e"; -} - -.la-fort-awesome:before { - content: "\f286"; -} - -.la-fort-awesome-alt:before { - content: "\f3a3"; -} - -.la-forumbee:before { - content: "\f211"; -} - -.la-forward:before { - content: "\f04e"; -} - -.la-foursquare:before { - content: "\f180"; -} - -.la-free-code-camp:before { - content: "\f2c5"; -} - -.la-freebsd:before { - content: "\f3a4"; -} - -.la-frog:before { - content: "\f52e"; -} - -.la-frown:before { - content: "\f119"; -} - -.la-frown-open:before { - content: "\f57a"; -} - -.la-fulcrum:before { - content: "\f50b"; -} - -.la-funnel-dollar:before { - content: "\f662"; -} - -.la-futbol:before { - content: "\f1e3"; -} - -.la-galactic-republic:before { - content: "\f50c"; -} - -.la-galactic-senate:before { - content: "\f50d"; -} - -.la-gamepad:before { - content: "\f11b"; -} - -.la-gas-pump:before { - content: "\f52f"; -} - -.la-gavel:before { - content: "\f0e3"; -} - -.la-gem:before { - content: "\f3a5"; -} - -.la-genderless:before { - content: "\f22d"; -} - -.la-get-pocket:before { - content: "\f265"; -} - -.la-gg:before { - content: "\f260"; -} - -.la-gg-circle:before { - content: "\f261"; -} - -.la-ghost:before { - content: "\f6e2"; -} - -.la-gift:before { - content: "\f06b"; -} - -.la-gifts:before { - content: "\f79c"; -} - -.la-git:before { - content: "\f1d3"; -} - -.la-git-alt:before { - content: "\f841"; -} - -.la-git-square:before { - content: "\f1d2"; -} - -.la-github:before { - content: "\f09b"; -} - -.la-github-alt:before { - content: "\f113"; -} - -.la-github-square:before { - content: "\f092"; -} - -.la-gitkraken:before { - content: "\f3a6"; -} - -.la-gitlab:before { - content: "\f296"; -} - -.la-gitter:before { - content: "\f426"; -} - -.la-glass-cheers:before { - content: "\f79f"; -} - -.la-glass-martini:before { - content: "\f000"; -} - -.la-glass-martini-alt:before { - content: "\f57b"; -} - -.la-glass-whiskey:before { - content: "\f7a0"; -} - -.la-glasses:before { - content: "\f530"; -} - -.la-glide:before { - content: "\f2a5"; -} - -.la-glide-g:before { - content: "\f2a6"; -} - -.la-globe:before { - content: "\f0ac"; -} - -.la-globe-africa:before { - content: "\f57c"; -} - -.la-globe-americas:before { - content: "\f57d"; -} - -.la-globe-asia:before { - content: "\f57e"; -} - -.la-globe-europe:before { - content: "\f7a2"; -} - -.la-gofore:before { - content: "\f3a7"; -} - -.la-golf-ball:before { - content: "\f450"; -} - -.la-goodreads:before { - content: "\f3a8"; -} - -.la-goodreads-g:before { - content: "\f3a9"; -} - -.la-google:before { - content: "\f1a0"; -} - -.la-google-drive:before { - content: "\f3aa"; -} - -.la-google-play:before { - content: "\f3ab"; -} - -.la-google-plus:before { - content: "\f2b3"; -} - -.la-google-plus-g:before { - content: "\f0d5"; -} - -.la-google-plus-square:before { - content: "\f0d4"; -} - -.la-google-wallet:before { - content: "\f1ee"; -} - -.la-gopuram:before { - content: "\f664"; -} - -.la-graduation-cap:before { - content: "\f19d"; -} - -.la-gratipay:before { - content: "\f184"; -} - -.la-grav:before { - content: "\f2d6"; -} - -.la-greater-than:before { - content: "\f531"; -} - -.la-greater-than-equal:before { - content: "\f532"; -} - -.la-grimace:before { - content: "\f57f"; -} - -.la-grin:before { - content: "\f580"; -} - -.la-grin-alt:before { - content: "\f581"; -} - -.la-grin-beam:before { - content: "\f582"; -} - -.la-grin-beam-sweat:before { - content: "\f583"; -} - -.la-grin-hearts:before { - content: "\f584"; -} - -.la-grin-squint:before { - content: "\f585"; -} - -.la-grin-squint-tears:before { - content: "\f586"; -} - -.la-grin-stars:before { - content: "\f587"; -} - -.la-grin-tears:before { - content: "\f588"; -} - -.la-grin-tongue:before { - content: "\f589"; -} - -.la-grin-tongue-squint:before { - content: "\f58a"; -} - -.la-grin-tongue-wink:before { - content: "\f58b"; -} - -.la-grin-wink:before { - content: "\f58c"; -} - -.la-grip-horizontal:before { - content: "\f58d"; -} - -.la-grip-lines:before { - content: "\f7a4"; -} - -.la-grip-lines-vertical:before { - content: "\f7a5"; -} - -.la-grip-vertical:before { - content: "\f58e"; -} - -.la-gripfire:before { - content: "\f3ac"; -} - -.la-grunt:before { - content: "\f3ad"; -} - -.la-guitar:before { - content: "\f7a6"; -} - -.la-gulp:before { - content: "\f3ae"; -} - -.la-h-square:before { - content: "\f0fd"; -} - -.la-hacker-news:before { - content: "\f1d4"; -} - -.la-hacker-news-square:before { - content: "\f3af"; -} - -.la-hackerrank:before { - content: "\f5f7"; -} - -.la-hamburger:before { - content: "\f805"; -} - -.la-hammer:before { - content: "\f6e3"; -} - -.la-hamsa:before { - content: "\f665"; -} - -.la-hand-holding:before { - content: "\f4bd"; -} - -.la-hand-holding-heart:before { - content: "\f4be"; -} - -.la-hand-holding-usd:before { - content: "\f4c0"; -} - -.la-hand-lizard:before { - content: "\f258"; -} - -.la-hand-middle-finger:before { - content: "\f806"; -} - -.la-hand-paper:before { - content: "\f256"; -} - -.la-hand-peace:before { - content: "\f25b"; -} - -.la-hand-point-down:before { - content: "\f0a7"; -} - -.la-hand-point-left:before { - content: "\f0a5"; -} - -.la-hand-point-right:before { - content: "\f0a4"; -} - -.la-hand-point-up:before { - content: "\f0a6"; -} - -.la-hand-pointer:before { - content: "\f25a"; -} - -.la-hand-rock:before { - content: "\f255"; -} - -.la-hand-scissors:before { - content: "\f257"; -} - -.la-hand-spock:before { - content: "\f259"; -} - -.la-hands:before { - content: "\f4c2"; -} - -.la-hands-helping:before { - content: "\f4c4"; -} - -.la-handshake:before { - content: "\f2b5"; -} - -.la-hanukiah:before { - content: "\f6e6"; -} - -.la-hard-hat:before { - content: "\f807"; -} - -.la-hashtag:before { - content: "\f292"; -} - -.la-hat-cowboy:before { - content: "\f8c0"; -} - -.la-hat-cowboy-side:before { - content: "\f8c1"; -} - -.la-hat-wizard:before { - content: "\f6e8"; -} - -.la-haykal:before { - content: "\f666"; -} - -.la-hdd:before { - content: "\f0a0"; -} - -.la-heading:before { - content: "\f1dc"; -} - -.la-headphones:before { - content: "\f025"; -} - -.la-headphones-alt:before { - content: "\f58f"; -} - -.la-headset:before { - content: "\f590"; -} - -.la-heart:before { - content: "\f004"; -} - -.la-heart-broken:before { - content: "\f7a9"; -} - -.la-heartbeat:before { - content: "\f21e"; -} - -.la-helicopter:before { - content: "\f533"; -} - -.la-highlighter:before { - content: "\f591"; -} - -.la-hiking:before { - content: "\f6ec"; -} - -.la-hippo:before { - content: "\f6ed"; -} - -.la-hips:before { - content: "\f452"; -} - -.la-hire-a-helper:before { - content: "\f3b0"; -} - -.la-history:before { - content: "\f1da"; -} - -.la-hockey-puck:before { - content: "\f453"; -} - -.la-holly-berry:before { - content: "\f7aa"; -} - -.la-home:before { - content: "\f015"; -} - -.la-hooli:before { - content: "\f427"; -} - -.la-hornbill:before { - content: "\f592"; -} - -.la-horse:before { - content: "\f6f0"; -} - -.la-horse-head:before { - content: "\f7ab"; -} - -.la-hospital:before { - content: "\f0f8"; -} - -.la-hospital-alt:before { - content: "\f47d"; -} - -.la-hospital-symbol:before { - content: "\f47e"; -} - -.la-hot-tub:before { - content: "\f593"; -} - -.la-hotdog:before { - content: "\f80f"; -} - -.la-hotel:before { - content: "\f594"; -} - -.la-hotjar:before { - content: "\f3b1"; -} - -.la-hourglass:before { - content: "\f254"; -} - -.la-hourglass-end:before { - content: "\f253"; -} - -.la-hourglass-half:before { - content: "\f252"; -} - -.la-hourglass-start:before { - content: "\f251"; -} - -.la-house-damage:before { - content: "\f6f1"; -} - -.la-houzz:before { - content: "\f27c"; -} - -.la-hryvnia:before { - content: "\f6f2"; -} - -.la-html5:before { - content: "\f13b"; -} - -.la-hubspot:before { - content: "\f3b2"; -} - -.la-i-cursor:before { - content: "\f246"; -} - -.la-ice-cream:before { - content: "\f810"; -} - -.la-icicles:before { - content: "\f7ad"; -} - -.la-icons:before { - content: "\f86d"; -} - -.la-id-badge:before { - content: "\f2c1"; -} - -.la-id-card:before { - content: "\f2c2"; -} - -.la-id-card-alt:before { - content: "\f47f"; -} - -.la-igloo:before { - content: "\f7ae"; -} - -.la-image:before { - content: "\f03e"; -} - -.la-images:before { - content: "\f302"; -} - -.la-imdb:before { - content: "\f2d8"; -} - -.la-inbox:before { - content: "\f01c"; -} - -.la-indent:before { - content: "\f03c"; -} - -.la-industry:before { - content: "\f275"; -} - -.la-infinity:before { - content: "\f534"; -} - -.la-info:before { - content: "\f129"; -} - -.la-info-circle:before { - content: "\f05a"; -} - -.la-instagram:before { - content: "\f16d"; -} - -.la-intercom:before { - content: "\f7af"; -} - -.la-internet-explorer:before { - content: "\f26b"; -} - -.la-invision:before { - content: "\f7b0"; -} - -.la-ioxhost:before { - content: "\f208"; -} - -.la-italic:before { - content: "\f033"; -} - -.la-itch-io:before { - content: "\f83a"; -} - -.la-itunes:before { - content: "\f3b4"; -} - -.la-itunes-note:before { - content: "\f3b5"; -} - -.la-java:before { - content: "\f4e4"; -} - -.la-jedi:before { - content: "\f669"; -} - -.la-jedi-order:before { - content: "\f50e"; -} - -.la-jenkins:before { - content: "\f3b6"; -} - -.la-jira:before { - content: "\f7b1"; -} - -.la-joget:before { - content: "\f3b7"; -} - -.la-joint:before { - content: "\f595"; -} - -.la-joomla:before { - content: "\f1aa"; -} - -.la-journal-whills:before { - content: "\f66a"; -} - -.la-js:before { - content: "\f3b8"; -} - -.la-js-square:before { - content: "\f3b9"; -} - -.la-jsfiddle:before { - content: "\f1cc"; -} - -.la-kaaba:before { - content: "\f66b"; -} - -.la-kaggle:before { - content: "\f5fa"; -} - -.la-key:before { - content: "\f084"; -} - -.la-keybase:before { - content: "\f4f5"; -} - -.la-keyboard:before { - content: "\f11c"; -} - -.la-keycdn:before { - content: "\f3ba"; -} - -.la-khanda:before { - content: "\f66d"; -} - -.la-kickstarter:before { - content: "\f3bb"; -} - -.la-kickstarter-k:before { - content: "\f3bc"; -} - -.la-kiss:before { - content: "\f596"; -} - -.la-kiss-beam:before { - content: "\f597"; -} - -.la-kiss-wink-heart:before { - content: "\f598"; -} - -.la-kiwi-bird:before { - content: "\f535"; -} - -.la-korvue:before { - content: "\f42f"; -} - -.la-landmark:before { - content: "\f66f"; -} - -.la-language:before { - content: "\f1ab"; -} - -.la-laptop:before { - content: "\f109"; -} - -.la-laptop-code:before { - content: "\f5fc"; -} - -.la-laptop-medical:before { - content: "\f812"; -} - -.la-laravel:before { - content: "\f3bd"; -} - -.la-lastfm:before { - content: "\f202"; -} - -.la-lastfm-square:before { - content: "\f203"; -} - -.la-laugh:before { - content: "\f599"; -} - -.la-laugh-beam:before { - content: "\f59a"; -} - -.la-laugh-squint:before { - content: "\f59b"; -} - -.la-laugh-wink:before { - content: "\f59c"; -} - -.la-layer-group:before { - content: "\f5fd"; -} - -.la-leaf:before { - content: "\f06c"; -} - -.la-leanpub:before { - content: "\f212"; -} - -.la-lemon:before { - content: "\f094"; -} - -.la-less:before { - content: "\f41d"; -} - -.la-less-than:before { - content: "\f536"; -} - -.la-less-than-equal:before { - content: "\f537"; -} - -.la-level-down-alt:before { - content: "\f3be"; -} - -.la-level-up-alt:before { - content: "\f3bf"; -} - -.la-life-ring:before { - content: "\f1cd"; -} - -.la-lightbulb:before { - content: "\f0eb"; -} - -.la-line:before { - content: "\f3c0"; -} - -.la-link:before { - content: "\f0c1"; -} - -.la-linkedin:before { - content: "\f08c"; -} - -.la-linkedin-in:before { - content: "\f0e1"; -} - -.la-linode:before { - content: "\f2b8"; -} - -.la-linux:before { - content: "\f17c"; -} - -.la-lira-sign:before { - content: "\f195"; -} - -.la-list:before { - content: "\f03a"; -} - -.la-list-alt:before { - content: "\f022"; -} - -.la-list-ol:before { - content: "\f0cb"; -} - -.la-list-ul:before { - content: "\f0ca"; -} - -.la-location-arrow:before { - content: "\f124"; -} - -.la-lock:before { - content: "\f023"; -} - -.la-lock-open:before { - content: "\f3c1"; -} - -.la-long-arrow-alt-down:before { - content: "\f309"; -} - -.la-long-arrow-alt-left:before { - content: "\f30a"; -} - -.la-long-arrow-alt-right:before { - content: "\f30b"; -} - -.la-long-arrow-alt-up:before { - content: "\f30c"; -} - -.la-low-vision:before { - content: "\f2a8"; -} - -.la-luggage-cart:before { - content: "\f59d"; -} - -.la-lyft:before { - content: "\f3c3"; -} - -.la-magento:before { - content: "\f3c4"; -} - -.la-magic:before { - content: "\f0d0"; -} - -.la-magnet:before { - content: "\f076"; -} - -.la-mail-bulk:before { - content: "\f674"; -} - -.la-mailchimp:before { - content: "\f59e"; -} - -.la-male:before { - content: "\f183"; -} - -.la-mandalorian:before { - content: "\f50f"; -} - -.la-map:before { - content: "\f279"; -} - -.la-map-marked:before { - content: "\f59f"; -} - -.la-map-marked-alt:before { - content: "\f5a0"; -} - -.la-map-marker:before { - content: "\f041"; -} - -.la-map-marker-alt:before { - content: "\f3c5"; -} - -.la-map-pin:before { - content: "\f276"; -} - -.la-map-signs:before { - content: "\f277"; -} - -.la-markdown:before { - content: "\f60f"; -} - -.la-marker:before { - content: "\f5a1"; -} - -.la-mars:before { - content: "\f222"; -} - -.la-mars-double:before { - content: "\f227"; -} - -.la-mars-stroke:before { - content: "\f229"; -} - -.la-mars-stroke-h:before { - content: "\f22b"; -} - -.la-mars-stroke-v:before { - content: "\f22a"; -} - -.la-mask:before { - content: "\f6fa"; -} - -.la-mastodon:before { - content: "\f4f6"; -} - -.la-maxcdn:before { - content: "\f136"; -} - -.la-mdb:before { - content: "\f8ca"; -} - -.la-medal:before { - content: "\f5a2"; -} - -.la-medapps:before { - content: "\f3c6"; -} - -.la-medium:before { - content: "\f23a"; -} - -.la-medium-m:before { - content: "\f3c7"; -} - -.la-medkit:before { - content: "\f0fa"; -} - -.la-medrt:before { - content: "\f3c8"; -} - -.la-meetup:before { - content: "\f2e0"; -} - -.la-megaport:before { - content: "\f5a3"; -} - -.la-meh:before { - content: "\f11a"; -} - -.la-meh-blank:before { - content: "\f5a4"; -} - -.la-meh-rolling-eyes:before { - content: "\f5a5"; -} - -.la-memory:before { - content: "\f538"; -} - -.la-mendeley:before { - content: "\f7b3"; -} - -.la-menorah:before { - content: "\f676"; -} - -.la-mercury:before { - content: "\f223"; -} - -.la-meteor:before { - content: "\f753"; -} - -.la-microchip:before { - content: "\f2db"; -} - -.la-microphone:before { - content: "\f130"; -} - -.la-microphone-alt:before { - content: "\f3c9"; -} - -.la-microphone-alt-slash:before { - content: "\f539"; -} - -.la-microphone-slash:before { - content: "\f131"; -} - -.la-microscope:before { - content: "\f610"; -} - -.la-microsoft:before { - content: "\f3ca"; -} - -.la-minus:before { - content: "\f068"; -} - -.la-minus-circle:before { - content: "\f056"; -} - -.la-minus-square:before { - content: "\f146"; -} - -.la-mitten:before { - content: "\f7b5"; -} - -.la-mix:before { - content: "\f3cb"; -} - -.la-mixcloud:before { - content: "\f289"; -} - -.la-mizuni:before { - content: "\f3cc"; -} - -.la-mobile:before { - content: "\f10b"; -} - -.la-mobile-alt:before { - content: "\f3cd"; -} - -.la-modx:before { - content: "\f285"; -} - -.la-monero:before { - content: "\f3d0"; -} - -.la-money-bill:before { - content: "\f0d6"; -} - -.la-money-bill-alt:before { - content: "\f3d1"; -} - -.la-money-bill-wave:before { - content: "\f53a"; -} - -.la-money-bill-wave-alt:before { - content: "\f53b"; -} - -.la-money-check:before { - content: "\f53c"; -} - -.la-money-check-alt:before { - content: "\f53d"; -} - -.la-monument:before { - content: "\f5a6"; -} - -.la-moon:before { - content: "\f186"; -} - -.la-mortar-pestle:before { - content: "\f5a7"; -} - -.la-mosque:before { - content: "\f678"; -} - -.la-motorcycle:before { - content: "\f21c"; -} - -.la-mountain:before { - content: "\f6fc"; -} - -.la-mouse:before { - content: "\f8cc"; -} - -.la-mouse-pointer:before { - content: "\f245"; -} - -.la-mug-hot:before { - content: "\f7b6"; -} - -.la-music:before { - content: "\f001"; -} - -.la-napster:before { - content: "\f3d2"; -} - -.la-neos:before { - content: "\f612"; -} - -.la-network-wired:before { - content: "\f6ff"; -} - -.la-neuter:before { - content: "\f22c"; -} - -.la-newspaper:before { - content: "\f1ea"; -} - -.la-nimblr:before { - content: "\f5a8"; -} - -.la-node:before { - content: "\f419"; -} - -.la-node-js:before { - content: "\f3d3"; -} - -.la-not-equal:before { - content: "\f53e"; -} - -.la-notes-medical:before { - content: "\f481"; -} - -.la-npm:before { - content: "\f3d4"; -} - -.la-ns8:before { - content: "\f3d5"; -} - -.la-nutritionix:before { - content: "\f3d6"; -} - -.la-object-group:before { - content: "\f247"; -} - -.la-object-ungroup:before { - content: "\f248"; -} - -.la-odnoklassniki:before { - content: "\f263"; -} - -.la-odnoklassniki-square:before { - content: "\f264"; -} - -.la-oil-can:before { - content: "\f613"; -} - -.la-old-republic:before { - content: "\f510"; -} - -.la-om:before { - content: "\f679"; -} - -.la-opencart:before { - content: "\f23d"; -} - -.la-openid:before { - content: "\f19b"; -} - -.la-opera:before { - content: "\f26a"; -} - -.la-optin-monster:before { - content: "\f23c"; -} - -.la-orcid:before { - content: "\f8d2"; -} - -.la-osi:before { - content: "\f41a"; -} - -.la-otter:before { - content: "\f700"; -} - -.la-outdent:before { - content: "\f03b"; -} - -.la-page4:before { - content: "\f3d7"; -} - -.la-pagelines:before { - content: "\f18c"; -} - -.la-pager:before { - content: "\f815"; -} - -.la-paint-brush:before { - content: "\f1fc"; -} - -.la-paint-roller:before { - content: "\f5aa"; -} - -.la-palette:before { - content: "\f53f"; -} - -.la-palfed:before { - content: "\f3d8"; -} - -.la-pallet:before { - content: "\f482"; -} - -.la-paper-plane:before { - content: "\f1d8"; -} - -.la-paperclip:before { - content: "\f0c6"; -} - -.la-parachute-box:before { - content: "\f4cd"; -} - -.la-paragraph:before { - content: "\f1dd"; -} - -.la-parking:before { - content: "\f540"; -} - -.la-passport:before { - content: "\f5ab"; -} - -.la-pastafarianism:before { - content: "\f67b"; -} - -.la-paste:before { - content: "\f0ea"; -} - -.la-patreon:before { - content: "\f3d9"; -} - -.la-pause:before { - content: "\f04c"; -} - -.la-pause-circle:before { - content: "\f28b"; -} - -.la-paw:before { - content: "\f1b0"; -} - -.la-paypal:before { - content: "\f1ed"; -} - -.la-peace:before { - content: "\f67c"; -} - -.la-pen:before { - content: "\f304"; -} - -.la-pen-alt:before { - content: "\f305"; -} - -.la-pen-fancy:before { - content: "\f5ac"; -} - -.la-pen-nib:before { - content: "\f5ad"; -} - -.la-pen-square:before { - content: "\f14b"; -} - -.la-pencil-alt:before { - content: "\f303"; -} - -.la-pencil-ruler:before { - content: "\f5ae"; -} - -.la-penny-arcade:before { - content: "\f704"; -} - -.la-people-carry:before { - content: "\f4ce"; -} - -.la-pepper-hot:before { - content: "\f816"; -} - -.la-percent:before { - content: "\f295"; -} - -.la-percentage:before { - content: "\f541"; -} - -.la-periscope:before { - content: "\f3da"; -} - -.la-person-booth:before { - content: "\f756"; -} - -.la-phabricator:before { - content: "\f3db"; -} - -.la-phoenix-framework:before { - content: "\f3dc"; -} - -.la-phoenix-squadron:before { - content: "\f511"; -} - -.la-phone:before { - content: "\f095"; -} - -.la-phone-alt:before { - content: "\f879"; -} - -.la-phone-slash:before { - content: "\f3dd"; -} - -.la-phone-square:before { - content: "\f098"; -} - -.la-phone-square-alt:before { - content: "\f87b"; -} - -.la-phone-volume:before { - content: "\f2a0"; -} - -.la-photo-video:before { - content: "\f87c"; -} - -.la-php:before { - content: "\f457"; -} - -.la-pied-piper:before { - content: "\f2ae"; -} - -.la-pied-piper-alt:before { - content: "\f1a8"; -} - -.la-pied-piper-hat:before { - content: "\f4e5"; -} - -.la-pied-piper-pp:before { - content: "\f1a7"; -} - -.la-piggy-bank:before { - content: "\f4d3"; -} - -.la-pills:before { - content: "\f484"; -} - -.la-pinterest:before { - content: "\f0d2"; -} - -.la-pinterest-p:before { - content: "\f231"; -} - -.la-pinterest-square:before { - content: "\f0d3"; -} - -.la-pizza-slice:before { - content: "\f818"; -} - -.la-place-of-worship:before { - content: "\f67f"; -} - -.la-plane:before { - content: "\f072"; -} - -.la-plane-arrival:before { - content: "\f5af"; -} - -.la-plane-departure:before { - content: "\f5b0"; -} - -.la-play:before { - content: "\f04b"; -} - -.la-play-circle:before { - content: "\f144"; -} - -.la-playstation:before { - content: "\f3df"; -} - -.la-plug:before { - content: "\f1e6"; -} - -.la-plus:before { - content: "\f067"; -} - -.la-plus-circle:before { - content: "\f055"; -} - -.la-plus-square:before { - content: "\f0fe"; -} - -.la-podcast:before { - content: "\f2ce"; -} - -.la-poll:before { - content: "\f681"; -} - -.la-poll-h:before { - content: "\f682"; -} - -.la-poo:before { - content: "\f2fe"; -} - -.la-poo-storm:before { - content: "\f75a"; -} - -.la-poop:before { - content: "\f619"; -} - -.la-portrait:before { - content: "\f3e0"; -} - -.la-pound-sign:before { - content: "\f154"; -} - -.la-power-off:before { - content: "\f011"; -} - -.la-pray:before { - content: "\f683"; -} - -.la-praying-hands:before { - content: "\f684"; -} - -.la-prescription:before { - content: "\f5b1"; -} - -.la-prescription-bottle:before { - content: "\f485"; -} - -.la-prescription-bottle-alt:before { - content: "\f486"; -} - -.la-print:before { - content: "\f02f"; -} - -.la-procedures:before { - content: "\f487"; -} - -.la-product-hunt:before { - content: "\f288"; -} - -.la-project-diagram:before { - content: "\f542"; -} - -.la-pushed:before { - content: "\f3e1"; -} - -.la-puzzle-piece:before { - content: "\f12e"; -} - -.la-python:before { - content: "\f3e2"; -} - -.la-qq:before { - content: "\f1d6"; -} - -.la-qrcode:before { - content: "\f029"; -} - -.la-question:before { - content: "\f128"; -} - -.la-question-circle:before { - content: "\f059"; -} - -.la-quidditch:before { - content: "\f458"; -} - -.la-quinscape:before { - content: "\f459"; -} - -.la-quora:before { - content: "\f2c4"; -} - -.la-quote-left:before { - content: "\f10d"; -} - -.la-quote-right:before { - content: "\f10e"; -} - -.la-quran:before { - content: "\f687"; -} - -.la-r-project:before { - content: "\f4f7"; -} - -.la-radiation:before { - content: "\f7b9"; -} - -.la-radiation-alt:before { - content: "\f7ba"; -} - -.la-rainbow:before { - content: "\f75b"; -} - -.la-random:before { - content: "\f074"; -} - -.la-raspberry-pi:before { - content: "\f7bb"; -} - -.la-ravelry:before { - content: "\f2d9"; -} - -.la-react:before { - content: "\f41b"; -} - -.la-reacteurope:before { - content: "\f75d"; -} - -.la-readme:before { - content: "\f4d5"; -} - -.la-rebel:before { - content: "\f1d0"; -} - -.la-receipt:before { - content: "\f543"; -} - -.la-record-vinyl:before { - content: "\f8d9"; -} - -.la-recycle:before { - content: "\f1b8"; -} - -.la-red-river:before { - content: "\f3e3"; -} - -.la-reddit:before { - content: "\f1a1"; -} - -.la-reddit-alien:before { - content: "\f281"; -} - -.la-reddit-square:before { - content: "\f1a2"; -} - -.la-redhat:before { - content: "\f7bc"; -} - -.la-redo:before { - content: "\f01e"; -} - -.la-redo-alt:before { - content: "\f2f9"; -} - -.la-registered:before { - content: "\f25d"; -} - -.la-remove-format:before { - content: "\f87d"; -} - -.la-renren:before { - content: "\f18b"; -} - -.la-reply:before { - content: "\f3e5"; -} - -.la-reply-all:before { - content: "\f122"; -} - -.la-replyd:before { - content: "\f3e6"; -} - -.la-republican:before { - content: "\f75e"; -} - -.la-researchgate:before { - content: "\f4f8"; -} - -.la-resolving:before { - content: "\f3e7"; -} - -.la-restroom:before { - content: "\f7bd"; -} - -.la-retweet:before { - content: "\f079"; -} - -.la-rev:before { - content: "\f5b2"; -} - -.la-ribbon:before { - content: "\f4d6"; -} - -.la-ring:before { - content: "\f70b"; -} - -.la-road:before { - content: "\f018"; -} - -.la-robot:before { - content: "\f544"; -} - -.la-rocket:before { - content: "\f135"; -} - -.la-rocketchat:before { - content: "\f3e8"; -} - -.la-rockrms:before { - content: "\f3e9"; -} - -.la-route:before { - content: "\f4d7"; -} - -.la-rss:before { - content: "\f09e"; -} - -.la-rss-square:before { - content: "\f143"; -} - -.la-ruble-sign:before { - content: "\f158"; -} - -.la-ruler:before { - content: "\f545"; -} - -.la-ruler-combined:before { - content: "\f546"; -} - -.la-ruler-horizontal:before { - content: "\f547"; -} - -.la-ruler-vertical:before { - content: "\f548"; -} - -.la-running:before { - content: "\f70c"; -} - -.la-rupee-sign:before { - content: "\f156"; -} - -.la-sad-cry:before { - content: "\f5b3"; -} - -.la-sad-tear:before { - content: "\f5b4"; -} - -.la-safari:before { - content: "\f267"; -} - -.la-salesforce:before { - content: "\f83b"; -} - -.la-sass:before { - content: "\f41e"; -} - -.la-satellite:before { - content: "\f7bf"; -} - -.la-satellite-dish:before { - content: "\f7c0"; -} - -.la-save:before { - content: "\f0c7"; -} - -.la-schlix:before { - content: "\f3ea"; -} - -.la-school:before { - content: "\f549"; -} - -.la-screwdriver:before { - content: "\f54a"; -} - -.la-scribd:before { - content: "\f28a"; -} - -.la-scroll:before { - content: "\f70e"; -} - -.la-sd-card:before { - content: "\f7c2"; -} - -.la-search:before { - content: "\f002"; -} - -.la-search-dollar:before { - content: "\f688"; -} - -.la-search-location:before { - content: "\f689"; -} - -.la-search-minus:before { - content: "\f010"; -} - -.la-search-plus:before { - content: "\f00e"; -} - -.la-searchengin:before { - content: "\f3eb"; -} - -.la-seedling:before { - content: "\f4d8"; -} - -.la-sellcast:before { - content: "\f2da"; -} - -.la-sellsy:before { - content: "\f213"; -} - -.la-server:before { - content: "\f233"; -} - -.la-pre-cardtack:before { - content: "\f3ec"; -} - -.la-shapes:before { - content: "\f61f"; -} - -.la-share:before { - content: "\f064"; -} - -.la-share-alt:before { - content: "\f1e0"; -} - -.la-share-alt-square:before { - content: "\f1e1"; -} - -.la-share-square:before { - content: "\f14d"; -} - -.la-shekel-sign:before { - content: "\f20b"; -} - -.la-shield-alt:before { - content: "\f3ed"; -} - -.la-ship:before { - content: "\f21a"; -} - -.la-shipping-fast:before { - content: "\f48b"; -} - -.la-shirtsinbulk:before { - content: "\f214"; -} - -.la-shoe-prints:before { - content: "\f54b"; -} - -.la-shopping-bag:before { - content: "\f290"; -} - -.la-shopping-basket:before { - content: "\f291"; -} - -.la-shopping-cart:before { - content: "\f07a"; -} - -.la-shopware:before { - content: "\f5b5"; -} - -.la-shower:before { - content: "\f2cc"; -} - -.la-shuttle-van:before { - content: "\f5b6"; -} - -.la-sign:before { - content: "\f4d9"; -} - -.la-sign-in-alt:before { - content: "\f2f6"; -} - -.la-sign-language:before { - content: "\f2a7"; -} - -.la-sign-out-alt:before { - content: "\f2f5"; -} - -.la-signal:before { - content: "\f012"; -} - -.la-signature:before { - content: "\f5b7"; -} - -.la-sim-card:before { - content: "\f7c4"; -} - -.la-simplybuilt:before { - content: "\f215"; -} - -.la-sistrix:before { - content: "\f3ee"; -} - -.la-sitemap:before { - content: "\f0e8"; -} - -.la-sith:before { - content: "\f512"; -} - -.la-skating:before { - content: "\f7c5"; -} - -.la-sketch:before { - content: "\f7c6"; -} - -.la-skiing:before { - content: "\f7c9"; -} - -.la-skiing-nordic:before { - content: "\f7ca"; -} - -.la-skull:before { - content: "\f54c"; -} - -.la-skull-crossbones:before { - content: "\f714"; -} - -.la-skyatlas:before { - content: "\f216"; -} - -.la-skype:before { - content: "\f17e"; -} - -.la-slack:before { - content: "\f198"; -} - -.la-slack-hash:before { - content: "\f3ef"; -} - -.la-slash:before { - content: "\f715"; -} - -.la-sleigh:before { - content: "\f7cc"; -} - -.la-sliders-h:before { - content: "\f1de"; -} - -.la-slideshare:before { - content: "\f1e7"; -} - -.la-smile:before { - content: "\f118"; -} - -.la-smile-beam:before { - content: "\f5b8"; -} - -.la-smile-wink:before { - content: "\f4da"; -} - -.la-smog:before { - content: "\f75f"; -} - -.la-smoking:before { - content: "\f48d"; -} - -.la-smoking-ban:before { - content: "\f54d"; -} - -.la-sms:before { - content: "\f7cd"; -} - -.la-snapchat:before { - content: "\f2ab"; -} - -.la-snapchat-ghost:before { - content: "\f2ac"; -} - -.la-snapchat-square:before { - content: "\f2ad"; -} - -.la-snowboarding:before { - content: "\f7ce"; -} - -.la-snowflake:before { - content: "\f2dc"; -} - -.la-snowman:before { - content: "\f7d0"; -} - -.la-snowplow:before { - content: "\f7d2"; -} - -.la-socks:before { - content: "\f696"; -} - -.la-solar-panel:before { - content: "\f5ba"; -} - -.la-sort:before { - content: "\f0dc"; -} - -.la-sort-alpha-down:before { - content: "\f15d"; -} - -.la-sort-alpha-down-alt:before { - content: "\f881"; -} - -.la-sort-alpha-up:before { - content: "\f15e"; -} - -.la-sort-alpha-up-alt:before { - content: "\f882"; -} - -.la-sort-amount-down:before { - content: "\f160"; -} - -.la-sort-amount-down-alt:before { - content: "\f884"; -} - -.la-sort-amount-up:before { - content: "\f161"; -} - -.la-sort-amount-up-alt:before { - content: "\f885"; -} - -.la-sort-down:before { - content: "\f0dd"; -} - -.la-sort-numeric-down:before { - content: "\f162"; -} - -.la-sort-numeric-down-alt:before { - content: "\f886"; -} - -.la-sort-numeric-up:before { - content: "\f163"; -} - -.la-sort-numeric-up-alt:before { - content: "\f887"; -} - -.la-sort-up:before { - content: "\f0de"; -} - -.la-soundcloud:before { - content: "\f1be"; -} - -.la-sourcetree:before { - content: "\f7d3"; -} - -.la-spa:before { - content: "\f5bb"; -} - -.la-space-shuttle:before { - content: "\f197"; -} - -.la-speakap:before { - content: "\f3f3"; -} - -.la-speaker-deck:before { - content: "\f83c"; -} - -.la-spell-check:before { - content: "\f891"; -} - -.la-spider:before { - content: "\f717"; -} - -.la-spinner:before { - content: "\f110"; -} - -.la-splotch:before { - content: "\f5bc"; -} - -.la-spotify:before { - content: "\f1bc"; -} - -.la-spray-can:before { - content: "\f5bd"; -} - -.la-square:before { - content: "\f0c8"; -} - -.la-square-full:before { - content: "\f45c"; -} - -.la-square-root-alt:before { - content: "\f698"; -} - -.la-squarespace:before { - content: "\f5be"; -} - -.la-stack-exchange:before { - content: "\f18d"; -} - -.la-stack-overflow:before { - content: "\f16c"; -} - -.la-stackpath:before { - content: "\f842"; -} - -.la-stamp:before { - content: "\f5bf"; -} - -.la-star:before { - content: "\f005"; -} - -.la-star-and-crescent:before { - content: "\f699"; -} - -.la-star-half:before { - content: "\f089"; -} - -.la-star-half-alt:before { - content: "\f5c0"; -} - -.la-star-of-david:before { - content: "\f69a"; -} - -.la-star-of-life:before { - content: "\f621"; -} - -.la-staylinked:before { - content: "\f3f5"; -} - -.la-steam:before { - content: "\f1b6"; -} - -.la-steam-square:before { - content: "\f1b7"; -} - -.la-steam-symbol:before { - content: "\f3f6"; -} - -.la-step-backward:before { - content: "\f048"; -} - -.la-step-forward:before { - content: "\f051"; -} - -.la-stethoscope:before { - content: "\f0f1"; -} - -.la-sticker-mule:before { - content: "\f3f7"; -} - -.la-sticky-note:before { - content: "\f249"; -} - -.la-stop:before { - content: "\f04d"; -} - -.la-stop-circle:before { - content: "\f28d"; -} - -.la-stopwatch:before { - content: "\f2f2"; -} - -.la-store:before { - content: "\f54e"; -} - -.la-store-alt:before { - content: "\f54f"; -} - -.la-strava:before { - content: "\f428"; -} - -.la-stream:before { - content: "\f550"; -} - -.la-street-view:before { - content: "\f21d"; -} - -.la-strikethrough:before { - content: "\f0cc"; -} - -.la-stripe:before { - content: "\f429"; -} - -.la-stripe-s:before { - content: "\f42a"; -} - -.la-stroopwafel:before { - content: "\f551"; -} - -.la-studiovinari:before { - content: "\f3f8"; -} - -.la-stumbleupon:before { - content: "\f1a4"; -} - -.la-stumbleupon-circle:before { - content: "\f1a3"; -} - -.la-subscript:before { - content: "\f12c"; -} - -.la-subway:before { - content: "\f239"; -} - -.la-suitcase:before { - content: "\f0f2"; -} - -.la-suitcase-rolling:before { - content: "\f5c1"; -} - -.la-sun:before { - content: "\f185"; -} - -.la-superpowers:before { - content: "\f2dd"; -} - -.la-superscript:before { - content: "\f12b"; -} - -.la-supple:before { - content: "\f3f9"; -} - -.la-surprise:before { - content: "\f5c2"; -} - -.la-suse:before { - content: "\f7d6"; -} - -.la-swatchbook:before { - content: "\f5c3"; -} - -.la-swift:before { - content: "\f8e1"; -} - -.la-swimmer:before { - content: "\f5c4"; -} - -.la-swimming-pool:before { - content: "\f5c5"; -} - -.la-symfony:before { - content: "\f83d"; -} - -.la-synagogue:before { - content: "\f69b"; -} - -.la-sync:before { - content: "\f021"; -} - -.la-sync-alt:before { - content: "\f2f1"; -} - -.la-syringe:before { - content: "\f48e"; -} - -.la-table:before { - content: "\f0ce"; -} - -.la-table-tennis:before { - content: "\f45d"; -} - -.la-tablet:before { - content: "\f10a"; -} - -.la-tablet-alt:before { - content: "\f3fa"; -} - -.la-tablets:before { - content: "\f490"; -} - -.la-tachometer-alt:before { - content: "\f3fd"; -} - -.la-tag:before { - content: "\f02b"; -} - -.la-tags:before { - content: "\f02c"; -} - -.la-tape:before { - content: "\f4db"; -} - -.la-tasks:before { - content: "\f0ae"; -} - -.la-taxi:before { - content: "\f1ba"; -} - -.la-teamspeak:before { - content: "\f4f9"; -} - -.la-teeth:before { - content: "\f62e"; -} - -.la-teeth-open:before { - content: "\f62f"; -} - -.la-telegram:before { - content: "\f2c6"; -} - -.la-telegram-plane:before { - content: "\f3fe"; -} - -.la-temperature-high:before { - content: "\f769"; -} - -.la-temperature-low:before { - content: "\f76b"; -} - -.la-tencent-weibo:before { - content: "\f1d5"; -} - -.la-tenge:before { - content: "\f7d7"; -} - -.la-terminal:before { - content: "\f120"; -} - -.la-text-height:before { - content: "\f034"; -} - -.la-text-width:before { - content: "\f035"; -} - -.la-th:before { - content: "\f00a"; -} - -.la-th-large:before { - content: "\f009"; -} - -.la-th-list:before { - content: "\f00b"; -} - -.la-the-red-yeti:before { - content: "\f69d"; -} - -.la-theater-masks:before { - content: "\f630"; -} - -.la-themeco:before { - content: "\f5c6"; -} - -.la-themeisle:before { - content: "\f2b2"; -} - -.la-thermometer:before { - content: "\f491"; -} - -.la-thermometer-empty:before { - content: "\f2cb"; -} - -.la-thermometer-full:before { - content: "\f2c7"; -} - -.la-thermometer-half:before { - content: "\f2c9"; -} - -.la-thermometer-quarter:before { - content: "\f2ca"; -} - -.la-thermometer-three-quarters:before { - content: "\f2c8"; -} - -.la-think-peaks:before { - content: "\f731"; -} - -.la-thumbs-down:before { - content: "\f165"; -} - -.la-thumbs-up:before { - content: "\f164"; -} - -.la-thumbtack:before { - content: "\f08d"; -} - -.la-ticket-alt:before { - content: "\f3ff"; -} - -.la-times:before { - content: "\f00d"; -} - -.la-times-circle:before { - content: "\f057"; -} - -.la-tint:before { - content: "\f043"; -} - -.la-tint-slash:before { - content: "\f5c7"; -} - -.la-tired:before { - content: "\f5c8"; -} - -.la-toggle-off:before { - content: "\f204"; -} - -.la-toggle-on:before { - content: "\f205"; -} - -.la-toilet:before { - content: "\f7d8"; -} - -.la-toilet-paper:before { - content: "\f71e"; -} - -.la-toolbox:before { - content: "\f552"; -} - -.la-tools:before { - content: "\f7d9"; -} - -.la-tooth:before { - content: "\f5c9"; -} - -.la-torah:before { - content: "\f6a0"; -} - -.la-torii-gate:before { - content: "\f6a1"; -} - -.la-tractor:before { - content: "\f722"; -} - -.la-trade-federation:before { - content: "\f513"; -} - -.la-trademark:before { - content: "\f25c"; -} - -.la-traffic-light:before { - content: "\f637"; -} - -.la-train:before { - content: "\f238"; -} - -.la-tram:before { - content: "\f7da"; -} - -.la-transgender:before { - content: "\f224"; -} - -.la-transgender-alt:before { - content: "\f225"; -} - -.la-trash:before { - content: "\f1f8"; -} - -.la-trash-alt:before { - content: "\f2ed"; -} - -.la-trash-restore:before { - content: "\f829"; -} - -.la-trash-restore-alt:before { - content: "\f82a"; -} - -.la-tree:before { - content: "\f1bb"; -} - -.la-trello:before { - content: "\f181"; -} - -.la-tripadvisor:before { - content: "\f262"; -} - -.la-trophy:before { - content: "\f091"; -} - -.la-truck:before { - content: "\f0d1"; -} - -.la-truck-loading:before { - content: "\f4de"; -} - -.la-truck-monster:before { - content: "\f63b"; -} - -.la-truck-moving:before { - content: "\f4df"; -} - -.la-truck-pickup:before { - content: "\f63c"; -} - -.la-tshirt:before { - content: "\f553"; -} - -.la-tty:before { - content: "\f1e4"; -} - -.la-tumblr:before { - content: "\f173"; -} - -.la-tumblr-square:before { - content: "\f174"; -} - -.la-tv:before { - content: "\f26c"; -} - -.la-twitch:before { - content: "\f1e8"; -} - -.la-twitter:before { - content: "\f099"; -} - -.la-twitter-square:before { - content: "\f081"; -} - -.la-typo3:before { - content: "\f42b"; -} - -.la-uber:before { - content: "\f402"; -} - -.la-ubuntu:before { - content: "\f7df"; -} - -.la-uikit:before { - content: "\f403"; -} - -.la-umbraco:before { - content: "\f8e8"; -} - -.la-umbrella:before { - content: "\f0e9"; -} - -.la-umbrella-beach:before { - content: "\f5ca"; -} - -.la-underline:before { - content: "\f0cd"; -} - -.la-undo:before { - content: "\f0e2"; -} - -.la-undo-alt:before { - content: "\f2ea"; -} - -.la-uniregistry:before { - content: "\f404"; -} - -.la-universal-access:before { - content: "\f29a"; -} - -.la-university:before { - content: "\f19c"; -} - -.la-unlink:before { - content: "\f127"; -} - -.la-unlock:before { - content: "\f09c"; -} - -.la-unlock-alt:before { - content: "\f13e"; -} - -.la-untappd:before { - content: "\f405"; -} - -.la-upload:before { - content: "\f093"; -} - -.la-ups:before { - content: "\f7e0"; -} - -.la-usb:before { - content: "\f287"; -} - -.la-user:before { - content: "\f007"; -} - -.la-user-alt:before { - content: "\f406"; -} - -.la-user-alt-slash:before { - content: "\f4fa"; -} - -.la-user-astronaut:before { - content: "\f4fb"; -} - -.la-user-check:before { - content: "\f4fc"; -} - -.la-user-circle:before { - content: "\f2bd"; -} - -.la-user-clock:before { - content: "\f4fd"; -} - -.la-user-cog:before { - content: "\f4fe"; -} - -.la-user-edit:before { - content: "\f4ff"; -} - -.la-user-friends:before { - content: "\f500"; -} - -.la-user-graduate:before { - content: "\f501"; -} - -.la-user-injured:before { - content: "\f728"; -} - -.la-user-lock:before { - content: "\f502"; -} - -.la-user-md:before { - content: "\f0f0"; -} - -.la-user-minus:before { - content: "\f503"; -} - -.la-user-ninja:before { - content: "\f504"; -} - -.la-user-nurse:before { - content: "\f82f"; -} - -.la-user-plus:before { - content: "\f234"; -} - -.la-user-secret:before { - content: "\f21b"; -} - -.la-user-shield:before { - content: "\f505"; -} - -.la-user-slash:before { - content: "\f506"; -} - -.la-user-tag:before { - content: "\f507"; -} - -.la-user-tie:before { - content: "\f508"; -} - -.la-user-times:before { - content: "\f235"; -} - -.la-users:before { - content: "\f0c0"; -} - -.la-users-cog:before { - content: "\f509"; -} - -.la-usps:before { - content: "\f7e1"; -} - -.la-ussunnah:before { - content: "\f407"; -} - -.la-utensil-spoon:before { - content: "\f2e5"; -} - -.la-utensils:before { - content: "\f2e7"; -} - -.la-vaadin:before { - content: "\f408"; -} - -.la-vector-square:before { - content: "\f5cb"; -} - -.la-venus:before { - content: "\f221"; -} - -.la-venus-double:before { - content: "\f226"; -} - -.la-venus-mars:before { - content: "\f228"; -} - -.la-viacoin:before { - content: "\f237"; -} - -.la-viadeo:before { - content: "\f2a9"; -} - -.la-viadeo-square:before { - content: "\f2aa"; -} - -.la-vial:before { - content: "\f492"; -} - -.la-vials:before { - content: "\f493"; -} - -.la-viber:before { - content: "\f409"; -} - -.la-video:before { - content: "\f03d"; -} - -.la-video-slash:before { - content: "\f4e2"; -} - -.la-vihara:before { - content: "\f6a7"; -} - -.la-vimeo:before { - content: "\f40a"; -} - -.la-vimeo-square:before { - content: "\f194"; -} - -.la-vimeo-v:before { - content: "\f27d"; -} - -.la-vine:before { - content: "\f1ca"; -} - -.la-vk:before { - content: "\f189"; -} - -.la-vnv:before { - content: "\f40b"; -} - -.la-voicemail:before { - content: "\f897"; -} - -.la-volleyball-ball:before { - content: "\f45f"; -} - -.la-volume-down:before { - content: "\f027"; -} - -.la-volume-mute:before { - content: "\f6a9"; -} - -.la-volume-off:before { - content: "\f026"; -} - -.la-volume-up:before { - content: "\f028"; -} - -.la-vote-yea:before { - content: "\f772"; -} - -.la-vr-cardboard:before { - content: "\f729"; -} - -.la-vuejs:before { - content: "\f41f"; -} - -.la-walking:before { - content: "\f554"; -} - -.la-wallet:before { - content: "\f555"; -} - -.la-warehouse:before { - content: "\f494"; -} - -.la-water:before { - content: "\f773"; -} - -.la-wave-square:before { - content: "\f83e"; -} - -.la-waze:before { - content: "\f83f"; -} - -.la-weebly:before { - content: "\f5cc"; -} - -.la-weibo:before { - content: "\f18a"; -} - -.la-weight:before { - content: "\f496"; -} - -.la-weight-hanging:before { - content: "\f5cd"; -} - -.la-weixin:before { - content: "\f1d7"; -} - -.la-whatsapp:before { - content: "\f232"; -} - -.la-whatsapp-square:before { - content: "\f40c"; -} - -.la-wheelchair:before { - content: "\f193"; -} - -.la-whmcs:before { - content: "\f40d"; -} - -.la-wifi:before { - content: "\f1eb"; -} - -.la-wikipedia-w:before { - content: "\f266"; -} - -.la-wind:before { - content: "\f72e"; -} - -.la-window-close:before { - content: "\f410"; -} - -.la-window-maximize:before { - content: "\f2d0"; -} - -.la-window-minimize:before { - content: "\f2d1"; -} - -.la-window-restore:before { - content: "\f2d2"; -} - -.la-windows:before { - content: "\f17a"; -} - -.la-wine-bottle:before { - content: "\f72f"; -} - -.la-wine-glass:before { - content: "\f4e3"; -} - -.la-wine-glass-alt:before { - content: "\f5ce"; -} - -.la-wix:before { - content: "\f5cf"; -} - -.la-wizards-of-the-coast:before { - content: "\f730"; -} - -.la-wolf-pack-battalion:before { - content: "\f514"; -} - -.la-won-sign:before { - content: "\f159"; -} - -.la-wordpress:before { - content: "\f19a"; -} - -.la-wordpress-simple:before { - content: "\f411"; -} - -.la-wpbeginner:before { - content: "\f297"; -} - -.la-wpexplorer:before { - content: "\f2de"; -} - -.la-wpforms:before { - content: "\f298"; -} - -.la-wpressr:before { - content: "\f3e4"; -} - -.la-wrench:before { - content: "\f0ad"; -} - -.la-x-ray:before { - content: "\f497"; -} - -.la-xbox:before { - content: "\f412"; -} - -.la-xing:before { - content: "\f168"; -} - -.la-xing-square:before { - content: "\f169"; -} - -.la-y-combinator:before { - content: "\f23b"; -} - -.la-yahoo:before { - content: "\f19e"; -} - -.la-yammer:before { - content: "\f840"; -} - -.la-yandex:before { - content: "\f413"; -} - -.la-yandex-international:before { - content: "\f414"; -} - -.la-yarn:before { - content: "\f7e3"; -} - -.la-yelp:before { - content: "\f1e9"; -} - -.la-yen-sign:before { - content: "\f157"; -} - -.la-yin-yang:before { - content: "\f6ad"; -} - -.la-yoast:before { - content: "\f2b1"; -} - -.la-youtube:before { - content: "\f167"; -} - -.la-youtube-square:before { - content: "\f431"; -} - -.la-zhihu:before { - content: "\f63f"; -} - -.sr-only { - border: 0; - clip: rect(0, 0, 0, 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; -} - -.sr-only-focusable:active, -.sr-only-focusable:focus { - clip: auto; - height: auto; - margin: 0; - overflow: visible; - position: static; - width: auto; -} - -@font-face { - font-family: "Line Awesome Brands"; - font-style: normal; - font-weight: normal; - font-display: auto; - src: url("../fonts/la-brands-400.eot"); - src: url("../fonts/la-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/la-brands-400.woff2") format("woff2"), url("../fonts/la-brands-400.woff") format("woff"), url("../fonts/la-brands-400.ttf") format("truetype"), url("../fonts/la-brands-400.svg#lineawesome") format("svg"); -} - -.lab { - font-family: "Line Awesome Brands"; -} - -@font-face { - font-family: "Line Awesome Free"; - font-style: normal; - font-weight: 400; - font-display: auto; - src: url("../fonts/la-regular-400.eot"); - src: url("../fonts/la-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/la-regular-400.woff2") format("woff2"), url("../fonts/la-regular-400.woff") format("woff"), url("../fonts/la-regular-400.ttf") format("truetype"), url("../fonts/la-regular-400.svg#lineawesome") format("svg"); -} - -.lar { - font-family: "Line Awesome Free"; - font-weight: 400; -} - -@font-face { - font-family: "Line Awesome Free"; - font-style: normal; - font-weight: 900; - font-display: auto; - src: url("../fonts/la-solid-900.eot"); - src: url("../fonts/la-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/la-solid-900.woff2") format("woff2"), url("../fonts/la-solid-900.woff") format("woff"), url("../fonts/la-solid-900.ttf") format("truetype"), url("../fonts/la-solid-900.svg#lineawesome") format("svg"); -} - - -.la, -.las { - font-family: 'Line Awesome Free'; - font-weight: 900; -} - -.la.la-glass:before { - content: "\f000"; -} - -.la.la-meetup { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-star-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-star-o:before { - content: "\f005"; -} - -.la.la-remove:before { - content: "\f00d"; -} - -.la.la-close:before { - content: "\f00d"; -} - -.la.la-gear:before { - content: "\f013"; -} - -.la.la-trash-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-trash-o:before { - content: "\f2ed"; -} - -.la.la-file-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-o:before { - content: "\f15b"; -} - -.la.la-clock-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-clock-o:before { - content: "\f017"; -} - -.la.la-arrow-circle-o-down { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-arrow-circle-o-down:before { - content: "\f358"; -} - -.la.la-arrow-circle-o-up { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-arrow-circle-o-up:before { - content: "\f35b"; -} - -.la.la-play-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-play-circle-o:before { - content: "\f144"; -} - -.la.la-repeat:before { - content: "\f01e"; -} - -.la.la-rotate-right:before { - content: "\f01e"; -} - -.la.la-refresh:before { - content: "\f021"; -} - -.la.la-list-alt { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-dedent:before { - content: "\f03b"; -} - -.la.la-video-camera:before { - content: "\f03d"; -} - -.la.la-picture-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-picture-o:before { - content: "\f03e"; -} - -.la.la-photo { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-photo:before { - content: "\f03e"; -} - -.la.la-image { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-image:before { - content: "\f03e"; -} - -.la.la-pencil:before { - content: "\f303"; -} - -.la.la-map-marker:before { - content: "\f3c5"; -} - -.la.la-pencil-square-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-pencil-square-o:before { - content: "\f044"; -} - -.la.la-share-square-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-share-square-o:before { - content: "\f14d"; -} - -.la.la-check-square-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-check-square-o:before { - content: "\f14a"; -} - -.la.la-arrows:before { - content: "\f0b2"; -} - -.la.la-times-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-times-circle-o:before { - content: "\f057"; -} - -.la.la-check-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-check-circle-o:before { - content: "\f058"; -} - -.la.la-mail-forward:before { - content: "\f064"; -} - -.la.la-eye { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-eye-slash { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-warning:before { - content: "\f071"; -} - -.la.la-calendar:before { - content: "\f073"; -} - -.la.la-arrows-v:before { - content: "\f338"; -} - -.la.la-arrows-h:before { - content: "\f337"; -} - -.la.la-bar-chart { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-bar-chart:before { - content: "\f080"; -} - -.la.la-bar-chart-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-bar-chart-o:before { - content: "\f080"; -} - -.la.la-twitter-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-facebook-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-gears:before { - content: "\f085"; -} - -.la.la-thumbs-o-up { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-thumbs-o-up:before { - content: "\f164"; -} - -.la.la-thumbs-o-down { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-thumbs-o-down:before { - content: "\f165"; -} - -.la.la-heart-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-heart-o:before { - content: "\f004"; -} - -.la.la-sign-out:before { - content: "\f2f5"; -} - -.la.la-linkedin-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-linkedin-square:before { - content: "\f08c"; -} - -.la.la-thumb-tack:before { - content: "\f08d"; -} - -.la.la-external-link:before { - content: "\f35d"; -} - -.la.la-sign-in:before { - content: "\f2f6"; -} - -.la.la-github-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-lemon-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-lemon-o:before { - content: "\f094"; -} - -.la.la-square-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-square-o:before { - content: "\f0c8"; -} - -.la.la-bookmark-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-bookmark-o:before { - content: "\f02e"; -} - -.la.la-twitter { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-facebook { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-facebook:before { - content: "\f39e"; -} - -.la.la-facebook-f { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-facebook-f:before { - content: "\f39e"; -} - -.la.la-github { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-credit-card { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-feed:before { - content: "\f09e"; -} - -.la.la-hdd-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hdd-o:before { - content: "\f0a0"; -} - -.la.la-hand-o-right { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-o-right:before { - content: "\f0a4"; -} - -.la.la-hand-o-left { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-o-left:before { - content: "\f0a5"; -} - -.la.la-hand-o-up { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-o-up:before { - content: "\f0a6"; -} - -.la.la-hand-o-down { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-o-down:before { - content: "\f0a7"; -} - -.la.la-arrows-alt:before { - content: "\f31e"; -} - -.la.la-group:before { - content: "\f0c0"; -} - -.la.la-chain:before { - content: "\f0c1"; -} - -.la.la-scissors:before { - content: "\f0c4"; -} - -.la.la-files-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-files-o:before { - content: "\f0c5"; -} - -.la.la-floppy-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-floppy-o:before { - content: "\f0c7"; -} - -.la.la-navicon:before { - content: "\f0c9"; -} - -.la.la-reorder:before { - content: "\f0c9"; -} - -.la.la-pinterest { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-pinterest-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-google-plus-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-google-plus { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-google-plus:before { - content: "\f0d5"; -} - -.la.la-money { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-money:before { - content: "\f3d1"; -} - -.la.la-unsorted:before { - content: "\f0dc"; -} - -.la.la-sort-desc:before { - content: "\f0dd"; -} - -.la.la-sort-asc:before { - content: "\f0de"; -} - -.la.la-linkedin { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-linkedin:before { - content: "\f0e1"; -} - -.la.la-rotate-left:before { - content: "\f0e2"; -} - -.la.la-legal:before { - content: "\f0e3"; -} - -.la.la-tachometer:before { - content: "\f3fd"; -} - -.la.la-dashboard:before { - content: "\f3fd"; -} - -.la.la-comment-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-comment-o:before { - content: "\f075"; -} - -.la.la-comments-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-comments-o:before { - content: "\f086"; -} - -.la.la-flash:before { - content: "\f0e7"; -} - -.la.la-clipboard { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-paste { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-paste:before { - content: "\f328"; -} - -.la.la-lightbulb-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-lightbulb-o:before { - content: "\f0eb"; -} - -.la.la-exchange:before { - content: "\f362"; -} - -.la.la-cloud-download:before { - content: "\f381"; -} - -.la.la-cloud-upload:before { - content: "\f382"; -} - -.la.la-bell-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-bell-o:before { - content: "\f0f3"; -} - -.la.la-cutlery:before { - content: "\f2e7"; -} - -.la.la-file-text-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-text-o:before { - content: "\f15c"; -} - -.la.la-building-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-building-o:before { - content: "\f1ad"; -} - -.la.la-hospital-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hospital-o:before { - content: "\f0f8"; -} - -.la.la-tablet:before { - content: "\f3fa"; -} - -.la.la-mobile:before { - content: "\f3cd"; -} - -.la.la-mobile-phone:before { - content: "\f3cd"; -} - -.la.la-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-circle-o:before { - content: "\f111"; -} - -.la.la-mail-reply:before { - content: "\f3e5"; -} - -.la.la-github-alt { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-folder-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-folder-o:before { - content: "\f07b"; -} - -.la.la-folder-open-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-folder-open-o:before { - content: "\f07c"; -} - -.la.la-smile-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-smile-o:before { - content: "\f118"; -} - -.la.la-frown-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-frown-o:before { - content: "\f119"; -} - -.la.la-meh-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-meh-o:before { - content: "\f11a"; -} - -.la.la-keyboard-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-keyboard-o:before { - content: "\f11c"; -} - -.la.la-flag-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-flag-o:before { - content: "\f024"; -} - -.la.la-mail-reply-all:before { - content: "\f122"; -} - -.la.la-star-half-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-star-half-o:before { - content: "\f089"; -} - -.la.la-star-half-empty { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-star-half-empty:before { - content: "\f089"; -} - -.la.la-star-half-full { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-star-half-full:before { - content: "\f089"; -} - -.la.la-code-fork:before { - content: "\f126"; -} - -.la.la-chain-broken:before { - content: "\f127"; -} - -.la.la-shield:before { - content: "\f3ed"; -} - -.la.la-calendar-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-calendar-o:before { - content: "\f133"; -} - -.la.la-maxcdn { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-html5 { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-css3 { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-ticket:before { - content: "\f3ff"; -} - -.la.la-minus-square-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-minus-square-o:before { - content: "\f146"; -} - -.la.la-level-up:before { - content: "\f3bf"; -} - -.la.la-level-down:before { - content: "\f3be"; -} - -.la.la-pencil-square:before { - content: "\f14b"; -} - -.la.la-external-link-square:before { - content: "\f360"; -} - -.la.la-compass { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-caret-square-o-down { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-caret-square-o-down:before { - content: "\f150"; -} - -.la.la-toggle-down { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-toggle-down:before { - content: "\f150"; -} - -.la.la-caret-square-o-up { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-caret-square-o-up:before { - content: "\f151"; -} - -.la.la-toggle-up { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-toggle-up:before { - content: "\f151"; -} - -.la.la-caret-square-o-right { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-caret-square-o-right:before { - content: "\f152"; -} - -.la.la-toggle-right { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-toggle-right:before { - content: "\f152"; -} - -.la.la-eur:before { - content: "\f153"; -} - -.la.la-euro:before { - content: "\f153"; -} - -.la.la-gbp:before { - content: "\f154"; -} - -.la.la-usd:before { - content: "\f155"; -} - -.la.la-dollar:before { - content: "\f155"; -} - -.la.la-inr:before { - content: "\f156"; -} - -.la.la-rupee:before { - content: "\f156"; -} - -.la.la-jpy:before { - content: "\f157"; -} - -.la.la-cny:before { - content: "\f157"; -} - -.la.la-rmb:before { - content: "\f157"; -} - -.la.la-yen:before { - content: "\f157"; -} - -.la.la-rub:before { - content: "\f158"; -} - -.la.la-ruble:before { - content: "\f158"; -} - -.la.la-rouble:before { - content: "\f158"; -} - -.la.la-krw:before { - content: "\f159"; -} - -.la.la-won:before { - content: "\f159"; -} - -.la.la-btc { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-bitcoin { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-bitcoin:before { - content: "\f15a"; -} - -.la.la-file-text:before { - content: "\f15c"; -} - -.la.la-sort-alpha-asc:before { - content: "\f15d"; -} - -.la.la-sort-alpha-desc:before { - content: "\f881"; -} - -.la.la-sort-amount-asc:before { - content: "\f160"; -} - -.la.la-sort-amount-desc:before { - content: "\f884"; -} - -.la.la-sort-numeric-asc:before { - content: "\f162"; -} - -.la.la-sort-numeric-desc:before { - content: "\f886"; -} - -.la.la-youtube-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-youtube { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-xing { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-xing-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-youtube-play { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-youtube-play:before { - content: "\f167"; -} - -.la.la-dropbox { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-stack-overflow { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-instagram { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-flickr { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-adn { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-bitbucket { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-bitbucket-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-bitbucket-square:before { - content: "\f171"; -} - -.la.la-tumblr { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-tumblr-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-long-arrow-down:before { - content: "\f309"; -} - -.la.la-long-arrow-up:before { - content: "\f30c"; -} - -.la.la-long-arrow-left:before { - content: "\f30a"; -} - -.la.la-long-arrow-right:before { - content: "\f30b"; -} - -.la.la-apple { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-windows { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-android { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-linux { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-dribbble { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-skype { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-foursquare { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-trello { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-gratipay { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-gittip { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-gittip:before { - content: "\f184"; -} - -.la.la-sun-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-sun-o:before { - content: "\f185"; -} - -.la.la-moon-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-moon-o:before { - content: "\f186"; -} - -.la.la-vk { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-weibo { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-renren { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-pagelines { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-stack-exchange { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-arrow-circle-o-right { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-arrow-circle-o-right:before { - content: "\f35a"; -} - -.la.la-arrow-circle-o-left { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-arrow-circle-o-left:before { - content: "\f359"; -} - -.la.la-caret-square-o-left { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-caret-square-o-left:before { - content: "\f191"; -} - -.la.la-toggle-left { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-toggle-left:before { - content: "\f191"; -} - -.la.la-dot-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-dot-circle-o:before { - content: "\f192"; -} - -.la.la-vimeo-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-try:before { - content: "\f195"; -} - -.la.la-turkish-lira:before { - content: "\f195"; -} - -.la.la-plus-square-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-plus-square-o:before { - content: "\f0fe"; -} - -.la.la-slack { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wordpress { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-openid { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-institution:before { - content: "\f19c"; -} - -.la.la-bank:before { - content: "\f19c"; -} - -.la.la-mortar-board:before { - content: "\f19d"; -} - -.la.la-yahoo { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-google { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-reddit { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-reddit-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-stumbleupon-circle { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-stumbleupon { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-delicious { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-digg { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-pied-piper-pp { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-pied-piper-alt { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-drupal { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-joomla { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-spoon:before { - content: "\f2e5"; -} - -.la.la-behance { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-behance-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-steam { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-steam-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-automobile:before { - content: "\f1b9"; -} - -.la.la-cab:before { - content: "\f1ba"; -} - -.la.la-envelope-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-envelope-o:before { - content: "\f0e0"; -} - -.la.la-deviantart { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-soundcloud { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-file-pdf-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-pdf-o:before { - content: "\f1c1"; -} - -.la.la-file-word-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-word-o:before { - content: "\f1c2"; -} - -.la.la-file-excel-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-excel-o:before { - content: "\f1c3"; -} - -.la.la-file-powerpoint-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-powerpoint-o:before { - content: "\f1c4"; -} - -.la.la-file-image-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-image-o:before { - content: "\f1c5"; -} - -.la.la-file-photo-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-photo-o:before { - content: "\f1c5"; -} - -.la.la-file-picture-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-picture-o:before { - content: "\f1c5"; -} - -.la.la-file-archive-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-archive-o:before { - content: "\f1c6"; -} - -.la.la-file-zip-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-zip-o:before { - content: "\f1c6"; -} - -.la.la-file-audio-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-audio-o:before { - content: "\f1c7"; -} - -.la.la-file-sound-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-sound-o:before { - content: "\f1c7"; -} - -.la.la-file-video-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-video-o:before { - content: "\f1c8"; -} - -.la.la-file-movie-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-movie-o:before { - content: "\f1c8"; -} - -.la.la-file-code-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-file-code-o:before { - content: "\f1c9"; -} - -.la.la-vine { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-codepen { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-jsfiddle { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-life-ring { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-life-bouy { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-life-bouy:before { - content: "\f1cd"; -} - -.la.la-life-buoy { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-life-buoy:before { - content: "\f1cd"; -} - -.la.la-life-saver { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-life-saver:before { - content: "\f1cd"; -} - -.la.la-support { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-support:before { - content: "\f1cd"; -} - -.la.la-circle-o-notch:before { - content: "\f1ce"; -} - -.la.la-rebel { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-ra { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-ra:before { - content: "\f1d0"; -} - -.la.la-resistance { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-resistance:before { - content: "\f1d0"; -} - -.la.la-empire { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-ge { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-ge:before { - content: "\f1d1"; -} - -.la.la-git-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-git { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-hacker-news { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-y-combinator-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-y-combinator-square:before { - content: "\f1d4"; -} - -.la.la-yc-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-yc-square:before { - content: "\f1d4"; -} - -.la.la-tencent-weibo { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-qq { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-weixin { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wechat { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wechat:before { - content: "\f1d7"; -} - -.la.la-send:before { - content: "\f1d8"; -} - -.la.la-paper-plane-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-paper-plane-o:before { - content: "\f1d8"; -} - -.la.la-send-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-send-o:before { - content: "\f1d8"; -} - -.la.la-circle-thin { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-circle-thin:before { - content: "\f111"; -} - -.la.la-header:before { - content: "\f1dc"; -} - -.la.la-sliders:before { - content: "\f1de"; -} - -.la.la-futbol-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-futbol-o:before { - content: "\f1e3"; -} - -.la.la-soccer-ball-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-soccer-ball-o:before { - content: "\f1e3"; -} - -.la.la-slideshare { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-twitch { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-yelp { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-newspaper-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-newspaper-o:before { - content: "\f1ea"; -} - -.la.la-paypal { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-google-wallet { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-cc-visa { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-cc-mastercard { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-cc-discover { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-cc-amex { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-cc-paypal { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-cc-stripe { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-bell-slash-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-bell-slash-o:before { - content: "\f1f6"; -} - -.la.la-trash:before { - content: "\f2ed"; -} - -.la.la-copyright { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-eyedropper:before { - content: "\f1fb"; -} - -.la.la-area-chart:before { - content: "\f1fe"; -} - -.la.la-pie-chart:before { - content: "\f200"; -} - -.la.la-line-chart:before { - content: "\f201"; -} - -.la.la-lastfm { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-lastfm-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-ioxhost { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-angellist { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-cc { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-cc:before { - content: "\f20a"; -} - -.la.la-ils:before { - content: "\f20b"; -} - -.la.la-shekel:before { - content: "\f20b"; -} - -.la.la-sheqel:before { - content: "\f20b"; -} - -.la.la-meanpath { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-meanpath:before { - content: "\f2b4"; -} - -.la.la-buysellads { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-connectdevelop { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-dashcube { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-forumbee { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-leanpub { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-sellsy { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-shirtsinbulk { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-simplybuilt { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-skyatlas { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-diamond { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-diamond:before { - content: "\f3a5"; -} - -.la.la-intersex:before { - content: "\f224"; -} - -.la.la-facebook-official { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-facebook-official:before { - content: "\f09a"; -} - -.la.la-pinterest-p { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-whatsapp { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-hotel:before { - content: "\f236"; -} - -.la.la-viacoin { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-medium { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-y-combinator { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-yc { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-yc:before { - content: "\f23b"; -} - -.la.la-optin-monster { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-opencart { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-expeditedssl { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-battery-4:before { - content: "\f240"; -} - -.la.la-battery:before { - content: "\f240"; -} - -.la.la-battery-3:before { - content: "\f241"; -} - -.la.la-battery-2:before { - content: "\f242"; -} - -.la.la-battery-1:before { - content: "\f243"; -} - -.la.la-battery-0:before { - content: "\f244"; -} - -.la.la-object-group { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-object-ungroup { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-sticky-note-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-sticky-note-o:before { - content: "\f249"; -} - -.la.la-cc-jcb { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-cc-diners-club { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-clone { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hourglass-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hourglass-o:before { - content: "\f254"; -} - -.la.la-hourglass-1:before { - content: "\f251"; -} - -.la.la-hourglass-2:before { - content: "\f252"; -} - -.la.la-hourglass-3:before { - content: "\f253"; -} - -.la.la-hand-rock-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-rock-o:before { - content: "\f255"; -} - -.la.la-hand-grab-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-grab-o:before { - content: "\f255"; -} - -.la.la-hand-paper-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-paper-o:before { - content: "\f256"; -} - -.la.la-hand-stop-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-stop-o:before { - content: "\f256"; -} - -.la.la-hand-scissors-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-scissors-o:before { - content: "\f257"; -} - -.la.la-hand-lizard-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-lizard-o:before { - content: "\f258"; -} - -.la.la-hand-spock-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-spock-o:before { - content: "\f259"; -} - -.la.la-hand-pointer-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-pointer-o:before { - content: "\f25a"; -} - -.la.la-hand-peace-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-hand-peace-o:before { - content: "\f25b"; -} - -.la.la-registered { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-creative-commons { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-gg { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-gg-circle { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-tripadvisor { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-odnoklassniki { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-odnoklassniki-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-get-pocket { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wikipedia-w { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-safari { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-chrome { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-firefox { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-opera { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-internet-explorer { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-television:before { - content: "\f26c"; -} - -.la.la-contao { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-500px { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-amazon { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-calendar-plus-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-calendar-plus-o:before { - content: "\f271"; -} - -.la.la-calendar-minus-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-calendar-minus-o:before { - content: "\f272"; -} - -.la.la-calendar-times-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-calendar-times-o:before { - content: "\f273"; -} - -.la.la-calendar-check-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-calendar-check-o:before { - content: "\f274"; -} - -.la.la-map-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-map-o:before { - content: "\f279"; -} - -.la.la-commenting:before { - content: "\f4ad"; -} - -.la.la-commenting-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-commenting-o:before { - content: "\f4ad"; -} - -.la.la-houzz { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-vimeo { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-vimeo:before { - content: "\f27d"; -} - -.la.la-black-tie { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-fonticons { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-reddit-alien { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-edge { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-credit-card-alt:before { - content: "\f09d"; -} - -.la.la-codiepie { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-modx { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-fort-awesome { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-usb { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-product-hunt { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-mixcloud { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-scribd { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-pause-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-pause-circle-o:before { - content: "\f28b"; -} - -.la.la-stop-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-stop-circle-o:before { - content: "\f28d"; -} - -.la.la-bluetooth { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-bluetooth-b { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-gitlab { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wpbeginner { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wpforms { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-envira { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wheelchair-alt { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wheelchair-alt:before { - content: "\f368"; -} - -.la.la-question-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-question-circle-o:before { - content: "\f059"; -} - -.la.la-volume-control-phone:before { - content: "\f2a0"; -} - -.la.la-asl-interpreting:before { - content: "\f2a3"; -} - -.la.la-deafness:before { - content: "\f2a4"; -} - -.la.la-hard-of-hearing:before { - content: "\f2a4"; -} - -.la.la-glide { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-glide-g { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-signing:before { - content: "\f2a7"; -} - -.la.la-viadeo { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-viadeo-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-snapchat { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-snapchat-ghost { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-snapchat-square { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-pied-piper { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-first-order { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-yoast { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-themeisle { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-google-plus-official { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-google-plus-official:before { - content: "\f2b3"; -} - -.la.la-google-plus-circle { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-google-plus-circle:before { - content: "\f2b3"; -} - -.la.la-font-awesome { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-fa { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-fa:before { - content: "\f2b4"; -} - -.la.la-handshake-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-handshake-o:before { - content: "\f2b5"; -} - -.la.la-envelope-open-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-envelope-open-o:before { - content: "\f2b6"; -} - -.la.la-linode { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-address-book-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-address-book-o:before { - content: "\f2b9"; -} - -.la.la-vcard:before { - content: "\f2bb"; -} - -.la.la-address-card-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-address-card-o:before { - content: "\f2bb"; -} - -.la.la-vcard-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-vcard-o:before { - content: "\f2bb"; -} - -.la.la-user-circle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-user-circle-o:before { - content: "\f2bd"; -} - -.la.la-user-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-user-o:before { - content: "\f007"; -} - -.la.la-id-badge { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-drivers-license:before { - content: "\f2c2"; -} - -.la.la-id-card-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-id-card-o:before { - content: "\f2c2"; -} - -.la.la-drivers-license-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-drivers-license-o:before { - content: "\f2c2"; -} - -.la.la-quora { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-free-code-camp { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-telegram { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-thermometer-4:before { - content: "\f2c7"; -} - -.la.la-thermometer:before { - content: "\f2c7"; -} - -.la.la-thermometer-3:before { - content: "\f2c8"; -} - -.la.la-thermometer-2:before { - content: "\f2c9"; -} - -.la.la-thermometer-1:before { - content: "\f2ca"; -} - -.la.la-thermometer-0:before { - content: "\f2cb"; -} - -.la.la-bathtub:before { - content: "\f2cd"; -} - -.la.la-s15:before { - content: "\f2cd"; -} - -.la.la-window-maximize { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-window-restore { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-times-rectangle:before { - content: "\f410"; -} - -.la.la-window-close-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-window-close-o:before { - content: "\f410"; -} - -.la.la-times-rectangle-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-times-rectangle-o:before { - content: "\f410"; -} - -.la.la-bandcamp { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-grav { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-etsy { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-imdb { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-ravelry { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-eercast { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-eercast:before { - content: "\f2da"; -} - -.la.la-snowflake-o { - font-family: 'Line Awesome Free'; - font-weight: 400; -} - -.la.la-snowflake-o:before { - content: "\f2dc"; -} - -.la.la-superpowers { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-wpexplorer { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - -.la.la-spotify { - font-family: 'Line Awesome Brands'; - font-weight: 400; -} - - -/*====================================== - - 02 -- Remixicon - -=======================================*/ - -/* -* Remix Icon v2.5.0 -* https://remixicon.com -* https://github.com/Remix-Design/RemixIcon -* -* Copyright RemixIcon.com -* Released under the Apache License Version 2.0 -* -* Date: 2020-05-23 -*/ -@font-face { - font-family: "remixicon"; - src: url('../fonts/remixicon.eot?t=1590207869815'); - /* IE9*/ - src: url('../fonts/remixicon.eot?t=1590207869815#iefix') format('embedded-opentype'), - /* IE6-IE8 */ - url("../fonts/remixicon.woff2?t=1590207869815") format("woff2"), - url("../fonts/remixicon.woff?t=1590207869815") format("woff"), - url('../fonts/remixicon.ttf?t=1590207869815') format('truetype'), - /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ - url('../fonts/remixicon.svg?t=1590207869815#remixicon') format('svg'); - /* iOS 4.1- */ - font-display: swap; -} - -[class^="ri-"], -[class*=" ri-"] { - font-family: 'remixicon' !important; - font-style: normal; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -.ri-lg { - font-size: 1.3333em; - line-height: 0.75em; - vertical-align: -.0667em; -} - -.ri-xl { - font-size: 1.5em; - line-height: 0.6666em; - vertical-align: -.075em; -} - -.ri-xxs { - font-size: .5em; -} - -.ri-xs { - font-size: .75em; -} - -.ri-sm { - font-size: .875em -} - -.ri-1x { - font-size: 1em; -} - -.ri-2x { - font-size: 2em; -} - -.ri-3x { - font-size: 3em; -} - -.ri-4x { - font-size: 4em; -} - -.ri-5x { - font-size: 5em; -} - -.ri-6x { - font-size: 6em; -} - -.ri-7x { - font-size: 7em; -} - -.ri-8x { - font-size: 8em; -} - -.ri-9x { - font-size: 9em; -} - -.ri-10x { - font-size: 10em; -} - -.ri-fw { - text-align: center; - width: 1.25em; -} - -.ri-24-hours-fill:before { - content: "\ea01"; -} - -.ri-24-hours-line:before { - content: "\ea02"; -} - -.ri-4k-fill:before { - content: "\ea03"; -} - -.ri-4k-line:before { - content: "\ea04"; -} - -.ri-a-b:before { - content: "\ea05"; -} - -.ri-account-box-fill:before { - content: "\ea06"; -} - -.ri-account-box-line:before { - content: "\ea07"; -} - -.ri-account-circle-fill:before { - content: "\ea08"; -} - -.ri-account-circle-line:before { - content: "\ea09"; -} - -.ri-account-pin-box-fill:before { - content: "\ea0a"; -} - -.ri-account-pin-box-line:before { - content: "\ea0b"; -} - -.ri-account-pin-circle-fill:before { - content: "\ea0c"; -} - -.ri-account-pin-circle-line:before { - content: "\ea0d"; -} - -.ri-add-box-fill:before { - content: "\ea0e"; -} - -.ri-add-box-line:before { - content: "\ea0f"; -} - -.ri-add-circle-fill:before { - content: "\ea10"; -} - -.ri-add-circle-line:before { - content: "\ea11"; -} - -.ri-add-fill:before { - content: "\ea12"; -} - -.ri-add-line:before { - content: "\ea13"; -} - -.ri-admin-fill:before { - content: "\ea14"; -} - -.ri-admin-line:before { - content: "\ea15"; -} - -.ri-advertisement-fill:before { - content: "\ea16"; -} - -.ri-advertisement-line:before { - content: "\ea17"; -} - -.ri-airplay-fill:before { - content: "\ea18"; -} - -.ri-airplay-line:before { - content: "\ea19"; -} - -.ri-alarm-fill:before { - content: "\ea1a"; -} - -.ri-alarm-line:before { - content: "\ea1b"; -} - -.ri-alarm-warning-fill:before { - content: "\ea1c"; -} - -.ri-alarm-warning-line:before { - content: "\ea1d"; -} - -.ri-album-fill:before { - content: "\ea1e"; -} - -.ri-album-line:before { - content: "\ea1f"; -} - -.ri-alert-fill:before { - content: "\ea20"; -} - -.ri-alert-line:before { - content: "\ea21"; -} - -.ri-aliens-fill:before { - content: "\ea22"; -} - -.ri-aliens-line:before { - content: "\ea23"; -} - -.ri-align-bottom:before { - content: "\ea24"; -} - -.ri-align-center:before { - content: "\ea25"; -} - -.ri-align-justify:before { - content: "\ea26"; -} - -.ri-align-left:before { - content: "\ea27"; -} - -.ri-align-right:before { - content: "\ea28"; -} - -.ri-align-top:before { - content: "\ea29"; -} - -.ri-align-vertically:before { - content: "\ea2a"; -} - -.ri-alipay-fill:before { - content: "\ea2b"; -} - -.ri-alipay-line:before { - content: "\ea2c"; -} - -.ri-amazon-fill:before { - content: "\ea2d"; -} - -.ri-amazon-line:before { - content: "\ea2e"; -} - -.ri-anchor-fill:before { - content: "\ea2f"; -} - -.ri-anchor-line:before { - content: "\ea30"; -} - -.ri-ancient-gate-fill:before { - content: "\ea31"; -} - -.ri-ancient-gate-line:before { - content: "\ea32"; -} - -.ri-ancient-pavilion-fill:before { - content: "\ea33"; -} - -.ri-ancient-pavilion-line:before { - content: "\ea34"; -} - -.ri-android-fill:before { - content: "\ea35"; -} - -.ri-android-line:before { - content: "\ea36"; -} - -.ri-angularjs-fill:before { - content: "\ea37"; -} - -.ri-angularjs-line:before { - content: "\ea38"; -} - -.ri-anticlockwise-2-fill:before { - content: "\ea39"; -} - -.ri-anticlockwise-2-line:before { - content: "\ea3a"; -} - -.ri-anticlockwise-fill:before { - content: "\ea3b"; -} - -.ri-anticlockwise-line:before { - content: "\ea3c"; -} - -.ri-app-store-fill:before { - content: "\ea3d"; -} - -.ri-app-store-line:before { - content: "\ea3e"; -} - -.ri-apple-fill:before { - content: "\ea3f"; -} - -.ri-apple-line:before { - content: "\ea40"; -} - -.ri-apps-2-fill:before { - content: "\ea41"; -} - -.ri-apps-2-line:before { - content: "\ea42"; -} - -.ri-apps-fill:before { - content: "\ea43"; -} - -.ri-apps-line:before { - content: "\ea44"; -} - -.ri-archive-drawer-fill:before { - content: "\ea45"; -} - -.ri-archive-drawer-line:before { - content: "\ea46"; -} - -.ri-archive-fill:before { - content: "\ea47"; -} - -.ri-archive-line:before { - content: "\ea48"; -} - -.ri-arrow-down-circle-fill:before { - content: "\ea49"; -} - -.ri-arrow-down-circle-line:before { - content: "\ea4a"; -} - -.ri-arrow-down-fill:before { - content: "\ea4b"; -} - -.ri-arrow-down-line:before { - content: "\ea4c"; -} - -.ri-arrow-down-s-fill:before { - content: "\ea4d"; -} - -.ri-arrow-down-s-line:before { - content: "\ea4e"; -} - -.ri-arrow-drop-down-fill:before { - content: "\ea4f"; -} - -.ri-arrow-drop-down-line:before { - content: "\ea50"; -} - -.ri-arrow-drop-left-fill:before { - content: "\ea51"; -} - -.ri-arrow-drop-left-line:before { - content: "\ea52"; -} - -.ri-arrow-drop-right-fill:before { - content: "\ea53"; -} - -.ri-arrow-drop-right-line:before { - content: "\ea54"; -} - -.ri-arrow-drop-up-fill:before { - content: "\ea55"; -} - -.ri-arrow-drop-up-line:before { - content: "\ea56"; -} - -.ri-arrow-go-back-fill:before { - content: "\ea57"; -} - -.ri-arrow-go-back-line:before { - content: "\ea58"; -} - -.ri-arrow-go-forward-fill:before { - content: "\ea59"; -} - -.ri-arrow-go-forward-line:before { - content: "\ea5a"; -} - -.ri-arrow-left-circle-fill:before { - content: "\ea5b"; -} - -.ri-arrow-left-circle-line:before { - content: "\ea5c"; -} - -.ri-arrow-left-down-fill:before { - content: "\ea5d"; -} - -.ri-arrow-left-down-line:before { - content: "\ea5e"; -} - -.ri-arrow-left-fill:before { - content: "\ea5f"; -} - -.ri-arrow-left-line:before { - content: "\ea60"; -} - -.ri-arrow-left-right-fill:before { - content: "\ea61"; -} - -.ri-arrow-left-right-line:before { - content: "\ea62"; -} - -.ri-arrow-left-s-fill:before { - content: "\ea63"; -} - -.ri-arrow-left-s-line:before { - content: "\ea64"; -} - -.ri-arrow-left-up-fill:before { - content: "\ea65"; -} - -.ri-arrow-left-up-line:before { - content: "\ea66"; -} - -.ri-arrow-right-circle-fill:before { - content: "\ea67"; -} - -.ri-arrow-right-circle-line:before { - content: "\ea68"; -} - -.ri-arrow-right-down-fill:before { - content: "\ea69"; -} - -.ri-arrow-right-down-line:before { - content: "\ea6a"; -} - -.ri-arrow-right-fill:before { - content: "\ea6b"; -} - -.ri-arrow-right-line:before { - content: "\ea6c"; -} - -.ri-arrow-right-s-fill:before { - content: "\ea6d"; -} - -.ri-arrow-right-s-line:before { - content: "\ea6e"; -} - -.ri-arrow-right-up-fill:before { - content: "\ea6f"; -} - -.ri-arrow-right-up-line:before { - content: "\ea70"; -} - -.ri-arrow-up-circle-fill:before { - content: "\ea71"; -} - -.ri-arrow-up-circle-line:before { - content: "\ea72"; -} - -.ri-arrow-up-down-fill:before { - content: "\ea73"; -} - -.ri-arrow-up-down-line:before { - content: "\ea74"; -} - -.ri-arrow-up-fill:before { - content: "\ea75"; -} - -.ri-arrow-up-line:before { - content: "\ea76"; -} - -.ri-arrow-up-s-fill:before { - content: "\ea77"; -} - -.ri-arrow-up-s-line:before { - content: "\ea78"; -} - -.ri-artboard-2-fill:before { - content: "\ea79"; -} - -.ri-artboard-2-line:before { - content: "\ea7a"; -} - -.ri-artboard-fill:before { - content: "\ea7b"; -} - -.ri-artboard-line:before { - content: "\ea7c"; -} - -.ri-article-fill:before { - content: "\ea7d"; -} - -.ri-article-line:before { - content: "\ea7e"; -} - -.ri-aspect-ratio-fill:before { - content: "\ea7f"; -} - -.ri-aspect-ratio-line:before { - content: "\ea80"; -} - -.ri-asterisk:before { - content: "\ea81"; -} - -.ri-at-fill:before { - content: "\ea82"; -} - -.ri-at-line:before { - content: "\ea83"; -} - -.ri-attachment-2:before { - content: "\ea84"; -} - -.ri-attachment-fill:before { - content: "\ea85"; -} - -.ri-attachment-line:before { - content: "\ea86"; -} - -.ri-auction-fill:before { - content: "\ea87"; -} - -.ri-auction-line:before { - content: "\ea88"; -} - -.ri-award-fill:before { - content: "\ea89"; -} - -.ri-award-line:before { - content: "\ea8a"; -} - -.ri-baidu-fill:before { - content: "\ea8b"; -} - -.ri-baidu-line:before { - content: "\ea8c"; -} - -.ri-ball-pen-fill:before { - content: "\ea8d"; -} - -.ri-ball-pen-line:before { - content: "\ea8e"; -} - -.ri-bank-card-2-fill:before { - content: "\ea8f"; -} - -.ri-bank-card-2-line:before { - content: "\ea90"; -} - -.ri-bank-card-fill:before { - content: "\ea91"; -} - -.ri-bank-card-line:before { - content: "\ea92"; -} - -.ri-bank-fill:before { - content: "\ea93"; -} - -.ri-bank-line:before { - content: "\ea94"; -} - -.ri-bar-chart-2-fill:before { - content: "\ea95"; -} - -.ri-bar-chart-2-line:before { - content: "\ea96"; -} - -.ri-bar-chart-box-fill:before { - content: "\ea97"; -} - -.ri-bar-chart-box-line:before { - content: "\ea98"; -} - -.ri-bar-chart-fill:before { - content: "\ea99"; -} - -.ri-bar-chart-grouped-fill:before { - content: "\ea9a"; -} - -.ri-bar-chart-grouped-line:before { - content: "\ea9b"; -} - -.ri-bar-chart-horizontal-fill:before { - content: "\ea9c"; -} - -.ri-bar-chart-horizontal-line:before { - content: "\ea9d"; -} - -.ri-bar-chart-line:before { - content: "\ea9e"; -} - -.ri-barcode-box-fill:before { - content: "\ea9f"; -} - -.ri-barcode-box-line:before { - content: "\eaa0"; -} - -.ri-barcode-fill:before { - content: "\eaa1"; -} - -.ri-barcode-line:before { - content: "\eaa2"; -} - -.ri-barricade-fill:before { - content: "\eaa3"; -} - -.ri-barricade-line:before { - content: "\eaa4"; -} - -.ri-base-station-fill:before { - content: "\eaa5"; -} - -.ri-base-station-line:before { - content: "\eaa6"; -} - -.ri-basketball-fill:before { - content: "\eaa7"; -} - -.ri-basketball-line:before { - content: "\eaa8"; -} - -.ri-battery-2-charge-fill:before { - content: "\eaa9"; -} - -.ri-battery-2-charge-line:before { - content: "\eaaa"; -} - -.ri-battery-2-fill:before { - content: "\eaab"; -} - -.ri-battery-2-line:before { - content: "\eaac"; -} - -.ri-battery-charge-fill:before { - content: "\eaad"; -} - -.ri-battery-charge-line:before { - content: "\eaae"; -} - -.ri-battery-fill:before { - content: "\eaaf"; -} - -.ri-battery-line:before { - content: "\eab0"; -} - -.ri-battery-low-fill:before { - content: "\eab1"; -} - -.ri-battery-low-line:before { - content: "\eab2"; -} - -.ri-battery-saver-fill:before { - content: "\eab3"; -} - -.ri-battery-saver-line:before { - content: "\eab4"; -} - -.ri-battery-share-fill:before { - content: "\eab5"; -} - -.ri-battery-share-line:before { - content: "\eab6"; -} - -.ri-bear-smile-fill:before { - content: "\eab7"; -} - -.ri-bear-smile-line:before { - content: "\eab8"; -} - -.ri-behance-fill:before { - content: "\eab9"; -} - -.ri-behance-line:before { - content: "\eaba"; -} - -.ri-bell-fill:before { - content: "\eabb"; -} - -.ri-bell-line:before { - content: "\eabc"; -} - -.ri-bike-fill:before { - content: "\eabd"; -} - -.ri-bike-line:before { - content: "\eabe"; -} - -.ri-bilibili-fill:before { - content: "\eabf"; -} - -.ri-bilibili-line:before { - content: "\eac0"; -} - -.ri-bill-fill:before { - content: "\eac1"; -} - -.ri-bill-line:before { - content: "\eac2"; -} - -.ri-billiards-fill:before { - content: "\eac3"; -} - -.ri-billiards-line:before { - content: "\eac4"; -} - -.ri-bit-coin-fill:before { - content: "\eac5"; -} - -.ri-bit-coin-line:before { - content: "\eac6"; -} - -.ri-blaze-fill:before { - content: "\eac7"; -} - -.ri-blaze-line:before { - content: "\eac8"; -} - -.ri-bluetooth-connect-fill:before { - content: "\eac9"; -} - -.ri-bluetooth-connect-line:before { - content: "\eaca"; -} - -.ri-bluetooth-fill:before { - content: "\eacb"; -} - -.ri-bluetooth-line:before { - content: "\eacc"; -} - -.ri-blur-off-fill:before { - content: "\eacd"; -} - -.ri-blur-off-line:before { - content: "\eace"; -} - -.ri-body-scan-fill:before { - content: "\eacf"; -} - -.ri-body-scan-line:before { - content: "\ead0"; -} - -.ri-bold:before { - content: "\ead1"; -} - -.ri-book-2-fill:before { - content: "\ead2"; -} - -.ri-book-2-line:before { - content: "\ead3"; -} - -.ri-book-3-fill:before { - content: "\ead4"; -} - -.ri-book-3-line:before { - content: "\ead5"; -} - -.ri-book-fill:before { - content: "\ead6"; -} - -.ri-book-line:before { - content: "\ead7"; -} - -.ri-book-mark-fill:before { - content: "\ead8"; -} - -.ri-book-mark-line:before { - content: "\ead9"; -} - -.ri-book-open-fill:before { - content: "\eada"; -} - -.ri-book-open-line:before { - content: "\eadb"; -} - -.ri-book-read-fill:before { - content: "\eadc"; -} - -.ri-book-read-line:before { - content: "\eadd"; -} - -.ri-booklet-fill:before { - content: "\eade"; -} - -.ri-booklet-line:before { - content: "\eadf"; -} - -.ri-bookmark-2-fill:before { - content: "\eae0"; -} - -.ri-bookmark-2-line:before { - content: "\eae1"; -} - -.ri-bookmark-3-fill:before { - content: "\eae2"; -} - -.ri-bookmark-3-line:before { - content: "\eae3"; -} - -.ri-bookmark-fill:before { - content: "\eae4"; -} - -.ri-bookmark-line:before { - content: "\eae5"; -} - -.ri-boxing-fill:before { - content: "\eae6"; -} - -.ri-boxing-line:before { - content: "\eae7"; -} - -.ri-braces-fill:before { - content: "\eae8"; -} - -.ri-braces-line:before { - content: "\eae9"; -} - -.ri-brackets-fill:before { - content: "\eaea"; -} - -.ri-brackets-line:before { - content: "\eaeb"; -} - -.ri-briefcase-2-fill:before { - content: "\eaec"; -} - -.ri-briefcase-2-line:before { - content: "\eaed"; -} - -.ri-briefcase-3-fill:before { - content: "\eaee"; -} - -.ri-briefcase-3-line:before { - content: "\eaef"; -} - -.ri-briefcase-4-fill:before { - content: "\eaf0"; -} - -.ri-briefcase-4-line:before { - content: "\eaf1"; -} - -.ri-briefcase-5-fill:before { - content: "\eaf2"; -} - -.ri-briefcase-5-line:before { - content: "\eaf3"; -} - -.ri-briefcase-fill:before { - content: "\eaf4"; -} - -.ri-briefcase-line:before { - content: "\eaf5"; -} - -.ri-bring-forward:before { - content: "\eaf6"; -} - -.ri-bring-to-front:before { - content: "\eaf7"; -} - -.ri-broadcast-fill:before { - content: "\eaf8"; -} - -.ri-broadcast-line:before { - content: "\eaf9"; -} - -.ri-brush-2-fill:before { - content: "\eafa"; -} - -.ri-brush-2-line:before { - content: "\eafb"; -} - -.ri-brush-3-fill:before { - content: "\eafc"; -} - -.ri-brush-3-line:before { - content: "\eafd"; -} - -.ri-brush-4-fill:before { - content: "\eafe"; -} - -.ri-brush-4-line:before { - content: "\eaff"; -} - -.ri-brush-fill:before { - content: "\eb00"; -} - -.ri-brush-line:before { - content: "\eb01"; -} - -.ri-bubble-chart-fill:before { - content: "\eb02"; -} - -.ri-bubble-chart-line:before { - content: "\eb03"; -} - -.ri-bug-2-fill:before { - content: "\eb04"; -} - -.ri-bug-2-line:before { - content: "\eb05"; -} - -.ri-bug-fill:before { - content: "\eb06"; -} - -.ri-bug-line:before { - content: "\eb07"; -} - -.ri-building-2-fill:before { - content: "\eb08"; -} - -.ri-building-2-line:before { - content: "\eb09"; -} - -.ri-building-3-fill:before { - content: "\eb0a"; -} - -.ri-building-3-line:before { - content: "\eb0b"; -} - -.ri-building-4-fill:before { - content: "\eb0c"; -} - -.ri-building-4-line:before { - content: "\eb0d"; -} - -.ri-building-fill:before { - content: "\eb0e"; -} - -.ri-building-line:before { - content: "\eb0f"; -} - -.ri-bus-2-fill:before { - content: "\eb10"; -} - -.ri-bus-2-line:before { - content: "\eb11"; -} - -.ri-bus-fill:before { - content: "\eb12"; -} - -.ri-bus-line:before { - content: "\eb13"; -} - -.ri-bus-wifi-fill:before { - content: "\eb14"; -} - -.ri-bus-wifi-line:before { - content: "\eb15"; -} - -.ri-cactus-fill:before { - content: "\eb16"; -} - -.ri-cactus-line:before { - content: "\eb17"; -} - -.ri-cake-2-fill:before { - content: "\eb18"; -} - -.ri-cake-2-line:before { - content: "\eb19"; -} - -.ri-cake-3-fill:before { - content: "\eb1a"; -} - -.ri-cake-3-line:before { - content: "\eb1b"; -} - -.ri-cake-fill:before { - content: "\eb1c"; -} - -.ri-cake-line:before { - content: "\eb1d"; -} - -.ri-calculator-fill:before { - content: "\eb1e"; -} - -.ri-calculator-line:before { - content: "\eb1f"; -} - -.ri-calendar-2-fill:before { - content: "\eb20"; -} - -.ri-calendar-2-line:before { - content: "\eb21"; -} - -.ri-calendar-check-fill:before { - content: "\eb22"; -} - -.ri-calendar-check-line:before { - content: "\eb23"; -} - -.ri-calendar-event-fill:before { - content: "\eb24"; -} - -.ri-calendar-event-line:before { - content: "\eb25"; -} - -.ri-calendar-fill:before { - content: "\eb26"; -} - -.ri-calendar-line:before { - content: "\eb27"; -} - -.ri-calendar-todo-fill:before { - content: "\eb28"; -} - -.ri-calendar-todo-line:before { - content: "\eb29"; -} - -.ri-camera-2-fill:before { - content: "\eb2a"; -} - -.ri-camera-2-line:before { - content: "\eb2b"; -} - -.ri-camera-3-fill:before { - content: "\eb2c"; -} - -.ri-camera-3-line:before { - content: "\eb2d"; -} - -.ri-camera-fill:before { - content: "\eb2e"; -} - -.ri-camera-lens-fill:before { - content: "\eb2f"; -} - -.ri-camera-lens-line:before { - content: "\eb30"; -} - -.ri-camera-line:before { - content: "\eb31"; -} - -.ri-camera-off-fill:before { - content: "\eb32"; -} - -.ri-camera-off-line:before { - content: "\eb33"; -} - -.ri-camera-switch-fill:before { - content: "\eb34"; -} - -.ri-camera-switch-line:before { - content: "\eb35"; -} - -.ri-capsule-fill:before { - content: "\eb36"; -} - -.ri-capsule-line:before { - content: "\eb37"; -} - -.ri-car-fill:before { - content: "\eb38"; -} - -.ri-car-line:before { - content: "\eb39"; -} - -.ri-car-washing-fill:before { - content: "\eb3a"; -} - -.ri-car-washing-line:before { - content: "\eb3b"; -} - -.ri-caravan-fill:before { - content: "\eb3c"; -} - -.ri-caravan-line:before { - content: "\eb3d"; -} - -.ri-cast-fill:before { - content: "\eb3e"; -} - -.ri-cast-line:before { - content: "\eb3f"; -} - -.ri-cellphone-fill:before { - content: "\eb40"; -} - -.ri-cellphone-line:before { - content: "\eb41"; -} - -.ri-celsius-fill:before { - content: "\eb42"; -} - -.ri-celsius-line:before { - content: "\eb43"; -} - -.ri-centos-fill:before { - content: "\eb44"; -} - -.ri-centos-line:before { - content: "\eb45"; -} - -.ri-character-recognition-fill:before { - content: "\eb46"; -} - -.ri-character-recognition-line:before { - content: "\eb47"; -} - -.ri-charging-pile-2-fill:before { - content: "\eb48"; -} - -.ri-charging-pile-2-line:before { - content: "\eb49"; -} - -.ri-charging-pile-fill:before { - content: "\eb4a"; -} - -.ri-charging-pile-line:before { - content: "\eb4b"; -} - -.ri-chat-1-fill:before { - content: "\eb4c"; -} - -.ri-chat-1-line:before { - content: "\eb4d"; -} - -.ri-chat-2-fill:before { - content: "\eb4e"; -} - -.ri-chat-2-line:before { - content: "\eb4f"; -} - -.ri-chat-3-fill:before { - content: "\eb50"; -} - -.ri-chat-3-line:before { - content: "\eb51"; -} - -.ri-chat-4-fill:before { - content: "\eb52"; -} - -.ri-chat-4-line:before { - content: "\eb53"; -} - -.ri-chat-check-fill:before { - content: "\eb54"; -} - -.ri-chat-check-line:before { - content: "\eb55"; -} - -.ri-chat-delete-fill:before { - content: "\eb56"; -} - -.ri-chat-delete-line:before { - content: "\eb57"; -} - -.ri-chat-download-fill:before { - content: "\eb58"; -} - -.ri-chat-download-line:before { - content: "\eb59"; -} - -.ri-chat-follow-up-fill:before { - content: "\eb5a"; -} - -.ri-chat-follow-up-line:before { - content: "\eb5b"; -} - -.ri-chat-forward-fill:before { - content: "\eb5c"; -} - -.ri-chat-forward-line:before { - content: "\eb5d"; -} - -.ri-chat-heart-fill:before { - content: "\eb5e"; -} - -.ri-chat-heart-line:before { - content: "\eb5f"; -} - -.ri-chat-history-fill:before { - content: "\eb60"; -} - -.ri-chat-history-line:before { - content: "\eb61"; -} - -.ri-chat-new-fill:before { - content: "\eb62"; -} - -.ri-chat-new-line:before { - content: "\eb63"; -} - -.ri-chat-off-fill:before { - content: "\eb64"; -} - -.ri-chat-off-line:before { - content: "\eb65"; -} - -.ri-chat-poll-fill:before { - content: "\eb66"; -} - -.ri-chat-poll-line:before { - content: "\eb67"; -} - -.ri-chat-private-fill:before { - content: "\eb68"; -} - -.ri-chat-private-line:before { - content: "\eb69"; -} - -.ri-chat-quote-fill:before { - content: "\eb6a"; -} - -.ri-chat-quote-line:before { - content: "\eb6b"; -} - -.ri-chat-settings-fill:before { - content: "\eb6c"; -} - -.ri-chat-settings-line:before { - content: "\eb6d"; -} - -.ri-chat-smile-2-fill:before { - content: "\eb6e"; -} - -.ri-chat-smile-2-line:before { - content: "\eb6f"; -} - -.ri-chat-smile-3-fill:before { - content: "\eb70"; -} - -.ri-chat-smile-3-line:before { - content: "\eb71"; -} - -.ri-chat-smile-fill:before { - content: "\eb72"; -} - -.ri-chat-smile-line:before { - content: "\eb73"; -} - -.ri-chat-upload-fill:before { - content: "\eb74"; -} - -.ri-chat-upload-line:before { - content: "\eb75"; -} - -.ri-chat-voice-fill:before { - content: "\eb76"; -} - -.ri-chat-voice-line:before { - content: "\eb77"; -} - -.ri-check-double-fill:before { - content: "\eb78"; -} - -.ri-check-double-line:before { - content: "\eb79"; -} - -.ri-check-fill:before { - content: "\eb7a"; -} - -.ri-check-line:before { - content: "\eb7b"; -} - -.ri-checkbox-blank-circle-fill:before { - content: "\eb7c"; -} - -.ri-checkbox-blank-circle-line:before { - content: "\eb7d"; -} - -.ri-checkbox-blank-fill:before { - content: "\eb7e"; -} - -.ri-checkbox-blank-line:before { - content: "\eb7f"; -} - -.ri-checkbox-circle-fill:before { - content: "\eb80"; -} - -.ri-checkbox-circle-line:before { - content: "\eb81"; -} - -.ri-checkbox-fill:before { - content: "\eb82"; -} - -.ri-checkbox-indeterminate-fill:before { - content: "\eb83"; -} - -.ri-checkbox-indeterminate-line:before { - content: "\eb84"; -} - -.ri-checkbox-line:before { - content: "\eb85"; -} - -.ri-checkbox-multiple-blank-fill:before { - content: "\eb86"; -} - -.ri-checkbox-multiple-blank-line:before { - content: "\eb87"; -} - -.ri-checkbox-multiple-fill:before { - content: "\eb88"; -} - -.ri-checkbox-multiple-line:before { - content: "\eb89"; -} - -.ri-china-railway-fill:before { - content: "\eb8a"; -} - -.ri-china-railway-line:before { - content: "\eb8b"; -} - -.ri-chrome-fill:before { - content: "\eb8c"; -} - -.ri-chrome-line:before { - content: "\eb8d"; -} - -.ri-clapperboard-fill:before { - content: "\eb8e"; -} - -.ri-clapperboard-line:before { - content: "\eb8f"; -} - -.ri-clipboard-fill:before { - content: "\eb90"; -} - -.ri-clipboard-line:before { - content: "\eb91"; -} - -.ri-clockwise-2-fill:before { - content: "\eb92"; -} - -.ri-clockwise-2-line:before { - content: "\eb93"; -} - -.ri-clockwise-fill:before { - content: "\eb94"; -} - -.ri-clockwise-line:before { - content: "\eb95"; -} - -.ri-close-circle-fill:before { - content: "\eb96"; -} - -.ri-close-circle-line:before { - content: "\eb97"; -} - -.ri-close-fill:before { - content: "\eb98"; -} - -.ri-close-line:before { - content: "\eb99"; -} - -.ri-closed-captioning-fill:before { - content: "\eb9a"; -} - -.ri-closed-captioning-line:before { - content: "\eb9b"; -} - -.ri-cloud-fill:before { - content: "\eb9c"; -} - -.ri-cloud-line:before { - content: "\eb9d"; -} - -.ri-cloud-off-fill:before { - content: "\eb9e"; -} - -.ri-cloud-off-line:before { - content: "\eb9f"; -} - -.ri-cloud-windy-fill:before { - content: "\eba0"; -} - -.ri-cloud-windy-line:before { - content: "\eba1"; -} - -.ri-cloudy-2-fill:before { - content: "\eba2"; -} - -.ri-cloudy-2-line:before { - content: "\eba3"; -} - -.ri-cloudy-fill:before { - content: "\eba4"; -} - -.ri-cloudy-line:before { - content: "\eba5"; -} - -.ri-code-box-fill:before { - content: "\eba6"; -} - -.ri-code-box-line:before { - content: "\eba7"; -} - -.ri-code-fill:before { - content: "\eba8"; -} - -.ri-code-line:before { - content: "\eba9"; -} - -.ri-code-s-fill:before { - content: "\ebaa"; -} - -.ri-code-s-line:before { - content: "\ebab"; -} - -.ri-code-s-slash-fill:before { - content: "\ebac"; -} - -.ri-code-s-slash-line:before { - content: "\ebad"; -} - -.ri-code-view:before { - content: "\ebae"; -} - -.ri-codepen-fill:before { - content: "\ebaf"; -} - -.ri-codepen-line:before { - content: "\ebb0"; -} - -.ri-coin-fill:before { - content: "\ebb1"; -} - -.ri-coin-line:before { - content: "\ebb2"; -} - -.ri-coins-fill:before { - content: "\ebb3"; -} - -.ri-coins-line:before { - content: "\ebb4"; -} - -.ri-collage-fill:before { - content: "\ebb5"; -} - -.ri-collage-line:before { - content: "\ebb6"; -} - -.ri-command-fill:before { - content: "\ebb7"; -} - -.ri-command-line:before { - content: "\ebb8"; -} - -.ri-community-fill:before { - content: "\ebb9"; -} - -.ri-community-line:before { - content: "\ebba"; -} - -.ri-compass-2-fill:before { - content: "\ebbb"; -} - -.ri-compass-2-line:before { - content: "\ebbc"; -} - -.ri-compass-3-fill:before { - content: "\ebbd"; -} - -.ri-compass-3-line:before { - content: "\ebbe"; -} - -.ri-compass-4-fill:before { - content: "\ebbf"; -} - -.ri-compass-4-line:before { - content: "\ebc0"; -} - -.ri-compass-discover-fill:before { - content: "\ebc1"; -} - -.ri-compass-discover-line:before { - content: "\ebc2"; -} - -.ri-compass-fill:before { - content: "\ebc3"; -} - -.ri-compass-line:before { - content: "\ebc4"; -} - -.ri-compasses-2-fill:before { - content: "\ebc5"; -} - -.ri-compasses-2-line:before { - content: "\ebc6"; -} - -.ri-compasses-fill:before { - content: "\ebc7"; -} - -.ri-compasses-line:before { - content: "\ebc8"; -} - -.ri-computer-fill:before { - content: "\ebc9"; -} - -.ri-computer-line:before { - content: "\ebca"; -} - -.ri-contacts-book-2-fill:before { - content: "\ebcb"; -} - -.ri-contacts-book-2-line:before { - content: "\ebcc"; -} - -.ri-contacts-book-fill:before { - content: "\ebcd"; -} - -.ri-contacts-book-line:before { - content: "\ebce"; -} - -.ri-contacts-book-upload-fill:before { - content: "\ebcf"; -} - -.ri-contacts-book-upload-line:before { - content: "\ebd0"; -} - -.ri-contacts-fill:before { - content: "\ebd1"; -} - -.ri-contacts-line:before { - content: "\ebd2"; -} - -.ri-contrast-2-fill:before { - content: "\ebd3"; -} - -.ri-contrast-2-line:before { - content: "\ebd4"; -} - -.ri-contrast-drop-2-fill:before { - content: "\ebd5"; -} - -.ri-contrast-drop-2-line:before { - content: "\ebd6"; -} - -.ri-contrast-drop-fill:before { - content: "\ebd7"; -} - -.ri-contrast-drop-line:before { - content: "\ebd8"; -} - -.ri-contrast-fill:before { - content: "\ebd9"; -} - -.ri-contrast-line:before { - content: "\ebda"; -} - -.ri-copper-coin-fill:before { - content: "\ebdb"; -} - -.ri-copper-coin-line:before { - content: "\ebdc"; -} - -.ri-copper-diamond-fill:before { - content: "\ebdd"; -} - -.ri-copper-diamond-line:before { - content: "\ebde"; -} - -.ri-copyleft-fill:before { - content: "\ebdf"; -} - -.ri-copyleft-line:before { - content: "\ebe0"; -} - -.ri-copyright-fill:before { - content: "\ebe1"; -} - -.ri-copyright-line:before { - content: "\ebe2"; -} - -.ri-coreos-fill:before { - content: "\ebe3"; -} - -.ri-coreos-line:before { - content: "\ebe4"; -} - -.ri-coupon-2-fill:before { - content: "\ebe5"; -} - -.ri-coupon-2-line:before { - content: "\ebe6"; -} - -.ri-coupon-3-fill:before { - content: "\ebe7"; -} - -.ri-coupon-3-line:before { - content: "\ebe8"; -} - -.ri-coupon-4-fill:before { - content: "\ebe9"; -} - -.ri-coupon-4-line:before { - content: "\ebea"; -} - -.ri-coupon-5-fill:before { - content: "\ebeb"; -} - -.ri-coupon-5-line:before { - content: "\ebec"; -} - -.ri-coupon-fill:before { - content: "\ebed"; -} - -.ri-coupon-line:before { - content: "\ebee"; -} - -.ri-cpu-fill:before { - content: "\ebef"; -} - -.ri-cpu-line:before { - content: "\ebf0"; -} - -.ri-creative-commons-by-fill:before { - content: "\ebf1"; -} - -.ri-creative-commons-by-line:before { - content: "\ebf2"; -} - -.ri-creative-commons-fill:before { - content: "\ebf3"; -} - -.ri-creative-commons-line:before { - content: "\ebf4"; -} - -.ri-creative-commons-nc-fill:before { - content: "\ebf5"; -} - -.ri-creative-commons-nc-line:before { - content: "\ebf6"; -} - -.ri-creative-commons-nd-fill:before { - content: "\ebf7"; -} - -.ri-creative-commons-nd-line:before { - content: "\ebf8"; -} - -.ri-creative-commons-sa-fill:before { - content: "\ebf9"; -} - -.ri-creative-commons-sa-line:before { - content: "\ebfa"; -} - -.ri-creative-commons-zero-fill:before { - content: "\ebfb"; -} - -.ri-creative-commons-zero-line:before { - content: "\ebfc"; -} - -.ri-criminal-fill:before { - content: "\ebfd"; -} - -.ri-criminal-line:before { - content: "\ebfe"; -} - -.ri-crop-2-fill:before { - content: "\ebff"; -} - -.ri-crop-2-line:before { - content: "\ec00"; -} - -.ri-crop-fill:before { - content: "\ec01"; -} - -.ri-crop-line:before { - content: "\ec02"; -} - -.ri-css3-fill:before { - content: "\ec03"; -} - -.ri-css3-line:before { - content: "\ec04"; -} - -.ri-cup-fill:before { - content: "\ec05"; -} - -.ri-cup-line:before { - content: "\ec06"; -} - -.ri-currency-fill:before { - content: "\ec07"; -} - -.ri-currency-line:before { - content: "\ec08"; -} - -.ri-cursor-fill:before { - content: "\ec09"; -} - -.ri-cursor-line:before { - content: "\ec0a"; -} - -.ri-customer-service-2-fill:before { - content: "\ec0b"; -} - -.ri-customer-service-2-line:before { - content: "\ec0c"; -} - -.ri-customer-service-fill:before { - content: "\ec0d"; -} - -.ri-customer-service-line:before { - content: "\ec0e"; -} - -.ri-dashboard-2-fill:before { - content: "\ec0f"; -} - -.ri-dashboard-2-line:before { - content: "\ec10"; -} - -.ri-dashboard-3-fill:before { - content: "\ec11"; -} - -.ri-dashboard-3-line:before { - content: "\ec12"; -} - -.ri-dashboard-fill:before { - content: "\ec13"; -} - -.ri-dashboard-line:before { - content: "\ec14"; -} - -.ri-database-2-fill:before { - content: "\ec15"; -} - -.ri-database-2-line:before { - content: "\ec16"; -} - -.ri-database-fill:before { - content: "\ec17"; -} - -.ri-database-line:before { - content: "\ec18"; -} - -.ri-delete-back-2-fill:before { - content: "\ec19"; -} - -.ri-delete-back-2-line:before { - content: "\ec1a"; -} - -.ri-delete-back-fill:before { - content: "\ec1b"; -} - -.ri-delete-back-line:before { - content: "\ec1c"; -} - -.ri-delete-bin-2-fill:before { - content: "\ec1d"; -} - -.ri-delete-bin-2-line:before { - content: "\ec1e"; -} - -.ri-delete-bin-3-fill:before { - content: "\ec1f"; -} - -.ri-delete-bin-3-line:before { - content: "\ec20"; -} - -.ri-delete-bin-4-fill:before { - content: "\ec21"; -} - -.ri-delete-bin-4-line:before { - content: "\ec22"; -} - -.ri-delete-bin-5-fill:before { - content: "\ec23"; -} - -.ri-delete-bin-5-line:before { - content: "\ec24"; -} - -.ri-delete-bin-6-fill:before { - content: "\ec25"; -} - -.ri-delete-bin-6-line:before { - content: "\ec26"; -} - -.ri-delete-bin-7-fill:before { - content: "\ec27"; -} - -.ri-delete-bin-7-line:before { - content: "\ec28"; -} - -.ri-delete-bin-fill:before { - content: "\ec29"; -} - -.ri-delete-bin-line:before { - content: "\ec2a"; -} - -.ri-delete-column:before { - content: "\ec2b"; -} - -.ri-delete-row:before { - content: "\ec2c"; -} - -.ri-device-fill:before { - content: "\ec2d"; -} - -.ri-device-line:before { - content: "\ec2e"; -} - -.ri-device-recover-fill:before { - content: "\ec2f"; -} - -.ri-device-recover-line:before { - content: "\ec30"; -} - -.ri-dingding-fill:before { - content: "\ec31"; -} - -.ri-dingding-line:before { - content: "\ec32"; -} - -.ri-direction-fill:before { - content: "\ec33"; -} - -.ri-direction-line:before { - content: "\ec34"; -} - -.ri-disc-fill:before { - content: "\ec35"; -} - -.ri-disc-line:before { - content: "\ec36"; -} - -.ri-discord-fill:before { - content: "\ec37"; -} - -.ri-discord-line:before { - content: "\ec38"; -} - -.ri-discuss-fill:before { - content: "\ec39"; -} - -.ri-discuss-line:before { - content: "\ec3a"; -} - -.ri-dislike-fill:before { - content: "\ec3b"; -} - -.ri-dislike-line:before { - content: "\ec3c"; -} - -.ri-disqus-fill:before { - content: "\ec3d"; -} - -.ri-disqus-line:before { - content: "\ec3e"; -} - -.ri-divide-fill:before { - content: "\ec3f"; -} - -.ri-divide-line:before { - content: "\ec40"; -} - -.ri-donut-chart-fill:before { - content: "\ec41"; -} - -.ri-donut-chart-line:before { - content: "\ec42"; -} - -.ri-door-closed-fill:before { - content: "\ec43"; -} - -.ri-door-closed-line:before { - content: "\ec44"; -} - -.ri-door-fill:before { - content: "\ec45"; -} - -.ri-door-line:before { - content: "\ec46"; -} - -.ri-door-lock-box-fill:before { - content: "\ec47"; -} - -.ri-door-lock-box-line:before { - content: "\ec48"; -} - -.ri-door-lock-fill:before { - content: "\ec49"; -} - -.ri-door-lock-line:before { - content: "\ec4a"; -} - -.ri-door-open-fill:before { - content: "\ec4b"; -} - -.ri-door-open-line:before { - content: "\ec4c"; -} - -.ri-dossier-fill:before { - content: "\ec4d"; -} - -.ri-dossier-line:before { - content: "\ec4e"; -} - -.ri-douban-fill:before { - content: "\ec4f"; -} - -.ri-douban-line:before { - content: "\ec50"; -} - -.ri-double-quotes-l:before { - content: "\ec51"; -} - -.ri-double-quotes-r:before { - content: "\ec52"; -} - -.ri-download-2-fill:before { - content: "\ec53"; -} - -.ri-download-2-line:before { - content: "\ec54"; -} - -.ri-download-cloud-2-fill:before { - content: "\ec55"; -} - -.ri-download-cloud-2-line:before { - content: "\ec56"; -} - -.ri-download-cloud-fill:before { - content: "\ec57"; -} - -.ri-download-cloud-line:before { - content: "\ec58"; -} - -.ri-download-fill:before { - content: "\ec59"; -} - -.ri-download-line:before { - content: "\ec5a"; -} - -.ri-draft-fill:before { - content: "\ec5b"; -} - -.ri-draft-line:before { - content: "\ec5c"; -} - -.ri-drag-drop-fill:before { - content: "\ec5d"; -} - -.ri-drag-drop-line:before { - content: "\ec5e"; -} - -.ri-drag-move-2-fill:before { - content: "\ec5f"; -} - -.ri-drag-move-2-line:before { - content: "\ec60"; -} - -.ri-drag-move-fill:before { - content: "\ec61"; -} - -.ri-drag-move-line:before { - content: "\ec62"; -} - -.ri-dribbble-fill:before { - content: "\ec63"; -} - -.ri-dribbble-line:before { - content: "\ec64"; -} - -.ri-drive-fill:before { - content: "\ec65"; -} - -.ri-drive-line:before { - content: "\ec66"; -} - -.ri-drizzle-fill:before { - content: "\ec67"; -} - -.ri-drizzle-line:before { - content: "\ec68"; -} - -.ri-drop-fill:before { - content: "\ec69"; -} - -.ri-drop-line:before { - content: "\ec6a"; -} - -.ri-dropbox-fill:before { - content: "\ec6b"; -} - -.ri-dropbox-line:before { - content: "\ec6c"; -} - -.ri-dual-sim-1-fill:before { - content: "\ec6d"; -} - -.ri-dual-sim-1-line:before { - content: "\ec6e"; -} - -.ri-dual-sim-2-fill:before { - content: "\ec6f"; -} - -.ri-dual-sim-2-line:before { - content: "\ec70"; -} - -.ri-dv-fill:before { - content: "\ec71"; -} - -.ri-dv-line:before { - content: "\ec72"; -} - -.ri-dvd-fill:before { - content: "\ec73"; -} - -.ri-dvd-line:before { - content: "\ec74"; -} - -.ri-e-bike-2-fill:before { - content: "\ec75"; -} - -.ri-e-bike-2-line:before { - content: "\ec76"; -} - -.ri-e-bike-fill:before { - content: "\ec77"; -} - -.ri-e-bike-line:before { - content: "\ec78"; -} - -.ri-earth-fill:before { - content: "\ec79"; -} - -.ri-earth-line:before { - content: "\ec7a"; -} - -.ri-earthquake-fill:before { - content: "\ec7b"; -} - -.ri-earthquake-line:before { - content: "\ec7c"; -} - -.ri-edge-fill:before { - content: "\ec7d"; -} - -.ri-edge-line:before { - content: "\ec7e"; -} - -.ri-edit-2-fill:before { - content: "\ec7f"; -} - -.ri-edit-2-line:before { - content: "\ec80"; -} - -.ri-edit-box-fill:before { - content: "\ec81"; -} - -.ri-edit-box-line:before { - content: "\ec82"; -} - -.ri-edit-circle-fill:before { - content: "\ec83"; -} - -.ri-edit-circle-line:before { - content: "\ec84"; -} - -.ri-edit-fill:before { - content: "\ec85"; -} - -.ri-edit-line:before { - content: "\ec86"; -} - -.ri-eject-fill:before { - content: "\ec87"; -} - -.ri-eject-line:before { - content: "\ec88"; -} - -.ri-emotion-2-fill:before { - content: "\ec89"; -} - -.ri-emotion-2-line:before { - content: "\ec8a"; -} - -.ri-emotion-fill:before { - content: "\ec8b"; -} - -.ri-emotion-happy-fill:before { - content: "\ec8c"; -} - -.ri-emotion-happy-line:before { - content: "\ec8d"; -} - -.ri-emotion-laugh-fill:before { - content: "\ec8e"; -} - -.ri-emotion-laugh-line:before { - content: "\ec8f"; -} - -.ri-emotion-line:before { - content: "\ec90"; -} - -.ri-emotion-normal-fill:before { - content: "\ec91"; -} - -.ri-emotion-normal-line:before { - content: "\ec92"; -} - -.ri-emotion-sad-fill:before { - content: "\ec93"; -} - -.ri-emotion-sad-line:before { - content: "\ec94"; -} - -.ri-emotion-unhappy-fill:before { - content: "\ec95"; -} - -.ri-emotion-unhappy-line:before { - content: "\ec96"; -} - -.ri-empathize-fill:before { - content: "\ec97"; -} - -.ri-empathize-line:before { - content: "\ec98"; -} - -.ri-emphasis-cn:before { - content: "\ec99"; -} - -.ri-emphasis:before { - content: "\ec9a"; -} - -.ri-english-input:before { - content: "\ec9b"; -} - -.ri-equalizer-fill:before { - content: "\ec9c"; -} - -.ri-equalizer-line:before { - content: "\ec9d"; -} - -.ri-eraser-fill:before { - content: "\ec9e"; -} - -.ri-eraser-line:before { - content: "\ec9f"; -} - -.ri-error-warning-fill:before { - content: "\eca0"; -} - -.ri-error-warning-line:before { - content: "\eca1"; -} - -.ri-evernote-fill:before { - content: "\eca2"; -} - -.ri-evernote-line:before { - content: "\eca3"; -} - -.ri-exchange-box-fill:before { - content: "\eca4"; -} - -.ri-exchange-box-line:before { - content: "\eca5"; -} - -.ri-exchange-cny-fill:before { - content: "\eca6"; -} - -.ri-exchange-cny-line:before { - content: "\eca7"; -} - -.ri-exchange-dollar-fill:before { - content: "\eca8"; -} - -.ri-exchange-dollar-line:before { - content: "\eca9"; -} - -.ri-exchange-fill:before { - content: "\ecaa"; -} - -.ri-exchange-funds-fill:before { - content: "\ecab"; -} - -.ri-exchange-funds-line:before { - content: "\ecac"; -} - -.ri-exchange-line:before { - content: "\ecad"; -} - -.ri-external-link-fill:before { - content: "\ecae"; -} - -.ri-external-link-line:before { - content: "\ecaf"; -} - -.ri-eye-2-fill:before { - content: "\ecb0"; -} - -.ri-eye-2-line:before { - content: "\ecb1"; -} - -.ri-eye-close-fill:before { - content: "\ecb2"; -} - -.ri-eye-close-line:before { - content: "\ecb3"; -} - -.ri-eye-fill:before { - content: "\ecb4"; -} - -.ri-eye-line:before { - content: "\ecb5"; -} - -.ri-eye-off-fill:before { - content: "\ecb6"; -} - -.ri-eye-off-line:before { - content: "\ecb7"; -} - -.ri-facebook-box-fill:before { - content: "\ecb8"; -} - -.ri-facebook-box-line:before { - content: "\ecb9"; -} - -.ri-facebook-circle-fill:before { - content: "\ecba"; -} - -.ri-facebook-circle-line:before { - content: "\ecbb"; -} - -.ri-facebook-fill:before { - content: "\ecbc"; -} - -.ri-facebook-line:before { - content: "\ecbd"; -} - -.ri-fahrenheit-fill:before { - content: "\ecbe"; -} - -.ri-fahrenheit-line:before { - content: "\ecbf"; -} - -.ri-feedback-fill:before { - content: "\ecc0"; -} - -.ri-feedback-line:before { - content: "\ecc1"; -} - -.ri-file-2-fill:before { - content: "\ecc2"; -} - -.ri-file-2-line:before { - content: "\ecc3"; -} - -.ri-file-3-fill:before { - content: "\ecc4"; -} - -.ri-file-3-line:before { - content: "\ecc5"; -} - -.ri-file-4-fill:before { - content: "\ecc6"; -} - -.ri-file-4-line:before { - content: "\ecc7"; -} - -.ri-file-add-fill:before { - content: "\ecc8"; -} - -.ri-file-add-line:before { - content: "\ecc9"; -} - -.ri-file-chart-2-fill:before { - content: "\ecca"; -} - -.ri-file-chart-2-line:before { - content: "\eccb"; -} - -.ri-file-chart-fill:before { - content: "\eccc"; -} - -.ri-file-chart-line:before { - content: "\eccd"; -} - -.ri-file-cloud-fill:before { - content: "\ecce"; -} - -.ri-file-cloud-line:before { - content: "\eccf"; -} - -.ri-file-code-fill:before { - content: "\ecd0"; -} - -.ri-file-code-line:before { - content: "\ecd1"; -} - -.ri-file-copy-2-fill:before { - content: "\ecd2"; -} - -.ri-file-copy-2-line:before { - content: "\ecd3"; -} - -.ri-file-copy-fill:before { - content: "\ecd4"; -} - -.ri-file-copy-line:before { - content: "\ecd5"; -} - -.ri-file-damage-fill:before { - content: "\ecd6"; -} - -.ri-file-damage-line:before { - content: "\ecd7"; -} - -.ri-file-download-fill:before { - content: "\ecd8"; -} - -.ri-file-download-line:before { - content: "\ecd9"; -} - -.ri-file-edit-fill:before { - content: "\ecda"; -} - -.ri-file-edit-line:before { - content: "\ecdb"; -} - -.ri-file-excel-2-fill:before { - content: "\ecdc"; -} - -.ri-file-excel-2-line:before { - content: "\ecdd"; -} - -.ri-file-excel-fill:before { - content: "\ecde"; -} - -.ri-file-excel-line:before { - content: "\ecdf"; -} - -.ri-file-fill:before { - content: "\ece0"; -} - -.ri-file-forbid-fill:before { - content: "\ece1"; -} - -.ri-file-forbid-line:before { - content: "\ece2"; -} - -.ri-file-gif-fill:before { - content: "\ece3"; -} - -.ri-file-gif-line:before { - content: "\ece4"; -} - -.ri-file-history-fill:before { - content: "\ece5"; -} - -.ri-file-history-line:before { - content: "\ece6"; -} - -.ri-file-hwp-fill:before { - content: "\ece7"; -} - -.ri-file-hwp-line:before { - content: "\ece8"; -} - -.ri-file-info-fill:before { - content: "\ece9"; -} - -.ri-file-info-line:before { - content: "\ecea"; -} - -.ri-file-line:before { - content: "\eceb"; -} - -.ri-file-list-2-fill:before { - content: "\ecec"; -} - -.ri-file-list-2-line:before { - content: "\eced"; -} - -.ri-file-list-3-fill:before { - content: "\ecee"; -} - -.ri-file-list-3-line:before { - content: "\ecef"; -} - -.ri-file-list-fill:before { - content: "\ecf0"; -} - -.ri-file-list-line:before { - content: "\ecf1"; -} - -.ri-file-lock-fill:before { - content: "\ecf2"; -} - -.ri-file-lock-line:before { - content: "\ecf3"; -} - -.ri-file-mark-fill:before { - content: "\ecf4"; -} - -.ri-file-mark-line:before { - content: "\ecf5"; -} - -.ri-file-music-fill:before { - content: "\ecf6"; -} - -.ri-file-music-line:before { - content: "\ecf7"; -} - -.ri-file-paper-2-fill:before { - content: "\ecf8"; -} - -.ri-file-paper-2-line:before { - content: "\ecf9"; -} - -.ri-file-paper-fill:before { - content: "\ecfa"; -} - -.ri-file-paper-line:before { - content: "\ecfb"; -} - -.ri-file-pdf-fill:before { - content: "\ecfc"; -} - -.ri-file-pdf-line:before { - content: "\ecfd"; -} - -.ri-file-ppt-2-fill:before { - content: "\ecfe"; -} - -.ri-file-ppt-2-line:before { - content: "\ecff"; -} - -.ri-file-ppt-fill:before { - content: "\ed00"; -} - -.ri-file-ppt-line:before { - content: "\ed01"; -} - -.ri-file-reduce-fill:before { - content: "\ed02"; -} - -.ri-file-reduce-line:before { - content: "\ed03"; -} - -.ri-file-search-fill:before { - content: "\ed04"; -} - -.ri-file-search-line:before { - content: "\ed05"; -} - -.ri-file-settings-fill:before { - content: "\ed06"; -} - -.ri-file-settings-line:before { - content: "\ed07"; -} - -.ri-file-shield-2-fill:before { - content: "\ed08"; -} - -.ri-file-shield-2-line:before { - content: "\ed09"; -} - -.ri-file-shield-fill:before { - content: "\ed0a"; -} - -.ri-file-shield-line:before { - content: "\ed0b"; -} - -.ri-file-shred-fill:before { - content: "\ed0c"; -} - -.ri-file-shred-line:before { - content: "\ed0d"; -} - -.ri-file-text-fill:before { - content: "\ed0e"; -} - -.ri-file-text-line:before { - content: "\ed0f"; -} - -.ri-file-transfer-fill:before { - content: "\ed10"; -} - -.ri-file-transfer-line:before { - content: "\ed11"; -} - -.ri-file-unknow-fill:before { - content: "\ed12"; -} - -.ri-file-unknow-line:before { - content: "\ed13"; -} - -.ri-file-upload-fill:before { - content: "\ed14"; -} - -.ri-file-upload-line:before { - content: "\ed15"; -} - -.ri-file-user-fill:before { - content: "\ed16"; -} - -.ri-file-user-line:before { - content: "\ed17"; -} - -.ri-file-warning-fill:before { - content: "\ed18"; -} - -.ri-file-warning-line:before { - content: "\ed19"; -} - -.ri-file-word-2-fill:before { - content: "\ed1a"; -} - -.ri-file-word-2-line:before { - content: "\ed1b"; -} - -.ri-file-word-fill:before { - content: "\ed1c"; -} - -.ri-file-word-line:before { - content: "\ed1d"; -} - -.ri-file-zip-fill:before { - content: "\ed1e"; -} - -.ri-file-zip-line:before { - content: "\ed1f"; -} - -.ri-film-fill:before { - content: "\ed20"; -} - -.ri-film-line:before { - content: "\ed21"; -} - -.ri-filter-2-fill:before { - content: "\ed22"; -} - -.ri-filter-2-line:before { - content: "\ed23"; -} - -.ri-filter-3-fill:before { - content: "\ed24"; -} - -.ri-filter-3-line:before { - content: "\ed25"; -} - -.ri-filter-fill:before { - content: "\ed26"; -} - -.ri-filter-line:before { - content: "\ed27"; -} - -.ri-filter-off-fill:before { - content: "\ed28"; -} - -.ri-filter-off-line:before { - content: "\ed29"; -} - -.ri-find-replace-fill:before { - content: "\ed2a"; -} - -.ri-find-replace-line:before { - content: "\ed2b"; -} - -.ri-finder-fill:before { - content: "\ed2c"; -} - -.ri-finder-line:before { - content: "\ed2d"; -} - -.ri-fingerprint-2-fill:before { - content: "\ed2e"; -} - -.ri-fingerprint-2-line:before { - content: "\ed2f"; -} - -.ri-fingerprint-fill:before { - content: "\ed30"; -} - -.ri-fingerprint-line:before { - content: "\ed31"; -} - -.ri-fire-fill:before { - content: "\ed32"; -} - -.ri-fire-line:before { - content: "\ed33"; -} - -.ri-firefox-fill:before { - content: "\ed34"; -} - -.ri-firefox-line:before { - content: "\ed35"; -} - -.ri-first-aid-kit-fill:before { - content: "\ed36"; -} - -.ri-first-aid-kit-line:before { - content: "\ed37"; -} - -.ri-flag-2-fill:before { - content: "\ed38"; -} - -.ri-flag-2-line:before { - content: "\ed39"; -} - -.ri-flag-fill:before { - content: "\ed3a"; -} - -.ri-flag-line:before { - content: "\ed3b"; -} - -.ri-flashlight-fill:before { - content: "\ed3c"; -} - -.ri-flashlight-line:before { - content: "\ed3d"; -} - -.ri-flask-fill:before { - content: "\ed3e"; -} - -.ri-flask-line:before { - content: "\ed3f"; -} - -.ri-flight-land-fill:before { - content: "\ed40"; -} - -.ri-flight-land-line:before { - content: "\ed41"; -} - -.ri-flight-takeoff-fill:before { - content: "\ed42"; -} - -.ri-flight-takeoff-line:before { - content: "\ed43"; -} - -.ri-flood-fill:before { - content: "\ed44"; -} - -.ri-flood-line:before { - content: "\ed45"; -} - -.ri-flow-chart:before { - content: "\ed46"; -} - -.ri-flutter-fill:before { - content: "\ed47"; -} - -.ri-flutter-line:before { - content: "\ed48"; -} - -.ri-focus-2-fill:before { - content: "\ed49"; -} - -.ri-focus-2-line:before { - content: "\ed4a"; -} - -.ri-focus-3-fill:before { - content: "\ed4b"; -} - -.ri-focus-3-line:before { - content: "\ed4c"; -} - -.ri-focus-fill:before { - content: "\ed4d"; -} - -.ri-focus-line:before { - content: "\ed4e"; -} - -.ri-foggy-fill:before { - content: "\ed4f"; -} - -.ri-foggy-line:before { - content: "\ed50"; -} - -.ri-folder-2-fill:before { - content: "\ed51"; -} - -.ri-folder-2-line:before { - content: "\ed52"; -} - -.ri-folder-3-fill:before { - content: "\ed53"; -} - -.ri-folder-3-line:before { - content: "\ed54"; -} - -.ri-folder-4-fill:before { - content: "\ed55"; -} - -.ri-folder-4-line:before { - content: "\ed56"; -} - -.ri-folder-5-fill:before { - content: "\ed57"; -} - -.ri-folder-5-line:before { - content: "\ed58"; -} - -.ri-folder-add-fill:before { - content: "\ed59"; -} - -.ri-folder-add-line:before { - content: "\ed5a"; -} - -.ri-folder-chart-2-fill:before { - content: "\ed5b"; -} - -.ri-folder-chart-2-line:before { - content: "\ed5c"; -} - -.ri-folder-chart-fill:before { - content: "\ed5d"; -} - -.ri-folder-chart-line:before { - content: "\ed5e"; -} - -.ri-folder-download-fill:before { - content: "\ed5f"; -} - -.ri-folder-download-line:before { - content: "\ed60"; -} - -.ri-folder-fill:before { - content: "\ed61"; -} - -.ri-folder-forbid-fill:before { - content: "\ed62"; -} - -.ri-folder-forbid-line:before { - content: "\ed63"; -} - -.ri-folder-history-fill:before { - content: "\ed64"; -} - -.ri-folder-history-line:before { - content: "\ed65"; -} - -.ri-folder-info-fill:before { - content: "\ed66"; -} - -.ri-folder-info-line:before { - content: "\ed67"; -} - -.ri-folder-keyhole-fill:before { - content: "\ed68"; -} - -.ri-folder-keyhole-line:before { - content: "\ed69"; -} - -.ri-folder-line:before { - content: "\ed6a"; -} - -.ri-folder-lock-fill:before { - content: "\ed6b"; -} - -.ri-folder-lock-line:before { - content: "\ed6c"; -} - -.ri-folder-music-fill:before { - content: "\ed6d"; -} - -.ri-folder-music-line:before { - content: "\ed6e"; -} - -.ri-folder-open-fill:before { - content: "\ed6f"; -} - -.ri-folder-open-line:before { - content: "\ed70"; -} - -.ri-folder-received-fill:before { - content: "\ed71"; -} - -.ri-folder-received-line:before { - content: "\ed72"; -} - -.ri-folder-reduce-fill:before { - content: "\ed73"; -} - -.ri-folder-reduce-line:before { - content: "\ed74"; -} - -.ri-folder-settings-fill:before { - content: "\ed75"; -} - -.ri-folder-settings-line:before { - content: "\ed76"; -} - -.ri-folder-shared-fill:before { - content: "\ed77"; -} - -.ri-folder-shared-line:before { - content: "\ed78"; -} - -.ri-folder-shield-2-fill:before { - content: "\ed79"; -} - -.ri-folder-shield-2-line:before { - content: "\ed7a"; -} - -.ri-folder-shield-fill:before { - content: "\ed7b"; -} - -.ri-folder-shield-line:before { - content: "\ed7c"; -} - -.ri-folder-transfer-fill:before { - content: "\ed7d"; -} - -.ri-folder-transfer-line:before { - content: "\ed7e"; -} - -.ri-folder-unknow-fill:before { - content: "\ed7f"; -} - -.ri-folder-unknow-line:before { - content: "\ed80"; -} - -.ri-folder-upload-fill:before { - content: "\ed81"; -} - -.ri-folder-upload-line:before { - content: "\ed82"; -} - -.ri-folder-user-fill:before { - content: "\ed83"; -} - -.ri-folder-user-line:before { - content: "\ed84"; -} - -.ri-folder-warning-fill:before { - content: "\ed85"; -} - -.ri-folder-warning-line:before { - content: "\ed86"; -} - -.ri-folder-zip-fill:before { - content: "\ed87"; -} - -.ri-folder-zip-line:before { - content: "\ed88"; -} - -.ri-folders-fill:before { - content: "\ed89"; -} - -.ri-folders-line:before { - content: "\ed8a"; -} - -.ri-font-color:before { - content: "\ed8b"; -} - -.ri-font-size-2:before { - content: "\ed8c"; -} - -.ri-font-size:before { - content: "\ed8d"; -} - -.ri-football-fill:before { - content: "\ed8e"; -} - -.ri-football-line:before { - content: "\ed8f"; -} - -.ri-footprint-fill:before { - content: "\ed90"; -} - -.ri-footprint-line:before { - content: "\ed91"; -} - -.ri-forbid-2-fill:before { - content: "\ed92"; -} - -.ri-forbid-2-line:before { - content: "\ed93"; -} - -.ri-forbid-fill:before { - content: "\ed94"; -} - -.ri-forbid-line:before { - content: "\ed95"; -} - -.ri-format-clear:before { - content: "\ed96"; -} - -.ri-fridge-fill:before { - content: "\ed97"; -} - -.ri-fridge-line:before { - content: "\ed98"; -} - -.ri-fullscreen-exit-fill:before { - content: "\ed99"; -} - -.ri-fullscreen-exit-line:before { - content: "\ed9a"; -} - -.ri-fullscreen-fill:before { - content: "\ed9b"; -} - -.ri-fullscreen-line:before { - content: "\ed9c"; -} - -.ri-function-fill:before { - content: "\ed9d"; -} - -.ri-function-line:before { - content: "\ed9e"; -} - -.ri-functions:before { - content: "\ed9f"; -} - -.ri-funds-box-fill:before { - content: "\eda0"; -} - -.ri-funds-box-line:before { - content: "\eda1"; -} - -.ri-funds-fill:before { - content: "\eda2"; -} - -.ri-funds-line:before { - content: "\eda3"; -} - -.ri-gallery-fill:before { - content: "\eda4"; -} - -.ri-gallery-line:before { - content: "\eda5"; -} - -.ri-gallery-upload-fill:before { - content: "\eda6"; -} - -.ri-gallery-upload-line:before { - content: "\eda7"; -} - -.ri-game-fill:before { - content: "\eda8"; -} - -.ri-game-line:before { - content: "\eda9"; -} - -.ri-gamepad-fill:before { - content: "\edaa"; -} - -.ri-gamepad-line:before { - content: "\edab"; -} - -.ri-gas-station-fill:before { - content: "\edac"; -} - -.ri-gas-station-line:before { - content: "\edad"; -} - -.ri-gatsby-fill:before { - content: "\edae"; -} - -.ri-gatsby-line:before { - content: "\edaf"; -} - -.ri-genderless-fill:before { - content: "\edb0"; -} - -.ri-genderless-line:before { - content: "\edb1"; -} - -.ri-ghost-2-fill:before { - content: "\edb2"; -} - -.ri-ghost-2-line:before { - content: "\edb3"; -} - -.ri-ghost-fill:before { - content: "\edb4"; -} - -.ri-ghost-line:before { - content: "\edb5"; -} - -.ri-ghost-smile-fill:before { - content: "\edb6"; -} - -.ri-ghost-smile-line:before { - content: "\edb7"; -} - -.ri-gift-2-fill:before { - content: "\edb8"; -} - -.ri-gift-2-line:before { - content: "\edb9"; -} - -.ri-gift-fill:before { - content: "\edba"; -} - -.ri-gift-line:before { - content: "\edbb"; -} - -.ri-git-branch-fill:before { - content: "\edbc"; -} - -.ri-git-branch-line:before { - content: "\edbd"; -} - -.ri-git-commit-fill:before { - content: "\edbe"; -} - -.ri-git-commit-line:before { - content: "\edbf"; -} - -.ri-git-merge-fill:before { - content: "\edc0"; -} - -.ri-git-merge-line:before { - content: "\edc1"; -} - -.ri-git-pull-request-fill:before { - content: "\edc2"; -} - -.ri-git-pull-request-line:before { - content: "\edc3"; -} - -.ri-git-repository-commits-fill:before { - content: "\edc4"; -} - -.ri-git-repository-commits-line:before { - content: "\edc5"; -} - -.ri-git-repository-fill:before { - content: "\edc6"; -} - -.ri-git-repository-line:before { - content: "\edc7"; -} - -.ri-git-repository-private-fill:before { - content: "\edc8"; -} - -.ri-git-repository-private-line:before { - content: "\edc9"; -} - -.ri-github-fill:before { - content: "\edca"; -} - -.ri-github-line:before { - content: "\edcb"; -} - -.ri-gitlab-fill:before { - content: "\edcc"; -} - -.ri-gitlab-line:before { - content: "\edcd"; -} - -.ri-global-fill:before { - content: "\edce"; -} - -.ri-global-line:before { - content: "\edcf"; -} - -.ri-globe-fill:before { - content: "\edd0"; -} - -.ri-globe-line:before { - content: "\edd1"; -} - -.ri-goblet-fill:before { - content: "\edd2"; -} - -.ri-goblet-line:before { - content: "\edd3"; -} - -.ri-google-fill:before { - content: "\edd4"; -} - -.ri-google-line:before { - content: "\edd5"; -} - -.ri-google-play-fill:before { - content: "\edd6"; -} - -.ri-google-play-line:before { - content: "\edd7"; -} - -.ri-government-fill:before { - content: "\edd8"; -} - -.ri-government-line:before { - content: "\edd9"; -} - -.ri-gps-fill:before { - content: "\edda"; -} - -.ri-gps-line:before { - content: "\eddb"; -} - -.ri-gradienter-fill:before { - content: "\eddc"; -} - -.ri-gradienter-line:before { - content: "\eddd"; -} - -.ri-grid-fill:before { - content: "\edde"; -} - -.ri-grid-line:before { - content: "\eddf"; -} - -.ri-group-2-fill:before { - content: "\ede0"; -} - -.ri-group-2-line:before { - content: "\ede1"; -} - -.ri-group-fill:before { - content: "\ede2"; -} - -.ri-group-line:before { - content: "\ede3"; -} - -.ri-guide-fill:before { - content: "\ede4"; -} - -.ri-guide-line:before { - content: "\ede5"; -} - -.ri-h-1:before { - content: "\ede6"; -} - -.ri-h-2:before { - content: "\ede7"; -} - -.ri-h-3:before { - content: "\ede8"; -} - -.ri-h-4:before { - content: "\ede9"; -} - -.ri-h-5:before { - content: "\edea"; -} - -.ri-h-6:before { - content: "\edeb"; -} - -.ri-hail-fill:before { - content: "\edec"; -} - -.ri-hail-line:before { - content: "\eded"; -} - -.ri-hammer-fill:before { - content: "\edee"; -} - -.ri-hammer-line:before { - content: "\edef"; -} - -.ri-hand-coin-fill:before { - content: "\edf0"; -} - -.ri-hand-coin-line:before { - content: "\edf1"; -} - -.ri-hand-heart-fill:before { - content: "\edf2"; -} - -.ri-hand-heart-line:before { - content: "\edf3"; -} - -.ri-hand-sanitizer-fill:before { - content: "\edf4"; -} - -.ri-hand-sanitizer-line:before { - content: "\edf5"; -} - -.ri-handbag-fill:before { - content: "\edf6"; -} - -.ri-handbag-line:before { - content: "\edf7"; -} - -.ri-hard-drive-2-fill:before { - content: "\edf8"; -} - -.ri-hard-drive-2-line:before { - content: "\edf9"; -} - -.ri-hard-drive-fill:before { - content: "\edfa"; -} - -.ri-hard-drive-line:before { - content: "\edfb"; -} - -.ri-hashtag:before { - content: "\edfc"; -} - -.ri-haze-2-fill:before { - content: "\edfd"; -} - -.ri-haze-2-line:before { - content: "\edfe"; -} - -.ri-haze-fill:before { - content: "\edff"; -} - -.ri-haze-line:before { - content: "\ee00"; -} - -.ri-hd-fill:before { - content: "\ee01"; -} - -.ri-hd-line:before { - content: "\ee02"; -} - -.ri-heading:before { - content: "\ee03"; -} - -.ri-headphone-fill:before { - content: "\ee04"; -} - -.ri-headphone-line:before { - content: "\ee05"; -} - -.ri-health-book-fill:before { - content: "\ee06"; -} - -.ri-health-book-line:before { - content: "\ee07"; -} - -.ri-heart-2-fill:before { - content: "\ee08"; -} - -.ri-heart-2-line:before { - content: "\ee09"; -} - -.ri-heart-3-fill:before { - content: "\ee0a"; -} - -.ri-heart-3-line:before { - content: "\ee0b"; -} - -.ri-heart-add-fill:before { - content: "\ee0c"; -} - -.ri-heart-add-line:before { - content: "\ee0d"; -} - -.ri-heart-fill:before { - content: "\ee0e"; -} - -.ri-heart-line:before { - content: "\ee0f"; -} - -.ri-heart-pulse-fill:before { - content: "\ee10"; -} - -.ri-heart-pulse-line:before { - content: "\ee11"; -} - -.ri-hearts-fill:before { - content: "\ee12"; -} - -.ri-hearts-line:before { - content: "\ee13"; -} - -.ri-heavy-showers-fill:before { - content: "\ee14"; -} - -.ri-heavy-showers-line:before { - content: "\ee15"; -} - -.ri-history-fill:before { - content: "\ee16"; -} - -.ri-history-line:before { - content: "\ee17"; -} - -.ri-home-2-fill:before { - content: "\ee18"; -} - -.ri-home-2-line:before { - content: "\ee19"; -} - -.ri-home-3-fill:before { - content: "\ee1a"; -} - -.ri-home-3-line:before { - content: "\ee1b"; -} - -.ri-home-4-fill:before { - content: "\ee1c"; -} - -.ri-home-4-line:before { - content: "\ee1d"; -} - -.ri-home-5-fill:before { - content: "\ee1e"; -} - -.ri-home-5-line:before { - content: "\ee1f"; -} - -.ri-home-6-fill:before { - content: "\ee20"; -} - -.ri-home-6-line:before { - content: "\ee21"; -} - -.ri-home-7-fill:before { - content: "\ee22"; -} - -.ri-home-7-line:before { - content: "\ee23"; -} - -.ri-home-8-fill:before { - content: "\ee24"; -} - -.ri-home-8-line:before { - content: "\ee25"; -} - -.ri-home-fill:before { - content: "\ee26"; -} - -.ri-home-gear-fill:before { - content: "\ee27"; -} - -.ri-home-gear-line:before { - content: "\ee28"; -} - -.ri-home-heart-fill:before { - content: "\ee29"; -} - -.ri-home-heart-line:before { - content: "\ee2a"; -} - -.ri-home-line:before { - content: "\ee2b"; -} - -.ri-home-smile-2-fill:before { - content: "\ee2c"; -} - -.ri-home-smile-2-line:before { - content: "\ee2d"; -} - -.ri-home-smile-fill:before { - content: "\ee2e"; -} - -.ri-home-smile-line:before { - content: "\ee2f"; -} - -.ri-home-wifi-fill:before { - content: "\ee30"; -} - -.ri-home-wifi-line:before { - content: "\ee31"; -} - -.ri-honor-of-kings-fill:before { - content: "\ee32"; -} - -.ri-honor-of-kings-line:before { - content: "\ee33"; -} - -.ri-honour-fill:before { - content: "\ee34"; -} - -.ri-honour-line:before { - content: "\ee35"; -} - -.ri-hospital-fill:before { - content: "\ee36"; -} - -.ri-hospital-line:before { - content: "\ee37"; -} - -.ri-hotel-bed-fill:before { - content: "\ee38"; -} - -.ri-hotel-bed-line:before { - content: "\ee39"; -} - -.ri-hotel-fill:before { - content: "\ee3a"; -} - -.ri-hotel-line:before { - content: "\ee3b"; -} - -.ri-hotspot-fill:before { - content: "\ee3c"; -} - -.ri-hotspot-line:before { - content: "\ee3d"; -} - -.ri-hq-fill:before { - content: "\ee3e"; -} - -.ri-hq-line:before { - content: "\ee3f"; -} - -.ri-html5-fill:before { - content: "\ee40"; -} - -.ri-html5-line:before { - content: "\ee41"; -} - -.ri-ie-fill:before { - content: "\ee42"; -} - -.ri-ie-line:before { - content: "\ee43"; -} - -.ri-image-2-fill:before { - content: "\ee44"; -} - -.ri-image-2-line:before { - content: "\ee45"; -} - -.ri-image-add-fill:before { - content: "\ee46"; -} - -.ri-image-add-line:before { - content: "\ee47"; -} - -.ri-image-edit-fill:before { - content: "\ee48"; -} - -.ri-image-edit-line:before { - content: "\ee49"; -} - -.ri-image-fill:before { - content: "\ee4a"; -} - -.ri-image-line:before { - content: "\ee4b"; -} - -.ri-inbox-archive-fill:before { - content: "\ee4c"; -} - -.ri-inbox-archive-line:before { - content: "\ee4d"; -} - -.ri-inbox-fill:before { - content: "\ee4e"; -} - -.ri-inbox-line:before { - content: "\ee4f"; -} - -.ri-inbox-unarchive-fill:before { - content: "\ee50"; -} - -.ri-inbox-unarchive-line:before { - content: "\ee51"; -} - -.ri-increase-decrease-fill:before { - content: "\ee52"; -} - -.ri-increase-decrease-line:before { - content: "\ee53"; -} - -.ri-indent-decrease:before { - content: "\ee54"; -} - -.ri-indent-increase:before { - content: "\ee55"; -} - -.ri-indeterminate-circle-fill:before { - content: "\ee56"; -} - -.ri-indeterminate-circle-line:before { - content: "\ee57"; -} - -.ri-information-fill:before { - content: "\ee58"; -} - -.ri-information-line:before { - content: "\ee59"; -} - -.ri-infrared-thermometer-fill:before { - content: "\ee5a"; -} - -.ri-infrared-thermometer-line:before { - content: "\ee5b"; -} - -.ri-ink-bottle-fill:before { - content: "\ee5c"; -} - -.ri-ink-bottle-line:before { - content: "\ee5d"; -} - -.ri-input-cursor-move:before { - content: "\ee5e"; -} - -.ri-input-method-fill:before { - content: "\ee5f"; -} - -.ri-input-method-line:before { - content: "\ee60"; -} - -.ri-insert-column-left:before { - content: "\ee61"; -} - -.ri-insert-column-right:before { - content: "\ee62"; -} - -.ri-insert-row-bottom:before { - content: "\ee63"; -} - -.ri-insert-row-top:before { - content: "\ee64"; -} - -.ri-instagram-fill:before { - content: "\ee65"; -} - -.ri-instagram-line:before { - content: "\ee66"; -} - -.ri-install-fill:before { - content: "\ee67"; -} - -.ri-install-line:before { - content: "\ee68"; -} - -.ri-invision-fill:before { - content: "\ee69"; -} - -.ri-invision-line:before { - content: "\ee6a"; -} - -.ri-italic:before { - content: "\ee6b"; -} - -.ri-kakao-talk-fill:before { - content: "\ee6c"; -} - -.ri-kakao-talk-line:before { - content: "\ee6d"; -} - -.ri-key-2-fill:before { - content: "\ee6e"; -} - -.ri-key-2-line:before { - content: "\ee6f"; -} - -.ri-key-fill:before { - content: "\ee70"; -} - -.ri-key-line:before { - content: "\ee71"; -} - -.ri-keyboard-box-fill:before { - content: "\ee72"; -} - -.ri-keyboard-box-line:before { - content: "\ee73"; -} - -.ri-keyboard-fill:before { - content: "\ee74"; -} - -.ri-keyboard-line:before { - content: "\ee75"; -} - -.ri-keynote-fill:before { - content: "\ee76"; -} - -.ri-keynote-line:before { - content: "\ee77"; -} - -.ri-knife-blood-fill:before { - content: "\ee78"; -} - -.ri-knife-blood-line:before { - content: "\ee79"; -} - -.ri-knife-fill:before { - content: "\ee7a"; -} - -.ri-knife-line:before { - content: "\ee7b"; -} - -.ri-landscape-fill:before { - content: "\ee7c"; -} - -.ri-landscape-line:before { - content: "\ee7d"; -} - -.ri-layout-2-fill:before { - content: "\ee7e"; -} - -.ri-layout-2-line:before { - content: "\ee7f"; -} - -.ri-layout-3-fill:before { - content: "\ee80"; -} - -.ri-layout-3-line:before { - content: "\ee81"; -} - -.ri-layout-4-fill:before { - content: "\ee82"; -} - -.ri-layout-4-line:before { - content: "\ee83"; -} - -.ri-layout-5-fill:before { - content: "\ee84"; -} - -.ri-layout-5-line:before { - content: "\ee85"; -} - -.ri-layout-6-fill:before { - content: "\ee86"; -} - -.ri-layout-6-line:before { - content: "\ee87"; -} - -.ri-layout-bottom-2-fill:before { - content: "\ee88"; -} - -.ri-layout-bottom-2-line:before { - content: "\ee89"; -} - -.ri-layout-bottom-fill:before { - content: "\ee8a"; -} - -.ri-layout-bottom-line:before { - content: "\ee8b"; -} - -.ri-layout-column-fill:before { - content: "\ee8c"; -} - -.ri-layout-column-line:before { - content: "\ee8d"; -} - -.ri-layout-fill:before { - content: "\ee8e"; -} - -.ri-layout-grid-fill:before { - content: "\ee8f"; -} - -.ri-layout-grid-line:before { - content: "\ee90"; -} - -.ri-layout-left-2-fill:before { - content: "\ee91"; -} - -.ri-layout-left-2-line:before { - content: "\ee92"; -} - -.ri-layout-left-fill:before { - content: "\ee93"; -} - -.ri-layout-left-line:before { - content: "\ee94"; -} - -.ri-layout-line:before { - content: "\ee95"; -} - -.ri-layout-masonry-fill:before { - content: "\ee96"; -} - -.ri-layout-masonry-line:before { - content: "\ee97"; -} - -.ri-layout-right-2-fill:before { - content: "\ee98"; -} - -.ri-layout-right-2-line:before { - content: "\ee99"; -} - -.ri-layout-right-fill:before { - content: "\ee9a"; -} - -.ri-layout-right-line:before { - content: "\ee9b"; -} - -.ri-layout-row-fill:before { - content: "\ee9c"; -} - -.ri-layout-row-line:before { - content: "\ee9d"; -} - -.ri-layout-top-2-fill:before { - content: "\ee9e"; -} - -.ri-layout-top-2-line:before { - content: "\ee9f"; -} - -.ri-layout-top-fill:before { - content: "\eea0"; -} - -.ri-layout-top-line:before { - content: "\eea1"; -} - -.ri-leaf-fill:before { - content: "\eea2"; -} - -.ri-leaf-line:before { - content: "\eea3"; -} - -.ri-lifebuoy-fill:before { - content: "\eea4"; -} - -.ri-lifebuoy-line:before { - content: "\eea5"; -} - -.ri-lightbulb-fill:before { - content: "\eea6"; -} - -.ri-lightbulb-flash-fill:before { - content: "\eea7"; -} - -.ri-lightbulb-flash-line:before { - content: "\eea8"; -} - -.ri-lightbulb-line:before { - content: "\eea9"; -} - -.ri-line-chart-fill:before { - content: "\eeaa"; -} - -.ri-line-chart-line:before { - content: "\eeab"; -} - -.ri-line-fill:before { - content: "\eeac"; -} - -.ri-line-height:before { - content: "\eead"; -} - -.ri-line-line:before { - content: "\eeae"; -} - -.ri-link-m:before { - content: "\eeaf"; -} - -.ri-link-unlink-m:before { - content: "\eeb0"; -} - -.ri-link-unlink:before { - content: "\eeb1"; -} - -.ri-link:before { - content: "\eeb2"; -} - -.ri-linkedin-box-fill:before { - content: "\eeb3"; -} - -.ri-linkedin-box-line:before { - content: "\eeb4"; -} - -.ri-linkedin-fill:before { - content: "\eeb5"; -} - -.ri-linkedin-line:before { - content: "\eeb6"; -} - -.ri-links-fill:before { - content: "\eeb7"; -} - -.ri-links-line:before { - content: "\eeb8"; -} - -.ri-list-check-2:before { - content: "\eeb9"; -} - -.ri-list-check:before { - content: "\eeba"; -} - -.ri-list-ordered:before { - content: "\eebb"; -} - -.ri-list-settings-fill:before { - content: "\eebc"; -} - -.ri-list-settings-line:before { - content: "\eebd"; -} - -.ri-list-unordered:before { - content: "\eebe"; -} - -.ri-live-fill:before { - content: "\eebf"; -} - -.ri-live-line:before { - content: "\eec0"; -} - -.ri-loader-2-fill:before { - content: "\eec1"; -} - -.ri-loader-2-line:before { - content: "\eec2"; -} - -.ri-loader-3-fill:before { - content: "\eec3"; -} - -.ri-loader-3-line:before { - content: "\eec4"; -} - -.ri-loader-4-fill:before { - content: "\eec5"; -} - -.ri-loader-4-line:before { - content: "\eec6"; -} - -.ri-loader-5-fill:before { - content: "\eec7"; -} - -.ri-loader-5-line:before { - content: "\eec8"; -} - -.ri-loader-fill:before { - content: "\eec9"; -} - -.ri-loader-line:before { - content: "\eeca"; -} - -.ri-lock-2-fill:before { - content: "\eecb"; -} - -.ri-lock-2-line:before { - content: "\eecc"; -} - -.ri-lock-fill:before { - content: "\eecd"; -} - -.ri-lock-line:before { - content: "\eece"; -} - -.ri-lock-password-fill:before { - content: "\eecf"; -} - -.ri-lock-password-line:before { - content: "\eed0"; -} - -.ri-lock-unlock-fill:before { - content: "\eed1"; -} - -.ri-lock-unlock-line:before { - content: "\eed2"; -} - -.ri-login-box-fill:before { - content: "\eed3"; -} - -.ri-login-box-line:before { - content: "\eed4"; -} - -.ri-login-circle-fill:before { - content: "\eed5"; -} - -.ri-login-circle-line:before { - content: "\eed6"; -} - -.ri-logout-box-fill:before { - content: "\eed7"; -} - -.ri-logout-box-line:before { - content: "\eed8"; -} - -.ri-logout-box-r-fill:before { - content: "\eed9"; -} - -.ri-logout-box-r-line:before { - content: "\eeda"; -} - -.ri-logout-circle-fill:before { - content: "\eedb"; -} - -.ri-logout-circle-line:before { - content: "\eedc"; -} - -.ri-logout-circle-r-fill:before { - content: "\eedd"; -} - -.ri-logout-circle-r-line:before { - content: "\eede"; -} - -.ri-luggage-cart-fill:before { - content: "\eedf"; -} - -.ri-luggage-cart-line:before { - content: "\eee0"; -} - -.ri-luggage-deposit-fill:before { - content: "\eee1"; -} - -.ri-luggage-deposit-line:before { - content: "\eee2"; -} - -.ri-lungs-fill:before { - content: "\eee3"; -} - -.ri-lungs-line:before { - content: "\eee4"; -} - -.ri-mac-fill:before { - content: "\eee5"; -} - -.ri-mac-line:before { - content: "\eee6"; -} - -.ri-macbook-fill:before { - content: "\eee7"; -} - -.ri-macbook-line:before { - content: "\eee8"; -} - -.ri-magic-fill:before { - content: "\eee9"; -} - -.ri-magic-line:before { - content: "\eeea"; -} - -.ri-mail-add-fill:before { - content: "\eeeb"; -} - -.ri-mail-add-line:before { - content: "\eeec"; -} - -.ri-mail-check-fill:before { - content: "\eeed"; -} - -.ri-mail-check-line:before { - content: "\eeee"; -} - -.ri-mail-close-fill:before { - content: "\eeef"; -} - -.ri-mail-close-line:before { - content: "\eef0"; -} - -.ri-mail-download-fill:before { - content: "\eef1"; -} - -.ri-mail-download-line:before { - content: "\eef2"; -} - -.ri-mail-fill:before { - content: "\eef3"; -} - -.ri-mail-forbid-fill:before { - content: "\eef4"; -} - -.ri-mail-forbid-line:before { - content: "\eef5"; -} - -.ri-mail-line:before { - content: "\eef6"; -} - -.ri-mail-lock-fill:before { - content: "\eef7"; -} - -.ri-mail-lock-line:before { - content: "\eef8"; -} - -.ri-mail-open-fill:before { - content: "\eef9"; -} - -.ri-mail-open-line:before { - content: "\eefa"; -} - -.ri-mail-send-fill:before { - content: "\eefb"; -} - -.ri-mail-send-line:before { - content: "\eefc"; -} - -.ri-mail-settings-fill:before { - content: "\eefd"; -} - -.ri-mail-settings-line:before { - content: "\eefe"; -} - -.ri-mail-star-fill:before { - content: "\eeff"; -} - -.ri-mail-star-line:before { - content: "\ef00"; -} - -.ri-mail-unread-fill:before { - content: "\ef01"; -} - -.ri-mail-unread-line:before { - content: "\ef02"; -} - -.ri-mail-volume-fill:before { - content: "\ef03"; -} - -.ri-mail-volume-line:before { - content: "\ef04"; -} - -.ri-map-2-fill:before { - content: "\ef05"; -} - -.ri-map-2-line:before { - content: "\ef06"; -} - -.ri-map-fill:before { - content: "\ef07"; -} - -.ri-map-line:before { - content: "\ef08"; -} - -.ri-map-pin-2-fill:before { - content: "\ef09"; -} - -.ri-map-pin-2-line:before { - content: "\ef0a"; -} - -.ri-map-pin-3-fill:before { - content: "\ef0b"; -} - -.ri-map-pin-3-line:before { - content: "\ef0c"; -} - -.ri-map-pin-4-fill:before { - content: "\ef0d"; -} - -.ri-map-pin-4-line:before { - content: "\ef0e"; -} - -.ri-map-pin-5-fill:before { - content: "\ef0f"; -} - -.ri-map-pin-5-line:before { - content: "\ef10"; -} - -.ri-map-pin-add-fill:before { - content: "\ef11"; -} - -.ri-map-pin-add-line:before { - content: "\ef12"; -} - -.ri-map-pin-fill:before { - content: "\ef13"; -} - -.ri-map-pin-line:before { - content: "\ef14"; -} - -.ri-map-pin-range-fill:before { - content: "\ef15"; -} - -.ri-map-pin-range-line:before { - content: "\ef16"; -} - -.ri-map-pin-time-fill:before { - content: "\ef17"; -} - -.ri-map-pin-time-line:before { - content: "\ef18"; -} - -.ri-map-pin-user-fill:before { - content: "\ef19"; -} - -.ri-map-pin-user-line:before { - content: "\ef1a"; -} - -.ri-mark-pen-fill:before { - content: "\ef1b"; -} - -.ri-mark-pen-line:before { - content: "\ef1c"; -} - -.ri-markdown-fill:before { - content: "\ef1d"; -} - -.ri-markdown-line:before { - content: "\ef1e"; -} - -.ri-markup-fill:before { - content: "\ef1f"; -} - -.ri-markup-line:before { - content: "\ef20"; -} - -.ri-mastercard-fill:before { - content: "\ef21"; -} - -.ri-mastercard-line:before { - content: "\ef22"; -} - -.ri-mastodon-fill:before { - content: "\ef23"; -} - -.ri-mastodon-line:before { - content: "\ef24"; -} - -.ri-medal-2-fill:before { - content: "\ef25"; -} - -.ri-medal-2-line:before { - content: "\ef26"; -} - -.ri-medal-fill:before { - content: "\ef27"; -} - -.ri-medal-line:before { - content: "\ef28"; -} - -.ri-medicine-bottle-fill:before { - content: "\ef29"; -} - -.ri-medicine-bottle-line:before { - content: "\ef2a"; -} - -.ri-medium-fill:before { - content: "\ef2b"; -} - -.ri-medium-line:before { - content: "\ef2c"; -} - -.ri-men-fill:before { - content: "\ef2d"; -} - -.ri-men-line:before { - content: "\ef2e"; -} - -.ri-mental-health-fill:before { - content: "\ef2f"; -} - -.ri-mental-health-line:before { - content: "\ef30"; -} - -.ri-menu-2-fill:before { - content: "\ef31"; -} - -.ri-menu-2-line:before { - content: "\ef32"; -} - -.ri-menu-3-fill:before { - content: "\ef33"; -} - -.ri-menu-3-line:before { - content: "\ef34"; -} - -.ri-menu-4-fill:before { - content: "\ef35"; -} - -.ri-menu-4-line:before { - content: "\ef36"; -} - -.ri-menu-5-fill:before { - content: "\ef37"; -} - -.ri-menu-5-line:before { - content: "\ef38"; -} - -.ri-menu-add-fill:before { - content: "\ef39"; -} - -.ri-menu-add-line:before { - content: "\ef3a"; -} - -.ri-menu-fill:before { - content: "\ef3b"; -} - -.ri-menu-fold-fill:before { - content: "\ef3c"; -} - -.ri-menu-fold-line:before { - content: "\ef3d"; -} - -.ri-menu-line:before { - content: "\ef3e"; -} - -.ri-menu-unfold-fill:before { - content: "\ef3f"; -} - -.ri-menu-unfold-line:before { - content: "\ef40"; -} - -.ri-merge-cells-horizontal:before { - content: "\ef41"; -} - -.ri-merge-cells-vertical:before { - content: "\ef42"; -} - -.ri-message-2-fill:before { - content: "\ef43"; -} - -.ri-message-2-line:before { - content: "\ef44"; -} - -.ri-message-3-fill:before { - content: "\ef45"; -} - -.ri-message-3-line:before { - content: "\ef46"; -} - -.ri-message-fill:before { - content: "\ef47"; -} - -.ri-message-line:before { - content: "\ef48"; -} - -.ri-messenger-fill:before { - content: "\ef49"; -} - -.ri-messenger-line:before { - content: "\ef4a"; -} - -.ri-meteor-fill:before { - content: "\ef4b"; -} - -.ri-meteor-line:before { - content: "\ef4c"; -} - -.ri-mic-2-fill:before { - content: "\ef4d"; -} - -.ri-mic-2-line:before { - content: "\ef4e"; -} - -.ri-mic-fill:before { - content: "\ef4f"; -} - -.ri-mic-line:before { - content: "\ef50"; -} - -.ri-mic-off-fill:before { - content: "\ef51"; -} - -.ri-mic-off-line:before { - content: "\ef52"; -} - -.ri-mickey-fill:before { - content: "\ef53"; -} - -.ri-mickey-line:before { - content: "\ef54"; -} - -.ri-microscope-fill:before { - content: "\ef55"; -} - -.ri-microscope-line:before { - content: "\ef56"; -} - -.ri-microsoft-fill:before { - content: "\ef57"; -} - -.ri-microsoft-line:before { - content: "\ef58"; -} - -.ri-mind-map:before { - content: "\ef59"; -} - -.ri-mini-program-fill:before { - content: "\ef5a"; -} - -.ri-mini-program-line:before { - content: "\ef5b"; -} - -.ri-mist-fill:before { - content: "\ef5c"; -} - -.ri-mist-line:before { - content: "\ef5d"; -} - -.ri-money-cny-box-fill:before { - content: "\ef5e"; -} - -.ri-money-cny-box-line:before { - content: "\ef5f"; -} - -.ri-money-cny-circle-fill:before { - content: "\ef60"; -} - -.ri-money-cny-circle-line:before { - content: "\ef61"; -} - -.ri-money-dollar-box-fill:before { - content: "\ef62"; -} - -.ri-money-dollar-box-line:before { - content: "\ef63"; -} - -.ri-money-dollar-circle-fill:before { - content: "\ef64"; -} - -.ri-money-dollar-circle-line:before { - content: "\ef65"; -} - -.ri-money-euro-box-fill:before { - content: "\ef66"; -} - -.ri-money-euro-box-line:before { - content: "\ef67"; -} - -.ri-money-euro-circle-fill:before { - content: "\ef68"; -} - -.ri-money-euro-circle-line:before { - content: "\ef69"; -} - -.ri-money-pound-box-fill:before { - content: "\ef6a"; -} - -.ri-money-pound-box-line:before { - content: "\ef6b"; -} - -.ri-money-pound-circle-fill:before { - content: "\ef6c"; -} - -.ri-money-pound-circle-line:before { - content: "\ef6d"; -} - -.ri-moon-clear-fill:before { - content: "\ef6e"; -} - -.ri-moon-clear-line:before { - content: "\ef6f"; -} - -.ri-moon-cloudy-fill:before { - content: "\ef70"; -} - -.ri-moon-cloudy-line:before { - content: "\ef71"; -} - -.ri-moon-fill:before { - content: "\ef72"; -} - -.ri-moon-foggy-fill:before { - content: "\ef73"; -} - -.ri-moon-foggy-line:before { - content: "\ef74"; -} - -.ri-moon-line:before { - content: "\ef75"; -} - -.ri-more-2-fill:before { - content: "\ef76"; -} - -.ri-more-2-line:before { - content: "\ef77"; -} - -.ri-more-fill:before { - content: "\ef78"; -} - -.ri-more-line:before { - content: "\ef79"; -} - -.ri-motorbike-fill:before { - content: "\ef7a"; -} - -.ri-motorbike-line:before { - content: "\ef7b"; -} - -.ri-mouse-fill:before { - content: "\ef7c"; -} - -.ri-mouse-line:before { - content: "\ef7d"; -} - -.ri-movie-2-fill:before { - content: "\ef7e"; -} - -.ri-movie-2-line:before { - content: "\ef7f"; -} - -.ri-movie-fill:before { - content: "\ef80"; -} - -.ri-movie-line:before { - content: "\ef81"; -} - -.ri-music-2-fill:before { - content: "\ef82"; -} - -.ri-music-2-line:before { - content: "\ef83"; -} - -.ri-music-fill:before { - content: "\ef84"; -} - -.ri-music-line:before { - content: "\ef85"; -} - -.ri-mv-fill:before { - content: "\ef86"; -} - -.ri-mv-line:before { - content: "\ef87"; -} - -.ri-navigation-fill:before { - content: "\ef88"; -} - -.ri-navigation-line:before { - content: "\ef89"; -} - -.ri-netease-cloud-music-fill:before { - content: "\ef8a"; -} - -.ri-netease-cloud-music-line:before { - content: "\ef8b"; -} - -.ri-netflix-fill:before { - content: "\ef8c"; -} - -.ri-netflix-line:before { - content: "\ef8d"; -} - -.ri-newspaper-fill:before { - content: "\ef8e"; -} - -.ri-newspaper-line:before { - content: "\ef8f"; -} - -.ri-node-tree:before { - content: "\ef90"; -} - -.ri-notification-2-fill:before { - content: "\ef91"; -} - -.ri-notification-2-line:before { - content: "\ef92"; -} - -.ri-notification-3-fill:before { - content: "\ef93"; -} - -.ri-notification-3-line:before { - content: "\ef94"; -} - -.ri-notification-4-fill:before { - content: "\ef95"; -} - -.ri-notification-4-line:before { - content: "\ef96"; -} - -.ri-notification-badge-fill:before { - content: "\ef97"; -} - -.ri-notification-badge-line:before { - content: "\ef98"; -} - -.ri-notification-fill:before { - content: "\ef99"; -} - -.ri-notification-line:before { - content: "\ef9a"; -} - -.ri-notification-off-fill:before { - content: "\ef9b"; -} - -.ri-notification-off-line:before { - content: "\ef9c"; -} - -.ri-npmjs-fill:before { - content: "\ef9d"; -} - -.ri-npmjs-line:before { - content: "\ef9e"; -} - -.ri-number-0:before { - content: "\ef9f"; -} - -.ri-number-1:before { - content: "\efa0"; -} - -.ri-number-2:before { - content: "\efa1"; -} - -.ri-number-3:before { - content: "\efa2"; -} - -.ri-number-4:before { - content: "\efa3"; -} - -.ri-number-5:before { - content: "\efa4"; -} - -.ri-number-6:before { - content: "\efa5"; -} - -.ri-number-7:before { - content: "\efa6"; -} - -.ri-number-8:before { - content: "\efa7"; -} - -.ri-number-9:before { - content: "\efa8"; -} - -.ri-numbers-fill:before { - content: "\efa9"; -} - -.ri-numbers-line:before { - content: "\efaa"; -} - -.ri-nurse-fill:before { - content: "\efab"; -} - -.ri-nurse-line:before { - content: "\efac"; -} - -.ri-oil-fill:before { - content: "\efad"; -} - -.ri-oil-line:before { - content: "\efae"; -} - -.ri-omega:before { - content: "\efaf"; -} - -.ri-open-arm-fill:before { - content: "\efb0"; -} - -.ri-open-arm-line:before { - content: "\efb1"; -} - -.ri-open-source-fill:before { - content: "\efb2"; -} - -.ri-open-source-line:before { - content: "\efb3"; -} - -.ri-opera-fill:before { - content: "\efb4"; -} - -.ri-opera-line:before { - content: "\efb5"; -} - -.ri-order-play-fill:before { - content: "\efb6"; -} - -.ri-order-play-line:before { - content: "\efb7"; -} - -.ri-organization-chart:before { - content: "\efb8"; -} - -.ri-outlet-2-fill:before { - content: "\efb9"; -} - -.ri-outlet-2-line:before { - content: "\efba"; -} - -.ri-outlet-fill:before { - content: "\efbb"; -} - -.ri-outlet-line:before { - content: "\efbc"; -} - -.ri-page-separator:before { - content: "\efbd"; -} - -.ri-pages-fill:before { - content: "\efbe"; -} - -.ri-pages-line:before { - content: "\efbf"; -} - -.ri-paint-brush-fill:before { - content: "\efc0"; -} - -.ri-paint-brush-line:before { - content: "\efc1"; -} - -.ri-paint-fill:before { - content: "\efc2"; -} - -.ri-paint-line:before { - content: "\efc3"; -} - -.ri-palette-fill:before { - content: "\efc4"; -} - -.ri-palette-line:before { - content: "\efc5"; -} - -.ri-pantone-fill:before { - content: "\efc6"; -} - -.ri-pantone-line:before { - content: "\efc7"; -} - -.ri-paragraph:before { - content: "\efc8"; -} - -.ri-parent-fill:before { - content: "\efc9"; -} - -.ri-parent-line:before { - content: "\efca"; -} - -.ri-parentheses-fill:before { - content: "\efcb"; -} - -.ri-parentheses-line:before { - content: "\efcc"; -} - -.ri-parking-box-fill:before { - content: "\efcd"; -} - -.ri-parking-box-line:before { - content: "\efce"; -} - -.ri-parking-fill:before { - content: "\efcf"; -} - -.ri-parking-line:before { - content: "\efd0"; -} - -.ri-passport-fill:before { - content: "\efd1"; -} - -.ri-passport-line:before { - content: "\efd2"; -} - -.ri-patreon-fill:before { - content: "\efd3"; -} - -.ri-patreon-line:before { - content: "\efd4"; -} - -.ri-pause-circle-fill:before { - content: "\efd5"; -} - -.ri-pause-circle-line:before { - content: "\efd6"; -} - -.ri-pause-fill:before { - content: "\efd7"; -} - -.ri-pause-line:before { - content: "\efd8"; -} - -.ri-pause-mini-fill:before { - content: "\efd9"; -} - -.ri-pause-mini-line:before { - content: "\efda"; -} - -.ri-paypal-fill:before { - content: "\efdb"; -} - -.ri-paypal-line:before { - content: "\efdc"; -} - -.ri-pen-nib-fill:before { - content: "\efdd"; -} - -.ri-pen-nib-line:before { - content: "\efde"; -} - -.ri-pencil-fill:before { - content: "\efdf"; -} - -.ri-pencil-line:before { - content: "\efe0"; -} - -.ri-pencil-ruler-2-fill:before { - content: "\efe1"; -} - -.ri-pencil-ruler-2-line:before { - content: "\efe2"; -} - -.ri-pencil-ruler-fill:before { - content: "\efe3"; -} - -.ri-pencil-ruler-line:before { - content: "\efe4"; -} - -.ri-percent-fill:before { - content: "\efe5"; -} - -.ri-percent-line:before { - content: "\efe6"; -} - -.ri-phone-camera-fill:before { - content: "\efe7"; -} - -.ri-phone-camera-line:before { - content: "\efe8"; -} - -.ri-phone-fill:before { - content: "\efe9"; -} - -.ri-phone-find-fill:before { - content: "\efea"; -} - -.ri-phone-find-line:before { - content: "\efeb"; -} - -.ri-phone-line:before { - content: "\efec"; -} - -.ri-phone-lock-fill:before { - content: "\efed"; -} - -.ri-phone-lock-line:before { - content: "\efee"; -} - -.ri-picture-in-picture-2-fill:before { - content: "\efef"; -} - -.ri-picture-in-picture-2-line:before { - content: "\eff0"; -} - -.ri-picture-in-picture-exit-fill:before { - content: "\eff1"; -} - -.ri-picture-in-picture-exit-line:before { - content: "\eff2"; -} - -.ri-picture-in-picture-fill:before { - content: "\eff3"; -} - -.ri-picture-in-picture-line:before { - content: "\eff4"; -} - -.ri-pie-chart-2-fill:before { - content: "\eff5"; -} - -.ri-pie-chart-2-line:before { - content: "\eff6"; -} - -.ri-pie-chart-box-fill:before { - content: "\eff7"; -} - -.ri-pie-chart-box-line:before { - content: "\eff8"; -} - -.ri-pie-chart-fill:before { - content: "\eff9"; -} - -.ri-pie-chart-line:before { - content: "\effa"; -} - -.ri-pin-distance-fill:before { - content: "\effb"; -} - -.ri-pin-distance-line:before { - content: "\effc"; -} - -.ri-ping-pong-fill:before { - content: "\effd"; -} - -.ri-ping-pong-line:before { - content: "\effe"; -} - -.ri-pinterest-fill:before { - content: "\efff"; -} - -.ri-pinterest-line:before { - content: "\f000"; -} - -.ri-pinyin-input:before { - content: "\f001"; -} - -.ri-pixelfed-fill:before { - content: "\f002"; -} - -.ri-pixelfed-line:before { - content: "\f003"; -} - -.ri-plane-fill:before { - content: "\f004"; -} - -.ri-plane-line:before { - content: "\f005"; -} - -.ri-plant-fill:before { - content: "\f006"; -} - -.ri-plant-line:before { - content: "\f007"; -} - -.ri-play-circle-fill:before { - content: "\f008"; -} - -.ri-play-circle-line:before { - content: "\f009"; -} - -.ri-play-fill:before { - content: "\f00a"; -} - -.ri-play-line:before { - content: "\f00b"; -} - -.ri-play-list-2-fill:before { - content: "\f00c"; -} - -.ri-play-list-2-line:before { - content: "\f00d"; -} - -.ri-play-list-add-fill:before { - content: "\f00e"; -} - -.ri-play-list-add-line:before { - content: "\f00f"; -} - -.ri-play-list-fill:before { - content: "\f010"; -} - -.ri-play-list-line:before { - content: "\f011"; -} - -.ri-play-mini-fill:before { - content: "\f012"; -} - -.ri-play-mini-line:before { - content: "\f013"; -} - -.ri-playstation-fill:before { - content: "\f014"; -} - -.ri-playstation-line:before { - content: "\f015"; -} - -.ri-plug-2-fill:before { - content: "\f016"; -} - -.ri-plug-2-line:before { - content: "\f017"; -} - -.ri-plug-fill:before { - content: "\f018"; -} - -.ri-plug-line:before { - content: "\f019"; -} - -.ri-polaroid-2-fill:before { - content: "\f01a"; -} - -.ri-polaroid-2-line:before { - content: "\f01b"; -} - -.ri-polaroid-fill:before { - content: "\f01c"; -} - -.ri-polaroid-line:before { - content: "\f01d"; -} - -.ri-police-car-fill:before { - content: "\f01e"; -} - -.ri-police-car-line:before { - content: "\f01f"; -} - -.ri-price-tag-2-fill:before { - content: "\f020"; -} - -.ri-price-tag-2-line:before { - content: "\f021"; -} - -.ri-price-tag-3-fill:before { - content: "\f022"; -} - -.ri-price-tag-3-line:before { - content: "\f023"; -} - -.ri-price-tag-fill:before { - content: "\f024"; -} - -.ri-price-tag-line:before { - content: "\f025"; -} - -.ri-printer-cloud-fill:before { - content: "\f026"; -} - -.ri-printer-cloud-line:before { - content: "\f027"; -} - -.ri-printer-fill:before { - content: "\f028"; -} - -.ri-printer-line:before { - content: "\f029"; -} - -.ri-product-hunt-fill:before { - content: "\f02a"; -} - -.ri-product-hunt-line:before { - content: "\f02b"; -} - -.ri-profile-fill:before { - content: "\f02c"; -} - -.ri-profile-line:before { - content: "\f02d"; -} - -.ri-projector-2-fill:before { - content: "\f02e"; -} - -.ri-projector-2-line:before { - content: "\f02f"; -} - -.ri-projector-fill:before { - content: "\f030"; -} - -.ri-projector-line:before { - content: "\f031"; -} - -.ri-psychotherapy-fill:before { - content: "\f032"; -} - -.ri-psychotherapy-line:before { - content: "\f033"; -} - -.ri-pulse-fill:before { - content: "\f034"; -} - -.ri-pulse-line:before { - content: "\f035"; -} - -.ri-pushpin-2-fill:before { - content: "\f036"; -} - -.ri-pushpin-2-line:before { - content: "\f037"; -} - -.ri-pushpin-fill:before { - content: "\f038"; -} - -.ri-pushpin-line:before { - content: "\f039"; -} - -.ri-qq-fill:before { - content: "\f03a"; -} - -.ri-qq-line:before { - content: "\f03b"; -} - -.ri-qr-code-fill:before { - content: "\f03c"; -} - -.ri-qr-code-line:before { - content: "\f03d"; -} - -.ri-qr-scan-2-fill:before { - content: "\f03e"; -} - -.ri-qr-scan-2-line:before { - content: "\f03f"; -} - -.ri-qr-scan-fill:before { - content: "\f040"; -} - -.ri-qr-scan-line:before { - content: "\f041"; -} - -.ri-question-answer-fill:before { - content: "\f042"; -} - -.ri-question-answer-line:before { - content: "\f043"; -} - -.ri-question-fill:before { - content: "\f044"; -} - -.ri-question-line:before { - content: "\f045"; -} - -.ri-question-mark:before { - content: "\f046"; -} - -.ri-questionnaire-fill:before { - content: "\f047"; -} - -.ri-questionnaire-line:before { - content: "\f048"; -} - -.ri-quill-pen-fill:before { - content: "\f049"; -} - -.ri-quill-pen-line:before { - content: "\f04a"; -} - -.ri-radar-fill:before { - content: "\f04b"; -} - -.ri-radar-line:before { - content: "\f04c"; -} - -.ri-radio-2-fill:before { - content: "\f04d"; -} - -.ri-radio-2-line:before { - content: "\f04e"; -} - -.ri-radio-button-fill:before { - content: "\f04f"; -} - -.ri-radio-button-line:before { - content: "\f050"; -} - -.ri-radio-fill:before { - content: "\f051"; -} - -.ri-radio-line:before { - content: "\f052"; -} - -.ri-rainbow-fill:before { - content: "\f053"; -} - -.ri-rainbow-line:before { - content: "\f054"; -} - -.ri-rainy-fill:before { - content: "\f055"; -} - -.ri-rainy-line:before { - content: "\f056"; -} - -.ri-reactjs-fill:before { - content: "\f057"; -} - -.ri-reactjs-line:before { - content: "\f058"; -} - -.ri-record-circle-fill:before { - content: "\f059"; -} - -.ri-record-circle-line:before { - content: "\f05a"; -} - -.ri-record-mail-fill:before { - content: "\f05b"; -} - -.ri-record-mail-line:before { - content: "\f05c"; -} - -.ri-recycle-fill:before { - content: "\f05d"; -} - -.ri-recycle-line:before { - content: "\f05e"; -} - -.ri-red-packet-fill:before { - content: "\f05f"; -} - -.ri-red-packet-line:before { - content: "\f060"; -} - -.ri-reddit-fill:before { - content: "\f061"; -} - -.ri-reddit-line:before { - content: "\f062"; -} - -.ri-refresh-fill:before { - content: "\f063"; -} - -.ri-refresh-line:before { - content: "\f064"; -} - -.ri-refund-2-fill:before { - content: "\f065"; -} - -.ri-refund-2-line:before { - content: "\f066"; -} - -.ri-refund-fill:before { - content: "\f067"; -} - -.ri-refund-line:before { - content: "\f068"; -} - -.ri-registered-fill:before { - content: "\f069"; -} - -.ri-registered-line:before { - content: "\f06a"; -} - -.ri-remixicon-fill:before { - content: "\f06b"; -} - -.ri-remixicon-line:before { - content: "\f06c"; -} - -.ri-remote-control-2-fill:before { - content: "\f06d"; -} - -.ri-remote-control-2-line:before { - content: "\f06e"; -} - -.ri-remote-control-fill:before { - content: "\f06f"; -} - -.ri-remote-control-line:before { - content: "\f070"; -} - -.ri-repeat-2-fill:before { - content: "\f071"; -} - -.ri-repeat-2-line:before { - content: "\f072"; -} - -.ri-repeat-fill:before { - content: "\f073"; -} - -.ri-repeat-line:before { - content: "\f074"; -} - -.ri-repeat-one-fill:before { - content: "\f075"; -} - -.ri-repeat-one-line:before { - content: "\f076"; -} - -.ri-reply-all-fill:before { - content: "\f077"; -} - -.ri-reply-all-line:before { - content: "\f078"; -} - -.ri-reply-fill:before { - content: "\f079"; -} - -.ri-reply-line:before { - content: "\f07a"; -} - -.ri-reserved-fill:before { - content: "\f07b"; -} - -.ri-reserved-line:before { - content: "\f07c"; -} - -.ri-rest-time-fill:before { - content: "\f07d"; -} - -.ri-rest-time-line:before { - content: "\f07e"; -} - -.ri-restart-fill:before { - content: "\f07f"; -} - -.ri-restart-line:before { - content: "\f080"; -} - -.ri-restaurant-2-fill:before { - content: "\f081"; -} - -.ri-restaurant-2-line:before { - content: "\f082"; -} - -.ri-restaurant-fill:before { - content: "\f083"; -} - -.ri-restaurant-line:before { - content: "\f084"; -} - -.ri-rewind-fill:before { - content: "\f085"; -} - -.ri-rewind-line:before { - content: "\f086"; -} - -.ri-rewind-mini-fill:before { - content: "\f087"; -} - -.ri-rewind-mini-line:before { - content: "\f088"; -} - -.ri-rhythm-fill:before { - content: "\f089"; -} - -.ri-rhythm-line:before { - content: "\f08a"; -} - -.ri-riding-fill:before { - content: "\f08b"; -} - -.ri-riding-line:before { - content: "\f08c"; -} - -.ri-road-map-fill:before { - content: "\f08d"; -} - -.ri-road-map-line:before { - content: "\f08e"; -} - -.ri-roadster-fill:before { - content: "\f08f"; -} - -.ri-roadster-line:before { - content: "\f090"; -} - -.ri-robot-fill:before { - content: "\f091"; -} - -.ri-robot-line:before { - content: "\f092"; -} - -.ri-rocket-2-fill:before { - content: "\f093"; -} - -.ri-rocket-2-line:before { - content: "\f094"; -} - -.ri-rocket-fill:before { - content: "\f095"; -} - -.ri-rocket-line:before { - content: "\f096"; -} - -.ri-rotate-lock-fill:before { - content: "\f097"; -} - -.ri-rotate-lock-line:before { - content: "\f098"; -} - -.ri-rounded-corner:before { - content: "\f099"; -} - -.ri-route-fill:before { - content: "\f09a"; -} - -.ri-route-line:before { - content: "\f09b"; -} - -.ri-router-fill:before { - content: "\f09c"; -} - -.ri-router-line:before { - content: "\f09d"; -} - -.ri-rss-fill:before { - content: "\f09e"; -} - -.ri-rss-line:before { - content: "\f09f"; -} - -.ri-ruler-2-fill:before { - content: "\f0a0"; -} - -.ri-ruler-2-line:before { - content: "\f0a1"; -} - -.ri-ruler-fill:before { - content: "\f0a2"; -} - -.ri-ruler-line:before { - content: "\f0a3"; -} - -.ri-run-fill:before { - content: "\f0a4"; -} - -.ri-run-line:before { - content: "\f0a5"; -} - -.ri-safari-fill:before { - content: "\f0a6"; -} - -.ri-safari-line:before { - content: "\f0a7"; -} - -.ri-safe-2-fill:before { - content: "\f0a8"; -} - -.ri-safe-2-line:before { - content: "\f0a9"; -} - -.ri-safe-fill:before { - content: "\f0aa"; -} - -.ri-safe-line:before { - content: "\f0ab"; -} - -.ri-sailboat-fill:before { - content: "\f0ac"; -} - -.ri-sailboat-line:before { - content: "\f0ad"; -} - -.ri-save-2-fill:before { - content: "\f0ae"; -} - -.ri-save-2-line:before { - content: "\f0af"; -} - -.ri-save-3-fill:before { - content: "\f0b0"; -} - -.ri-save-3-line:before { - content: "\f0b1"; -} - -.ri-save-fill:before { - content: "\f0b2"; -} - -.ri-save-line:before { - content: "\f0b3"; -} - -.ri-scales-2-fill:before { - content: "\f0b4"; -} - -.ri-scales-2-line:before { - content: "\f0b5"; -} - -.ri-scales-3-fill:before { - content: "\f0b6"; -} - -.ri-scales-3-line:before { - content: "\f0b7"; -} - -.ri-scales-fill:before { - content: "\f0b8"; -} - -.ri-scales-line:before { - content: "\f0b9"; -} - -.ri-scan-2-fill:before { - content: "\f0ba"; -} - -.ri-scan-2-line:before { - content: "\f0bb"; -} - -.ri-scan-fill:before { - content: "\f0bc"; -} - -.ri-scan-line:before { - content: "\f0bd"; -} - -.ri-scissors-2-fill:before { - content: "\f0be"; -} - -.ri-scissors-2-line:before { - content: "\f0bf"; -} - -.ri-scissors-cut-fill:before { - content: "\f0c0"; -} - -.ri-scissors-cut-line:before { - content: "\f0c1"; -} - -.ri-scissors-fill:before { - content: "\f0c2"; -} - -.ri-scissors-line:before { - content: "\f0c3"; -} - -.ri-screenshot-2-fill:before { - content: "\f0c4"; -} - -.ri-screenshot-2-line:before { - content: "\f0c5"; -} - -.ri-screenshot-fill:before { - content: "\f0c6"; -} - -.ri-screenshot-line:before { - content: "\f0c7"; -} - -.ri-sd-card-fill:before { - content: "\f0c8"; -} - -.ri-sd-card-line:before { - content: "\f0c9"; -} - -.ri-sd-card-mini-fill:before { - content: "\f0ca"; -} - -.ri-sd-card-mini-line:before { - content: "\f0cb"; -} - -.ri-search-2-fill:before { - content: "\f0cc"; -} - -.ri-search-2-line:before { - content: "\f0cd"; -} - -.ri-search-eye-fill:before { - content: "\f0ce"; -} - -.ri-search-eye-line:before { - content: "\f0cf"; -} - -.ri-search-fill:before { - content: "\f0d0"; -} - -.ri-search-line:before { - content: "\f0d1"; -} - -.ri-secure-payment-fill:before { - content: "\f0d2"; -} - -.ri-secure-payment-line:before { - content: "\f0d3"; -} - -.ri-seedling-fill:before { - content: "\f0d4"; -} - -.ri-seedling-line:before { - content: "\f0d5"; -} - -.ri-send-backward:before { - content: "\f0d6"; -} - -.ri-send-plane-2-fill:before { - content: "\f0d7"; -} - -.ri-send-plane-2-line:before { - content: "\f0d8"; -} - -.ri-send-plane-fill:before { - content: "\f0d9"; -} - -.ri-send-plane-line:before { - content: "\f0da"; -} - -.ri-send-to-back:before { - content: "\f0db"; -} - -.ri-sensor-fill:before { - content: "\f0dc"; -} - -.ri-sensor-line:before { - content: "\f0dd"; -} - -.ri-separator:before { - content: "\f0de"; -} - -.ri-server-fill:before { - content: "\f0df"; -} - -.ri-server-line:before { - content: "\f0e0"; -} - -.ri-service-fill:before { - content: "\f0e1"; -} - -.ri-service-line:before { - content: "\f0e2"; -} - -.ri-settings-2-fill:before { - content: "\f0e3"; -} - -.ri-settings-2-line:before { - content: "\f0e4"; -} - -.ri-settings-3-fill:before { - content: "\f0e5"; -} - -.ri-settings-3-line:before { - content: "\f0e6"; -} - -.ri-settings-4-fill:before { - content: "\f0e7"; -} - -.ri-settings-4-line:before { - content: "\f0e8"; -} - -.ri-settings-5-fill:before { - content: "\f0e9"; -} - -.ri-settings-5-line:before { - content: "\f0ea"; -} - -.ri-settings-6-fill:before { - content: "\f0eb"; -} - -.ri-settings-6-line:before { - content: "\f0ec"; -} - -.ri-settings-fill:before { - content: "\f0ed"; -} - -.ri-settings-line:before { - content: "\f0ee"; -} - -.ri-shape-2-fill:before { - content: "\f0ef"; -} - -.ri-shape-2-line:before { - content: "\f0f0"; -} - -.ri-shape-fill:before { - content: "\f0f1"; -} - -.ri-shape-line:before { - content: "\f0f2"; -} - -.ri-share-box-fill:before { - content: "\f0f3"; -} - -.ri-share-box-line:before { - content: "\f0f4"; -} - -.ri-share-circle-fill:before { - content: "\f0f5"; -} - -.ri-share-circle-line:before { - content: "\f0f6"; -} - -.ri-share-fill:before { - content: "\f0f7"; -} - -.ri-share-forward-2-fill:before { - content: "\f0f8"; -} - -.ri-share-forward-2-line:before { - content: "\f0f9"; -} - -.ri-share-forward-box-fill:before { - content: "\f0fa"; -} - -.ri-share-forward-box-line:before { - content: "\f0fb"; -} - -.ri-share-forward-fill:before { - content: "\f0fc"; -} - -.ri-share-forward-line:before { - content: "\f0fd"; -} - -.ri-share-line:before { - content: "\f0fe"; -} - -.ri-shield-check-fill:before { - content: "\f0ff"; -} - -.ri-shield-check-line:before { - content: "\f100"; -} - -.ri-shield-cross-fill:before { - content: "\f101"; -} - -.ri-shield-cross-line:before { - content: "\f102"; -} - -.ri-shield-fill:before { - content: "\f103"; -} - -.ri-shield-flash-fill:before { - content: "\f104"; -} - -.ri-shield-flash-line:before { - content: "\f105"; -} - -.ri-shield-keyhole-fill:before { - content: "\f106"; -} - -.ri-shield-keyhole-line:before { - content: "\f107"; -} - -.ri-shield-line:before { - content: "\f108"; -} - -.ri-shield-star-fill:before { - content: "\f109"; -} - -.ri-shield-star-line:before { - content: "\f10a"; -} - -.ri-shield-user-fill:before { - content: "\f10b"; -} - -.ri-shield-user-line:before { - content: "\f10c"; -} - -.ri-ship-2-fill:before { - content: "\f10d"; -} - -.ri-ship-2-line:before { - content: "\f10e"; -} - -.ri-ship-fill:before { - content: "\f10f"; -} - -.ri-ship-line:before { - content: "\f110"; -} - -.ri-shirt-fill:before { - content: "\f111"; -} - -.ri-shirt-line:before { - content: "\f112"; -} - -.ri-shopping-bag-2-fill:before { - content: "\f113"; -} - -.ri-shopping-bag-2-line:before { - content: "\f114"; -} - -.ri-shopping-bag-3-fill:before { - content: "\f115"; -} - -.ri-shopping-bag-3-line:before { - content: "\f116"; -} - -.ri-shopping-bag-fill:before { - content: "\f117"; -} - -.ri-shopping-bag-line:before { - content: "\f118"; -} - -.ri-shopping-basket-2-fill:before { - content: "\f119"; -} - -.ri-shopping-basket-2-line:before { - content: "\f11a"; -} - -.ri-shopping-basket-fill:before { - content: "\f11b"; -} - -.ri-shopping-basket-line:before { - content: "\f11c"; -} - -.ri-shopping-cart-2-fill:before { - content: "\f11d"; -} - -.ri-shopping-cart-2-line:before { - content: "\f11e"; -} - -.ri-shopping-cart-fill:before { - content: "\f11f"; -} - -.ri-shopping-cart-line:before { - content: "\f120"; -} - -.ri-showers-fill:before { - content: "\f121"; -} - -.ri-showers-line:before { - content: "\f122"; -} - -.ri-shuffle-fill:before { - content: "\f123"; -} - -.ri-shuffle-line:before { - content: "\f124"; -} - -.ri-shut-down-fill:before { - content: "\f125"; -} - -.ri-shut-down-line:before { - content: "\f126"; -} - -.ri-side-bar-fill:before { - content: "\f127"; -} - -.ri-side-bar-line:before { - content: "\f128"; -} - -.ri-signal-tower-fill:before { - content: "\f129"; -} - -.ri-signal-tower-line:before { - content: "\f12a"; -} - -.ri-signal-wifi-1-fill:before { - content: "\f12b"; -} - -.ri-signal-wifi-1-line:before { - content: "\f12c"; -} - -.ri-signal-wifi-2-fill:before { - content: "\f12d"; -} - -.ri-signal-wifi-2-line:before { - content: "\f12e"; -} - -.ri-signal-wifi-3-fill:before { - content: "\f12f"; -} - -.ri-signal-wifi-3-line:before { - content: "\f130"; -} - -.ri-signal-wifi-error-fill:before { - content: "\f131"; -} - -.ri-signal-wifi-error-line:before { - content: "\f132"; -} - -.ri-signal-wifi-fill:before { - content: "\f133"; -} - -.ri-signal-wifi-line:before { - content: "\f134"; -} - -.ri-signal-wifi-off-fill:before { - content: "\f135"; -} - -.ri-signal-wifi-off-line:before { - content: "\f136"; -} - -.ri-sim-card-2-fill:before { - content: "\f137"; -} - -.ri-sim-card-2-line:before { - content: "\f138"; -} - -.ri-sim-card-fill:before { - content: "\f139"; -} - -.ri-sim-card-line:before { - content: "\f13a"; -} - -.ri-single-quotes-l:before { - content: "\f13b"; -} - -.ri-single-quotes-r:before { - content: "\f13c"; -} - -.ri-sip-fill:before { - content: "\f13d"; -} - -.ri-sip-line:before { - content: "\f13e"; -} - -.ri-skip-back-fill:before { - content: "\f13f"; -} - -.ri-skip-back-line:before { - content: "\f140"; -} - -.ri-skip-back-mini-fill:before { - content: "\f141"; -} - -.ri-skip-back-mini-line:before { - content: "\f142"; -} - -.ri-skip-forward-fill:before { - content: "\f143"; -} - -.ri-skip-forward-line:before { - content: "\f144"; -} - -.ri-skip-forward-mini-fill:before { - content: "\f145"; -} - -.ri-skip-forward-mini-line:before { - content: "\f146"; -} - -.ri-skull-2-fill:before { - content: "\f147"; -} - -.ri-skull-2-line:before { - content: "\f148"; -} - -.ri-skull-fill:before { - content: "\f149"; -} - -.ri-skull-line:before { - content: "\f14a"; -} - -.ri-skype-fill:before { - content: "\f14b"; -} - -.ri-skype-line:before { - content: "\f14c"; -} - -.ri-slack-fill:before { - content: "\f14d"; -} - -.ri-slack-line:before { - content: "\f14e"; -} - -.ri-slice-fill:before { - content: "\f14f"; -} - -.ri-slice-line:before { - content: "\f150"; -} - -.ri-slideshow-2-fill:before { - content: "\f151"; -} - -.ri-slideshow-2-line:before { - content: "\f152"; -} - -.ri-slideshow-3-fill:before { - content: "\f153"; -} - -.ri-slideshow-3-line:before { - content: "\f154"; -} - -.ri-slideshow-4-fill:before { - content: "\f155"; -} - -.ri-slideshow-4-line:before { - content: "\f156"; -} - -.ri-slideshow-fill:before { - content: "\f157"; -} - -.ri-slideshow-line:before { - content: "\f158"; -} - -.ri-smartphone-fill:before { - content: "\f159"; -} - -.ri-smartphone-line:before { - content: "\f15a"; -} - -.ri-snapchat-fill:before { - content: "\f15b"; -} - -.ri-snapchat-line:before { - content: "\f15c"; -} - -.ri-snowy-fill:before { - content: "\f15d"; -} - -.ri-snowy-line:before { - content: "\f15e"; -} - -.ri-sort-asc:before { - content: "\f15f"; -} - -.ri-sort-desc:before { - content: "\f160"; -} - -.ri-sound-module-fill:before { - content: "\f161"; -} - -.ri-sound-module-line:before { - content: "\f162"; -} - -.ri-soundcloud-fill:before { - content: "\f163"; -} - -.ri-soundcloud-line:before { - content: "\f164"; -} - -.ri-space-ship-fill:before { - content: "\f165"; -} - -.ri-space-ship-line:before { - content: "\f166"; -} - -.ri-space:before { - content: "\f167"; -} - -.ri-spam-2-fill:before { - content: "\f168"; -} - -.ri-spam-2-line:before { - content: "\f169"; -} - -.ri-spam-3-fill:before { - content: "\f16a"; -} - -.ri-spam-3-line:before { - content: "\f16b"; -} - -.ri-spam-fill:before { - content: "\f16c"; -} - -.ri-spam-line:before { - content: "\f16d"; -} - -.ri-speaker-2-fill:before { - content: "\f16e"; -} - -.ri-speaker-2-line:before { - content: "\f16f"; -} - -.ri-speaker-3-fill:before { - content: "\f170"; -} - -.ri-speaker-3-line:before { - content: "\f171"; -} - -.ri-speaker-fill:before { - content: "\f172"; -} - -.ri-speaker-line:before { - content: "\f173"; -} - -.ri-spectrum-fill:before { - content: "\f174"; -} - -.ri-spectrum-line:before { - content: "\f175"; -} - -.ri-speed-fill:before { - content: "\f176"; -} - -.ri-speed-line:before { - content: "\f177"; -} - -.ri-speed-mini-fill:before { - content: "\f178"; -} - -.ri-speed-mini-line:before { - content: "\f179"; -} - -.ri-split-cells-horizontal:before { - content: "\f17a"; -} - -.ri-split-cells-vertical:before { - content: "\f17b"; -} - -.ri-spotify-fill:before { - content: "\f17c"; -} - -.ri-spotify-line:before { - content: "\f17d"; -} - -.ri-spy-fill:before { - content: "\f17e"; -} - -.ri-spy-line:before { - content: "\f17f"; -} - -.ri-stack-fill:before { - content: "\f180"; -} - -.ri-stack-line:before { - content: "\f181"; -} - -.ri-stack-overflow-fill:before { - content: "\f182"; -} - -.ri-stack-overflow-line:before { - content: "\f183"; -} - -.ri-stackshare-fill:before { - content: "\f184"; -} - -.ri-stackshare-line:before { - content: "\f185"; -} - -.ri-star-fill:before { - content: "\f186"; -} - -.ri-star-half-fill:before { - content: "\f187"; -} - -.ri-star-half-line:before { - content: "\f188"; -} - -.ri-star-half-s-fill:before { - content: "\f189"; -} - -.ri-star-half-s-line:before { - content: "\f18a"; -} - -.ri-star-line:before { - content: "\f18b"; -} - -.ri-star-s-fill:before { - content: "\f18c"; -} - -.ri-star-s-line:before { - content: "\f18d"; -} - -.ri-star-smile-fill:before { - content: "\f18e"; -} - -.ri-star-smile-line:before { - content: "\f18f"; -} - -.ri-steam-fill:before { - content: "\f190"; -} - -.ri-steam-line:before { - content: "\f191"; -} - -.ri-steering-2-fill:before { - content: "\f192"; -} - -.ri-steering-2-line:before { - content: "\f193"; -} - -.ri-steering-fill:before { - content: "\f194"; -} - -.ri-steering-line:before { - content: "\f195"; -} - -.ri-stethoscope-fill:before { - content: "\f196"; -} - -.ri-stethoscope-line:before { - content: "\f197"; -} - -.ri-sticky-note-2-fill:before { - content: "\f198"; -} - -.ri-sticky-note-2-line:before { - content: "\f199"; -} - -.ri-sticky-note-fill:before { - content: "\f19a"; -} - -.ri-sticky-note-line:before { - content: "\f19b"; -} - -.ri-stock-fill:before { - content: "\f19c"; -} - -.ri-stock-line:before { - content: "\f19d"; -} - -.ri-stop-circle-fill:before { - content: "\f19e"; -} - -.ri-stop-circle-line:before { - content: "\f19f"; -} - -.ri-stop-fill:before { - content: "\f1a0"; -} - -.ri-stop-line:before { - content: "\f1a1"; -} - -.ri-stop-mini-fill:before { - content: "\f1a2"; -} - -.ri-stop-mini-line:before { - content: "\f1a3"; -} - -.ri-store-2-fill:before { - content: "\f1a4"; -} - -.ri-store-2-line:before { - content: "\f1a5"; -} - -.ri-store-3-fill:before { - content: "\f1a6"; -} - -.ri-store-3-line:before { - content: "\f1a7"; -} - -.ri-store-fill:before { - content: "\f1a8"; -} - -.ri-store-line:before { - content: "\f1a9"; -} - -.ri-strikethrough-2:before { - content: "\f1aa"; -} - -.ri-strikethrough:before { - content: "\f1ab"; -} - -.ri-subscript-2:before { - content: "\f1ac"; -} - -.ri-subscript:before { - content: "\f1ad"; -} - -.ri-subtract-fill:before { - content: "\f1ae"; -} - -.ri-subtract-line:before { - content: "\f1af"; -} - -.ri-subway-fill:before { - content: "\f1b0"; -} - -.ri-subway-line:before { - content: "\f1b1"; -} - -.ri-subway-wifi-fill:before { - content: "\f1b2"; -} - -.ri-subway-wifi-line:before { - content: "\f1b3"; -} - -.ri-suitcase-2-fill:before { - content: "\f1b4"; -} - -.ri-suitcase-2-line:before { - content: "\f1b5"; -} - -.ri-suitcase-3-fill:before { - content: "\f1b6"; -} - -.ri-suitcase-3-line:before { - content: "\f1b7"; -} - -.ri-suitcase-fill:before { - content: "\f1b8"; -} - -.ri-suitcase-line:before { - content: "\f1b9"; -} - -.ri-sun-cloudy-fill:before { - content: "\f1ba"; -} - -.ri-sun-cloudy-line:before { - content: "\f1bb"; -} - -.ri-sun-fill:before { - content: "\f1bc"; -} - -.ri-sun-foggy-fill:before { - content: "\f1bd"; -} - -.ri-sun-foggy-line:before { - content: "\f1be"; -} - -.ri-sun-line:before { - content: "\f1bf"; -} - -.ri-superscript-2:before { - content: "\f1c0"; -} - -.ri-superscript:before { - content: "\f1c1"; -} - -.ri-surgical-mask-fill:before { - content: "\f1c2"; -} - -.ri-surgical-mask-line:before { - content: "\f1c3"; -} - -.ri-surround-sound-fill:before { - content: "\f1c4"; -} - -.ri-surround-sound-line:before { - content: "\f1c5"; -} - -.ri-survey-fill:before { - content: "\f1c6"; -} - -.ri-survey-line:before { - content: "\f1c7"; -} - -.ri-swap-box-fill:before { - content: "\f1c8"; -} - -.ri-swap-box-line:before { - content: "\f1c9"; -} - -.ri-swap-fill:before { - content: "\f1ca"; -} - -.ri-swap-line:before { - content: "\f1cb"; -} - -.ri-switch-fill:before { - content: "\f1cc"; -} - -.ri-switch-line:before { - content: "\f1cd"; -} - -.ri-sword-fill:before { - content: "\f1ce"; -} - -.ri-sword-line:before { - content: "\f1cf"; -} - -.ri-syringe-fill:before { - content: "\f1d0"; -} - -.ri-syringe-line:before { - content: "\f1d1"; -} - -.ri-t-box-fill:before { - content: "\f1d2"; -} - -.ri-t-box-line:before { - content: "\f1d3"; -} - -.ri-t-shirt-2-fill:before { - content: "\f1d4"; -} - -.ri-t-shirt-2-line:before { - content: "\f1d5"; -} - -.ri-t-shirt-air-fill:before { - content: "\f1d6"; -} - -.ri-t-shirt-air-line:before { - content: "\f1d7"; -} - -.ri-t-shirt-fill:before { - content: "\f1d8"; -} - -.ri-t-shirt-line:before { - content: "\f1d9"; -} - -.ri-table-2:before { - content: "\f1da"; -} - -.ri-table-alt-fill:before { - content: "\f1db"; -} - -.ri-table-alt-line:before { - content: "\f1dc"; -} - -.ri-table-fill:before { - content: "\f1dd"; -} - -.ri-table-line:before { - content: "\f1de"; -} - -.ri-tablet-fill:before { - content: "\f1df"; -} - -.ri-tablet-line:before { - content: "\f1e0"; -} - -.ri-takeaway-fill:before { - content: "\f1e1"; -} - -.ri-takeaway-line:before { - content: "\f1e2"; -} - -.ri-taobao-fill:before { - content: "\f1e3"; -} - -.ri-taobao-line:before { - content: "\f1e4"; -} - -.ri-tape-fill:before { - content: "\f1e5"; -} - -.ri-tape-line:before { - content: "\f1e6"; -} - -.ri-task-fill:before { - content: "\f1e7"; -} - -.ri-task-line:before { - content: "\f1e8"; -} - -.ri-taxi-fill:before { - content: "\f1e9"; -} - -.ri-taxi-line:before { - content: "\f1ea"; -} - -.ri-taxi-wifi-fill:before { - content: "\f1eb"; -} - -.ri-taxi-wifi-line:before { - content: "\f1ec"; -} - -.ri-team-fill:before { - content: "\f1ed"; -} - -.ri-team-line:before { - content: "\f1ee"; -} - -.ri-telegram-fill:before { - content: "\f1ef"; -} - -.ri-telegram-line:before { - content: "\f1f0"; -} - -.ri-temp-cold-fill:before { - content: "\f1f1"; -} - -.ri-temp-cold-line:before { - content: "\f1f2"; -} - -.ri-temp-hot-fill:before { - content: "\f1f3"; -} - -.ri-temp-hot-line:before { - content: "\f1f4"; -} - -.ri-terminal-box-fill:before { - content: "\f1f5"; -} - -.ri-terminal-box-line:before { - content: "\f1f6"; -} - -.ri-terminal-fill:before { - content: "\f1f7"; -} - -.ri-terminal-line:before { - content: "\f1f8"; -} - -.ri-terminal-window-fill:before { - content: "\f1f9"; -} - -.ri-terminal-window-line:before { - content: "\f1fa"; -} - -.ri-test-tube-fill:before { - content: "\f1fb"; -} - -.ri-test-tube-line:before { - content: "\f1fc"; -} - -.ri-text-direction-l:before { - content: "\f1fd"; -} - -.ri-text-direction-r:before { - content: "\f1fe"; -} - -.ri-text-spacing:before { - content: "\f1ff"; -} - -.ri-text-wrap:before { - content: "\f200"; -} - -.ri-text:before { - content: "\f201"; -} - -.ri-thermometer-fill:before { - content: "\f202"; -} - -.ri-thermometer-line:before { - content: "\f203"; -} - -.ri-thumb-down-fill:before { - content: "\f204"; -} - -.ri-thumb-down-line:before { - content: "\f205"; -} - -.ri-thumb-up-fill:before { - content: "\f206"; -} - -.ri-thumb-up-line:before { - content: "\f207"; -} - -.ri-thunderstorms-fill:before { - content: "\f208"; -} - -.ri-thunderstorms-line:before { - content: "\f209"; -} - -.ri-ticket-2-fill:before { - content: "\f20a"; -} - -.ri-ticket-2-line:before { - content: "\f20b"; -} - -.ri-ticket-fill:before { - content: "\f20c"; -} - -.ri-ticket-line:before { - content: "\f20d"; -} - -.ri-time-fill:before { - content: "\f20e"; -} - -.ri-time-line:before { - content: "\f20f"; -} - -.ri-timer-2-fill:before { - content: "\f210"; -} - -.ri-timer-2-line:before { - content: "\f211"; -} - -.ri-timer-fill:before { - content: "\f212"; -} - -.ri-timer-flash-fill:before { - content: "\f213"; -} - -.ri-timer-flash-line:before { - content: "\f214"; -} - -.ri-timer-line:before { - content: "\f215"; -} - -.ri-todo-fill:before { - content: "\f216"; -} - -.ri-todo-line:before { - content: "\f217"; -} - -.ri-toggle-fill:before { - content: "\f218"; -} - -.ri-toggle-line:before { - content: "\f219"; -} - -.ri-tools-fill:before { - content: "\f21a"; -} - -.ri-tools-line:before { - content: "\f21b"; -} - -.ri-tornado-fill:before { - content: "\f21c"; -} - -.ri-tornado-line:before { - content: "\f21d"; -} - -.ri-trademark-fill:before { - content: "\f21e"; -} - -.ri-trademark-line:before { - content: "\f21f"; -} - -.ri-traffic-light-fill:before { - content: "\f220"; -} - -.ri-traffic-light-line:before { - content: "\f221"; -} - -.ri-train-fill:before { - content: "\f222"; -} - -.ri-train-line:before { - content: "\f223"; -} - -.ri-train-wifi-fill:before { - content: "\f224"; -} - -.ri-train-wifi-line:before { - content: "\f225"; -} - -.ri-translate-2:before { - content: "\f226"; -} - -.ri-translate:before { - content: "\f227"; -} - -.ri-travesti-fill:before { - content: "\f228"; -} - -.ri-travesti-line:before { - content: "\f229"; -} - -.ri-treasure-map-fill:before { - content: "\f22a"; -} - -.ri-treasure-map-line:before { - content: "\f22b"; -} - -.ri-trello-fill:before { - content: "\f22c"; -} - -.ri-trello-line:before { - content: "\f22d"; -} - -.ri-trophy-fill:before { - content: "\f22e"; -} - -.ri-trophy-line:before { - content: "\f22f"; -} - -.ri-truck-fill:before { - content: "\f230"; -} - -.ri-truck-line:before { - content: "\f231"; -} - -.ri-tumblr-fill:before { - content: "\f232"; -} - -.ri-tumblr-line:before { - content: "\f233"; -} - -.ri-tv-2-fill:before { - content: "\f234"; -} - -.ri-tv-2-line:before { - content: "\f235"; -} - -.ri-tv-fill:before { - content: "\f236"; -} - -.ri-tv-line:before { - content: "\f237"; -} - -.ri-twitch-fill:before { - content: "\f238"; -} - -.ri-twitch-line:before { - content: "\f239"; -} - -.ri-twitter-fill:before { - content: "\f23a"; -} - -.ri-twitter-line:before { - content: "\f23b"; -} - -.ri-typhoon-fill:before { - content: "\f23c"; -} - -.ri-typhoon-line:before { - content: "\f23d"; -} - -.ri-u-disk-fill:before { - content: "\f23e"; -} - -.ri-u-disk-line:before { - content: "\f23f"; -} - -.ri-ubuntu-fill:before { - content: "\f240"; -} - -.ri-ubuntu-line:before { - content: "\f241"; -} - -.ri-umbrella-fill:before { - content: "\f242"; -} - -.ri-umbrella-line:before { - content: "\f243"; -} - -.ri-underline:before { - content: "\f244"; -} - -.ri-uninstall-fill:before { - content: "\f245"; -} - -.ri-uninstall-line:before { - content: "\f246"; -} - -.ri-unsplash-fill:before { - content: "\f247"; -} - -.ri-unsplash-line:before { - content: "\f248"; -} - -.ri-upload-2-fill:before { - content: "\f249"; -} - -.ri-upload-2-line:before { - content: "\f24a"; -} - -.ri-upload-cloud-2-fill:before { - content: "\f24b"; -} - -.ri-upload-cloud-2-line:before { - content: "\f24c"; -} - -.ri-upload-cloud-fill:before { - content: "\f24d"; -} - -.ri-upload-cloud-line:before { - content: "\f24e"; -} - -.ri-upload-fill:before { - content: "\f24f"; -} - -.ri-upload-line:before { - content: "\f250"; -} - -.ri-usb-fill:before { - content: "\f251"; -} - -.ri-usb-line:before { - content: "\f252"; -} - -.ri-user-2-fill:before { - content: "\f253"; -} - -.ri-user-2-line:before { - content: "\f254"; -} - -.ri-user-3-fill:before { - content: "\f255"; -} - -.ri-user-3-line:before { - content: "\f256"; -} - -.ri-user-4-fill:before { - content: "\f257"; -} - -.ri-user-4-line:before { - content: "\f258"; -} - -.ri-user-5-fill:before { - content: "\f259"; -} - -.ri-user-5-line:before { - content: "\f25a"; -} - -.ri-user-6-fill:before { - content: "\f25b"; -} - -.ri-user-6-line:before { - content: "\f25c"; -} - -.ri-user-add-fill:before { - content: "\f25d"; -} - -.ri-user-add-line:before { - content: "\f25e"; -} - -.ri-user-fill:before { - content: "\f25f"; -} - -.ri-user-follow-fill:before { - content: "\f260"; -} - -.ri-user-follow-line:before { - content: "\f261"; -} - -.ri-user-heart-fill:before { - content: "\f262"; -} - -.ri-user-heart-line:before { - content: "\f263"; -} - -.ri-user-line:before { - content: "\f264"; -} - -.ri-user-location-fill:before { - content: "\f265"; -} - -.ri-user-location-line:before { - content: "\f266"; -} - -.ri-user-received-2-fill:before { - content: "\f267"; -} - -.ri-user-received-2-line:before { - content: "\f268"; -} - -.ri-user-received-fill:before { - content: "\f269"; -} - -.ri-user-received-line:before { - content: "\f26a"; -} - -.ri-user-search-fill:before { - content: "\f26b"; -} - -.ri-user-search-line:before { - content: "\f26c"; -} - -.ri-user-settings-fill:before { - content: "\f26d"; -} - -.ri-user-settings-line:before { - content: "\f26e"; -} - -.ri-user-shared-2-fill:before { - content: "\f26f"; -} - -.ri-user-shared-2-line:before { - content: "\f270"; -} - -.ri-user-shared-fill:before { - content: "\f271"; -} - -.ri-user-shared-line:before { - content: "\f272"; -} - -.ri-user-smile-fill:before { - content: "\f273"; -} - -.ri-user-smile-line:before { - content: "\f274"; -} - -.ri-user-star-fill:before { - content: "\f275"; -} - -.ri-user-star-line:before { - content: "\f276"; -} - -.ri-user-unfollow-fill:before { - content: "\f277"; -} - -.ri-user-unfollow-line:before { - content: "\f278"; -} - -.ri-user-voice-fill:before { - content: "\f279"; -} - -.ri-user-voice-line:before { - content: "\f27a"; -} - -.ri-video-add-fill:before { - content: "\f27b"; -} - -.ri-video-add-line:before { - content: "\f27c"; -} - -.ri-video-chat-fill:before { - content: "\f27d"; -} - -.ri-video-chat-line:before { - content: "\f27e"; -} - -.ri-video-download-fill:before { - content: "\f27f"; -} - -.ri-video-download-line:before { - content: "\f280"; -} - -.ri-video-fill:before { - content: "\f281"; -} - -.ri-video-line:before { - content: "\f282"; -} - -.ri-video-upload-fill:before { - content: "\f283"; -} - -.ri-video-upload-line:before { - content: "\f284"; -} - -.ri-vidicon-2-fill:before { - content: "\f285"; -} - -.ri-vidicon-2-line:before { - content: "\f286"; -} - -.ri-vidicon-fill:before { - content: "\f287"; -} - -.ri-vidicon-line:before { - content: "\f288"; -} - -.ri-vimeo-fill:before { - content: "\f289"; -} - -.ri-vimeo-line:before { - content: "\f28a"; -} - -.ri-vip-crown-2-fill:before { - content: "\f28b"; -} - -.ri-vip-crown-2-line:before { - content: "\f28c"; -} - -.ri-vip-crown-fill:before { - content: "\f28d"; -} - -.ri-vip-crown-line:before { - content: "\f28e"; -} - -.ri-vip-diamond-fill:before { - content: "\f28f"; -} - -.ri-vip-diamond-line:before { - content: "\f290"; -} - -.ri-vip-fill:before { - content: "\f291"; -} - -.ri-vip-line:before { - content: "\f292"; -} - -.ri-virus-fill:before { - content: "\f293"; -} - -.ri-virus-line:before { - content: "\f294"; -} - -.ri-visa-fill:before { - content: "\f295"; -} - -.ri-visa-line:before { - content: "\f296"; -} - -.ri-voice-recognition-fill:before { - content: "\f297"; -} - -.ri-voice-recognition-line:before { - content: "\f298"; -} - -.ri-voiceprint-fill:before { - content: "\f299"; -} - -.ri-voiceprint-line:before { - content: "\f29a"; -} - -.ri-volume-down-fill:before { - content: "\f29b"; -} - -.ri-volume-down-line:before { - content: "\f29c"; -} - -.ri-volume-mute-fill:before { - content: "\f29d"; -} - -.ri-volume-mute-line:before { - content: "\f29e"; -} - -.ri-volume-off-vibrate-fill:before { - content: "\f29f"; -} - -.ri-volume-off-vibrate-line:before { - content: "\f2a0"; -} - -.ri-volume-up-fill:before { - content: "\f2a1"; -} - -.ri-volume-up-line:before { - content: "\f2a2"; -} - -.ri-volume-vibrate-fill:before { - content: "\f2a3"; -} - -.ri-volume-vibrate-line:before { - content: "\f2a4"; -} - -.ri-vuejs-fill:before { - content: "\f2a5"; -} - -.ri-vuejs-line:before { - content: "\f2a6"; -} - -.ri-walk-fill:before { - content: "\f2a7"; -} - -.ri-walk-line:before { - content: "\f2a8"; -} - -.ri-wallet-2-fill:before { - content: "\f2a9"; -} - -.ri-wallet-2-line:before { - content: "\f2aa"; -} - -.ri-wallet-3-fill:before { - content: "\f2ab"; -} - -.ri-wallet-3-line:before { - content: "\f2ac"; -} - -.ri-wallet-fill:before { - content: "\f2ad"; -} - -.ri-wallet-line:before { - content: "\f2ae"; -} - -.ri-water-flash-fill:before { - content: "\f2af"; -} - -.ri-water-flash-line:before { - content: "\f2b0"; -} - -.ri-webcam-fill:before { - content: "\f2b1"; -} - -.ri-webcam-line:before { - content: "\f2b2"; -} - -.ri-wechat-2-fill:before { - content: "\f2b3"; -} - -.ri-wechat-2-line:before { - content: "\f2b4"; -} - -.ri-wechat-fill:before { - content: "\f2b5"; -} - -.ri-wechat-line:before { - content: "\f2b6"; -} - -.ri-wechat-pay-fill:before { - content: "\f2b7"; -} - -.ri-wechat-pay-line:before { - content: "\f2b8"; -} - -.ri-weibo-fill:before { - content: "\f2b9"; -} - -.ri-weibo-line:before { - content: "\f2ba"; -} - -.ri-whatsapp-fill:before { - content: "\f2bb"; -} - -.ri-whatsapp-line:before { - content: "\f2bc"; -} - -.ri-wheelchair-fill:before { - content: "\f2bd"; -} - -.ri-wheelchair-line:before { - content: "\f2be"; -} - -.ri-wifi-fill:before { - content: "\f2bf"; -} - -.ri-wifi-line:before { - content: "\f2c0"; -} - -.ri-wifi-off-fill:before { - content: "\f2c1"; -} - -.ri-wifi-off-line:before { - content: "\f2c2"; -} - -.ri-window-2-fill:before { - content: "\f2c3"; -} - -.ri-window-2-line:before { - content: "\f2c4"; -} - -.ri-window-fill:before { - content: "\f2c5"; -} - -.ri-window-line:before { - content: "\f2c6"; -} - -.ri-windows-fill:before { - content: "\f2c7"; -} - -.ri-windows-line:before { - content: "\f2c8"; -} - -.ri-windy-fill:before { - content: "\f2c9"; -} - -.ri-windy-line:before { - content: "\f2ca"; -} - -.ri-wireless-charging-fill:before { - content: "\f2cb"; -} - -.ri-wireless-charging-line:before { - content: "\f2cc"; -} - -.ri-women-fill:before { - content: "\f2cd"; -} - -.ri-women-line:before { - content: "\f2ce"; -} - -.ri-wubi-input:before { - content: "\f2cf"; -} - -.ri-xbox-fill:before { - content: "\f2d0"; -} - -.ri-xbox-line:before { - content: "\f2d1"; -} - -.ri-xing-fill:before { - content: "\f2d2"; -} - -.ri-xing-line:before { - content: "\f2d3"; -} - -.ri-youtube-fill:before { - content: "\f2d4"; -} - -.ri-youtube-line:before { - content: "\f2d5"; -} - -.ri-zcool-fill:before { - content: "\f2d6"; -} - -.ri-zcool-line:before { - content: "\f2d7"; -} - -.ri-zhihu-fill:before { - content: "\f2d8"; -} - -.ri-zhihu-line:before { - content: "\f2d9"; -} - -.ri-zoom-in-fill:before { - content: "\f2da"; -} - -.ri-zoom-in-line:before { - content: "\f2db"; -} - -.ri-zoom-out-fill:before { - content: "\f2dc"; -} - -.ri-zoom-out-line:before { - content: "\f2dd"; -} - -.ri-zzz-fill:before { - content: "\f2de"; -} - -.ri-zzz-line:before { - content: "\f2df"; -} - - -/*====================================== - - 03 -- Flaticon - -=======================================*/ \ No newline at end of file diff --git a/desarrollo/diseno/support-center/css/plugins.css b/desarrollo/diseno/support-center/css/plugins.css deleted file mode 100644 index f5278ab5..00000000 --- a/desarrollo/diseno/support-center/css/plugins.css +++ /dev/null @@ -1,8789 +0,0 @@ -/* Template Name: Docuto - Documentation HTML Template - Author: Acavo - Version: 1.0.0 - Created: Oct 2020 - File Description: Plugins Css file of the template -*/ - -/*============================================== -// -// 01 -- Animate.css -// 02 -- Prism JS -// 03 -- Custom Srollbar -// -/*============================================*/ - -/*============================================ - - 01 -- Animate.css - -==============================================*/ - -.animated { - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -.animated.infinite { - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} - -.animated.hinge { - -webkit-animation-duration: 2s; - animation-duration: 2s; -} - -@-webkit-keyframes bounce { - - 0%, - 100%, - 20%, - 50%, - 80% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 40% { - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - - 60% { - -webkit-transform: translateY(-15px); - transform: translateY(-15px); - } -} - -@keyframes bounce { - - 0%, - 100%, - 20%, - 50%, - 80% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 40% { - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - - 60% { - -webkit-transform: translateY(-15px); - transform: translateY(-15px); - } -} - -.bounce { - -webkit-animation-name: bounce; - animation-name: bounce; -} - -@-webkit-keyframes flash { - - 0%, - 100%, - 50% { - opacity: 1; - } - - 25%, - 75% { - opacity: 0; - } -} - -@keyframes flash { - - 0%, - 100%, - 50% { - opacity: 1; - } - - 25%, - 75% { - opacity: 0; - } -} - -.flash { - -webkit-animation-name: flash; - animation-name: flash; -} - -@-webkit-keyframes pulse { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 50% { - -webkit-transform: scale(1.1); - transform: scale(1.1); - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes pulse { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 50% { - -webkit-transform: scale(1.1); - transform: scale(1.1); - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -.pulse { - -webkit-animation-name: pulse; - animation-name: pulse; -} - -@-webkit-keyframes rubberBand { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 30% { - -webkit-transform: scaleX(1.25) scaleY(0.75); - transform: scaleX(1.25) scaleY(0.75); - } - - 40% { - -webkit-transform: scaleX(0.75) scaleY(1.25); - transform: scaleX(0.75) scaleY(1.25); - } - - 60% { - -webkit-transform: scaleX(1.15) scaleY(0.85); - transform: scaleX(1.15) scaleY(0.85); - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes rubberBand { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 30% { - -webkit-transform: scaleX(1.25) scaleY(0.75); - transform: scaleX(1.25) scaleY(0.75); - } - - 40% { - -webkit-transform: scaleX(0.75) scaleY(1.25); - transform: scaleX(0.75) scaleY(1.25); - } - - 60% { - -webkit-transform: scaleX(1.15) scaleY(0.85); - transform: scaleX(1.15) scaleY(0.85); - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - } -} - -.rubberBand { - -webkit-animation-name: rubberBand; - animation-name: rubberBand; -} - -@-webkit-keyframes shake { - - 0%, - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } -} - -@keyframes shake { - - 0%, - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } -} - -.shake { - -webkit-animation-name: shake; - animation-name: shake; -} - -@-webkit-keyframes swing { - 20% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - - 40% { - -webkit-transform: rotate(-10deg); - transform: rotate(-10deg); - } - - 60% { - -webkit-transform: rotate(5deg); - transform: rotate(5deg); - } - - 80% { - -webkit-transform: rotate(-5deg); - transform: rotate(-5deg); - } - - 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } -} - -@keyframes swing { - 20% { - -webkit-transform: rotate(15deg); - transform: rotate(15deg); - } - - 40% { - -webkit-transform: rotate(-10deg); - transform: rotate(-10deg); - } - - 60% { - -webkit-transform: rotate(5deg); - transform: rotate(5deg); - } - - 80% { - -webkit-transform: rotate(-5deg); - transform: rotate(-5deg); - } - - 100% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } -} - -.swing { - -webkit-transform-origin: top center; - transform-origin: top center; - -webkit-animation-name: swing; - animation-name: swing; -} - -@-webkit-keyframes tada { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 10%, - 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } - - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale(1.1) rotate(3deg); - transform: scale(1.1) rotate(3deg); - } - - 40%, - 60%, - 80% { - -webkit-transform: scale(1.1) rotate(-3deg); - transform: scale(1.1) rotate(-3deg); - } - - 100% { - -webkit-transform: scale(1) rotate(0); - transform: scale(1) rotate(0); - } -} - -@keyframes tada { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 10%, - 20% { - -webkit-transform: scale(0.9) rotate(-3deg); - transform: scale(0.9) rotate(-3deg); - } - - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale(1.1) rotate(3deg); - transform: scale(1.1) rotate(3deg); - } - - 40%, - 60%, - 80% { - -webkit-transform: scale(1.1) rotate(-3deg); - transform: scale(1.1) rotate(-3deg); - } - - 100% { - -webkit-transform: scale(1) rotate(0); - transform: scale(1) rotate(0); - } -} - -.tada { - -webkit-animation-name: tada; - animation-name: tada; -} - -@-webkit-keyframes wobble { - 0% { - -webkit-transform: translateX(0%); - transform: translateX(0%); - } - - 15% { - -webkit-transform: translateX(-25%) rotate(-5deg); - transform: translateX(-25%) rotate(-5deg); - } - - 30% { - -webkit-transform: translateX(20%) rotate(3deg); - transform: translateX(20%) rotate(3deg); - } - - 45% { - -webkit-transform: translateX(-15%) rotate(-3deg); - transform: translateX(-15%) rotate(-3deg); - } - - 60% { - -webkit-transform: translateX(10%) rotate(2deg); - transform: translateX(10%) rotate(2deg); - } - - 75% { - -webkit-transform: translateX(-5%) rotate(-1deg); - transform: translateX(-5%) rotate(-1deg); - } - - 100% { - -webkit-transform: translateX(0%); - transform: translateX(0%); - } -} - -@keyframes wobble { - 0% { - -webkit-transform: translateX(0%); - transform: translateX(0%); - } - - 15% { - -webkit-transform: translateX(-25%) rotate(-5deg); - transform: translateX(-25%) rotate(-5deg); - } - - 30% { - -webkit-transform: translateX(20%) rotate(3deg); - transform: translateX(20%) rotate(3deg); - } - - 45% { - -webkit-transform: translateX(-15%) rotate(-3deg); - transform: translateX(-15%) rotate(-3deg); - } - - 60% { - -webkit-transform: translateX(10%) rotate(2deg); - transform: translateX(10%) rotate(2deg); - } - - 75% { - -webkit-transform: translateX(-5%) rotate(-1deg); - transform: translateX(-5%) rotate(-1deg); - } - - 100% { - -webkit-transform: translateX(0%); - transform: translateX(0%); - } -} - -.wobble { - -webkit-animation-name: wobble; - animation-name: wobble; -} - -@-webkit-keyframes bounceIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } - - 50% { - opacity: 1; - -webkit-transform: scale(1.05); - transform: scale(1.05); - } - - 70% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - } - - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} - -@keyframes bounceIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } - - 50% { - opacity: 1; - -webkit-transform: scale(1.05); - transform: scale(1.05); - } - - 70% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - } - - 100% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} - -.bounceIn { - -webkit-animation-name: bounceIn; - animation-name: bounceIn; -} - -@-webkit-keyframes bounceInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - - 60% { - opacity: 1; - -webkit-transform: translateY(30px); - transform: translateY(30px); - } - - 80% { - -webkit-transform: translateY(-10px); - transform: translateY(-10px); - } - - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes bounceInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - - 60% { - opacity: 1; - -webkit-transform: translateY(30px); - transform: translateY(30px); - } - - 80% { - -webkit-transform: translateY(-10px); - transform: translateY(-10px); - } - - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -.bounceInDown { - -webkit-animation-name: bounceInDown; - animation-name: bounceInDown; -} - -@-webkit-keyframes bounceInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - - 60% { - opacity: 1; - -webkit-transform: translateX(30px); - transform: translateX(30px); - } - - 80% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes bounceInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - - 60% { - opacity: 1; - -webkit-transform: translateX(30px); - transform: translateX(30px); - } - - 80% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -.bounceInLeft { - -webkit-animation-name: bounceInLeft; - animation-name: bounceInLeft; -} - -@-webkit-keyframes bounceInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - - 60% { - opacity: 1; - -webkit-transform: translateX(-30px); - transform: translateX(-30px); - } - - 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } - - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes bounceInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - - 60% { - opacity: 1; - -webkit-transform: translateX(-30px); - transform: translateX(-30px); - } - - 80% { - -webkit-transform: translateX(10px); - transform: translateX(10px); - } - - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -.bounceInRight { - -webkit-animation-name: bounceInRight; - animation-name: bounceInRight; -} - -@-webkit-keyframes bounceInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - - 60% { - opacity: 1; - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - - 80% { - -webkit-transform: translateY(10px); - transform: translateY(10px); - } - - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes bounceInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - - 60% { - opacity: 1; - -webkit-transform: translateY(-30px); - transform: translateY(-30px); - } - - 80% { - -webkit-transform: translateY(10px); - transform: translateY(10px); - } - - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -.bounceInUp { - -webkit-animation-name: bounceInUp; - animation-name: bounceInUp; -} - -@-webkit-keyframes bounceOut { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 25% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - } - - 50% { - opacity: 1; - -webkit-transform: scale(1.1); - transform: scale(1.1); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } -} - -@keyframes bounceOut { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 25% { - -webkit-transform: scale(0.95); - transform: scale(0.95); - } - - 50% { - opacity: 1; - -webkit-transform: scale(1.1); - transform: scale(1.1); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } -} - -.bounceOut { - -webkit-animation-name: bounceOut; - animation-name: bounceOut; -} - -@-webkit-keyframes bounceOutDown { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 20% { - opacity: 1; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -@keyframes bounceOutDown { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 20% { - opacity: 1; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -.bounceOutDown { - -webkit-animation-name: bounceOutDown; - animation-name: bounceOutDown; -} - -@-webkit-keyframes bounceOutLeft { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 20% { - opacity: 1; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes bounceOutLeft { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 20% { - opacity: 1; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.bounceOutLeft { - -webkit-animation-name: bounceOutLeft; - animation-name: bounceOutLeft; -} - -@-webkit-keyframes bounceOutRight { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 20% { - opacity: 1; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes bounceOutRight { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 20% { - opacity: 1; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.bounceOutRight { - -webkit-animation-name: bounceOutRight; - animation-name: bounceOutRight; -} - -@-webkit-keyframes bounceOutUp { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 20% { - opacity: 1; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes bounceOutUp { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 20% { - opacity: 1; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.bounceOutUp { - -webkit-animation-name: bounceOutUp; - animation-name: bounceOutUp; -} - -@-webkit-keyframes fadeIn { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -@keyframes fadeIn { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -.fadeIn { - -webkit-animation-name: fadeIn; - animation-name: fadeIn; -} - -@-webkit-keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInDown { - -webkit-animation-name: fadeInDown; - animation-name: fadeInDown; -} - -@-webkit-keyframes fadeInDownBig { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInDownBig { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInDownBig { - -webkit-animation-name: fadeInDownBig; - animation-name: fadeInDownBig; -} - -@-webkit-keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInLeft { - -webkit-animation-name: fadeInLeft; - animation-name: fadeInLeft; -} - -@-webkit-keyframes fadeInLeftBig { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInLeftBig { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInLeftBig { - -webkit-animation-name: fadeInLeftBig; - animation-name: fadeInLeftBig; -} - -@-webkit-keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInRight { - -webkit-animation-name: fadeInRight; - animation-name: fadeInRight; -} - -@-webkit-keyframes fadeInRightBig { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInRightBig { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInRightBig { - -webkit-animation-name: fadeInRightBig; - animation-name: fadeInRightBig; -} - -@-webkit-keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInUp { - -webkit-animation-name: fadeInUp; - animation-name: fadeInUp; -} - -@-webkit-keyframes fadeInUpBig { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInUpBig { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInUpBig { - -webkit-animation-name: fadeInUpBig; - animation-name: fadeInUpBig; -} - -@-webkit-keyframes fadeOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -@keyframes fadeOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -.fadeOut { - -webkit-animation-name: fadeOut; - animation-name: fadeOut; -} - -@-webkit-keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } -} - -@keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } -} - -.fadeOutDown { - -webkit-animation-name: fadeOutDown; - animation-name: fadeOutDown; -} - -@-webkit-keyframes fadeOutDownBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -@keyframes fadeOutDownBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -.fadeOutDownBig { - -webkit-animation-name: fadeOutDownBig; - animation-name: fadeOutDownBig; -} - -@-webkit-keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } -} - -@keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } -} - -.fadeOutLeft { - -webkit-animation-name: fadeOutLeft; - animation-name: fadeOutLeft; -} - -@-webkit-keyframes fadeOutLeftBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes fadeOutLeftBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.fadeOutLeftBig { - -webkit-animation-name: fadeOutLeftBig; - animation-name: fadeOutLeftBig; -} - -@-webkit-keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } -} - -@keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } -} - -.fadeOutRight { - -webkit-animation-name: fadeOutRight; - animation-name: fadeOutRight; -} - -@-webkit-keyframes fadeOutRightBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes fadeOutRightBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.fadeOutRightBig { - -webkit-animation-name: fadeOutRightBig; - animation-name: fadeOutRightBig; -} - -@-webkit-keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -@keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -.fadeOutUp { - -webkit-animation-name: fadeOutUp; - animation-name: fadeOutUp; -} - -@-webkit-keyframes fadeOutUpBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes fadeOutUpBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.fadeOutUpBig { - -webkit-animation-name: fadeOutUpBig; - animation-name: fadeOutUpBig; -} - -@-webkit-keyframes flip { - 0% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1); - transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 40% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1); - transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 50% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1); - transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 80% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95); - transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 100% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1); - transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -@keyframes flip { - 0% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1); - transform: perspective(400px) translateZ(0) rotateY(-360deg) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 40% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1); - transform: perspective(400px) translateZ(150px) rotateY(-190deg) scale(1); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 50% { - -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1); - transform: perspective(400px) translateZ(150px) rotateY(-170deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 80% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95); - transform: perspective(400px) translateZ(0) rotateY(0deg) scale(0.95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 100% { - -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1); - transform: perspective(400px) translateZ(0) rotateY(0deg) scale(1); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -.animated.flip { - -webkit-backface-visibility: visible; - backface-visibility: visible; - -webkit-animation-name: flip; - animation-name: flip; -} - -@-webkit-keyframes flipInX { - 0% { - -webkit-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotateX(-10deg); - transform: perspective(400px) rotateX(-10deg); - } - - 70% { - -webkit-transform: perspective(400px) rotateX(10deg); - transform: perspective(400px) rotateX(10deg); - } - - 100% { - -webkit-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } -} - -@keyframes flipInX { - 0% { - -webkit-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotateX(-10deg); - transform: perspective(400px) rotateX(-10deg); - } - - 70% { - -webkit-transform: perspective(400px) rotateX(10deg); - transform: perspective(400px) rotateX(10deg); - } - - 100% { - -webkit-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } -} - -.flipInX { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInX; - animation-name: flipInX; -} - -@-webkit-keyframes flipInY { - 0% { - -webkit-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotateY(-10deg); - transform: perspective(400px) rotateY(-10deg); - } - - 70% { - -webkit-transform: perspective(400px) rotateY(10deg); - transform: perspective(400px) rotateY(10deg); - } - - 100% { - -webkit-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } -} - -@keyframes flipInY { - 0% { - -webkit-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotateY(-10deg); - transform: perspective(400px) rotateY(-10deg); - } - - 70% { - -webkit-transform: perspective(400px) rotateY(10deg); - transform: perspective(400px) rotateY(10deg); - } - - 100% { - -webkit-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } -} - -.flipInY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInY; - animation-name: flipInY; -} - -@-webkit-keyframes flipOutX { - 0% { - -webkit-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } -} - -@keyframes flipOutX { - 0% { - -webkit-transform: perspective(400px) rotateX(0deg); - transform: perspective(400px) rotateX(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(400px) rotateX(90deg); - transform: perspective(400px) rotateX(90deg); - opacity: 0; - } -} - -.flipOutX { - -webkit-animation-name: flipOutX; - animation-name: flipOutX; - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; -} - -@-webkit-keyframes flipOutY { - 0% { - -webkit-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } -} - -@keyframes flipOutY { - 0% { - -webkit-transform: perspective(400px) rotateY(0deg); - transform: perspective(400px) rotateY(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(400px) rotateY(90deg); - transform: perspective(400px) rotateY(90deg); - opacity: 0; - } -} - -.flipOutY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipOutY; - animation-name: flipOutY; -} - -@-webkit-keyframes lightSpeedIn { - 0% { - -webkit-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } - - 60% { - -webkit-transform: translateX(-20%) skewX(30deg); - transform: translateX(-20%) skewX(30deg); - opacity: 1; - } - - 80% { - -webkit-transform: translateX(0%) skewX(-15deg); - transform: translateX(0%) skewX(-15deg); - opacity: 1; - } - - 100% { - -webkit-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } -} - -@keyframes lightSpeedIn { - 0% { - -webkit-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } - - 60% { - -webkit-transform: translateX(-20%) skewX(30deg); - transform: translateX(-20%) skewX(30deg); - opacity: 1; - } - - 80% { - -webkit-transform: translateX(0%) skewX(-15deg); - transform: translateX(0%) skewX(-15deg); - opacity: 1; - } - - 100% { - -webkit-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } -} - -.lightSpeedIn { - -webkit-animation-name: lightSpeedIn; - animation-name: lightSpeedIn; - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; -} - -@-webkit-keyframes lightSpeedOut { - 0% { - -webkit-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } -} - -@keyframes lightSpeedOut { - 0% { - -webkit-transform: translateX(0%) skewX(0deg); - transform: translateX(0%) skewX(0deg); - opacity: 1; - } - - 100% { - -webkit-transform: translateX(100%) skewX(-30deg); - transform: translateX(100%) skewX(-30deg); - opacity: 0; - } -} - -.lightSpeedOut { - -webkit-animation-name: lightSpeedOut; - animation-name: lightSpeedOut; - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; -} - -@-webkit-keyframes rotateIn { - 0% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(-200deg); - transform: rotate(-200deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateIn { - 0% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(-200deg); - transform: rotate(-200deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateIn { - -webkit-animation-name: rotateIn; - animation-name: rotateIn; -} - -@-webkit-keyframes rotateInDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInDownLeft { - -webkit-animation-name: rotateInDownLeft; - animation-name: rotateInDownLeft; -} - -@-webkit-keyframes rotateInDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInDownRight { - -webkit-animation-name: rotateInDownRight; - animation-name: rotateInDownRight; -} - -@-webkit-keyframes rotateInUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInUpLeft { - -webkit-animation-name: rotateInUpLeft; - animation-name: rotateInUpLeft; -} - -@-webkit-keyframes rotateInUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -@keyframes rotateInUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } -} - -.rotateInUpRight { - -webkit-animation-name: rotateInUpRight; - animation-name: rotateInUpRight; -} - -@-webkit-keyframes rotateOut { - 0% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(200deg); - transform: rotate(200deg); - opacity: 0; - } -} - -@keyframes rotateOut { - 0% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: center center; - transform-origin: center center; - -webkit-transform: rotate(200deg); - transform: rotate(200deg); - opacity: 0; - } -} - -.rotateOut { - -webkit-animation-name: rotateOut; - animation-name: rotateOut; -} - -@-webkit-keyframes rotateOutDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -@keyframes rotateOutDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -.rotateOutDownLeft { - -webkit-animation-name: rotateOutDownLeft; - animation-name: rotateOutDownLeft; -} - -@-webkit-keyframes rotateOutDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -@keyframes rotateOutDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -.rotateOutDownRight { - -webkit-animation-name: rotateOutDownRight; - animation-name: rotateOutDownRight; -} - -@-webkit-keyframes rotateOutUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -@keyframes rotateOutUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate(-90deg); - transform: rotate(-90deg); - opacity: 0; - } -} - -.rotateOutUpLeft { - -webkit-animation-name: rotateOutUpLeft; - animation-name: rotateOutUpLeft; -} - -@-webkit-keyframes rotateOutUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -@keyframes rotateOutUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(0); - transform: rotate(0); - opacity: 1; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); - opacity: 0; - } -} - -.rotateOutUpRight { - -webkit-animation-name: rotateOutUpRight; - animation-name: rotateOutUpRight; -} - -@-webkit-keyframes slideInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes slideInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - - 100% { - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -.slideInDown { - -webkit-animation-name: slideInDown; - animation-name: slideInDown; -} - -@-webkit-keyframes slideInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes slideInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -.slideInLeft { - -webkit-animation-name: slideInLeft; - animation-name: slideInLeft; -} - -@-webkit-keyframes slideInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes slideInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - - 100% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -.slideInRight { - -webkit-animation-name: slideInRight; - animation-name: slideInRight; -} - -@-webkit-keyframes slideOutLeft { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes slideOutLeft { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.slideOutLeft { - -webkit-animation-name: slideOutLeft; - animation-name: slideOutLeft; -} - -@-webkit-keyframes slideOutRight { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes slideOutRight { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.slideOutRight { - -webkit-animation-name: slideOutRight; - animation-name: slideOutRight; -} - -@-webkit-keyframes slideOutUp { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes slideOutUp { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.slideOutUp { - -webkit-animation-name: slideOutUp; - animation-name: slideOutUp; -} - -@-webkit-keyframes slideInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes slideInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -.slideInUp { - -webkit-animation-name: slideInUp; - animation-name: slideInUp; -} - -@-webkit-keyframes slideOutDown { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -@keyframes slideOutDown { - 0% { - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -.slideOutDown { - -webkit-animation-name: slideOutDown; - animation-name: slideOutDown; -} - -@-webkit-keyframes hinge { - 0% { - -webkit-transform: rotate(0); - transform: rotate(0); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 20%, - 60% { - -webkit-transform: rotate(80deg); - transform: rotate(80deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 40% { - -webkit-transform: rotate(60deg); - transform: rotate(60deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 80% { - -webkit-transform: rotate(60deg) translateY(0); - transform: rotate(60deg) translateY(0); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - opacity: 1; - } - - 100% { - -webkit-transform: translateY(700px); - transform: translateY(700px); - opacity: 0; - } -} - -@keyframes hinge { - 0% { - -webkit-transform: rotate(0); - transform: rotate(0); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 20%, - 60% { - -webkit-transform: rotate(80deg); - transform: rotate(80deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 40% { - -webkit-transform: rotate(60deg); - transform: rotate(60deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 80% { - -webkit-transform: rotate(60deg) translateY(0); - transform: rotate(60deg) translateY(0); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - opacity: 1; - } - - 100% { - -webkit-transform: translateY(700px); - transform: translateY(700px); - opacity: 0; - } -} - -.hinge { - -webkit-animation-name: hinge; - animation-name: hinge; -} - -@-webkit-keyframes rollIn { - 0% { - opacity: 0; - -webkit-transform: translateX(-100%) rotate(-120deg); - transform: translateX(-100%) rotate(-120deg); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } -} - -@keyframes rollIn { - 0% { - opacity: 0; - -webkit-transform: translateX(-100%) rotate(-120deg); - transform: translateX(-100%) rotate(-120deg); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } -} - -.rollIn { - -webkit-animation-name: rollIn; - animation-name: rollIn; -} - -@-webkit-keyframes rollOut { - 0% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(100%) rotate(120deg); - transform: translateX(100%) rotate(120deg); - } -} - -@keyframes rollOut { - 0% { - opacity: 1; - -webkit-transform: translateX(0px) rotate(0deg); - transform: translateX(0px) rotate(0deg); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(100%) rotate(120deg); - transform: translateX(100%) rotate(120deg); - } -} - -.rollOut { - -webkit-animation-name: rollOut; - animation-name: rollOut; -} - -@-webkit-keyframes zoomIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } - - 50% { - opacity: 1; - } -} - -@keyframes zoomIn { - 0% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } - - 50% { - opacity: 1; - } -} - -.zoomIn { - -webkit-animation-name: zoomIn; - animation-name: zoomIn; -} - -@-webkit-keyframes zoomInDown { - 0% { - opacity: 0; - -webkit-transform: scale(0.1) translateY(-2000px); - transform: scale(0.1) translateY(-2000px); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 60% { - opacity: 1; - -webkit-transform: scale(0.475) translateY(60px); - transform: scale(0.475) translateY(60px); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } -} - -@keyframes zoomInDown { - 0% { - opacity: 0; - -webkit-transform: scale(0.1) translateY(-2000px); - transform: scale(0.1) translateY(-2000px); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 60% { - opacity: 1; - -webkit-transform: scale(0.475) translateY(60px); - transform: scale(0.475) translateY(60px); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } -} - -.zoomInDown { - -webkit-animation-name: zoomInDown; - animation-name: zoomInDown; -} - -@-webkit-keyframes zoomInLeft { - 0% { - opacity: 0; - -webkit-transform: scale(0.1) translateX(-2000px); - transform: scale(0.1) translateX(-2000px); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 60% { - opacity: 1; - -webkit-transform: scale(0.475) translateX(48px); - transform: scale(0.475) translateX(48px); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } -} - -@keyframes zoomInLeft { - 0% { - opacity: 0; - -webkit-transform: scale(0.1) translateX(-2000px); - transform: scale(0.1) translateX(-2000px); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 60% { - opacity: 1; - -webkit-transform: scale(0.475) translateX(48px); - transform: scale(0.475) translateX(48px); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } -} - -.zoomInLeft { - -webkit-animation-name: zoomInLeft; - animation-name: zoomInLeft; -} - -@-webkit-keyframes zoomInRight { - 0% { - opacity: 0; - -webkit-transform: scale(0.1) translateX(2000px); - transform: scale(0.1) translateX(2000px); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 60% { - opacity: 1; - -webkit-transform: scale(0.475) translateX(-48px); - transform: scale(0.475) translateX(-48px); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } -} - -@keyframes zoomInRight { - 0% { - opacity: 0; - -webkit-transform: scale(0.1) translateX(2000px); - transform: scale(0.1) translateX(2000px); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 60% { - opacity: 1; - -webkit-transform: scale(0.475) translateX(-48px); - transform: scale(0.475) translateX(-48px); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } -} - -.zoomInRight { - -webkit-animation-name: zoomInRight; - animation-name: zoomInRight; -} - -@-webkit-keyframes zoomInUp { - 0% { - opacity: 0; - -webkit-transform: scale(0.1) translateY(2000px); - transform: scale(0.1) translateY(2000px); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 60% { - opacity: 1; - -webkit-transform: scale(0.475) translateY(-60px); - transform: scale(0.475) translateY(-60px); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } -} - -@keyframes zoomInUp { - 0% { - opacity: 0; - -webkit-transform: scale(0.1) translateY(2000px); - transform: scale(0.1) translateY(2000px); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 60% { - opacity: 1; - -webkit-transform: scale(0.475) translateY(-60px); - transform: scale(0.475) translateY(-60px); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } -} - -.zoomInUp { - -webkit-animation-name: zoomInUp; - animation-name: zoomInUp; -} - -@-webkit-keyframes zoomOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } - - 50% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } - - 100% { - opacity: 0; - } -} - -@keyframes zoomOut { - 0% { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } - - 50% { - opacity: 0; - -webkit-transform: scale(0.3); - transform: scale(0.3); - } - - 100% { - opacity: 0; - } -} - -.zoomOut { - -webkit-animation-name: zoomOut; - animation-name: zoomOut; -} - -@-webkit-keyframes zoomOutDown { - 40% { - opacity: 1; - -webkit-transform: scale(0.475) translateY(-60px); - transform: scale(0.475) translateY(-60px); - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translateY(2000px); - transform: scale(0.1) translateY(2000px); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - } -} - -@keyframes zoomOutDown { - 40% { - opacity: 1; - -webkit-transform: scale(0.475) translateY(-60px); - transform: scale(0.475) translateY(-60px); - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translateY(2000px); - transform: scale(0.1) translateY(2000px); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - } -} - -.zoomOutDown { - -webkit-animation-name: zoomOutDown; - animation-name: zoomOutDown; -} - -@-webkit-keyframes zoomOutLeft { - 40% { - opacity: 1; - -webkit-transform: scale(0.475) translateX(42px); - transform: scale(0.475) translateX(42px); - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translateX(-2000px); - transform: scale(0.1) translateX(-2000px); - -webkit-transform-origin: left center; - transform-origin: left center; - } -} - -@keyframes zoomOutLeft { - 40% { - opacity: 1; - -webkit-transform: scale(0.475) translateX(42px); - transform: scale(0.475) translateX(42px); - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translateX(-2000px); - transform: scale(0.1) translateX(-2000px); - -webkit-transform-origin: left center; - transform-origin: left center; - } -} - -.zoomOutLeft { - -webkit-animation-name: zoomOutLeft; - animation-name: zoomOutLeft; -} - -@-webkit-keyframes zoomOutRight { - 40% { - opacity: 1; - -webkit-transform: scale(0.475) translateX(-42px); - transform: scale(0.475) translateX(-42px); - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translateX(2000px); - transform: scale(0.1) translateX(2000px); - -webkit-transform-origin: right center; - transform-origin: right center; - } -} - -@keyframes zoomOutRight { - 40% { - opacity: 1; - -webkit-transform: scale(0.475) translateX(-42px); - transform: scale(0.475) translateX(-42px); - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translateX(2000px); - transform: scale(0.1) translateX(2000px); - -webkit-transform-origin: right center; - transform-origin: right center; - } -} - -.zoomOutRight { - -webkit-animation-name: zoomOutRight; - animation-name: zoomOutRight; -} - -@-webkit-keyframes zoomOutUp { - 40% { - opacity: 1; - -webkit-transform: scale(0.475) translateY(60px); - transform: scale(0.475) translateY(60px); - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translateY(-2000px); - transform: scale(0.1) translateY(-2000px); - -webkit-transform-origin: center top; - transform-origin: center top; - } -} - -@keyframes zoomOutUp { - 40% { - opacity: 1; - -webkit-transform: scale(0.475) translateY(60px); - transform: scale(0.475) translateY(60px); - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translateY(-2000px); - transform: scale(0.1) translateY(-2000px); - -webkit-transform-origin: center top; - transform-origin: center top; - } -} - -.zoomOutUp { - -webkit-animation-name: zoomOutUp; - animation-name: zoomOutUp; -} - -@charset "UTF-8"; -/*! - Animate.css - http://daneden.me/animate - Licensed under the MIT license - http://opensource.org/licenses/MIT - - Copyright (c) 2015 Daniel Eden - */ - -.animated { - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} - -.animated.infinite { - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} - -.animated.hinge { - -webkit-animation-duration: 2s; - animation-duration: 2s; -} - -.animated.bounceIn, -.animated.bounceOut { - -webkit-animation-duration: 0.75s; - animation-duration: 0.75s; -} - -.animated.flipOutX, -.animated.flipOutY { - -webkit-animation-duration: 0.75s; - animation-duration: 0.75s; -} - -@-webkit-keyframes bounce { - - 0%, - 20%, - 53%, - 80%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 40%, - 43% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - -webkit-transform: translate3d(0, -30px, 0); - transform: translate3d(0, -30px, 0); - } - - 70% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - -webkit-transform: translate3d(0, -15px, 0); - transform: translate3d(0, -15px, 0); - } - - 90% { - -webkit-transform: translate3d(0, -4px, 0); - transform: translate3d(0, -4px, 0); - } -} - -@keyframes bounce { - - 0%, - 20%, - 53%, - 80%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 40%, - 43% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - -webkit-transform: translate3d(0, -30px, 0); - transform: translate3d(0, -30px, 0); - } - - 70% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - -webkit-transform: translate3d(0, -15px, 0); - transform: translate3d(0, -15px, 0); - } - - 90% { - -webkit-transform: translate3d(0, -4px, 0); - transform: translate3d(0, -4px, 0); - } -} - -.bounce { - -webkit-animation-name: bounce; - animation-name: bounce; - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} - -@-webkit-keyframes flash { - - 0%, - 50%, - 100% { - opacity: 1; - } - - 25%, - 75% { - opacity: 0; - } -} - -@keyframes flash { - - 0%, - 50%, - 100% { - opacity: 1; - } - - 25%, - 75% { - opacity: 0; - } -} - -.flash { - -webkit-animation-name: flash; - animation-name: flash; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@-webkit-keyframes pulse { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 50% { - -webkit-transform: scale3d(1.05, 1.05, 1.05); - transform: scale3d(1.05, 1.05, 1.05); - } - - 100% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes pulse { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 50% { - -webkit-transform: scale3d(1.05, 1.05, 1.05); - transform: scale3d(1.05, 1.05, 1.05); - } - - 100% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.pulse { - -webkit-animation-name: pulse; - animation-name: pulse; -} - -@-webkit-keyframes rubberBand { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - -webkit-transform: scale3d(0.95, 1.05, 1); - transform: scale3d(0.95, 1.05, 1); - } - - 75% { - -webkit-transform: scale3d(1.05, 0.95, 1); - transform: scale3d(1.05, 0.95, 1); - } - - 100% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes rubberBand { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - -webkit-transform: scale3d(0.95, 1.05, 1); - transform: scale3d(0.95, 1.05, 1); - } - - 75% { - -webkit-transform: scale3d(1.05, 0.95, 1); - transform: scale3d(1.05, 0.95, 1); - } - - 100% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.rubberBand { - -webkit-animation-name: rubberBand; - animation-name: rubberBand; -} - -@-webkit-keyframes shake { - - 0%, - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } -} - -@keyframes shake { - - 0%, - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } -} - -.shake { - -webkit-animation-name: shake; - animation-name: shake; -} - -@-webkit-keyframes swing { - 20% { - -webkit-transform: rotate3d(0, 0, 1, 15deg); - transform: rotate3d(0, 0, 1, 15deg); - } - - 40% { - -webkit-transform: rotate3d(0, 0, 1, -10deg); - transform: rotate3d(0, 0, 1, -10deg); - } - - 60% { - -webkit-transform: rotate3d(0, 0, 1, 5deg); - transform: rotate3d(0, 0, 1, 5deg); - } - - 80% { - -webkit-transform: rotate3d(0, 0, 1, -5deg); - transform: rotate3d(0, 0, 1, -5deg); - } - - 100% { - -webkit-transform: rotate3d(0, 0, 1, 0deg); - transform: rotate3d(0, 0, 1, 0deg); - } -} - -@keyframes swing { - 20% { - -webkit-transform: rotate3d(0, 0, 1, 15deg); - transform: rotate3d(0, 0, 1, 15deg); - } - - 40% { - -webkit-transform: rotate3d(0, 0, 1, -10deg); - transform: rotate3d(0, 0, 1, -10deg); - } - - 60% { - -webkit-transform: rotate3d(0, 0, 1, 5deg); - transform: rotate3d(0, 0, 1, 5deg); - } - - 80% { - -webkit-transform: rotate3d(0, 0, 1, -5deg); - transform: rotate3d(0, 0, 1, -5deg); - } - - 100% { - -webkit-transform: rotate3d(0, 0, 1, 0deg); - transform: rotate3d(0, 0, 1, 0deg); - } -} - -.swing { - -webkit-transform-origin: top center; - transform-origin: top center; - -webkit-animation-name: swing; - animation-name: swing; -} - -@-webkit-keyframes tada { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 10%, - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); - transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); - } - - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - } - - 40%, - 60%, - 80% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - } - - 100% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes tada { - 0% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 10%, - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); - transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); - } - - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - } - - 40%, - 60%, - 80% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - } - - 100% { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.tada { - -webkit-animation-name: tada; - animation-name: tada; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@-webkit-keyframes wobble { - 0% { - -webkit-transform: none; - transform: none; - } - - 15% { - -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - } - - 30% { - -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - } - - 45% { - -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - } - - 60% { - -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - } - - 75% { - -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@keyframes wobble { - 0% { - -webkit-transform: none; - transform: none; - } - - 15% { - -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - } - - 30% { - -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - } - - 45% { - -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - } - - 60% { - -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - } - - 75% { - -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -.wobble { - -webkit-animation-name: wobble; - animation-name: wobble; -} - -@-webkit-keyframes jello { - 11.1% { - -webkit-transform: none; - transform: none; - } - - 22.2% { - -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); - transform: skewX(-12.5deg) skewY(-12.5deg); - } - - 33.3% { - -webkit-transform: skewX(6.25deg) skewY(6.25deg); - transform: skewX(6.25deg) skewY(6.25deg); - } - - 44.4% { - -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); - transform: skewX(-3.125deg) skewY(-3.125deg); - } - - 55.5% { - -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); - transform: skewX(1.5625deg) skewY(1.5625deg); - } - - 66.6% { - -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); - transform: skewX(-0.78125deg) skewY(-0.78125deg); - } - - 77.7% { - -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); - transform: skewX(0.390625deg) skewY(0.390625deg); - } - - 88.8% { - -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@keyframes jello { - 11.1% { - -webkit-transform: none; - transform: none; - } - - 22.2% { - -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); - transform: skewX(-12.5deg) skewY(-12.5deg); - } - - 33.3% { - -webkit-transform: skewX(6.25deg) skewY(6.25deg); - transform: skewX(6.25deg) skewY(6.25deg); - } - - 44.4% { - -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); - transform: skewX(-3.125deg) skewY(-3.125deg); - } - - 55.5% { - -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); - transform: skewX(1.5625deg) skewY(1.5625deg); - } - - 66.6% { - -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); - transform: skewX(-0.78125deg) skewY(-0.78125deg); - } - - 77.7% { - -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); - transform: skewX(0.390625deg) skewY(0.390625deg); - } - - 88.8% { - -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -.jello { - -webkit-animation-name: jello; - animation-name: jello; - -webkit-transform-origin: center; - transform-origin: center; -} - -@-webkit-keyframes bounceIn { - - 0%, - 20%, - 40%, - 60%, - 80%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - -webkit-transform: scale3d(0.97, 0.97, 0.97); - transform: scale3d(0.97, 0.97, 0.97); - } - - 100% { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes bounceIn { - - 0%, - 20%, - 40%, - 60%, - 80%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - -webkit-transform: scale3d(0.97, 0.97, 0.97); - transform: scale3d(0.97, 0.97, 0.97); - } - - 100% { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.bounceIn { - -webkit-animation-name: bounceIn; - animation-name: bounceIn; -} - -@-webkit-keyframes bounceInDown { - - 0%, - 60%, - 75%, - 90%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -3000px, 0); - transform: translate3d(0, -3000px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, 25px, 0); - transform: translate3d(0, 25px, 0); - } - - 75% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, 5px, 0); - transform: translate3d(0, 5px, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@keyframes bounceInDown { - - 0%, - 60%, - 75%, - 90%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -3000px, 0); - transform: translate3d(0, -3000px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, 25px, 0); - transform: translate3d(0, 25px, 0); - } - - 75% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, 5px, 0); - transform: translate3d(0, 5px, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -.bounceInDown { - -webkit-animation-name: bounceInDown; - animation-name: bounceInDown; -} - -@-webkit-keyframes bounceInLeft { - - 0%, - 60%, - 75%, - 90%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(-3000px, 0, 0); - transform: translate3d(-3000px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(25px, 0, 0); - transform: translate3d(25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(5px, 0, 0); - transform: translate3d(5px, 0, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@keyframes bounceInLeft { - - 0%, - 60%, - 75%, - 90%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(-3000px, 0, 0); - transform: translate3d(-3000px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(25px, 0, 0); - transform: translate3d(25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(5px, 0, 0); - transform: translate3d(5px, 0, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -.bounceInLeft { - -webkit-animation-name: bounceInLeft; - animation-name: bounceInLeft; -} - -@-webkit-keyframes bounceInRight { - - 0%, - 60%, - 75%, - 90%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(3000px, 0, 0); - transform: translate3d(3000px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0); - transform: translate3d(-25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(-5px, 0, 0); - transform: translate3d(-5px, 0, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -@keyframes bounceInRight { - - 0%, - 60%, - 75%, - 90%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(3000px, 0, 0); - transform: translate3d(3000px, 0, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0); - transform: translate3d(-25px, 0, 0); - } - - 75% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } - - 90% { - -webkit-transform: translate3d(-5px, 0, 0); - transform: translate3d(-5px, 0, 0); - } - - 100% { - -webkit-transform: none; - transform: none; - } -} - -.bounceInRight { - -webkit-animation-name: bounceInRight; - animation-name: bounceInRight; -} - -@-webkit-keyframes bounceInUp { - - 0%, - 60%, - 75%, - 90%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(0, 3000px, 0); - transform: translate3d(0, 3000px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 75% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, -5px, 0); - transform: translate3d(0, -5px, 0); - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes bounceInUp { - - 0%, - 60%, - 75%, - 90%, - 100% { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(0, 3000px, 0); - transform: translate3d(0, 3000px, 0); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 75% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 90% { - -webkit-transform: translate3d(0, -5px, 0); - transform: translate3d(0, -5px, 0); - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.bounceInUp { - -webkit-animation-name: bounceInUp; - animation-name: bounceInUp; -} - -@-webkit-keyframes bounceOut { - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 50%, - 55% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 100% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } -} - -@keyframes bounceOut { - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 50%, - 55% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 100% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } -} - -.bounceOut { - -webkit-animation-name: bounceOut; - animation-name: bounceOut; -} - -@-webkit-keyframes bounceOutDown { - 20% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 40%, - 45% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} - -@keyframes bounceOutDown { - 20% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } - - 40%, - 45% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} - -.bounceOutDown { - -webkit-animation-name: bounceOutDown; - animation-name: bounceOutDown; -} - -@-webkit-keyframes bounceOutLeft { - 20% { - opacity: 1; - -webkit-transform: translate3d(20px, 0, 0); - transform: translate3d(20px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} - -@keyframes bounceOutLeft { - 20% { - opacity: 1; - -webkit-transform: translate3d(20px, 0, 0); - transform: translate3d(20px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} - -.bounceOutLeft { - -webkit-animation-name: bounceOutLeft; - animation-name: bounceOutLeft; -} - -@-webkit-keyframes bounceOutRight { - 20% { - opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0); - transform: translate3d(-20px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} - -@keyframes bounceOutRight { - 20% { - opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0); - transform: translate3d(-20px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} - -.bounceOutRight { - -webkit-animation-name: bounceOutRight; - animation-name: bounceOutRight; -} - -@-webkit-keyframes bounceOutUp { - 20% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 40%, - 45% { - opacity: 1; - -webkit-transform: translate3d(0, 20px, 0); - transform: translate3d(0, 20px, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} - -@keyframes bounceOutUp { - 20% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 40%, - 45% { - opacity: 1; - -webkit-transform: translate3d(0, 20px, 0); - transform: translate3d(0, 20px, 0); - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} - -.bounceOutUp { - -webkit-animation-name: bounceOutUp; - animation-name: bounceOutUp; -} - -@-webkit-keyframes fadeIn { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -@keyframes fadeIn { - 0% { - opacity: 0; - } - - 100% { - opacity: 1; - } -} - -.fadeIn { - -webkit-animation-name: fadeIn; - animation-name: fadeIn; -} - -@-webkit-keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInDown { - 0% { - opacity: 0; - -webkit-transform: translateY(-20px); - -ms-transform: translateY(-20px); - transform: translateY(-20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInDown { - -webkit-animation-name: fadeInDown; - animation-name: fadeInDown; -} - -@-webkit-keyframes fadeInDownBig { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInDownBig { - 0% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInDownBig { - -webkit-animation-name: fadeInDownBig; - animation-name: fadeInDownBig; -} - -@-webkit-keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInLeft { - 0% { - opacity: 0; - -webkit-transform: translateX(-20px); - -ms-transform: translateX(-20px); - transform: translateX(-20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInLeft { - -webkit-animation-name: fadeInLeft; - animation-name: fadeInLeft; -} - -@-webkit-keyframes fadeInLeftBig { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInLeftBig { - 0% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInLeftBig { - -webkit-animation-name: fadeInLeftBig; - animation-name: fadeInLeftBig; -} - -@-webkit-keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInRight { - 0% { - opacity: 0; - -webkit-transform: translateX(20px); - -ms-transform: translateX(20px); - transform: translateX(20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInRight { - -webkit-animation-name: fadeInRight; - animation-name: fadeInRight; -} - -@-webkit-keyframes fadeInRightBig { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } -} - -@keyframes fadeInRightBig { - 0% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } -} - -.fadeInRightBig { - -webkit-animation-name: fadeInRightBig; - animation-name: fadeInRightBig; -} - -@-webkit-keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInUp { - 0% { - opacity: 0; - -webkit-transform: translateY(20px); - -ms-transform: translateY(20px); - transform: translateY(20px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInUp { - -webkit-animation-name: fadeInUp; - animation-name: fadeInUp; -} - -@-webkit-keyframes fadeInUpBig { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } -} - -@keyframes fadeInUpBig { - 0% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } - - 100% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } -} - -.fadeInUpBig { - -webkit-animation-name: fadeInUpBig; - animation-name: fadeInUpBig; -} - -@-webkit-keyframes fadeOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -@keyframes fadeOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - } -} - -.fadeOut { - -webkit-animation-name: fadeOut; - animation-name: fadeOut; -} - -@-webkit-keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(20px); - transform: translateY(20px); - } -} - -@keyframes fadeOutDown { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(20px); - -ms-transform: translateY(20px); - transform: translateY(20px); - } -} - -.fadeOutDown { - -webkit-animation-name: fadeOutDown; - animation-name: fadeOutDown; -} - -@-webkit-keyframes fadeOutDownBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -@keyframes fadeOutDownBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(2000px); - -ms-transform: translateY(2000px); - transform: translateY(2000px); - } -} - -.fadeOutDownBig { - -webkit-animation-name: fadeOutDownBig; - animation-name: fadeOutDownBig; -} - -@-webkit-keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-20px); - transform: translateX(-20px); - } -} - -@keyframes fadeOutLeft { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-20px); - -ms-transform: translateX(-20px); - transform: translateX(-20px); - } -} - -.fadeOutLeft { - -webkit-animation-name: fadeOutLeft; - animation-name: fadeOutLeft; -} - -@-webkit-keyframes fadeOutLeftBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -@keyframes fadeOutLeftBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(-2000px); - -ms-transform: translateX(-2000px); - transform: translateX(-2000px); - } -} - -.fadeOutLeftBig { - -webkit-animation-name: fadeOutLeftBig; - animation-name: fadeOutLeftBig; -} - -@-webkit-keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(20px); - transform: translateX(20px); - } -} - -@keyframes fadeOutRight { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(20px); - -ms-transform: translateX(20px); - transform: translateX(20px); - } -} - -.fadeOutRight { - -webkit-animation-name: fadeOutRight; - animation-name: fadeOutRight; -} - -@-webkit-keyframes fadeOutRightBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -@keyframes fadeOutRightBig { - 0% { - opacity: 1; - -webkit-transform: translateX(0); - -ms-transform: translateX(0); - transform: translateX(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateX(2000px); - -ms-transform: translateX(2000px); - transform: translateX(2000px); - } -} - -.fadeOutRightBig { - -webkit-animation-name: fadeOutRightBig; - animation-name: fadeOutRightBig; -} - -@-webkit-keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -@keyframes fadeOutUp { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-20px); - -ms-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -.fadeOutUp { - -webkit-animation-name: fadeOutUp; - animation-name: fadeOutUp; -} - -@-webkit-keyframes fadeOutUpBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -@keyframes fadeOutUpBig { - 0% { - opacity: 1; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - - 100% { - opacity: 0; - -webkit-transform: translateY(-2000px); - -ms-transform: translateY(-2000px); - transform: translateY(-2000px); - } -} - -.fadeOutUpBig { - -webkit-animation-name: fadeOutUpBig; - animation-name: fadeOutUpBig; -} - -@-webkit-keyframes flip { - 0% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 40% { - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 50% { - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 80% { - -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); - transform: perspective(400px) scale3d(0.95, 0.95, 0.95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 100% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -@keyframes flip { - 0% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - transform: perspective(400px) rotate3d(0, 1, 0, -360deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 40% { - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 50% { - -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 80% { - -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95); - transform: perspective(400px) scale3d(0.95, 0.95, 0.95); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 100% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} - -.animated.flip { - -webkit-backface-visibility: visible; - backface-visibility: visible; - -webkit-animation-name: flip; - animation-name: flip; -} - -@-webkit-keyframes flipInX { - 0% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - } - - 100% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} - -@keyframes flipInX { - 0% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - } - - 100% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} - -.flipInX { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInX; - animation-name: flipInX; -} - -@-webkit-keyframes flipInY { - 0% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - } - - 100% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} - -@keyframes flipInY { - 0% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - } - - 100% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} - -.flipInY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInY; - animation-name: flipInY; -} - -@-webkit-keyframes flipOutX { - 0% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - opacity: 0; - } -} - -@keyframes flipOutX { - 0% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - opacity: 0; - } -} - -.flipOutX { - -webkit-animation-name: flipOutX; - animation-name: flipOutX; - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; -} - -@-webkit-keyframes flipOutY { - 0% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - opacity: 0; - } -} - -@keyframes flipOutY { - 0% { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - opacity: 1; - } - - 100% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - opacity: 0; - } -} - -.flipOutY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipOutY; - animation-name: flipOutY; -} - -@-webkit-keyframes lightSpeedIn { - 0% { - -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); - transform: translate3d(100%, 0, 0) skewX(-30deg); - opacity: 0; - } - - 60% { - -webkit-transform: skewX(20deg); - transform: skewX(20deg); - opacity: 1; - } - - 80% { - -webkit-transform: skewX(-5deg); - transform: skewX(-5deg); - opacity: 1; - } - - 100% { - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes lightSpeedIn { - 0% { - -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); - transform: translate3d(100%, 0, 0) skewX(-30deg); - opacity: 0; - } - - 60% { - -webkit-transform: skewX(20deg); - transform: skewX(20deg); - opacity: 1; - } - - 80% { - -webkit-transform: skewX(-5deg); - transform: skewX(-5deg); - opacity: 1; - } - - 100% { - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.lightSpeedIn { - -webkit-animation-name: lightSpeedIn; - animation-name: lightSpeedIn; - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; -} - -@-webkit-keyframes lightSpeedOut { - 0% { - opacity: 1; - } - - 100% { - -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); - transform: translate3d(100%, 0, 0) skewX(30deg); - opacity: 0; - } -} - -@keyframes lightSpeedOut { - 0% { - opacity: 1; - } - - 100% { - -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); - transform: translate3d(100%, 0, 0) skewX(30deg); - opacity: 0; - } -} - -.lightSpeedOut { - -webkit-animation-name: lightSpeedOut; - animation-name: lightSpeedOut; - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; -} - -@-webkit-keyframes rotateIn { - 0% { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: rotate3d(0, 0, 1, -200deg); - transform: rotate3d(0, 0, 1, -200deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateIn { - 0% { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: rotate3d(0, 0, 1, -200deg); - transform: rotate3d(0, 0, 1, -200deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateIn { - -webkit-animation-name: rotateIn; - animation-name: rotateIn; -} - -@-webkit-keyframes rotateInDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateInDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateInDownLeft { - -webkit-animation-name: rotateInDownLeft; - animation-name: rotateInDownLeft; -} - -@-webkit-keyframes rotateInDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateInDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateInDownRight { - -webkit-animation-name: rotateInDownRight; - animation-name: rotateInDownRight; -} - -@-webkit-keyframes rotateInUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateInUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateInUpLeft { - -webkit-animation-name: rotateInUpLeft; - animation-name: rotateInUpLeft; -} - -@-webkit-keyframes rotateInUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, -90deg); - transform: rotate3d(0, 0, 1, -90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -@keyframes rotateInUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, -90deg); - transform: rotate3d(0, 0, 1, -90deg); - opacity: 0; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: none; - transform: none; - opacity: 1; - } -} - -.rotateInUpRight { - -webkit-animation-name: rotateInUpRight; - animation-name: rotateInUpRight; -} - -@-webkit-keyframes rotateOut { - 0% { - -webkit-transform-origin: center; - transform-origin: center; - opacity: 1; - } - - 100% { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: rotate3d(0, 0, 1, 200deg); - transform: rotate3d(0, 0, 1, 200deg); - opacity: 0; - } -} - -@keyframes rotateOut { - 0% { - -webkit-transform-origin: center; - transform-origin: center; - opacity: 1; - } - - 100% { - -webkit-transform-origin: center; - transform-origin: center; - -webkit-transform: rotate3d(0, 0, 1, 200deg); - transform: rotate3d(0, 0, 1, 200deg); - opacity: 0; - } -} - -.rotateOut { - -webkit-animation-name: rotateOut; - animation-name: rotateOut; -} - -@-webkit-keyframes rotateOutDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - opacity: 1; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } -} - -@keyframes rotateOutDownLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - opacity: 1; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } -} - -.rotateOutDownLeft { - -webkit-animation-name: rotateOutDownLeft; - animation-name: rotateOutDownLeft; -} - -@-webkit-keyframes rotateOutDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - opacity: 1; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -@keyframes rotateOutDownRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - opacity: 1; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -.rotateOutDownRight { - -webkit-animation-name: rotateOutDownRight; - animation-name: rotateOutDownRight; -} - -@-webkit-keyframes rotateOutUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - opacity: 1; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -@keyframes rotateOutUpLeft { - 0% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - opacity: 1; - } - - 100% { - -webkit-transform-origin: left bottom; - transform-origin: left bottom; - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} - -.rotateOutUpLeft { - -webkit-animation-name: rotateOutUpLeft; - animation-name: rotateOutUpLeft; -} - -@-webkit-keyframes rotateOutUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - opacity: 1; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, 90deg); - transform: rotate3d(0, 0, 1, 90deg); - opacity: 0; - } -} - -@keyframes rotateOutUpRight { - 0% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - opacity: 1; - } - - 100% { - -webkit-transform-origin: right bottom; - transform-origin: right bottom; - -webkit-transform: rotate3d(0, 0, 1, 90deg); - transform: rotate3d(0, 0, 1, 90deg); - opacity: 0; - } -} - -.rotateOutUpRight { - -webkit-animation-name: rotateOutUpRight; - animation-name: rotateOutUpRight; -} - -@-webkit-keyframes hinge { - 0% { - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 20%, - 60% { - -webkit-transform: rotate3d(0, 0, 1, 80deg); - transform: rotate3d(0, 0, 1, 80deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 40%, - 80% { - -webkit-transform: rotate3d(0, 0, 1, 60deg); - transform: rotate3d(0, 0, 1, 60deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - opacity: 1; - } - - 100% { - -webkit-transform: translate3d(0, 700px, 0); - transform: translate3d(0, 700px, 0); - opacity: 0; - } -} - -@keyframes hinge { - 0% { - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 20%, - 60% { - -webkit-transform: rotate3d(0, 0, 1, 80deg); - transform: rotate3d(0, 0, 1, 80deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 40%, - 80% { - -webkit-transform: rotate3d(0, 0, 1, 60deg); - transform: rotate3d(0, 0, 1, 60deg); - -webkit-transform-origin: top left; - transform-origin: top left; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - opacity: 1; - } - - 100% { - -webkit-transform: translate3d(0, 700px, 0); - transform: translate3d(0, 700px, 0); - opacity: 0; - } -} - -.hinge { - -webkit-animation-name: hinge; - animation-name: hinge; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@-webkit-keyframes rollIn { - 0% { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - } - - 100% { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -@keyframes rollIn { - 0% { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - } - - 100% { - opacity: 1; - -webkit-transform: none; - transform: none; - } -} - -.rollIn { - -webkit-animation-name: rollIn; - animation-name: rollIn; -} - -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ - -@-webkit-keyframes rollOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - } -} - -@keyframes rollOut { - 0% { - opacity: 1; - } - - 100% { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - } -} - -.rollOut { - -webkit-animation-name: rollOut; - animation-name: rollOut; -} - -@-webkit-keyframes zoomIn { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 50% { - opacity: 1; - } -} - -@keyframes zoomIn { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 50% { - opacity: 1; - } -} - -.zoomIn { - -webkit-animation-name: zoomIn; - animation-name: zoomIn; -} - -@-webkit-keyframes zoomInStable { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 33.333% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 66.666666% { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -@keyframes zoomInStable { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 33.333% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 66.666666% { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} - -.zoomInStable { - -webkit-animation-name: zoomInStable; - animation-name: zoomInStable; -} - -@-webkit-keyframes zoomInDown { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -@keyframes zoomInDown { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -.zoomInDown { - -webkit-animation-name: zoomInDown; - animation-name: zoomInDown; -} - -@-webkit-keyframes zoomInLeft { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -@keyframes zoomInLeft { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -.zoomInLeft { - -webkit-animation-name: zoomInLeft; - animation-name: zoomInLeft; -} - -@-webkit-keyframes zoomInRight { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -@keyframes zoomInRight { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -.zoomInRight { - -webkit-animation-name: zoomInRight; - animation-name: zoomInRight; -} - -@-webkit-keyframes zoomInUp { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -@keyframes zoomInUp { - 0% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -.zoomInUp { - -webkit-animation-name: zoomInUp; - animation-name: zoomInUp; -} - -@-webkit-keyframes zoomOut { - 0% { - opacity: 1; - } - - 50% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 100% { - opacity: 0; - } -} - -@keyframes zoomOut { - 0% { - opacity: 1; - } - - 50% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 100% { - opacity: 0; - } -} - -.zoomOut { - -webkit-animation-name: zoomOut; - animation-name: zoomOut; -} - -@-webkit-keyframes zoomOutDown { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 100% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -@keyframes zoomOutDown { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 100% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -.zoomOutDown { - -webkit-animation-name: zoomOutDown; - animation-name: zoomOutDown; -} - -@-webkit-keyframes zoomOutLeft { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); - transform: scale(0.1) translate3d(-2000px, 0, 0); - -webkit-transform-origin: left center; - transform-origin: left center; - } -} - -@keyframes zoomOutLeft { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); - transform: scale(0.1) translate3d(-2000px, 0, 0); - -webkit-transform-origin: left center; - transform-origin: left center; - } -} - -.zoomOutLeft { - -webkit-animation-name: zoomOutLeft; - animation-name: zoomOutLeft; -} - -@-webkit-keyframes zoomOutRight { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); - transform: scale(0.1) translate3d(2000px, 0, 0); - -webkit-transform-origin: right center; - transform-origin: right center; - } -} - -@keyframes zoomOutRight { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); - } - - 100% { - opacity: 0; - -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); - transform: scale(0.1) translate3d(2000px, 0, 0); - -webkit-transform-origin: right center; - transform-origin: right center; - } -} - -.zoomOutRight { - -webkit-animation-name: zoomOutRight; - animation-name: zoomOutRight; -} - -@-webkit-keyframes zoomOutUp { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 100% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -@keyframes zoomOutUp { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 100% { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} - -.zoomOutUp { - -webkit-animation-name: zoomOutUp; - animation-name: zoomOutUp; -} - -@-webkit-keyframes slideInDown { - 0% { - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - visibility: visible; - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes slideInDown { - 0% { - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - visibility: visible; - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.slideInDown { - -webkit-animation-name: slideInDown; - animation-name: slideInDown; -} - -@-webkit-keyframes slideInLeft { - 0% { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - visibility: visible; - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes slideInLeft { - 0% { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - visibility: visible; - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.slideInLeft { - -webkit-animation-name: slideInLeft; - animation-name: slideInLeft; -} - -@-webkit-keyframes slideInRight { - 0% { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - visibility: visible; - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes slideInRight { - 0% { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - visibility: visible; - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.slideInRight { - -webkit-animation-name: slideInRight; - animation-name: slideInRight; -} - -@-webkit-keyframes slideInUp { - 0% { - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - visibility: visible; - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -@keyframes slideInUp { - 0% { - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - visibility: visible; - } - - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} - -.slideInUp { - -webkit-animation-name: slideInUp; - animation-name: slideInUp; -} - -@-webkit-keyframes slideOutDown { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 100% { - visibility: hidden; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} - -@keyframes slideOutDown { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 100% { - visibility: hidden; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} - -.slideOutDown { - -webkit-animation-name: slideOutDown; - animation-name: slideOutDown; -} - -@-webkit-keyframes slideOutLeft { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 100% { - visibility: hidden; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -@keyframes slideOutLeft { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 100% { - visibility: hidden; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} - -.slideOutLeft { - -webkit-animation-name: slideOutLeft; - animation-name: slideOutLeft; -} - -@-webkit-keyframes slideOutRight { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 100% { - visibility: hidden; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -@keyframes slideOutRight { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 100% { - visibility: hidden; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} - -.slideOutRight { - -webkit-animation-name: slideOutRight; - animation-name: slideOutRight; -} - -@-webkit-keyframes slideOutUp { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 100% { - visibility: hidden; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} - -@keyframes slideOutUp { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 100% { - visibility: hidden; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} - -.slideOutUp { - -webkit-animation-name: slideOutUp; - animation-name: slideOutUp; -} - -@keyframes anime { - from { - opacity: 0; - transform: scaleY(0); - -webkit-transform: scaleY(0); - -moz-transform: scaleY(0); - -ms-transform: scaleY(0); - -o-transform: scaleY(0); - } - - to { - opacity: 1; - transform: scaleY(1); - -webkit-transform: scaleY(1); - -ms-transform: scaleY(1); - -o-transform: scaleY(1); - -moz-transform: scaleY(1); - } -} - -@-webkit-keyframes anime { - from { - opacity: 0; - transform: scaleY(0); - -webkit-transform: scaleY(0); - -moz-transform: scaleY(0); - -ms-transform: scaleY(0); - -o-transform: scaleY(0); - } - - to { - opacity: 1; - transform: scaleY(1); - -webkit-transform: scaleY(1); - -ms-transform: scaleY(1); - -o-transform: scaleY(1); - -moz-transform: scaleY(1); - } -} - -@-moz-keyframes anime { - from { - opacity: 0; - transform: scaleY(0); - -webkit-transform: scaleY(0); - -moz-transform: scaleY(0); - -ms-transform: scaleY(0); - -o-transform: scaleY(0); - } - - to { - opacity: 1; - transform: scaleY(1); - -webkit-transform: scaleY(1); - -ms-transform: scaleY(1); - -o-transform: scaleY(1); - -moz-transform: scaleY(1); - } -} - -@-o-keyframes anime { - from { - opacity: 0; - transform: scaleY(0); - -webkit-transform: scaleY(0); - -moz-transform: scaleY(0); - -ms-transform: scaleY(0); - -o-transform: scaleY(0); - } - - to { - opacity: 1; - transform: scaleY(1); - -webkit-transform: scaleY(1); - -ms-transform: scaleY(1); - -o-transform: scaleY(1); - -moz-transform: scaleY(1); - } -} - -@-ms-keyframes anime { - from { - opacity: 0; - transform: scaleY(0); - -webkit-transform: scaleY(0); - -moz-transform: scaleY(0); - -ms-transform: scaleY(0); - -o-transform: scaleY(0); - } - - to { - opacity: 1; - transform: scaleY(1); - -webkit-transform: scaleY(1); - -ms-transform: scaleY(1); - -o-transform: scaleY(1); - -moz-transform: scaleY(1); - } -} - -@keyframes float-bob-y { - 0% { - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } - - 50% { - -webkit-transform: translateY(-10px); - transform: translateY(-10px); - } - - 100% { - -webkit-transform: translateY(-20px); - transform: translateY(-20px); - } -} - -@keyframes float-bob-x { - 0% { - -webkit-transform: translateX(-100px); - transform: translateX(-100px); - } - - 50% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 100% { - -webkit-transform: translateX(-100px); - transform: translateX(-100px); - } -} - -@keyframes float-bob { - 0% { - -webkit-transform: translateX(-430px); - transform: translateX(-430px); - } - - 50% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 100% { - -webkit-transform: translateX(-430px); - transform: translateX(-430px); - } -} - -@-webkit-keyframes zoom-fade { - 0% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - } - - 50% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - } -} - -@keyframes zoom-fade { - 0% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - } - - 50% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - -webkit-transform: scale(0.9); - transform: scale(0.9); - } -} - -@-webkit-keyframes zoom-fade-two { - 0% { - -webkit-transform: scale(1.5); - transform: scale(1.5); - } - - 50% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - -webkit-transform: scale(1.5); - transform: scale(1.5); - } -} - -@keyframes zoom-fade-two { - 0% { - -webkit-transform: scale(1.5); - transform: scale(1.5); - } - - 50% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 100% { - -webkit-transform: scale(1.5); - transform: scale(1.5); - } -} - -.banner .parallax-container div img, -.fullwidth-video-section .play-link .icon-box { - animation-name: zoom-fade; - animation-duration: 5s; - animation-iteration-count: infinite; - animation-timing-function: linear; - -webkit-animation-name: zoom-fade; - -webkit-animation-duration: 5s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; - -moz-animation-name: zoom-fade; - -moz-animation-duration: 5s; - -moz-animation-iteration-count: infinite; - -moz-animation-timing-function: linear; - -ms-animation-name: zoom-fade; - -ms-animation-duration: 5s; - -ms-animation-iteration-count: infinite; - -ms-animation-timing-function: linear; - -o-animation-name: zoom-fade; - -o-animation-duration: 5s; - -o-animation-iteration-count: infinite; - -o-animation-timing-function: linear; -} - -@keyframes rotateme { - from { - transform: rotate(0deg); - } - - to { - transform: rotate(360deg); - } -} - -@-webkit-keyframes rotateme { - from { - -webkit-transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(360deg); - } -} - -@-moz-keyframes rotateme { - from { - -moz-transform: rotate(0deg); - } - - to { - -moz-transform: rotate(360deg); - } -} - -@-o-keyframes rotateme { - from { - -o-transform: rotate(0deg); - } - - to { - -o-transform: rotate(360deg); - } -} - -.page-banner .icon-one, -.main-banner .icon-one { - animation-name: rotateme; - animation-duration: 7s; - animation-iteration-count: infinite; - animation-timing-function: linear; - -webkit-animation-name: rotateme; - -webkit-animation-duration: 7s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; - -moz-animation-name: rotateme; - -moz-animation-duration: 7s; - -moz-animation-iteration-count: infinite; - -moz-animation-timing-function: linear; - -ms-animation-name: rotateme; - -ms-animation-duration: 7s; - -ms-animation-iteration-count: infinite; - -ms-animation-timing-function: linear; - -o-animation-name: rotateme; - -o-animation-duration: 7s; - -o-animation-iteration-count: infinite; - -o-animation-timing-function: linear; -} - -.how-it-works:before, -.main-banner .icon-six, -.main-banner .icon-two, -.page-banner .icon-six, -.page-banner .icon-two, -.rotate-me { - animation-name: rotateme; - animation-duration: 24s; - animation-iteration-count: infinite; - animation-timing-function: linear; - -webkit-animation-name: rotateme; - -webkit-animation-duration: 24s; - -webkit-animation-iteration-count: infinite; - -webkit-animation-timing-function: linear; - -moz-animation-name: rotateme; - -moz-animation-duration: 24s; - -moz-animation-iteration-count: infinite; - -moz-animation-timing-function: linear; - -ms-animation-name: rotateme; - -ms-animation-duration: 24s; - -ms-animation-iteration-count: infinite; - -ms-animation-timing-function: linear; - -o-animation-name: rotateme; - -o-animation-duration: 24s; - -o-animation-iteration-count: infinite; - -o-animation-timing-function: linear; -} - -@-webkit-keyframes footer-animate { - 0% { - -webkit-transform: translateX(-1000px); - transform: translateX(-1000px); - } - - 50% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 100% { - -webkit-transform: translateX(-1000px); - transform: translateX(-1000px); - } -} - -@keyframes footer-animate { - 0% { - -webkit-transform: translateX(-1000px); - transform: translateX(-1000px); - } - - 50% { - -webkit-transform: translateX(-10px); - transform: translateX(-10px); - } - - 100% { - -webkit-transform: translateX(-1000px); - transform: translateX(-1000px); - } -} - - -/*============================================ - - 02 -- Prism JS - -==============================================*/ - -/* PrismJS 1.15.0 -https://prismjs.com/download.html#themes=prism-coy&languages=markup+css+clike+javascript&plugins=line-numbers */ -/** - * prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML - * Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics); - * @author Tim Shedor - */ - -code[class*="language-"], -pre[class*="language-"] { - color: black; - background: none; - font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; - text-align: left; - white-space: pre; - word-spacing: normal; - word-break: normal; - word-wrap: normal; - line-height: 1.5; - - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - - -webkit-hyphens: none; - -moz-hyphens: none; - -ms-hyphens: none; - hyphens: none; -} - -/* Code blocks */ -pre[class*="language-"] { - position: relative; - margin: .5em 0; - overflow: visible; - padding: 0; -} - -pre[class*="language-"]>code { - position: relative; - border-left: 10px solid #358ccb; - box-shadow: -1px 0px 0px 0px #358ccb, 0px 0px 0px 1px #dfdfdf; - background-color: #fdfdfd; - background-image: linear-gradient(transparent 50%, rgba(69, 142, 209, 0.04) 50%); - background-size: 3em 3em; - background-origin: content-box; - background-attachment: local; -} - -code[class*="language"] { - max-height: inherit; - height: inherit; - padding: 0 1em; - display: block; - overflow: auto; -} - -/* Margin bottom to accommodate shadow */ -:not(pre)>code[class*="language-"], -pre[class*="language-"] { - background-color: #fdfdfd; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - margin-bottom: 1em; -} - -/* Inline code */ -:not(pre)>code[class*="language-"] { - position: relative; - padding: .2em; - border-radius: 0.3em; - color: #c92c2c; - border: 1px solid rgba(0, 0, 0, 0.1); - display: inline; - white-space: normal; -} - -pre[class*="language-"]:before, -pre[class*="language-"]:after { - content: ''; - z-index: -2; - display: block; - position: absolute; - bottom: 0.75em; - left: 0.18em; - width: 40%; - height: 20%; - max-height: 13em; - box-shadow: 0px 13px 8px #979797; - -webkit-transform: rotate(-2deg); - -moz-transform: rotate(-2deg); - -ms-transform: rotate(-2deg); - -o-transform: rotate(-2deg); - transform: rotate(-2deg); -} - -:not(pre)>code[class*="language-"]:after, -pre[class*="language-"]:after { - right: 0.75em; - left: auto; - -webkit-transform: rotate(2deg); - -moz-transform: rotate(2deg); - -ms-transform: rotate(2deg); - -o-transform: rotate(2deg); - transform: rotate(2deg); -} - -.token.comment, -.token.block-comment, -.token.prolog, -.token.doctype, -.token.cdata { - color: #7D8B99; -} - -.token.punctuation { - color: #5F6364; -} - -.token.property, -.token.tag, -.token.boolean, -.token.number, -.token.function-name, -.token.constant, -.token.symbol, -.token.deleted { - color: #c92c2c; -} - -.token.selector, -.token.attr-name, -.token.string, -.token.char, -.token.function, -.token.builtin, -.token.inserted { - color: #2f9c0a; -} - -.token.operator, -.token.entity, -.token.url, -.token.variable { - color: #a67f59; - background: rgba(255, 255, 255, 0.5); -} - -.token.atrule, -.token.attr-value, -.token.keyword, -.token.class-name { - color: #1990b8; -} - -.token.regex, -.token.important { - color: #e90; -} - -.language-css .token.string, -.style .token.string { - color: #a67f59; - background: rgba(255, 255, 255, 0.5); -} - -.token.important { - font-weight: normal; -} - -.token.bold { - font-weight: bold; -} - -.token.italic { - font-style: italic; -} - -.token.entity { - cursor: help; -} - -.namespace { - opacity: .7; -} - -@media screen and (max-width: 767px) { - - pre[class*="language-"]:before, - pre[class*="language-"]:after { - bottom: 14px; - box-shadow: none; - } - -} - -/* Plugin styles */ -.token.tab:not(:empty):before, -.token.cr:before, -.token.lf:before { - color: #e0d7d1; -} - -/* Plugin styles: Line Numbers */ -pre[class*="language-"].line-numbers.line-numbers { - padding-left: 0; -} - -pre[class*="language-"].line-numbers.line-numbers code { - padding-left: 3.8em; -} - -pre[class*="language-"].line-numbers.line-numbers .line-numbers-rows { - left: 0; -} - -/* Plugin styles: Line Highlight */ -pre[class*="language-"][data-line] { - padding-top: 0; - padding-bottom: 0; - padding-left: 0; -} - -pre[data-line] code { - position: relative; - padding-left: 4em; -} - -pre .line-highlight { - margin-top: 0; -} - -pre[class*="language-"].line-numbers { - position: relative; - padding-left: 3.8em; - counter-reset: linenumber; -} - -pre[class*="language-"].line-numbers>code { - position: relative; - white-space: inherit; -} - -.line-numbers .line-numbers-rows { - position: absolute; - pointer-events: none; - top: 0; - font-size: 100%; - left: -3.8em; - width: 3em; - /* works for line-numbers below 1000 lines */ - letter-spacing: -1px; - border-right: 1px solid #999; - - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -} - -.line-numbers-rows>span { - pointer-events: none; - display: block; - counter-increment: linenumber; -} - -.line-numbers-rows>span:before { - content: counter(linenumber); - color: #999; - display: block; - padding-right: 0.8em; - text-align: right; -} - -/*============================================ - - 03 -- Custom Scrollbar - -==============================================*/ - -.mCustomScrollbar { - -ms-touch-action: pinch-zoom; - touch-action: pinch-zoom -} - -.mCustomScrollbar.mCS_no_scrollbar, -.mCustomScrollbar.mCS_touch_action { - -ms-touch-action: auto; - touch-action: auto -} - -.mCustomScrollBox { - position: relative; - overflow: hidden; - height: 100%; - max-width: 100%; - outline: 0; - direction: ltr -} - -.mCSB_container { - overflow: hidden; - width: auto; - height: auto -} - -.mCSB_inside>.mCSB_container { - margin-right: 30px -} - -.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden { - margin-right: 0 -} - -.mCS-dir-rtl>.mCSB_inside>.mCSB_container { - margin-right: 0; - margin-left: 30px -} - -.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden { - margin-left: 0 -} - -.mCSB_scrollTools { - position: absolute; - width: 16px; - height: auto; - left: auto; - top: 0; - right: 0; - bottom: 0; - opacity: .75; - filter: "alpha(opacity=75)"; - -ms-filter: "alpha(opacity=75)" -} - -.mCSB_outside+.mCSB_scrollTools { - right: -26px -} - -.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools, -.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools { - right: auto; - left: 0 -} - -.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools { - left: -26px -} - -.mCSB_scrollTools .mCSB_draggerContainer { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - height: auto -} - -.mCSB_scrollTools a+.mCSB_draggerContainer { - margin: 20px 0 -} - -.mCSB_scrollTools .mCSB_draggerRail { - width: 2px; - height: 100%; - margin: 0 auto; - -webkit-border-radius: 16px; - -moz-border-radius: 16px; - border-radius: 16px -} - -.mCSB_scrollTools .mCSB_dragger { - cursor: pointer; - width: 100%; - height: 30px; - z-index: 1 -} - -.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - position: relative; - width: 4px; - height: 100%; - margin: 0 auto; - -webkit-border-radius: 16px; - -moz-border-radius: 16px; - border-radius: 16px; - text-align: center -} - -.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, -.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar { - width: 12px -} - -.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail { - width: 8px -} - -.mCSB_scrollTools .mCSB_buttonDown, -.mCSB_scrollTools .mCSB_buttonUp { - display: block; - position: absolute; - height: 20px; - width: 100%; - overflow: hidden; - margin: 0 auto; - cursor: pointer -} - -.mCSB_scrollTools .mCSB_buttonDown { - bottom: 0 -} - -.mCSB_horizontal.mCSB_inside>.mCSB_container { - margin-right: 0; - margin-bottom: 30px -} - -.mCSB_horizontal.mCSB_outside>.mCSB_container { - min-height: 100% -} - -.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden { - margin-bottom: 0 -} - -.mCSB_scrollTools.mCSB_scrollTools_horizontal { - width: auto; - height: 16px; - top: auto; - right: 0; - bottom: 0; - left: 0 -} - -.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal, -.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal { - bottom: -26px -} - -.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer { - margin: 0 20px -} - -.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail { - width: 100%; - height: 2px; - margin: 7px 0 -} - -.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger { - width: 30px; - height: 100%; - left: 0 -} - -.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - width: 100%; - height: 4px; - margin: 6px auto -} - -.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, -.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar { - height: 12px; - margin: 2px auto -} - -.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail { - height: 8px; - margin: 4px 0 -} - -.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft, -.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight { - display: block; - position: absolute; - width: 20px; - height: 100%; - overflow: hidden; - margin: 0 auto; - cursor: pointer -} - -.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft { - left: 0 -} - -.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight { - right: 0 -} - -.mCSB_container_wrapper { - position: absolute; - height: auto; - width: auto; - overflow: hidden; - top: 0; - left: 0; - right: 0; - bottom: 0; - margin-right: 30px; - margin-bottom: 30px -} - -.mCSB_container_wrapper>.mCSB_container { - padding-right: 30px; - padding-bottom: 30px; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box -} - -.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical { - bottom: 20px -} - -.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal { - right: 20px -} - -.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical { - bottom: 0 -} - -.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal, -.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal { - right: 0 -} - -.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal { - left: 20px -} - -.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal { - left: 0 -} - -.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper { - margin-right: 0; - margin-left: 30px -} - -.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container { - padding-right: 0 -} - -.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container { - padding-bottom: 0 -} - -.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden { - margin-right: 0; - margin-left: 0 -} - -.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden { - margin-bottom: 0 -} - -.mCSB_scrollTools, -.mCSB_scrollTools .mCSB_buttonDown, -.mCSB_scrollTools .mCSB_buttonLeft, -.mCSB_scrollTools .mCSB_buttonRight, -.mCSB_scrollTools .mCSB_buttonUp, -.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; - -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; - -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out; - transition: opacity .2s ease-in-out, background-color .2s ease-in-out -} - -.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, -.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, -.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, -.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar { - -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; - -moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; - -o-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out; - transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out -} - -.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools, -.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools { - opacity: 0; - filter: "alpha(opacity=0)"; - -ms-filter: "alpha(opacity=0)" -} - -.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools, -.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools, -.mCustomScrollBox:hover>.mCSB_scrollTools, -.mCustomScrollBox:hover~.mCSB_scrollTools, -.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag, -.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag { - opacity: 1; - filter: "alpha(opacity=100)"; - -ms-filter: "alpha(opacity=100)" -} - -.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .4); - filter: "alpha(opacity=40)"; - -ms-filter: "alpha(opacity=40)" -} - -.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .75); - filter: "alpha(opacity=75)"; - -ms-filter: "alpha(opacity=75)" -} - -.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .85); - filter: "alpha(opacity=85)"; - -ms-filter: "alpha(opacity=85)" -} - -.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .9); - filter: "alpha(opacity=90)"; - -ms-filter: "alpha(opacity=90)" -} - -.mCSB_scrollTools .mCSB_buttonDown, -.mCSB_scrollTools .mCSB_buttonLeft, -.mCSB_scrollTools .mCSB_buttonRight, -.mCSB_scrollTools .mCSB_buttonUp { - background-image: url(mCSB_buttons.png); - background-repeat: no-repeat; - opacity: .4; - filter: "alpha(opacity=40)"; - -ms-filter: "alpha(opacity=40)" -} - -.mCSB_scrollTools .mCSB_buttonUp { - background-position: 0 0 -} - -.mCSB_scrollTools .mCSB_buttonDown { - background-position: 0 -20px -} - -.mCSB_scrollTools .mCSB_buttonLeft { - background-position: 0 -40px -} - -.mCSB_scrollTools .mCSB_buttonRight { - background-position: 0 -56px -} - -.mCSB_scrollTools .mCSB_buttonDown:hover, -.mCSB_scrollTools .mCSB_buttonLeft:hover, -.mCSB_scrollTools .mCSB_buttonRight:hover, -.mCSB_scrollTools .mCSB_buttonUp:hover { - opacity: .75; - filter: "alpha(opacity=75)"; - -ms-filter: "alpha(opacity=75)" -} - -.mCSB_scrollTools .mCSB_buttonDown:active, -.mCSB_scrollTools .mCSB_buttonLeft:active, -.mCSB_scrollTools .mCSB_buttonRight:active, -.mCSB_scrollTools .mCSB_buttonUp:active { - opacity: .9; - filter: "alpha(opacity=90)"; - -ms-filter: "alpha(opacity=90)" -} - -.mCS-dark.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .15) -} - -.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .75) -} - -.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: rgba(0, 0, 0, .85) -} - -.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: rgba(0, 0, 0, .9) -} - -.mCS-dark.mCSB_scrollTools .mCSB_buttonUp { - background-position: -80px 0 -} - -.mCS-dark.mCSB_scrollTools .mCSB_buttonDown { - background-position: -80px -20px -} - -.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -80px -40px -} - -.mCS-dark.mCSB_scrollTools .mCSB_buttonRight { - background-position: -80px -56px -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail, -.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail { - width: 4px; - background-color: #fff; - background-color: rgba(255, 255, 255, .1); - -webkit-border-radius: 1px; - -moz-border-radius: 1px; - border-radius: 1px -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - width: 4px; - background-color: #fff; - background-color: rgba(255, 255, 255, .75); - -webkit-border-radius: 1px; - -moz-border-radius: 1px; - border-radius: 1px -} - -.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail { - width: 100%; - height: 4px; - margin: 6px auto -} - -.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .85) -} - -.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .9) -} - -.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp { - background-position: -32px 0 -} - -.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown { - background-position: -32px -20px -} - -.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -40px -40px -} - -.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight { - background-position: -40px -56px -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .1); - -webkit-border-radius: 1px; - -moz-border-radius: 1px; - border-radius: 1px -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .75); - -webkit-border-radius: 1px; - -moz-border-radius: 1px; - border-radius: 1px -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .85) -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .9) -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp { - background-position: -112px 0 -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown { - background-position: -112px -20px -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -120px -40px -} - -.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight { - background-position: -120px -56px -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail, -.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail { - width: 4px; - background-color: #fff; - background-color: rgba(255, 255, 255, .1); - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - border-radius: 2px -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - width: 6px; - background-color: #fff; - background-color: rgba(255, 255, 255, .75); - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - border-radius: 2px -} - -.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail { - width: 100%; - height: 4px; - margin: 6px 0 -} - -.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - width: 100%; - height: 6px; - margin: 5px auto -} - -.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .85) -} - -.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .9) -} - -.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp { - background-position: -16px 0 -} - -.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown { - background-position: -16px -20px -} - -.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -20px -40px -} - -.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight { - background-position: -20px -56px -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .1); - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - border-radius: 2px -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .75); - -webkit-border-radius: 2px; - -moz-border-radius: 2px; - border-radius: 2px -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .85) -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .9) -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp { - background-position: -96px 0 -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown { - background-position: -96px -20px -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -100px -40px -} - -.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight { - background-position: -100px -56px -} - -.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail { - background-color: #fff; - background-color: rgba(255, 255, 255, .1) -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - width: 2px -} - -.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail { - width: 100% -} - -.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - width: 100%; - height: 2px; - margin: 7px auto -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .15) -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .75) -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .85) -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .9) -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp { - background-position: -80px 0 -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown { - background-position: -80px -20px -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -80px -40px -} - -.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight { - background-position: -80px -56px -} - -.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail { - background-color: #fff; - background-color: rgba(255, 255, 255, .15) -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger, -.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, -.mCS-rounded.mCSB_scrollTools .mCSB_dragger { - height: 14px -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - width: 14px; - margin: 0 1px -} - -.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, -.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger, -.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, -.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger { - width: 14px -} - -.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - height: 14px; - margin: 1px 0 -} - -.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, -.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, -.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar { - width: 16px; - height: 16px; - margin: -1px 0 -} - -.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, -.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail { - width: 4px -} - -.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, -.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, -.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar { - height: 16px; - width: 16px; - margin: 0 -1px -} - -.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, -.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail { - height: 4px; - margin: 6px 0 -} - -.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp { - background-position: 0 -72px -} - -.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown { - background-position: 0 -92px -} - -.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft { - background-position: 0 -112px -} - -.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight { - background-position: 0 -128px -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .75) -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .15) -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .85) -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .9) -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp { - background-position: -80px -72px -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown { - background-position: -80px -92px -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -80px -112px -} - -.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight { - background-position: -80px -128px -} - -.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail, -.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail { - width: 4px -} - -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, -.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail { - background-color: transparent; - background-position: center -} - -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==); - background-repeat: repeat-y; - opacity: .3; - filter: "alpha(opacity=30)"; - -ms-filter: "alpha(opacity=30)" -} - -.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail { - height: 4px; - margin: 6px 0; - background-repeat: repeat-x -} - -.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp { - background-position: -16px -72px -} - -.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown { - background-position: -16px -92px -} - -.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -20px -112px -} - -.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight { - background-position: -20px -128px -} - -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=) -} - -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp { - background-position: -96px -72px -} - -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown { - background-position: -96px -92px -} - -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -100px -112px -} - -.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight { - background-position: -100px -128px -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-repeat: repeat-y; - background-image: -moz-linear-gradient(left, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%); - background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, .5)), color-stop(100%, rgba(255, 255, 255, 0))); - background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%); - background-image: -o-linear-gradient(left, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%); - background-image: -ms-linear-gradient(left, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%); - background-image: linear-gradient(to right, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%) -} - -.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - background-repeat: repeat-x; - background-image: -moz-linear-gradient(top, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%); - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, .5)), color-stop(100%, rgba(255, 255, 255, 0))); - background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%); - background-image: -o-linear-gradient(top, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%); - background-image: -ms-linear-gradient(top, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%); - background-image: linear-gradient(to bottom, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 100%) -} - -.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger, -.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger { - height: 70px -} - -.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger, -.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger { - width: 70px -} - -.mCS-3d-dark.mCSB_scrollTools, -.mCS-3d.mCSB_scrollTools { - opacity: 1; - filter: "alpha(opacity=30)"; - -ms-filter: "alpha(opacity=30)" -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools .mCSB_draggerRail { - -webkit-border-radius: 16px; - -moz-border-radius: 16px; - border-radius: 16px -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-3d.mCSB_scrollTools .mCSB_draggerRail { - width: 8px; - background-color: #000; - background-color: rgba(0, 0, 0, .2); - box-shadow: inset 1px 0 1px rgba(0, 0, 0, .5), inset -1px 0 1px rgba(255, 255, 255, .2) -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, -.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #555 -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - width: 8px -} - -.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail { - width: 100%; - height: 8px; - margin: 4px 0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .5), inset 0 -1px 1px rgba(255, 255, 255, .2) -} - -.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - width: 100%; - height: 8px; - margin: 4px auto -} - -.mCS-3d.mCSB_scrollTools .mCSB_buttonUp { - background-position: -32px -72px -} - -.mCS-3d.mCSB_scrollTools .mCSB_buttonDown { - background-position: -32px -92px -} - -.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -40px -112px -} - -.mCS-3d.mCSB_scrollTools .mCSB_buttonRight { - background-position: -40px -128px -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .1); - box-shadow: inset 1px 0 1px rgba(0, 0, 0, .1) -} - -.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail { - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1) -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp { - background-position: -112px -72px -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown { - background-position: -112px -92px -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -120px -112px -} - -.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight { - background-position: -120px -128px -} - -.mCS-3d-thick-dark.mCSB_scrollTools, -.mCS-3d-thick.mCSB_scrollTools { - opacity: 1; - filter: "alpha(opacity=30)"; - -ms-filter: "alpha(opacity=30)" -} - -.mCS-3d-thick-dark.mCSB_scrollTools, -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer, -.mCS-3d-thick.mCSB_scrollTools, -.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer { - -webkit-border-radius: 7px; - -moz-border-radius: 7px; - border-radius: 7px -} - -.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical, -.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical { - right: 1px -} - -.mCS-3d-thick-dark.mCSB_scrollTools_vertical, -.mCS-3d-thick.mCSB_scrollTools_vertical { - box-shadow: inset 1px 0 1px rgba(0, 0, 0, .1), inset 0 0 14px rgba(0, 0, 0, .5) -} - -.mCS-3d-thick-dark.mCSB_scrollTools_horizontal, -.mCS-3d-thick.mCSB_scrollTools_horizontal { - bottom: 1px; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1), inset 0 0 14px rgba(0, 0, 0, .5) -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - box-shadow: inset 1px 0 0 rgba(255, 255, 255, .4); - width: 12px; - margin: 2px; - position: absolute; - height: auto; - top: 0; - bottom: 0; - left: 0; - right: 0 -} - -.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4); - height: 12px; - width: auto -} - -.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, -.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #555 -} - -.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer { - background-color: #000; - background-color: rgba(0, 0, 0, .05); - box-shadow: inset 1px 1px 16px rgba(0, 0, 0, .1) -} - -.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail { - background-color: transparent -} - -.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp { - background-position: -32px -72px -} - -.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown { - background-position: -32px -92px -} - -.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -40px -112px -} - -.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight { - background-position: -40px -128px -} - -.mCS-3d-thick-dark.mCSB_scrollTools { - box-shadow: inset 0 0 14px rgba(0, 0, 0, .2) -} - -.mCS-3d-thick-dark.mCSB_scrollTools_horizontal { - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1), inset 0 0 14px rgba(0, 0, 0, .2) -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - box-shadow: inset 1px 0 0 rgba(255, 255, 255, .4), inset -1px 0 0 rgba(0, 0, 0, .2) -} - -.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), inset 0 -1px 0 rgba(0, 0, 0, .2) -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #777 -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer { - background-color: #fff; - background-color: rgba(0, 0, 0, .05); - box-shadow: inset 1px 1px 16px rgba(0, 0, 0, .1) -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail { - background-color: transparent -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp { - background-position: -112px -72px -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown { - background-position: -112px -92px -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -120px -112px -} - -.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight { - background-position: -120px -128px -} - -.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical, -.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical { - right: 0; - margin: 12px 0 -} - -.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal, -.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal, -.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal, -.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal { - bottom: 0; - margin: 0 12px -} - -.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical, -.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical { - left: 0; - right: auto -} - -.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger, -.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger { - height: 50px -} - -.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger, -.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger { - width: 50px -} - -.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .2); - filter: "alpha(opacity=20)"; - -ms-filter: "alpha(opacity=20)" -} - -.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .5); - filter: "alpha(opacity=50)"; - -ms-filter: "alpha(opacity=50)" -} - -.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .2); - filter: "alpha(opacity=20)"; - -ms-filter: "alpha(opacity=20)" -} - -.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .5); - filter: "alpha(opacity=50)"; - -ms-filter: "alpha(opacity=50)" -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail, -.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail { - width: 6px; - background-color: #000; - background-color: rgba(0, 0, 0, .2) -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - width: 6px -} - -.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail { - width: 100%; - height: 6px; - margin: 5px 0 -} - -.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, -.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail { - width: 12px -} - -.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, -.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail, -.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail { - height: 12px; - margin: 2px 0 -} - -.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp { - background-position: -32px -72px -} - -.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown { - background-position: -32px -92px -} - -.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -40px -112px -} - -.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight { - background-position: -40px -128px -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .75) -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .85) -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .9) -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .1) -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp { - background-position: -112px -72px -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown { - background-position: -112px -92px -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -120px -112px -} - -.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight { - background-position: -120px -128px -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, -.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-inset.mCSB_scrollTools .mCSB_draggerRail { - width: 12px; - background-color: #000; - background-color: rgba(0, 0, 0, .2) -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - width: 6px; - margin: 3px 5px; - position: absolute; - height: auto; - top: 0; - bottom: 0; - left: 0; - right: 0 -} - -.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { - height: 6px; - margin: 5px 3px; - position: absolute; - width: auto; - top: 0; - bottom: 0; - left: 0; - right: 0 -} - -.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, -.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail { - width: 100%; - height: 12px; - margin: 2px 0 -} - -.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, -.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp, -.mCS-inset.mCSB_scrollTools .mCSB_buttonUp { - background-position: -32px -72px -} - -.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, -.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown, -.mCS-inset.mCSB_scrollTools .mCSB_buttonDown { - background-position: -32px -92px -} - -.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, -.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft, -.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -40px -112px -} - -.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, -.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight, -.mCS-inset.mCSB_scrollTools .mCSB_buttonRight { - background-position: -40px -128px -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, -.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .75) -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, -.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .85) -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, -.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .9) -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .1) -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp, -.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp { - background-position: -112px -72px -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown, -.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown { - background-position: -112px -92px -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft, -.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft { - background-position: -120px -112px -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight, -.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight { - background-position: -120px -128px -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, -.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail { - background-color: transparent; - border-width: 1px; - border-style: solid; - border-color: #fff; - border-color: rgba(255, 255, 255, .2); - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box -} - -.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail { - border-color: #000; - border-color: rgba(0, 0, 0, .2) -} - -.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail { - background-color: #fff; - background-color: rgba(255, 255, 255, .6) -} - -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail { - background-color: #000; - background-color: rgba(0, 0, 0, .6) -} - -.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .75) -} - -.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .85) -} - -.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #000; - background-color: rgba(0, 0, 0, .9) -} - -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .75) -} - -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .85) -} - -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, -.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar { - background-color: #fff; - background-color: rgba(255, 255, 255, .9) -} \ No newline at end of file diff --git a/desarrollo/diseno/support-center/css/style.css b/desarrollo/diseno/support-center/css/style.css deleted file mode 100644 index 5bf57a9e..00000000 --- a/desarrollo/diseno/support-center/css/style.css +++ /dev/null @@ -1,3745 +0,0 @@ -/* - - Template Name: Docuto - Documentation HTML Template - Author: Acavo - Version: 1.0.0 - Created: Oct 2020 - File Description: Main Css file of the template - -*/ -/*========================================== - INDEX -============================================ -// -// 01 -- Variables -// 02 -- Predefine -// 03 -- Components -// 04 -- Header -// 05 -- Popup -// 06 -- Hero -// 07 -- Topic -// 08 -- Faq -// 09 -- Team -// 10 -- Changelog -// 11 -- Article -// 12 -- Documentation -// 13 -- Blog -// 14 -- Contact -// 15 -- User -// 16 -- Newsletter -// 17 -- Footer -// -=============================================*/ -/*============================================ - - 01 -- Variables - -==============================================*/ -@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap"); -/*============================================ - - 02 -- Predefine - -==============================================*/ -.list { - list-style: none; - margin: 0px; - padding: 0px; -} - -a { - text-decoration: none; - color: #41465b; -} - -a:hover, a:focus { - text-decoration: none; - outline: none; - color: #E63108; -} - -ul { - list-style: outside none none; -} - -.row.m0 { - margin: 0px; -} - -body { - line-height: 30px; - font-size: 16px; - font-family: "Nunito", sans-serif; - font-weight: 400; - color: #41465b; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: #2b303d; - font-family: "Rubik", sans-serif; - font-weight: 700; -} - -i:before { - margin-left: 0px !important; -} - -button:focus { - outline: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -.body_wrapper { - overflow: hidden; - height: 100%; -} - -::-webkit-scrollbar { - width: 8px; - height: 8px; -} - -::-webkit-scrollbar-thumb { - cursor: pointer; - background: #E63108; -} - -::-moz-selection { - background-color: #E63108; - color: #fff; -} - -::selection { - background-color: #E63108; - color: #fff; -} - --webkit-::-moz-selection { - background-color: #E63108; - color: #fff; -} - --webkit-::selection { - background-color: #E63108; - color: #fff; -} - -::-moz-selection { - background-color: #E63108; - color: #fff; -} - -/*============================================ - - 03 -- Components - -==============================================*/ -/*-- Section Heading --*/ -.section-heading { - position: relative; - z-index: 1; -} - -.section-heading .section-meta { - display: inline-block; - text-transform: uppercase; - font-size: 14px; - color: #E63108; - background-color: rgba(235, 136, 78, 0.13); - padding: 5px 10px; - border-radius: 25px; - letter-spacing: 0.6px; - margin-bottom: 15px; - font-weight: 500; -} - -.section-heading .section-title { - font-size: 45px; - font-weight: 600; -} - -@media (max-width: 425px) { - .section-heading .section-title { - font-size: 40px; - } -} - -@media (max-width: 320px) { - .section-heading .section-title { - font-size: 35px; - } -} - -.section-heading .section-sub { - color: #989db5; - margin-top: 12px; - font-size: 18px; -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .section-heading .section-title br { - display: none; - } -} - -@media only screen and (min-width: 576px) and (max-width: 767px) { - .section-heading .section-title br { - display: none; - } -} - -@media only screen and (min-width: 320px) and (max-width: 479px) { - .section-heading .section-title br { - display: none; - } -} - -/*-- Section Divider --*/ -.section-divider { - position: relative; - width: 90px; - height: 3px; - margin-top: 26px; - margin-bottom: 30px; -} - -.section-divider:before { - position: absolute; - content: ""; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 30px; - background-color: #E63108; -} - -.section-divider:after { - position: absolute; - content: ""; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border-radius: 30px; - background-color: #E63108; - right: 25px; - left: auto; - background-color: #fff; - width: 10px; - border-radius: 0; -} - -/*-- Breadcrumbs --*/ -.breadcrumb { - letter-spacing: 0.5px; - padding: 0; - display: block; - background: transparent; -} - -.breadcrumb .breadcrumb-item { - font-size: 16px; - font-weight: 600; - padding-left: 0; - display: inline-block; -} - -.breadcrumb .breadcrumb-item a { - color: #41465b; -} - -.breadcrumb .breadcrumb-item a:hover { - color: #E63108; -} - -.breadcrumb .breadcrumb-item.active { - color: #E63108; -} - -.breadcrumb .breadcrumb-item:before { - content: ""; -} - -.breadcrumb .breadcrumb-item:after { - content: "\f105" !important; - font-size: 14px; - color: #2b303d; - font-family: "Line Awesome Free"; - padding-left: 5px; -} - -.breadcrumb .breadcrumb-item:last-child:after { - display: none; -} - -.bg-half-150 { - padding: 150px 0; - background-size: cover; - -ms-flex-item-align: center; - -ms-grid-row-align: center; - align-self: center; - position: relative; - background-position: center center; -} - - -/* Preloader */ -#preloader { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color:#fff; - z-index: 999999; -} - -#loader { - display: block; - position: relative; - left: 50%; - top: 50%; - width: 150px; - height: 150px; - margin: -75px 0 0 -75px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #003b73; - -webkit-animation: spin 2s linear infinite; - animation: spin 2s linear infinite; -} - -#loader:before { - content: ""; - position: absolute; - top: 5px; - left: 5px; - right: 5px; - bottom: 5px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #E63108; - -webkit-animation: spin 3s linear infinite; - animation: spin 3s linear infinite; -} - -#loader:after { - content: ""; - position: absolute; - top: 15px; - left: 15px; - right: 15px; - bottom: 15px; - border-radius: 50%; - border: 3px solid transparent; - border-top-color: #000; - -webkit-animation: spin 1.5s linear infinite; - animation: spin 1.5s linear infinite; -} - -@-webkit-keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes spin { - 0% { - -webkit-transform: rotate(0deg); - -ms-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - -ms-transform: rotate(360deg); - transform: rotate(360deg); - } -} - - - -/*-- btn --*/ -.theme-btn { - width: 200px; - font-size: 16px; - font-weight: 600; - color: #fff; - cursor: pointer; - padding: 20px 55px; - text-align: center; - border: none; - background-size: 300% 100%; - border-radius: 50px; - -webkit-transition: all 0.4s ease-in-out; - transition: all 0.4s ease-in-out; - background-image: -webkit-gradient(linear, left top, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background-image: linear-gradient(to right, #E63108, #E63108, #E63108, #E63108, #E63108); - -webkit-box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); - box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); -} - -.theme-btn:hover { - background-position: 100% 0; - -webkit-transition: all 0.4s ease-in-out; - transition: all 0.4s ease-in-out; - color: #fff; -} - -.theme-btn:focus { - outline: none; -} - -.ticket-btn { - background: #E63108; - color: #fff; - border-radius: 10px; - padding: 0px 29.5px; - display: inline-block; - font: 700 16px/50px "Nunito", sans-serif; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; -} - -.ticket-btn i { - font-size: 21px; - position: relative; - top: 3px; - padding-right: 5px; -} - -.ticket-btn:hover { - color: #fff; - background: #E63108; -} - -/*-- Pagination --*/ -.pagination-wrapper { - position: relative; - display: block; - padding-top: 10px; -} - -.pagination-wrapper .pagination { - position: relative; - display: block; -} - -.pagination-wrapper .pagination li { - display: inline-block; - margin: 0px 6px; -} - -.pagination-wrapper .pagination li a { - position: relative; - display: inline-block; - font-size: 16px; - height: 40px; - width: 40px; - line-height: 38px; - font-weight: 500; - border: 1px solid #989db5; - border-radius: 50%; - text-align: center; - color: #989db5; - background: transparent; - -webkit-transition: all 500ms ease; - transition: all 500ms ease; -} - -.pagination-wrapper .pagination li a:hover, .pagination-wrapper .pagination li a.active { - color: #fff; - border-color: #E63108; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - -webkit-box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); - box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); -} - -.pagination-wrapper .pagination li:last-child a, -.pagination-wrapper .pagination li:first-child a { - border-color: #E63108; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - color: #fff; - -webkit-box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); - box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); -} - -/*-- Back to top --*/ -#thetop { - top: 0; - left: 0; - right: 0; - z-index: -1; - position: absolute; -} - -#backtotop { - right: 15px; - width: 50px; - height: 50px; - z-index: 999; - bottom: 40px; - display: none; - position: fixed; - border-radius: 100%; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); -} - -#backtotop:hover { - -webkit-box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); - box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); -} - -#backtotop #scroll { - z-index: 999; - width: 100%; - height: 100%; - display: block; - color: #fff; - font-size: 20px; - line-height: 52px; - text-align: center; - position: relative; -} - -#backtotop #scroll:hover, #backtotop #scroll:focus { - text-decoration: none; -} - -/*-- Bg color --*/ -.bg-gray-100 { - background: #f8f8fc; -} - -.bg-light { - background-color: #faf7f6 !important; -} - -/*-- Txt Color --*/ -.gray-100 { - color: #f8f8fc; -} - -.gray-200 { - color: #edeef5; -} - -.gray-300 { - color: #c7cce6; -} - -.gray-400 { - color: #989db5; -} - -.gray-500 { - color: #6b7087; -} - -.gray-600 { - color: #41465b; -} - -.gray-700 { - color: #2b303d; -} - -.baseColor { - color: #E63108; -} - -/*-- Color --*/ -.bg-blue { - background-color: #003b73; -} - -.bg-azure { - background-color: #45aaf2; -} - -.bg-indigo { - background-color: #6435c9; -} - -.bg-purple { - background-color: #a333c8; -} - -.bg-pink { - background-color: #e03997; -} - -.bg-red { - background-color: #db2828; -} - -.bg-orange { - background-color: #f2711c; -} - -.bg-yellow { - background-color: #fbbd08; -} - -.bg-lime { - background-color: #b5cc18; -} - -.bg-green { - background-color: #21ba45; -} - -.bg-teal { - background-color: #00b5ad; -} - -.bg-cyan { - background-color: #17a2b8; -} - -.bg-gray { - background-color: #666a6d !important; -} - -/*-- Shadow --*/ -.box-shadow-deafult { - -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); -} - -/*-- Height & Width --*/ -.h-3 { - height: 3rem !important; -} - -.w-3 { - width: 3rem !important; -} - -/*-- Overflow --*/ -.fix { - overflow: hidden; -} - -/*============================================ - - 04 -- Header - -==============================================*/ -/*-- Header Main Menu --*/ -.header_area { - position: absolute; - width: 100%; - z-index: 100; - top: 26px; -} - -.header_area.navbar_fixed .main_menu { - position: fixed !important; - width: 100%; - top: -70px; - left: 0; - right: 0; - background: #fff; - -webkit-transform: translateY(70px); - transform: translateY(70px); - -webkit-transition: background 500ms ease, -webkit-transform 500ms ease; - transition: background 500ms ease, -webkit-transform 500ms ease; - transition: transform 500ms ease, background 500ms ease; - transition: transform 500ms ease, background 500ms ease, -webkit-transform 500ms ease; - -webkit-transition: transform 500ms ease, background 500ms ease; - -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08); - box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.08); -} - -.header_area.navbar_fixed .main_menu .navbar .nav.navbar-nav > li > a { - line-height: 70px; -} - -.header_area.navbar_fixed .main_menu .navbar .nav.navbar-nav.navbar-right li.number:before { - background: #2b303d; -} - -.header_area.navbar_fixed .main_menu .navbar .nav.navbar-nav.navbar-right li.checker_btn a { - line-height: 42px; -} - -.header_area.navbar_fixed .main_menu .navbar .nav.navbar-nav.navbar-right li.checker_btn a i { - line-height: 42px; -} - -.header_area.navbar_fixed .right_burger { - top: 17px; -} - -.header_area.navbar_fixed.white_header .main_menu .navbar .navbar-brand img { - display: none; -} - -.header_area.navbar_fixed.white_header .main_menu .navbar .navbar-brand img + img { - display: inline-block; -} - -.header_area.navbar_fixed.white_header .main_menu .navbar .nav.navbar-nav > li > a { - color: #41465b; -} - -.header_area.navbar_fixed.white_header .main_menu .navbar .nav.navbar-nav > li .mobile_dropdown { - color: #41465b; -} - -.header_area.navbar_fixed.white_header .main_menu .navbar .nav.navbar-nav.navbar-right li a { - color: #fff; -} - -.header_area.navbar_fixed.white_header .main_menu .navbar .nav.navbar-nav.navbar-right li a i { - color: #fff; -} - -.header_area.navbar_fixed.white_header .main_menu .right_burger .nav li .search_btn img { - display: none; -} - -.header_area.navbar_fixed.white_header .main_menu .right_burger .nav li .search_btn img + img { - display: inline-block; -} - -.header_area.navbar_fixed.white_header .main_menu .right_burger .nav li .menu_btn img { - display: none; -} - -.header_area.navbar_fixed.white_header .main_menu .right_burger .nav li .menu_btn img + img { - display: inline-block; -} - -.main_menu { - background: transparent; -} - -.main_menu .navbar { - padding: 0px; - background-color: transparent !important; -} - -.main_menu .navbar .nav.navbar-nav { - padding-left: 40px; -} - -.main_menu .navbar .nav.navbar-nav li { - margin-right: 25px; -} - -.main_menu .navbar .nav.navbar-nav li a { - color: #41465b; - font-family: "Nunito", sans-serif; - position: relative; - font: 600 16px/90px "Nunito", sans-serif; - position: relative; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; -} - -.main_menu .navbar .nav.navbar-nav li a:after { - display: none; -} - -.main_menu .navbar .nav.navbar-nav li a:before { - content: ""; - width: 0px; - height: 1px; - background: #E63108; - position: absolute; - bottom: -7px; - left: 0px; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; - display: none; -} - -.main_menu .navbar .nav.navbar-nav li .mobile_dropdown { - cursor: pointer; - font-size: 9px; - color: #41465b; - padding-left: 2px; -} - -.main_menu .navbar .nav.navbar-nav li:last-child { - margin-right: 0px; -} - -@media (min-width: 992px) { - .main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu { - position: absolute; - top: 100%; - left: -30px; - min-width: 245px; - background: #fff; - margin: 0px; - text-align: left; - opacity: 0; - -webkit-transition: all 300ms ease-in; - transition: all 300ms ease-in; - visibility: hidden; - display: block; - border: none; - padding: 30px 0px; - border-radius: 10px; - -webkit-box-shadow: 0px 10px 25px 0px rgba(51, 48, 78, 0.21); - box-shadow: 0px 10px 25px 0px rgba(51, 48, 78, 0.21); - } - .main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu:before { - content: ""; - width: 0; - height: 0; - border-style: solid; - border-width: 0 10px 10px 10px; - border-color: transparent transparent #fff transparent; - position: absolute; - left: 30px; - top: -10px; - } -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li { - margin-right: 0px; - display: block; - margin-bottom: 20px; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li a { - display: block; - line-height: 25px; - color: #41465b; - font-family: "Nunito", sans-serif; - font-size: 15px; - padding: 0px 30px; - -webkit-transition: all 300ms ease; - transition: all 300ms ease; - font-weight: 600; - text-shadow: none; - position: relative; - text-transform: capitalize; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li a:after { - display: none; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li a i { - float: right; - line-height: 25px; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li:hover a { - color: #E63108; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li:hover a i { - color: #E63108; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li:hover a:before { - opacity: 1; - width: 12px; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li:last-child a { - border-bottom: 0px; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu li:last-child { - margin-bottom: 0px; -} - -@media (min-width: 992px) { - .main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu .submenu .dropdown-menu { - visibility: hidden; - opacity: 0; - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - left: 97%; - right: auto; - min-width: 245px; - top: -17px; - -webkit-transition: all 300ms ease-in; - transition: all 300ms ease-in; - padding: 30px 0px; - } - .main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu .submenu .dropdown-menu:before { - content: ""; - width: 0; - height: 0; - border-style: solid; - border-width: 10px 10px 10px 0; - border-color: transparent #fff transparent transparent; - position: absolute; - left: -10px; - top: 20px; - } -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu .submenu .dropdown-menu li a { - background: #fff; - color: #41465b; - padding: 0px 25px; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu .submenu .dropdown-menu li a:before { - display: none; -} - -.main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu .submenu .dropdown-menu li:hover a { - color: #E63108; -} - -@media (min-width: 992px) { - .main_menu .navbar .nav.navbar-nav li.submenu .dropdown-menu .submenu:hover.submenu .dropdown-menu { - visibility: visible; - left: 101%; - opacity: 1; - } -} - -.main_menu .navbar .nav.navbar-nav li:hover a, .main_menu .navbar .nav.navbar-nav li.active a { - color: #E63108; -} - -.main_menu .navbar .nav.navbar-nav li:hover a:before, .main_menu .navbar .nav.navbar-nav li.active a:before { - width: 23px; - color: #E63108; -} - -.main_menu .navbar .nav.navbar-nav li:hover i, .main_menu .navbar .nav.navbar-nav li.active i { - color: #E63108; -} - -@media (min-width: 992px) { - .main_menu .navbar .nav.navbar-nav li:hover.submenu a:after { - opacity: 1; - z-index: 9999; - } - .main_menu .navbar .nav.navbar-nav li:hover.submenu .dropdown-menu { - left: -26px; - visibility: visible; - opacity: 1; - } -} - -.main_menu .navbar .nav.navbar-nav.navbar-right { - padding-left: 30px; - position: relative; -} - -.main_menu .navbar .nav.navbar-nav.navbar-right li a { - line-height: normal; - color: #2b303d; -} - -.main_menu .navbar .nav.navbar-nav.navbar-right li a:before { - display: none; -} - -.main_menu .navbar .nav.navbar-nav.navbar-right li.header-btn a { - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - line-height: 45px; - display: inline-block; - padding: 0px 30px 0px 30px; - font-size: 16px; - font-weight: 700; - font-family: "Nunito", sans-serif; - border-radius: 35px; - -webkit-box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); - box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); - -webkit-transition-duration: 400ms; - transition-duration: 400ms; - color: #fff; -} - -.main_menu .navbar .nav.navbar-nav.navbar-right li.header-btn a i { - font-size: 21px; - line-height: 43px; - display: inline-block; - top: 3px; - position: relative; - padding-right: 5px; - color: #fff; - -webkit-transition-duration: 400ms; - transition-duration: 400ms; -} - -.main_menu .navbar .nav.navbar-nav.navbar-right li.header-btn a:hover { - background: -webkit-gradient(linear, left bottom, right top, from(#003b73), color-stop(#003b73), color-stop(#003b73), color-stop(#003b73), to(#003b73)); - background: linear-gradient(to right top, #003b73, #003b73, #003b73, #003b73, #003b73); - -webkit-box-shadow: 0px 17px 43px 1px rgba(36, 30, 52, 0.4); - box-shadow: 0px 17px 43px 1px rgba(36, 30, 52, 0.4); - color: #fff; -} - -.right_burger { - position: absolute; - right: 30px; - top: 28px; -} - -.right_burger .nav li { - margin-right: 16px; -} - -.right_burger .nav li:last-child { - margin-right: 0px; -} - -.right_burger .nav li .search_btn { - cursor: pointer; -} - -.menu_tow .main_menu .navbar .navbar-brand { - position: absolute; - left: 50%; - top: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); -} - -.menu_tow .main_menu .navbar .navbar-nav li a { - font: 600 14px "Nunito", sans-serif; - color: #c4c0e4; - line-height: 90px; -} - -.just_burger_menu { - padding-right: 30px; - padding-top: 30px; -} - -.just_burger_menu .main_menu .navbar .navbar-brand { - display: none; -} - -.just_burger_menu .main_menu .navbar .navbar-nav.mr-auto { - display: none; -} - -.just_burger_menu .main_menu .navbar .navbar-collapse { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; -} - -@media (max-width: 1400px) { - .just_burger_menu .main_menu .navbar .navbar-collapse { - margin-right: 80px; - } -} - -.menu_social { - position: absolute; - left: 30px; - top: 30px; -} - -.menu_social li { - margin-bottom: 20px; -} - -.menu_social li a { - color: #41465b; - font-size: 24px; - color: #41465b; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; -} - -.menu_social li a:hover { - color: #E63108; -} - -/*-- Info Sidebar Widget --*/ -.menu-is-opened .body_capture { - opacity: 1; - visibility: visible; -} - -.menu-is-opened .sidebar_widget { - right: 0px; -} - -.menu-is-opened .info_sidebar_inner .info_social { - right: 25px; - visibility: visible; -} - -.menu-is-opened .info_sidebar_inner .info_title { - visibility: visible; - opacity: 1; - -webkit-transform: translateY(0); - transform: translateY(0); - -webkit-transition: all 0.7s ease; - transition: all 0.7s ease; -} - -.menu_btn { - cursor: pointer; -} - -@media only screen and (min-width: 1600px) and (max-width: 2000px) { - .menu_btn { - display: none; - } -} - -@media only screen and (min-width: 1366px) and (max-width: 1600px) { - .menu_btn { - display: none; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .menu_btn { - display: none; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .menu_btn { - display: none; - } -} - -.body_capture { - position: fixed; - background: rgba(0, 0, 0, 0.9); - height: 100%; - width: 100%; - z-index: 35; - opacity: 0; - visibility: hidden; - -webkit-transition: all 200ms ease-in; - transition: all 200ms ease-in; -} - -.sidebar_widget { - position: fixed; - max-width: 440px; - right: -450px; - top: 0px; - width: 100%; - background: #41465b; - z-index: 9999; - height: 100%; - padding: 30px; - -webkit-transition: all 0.5s ease; - transition: all 0.5s ease; -} - -.sidebar_widget .mCSB_container { - margin-right: 0px; -} - -.sidebar_widget .mCSB_scrollTools { - opacity: 0; - width: 0px; -} - -.info_sidebar_inner .close_btn { - display: inline-block; - cursor: pointer; -} - -.info_sidebar_inner .info_social { - position: absolute; - right: -206px; - visibility: hidden; - top: 3px; - -webkit-transition: all 0.8s ease; - transition: all 0.8s ease; -} - -.info_sidebar_inner .info_social li { - margin-right: 22px; -} - -.info_sidebar_inner .info_social li:last-child { - margin-right: 0px; -} - -.info_sidebar_inner .info_social li a { - font-size: 24px; - color: #c7c5df; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; -} - -.info_sidebar_inner .info_social li a:hover { - color: #E63108; -} - -.info_sidebar_inner .info_title { - margin-top: 50px; - margin-bottom: 26px; - visibility: hidden; - opacity: 0; - position: relative; - -webkit-transform: translateY(2rem); - transform: translateY(2rem); -} - -.info_sidebar_inner .info_title h2 { - color: #fff; - font: 600 24px/30px "Nunito", sans-serif; - margin-bottom: 10px; -} - -.info_sidebar_inner .info_title p { - font: 500 16px/26px "Nunito", sans-serif; - color: #8784a3; - margin-bottom: 0px; -} - -.info_sidebar_inner .appoinment_form { - padding: 0px; -} - -.info_sidebar_inner .appoinment_form .col-lg-12:last-child .form-group { - margin-top: 5px; -} - -.info_sidebar_inner .appoinment_form .form-group { - margin-bottom: 20px; - -webkit-transform: translateY(2rem); - transform: translateY(2rem); - position: relative; - visibility: hidden; - opacity: 0; -} - -.info_sidebar_inner .appoinment_form .form-group input { - border-bottom-color: #fff; - color: #c0bdd3; - padding: 10px; -} - -.info_sidebar_inner .appoinment_form .form-group input.placeholder { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .form-group input:-moz-placeholder { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .form-group input::-moz-placeholder { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .form-group input::-webkit-input-placeholder { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .form-group textarea { - border-bottom-color: #fff; - color: #c0bdd3; - padding: 10px; - padding-top: 0px; - height: 195px; - resize: none; -} - -.info_sidebar_inner .appoinment_form .form-group textarea.placeholder { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .form-group textarea:-moz-placeholder { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .form-group textarea::-moz-placeholder { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .form-group textarea::-webkit-input-placeholder { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .form-group .error { - color: #fff; -} - -.info_sidebar_inner .appoinment_form .form-group label { - color: #c0bdd3; -} - -.info_sidebar_inner .appoinment_form .checkbox_field .checkbox label { - color: #8784a3; -} - -.info_sidebar_inner .appoinment_form .checkbox_field .checkbox label span { - color: #cac7e7; -} - -.info_sidebar_inner .appoinment_form .checkbox_field .checkbox label:before { - border: 2px solid #8b899e; -} - -.info_sidebar_inner .info_footer { - margin-top: 120px; -} - -.info_sidebar_inner .info_footer p { - font: 500 12px "Nunito", sans-serif; - color: #8d8aa9; - margin-bottom: 10px; -} - -.info_sidebar_inner .info_footer h6 { - font: 500 12px "Nunito", sans-serif; - color: #8d8aa9; - margin-bottom: 0px; -} - -.info_sidebar_inner .info_footer h6 i { - color: #fa4d6e; -} - -.info_sidebar_inner .info_footer h6 span { - color: #fff; -} - -/*-- Canvus --*/ -.menu-is-opened .canvus_menu_area { - opacity: 1; - visibility: visible; -} - -.menu-is-opened .canvus_menu_area .menu_part_lux { - visibility: visible; - opacity: 1; - -webkit-transition: all 1.5s linear; - transition: all 1.5s linear; -} - -.menu-is-opened .canvus_menu_area .menu_part_lux .menu_list { - opacity: 1; - -webkit-transform: translateY(0rem); - transform: translateY(0rem); -} - -.canvus_menu_area { - background: rgba(0, 0, 0, 0.9); - position: fixed; - left: 0px; - top: 0px; - width: 100%; - height: 100%; - z-index: 110; - opacity: 0; - visibility: hidden; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; -} - -.canvus_menu_area .logo_part .right { - padding-right: 4px; -} - -.canvus_menu_area .logo_part .right .close_btn { - cursor: pointer; - line-height: 90px; -} - -.canvus_menu_area .menu_part_lux { - text-align: center; - visibility: hidden; - opacity: 0; - margin-top: 30px; -} - -.canvus_menu_area .menu_part_lux .mCSB_container { - margin-right: 0px; -} - -.canvus_menu_area .menu_part_lux .mCSB_draggerRail { - background: transparent !important; -} - -.canvus_menu_area .menu_part_lux .mCSB_dragger .mCSB_dragger_bar { - background: transparent !important; -} - -.canvus_menu_area .menu_part_lux .menu_list { - list-style: none; - margin-bottom: 0px; - padding-left: 0px; - margin-top: 0px; - -webkit-transform: translateY(4rem); - transform: translateY(4rem); - opacity: 0; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; - max-height: 545px; -} - -.canvus_menu_area .menu_part_lux .menu_list li { - margin-bottom: 23px; -} - -.canvus_menu_area .menu_part_lux .menu_list li a { - font: 500 30px/40px "Nunito", sans-serif; - display: inline-block; - color: #fff; - padding: 0px 0px; - position: relative; -} - -.canvus_menu_area .menu_part_lux .menu_list li a i { - font-size: 14px; - position: absolute; - right: -26px; - top: 40%; - color: #fff; -} - -.canvus_menu_area .menu_part_lux .menu_list li a.open { - color: #E63108; -} - -.canvus_menu_area .menu_part_lux .menu_list li a.open i { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); - color: #E63108; -} - -.canvus_menu_area .menu_part_lux .menu_list li ul { - display: none; - padding: 0px; - padding-top: 15px; -} - -.canvus_menu_area .menu_part_lux .menu_list li ul li { - margin-bottom: 15px; -} - -.canvus_menu_area .menu_part_lux .menu_list li ul li:last-child { - margin-bottom: 0px; -} - -.canvus_menu_area .menu_part_lux .menu_list li ul li a { - color: #E63108; - font: 500 24px "Nunito", sans-serif; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; - padding: 0px; -} - -.canvus_menu_area .menu_part_lux .menu_list li ul li:hover a { - color: #fff; -} - -.canvus_menu_area.full_canvus .right { - padding-top: 30px; - padding-right: 35px; -} - -.canvus_menu_area.full_canvus .right .close_btn { - line-height: 30px; -} - -/*-- Mobile Canvus Menu --*/ -.mobile_canvus_menu { - background: #fff; - position: fixed; - max-width: 328px; - right: -328px; - top: 0px; - width: 100%; - z-index: 9999; - height: 100%; - padding: 25px 30px 30px 34px; - -webkit-transition: all 0.5s ease; - transition: all 0.5s ease; -} - -.mobile_canvus_menu .close_btn { - float: right; - cursor: pointer; -} - -.mobile_canvus_menu .menu_part_lux { - visibility: hidden; - opacity: 0; - margin-top: 20px; -} - -.mobile_canvus_menu .menu_part_lux .mCSB_container { - margin-right: 0px; -} - -.mobile_canvus_menu .menu_part_lux .mCSB_draggerRail { - background: transparent !important; -} - -.mobile_canvus_menu .menu_part_lux .mCSB_dragger .mCSB_dragger_bar { - background: transparent !important; -} - -.mobile_canvus_menu .menu_part_lux .menu_list { - list-style: none; - margin-bottom: 0px; - padding-left: 0px; - margin-top: 0px; - -webkit-transform: translateY(4rem); - transform: translateY(4rem); - opacity: 0; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; - max-height: 300px; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li { - margin-bottom: 2.6vh; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li a { - font: 700 2.5vh/32px "Nunito", sans-serif; - display: inline-block; - color: #41465b; - padding: 0px 0px; - position: relative; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li a i { - font-size: 12px; - position: absolute; - right: -26px; - top: 40%; - color: #41465b; - -webkit-transition: all 300ms linear; - transition: all 300ms linear; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li a.open { - color: #E63108; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li a.open i { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); - color: #E63108; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li ul { - display: none; - padding: 0px 0px; - padding-left: 22px; - padding-top: 12px; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li ul li { - margin-bottom: 1vh; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li ul li:last-child { - margin-bottom: 0px; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li ul li a { - color: #E63108; - font: 700 2vh/30px "Nunito", sans-serif; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; - padding: 0px; - display: block; -} - -.mobile_canvus_menu .menu_part_lux .menu_list li ul li:hover a { - color: #41465b; -} - -.mobile_canvus_menu .menu_btm { - position: absolute; - left: 0px; - bottom: 0px; - padding-left: 34px; - padding-right: 36px; - padding-bottom: 30px; - width: 100%; -} - -.mobile_canvus_menu .menu_btm .ticket-btn { - width: 100%; - font-size: 21px; - padding: 0px 20px; - line-height: 60px; -} - -.menu-is-opened .mobile_canvus_menu { - opacity: 1; - visibility: visible; -} - -.menu-is-opened .mobile_canvus_menu .menu_part_lux { - visibility: visible; - opacity: 1; - -webkit-transition: all 1.5s linear; - transition: all 1.5s linear; -} - -.menu-is-opened .mobile_canvus_menu .menu_part_lux .menu_list { - opacity: 1; - -webkit-transform: translateY(0rem); - transform: translateY(0rem); -} - -/*-- White Menu --*/ -.white_header .menu_social li a { - color: #fff; - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; -} - -.white_header .menu_social li a:hover { - color: #E63108; -} - -.white_header .main_menu .navbar .navbar-brand img { - display: inline-block; -} - -.white_header .main_menu .navbar .navbar-brand img + img { - display: none; -} - -.white_header .main_menu .navbar .nav.navbar-nav > li > a { - color: #fff; -} - -.white_header .main_menu .navbar .nav.navbar-nav > li .mobile_dropdown { - color: #fff; -} - -.white_header .main_menu .navbar .nav.navbar-nav > li:hover a, .white_header .main_menu .navbar .nav.navbar-nav > li.active a { - color: #E63108; -} - -.white_header .main_menu .navbar .nav.navbar-nav > li:hover .mobile_dropdown, .white_header .main_menu .navbar .nav.navbar-nav > li.active .mobile_dropdown { - color: #E63108; -} - -.white_header .main_menu .navbar .nav.navbar-nav.navbar-right li a { - color: #fff; -} - -.white_header .main_menu .navbar .nav.navbar-nav.navbar-right li a i { - color: #fff; -} - -.white_header .main_menu .right_burger .nav li .search_btn img { - display: inline-block; -} - -.white_header .main_menu .right_burger .nav li .search_btn img + img { - display: none; -} - -.white_header .main_menu .right_burger .nav li .menu_btn img { - display: inline-block; -} - -.white_header .main_menu .right_burger .nav li .menu_btn img + img { - display: none; -} - -/*-- Header Responsive --*/ -@media (max-width: 1700px) { - .search_found_area .section_vertical_align { - padding-top: 120px; - } -} - -@media (max-width: 1400px) { - .main_menu .navbar .navbar-collapse { - margin-right: 80px; - } - .right_burger { - right: 15px; - } -} - -@media (max-width: 1199px) { - .main_menu .navbar .navbar-brand img { - width: 150px; - } - .main_menu .navbar .nav.navbar-nav { - padding-left: 0px; - } - .main_menu .navbar .nav.navbar-nav li { - margin-right: 11px; - } - .main_menu .navbar .nav.navbar-nav.navbar-right { - padding-left: 15px; - } - .main_menu .navbar .nav.navbar-nav.navbar-right li.checker_btn a { - padding: 0px 10px 0px 10px; - font-size: 14px; - line-height: 40px; - } - .main_menu .navbar .nav.navbar-nav.navbar-right li.checker_btn a i { - line-height: 37px; - } - .main_menu .navbar .nav.navbar-nav li a { - font-size: 15px; - } - .search_inner { - padding-right: 0; - } -} - -@media (max-width: 991px) { - .navbar-light .navbar-toggler { - display: none; - } - .right_burger { - right: auto; - top: 20px; - width: 100%; - max-width: 720px; - text-align: right; - margin: 0px auto 0px; - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - } - .header_area.menu_tow .collapse:not(.show) { - display: inline-block; - } - .header_area.menu_tow .main_menu .navbar .navbar-nav.mr-auto { - display: none; - } - .menu_tow .main_menu .navbar .navbar-brand { - position: relative; - left: 0px; - top: 0px; - -webkit-transform: translateX(0%) translateY(0%); - transform: translateX(0%) translateY(0%); - } - .header_area.menu_two.navbar_fixed .main_menu { - position: relative !important; - width: 100%; - top: 0px; - left: 0; - right: 0; - background: transparent; - -webkit-transform: translateY(0px); - transform: translateY(0px); - -webkit-box-shadow: none; - box-shadow: none; - } - .menu_tow .main_menu .navbar .navbar-collapse { - -ms-flex-preferred-size: 0%; - flex-basis: 0%; - margin-right: 0px; - } - .header_area.menu_tow .main_menu .navbar .navbar-nav.justify-content-end { - -webkit-box-align: end; - -ms-flex-align: end; - align-items: flex-end; - } - .right_burger { - right: 15px; - top: 20px; - } - .main_menu .navbar .navbar-brand img { - width: auto; - } - .body_capture { - background: rgba(0, 0, 0, 0.2); - } - .right_burger .nav { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - .main_menu .navbar .navbar-brand { - line-height: 59px; - } - .menu-is-opened .mobile_canvus_menu { - right: 0px; - } -} - -@media (max-width: 767px) { - .search_item { - display: block; - } - .search_item img { - margin-right: 0; - margin-bottom: 20px; - } - .search_item + .search_item { - margin-top: 40px; - } - .search_found_area .footer_copyright { - padding-top: 50px; - } - .search_found_area .footer_copyright h6 { - margin-top: 0; - } - .right_burger { - max-width: 540px; - } -} - -@media (min-height: 700px) { - .search_found_area { - height: 100vh; - } -} - -@media (max-width: 575px) { - .main_menu .navbar .navbar-brand img { - width: 218px; - position: relative; - top: -1px; - } - .just_burger_menu { - padding-right: 15px; - padding-top: 15px; - } - .canvus_menu_area.full_canvus .right { - padding-top: 15px; - padding-right: 15px; - } - .canvus_menu_area .menu_part_lux .menu_list li a { - font: 500 25px/25px "Nunito", sans-serif; - } - .search_btn img { - width: 18px; - } - .right_burger { - right: 15px; - top: 12px; - max-width: none; - width: auto; - -webkit-transform: translateX(0); - transform: translateX(0); - } - .menu_btn img { - width: 25px; - } - @media only screen and (min-width: 1200px) and (max-width: 1499px) { - .menu_btn img { - display: none; - } - } - .search_modal .close { - margin-top: 15px; - margin-right: 15px; - } - .search_modal .modal-dialog { - max-width: 100%; - padding-left: 15px; - padding-right: 15px; - } - .search_found_text h2 { - font-size: 30px; - line-height: 40px; - margin-bottom: 10px; - } - .search_found_text p { - font-size: 14px; - line-height: 28px; - } - .search_found_area .search_found_text p { - margin-bottom: 0; - } - .search_found_area .section_vertical_align { - padding: 0px; - } - .mobile_canvus_menu .menu_part_lux .menu_list { - max-height: 225px; - } - .mobile_canvus_menu .menu_part_lux .menu_list li { - margin-bottom: 0.8vh; - } - .mobile_canvus_menu .menu_part_lux .menu_list li ul { - padding-top: 0px; - } - .mobile_canvus_menu .menu_part_lux .menu_list li ul li { - margin-bottom: 0.2vh; - } - .mobile_canvus_menu .menu_part_lux .menu_list li a i { - right: -22px; - top: 36%; - } - .mobile_canvus_menu .menu_btm .green_btn { - font-size: 16px; - padding: 0px 20px; - line-height: 60px; - text-align: center; - } -} - -@media (max-width: 480px) { - .green_btn { - padding: 0px 16.5px; - font: 700 14px/50px "Nunito", sans-serif; - } -} - -@media (max-width: 360px) { - .mobile_canvus_menu .menu_btm .green_btn { - font-size: 18px; - text-align: center; - } -} - -/*============================================ - - 05 -- Search Popup - -==============================================*/ -.search_modal { - background: rgba(0, 0, 0, 0.9); -} - -.search_modal .close { - opacity: 1; - margin-top: 30px; - margin-right: 76px; -} - -.search_modal .close img { - -webkit-transition: all 300ms linear 0s; - transition: all 300ms linear 0s; -} - -.search_modal .close:hover { - opacity: 1 !important; -} - -.search_modal .close:hover img { - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} - -.search_modal .modal-dialog { - max-width: 585px; - margin-top: 200px; -} - -.search_modal .modal-dialog .modal-content { - background-color: transparent; - border: none; -} - -.search_modal .modal-dialog .modal-content .modal-body { - padding: 0px; -} - -.search_modal .modal-dialog .modal-content .modal-body .input-group { - display: block; -} - -.search_modal .modal-dialog .modal-content .modal-body .input-group input { - background: transparent; - border: none; - border-bottom: 2px solid #fff; - border-radius: 0px; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; - padding: 0px 10px; - height: 52px; - width: 100%; - font: 500 24px/52px "Nunito", sans-serif; - color: #fff; -} - -.search_modal .modal-dialog .modal-content .modal-body .input-group input.placeholder { - font: 500 24px/52px "Nunito", sans-serif; - color: #fff; -} - -.search_modal .modal-dialog .modal-content .modal-body .input-group input:-moz-placeholder { - font: 500 24px/52px "Nunito", sans-serif; - color: #fff; -} - -.search_modal .modal-dialog .modal-content .modal-body .input-group input::-moz-placeholder { - font: 500 24px/52px "Nunito", sans-serif; - color: #fff; -} - -.search_modal .modal-dialog .modal-content .modal-body .input-group input::-webkit-input-placeholder { - font: 500 24px/52px "Nunito", sans-serif; - color: #fff; -} - -.search_modal .modal-dialog .modal-content .modal-body .input-group button { - border: none; - padding: 0px; - position: absolute; - right: 12px; - top: 10px; - font-size: 24px; - color: #fff; - z-index: 5; - background: transparent !important; - border-radius: 0px; - outline: none; - -webkit-box-shadow: none; - box-shadow: none; -} - -/*============================================ - - 06 -- Hero - -==============================================*/ -.hero-1 { - padding: 180px 0 0; -} - -@media only screen and (max-width: 575px) { - .hero-1 { - padding: 155px 0 0; - } -} - -.hero-image { - margin-top: -28px; - margin-bottom: 30px; -} - -.hero-image img { - max-height: 420px; -} - -.hero-1-content { - max-width: 730px; - margin: 0 auto; - text-align: center; -} - -.hero-1-content .title { - font-size: 60px; - line-height: 70px; - margin-bottom: 20px; - font-weight: 700; -} - -@media only screen and (max-width: 767px) { - .hero-1-content .title { - font-size: 50px; - line-height: 70px; - margin-bottom: 15px; - } -} - -@media only screen and (max-width: 575px) { - .hero-1-content .title { - font-size: 40px; - line-height: 50px; - margin-bottom: 35px; - } -} - -@media only screen and (max-width: 479px) { - .hero-1-content .title { - font-size: 31px; - line-height: 36px; - margin-bottom: 33px; - } -} - -.hero-1-content p { - font-size: 24px; - margin-bottom: 38px; -} - -@media only screen and (max-width: 575px) { - .hero-1-content p { - font-size: 22px; - margin-bottom: 32px; - } -} - -@media only screen and (max-width: 479px) { - .hero-1-content p { - font-size: 22px; - margin-bottom: 32px; - } -} - -/*-- Search From --*/ -.search-form { - position: relative; - background: #fff; - padding: 10px 15px; - border-radius: 8px 8px 0 0; - -webkit-box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12); - box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12); -} - -@media (min-width: 576px) { - .search-form { - padding: 15px 40px; - } -} - -.search-form input { - background: transparent; - border: none; - height: 50px; - padding: 0; - padding-right: 65px; - font-size: 16px; -} - -@media (min-width: 576px) { - .search-form input { - padding-right: 480px; - font-size: 18px; - } -} - -.search-form button { - position: absolute; - right: 15px; - top: 10px; - border-radius: 25px; - height: 50px; - text-transform: uppercase; - width: 50px; - font-size: 18px; - border: none; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - color: #ffffff; -} - -@media (min-width: 576px) { - .search-form button { - width: auto; - padding: 0 35px; - top: 15px; - right: 40px; - } -} - -.search-form.round { - border-radius: 35px; -} - -@media (min-width: 576px) { - .search-form.round { - border-radius: 40px; - } -} - -@media (min-width: 576px) { - .search-form i { - margin-right: 10px; - } -} - -@media (min-width: 576px) { - .search-form.round { - border-radius: 40px; - } - .search-form.round button { - right: 15px; - } -} - -/*============================================ - - 07 -- Topic - -==============================================*/ -.single-feature-area { - -webkit-transition: 0.5s; - transition: 0.5s; - margin-bottom: 50px; - position: relative; - z-index: 1; - background-color: #fff; - padding: 40px; - border: 1px solid #ebebeb; - -webkit-box-shadow: 0 0.75rem 1.5rem rgba(23, 26, 41, 0.02); - box-shadow: 0 0.75rem 1.5rem rgba(23, 26, 41, 0.02); - border-radius: 5px; -} - -.single-feature-area::before { - width: 100%; - height: 3px; - position: absolute; - left: 0; - bottom: 0; - content: ""; - z-index: -1; - border-radius: 5px; - -webkit-transition: 0.5s; - transition: 0.5s; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); -} - -.single-feature-area .feature-icon { - margin-bottom: 30px; - font-size: 50px; - line-height: 50px; - color: #E63108; - -webkit-transition: 0.5s; - transition: 0.5s; -} - -.single-feature-area:hover .feature-icon { - color: #fff; -} - -.feature-content-text a { - color: #E63108; - -webkit-transition: 0.5s; - transition: 0.5s; -} - -.feature-content-text a i { - position: relative; - top: 3px; - font-size: 14px; -} - -.feature-content-text h4 { - font-size: 20px; - -webkit-transition: 0.5s; - transition: 0.5s; -} - -.feature-content-text p { - -webkit-transition: 0.5s; - transition: 0.5s; -} - -.single-feature-area:hover .feature-content-text a, -.single-feature-area:hover .feature-content-text h4, -.single-feature-area:hover .feature-content-text p { - color: #fff; -} - -.single-feature-area:hover::before { - height: 100%; -} - -/*============================================ - - 08 -- Faq - -==============================================*/ -.accordion-faq .card { - margin-bottom: 1.5rem; - border-radius: 0.375rem !important; - -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03); - box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03); - background: #ffffff; -} - -.accordion-faq.accordion > .card { - overflow: hidden; - border-color: #ebebeb; - border-width: 1px 1px 0 1px; -} - -.accordion-faq.accordion > .card .collapse.show { - border-bottom: 1px solid #ebebeb; -} - -.accordion-faq.accordion .card-header { - position: relative; - cursor: pointer; - background: #ffffff; - border-bottom: 1px solid #ebebeb; - margin-bottom: 0; -} - -.accordion-faq.accordion .card-header:first-child { - border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0; -} - -.accordion-faq.accordion .card-header[aria-expanded="false"]:after { - content: "+"; -} - -.accordion-faq.accordion .card-header[aria-expanded="true"]:after { - content: "-"; -} - -.accordion-faq.accordion .card-header:after { - content: "+"; - position: absolute; - right: 1.5rem; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - font-family: "Nunito", sans-serif; - font-weight: 700; -} - -.accordion-faq.accordion > .card .card-header h6 { - font-weight: 600; - font-family: "Nunito", sans-serif; -} - -/*============================================ - - 09 -- Team - -==============================================*/ -.team-box { - -webkit-box-shadow: 0 6px 50px rgba(0, 0, 0, 0.05); - box-shadow: 0 6px 50px rgba(0, 0, 0, 0.05); -} - -.team-box .team-img img { - width: 140px; - -webkit-box-shadow: 0 6px 50px rgba(0, 0, 0, 0.05); - box-shadow: 0 6px 50px rgba(0, 0, 0, 0.05); -} - -.team-box .team-social-icon i { - position: absolute; - display: inline-block; - width: 34px; - height: 34px; - border-radius: 50%; - font-size: 15px; - line-height: 34px; - margin-top: -34px; - margin-left: 30px; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - color: #ffffff; - text-align: center; -} - -.team-box .team-social i { - width: 38px; - height: 38px; - display: inline-block; - line-height: 38px; - background-color: #f6f7fb; - border-radius: 50%; -} - -.team-box .team-social i:hover { - color: #ffffff; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - -webkit-transition: all 0.5s; - transition: all 0.5s; -} - -/*============================================ - - 10 -- Changelog - -==============================================*/ -.changelog-item { - padding: 15px 15px; - background: #ffffff; - margin-bottom: 30px; - border-radius: 25px; - font-size: 17px; - -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); -} - -.changelog-item .title { - margin-bottom: 14px; -} - -@media only screen and (max-width: 575px) { - .changelog-item .title { - margin-bottom: 10px; - } -} - -.changelog-item .date { - display: block; - margin-bottom: 30px; -} - -@media only screen and (max-width: 575px) { - .changelog-item .date { - margin-bottom: 20px; - } -} - -@media screen and (min-width: 400px) { - .changelog-item { - padding: 60px 40px; - } -} - -@media only screen and (max-width: 575px) { - .changelog-item .cate { - margin-bottom: 25px; - padding: 0 30px; - border-radius: 20px; - font-size: 16px; - } -} - -.update-button { - display: inline-block; - margin-bottom: 35px; - line-height: 40px; - padding: 5px 40px; - font-weight: 600; - border-radius: 25px; - font-size: 18px; -} - -.update-button.update { - background-color: rgba(107, 211, 149, 0.102); - color: #57f195; -} - -.update-button.bug { - background-color: rgba(255, 85, 95, 0.102); - color: #ff555f; -} - -.update-button.feature { - background-color: rgba(50, 79, 231, 0.102); - color: #324fe7; -} - -.update-button img { - width: 40px; - margin-right: 15px; -} - -/*============================================ - - 11 -- article - -==============================================*/ -.article-content .single-list-article ol li { - font-size: 16px; - font-weight: 400; - line-height: 30px; - margin-bottom: 10px; -} - -.article-area .single-article ul.list-of-article li { - display: block; - padding: 10px 20px 10px 35px; - background-color: #e7fefd; - margin-bottom: 20px; - -webkit-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; -} - -@media only screen and (max-width: 767px) { - .article-area .single-article ul.list-of-article li { - padding: 10px; - } -} - -.article-area .single-article ul.list-of-article li:last-child { - margin-bottom: 0; -} - -.article-area .single-article ul.list-of-article li:hover { - -webkit-box-shadow: 0px 2px 8px rgba(1, 1, 1, 0.2); - box-shadow: 0px 2px 8px rgba(1, 1, 1, 0.2); -} - -.article-area .single-article ul.list-of-article li a { - font-size: 24px; - line-height: 26px; - font-weight: 300; - display: inline-block; - cursor: pointer; -} - -.article-area .single-article ul.list-of-article li a i { - margin-right: 20px; - vertical-align: top; -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .article-area .single-article ul.list-of-article li a i { - vertical-align: middle; - } -} - -@media only screen and (max-width: 767px) { - .article-area .single-article ul.list-of-article li a i { - margin-right: 10px; - vertical-align: middle; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .article-area .single-article ul.list-of-article li a { - font-size: 20px; - } -} - -@media only screen and (max-width: 767px) { - .article-area .single-article ul.list-of-article li a { - font-size: 16px; - } -} - -.article-area .single-article ul.list-of-article li span { - font-size: 15px; - line-height: 26px; - font-weight: 300; - float: right; -} - -@media only screen and (max-width: 767px) { - .article-area .single-article ul.list-of-article li span { - font-size: 13px; - } -} - -/*============================================ - - 12 -- Documentation - -==============================================*/ -.sidebar-wrapper { - position: -webkit-sticky; - position: sticky; - top: 80px; - border: 1px solid #ffe9e1; - border-radius: 6px; - background-color: #fffdfd; - -webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1); -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .sidebar-wrapper { - display: none; - } -} - -@media only screen and (max-width: 767px) { - .sidebar-wrapper { - display: none; - } -} - -@media only screen and (min-width: 576px) and (max-width: 767px) { - .sidebar-wrapper { - display: none; - } -} - -@media only screen and (max-width: 575px) { - .sidebar-wrapper { - display: none; - } -} - -@media only screen and (max-width: 479px) { - .sidebar-wrapper { - display: none; - } -} - -.sidebar-widget h4.sidebar-title { - font-size: 18px; - font-weight: 500; - margin: 0; - line-height: 1; - color: #fff; - text-align: center; - margin-bottom: 40px; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - padding: 20px 50px; - border-radius: 5px; -} - -.sidebar-widget .sidebar-search-form { - padding: 5px 20px 5px 20px; - position: relative; - margin-bottom: 20px; -} - -.sidebar-widget .sidebar-search-form .form-group { - position: relative; - margin-bottom: 0px; -} - -.sidebar-widget .sidebar-search-form .form-group input[type="search"] { - position: relative; - width: 100%; - height: 60px; - background: #fff; - font-size: 14px; - padding: 10px 50px 10px 30px; - border-radius: 30px; - -webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1); - border: none; -} - -.sidebar-widget .sidebar-search-form .form-group button { - position: absolute; - top: 15px; - right: 25px; - font-size: 14px; - font-weight: 700; - color: #E63108; - background: transparent; - cursor: pointer; - -webkit-transition: all 500ms ease; - transition: all 500ms ease; - border: none; -} - -.sidebar-widget .doc-nav { - padding: 17px 18px 29px; -} - -.sidebar-widget .doc-nav > ul { - list-style: outside none none; - margin: 0; - padding: 0; -} - -.sidebar-widget .doc-nav > ul > li { - padding: 0 0 13px; - display: block; -} - -.sidebar-widget .doc-nav > ul > li:last-child { - padding: 0 0 0; -} - -.sidebar-widget .doc-nav > ul > li > a { - font-size: 15px; - display: block; -} - -.sidebar-widget .doc-nav > ul > li > a i { - float: right; - font-size: 12px; -} - -.sidebar-widget .doc-nav > ul > li ul li { - padding: 7px 0 0 15px; -} - -.sidebar-widget .doc-nav > ul > li ul li a { - display: block; -} - -.sidebar-widget .doc-nav > ul > li ul li a:active { - color: #E63108; -} - -.card { - border: none; -} - -.card-title { - font-size: 18px; - margin-top: 5px; - font-weight: 600; - line-height: 1.2; - text-transform: uppercase; -} - -.card-header { - padding: 20px 20px; - border: 0; - background: none; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.card-body { - padding: 0px 20px 20px 20px; -} - -/*-- Button --*/ -.btn, -.dataTables_wrapper .dataTables_paginate .paginate_button { - font-size: 14px; -} - -.btn.btn-default, -.dataTables_wrapper .dataTables_paginate .btn-default.paginate_button { - color: #4d5052; - background-color: #fff; - border-color: #e8e9e9; - padding: 6px 18px; -} - -.btn.btn-secondary, -.dataTables_wrapper .dataTables_paginate .paginate_button { - -webkit-box-shadow: 0 1px 1px 0 rgba(41, 43, 48, 0.06); - box-shadow: 0 1px 1px 0 rgba(41, 43, 48, 0.06); -} - -.btn.btn-square, -.dataTables_wrapper .dataTables_paginate .btn-square.paginate_button { - border-radius: 0; -} - -.btn.box_shadow, -.dataTables_wrapper .dataTables_paginate .box_shadow.paginate_button { - -webkit-box-shadow: 0 4px 5px rgba(41, 43, 48, 0.2); - box-shadow: 0 4px 5px rgba(41, 43, 48, 0.2); -} - -.btn.btn-facebook, -.dataTables_wrapper .dataTables_paginate .btn-facebook.paginate_button { - background: #3b5998; - color: #fff; -} - -.btn.btn-google, -.dataTables_wrapper .dataTables_paginate .btn-google.paginate_button { - background: #4285f4; - color: #fff; -} - -/*-- Alert --*/ -.alert { - font-size: 0.9375rem; -} - -.alert-icon { - padding-left: 3rem; -} - -.alert-icon > i { - color: inherit !important; - font-size: 1rem; - position: absolute; - top: 1rem; - left: 1rem; -} - -.alert-avatar { - padding-left: 3.75rem; -} - -.alert-avatar .avatar { - position: absolute; - top: 0.5rem; - left: 0.75rem; -} - -/*-- Code Toolbar --*/ -.code-toolbar { - position: relative; - margin-top: 20px; -} - -.code-toolbar pre { - border: 1px solid #eaeff4; - background-color: #f9fafb; - padding-bottom: 12px; - margin-top: 0; - margin-bottom: 25px; -} - -.code-toolbar pre::before, .code-toolbar pre::after { - display: none; -} - -.code-toolbar pre code { - font-size: 16px; - color: #000000; - background: none; - text-shadow: 0 1px #ffffff; - border-left: 0; - -webkit-box-shadow: none; - box-shadow: none; - text-align: left; - white-space: pre; - word-spacing: none; - word-break: normal; - word-wrap: normal; - line-height: 1.5; - -moz-tab-size: 4; - -o-tab-size: 4; - tab-size: 4; - -webkit-hyphens: none; - -ms-hyphens: none; - hyphens: none; -} - -.code-toolbar .toolbar { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - position: absolute; - top: 10px; - right: 10px; -} - -.code-toolbar .toolbar .toolbar-item { - padding: 0 4px; - display: inline-block; -} - -.code-toolbar .toolbar .toolbar-item span { - background: transparent; - color: #E63108; - -webkit-box-shadow: none; - box-shadow: none; - font-size: 11px; - opacity: 0.75; - letter-spacing: 1px; - border-radius: 0; -} - -.code-toolbar .toolbar .toolbar-item a { - color: #ffffff; - font-size: 10px; - line-height: 18px; - font-weight: 500; - padding: 2px 5px; - letter-spacing: 1px; - text-transform: uppercase; - background: #E63108; - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 2px; - cursor: pointer; -} - -/*============================================ - - 13 -- Blog - -==============================================*/ -/*-- Blog Content --*/ -.blog-content .single-blog-content .inner-box { - position: relative; - border-radius: 20px; - overflow: hidden; - -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); - margin-bottom: 70px; -} - -.blog-content .single-blog-content .image-box { - position: relative; - overflow: hidden; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); -} - -.blog-content .single-blog-content .image-box img { - width: 100%; - -webkit-transition: all 500ms ease; - transition: all 500ms ease; -} - -.blog-content .single-blog-content:hover .image-box img { - opacity: 0.5; - -webkit-transform: scale(1.05); - transform: scale(1.05); -} - -.blog-content .single-blog-content .lower-content { - position: relative; - padding: 41px 40px 0px 40px; -} - -.blog-content .single-blog-content .lower-content .upper-box { - position: relative; - padding-bottom: 33px; - border-bottom: 1px solid #d6d6d6; -} - -.blog-content .single-blog-content .lower-content .upper-box .post-date { - position: relative; - font-size: 16px; - color: #41465b; - margin-bottom: 18px; -} - -.blog-content .single-blog-content .lower-content .upper-box .post-date i { - margin-right: 10px; -} - -.blog-content .single-blog-content .lower-content .upper-box h3 { - position: relative; - display: block; - font-size: 24px; - line-height: 32px; - font-weight: 500; - color: #41465b; - margin-bottom: 27px; -} - -.blog-content .single-blog-content .lower-content .upper-box h3 a { - display: inline-block; - color: #41465b; -} - -.blog-content .single-blog-content .lower-content .upper-box h3 a:hover { - color: #E63108; -} - -.blog-content .single-blog-content .lower-content .upper-box .text { - position: relative; - font-size: 16px; -} - -.blog-content .single-blog-content .lower-content .lower-box { - position: relative; - padding: 50px 0px 100px 0px; -} - -.blog-content .single-blog-content .lower-content .lower-box .left-content { - position: relative; - padding: 9px 0px 11px 65px; -} - -.blog-content .single-blog-content .lower-content .lower-box .left-content .admin-image { - position: absolute; - left: 0px; - top: 0px; - width: 50px; - height: 50px; - border-radius: 50%; -} - -.blog-content .single-blog-content .lower-content .lower-box .left-content .admin-image img { - width: 100%; - border-radius: 50%; -} - -.blog-content .single-blog-content .lower-content .lower-box .left-content .admin-name { - position: relative; - font-size: 14px; -} - -.blog-content .single-blog-content .lower-content .lower-box .right-content { - margin-top: 11px; -} - -.blog-content .single-blog-content .lower-content .lower-box .right-content li { - position: relative; - display: inline-block; - margin-right: 30px; -} - -.blog-content .single-blog-content .lower-content .lower-box .right-content li:last-child { - margin-right: 0px; -} - -.blog-content .single-blog-content .lower-content .lower-box .right-content li a { - position: relative; - display: inline-block; - font-size: 18px; - color: #41465b; -} - -.blog-content .single-blog-content .lower-content .lower-box .right-content li a:hover { - color: #E63108; -} - -.blog-content .single-blog-content .lower-content .lower-box .right-content li.share .social-links { - position: absolute; - right: 0%; - bottom: -30px; - width: 105px; - opacity: 0; - visibility: hidden; - -webkit-transform: translateY(10px); - transform: translateY(10px); - -webkit-transition: all 500ms ease; - transition: all 500ms ease; -} - -/*-- Blog Single --*/ -.blog-single-content .image-box img { - width: 100%; -} - -.blog-single-content .post-details { - position: relative; - overflow: hidden; - border-radius: 20px; - -webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); - margin-bottom: 70px; -} - -.blog-single-content .inner-box { - position: relative; - padding: 41px 40px 0px 40px; -} - -.blog-single-content .inner-box .upper-box .post-date { - position: relative; - font-size: 16px; - color: #41465b; - margin-bottom: 18px; -} - -.blog-single-content .inner-box .upper-box .post-date i { - margin-right: 10px; -} - -.blog-single-content .inner-box .upper-box h3 { - position: relative; - display: block; - font-size: 24px; - line-height: 32px; - color: #41465b; - font-weight: 500; - margin-bottom: 27px; -} - -.blog-single-content .inner-box .upper-box .text { - position: relative; - font-size: 16px; - margin-bottom: 54px; -} - -.blog-single-content .inner-box .upper-box blockquote { - position: relative; - display: block; - font-size: 16px; - font-style: italic; - margin-bottom: 43px; - padding: 29px 0px 31px 50px; -} - -.blog-single-content .inner-box .upper-box blockquote:before { - position: absolute; - content: ''; - background: #E63108; - width: 100%; - height: 100%; - left: 0px; - top: 0px; - border-radius: 20px; - z-index: -1; -} - -.blog-single-content .inner-box .upper-box blockquote:after { - position: absolute; - content: ''; - background: #fff; - width: 100%; - height: 100%; - left: 5px; - top: 0px; - border-radius: 20px; - z-index: -1; -} - -.blog-single-content .inner-box .two-column .image-box { - margin-right: -16px; -} - -.blog-single-content .inner-box .two-column .image-box img { - width: 100%; -} - -.blog-single-content .inner-box .two-column .text { - margin-left: 30px; - margin: 7px 0px 0px 30px; -} - -.blog-single-content .inner-box .two-column .text p { - font-size: 16px; - margin-bottom: 30px; -} - -.blog-single-content .inner-box .two-column .text p:last-child { - margin-bottom: 0px; -} - -.blog-single-content .inner-box .upper-box { - border-bottom: 1px solid #d6d6d6; - padding-bottom: 39px; -} - -.blog-single-content .inner-box .lower-box { - position: relative; - padding: 20px 0px 40px 0px; -} - -.blog-single-content .inner-box .lower-box .left-content { - position: relative; - padding: 9px 0px 11px 65px; -} - -.blog-single-content .inner-box .lower-box .left-content .admin-image { - position: absolute; - left: 0px; - top: 0px; - width: 50px; - height: 50px; - border-radius: 50%; -} - -.blog-single-content .inner-box .lower-box .left-content .admin-image img { - width: 100%; - border-radius: 50%; -} - -.blog-single-content .inner-box .lower-box .left-content .admin-name { - position: relative; - font-size: 14px; -} - -.blog-single-content .inner-box .lower-box .right-content { - margin-top: 11px; -} - -.blog-single-content .inner-box .lower-box .right-content li { - position: relative; - display: inline-block; - margin-right: 30px; - font-size: 18px; -} - -.blog-single-content .inner-box .lower-box .right-content li a { - color: #41465b; - z-index: 1; -} - -.blog-single-content .inner-box .lower-box .right-content li:last-child { - margin-right: 0px; -} - -.blog-single-content .inner-box .lower-box .right-content li a:hover { - color: #E63108; -} - -.blog-single-content .inner-box .lower-box .right-content li.share .social-links { - position: absolute; - right: 0%; - bottom: -30px; - width: 105px; - opacity: 0; - visibility: hidden; - -webkit-transform: translateY(10px); - transform: translateY(10px); - -webkit-transition: all 500ms ease; - transition: all 500ms ease; -} - -.blog-single-content .inner-box .lower-box .right-content li.share:hover .social-links { - opacity: 1; - right: 0%; - -webkit-transform: translateY(0px); - transform: translateY(0px); - visibility: visible; -} - -.blog-single-content .inner-box .lower-box .right-content li.share .social-links a { - font-size: 14px; -} - -.blog-single-content .inner-box .lower-box .right-content li.share .social-links li { - margin-right: 15px; -} - -.blog-single-content .inner-box .lower-box .right-content li.share .social-links li:last-child { - margin-right: 0px; -} - -.blog-single-content .author-box { - position: relative; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - padding: 35px 40px; - border-radius: 20px; - margin-bottom: 67px; -} - -.blog-single-content .author-box .author-inner { - position: relative; - padding: 14px 175px 7px 0px; -} - -.blog-single-content .author-box .author-inner .author-thumb { - position: absolute; - top: 0px; - right: 0px; - border-radius: 10px; -} - -.blog-single-content .author-box .author-inner .author-thumb img { - width: 100%; - border-radius: 10px; -} - -.blog-single-content .author-box .author-inner .inner { - position: relative; -} - -.blog-single-content .author-box .author-inner .inner h4 { - position: relative; - display: block; - font-size: 20px; - line-height: 30px; - color: #fff; - font-weight: 500; - margin-bottom: 19px; -} - -.blog-single-content .author-box .author-inner .inner .text { - position: relative; - font-size: 16px; - color: #fff; -} - -.blog-single-content .author-box .author-inner .inner .social-links { - position: absolute; - top: 4px; - right: 0px; -} - -.blog-single-content .author-box .author-inner .inner .social-links li { - position: relative; - display: inline-block; - margin-right: 10px; -} - -.blog-single-content .author-box .author-inner .inner .social-links li:last-child { - margin-right: 0px; -} - -.blog-single-content .author-box .author-inner .inner .social-links li a { - position: relative; - display: inline-block; - font-size: 14px; - color: #fff; - width: 35px; - height: 35px; - line-height: 35px; - text-align: center; - border: 1px solid #fff; - border-radius: 50%; -} - -.blog-single-content .author-box .author-inner .inner .social-links li a:hover { - background: #fff; - color: #E63108; -} - -.blog-single-content .comments-area .comment { - position: relative; - padding: 0px 100px; -} - -.blog-single-content .comments-area .comment .author-thumb { - position: absolute; - left: 0px; - top: -9px; - width: 75px; - height: 75px; - border-radius: 50%; - -webkit-box-shadow: 0 0px 30px 0px rgba(0, 0, 0, 0.1); - box-shadow: 0 0px 30px 0px rgba(0, 0, 0, 0.1); -} - -.blog-single-content .comments-area .comment .author-thumb img { - width: 100%; - border-radius: 50%; -} - -.blog-single-content .comments-area .comment .comment-info { - position: relative; - margin-bottom: 13px; -} - -.blog-single-content .comments-area .comment .comment-info .name { - position: relative; - display: block; - font-size: 18px; - font-weight: 500; - color: #41465b; - margin-bottom: 6px; -} - -.blog-single-content .comments-area .comment .comment-info .date { - position: relative; - font-size: 14px; - color: #bbbbbb; -} - -.blog-single-content .comments-area .comment .comment-inner { - position: relative; -} - -.blog-single-content .comments-area .comment .comment-inner .text { - position: relative; - font-size: 14px; - line-height: 28px; -} - -.blog-single-content .comments-area .comment .comment-inner .replay-btn { - position: absolute; - top: -4px; - right: -15px; -} - -.blog-single-content .comments-area .comment .comment-inner .replay-btn a { - position: relative; - display: inline-block; - font-size: 15px; - color: #E63108; - z-index: 1; -} - -.blog-single-content .comments-area .comment .comment-inner .replay-btn a:hover { - text-decoration: underline; - color: #E63108; -} - -.blog-single-content .comments-area .sec-title h2 { - font-size: 30px; - margin-bottom: 68px; -} - -.blog-single-content .comments-form-area .sec-title h2 { - font-size: 30px; - margin-bottom: 68px; -} - -.blog-single-content .comments-area { - position: relative; - margin-bottom: 58px; -} - -.blog-single-content .comments-area .comment { - position: relative; - margin-bottom: 67px; -} - -.blog-single-content .comments-area .comment.replay-comment { - margin-left: 100px; -} - -.blog-single-content .comments-area .comment:last-child { - margin-bottom: 0px; -} - -.blog-single-content .comments-form-area .form-group { - position: relative; - margin-bottom: 20px; -} - -.blog-single-content .comments-form-area .form-group:last-child { - margin-bottom: 0px; - padding-top: 10px; -} - -.blog-single-content .comments-form-area .form-group input[type='text'], .blog-single-content .comments-form-area .form-group input[type='email'] { - position: relative; - width: 100%; - height: 50px; - border: 1px solid #dddddd; - border-radius: 30px; - padding: 10px 20px; - font-size: 13px; - color: #41465b; - background: #fff; - -webkit-transition: all 500ms ease; - transition: all 500ms ease; -} - -.blog-single-content .comments-form-area .form-group textarea { - position: relative; - width: 100%; - height: 50px; - border: 1px solid #dddddd; - border-radius: 30px; - padding: 10px 20px; - font-size: 13px; - color: #41465b; - background: #fff; - -webkit-transition: all 500ms ease; - transition: all 500ms ease; - height: 120px; - resize: none; - border-radius: 15px; - display: block; -} - -.blog-single-content .comments-form-area .form-group input:focus, -.blog-single-content .comments-form-area .form-group textarea:focus { - border-color: #E63108; -} - -.blog-single-content .comments-form-area .form-group .theme-btn-two { - padding: 10px 44px; -} - -/*============================================ - - 14 -- Contact - -==============================================*/ -.contact-form-wrap input { - width: 100%; - height: 50px; - border: 1px solid #edeef5; - padding: 5px 20px; - color: #41465b; -} - -.contact-form-wrap textarea { - width: 100%; - height: 200px; - border: 1px solid #edeef5; - padding: 10px 20px; - color: #41465b; - resize: none; -} - -.contact-form-wrap input[type="submit"], -.contact-form-wrap button, -.contact-form-wrap .submit { - width: auto; - height: 50px; - border: none; - padding: 5px 30px; - background-color: #E63108; - font-size: 16px; - color: #ffffff; - text-transform: capitalize; - font-weight: 500; -} - -.contact-form-wrap input[type="submit"]:hover, -.contact-form-wrap button:hover, -.contact-form-wrap .submit:hover { - background-color: #252525; -} - -/*============================================ - - 15 -- User - -==============================================*/ -.solid-btn-login { - -webkit-box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); - box-shadow: 0px 17px 43px 1px rgba(255, 144, 104, 0.4); - color: #fff; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - padding: none; -} - -.solid-btn-login:hover { - -webkit-box-shadow: 0px 17px 43px 1px rgba(36, 30, 52, 0.4); - box-shadow: 0px 17px 43px 1px rgba(36, 30, 52, 0.4); - background: -webkit-gradient(linear, left bottom, right top, from(#330b73), color-stop(#330b73), color-stop(#330b73), color-stop(#330b73), to(#330b73)); - background: linear-gradient(to right top, #330b73, #330b73, #330b73, #330b73, #330b73); - color: #ffffff; -} - -.bg-img { - background-size: cover; - background-position: center center; - background-repeat: no-repeat; -} - -.forgot-password { - text-align: right; -} - -.login-signup-content { - height: 100%; - width: 100%; - z-index: 1; - overflow: hidden; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -.login-signup-wrap h1 { - font-size: 35px; -} - -.vh-100 { - height: 100vh !important; -} - -.bg-cover { - background-repeat: no-repeat; - background-position: 50%; - background-size: cover; -} - -.ml-n3, -.mx-n3 { - margin-left: -0.98rem !important; -} - -.small, -small { - font-size: 90%; -} - -.input-group-text { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 0.9375rem; - font-weight: 400; - line-height: 1.5; - color: #989db5; - text-align: center; - white-space: nowrap; - background-color: #fdfbfb; - border: 1px solid #f8f8fc; - border-radius: 0.375rem; -} - -.form-text-area:focus { - background-color: #fff; - border-color: #E63108; - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 5px; -} - -.btn.border-radius { - border-radius: 4px; -} - -.login-signup-form .form-group { - position: relative; -} - -.login-signup-form .form-group label { - font-family: "Nunito", sans-serif; - font-weight: 500; - font-size: 88%; -} - -.login-signup-form .form-group .input-group.input-group-merge > .form-control { - text-indent: 35px; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - height: calc(2.65em + 0.75rem + 2px); -} - -.login-signup-form .form-group .input-group.input-group-merge > .form-control:focus { - z-index: inherit; - background-color: #fff; - border-color: #E63108; - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 5px; -} - -.input-icon { - height: calc(3.4rem + 2px); - position: absolute; - z-index: 2; - display: block; - width: 40px; - top: 0; - bottom: 0; - left: 0; -} - -.input-icon i { - margin-left: 5px; - font-size: 16px; - position: relative; - top: 15px; - padding: 18px 15px; -} - -.login-signup-card { - position: relative; - z-index: 2; -} - -.custom-control-label { - line-height: 1.5; - position: relative; - margin-bottom: 0; - vertical-align: top; -} - -.login-bg { - background-color: #fffaf8; -} - -.main-content- { - min-height: 100vh; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; -} - -/*============================================ - - 16 -- Newsletter - -==============================================*/ -.col-center { - margin-left: auto; - margin-right: auto; -} - -.newsletter { - padding: 45px 70px; - border-radius: 4px; - background-repeat: no-repeat; - background-size: cover; - margin-bottom: -75px; -} - -.newsletter form { - position: relative; -} - -.newsletter .news-email { - width: 100%; - height: 70px; - line-height: 70px; - border: 1px solid #fff; - padding: 10px 30px; - border-radius: 4px; -} - -.newsletter .news-btn { - position: absolute; - right: 10px; - top: 10px; - width: 140px; - height: 50px; - background: -webkit-gradient(linear, left bottom, right top, from(#E63108), color-stop(#E63108), color-stop(#E63108), color-stop(#E63108), to(#E63108)); - background: linear-gradient(to right top, #E63108, #E63108, #E63108, #E63108, #E63108); - color: #fff; - border: 1px solid #E63108; - border-radius: 4px; - font-weight: 600; -} - -/*============================================ - - 17 -- Footer - -==============================================*/ -.footer-area { - padding-top: 200px; - padding-bottom: 30px; -} - -.footer-logo { - color: #E63108; - font-size: 36px; -} - -.footer-area p { - font-size: 18px; - margin-top: 15px; - margin-bottom: 40px; -} - -.foot-divider { - width: 100%; - height: 1px; - background-color: #f6f6f6; -} - -.social-link { - list-style-type: none; - margin-top: 50px; - margin-bottom: 25px; - padding-left: 0; -} - -.social-link li { - display: inline-block; - margin: 0 10px; -} - -.social-link li a { - width: 45px; - height: 45px; - line-height: 45px; - border: 1px solid #c7cce6; - border-radius: 50%; - display: block; - color: #41465b; - font-size: 18px; - -webkit-transition: .5s; - transition: .5s; -} - -.social-link li a:hover, .social-link li a:focus { - text-decoration: none; - color: #fff; - background-color: #E63108; - border-color: #E63108; -} - -p.copyright-text { - font-size: 16px; - margin-top: 10px; - color: #41465b; -} -/*# sourceMappingURL=style.css.map */ \ No newline at end of file diff --git a/desarrollo/diseno/support-center/css/vendor.css b/desarrollo/diseno/support-center/css/vendor.css deleted file mode 100644 index d90fd0c7..00000000 --- a/desarrollo/diseno/support-center/css/vendor.css +++ /dev/null @@ -1,48243 +0,0 @@ -/*! - * Bootstrap v4.5.2 (https://getbootstrap.com/) - * Copyright 2011-2020 The Bootstrap Authors - * Copyright 2011-2020 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #28a745; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #28a745; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace -} - -*, -::after, -::before { - box-sizing: border-box -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: transparent -} - -article, -aside, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section { - display: block -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff -} - -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin-top: 0; - margin-bottom: .5rem -} - -p { - margin-top: 0; - margin-bottom: 1rem -} - -abbr[data-original-title], -abbr[title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - -webkit-text-decoration-skip-ink: none; - text-decoration-skip-ink: none -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit -} - -dl, -ol, -ul { - margin-top: 0; - margin-bottom: 1rem -} - -ol ol, -ol ul, -ul ol, -ul ul { - margin-bottom: 0 -} - -dt { - font-weight: 700 -} - -dd { - margin-bottom: .5rem; - margin-left: 0 -} - -blockquote { - margin: 0 0 1rem -} - -b, -strong { - font-weight: bolder -} - -small { - font-size: 80% -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline -} - -sub { - bottom: -.25em -} - -sup { - top: -.5em -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent -} - -a:hover { - color: #0056b3; - text-decoration: underline -} - -a:not([href]):not([class]) { - color: inherit; - text-decoration: none -} - -a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none -} - -code, -kbd, -pre, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 1em -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar -} - -figure { - margin: 0 0 1rem -} - -img { - vertical-align: middle; - border-style: none -} - -svg { - overflow: hidden; - vertical-align: middle -} - -table { - border-collapse: collapse -} - -caption { - padding-top: .75rem; - padding-bottom: .75rem; - color: #6c757d; - text-align: left; - caption-side: bottom -} - -th { - text-align: inherit -} - -label { - display: inline-block; - margin-bottom: .5rem -} - -button { - border-radius: 0 -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color -} - -button, -input, -optgroup, -select, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit -} - -button, -input { - overflow: visible -} - -button, -select { - text-transform: none -} - -[role=button] { - cursor: pointer -} - -select { - word-wrap: normal -} - -[type=button], -[type=reset], -[type=submit], -button { - -webkit-appearance: button -} - -[type=button]:not(:disabled), -[type=reset]:not(:disabled), -[type=submit]:not(:disabled), -button:not(:disabled) { - cursor: pointer -} - -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner, -button::-moz-focus-inner { - padding: 0; - border-style: none -} - -input[type=checkbox], -input[type=radio] { - box-sizing: border-box; - padding: 0 -} - -textarea { - overflow: auto; - resize: vertical -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0 -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: .5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal -} - -progress { - vertical-align: baseline -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto -} - -[type=search] { - outline-offset: -2px; - -webkit-appearance: none -} - -[type=search]::-webkit-search-decoration { - -webkit-appearance: none -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button -} - -output { - display: inline-block -} - -summary { - display: list-item; - cursor: pointer -} - -template { - display: none -} - -[hidden] { - display: none !important -} - -.h1, -.h2, -.h3, -.h4, -.h5, -.h6, -h1, -h2, -h3, -h4, -h5, -h6 { - margin-bottom: .5rem; - font-weight: 500; - line-height: 1.2 -} - -.h1, -h1 { - font-size: 2.5rem -} - -.h2, -h2 { - font-size: 2rem -} - -.h3, -h3 { - font-size: 1.75rem -} - -.h4, -h4 { - font-size: 1.5rem -} - -.h5, -h5 { - font-size: 1.25rem -} - -.h6, -h6 { - font-size: 1rem -} - -.lead { - font-size: 1.25rem; - font-weight: 300 -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2 -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2 -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2 -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2 -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, .1) -} - -.small, -small { - font-size: 80%; - font-weight: 400 -} - -.mark, -mark { - padding: .2em; - background-color: #fcf8e3 -} - -.list-unstyled { - padding-left: 0; - list-style: none -} - -.list-inline { - padding-left: 0; - list-style: none -} - -.list-inline-item { - display: inline-block -} - -.list-inline-item:not(:last-child) { - margin-right: .5rem -} - -.initialism { - font-size: 90%; - text-transform: uppercase -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d -} - -.blockquote-footer::before { - content: "\2014\00A0" -} - -.img-fluid { - max-width: 100%; - height: auto -} - -.img-thumbnail { - padding: .25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: .25rem; - max-width: 100%; - height: auto -} - -.figure { - display: inline-block -} - -.figure-img { - margin-bottom: .5rem; - line-height: 1 -} - -.figure-caption { - font-size: 90%; - color: #6c757d -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word -} - -a>code { - color: inherit -} - -kbd { - padding: .2rem .4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: .2rem -} - -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700 -} - -pre { - display: block; - font-size: 87.5%; - color: #212529 -} - -pre code { - font-size: inherit; - color: inherit; - word-break: normal -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll -} - -.container, -.container-fluid, -.container-lg, -.container-md, -.container-sm, -.container-xl { - width: 100%; - padding-right: 15px; - padding-left: 15px; - margin-right: auto; - margin-left: auto -} - -@media (min-width:576px) { - - .container, - .container-sm { - max-width: 540px - } -} - -@media (min-width:768px) { - - .container, - .container-md, - .container-sm { - max-width: 720px - } -} - -@media (min-width:992px) { - - .container, - .container-lg, - .container-md, - .container-sm { - max-width: 960px - } -} - -@media (min-width:1200px) { - - .container, - .container-lg, - .container-md, - .container-sm, - .container-xl { - max-width: 1140px - } -} - -.row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -15px; - margin-left: -15px -} - -.no-gutters { - margin-right: 0; - margin-left: 0 -} - -.no-gutters>.col, -.no-gutters>[class*=col-] { - padding-right: 0; - padding-left: 0 -} - -.col, -.col-1, -.col-10, -.col-11, -.col-12, -.col-2, -.col-3, -.col-4, -.col-5, -.col-6, -.col-7, -.col-8, -.col-9, -.col-auto, -.col-lg, -.col-lg-1, -.col-lg-10, -.col-lg-11, -.col-lg-12, -.col-lg-2, -.col-lg-3, -.col-lg-4, -.col-lg-5, -.col-lg-6, -.col-lg-7, -.col-lg-8, -.col-lg-9, -.col-lg-auto, -.col-md, -.col-md-1, -.col-md-10, -.col-md-11, -.col-md-12, -.col-md-2, -.col-md-3, -.col-md-4, -.col-md-5, -.col-md-6, -.col-md-7, -.col-md-8, -.col-md-9, -.col-md-auto, -.col-sm, -.col-sm-1, -.col-sm-10, -.col-sm-11, -.col-sm-12, -.col-sm-2, -.col-sm-3, -.col-sm-4, -.col-sm-5, -.col-sm-6, -.col-sm-7, -.col-sm-8, -.col-sm-9, -.col-sm-auto, -.col-xl, -.col-xl-1, -.col-xl-10, -.col-xl-11, -.col-xl-12, -.col-xl-2, -.col-xl-3, -.col-xl-4, -.col-xl-5, -.col-xl-6, -.col-xl-7, -.col-xl-8, -.col-xl-9, -.col-xl-auto { - position: relative; - width: 100%; - padding-right: 15px; - padding-left: 15px -} - -.col { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% -} - -.row-cols-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% -} - -.row-cols-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% -} - -.row-cols-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% -} - -.row-cols-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% -} - -.row-cols-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% -} - -.row-cols-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% -} - -.col-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% -} - -.col-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% -} - -.col-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% -} - -.col-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% -} - -.col-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% -} - -.col-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% -} - -.col-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% -} - -.col-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% -} - -.col-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% -} - -.col-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% -} - -.col-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% -} - -.col-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% -} - -.col-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% -} - -.order-first { - -ms-flex-order: -1; - order: -1 -} - -.order-last { - -ms-flex-order: 13; - order: 13 -} - -.order-0 { - -ms-flex-order: 0; - order: 0 -} - -.order-1 { - -ms-flex-order: 1; - order: 1 -} - -.order-2 { - -ms-flex-order: 2; - order: 2 -} - -.order-3 { - -ms-flex-order: 3; - order: 3 -} - -.order-4 { - -ms-flex-order: 4; - order: 4 -} - -.order-5 { - -ms-flex-order: 5; - order: 5 -} - -.order-6 { - -ms-flex-order: 6; - order: 6 -} - -.order-7 { - -ms-flex-order: 7; - order: 7 -} - -.order-8 { - -ms-flex-order: 8; - order: 8 -} - -.order-9 { - -ms-flex-order: 9; - order: 9 -} - -.order-10 { - -ms-flex-order: 10; - order: 10 -} - -.order-11 { - -ms-flex-order: 11; - order: 11 -} - -.order-12 { - -ms-flex-order: 12; - order: 12 -} - -.offset-1 { - margin-left: 8.333333% -} - -.offset-2 { - margin-left: 16.666667% -} - -.offset-3 { - margin-left: 25% -} - -.offset-4 { - margin-left: 33.333333% -} - -.offset-5 { - margin-left: 41.666667% -} - -.offset-6 { - margin-left: 50% -} - -.offset-7 { - margin-left: 58.333333% -} - -.offset-8 { - margin-left: 66.666667% -} - -.offset-9 { - margin-left: 75% -} - -.offset-10 { - margin-left: 83.333333% -} - -.offset-11 { - margin-left: 91.666667% -} - -@media (min-width:576px) { - .col-sm { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-sm-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-sm-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-sm-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-sm-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-sm-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-sm-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-sm-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-sm-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-sm-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-sm-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-sm-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-sm-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-sm-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-sm-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-sm-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-sm-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-sm-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-sm-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-sm-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-sm-first { - -ms-flex-order: -1; - order: -1 - } - - .order-sm-last { - -ms-flex-order: 13; - order: 13 - } - - .order-sm-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-sm-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-sm-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-sm-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-sm-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-sm-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-sm-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-sm-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-sm-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-sm-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-sm-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-sm-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-sm-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-sm-0 { - margin-left: 0 - } - - .offset-sm-1 { - margin-left: 8.333333% - } - - .offset-sm-2 { - margin-left: 16.666667% - } - - .offset-sm-3 { - margin-left: 25% - } - - .offset-sm-4 { - margin-left: 33.333333% - } - - .offset-sm-5 { - margin-left: 41.666667% - } - - .offset-sm-6 { - margin-left: 50% - } - - .offset-sm-7 { - margin-left: 58.333333% - } - - .offset-sm-8 { - margin-left: 66.666667% - } - - .offset-sm-9 { - margin-left: 75% - } - - .offset-sm-10 { - margin-left: 83.333333% - } - - .offset-sm-11 { - margin-left: 91.666667% - } -} - -@media (min-width:768px) { - .col-md { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-md-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-md-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-md-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-md-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-md-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-md-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-md-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-md-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-md-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-md-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-md-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-md-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-md-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-md-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-md-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-md-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-md-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-md-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-md-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-md-first { - -ms-flex-order: -1; - order: -1 - } - - .order-md-last { - -ms-flex-order: 13; - order: 13 - } - - .order-md-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-md-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-md-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-md-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-md-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-md-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-md-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-md-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-md-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-md-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-md-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-md-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-md-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-md-0 { - margin-left: 0 - } - - .offset-md-1 { - margin-left: 8.333333% - } - - .offset-md-2 { - margin-left: 16.666667% - } - - .offset-md-3 { - margin-left: 25% - } - - .offset-md-4 { - margin-left: 33.333333% - } - - .offset-md-5 { - margin-left: 41.666667% - } - - .offset-md-6 { - margin-left: 50% - } - - .offset-md-7 { - margin-left: 58.333333% - } - - .offset-md-8 { - margin-left: 66.666667% - } - - .offset-md-9 { - margin-left: 75% - } - - .offset-md-10 { - margin-left: 83.333333% - } - - .offset-md-11 { - margin-left: 91.666667% - } -} - -@media (min-width:992px) { - .col-lg { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-lg-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-lg-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-lg-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-lg-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-lg-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-lg-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-lg-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-lg-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-lg-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-lg-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-lg-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-lg-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-lg-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-lg-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-lg-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-lg-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-lg-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-lg-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-lg-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-lg-first { - -ms-flex-order: -1; - order: -1 - } - - .order-lg-last { - -ms-flex-order: 13; - order: 13 - } - - .order-lg-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-lg-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-lg-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-lg-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-lg-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-lg-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-lg-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-lg-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-lg-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-lg-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-lg-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-lg-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-lg-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-lg-0 { - margin-left: 0 - } - - .offset-lg-1 { - margin-left: 8.333333% - } - - .offset-lg-2 { - margin-left: 16.666667% - } - - .offset-lg-3 { - margin-left: 25% - } - - .offset-lg-4 { - margin-left: 33.333333% - } - - .offset-lg-5 { - margin-left: 41.666667% - } - - .offset-lg-6 { - margin-left: 50% - } - - .offset-lg-7 { - margin-left: 58.333333% - } - - .offset-lg-8 { - margin-left: 66.666667% - } - - .offset-lg-9 { - margin-left: 75% - } - - .offset-lg-10 { - margin-left: 83.333333% - } - - .offset-lg-11 { - margin-left: 91.666667% - } -} - -@media (min-width:1200px) { - .col-xl { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: 100% - } - - .row-cols-xl-1>* { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .row-cols-xl-2>* { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .row-cols-xl-3>* { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .row-cols-xl-4>* { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .row-cols-xl-5>* { - -ms-flex: 0 0 20%; - flex: 0 0 20%; - max-width: 20% - } - - .row-cols-xl-6>* { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-xl-auto { - -ms-flex: 0 0 auto; - flex: 0 0 auto; - width: auto; - max-width: 100% - } - - .col-xl-1 { - -ms-flex: 0 0 8.333333%; - flex: 0 0 8.333333%; - max-width: 8.333333% - } - - .col-xl-2 { - -ms-flex: 0 0 16.666667%; - flex: 0 0 16.666667%; - max-width: 16.666667% - } - - .col-xl-3 { - -ms-flex: 0 0 25%; - flex: 0 0 25%; - max-width: 25% - } - - .col-xl-4 { - -ms-flex: 0 0 33.333333%; - flex: 0 0 33.333333%; - max-width: 33.333333% - } - - .col-xl-5 { - -ms-flex: 0 0 41.666667%; - flex: 0 0 41.666667%; - max-width: 41.666667% - } - - .col-xl-6 { - -ms-flex: 0 0 50%; - flex: 0 0 50%; - max-width: 50% - } - - .col-xl-7 { - -ms-flex: 0 0 58.333333%; - flex: 0 0 58.333333%; - max-width: 58.333333% - } - - .col-xl-8 { - -ms-flex: 0 0 66.666667%; - flex: 0 0 66.666667%; - max-width: 66.666667% - } - - .col-xl-9 { - -ms-flex: 0 0 75%; - flex: 0 0 75%; - max-width: 75% - } - - .col-xl-10 { - -ms-flex: 0 0 83.333333%; - flex: 0 0 83.333333%; - max-width: 83.333333% - } - - .col-xl-11 { - -ms-flex: 0 0 91.666667%; - flex: 0 0 91.666667%; - max-width: 91.666667% - } - - .col-xl-12 { - -ms-flex: 0 0 100%; - flex: 0 0 100%; - max-width: 100% - } - - .order-xl-first { - -ms-flex-order: -1; - order: -1 - } - - .order-xl-last { - -ms-flex-order: 13; - order: 13 - } - - .order-xl-0 { - -ms-flex-order: 0; - order: 0 - } - - .order-xl-1 { - -ms-flex-order: 1; - order: 1 - } - - .order-xl-2 { - -ms-flex-order: 2; - order: 2 - } - - .order-xl-3 { - -ms-flex-order: 3; - order: 3 - } - - .order-xl-4 { - -ms-flex-order: 4; - order: 4 - } - - .order-xl-5 { - -ms-flex-order: 5; - order: 5 - } - - .order-xl-6 { - -ms-flex-order: 6; - order: 6 - } - - .order-xl-7 { - -ms-flex-order: 7; - order: 7 - } - - .order-xl-8 { - -ms-flex-order: 8; - order: 8 - } - - .order-xl-9 { - -ms-flex-order: 9; - order: 9 - } - - .order-xl-10 { - -ms-flex-order: 10; - order: 10 - } - - .order-xl-11 { - -ms-flex-order: 11; - order: 11 - } - - .order-xl-12 { - -ms-flex-order: 12; - order: 12 - } - - .offset-xl-0 { - margin-left: 0 - } - - .offset-xl-1 { - margin-left: 8.333333% - } - - .offset-xl-2 { - margin-left: 16.666667% - } - - .offset-xl-3 { - margin-left: 25% - } - - .offset-xl-4 { - margin-left: 33.333333% - } - - .offset-xl-5 { - margin-left: 41.666667% - } - - .offset-xl-6 { - margin-left: 50% - } - - .offset-xl-7 { - margin-left: 58.333333% - } - - .offset-xl-8 { - margin-left: 66.666667% - } - - .offset-xl-9 { - margin-left: 75% - } - - .offset-xl-10 { - margin-left: 83.333333% - } - - .offset-xl-11 { - margin-left: 91.666667% - } -} - -.table { - width: 100%; - margin-bottom: 1rem; - color: #212529 -} - -.table td, -.table th { - padding: .75rem; - vertical-align: top; - border-top: 1px solid #dee2e6 -} - -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6 -} - -.table tbody+tbody { - border-top: 2px solid #dee2e6 -} - -.table-sm td, -.table-sm th { - padding: .3rem -} - -.table-bordered { - border: 1px solid #dee2e6 -} - -.table-bordered td, -.table-bordered th { - border: 1px solid #dee2e6 -} - -.table-bordered thead td, -.table-bordered thead th { - border-bottom-width: 2px -} - -.table-borderless tbody+tbody, -.table-borderless td, -.table-borderless th, -.table-borderless thead th { - border: 0 -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, .05) -} - -.table-hover tbody tr:hover { - color: #212529; - background-color: rgba(0, 0, 0, .075) -} - -.table-primary, -.table-primary>td, -.table-primary>th { - background-color: #b8daff -} - -.table-primary tbody+tbody, -.table-primary td, -.table-primary th, -.table-primary thead th { - border-color: #7abaff -} - -.table-hover .table-primary:hover { - background-color: #9fcdff -} - -.table-hover .table-primary:hover>td, -.table-hover .table-primary:hover>th { - background-color: #9fcdff -} - -.table-secondary, -.table-secondary>td, -.table-secondary>th { - background-color: #d6d8db -} - -.table-secondary tbody+tbody, -.table-secondary td, -.table-secondary th, -.table-secondary thead th { - border-color: #b3b7bb -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf -} - -.table-hover .table-secondary:hover>td, -.table-hover .table-secondary:hover>th { - background-color: #c8cbcf -} - -.table-success, -.table-success>td, -.table-success>th { - background-color: #c3e6cb -} - -.table-success tbody+tbody, -.table-success td, -.table-success th, -.table-success thead th { - border-color: #8fd19e -} - -.table-hover .table-success:hover { - background-color: #b1dfbb -} - -.table-hover .table-success:hover>td, -.table-hover .table-success:hover>th { - background-color: #b1dfbb -} - -.table-info, -.table-info>td, -.table-info>th { - background-color: #bee5eb -} - -.table-info tbody+tbody, -.table-info td, -.table-info th, -.table-info thead th { - border-color: #86cfda -} - -.table-hover .table-info:hover { - background-color: #abdde5 -} - -.table-hover .table-info:hover>td, -.table-hover .table-info:hover>th { - background-color: #abdde5 -} - -.table-warning, -.table-warning>td, -.table-warning>th { - background-color: #ffeeba -} - -.table-warning tbody+tbody, -.table-warning td, -.table-warning th, -.table-warning thead th { - border-color: #ffdf7e -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1 -} - -.table-hover .table-warning:hover>td, -.table-hover .table-warning:hover>th { - background-color: #ffe8a1 -} - -.table-danger, -.table-danger>td, -.table-danger>th { - background-color: #f5c6cb -} - -.table-danger tbody+tbody, -.table-danger td, -.table-danger th, -.table-danger thead th { - border-color: #ed969e -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7 -} - -.table-hover .table-danger:hover>td, -.table-hover .table-danger:hover>th { - background-color: #f1b0b7 -} - -.table-light, -.table-light>td, -.table-light>th { - background-color: #fdfdfe -} - -.table-light tbody+tbody, -.table-light td, -.table-light th, -.table-light thead th { - border-color: #fbfcfc -} - -.table-hover .table-light:hover { - background-color: #ececf6 -} - -.table-hover .table-light:hover>td, -.table-hover .table-light:hover>th { - background-color: #ececf6 -} - -.table-dark, -.table-dark>td, -.table-dark>th { - background-color: #c6c8ca -} - -.table-dark tbody+tbody, -.table-dark td, -.table-dark th, -.table-dark thead th { - border-color: #95999c -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe -} - -.table-hover .table-dark:hover>td, -.table-hover .table-dark:hover>th { - background-color: #b9bbbe -} - -.table-active, -.table-active>td, -.table-active>th { - background-color: rgba(0, 0, 0, .075) -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, .075) -} - -.table-hover .table-active:hover>td, -.table-hover .table-active:hover>th { - background-color: rgba(0, 0, 0, .075) -} - -.table .thead-dark th { - color: #fff; - background-color: #343a40; - border-color: #454d55 -} - -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6 -} - -.table-dark { - color: #fff; - background-color: #343a40 -} - -.table-dark td, -.table-dark th, -.table-dark thead th { - border-color: #454d55 -} - -.table-dark.table-bordered { - border: 0 -} - -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, .05) -} - -.table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, .075) -} - -@media (max-width:575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-sm>.table-bordered { - border: 0 - } -} - -@media (max-width:767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-md>.table-bordered { - border: 0 - } -} - -@media (max-width:991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-lg>.table-bordered { - border: 0 - } -} - -@media (max-width:1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch - } - - .table-responsive-xl>.table-bordered { - border: 0 - } -} - -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch -} - -.table-responsive>.table-bordered { - border: 0 -} - -.form-control { - display: block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - padding: .375rem .75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: .25rem; - transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .form-control { - transition: none - } -} - -.form-control::-ms-expand { - background-color: transparent; - border: 0 -} - -.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057 -} - -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::-moz-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control::placeholder { - color: #6c757d; - opacity: 1 -} - -.form-control:disabled, -.form-control[readonly] { - background-color: #e9ecef; - opacity: 1 -} - -input[type=date].form-control, -input[type=datetime-local].form-control, -input[type=month].form-control, -input[type=time].form-control { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff -} - -.form-control-file, -.form-control-range { - display: block; - width: 100% -} - -.col-form-label { - padding-top: calc(.375rem + 1px); - padding-bottom: calc(.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5 -} - -.col-form-label-lg { - padding-top: calc(.5rem + 1px); - padding-bottom: calc(.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5 -} - -.col-form-label-sm { - padding-top: calc(.25rem + 1px); - padding-bottom: calc(.25rem + 1px); - font-size: .875rem; - line-height: 1.5 -} - -.form-control-plaintext { - display: block; - width: 100%; - padding: .375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0 -} - -.form-control-plaintext.form-control-lg, -.form-control-plaintext.form-control-sm { - padding-right: 0; - padding-left: 0 -} - -.form-control-sm { - height: calc(1.5em + .5rem + 2px); - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -select.form-control[multiple], -select.form-control[size] { - height: auto -} - -textarea.form-control { - height: auto -} - -.form-group { - margin-bottom: 1rem -} - -.form-text { - display: block; - margin-top: .25rem -} - -.form-row { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px -} - -.form-row>.col, -.form-row>[class*=col-] { - padding-right: 5px; - padding-left: 5px -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem -} - -.form-check-input { - position: absolute; - margin-top: .3rem; - margin-left: -1.25rem -} - -.form-check-input:disabled~.form-check-label, -.form-check-input[disabled]~.form-check-label { - color: #6c757d -} - -.form-check-label { - margin-bottom: 0 -} - -.form-check-inline { - display: -ms-inline-flexbox; - display: inline-flex; - -ms-flex-align: center; - align-items: center; - padding-left: 0; - margin-right: .75rem -} - -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: .3125rem; - margin-left: 0 -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: .25rem; - font-size: 80%; - color: #28a745 -} - -.valid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: .25rem .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, .9); - border-radius: .25rem -} - -.is-valid~.valid-feedback, -.is-valid~.valid-tooltip, -.was-validated :valid~.valid-feedback, -.was-validated :valid~.valid-tooltip { - display: block -} - -.form-control.is-valid, -.was-validated .form-control:valid { - border-color: #28a745; - padding-right: calc(1.5em + .75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(.375em + .1875rem) center; - background-size: calc(.75em + .375rem) calc(.75em + .375rem) -} - -.form-control.is-valid:focus, -.was-validated .form-control:valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.was-validated textarea.form-control:valid, -textarea.form-control.is-valid { - padding-right: calc(1.5em + .75rem); - background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem) -} - -.custom-select.is-valid, -.was-validated .custom-select:valid { - border-color: #28a745; - padding-right: calc(.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) -} - -.custom-select.is-valid:focus, -.was-validated .custom-select:valid:focus { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.form-check-input.is-valid~.form-check-label, -.was-validated .form-check-input:valid~.form-check-label { - color: #28a745 -} - -.form-check-input.is-valid~.valid-feedback, -.form-check-input.is-valid~.valid-tooltip, -.was-validated .form-check-input:valid~.valid-feedback, -.was-validated .form-check-input:valid~.valid-tooltip { - display: block -} - -.custom-control-input.is-valid~.custom-control-label, -.was-validated .custom-control-input:valid~.custom-control-label { - color: #28a745 -} - -.custom-control-input.is-valid~.custom-control-label::before, -.was-validated .custom-control-input:valid~.custom-control-label::before { - border-color: #28a745 -} - -.custom-control-input.is-valid:checked~.custom-control-label::before, -.was-validated .custom-control-input:valid:checked~.custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57 -} - -.custom-control-input.is-valid:focus~.custom-control-label::before, -.was-validated .custom-control-input:valid:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before, -.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before { - border-color: #28a745 -} - -.custom-file-input.is-valid~.custom-file-label, -.was-validated .custom-file-input:valid~.custom-file-label { - border-color: #28a745 -} - -.custom-file-input.is-valid:focus~.custom-file-label, -.was-validated .custom-file-input:valid:focus~.custom-file-label { - border-color: #28a745; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: .25rem; - font-size: 80%; - color: #dc3545 -} - -.invalid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: .25rem .5rem; - margin-top: .1rem; - font-size: .875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, .9); - border-radius: .25rem -} - -.is-invalid~.invalid-feedback, -.is-invalid~.invalid-tooltip, -.was-validated :invalid~.invalid-feedback, -.was-validated :invalid~.invalid-tooltip { - display: block -} - -.form-control.is-invalid, -.was-validated .form-control:invalid { - border-color: #dc3545; - padding-right: calc(1.5em + .75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(.375em + .1875rem) center; - background-size: calc(.75em + .375rem) calc(.75em + .375rem) -} - -.form-control.is-invalid:focus, -.was-validated .form-control:invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.was-validated textarea.form-control:invalid, -textarea.form-control.is-invalid { - padding-right: calc(1.5em + .75rem); - background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem) -} - -.custom-select.is-invalid, -.was-validated .custom-select:invalid { - border-color: #dc3545; - padding-right: calc(.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) -} - -.custom-select.is-invalid:focus, -.was-validated .custom-select:invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.form-check-input.is-invalid~.form-check-label, -.was-validated .form-check-input:invalid~.form-check-label { - color: #dc3545 -} - -.form-check-input.is-invalid~.invalid-feedback, -.form-check-input.is-invalid~.invalid-tooltip, -.was-validated .form-check-input:invalid~.invalid-feedback, -.was-validated .form-check-input:invalid~.invalid-tooltip { - display: block -} - -.custom-control-input.is-invalid~.custom-control-label, -.was-validated .custom-control-input:invalid~.custom-control-label { - color: #dc3545 -} - -.custom-control-input.is-invalid~.custom-control-label::before, -.was-validated .custom-control-input:invalid~.custom-control-label::before { - border-color: #dc3545 -} - -.custom-control-input.is-invalid:checked~.custom-control-label::before, -.was-validated .custom-control-input:invalid:checked~.custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d -} - -.custom-control-input.is-invalid:focus~.custom-control-label::before, -.was-validated .custom-control-input:invalid:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before, -.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before { - border-color: #dc3545 -} - -.custom-file-input.is-invalid~.custom-file-label, -.was-validated .custom-file-input:invalid~.custom-file-label { - border-color: #dc3545 -} - -.custom-file-input.is-invalid:focus~.custom-file-label, -.was-validated .custom-file-input:invalid:focus~.custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) -} - -.form-inline { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center -} - -.form-inline .form-check { - width: 100% -} - -@media (min-width:576px) { - .form-inline label { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: 0 - } - - .form-inline .form-group { - display: -ms-flexbox; - display: flex; - -ms-flex: 0 0 auto; - flex: 0 0 auto; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - -ms-flex-align: center; - align-items: center; - margin-bottom: 0 - } - - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle - } - - .form-inline .form-control-plaintext { - display: inline-block - } - - .form-inline .custom-select, - .form-inline .input-group { - width: auto - } - - .form-inline .form-check { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: auto; - padding-left: 0 - } - - .form-inline .form-check-input { - position: relative; - -ms-flex-negative: 0; - flex-shrink: 0; - margin-top: 0; - margin-right: .25rem; - margin-left: 0 - } - - .form-inline .custom-control { - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center - } - - .form-inline .custom-control-label { - margin-bottom: 0 - } -} - -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: .375rem .75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: .25rem; - transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .btn { - transition: none - } -} - -.btn:hover { - color: #212529; - text-decoration: none -} - -.btn.focus, -.btn:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.btn.disabled, -.btn:disabled { - opacity: .65 -} - -.btn:not(:disabled):not(.disabled) { - cursor: pointer -} - -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc -} - -.btn-primary.focus, -.btn-primary:focus { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; - box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) -} - -.btn-primary.disabled, -.btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-primary:not(:disabled):not(.disabled).active, -.btn-primary:not(:disabled):not(.disabled):active, -.show>.btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf -} - -.btn-primary:not(:disabled):not(.disabled).active:focus, -.btn-primary:not(:disabled):not(.disabled):active:focus, -.show>.btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62 -} - -.btn-secondary.focus, -.btn-secondary:focus { - color: #fff; - background-color: #5a6268; - border-color: #545b62; - box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5) -} - -.btn-secondary.disabled, -.btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-secondary:not(:disabled):not(.disabled).active, -.btn-secondary:not(:disabled):not(.disabled):active, -.show>.btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b -} - -.btn-secondary:not(:disabled):not(.disabled).active:focus, -.btn-secondary:not(:disabled):not(.disabled):active:focus, -.show>.btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5) -} - -.btn-success { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34 -} - -.btn-success.focus, -.btn-success:focus { - color: #fff; - background-color: #218838; - border-color: #1e7e34; - box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5) -} - -.btn-success.disabled, -.btn-success:disabled { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-success:not(:disabled):not(.disabled).active, -.btn-success:not(:disabled):not(.disabled):active, -.show>.btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430 -} - -.btn-success:not(:disabled):not(.disabled).active:focus, -.btn-success:not(:disabled):not(.disabled):active:focus, -.show>.btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5) -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b -} - -.btn-info.focus, -.btn-info:focus { - color: #fff; - background-color: #138496; - border-color: #117a8b; - box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) -} - -.btn-info.disabled, -.btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-info:not(:disabled):not(.disabled).active, -.btn-info:not(:disabled):not(.disabled):active, -.show>.btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f -} - -.btn-info:not(:disabled):not(.disabled).active:focus, -.btn-info:not(:disabled):not(.disabled):active:focus, -.show>.btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00 -} - -.btn-warning.focus, -.btn-warning:focus { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; - box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) -} - -.btn-warning.disabled, -.btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-warning:not(:disabled):not(.disabled).active, -.btn-warning:not(:disabled):not(.disabled):active, -.show>.btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500 -} - -.btn-warning:not(:disabled):not(.disabled).active:focus, -.btn-warning:not(:disabled):not(.disabled):active:focus, -.show>.btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130 -} - -.btn-danger.focus, -.btn-danger:focus { - color: #fff; - background-color: #c82333; - border-color: #bd2130; - box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5) -} - -.btn-danger.disabled, -.btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-danger:not(:disabled):not(.disabled).active, -.btn-danger:not(:disabled):not(.disabled):active, -.show>.btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d -} - -.btn-danger:not(:disabled):not(.disabled).active:focus, -.btn-danger:not(:disabled):not(.disabled):active:focus, -.show>.btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5) -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5 -} - -.btn-light.focus, -.btn-light:focus { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; - box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) -} - -.btn-light.disabled, -.btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-light:not(:disabled):not(.disabled).active, -.btn-light:not(:disabled):not(.disabled):active, -.show>.btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df -} - -.btn-light:not(:disabled):not(.disabled).active:focus, -.btn-light:not(:disabled):not(.disabled):active:focus, -.show>.btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124 -} - -.btn-dark.focus, -.btn-dark:focus { - color: #fff; - background-color: #23272b; - border-color: #1d2124; - box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5) -} - -.btn-dark.disabled, -.btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-dark:not(:disabled):not(.disabled).active, -.btn-dark:not(:disabled):not(.disabled):active, -.show>.btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d -} - -.btn-dark:not(:disabled):not(.disabled).active:focus, -.btn-dark:not(:disabled):not(.disabled):active:focus, -.show>.btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5) -} - -.btn-outline-primary { - color: #007bff; - border-color: #007bff -} - -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-outline-primary.focus, -.btn-outline-primary:focus { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.btn-outline-primary.disabled, -.btn-outline-primary:disabled { - color: #007bff; - background-color: transparent -} - -.btn-outline-primary:not(:disabled):not(.disabled).active, -.btn-outline-primary:not(:disabled):not(.disabled):active, -.show>.btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.btn-outline-primary:not(:disabled):not(.disabled).active:focus, -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary.focus, -.btn-outline-secondary:focus { - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.btn-outline-secondary.disabled, -.btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent -} - -.btn-outline-secondary:not(:disabled):not(.disabled).active, -.btn-outline-secondary:not(:disabled):not(.disabled):active, -.show>.btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d -} - -.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.btn-outline-success { - color: #28a745; - border-color: #28a745 -} - -.btn-outline-success:hover { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-outline-success.focus, -.btn-outline-success:focus { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.btn-outline-success.disabled, -.btn-outline-success:disabled { - color: #28a745; - background-color: transparent -} - -.btn-outline-success:not(:disabled):not(.disabled).active, -.btn-outline-success:not(:disabled):not(.disabled):active, -.show>.btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #28a745; - border-color: #28a745 -} - -.btn-outline-success:not(:disabled):not(.disabled).active:focus, -.btn-outline-success:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info.focus, -.btn-outline-info:focus { - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.btn-outline-info.disabled, -.btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent -} - -.btn-outline-info:not(:disabled):not(.disabled).active, -.btn-outline-info:not(:disabled):not(.disabled):active, -.show>.btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8 -} - -.btn-outline-info:not(:disabled):not(.disabled).active:focus, -.btn-outline-info:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning.focus, -.btn-outline-warning:focus { - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.btn-outline-warning.disabled, -.btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent -} - -.btn-outline-warning:not(:disabled):not(.disabled).active, -.btn-outline-warning:not(:disabled):not(.disabled):active, -.show>.btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107 -} - -.btn-outline-warning:not(:disabled):not(.disabled).active:focus, -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger.focus, -.btn-outline-danger:focus { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.btn-outline-danger.disabled, -.btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent -} - -.btn-outline-danger:not(:disabled):not(.disabled).active, -.btn-outline-danger:not(:disabled):not(.disabled):active, -.show>.btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545 -} - -.btn-outline-danger:not(:disabled):not(.disabled).active:focus, -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light.focus, -.btn-outline-light:focus { - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.btn-outline-light.disabled, -.btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent -} - -.btn-outline-light:not(:disabled):not(.disabled).active, -.btn-outline-light:not(:disabled):not(.disabled):active, -.show>.btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa -} - -.btn-outline-light:not(:disabled):not(.disabled).active:focus, -.btn-outline-light:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.btn-outline-dark { - color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark.focus, -.btn-outline-dark:focus { - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.btn-outline-dark.disabled, -.btn-outline-dark:disabled { - color: #343a40; - background-color: transparent -} - -.btn-outline-dark:not(:disabled):not(.disabled).active, -.btn-outline-dark:not(:disabled):not(.disabled):active, -.show>.btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40 -} - -.btn-outline-dark:not(:disabled):not(.disabled).active:focus, -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, -.show>.btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.btn-link { - font-weight: 400; - color: #007bff; - text-decoration: none -} - -.btn-link:hover { - color: #0056b3; - text-decoration: underline -} - -.btn-link.focus, -.btn-link:focus { - text-decoration: underline -} - -.btn-link.disabled, -.btn-link:disabled { - color: #6c757d; - pointer-events: none -} - -.btn-group-lg>.btn, -.btn-lg { - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -.btn-group-sm>.btn, -.btn-sm { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.btn-block { - display: block; - width: 100% -} - -.btn-block+.btn-block { - margin-top: .5rem -} - -input[type=button].btn-block, -input[type=reset].btn-block, -input[type=submit].btn-block { - width: 100% -} - -.fade { - transition: opacity .15s linear -} - -@media (prefers-reduced-motion:reduce) { - .fade { - transition: none - } -} - -.fade:not(.show) { - opacity: 0 -} - -.collapse:not(.show) { - display: none -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height .35s ease -} - -@media (prefers-reduced-motion:reduce) { - .collapsing { - transition: none - } -} - -.dropdown, -.dropleft, -.dropright, -.dropup { - position: relative -} - -.dropdown-toggle { - white-space: nowrap -} - -.dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid; - border-right: .3em solid transparent; - border-bottom: 0; - border-left: .3em solid transparent -} - -.dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: .5rem 0; - margin: .125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .15); - border-radius: .25rem -} - -.dropdown-menu-left { - right: auto; - left: 0 -} - -.dropdown-menu-right { - right: 0; - left: auto -} - -@media (min-width:576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0 - } - - .dropdown-menu-sm-right { - right: 0; - left: auto - } -} - -@media (min-width:768px) { - .dropdown-menu-md-left { - right: auto; - left: 0 - } - - .dropdown-menu-md-right { - right: 0; - left: auto - } -} - -@media (min-width:992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0 - } - - .dropdown-menu-lg-right { - right: 0; - left: auto - } -} - -@media (min-width:1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0 - } - - .dropdown-menu-xl-right { - right: 0; - left: auto - } -} - -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: .125rem -} - -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: 0; - border-right: .3em solid transparent; - border-bottom: .3em solid; - border-left: .3em solid transparent -} - -.dropup .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: .125rem -} - -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid transparent; - border-right: 0; - border-bottom: .3em solid transparent; - border-left: .3em solid -} - -.dropright .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropright .dropdown-toggle::after { - vertical-align: 0 -} - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: .125rem -} - -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: .255em; - vertical-align: .255em; - content: "" -} - -.dropleft .dropdown-toggle::after { - display: none -} - -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: .255em; - vertical-align: .255em; - content: ""; - border-top: .3em solid transparent; - border-right: .3em solid; - border-bottom: .3em solid transparent -} - -.dropleft .dropdown-toggle:empty::after { - margin-left: 0 -} - -.dropleft .dropdown-toggle::before { - vertical-align: 0 -} - -.dropdown-menu[x-placement^=bottom], -.dropdown-menu[x-placement^=left], -.dropdown-menu[x-placement^=right], -.dropdown-menu[x-placement^=top] { - right: auto; - bottom: auto -} - -.dropdown-divider { - height: 0; - margin: .5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef -} - -.dropdown-item { - display: block; - width: 100%; - padding: .25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0 -} - -.dropdown-item:focus, -.dropdown-item:hover { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa -} - -.dropdown-item.active, -.dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff -} - -.dropdown-item.disabled, -.dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent -} - -.dropdown-menu.show { - display: block -} - -.dropdown-header { - display: block; - padding: .5rem 1.5rem; - margin-bottom: 0; - font-size: .875rem; - color: #6c757d; - white-space: nowrap -} - -.dropdown-item-text { - display: block; - padding: .25rem 1.5rem; - color: #212529 -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: -ms-inline-flexbox; - display: inline-flex; - vertical-align: middle -} - -.btn-group-vertical>.btn, -.btn-group>.btn { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto -} - -.btn-group-vertical>.btn:hover, -.btn-group>.btn:hover { - z-index: 1 -} - -.btn-group-vertical>.btn.active, -.btn-group-vertical>.btn:active, -.btn-group-vertical>.btn:focus, -.btn-group>.btn.active, -.btn-group>.btn:active, -.btn-group>.btn:focus { - z-index: 1 -} - -.btn-toolbar { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-pack: start; - justify-content: flex-start -} - -.btn-toolbar .input-group { - width: auto -} - -.btn-group>.btn-group:not(:first-child), -.btn-group>.btn:not(:first-child) { - margin-left: -1px -} - -.btn-group>.btn-group:not(:last-child)>.btn, -.btn-group>.btn:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.btn-group>.btn-group:not(:first-child)>.btn, -.btn-group>.btn:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.dropdown-toggle-split { - padding-right: .5625rem; - padding-left: .5625rem -} - -.dropdown-toggle-split::after, -.dropright .dropdown-toggle-split::after, -.dropup .dropdown-toggle-split::after { - margin-left: 0 -} - -.dropleft .dropdown-toggle-split::before { - margin-right: 0 -} - -.btn-group-sm>.btn+.dropdown-toggle-split, -.btn-sm+.dropdown-toggle-split { - padding-right: .375rem; - padding-left: .375rem -} - -.btn-group-lg>.btn+.dropdown-toggle-split, -.btn-lg+.dropdown-toggle-split { - padding-right: .75rem; - padding-left: .75rem -} - -.btn-group-vertical { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: center; - justify-content: center -} - -.btn-group-vertical>.btn, -.btn-group-vertical>.btn-group { - width: 100% -} - -.btn-group-vertical>.btn-group:not(:first-child), -.btn-group-vertical>.btn:not(:first-child) { - margin-top: -1px -} - -.btn-group-vertical>.btn-group:not(:last-child)>.btn, -.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 -} - -.btn-group-vertical>.btn-group:not(:first-child)>.btn, -.btn-group-vertical>.btn:not(:first-child) { - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.btn-group-toggle>.btn, -.btn-group-toggle>.btn-group>.btn { - margin-bottom: 0 -} - -.btn-group-toggle>.btn input[type=checkbox], -.btn-group-toggle>.btn input[type=radio], -.btn-group-toggle>.btn-group>.btn input[type=checkbox], -.btn-group-toggle>.btn-group>.btn input[type=radio] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none -} - -.input-group { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: stretch; - align-items: stretch; - width: 100% -} - -.input-group>.custom-file, -.input-group>.custom-select, -.input-group>.form-control, -.input-group>.form-control-plaintext { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0 -} - -.input-group>.custom-file+.custom-file, -.input-group>.custom-file+.custom-select, -.input-group>.custom-file+.form-control, -.input-group>.custom-select+.custom-file, -.input-group>.custom-select+.custom-select, -.input-group>.custom-select+.form-control, -.input-group>.form-control+.custom-file, -.input-group>.form-control+.custom-select, -.input-group>.form-control+.form-control, -.input-group>.form-control-plaintext+.custom-file, -.input-group>.form-control-plaintext+.custom-select, -.input-group>.form-control-plaintext+.form-control { - margin-left: -1px -} - -.input-group>.custom-file .custom-file-input:focus~.custom-file-label, -.input-group>.custom-select:focus, -.input-group>.form-control:focus { - z-index: 3 -} - -.input-group>.custom-file .custom-file-input:focus { - z-index: 4 -} - -.input-group>.custom-select:not(:last-child), -.input-group>.form-control:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group>.custom-select:not(:first-child), -.input-group>.form-control:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.input-group>.custom-file { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center -} - -.input-group>.custom-file:not(:last-child) .custom-file-label, -.input-group>.custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group>.custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.input-group-append, -.input-group-prepend { - display: -ms-flexbox; - display: flex -} - -.input-group-append .btn, -.input-group-prepend .btn { - position: relative; - z-index: 2 -} - -.input-group-append .btn:focus, -.input-group-prepend .btn:focus { - z-index: 3 -} - -.input-group-append .btn+.btn, -.input-group-append .btn+.input-group-text, -.input-group-append .input-group-text+.btn, -.input-group-append .input-group-text+.input-group-text, -.input-group-prepend .btn+.btn, -.input-group-prepend .btn+.input-group-text, -.input-group-prepend .input-group-text+.btn, -.input-group-prepend .input-group-text+.input-group-text { - margin-left: -1px -} - -.input-group-prepend { - margin-right: -1px -} - -.input-group-append { - margin-left: -1px -} - -.input-group-text { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: .375rem .75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: .25rem -} - -.input-group-text input[type=checkbox], -.input-group-text input[type=radio] { - margin-top: 0 -} - -.input-group-lg>.custom-select, -.input-group-lg>.form-control:not(textarea) { - height: calc(1.5em + 1rem + 2px) -} - -.input-group-lg>.custom-select, -.input-group-lg>.form-control, -.input-group-lg>.input-group-append>.btn, -.input-group-lg>.input-group-append>.input-group-text, -.input-group-lg>.input-group-prepend>.btn, -.input-group-lg>.input-group-prepend>.input-group-text { - padding: .5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: .3rem -} - -.input-group-sm>.custom-select, -.input-group-sm>.form-control:not(textarea) { - height: calc(1.5em + .5rem + 2px) -} - -.input-group-sm>.custom-select, -.input-group-sm>.form-control, -.input-group-sm>.input-group-append>.btn, -.input-group-sm>.input-group-append>.input-group-text, -.input-group-sm>.input-group-prepend>.btn, -.input-group-sm>.input-group-prepend>.input-group-text { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5; - border-radius: .2rem -} - -.input-group-lg>.custom-select, -.input-group-sm>.custom-select { - padding-right: 1.75rem -} - -.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), -.input-group>.input-group-append:last-child>.input-group-text:not(:last-child), -.input-group>.input-group-append:not(:last-child)>.btn, -.input-group>.input-group-append:not(:last-child)>.input-group-text, -.input-group>.input-group-prepend>.btn, -.input-group>.input-group-prepend>.input-group-text { - border-top-right-radius: 0; - border-bottom-right-radius: 0 -} - -.input-group>.input-group-append>.btn, -.input-group>.input-group-append>.input-group-text, -.input-group>.input-group-prepend:first-child>.btn:not(:first-child), -.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), -.input-group>.input-group-prepend:not(:first-child)>.btn, -.input-group>.input-group-prepend:not(:first-child)>.input-group-text { - border-top-left-radius: 0; - border-bottom-left-radius: 0 -} - -.custom-control { - position: relative; - z-index: 1; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem -} - -.custom-control-inline { - display: -ms-inline-flexbox; - display: inline-flex; - margin-right: 1rem -} - -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 1.25rem; - opacity: 0 -} - -.custom-control-input:checked~.custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff -} - -.custom-control-input:focus~.custom-control-label::before { - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-control-input:focus:not(:checked)~.custom-control-label::before { - border-color: #80bdff -} - -.custom-control-input:not(:disabled):active~.custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff -} - -.custom-control-input:disabled~.custom-control-label, -.custom-control-input[disabled]~.custom-control-label { - color: #6c757d -} - -.custom-control-input:disabled~.custom-control-label::before, -.custom-control-input[disabled]~.custom-control-label::before { - background-color: #e9ecef -} - -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top -} - -.custom-control-label::before { - position: absolute; - top: .25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - background-color: #fff; - border: #adb5bd solid 1px -} - -.custom-control-label::after { - position: absolute; - top: .25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background: no-repeat 50%/50% 50% -} - -.custom-checkbox .custom-control-label::before { - border-radius: .25rem -} - -.custom-checkbox .custom-control-input:checked~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e") -} - -.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before { - border-color: #007bff; - background-color: #007bff -} - -.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e") -} - -.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-radio .custom-control-label::before { - border-radius: 50% -} - -.custom-radio .custom-control-input:checked~.custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") -} - -.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-switch { - padding-left: 2.25rem -} - -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: .5rem -} - -.custom-switch .custom-control-label::after { - top: calc(.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: .5rem; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out; - transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .custom-switch .custom-control-label::after { - transition: none - } -} - -.custom-switch .custom-control-input:checked~.custom-control-label::after { - background-color: #fff; - -webkit-transform: translateX(.75rem); - transform: translateX(.75rem) -} - -.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before { - background-color: rgba(0, 123, 255, .5) -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - padding: .375rem 1.75rem .375rem .75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px; - border: 1px solid #ced4da; - border-radius: .25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -.custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff -} - -.custom-select[multiple], -.custom-select[size]:not([size="1"]) { - height: auto; - padding-right: .75rem; - background-image: none -} - -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef -} - -.custom-select::-ms-expand { - display: none -} - -.custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057 -} - -.custom-select-sm { - height: calc(1.5em + .5rem + 2px); - padding-top: .25rem; - padding-bottom: .25rem; - padding-left: .5rem; - font-size: .875rem -} - -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: .5rem; - padding-bottom: .5rem; - padding-left: 1rem; - font-size: 1.25rem -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + .75rem + 2px); - margin-bottom: 0 -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + .75rem + 2px); - margin: 0; - opacity: 0 -} - -.custom-file-input:focus~.custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-file-input:disabled~.custom-file-label, -.custom-file-input[disabled]~.custom-file-label { - background-color: #e9ecef -} - -.custom-file-input:lang(en)~.custom-file-label::after { - content: "Browse" -} - -.custom-file-input~.custom-file-label[data-browse]::after { - content: attr(data-browse) -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + .75rem + 2px); - padding: .375rem .75rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: .25rem -} - -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + .75rem); - padding: .375rem .75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 .25rem .25rem 0 -} - -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none -} - -.custom-range:focus { - outline: 0 -} - -.custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.custom-range::-moz-focus-outer { - border: 0 -} - -.custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - -webkit-appearance: none; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-webkit-slider-thumb { - -webkit-transition: none; - transition: none - } -} - -.custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-webkit-slider-runnable-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem -} - -.custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - -moz-appearance: none; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-moz-range-thumb { - -moz-transition: none; - transition: none - } -} - -.custom-range::-moz-range-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-moz-range-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem -} - -.custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: .2rem; - margin-left: .2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -ms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; - appearance: none -} - -@media (prefers-reduced-motion:reduce) { - .custom-range::-ms-thumb { - -ms-transition: none; - transition: none - } -} - -.custom-range::-ms-thumb:active { - background-color: #b3d7ff -} - -.custom-range::-ms-track { - width: 100%; - height: .5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: .5rem -} - -.custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem -} - -.custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem -} - -.custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd -} - -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default -} - -.custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd -} - -.custom-range:disabled::-moz-range-track { - cursor: default -} - -.custom-range:disabled::-ms-thumb { - background-color: #adb5bd -} - -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - - .custom-control-label::before, - .custom-file-label, - .custom-select { - transition: none - } -} - -.nav { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none -} - -.nav-link { - display: block; - padding: .5rem 1rem -} - -.nav-link:focus, -.nav-link:hover { - text-decoration: none -} - -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6 -} - -.nav-tabs .nav-item { - margin-bottom: -1px -} - -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: .25rem; - border-top-right-radius: .25rem -} - -.nav-tabs .nav-link:focus, -.nav-tabs .nav-link:hover { - border-color: #e9ecef #e9ecef #dee2e6 -} - -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent -} - -.nav-tabs .nav-item.show .nav-link, -.nav-tabs .nav-link.active { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff -} - -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.nav-pills .nav-link { - border-radius: .25rem -} - -.nav-pills .nav-link.active, -.nav-pills .show>.nav-link { - color: #fff; - background-color: #007bff -} - -.nav-fill .nav-item, -.nav-fill>.nav-link { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - text-align: center -} - -.nav-justified .nav-item, -.nav-justified>.nav-link { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -ms-flex-positive: 1; - flex-grow: 1; - text-align: center -} - -.tab-content>.tab-pane { - display: none -} - -.tab-content>.active { - display: block -} - -.navbar { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between; - padding: .5rem 1rem -} - -.navbar .container, -.navbar .container-fluid, -.navbar .container-lg, -.navbar .container-md, -.navbar .container-sm, -.navbar .container-xl { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: justify; - justify-content: space-between -} - -.navbar-brand { - display: inline-block; - padding-top: .3125rem; - padding-bottom: .3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap -} - -.navbar-brand:focus, -.navbar-brand:hover { - text-decoration: none -} - -.navbar-nav { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none -} - -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0 -} - -.navbar-nav .dropdown-menu { - position: static; - float: none -} - -.navbar-text { - display: inline-block; - padding-top: .5rem; - padding-bottom: .5rem -} - -.navbar-collapse { - -ms-flex-preferred-size: 100%; - flex-basis: 100%; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-align: center; - align-items: center -} - -.navbar-toggler { - padding: .25rem .75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: .25rem -} - -.navbar-toggler:focus, -.navbar-toggler:hover { - text-decoration: none -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100% -} - -@media (max-width:575.98px) { - - .navbar-expand-sm>.container, - .navbar-expand-sm>.container-fluid, - .navbar-expand-sm>.container-lg, - .navbar-expand-sm>.container-md, - .navbar-expand-sm>.container-sm, - .navbar-expand-sm>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:576px) { - .navbar-expand-sm { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-sm .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-sm>.container, - .navbar-expand-sm>.container-fluid, - .navbar-expand-sm>.container-lg, - .navbar-expand-sm>.container-md, - .navbar-expand-sm>.container-sm, - .navbar-expand-sm>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-sm .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-sm .navbar-toggler { - display: none - } -} - -@media (max-width:767.98px) { - - .navbar-expand-md>.container, - .navbar-expand-md>.container-fluid, - .navbar-expand-md>.container-lg, - .navbar-expand-md>.container-md, - .navbar-expand-md>.container-sm, - .navbar-expand-md>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:768px) { - .navbar-expand-md { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-md .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-md .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-md>.container, - .navbar-expand-md>.container-fluid, - .navbar-expand-md>.container-lg, - .navbar-expand-md>.container-md, - .navbar-expand-md>.container-sm, - .navbar-expand-md>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-md .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-md .navbar-toggler { - display: none - } -} - -@media (max-width:991.98px) { - - .navbar-expand-lg>.container, - .navbar-expand-lg>.container-fluid, - .navbar-expand-lg>.container-lg, - .navbar-expand-lg>.container-md, - .navbar-expand-lg>.container-sm, - .navbar-expand-lg>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:992px) { - .navbar-expand-lg { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-lg .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-lg>.container, - .navbar-expand-lg>.container-fluid, - .navbar-expand-lg>.container-lg, - .navbar-expand-lg>.container-md, - .navbar-expand-lg>.container-sm, - .navbar-expand-lg>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-lg .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-lg .navbar-toggler { - display: none - } -} - -@media (max-width:1199.98px) { - - .navbar-expand-xl>.container, - .navbar-expand-xl>.container-fluid, - .navbar-expand-xl>.container-lg, - .navbar-expand-xl>.container-md, - .navbar-expand-xl>.container-sm, - .navbar-expand-xl>.container-xl { - padding-right: 0; - padding-left: 0 - } -} - -@media (min-width:1200px) { - .navbar-expand-xl { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start - } - - .navbar-expand-xl .navbar-nav { - -ms-flex-direction: row; - flex-direction: row - } - - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute - } - - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem - } - - .navbar-expand-xl>.container, - .navbar-expand-xl>.container-fluid, - .navbar-expand-xl>.container-lg, - .navbar-expand-xl>.container-md, - .navbar-expand-xl>.container-sm, - .navbar-expand-xl>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap - } - - .navbar-expand-xl .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto - } - - .navbar-expand-xl .navbar-toggler { - display: none - } -} - -.navbar-expand { - -ms-flex-flow: row nowrap; - flex-flow: row nowrap; - -ms-flex-pack: start; - justify-content: flex-start -} - -.navbar-expand>.container, -.navbar-expand>.container-fluid, -.navbar-expand>.container-lg, -.navbar-expand>.container-md, -.navbar-expand>.container-sm, -.navbar-expand>.container-xl { - padding-right: 0; - padding-left: 0 -} - -.navbar-expand .navbar-nav { - -ms-flex-direction: row; - flex-direction: row -} - -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute -} - -.navbar-expand .navbar-nav .nav-link { - padding-right: .5rem; - padding-left: .5rem -} - -.navbar-expand>.container, -.navbar-expand>.container-fluid, -.navbar-expand>.container-lg, -.navbar-expand>.container-md, -.navbar-expand>.container-sm, -.navbar-expand>.container-xl { - -ms-flex-wrap: nowrap; - flex-wrap: nowrap -} - -.navbar-expand .navbar-collapse { - display: -ms-flexbox !important; - display: flex !important; - -ms-flex-preferred-size: auto; - flex-basis: auto -} - -.navbar-expand .navbar-toggler { - display: none -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-brand:focus, -.navbar-light .navbar-brand:hover { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, .5) -} - -.navbar-light .navbar-nav .nav-link:focus, -.navbar-light .navbar-nav .nav-link:hover { - color: rgba(0, 0, 0, .7) -} - -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, .3) -} - -.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: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, .5); - border-color: rgba(0, 0, 0, .1) -} - -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") -} - -.navbar-light .navbar-text { - color: rgba(0, 0, 0, .5) -} - -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, .9) -} - -.navbar-light .navbar-text a:focus, -.navbar-light .navbar-text a:hover { - color: rgba(0, 0, 0, .9) -} - -.navbar-dark .navbar-brand { - color: #fff -} - -.navbar-dark .navbar-brand:focus, -.navbar-dark .navbar-brand:hover { - color: #fff -} - -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, .5) -} - -.navbar-dark .navbar-nav .nav-link:focus, -.navbar-dark .navbar-nav .nav-link:hover { - color: rgba(255, 255, 255, .75) -} - -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, .25) -} - -.navbar-dark .navbar-nav .active>.nav-link, -.navbar-dark .navbar-nav .nav-link.active, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .show>.nav-link { - color: #fff -} - -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, .5); - border-color: rgba(255, 255, 255, .1) -} - -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") -} - -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, .5) -} - -.navbar-dark .navbar-text a { - color: #fff -} - -.navbar-dark .navbar-text a:focus, -.navbar-dark .navbar-text a:hover { - color: #fff -} - -.card { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, .125); - border-radius: .25rem -} - -.card>hr { - margin-right: 0; - margin-left: 0 -} - -.card>.list-group { - border-top: inherit; - border-bottom: inherit -} - -.card>.list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.card>.list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(.25rem - 1px); - border-bottom-left-radius: calc(.25rem - 1px) -} - -.card>.card-header+.list-group, -.card>.list-group+.card-footer { - border-top: 0 -} - -.card-body { - -ms-flex: 1 1 auto; - flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem -} - -.card-title { - margin-bottom: .75rem -} - -.card-subtitle { - margin-top: -.375rem; - margin-bottom: 0 -} - -.card-text:last-child { - margin-bottom: 0 -} - -.card-link:hover { - text-decoration: none -} - -.card-link+.card-link { - margin-left: 1.25rem -} - -.card-header { - padding: .75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, .03); - border-bottom: 1px solid rgba(0, 0, 0, .125) -} - -.card-header:first-child { - border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0 -} - -.card-footer { - padding: .75rem 1.25rem; - background-color: rgba(0, 0, 0, .03); - border-top: 1px solid rgba(0, 0, 0, .125) -} - -.card-footer:last-child { - border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px) -} - -.card-header-tabs { - margin-right: -.625rem; - margin-bottom: -.75rem; - margin-left: -.625rem; - border-bottom: 0 -} - -.card-header-pills { - margin-right: -.625rem; - margin-left: -.625rem -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; - border-radius: calc(.25rem - 1px) -} - -.card-img, -.card-img-bottom, -.card-img-top { - -ms-flex-negative: 0; - flex-shrink: 0; - width: 100% -} - -.card-img, -.card-img-top { - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(.25rem - 1px); - border-bottom-left-radius: calc(.25rem - 1px) -} - -.card-deck .card { - margin-bottom: 15px -} - -@media (min-width:576px) { - .card-deck { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px - } - - .card-deck .card { - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px - } -} - -.card-group>.card { - margin-bottom: 15px -} - -@media (min-width:576px) { - .card-group { - display: -ms-flexbox; - display: flex; - -ms-flex-flow: row wrap; - flex-flow: row wrap - } - - .card-group>.card { - -ms-flex: 1 0 0%; - flex: 1 0 0%; - margin-bottom: 0 - } - - .card-group>.card+.card { - margin-left: 0; - border-left: 0 - } - - .card-group>.card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0 - } - - .card-group>.card:not(:last-child) .card-header, - .card-group>.card:not(:last-child) .card-img-top { - border-top-right-radius: 0 - } - - .card-group>.card:not(:last-child) .card-footer, - .card-group>.card:not(:last-child) .card-img-bottom { - border-bottom-right-radius: 0 - } - - .card-group>.card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0 - } - - .card-group>.card:not(:first-child) .card-header, - .card-group>.card:not(:first-child) .card-img-top { - border-top-left-radius: 0 - } - - .card-group>.card:not(:first-child) .card-footer, - .card-group>.card:not(:first-child) .card-img-bottom { - border-bottom-left-radius: 0 - } -} - -.card-columns .card { - margin-bottom: .75rem -} - -@media (min-width:576px) { - .card-columns { - -webkit-column-count: 3; - -moz-column-count: 3; - column-count: 3; - -webkit-column-gap: 1.25rem; - -moz-column-gap: 1.25rem; - column-gap: 1.25rem; - orphans: 1; - widows: 1 - } - - .card-columns .card { - display: inline-block; - width: 100% - } -} - -.accordion { - overflow-anchor: none -} - -.accordion>.card { - overflow: hidden -} - -.accordion>.card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 -} - -.accordion>.card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0 -} - -.accordion>.card>.card-header { - border-radius: 0; - margin-bottom: -1px -} - -.breadcrumb { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - padding: .75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: .25rem -} - -.breadcrumb-item { - display: -ms-flexbox; - display: flex -} - -.breadcrumb-item+.breadcrumb-item { - padding-left: .5rem -} - -.breadcrumb-item+.breadcrumb-item::before { - display: inline-block; - padding-right: .5rem; - color: #6c757d; - content: "/" -} - -.breadcrumb-item+.breadcrumb-item:hover::before { - text-decoration: underline -} - -.breadcrumb-item+.breadcrumb-item:hover::before { - text-decoration: none -} - -.breadcrumb-item.active { - color: #6c757d -} - -.pagination { - display: -ms-flexbox; - display: flex; - padding-left: 0; - list-style: none; - border-radius: .25rem -} - -.page-link { - position: relative; - display: block; - padding: .5rem .75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6 -} - -.page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6 -} - -.page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: .25rem; - border-bottom-left-radius: .25rem -} - -.page-item:last-child .page-link { - border-top-right-radius: .25rem; - border-bottom-right-radius: .25rem -} - -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6 -} - -.pagination-lg .page-link { - padding: .75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5 -} - -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: .3rem; - border-bottom-left-radius: .3rem -} - -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: .3rem; - border-bottom-right-radius: .3rem -} - -.pagination-sm .page-link { - padding: .25rem .5rem; - font-size: .875rem; - line-height: 1.5 -} - -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: .2rem; - border-bottom-left-radius: .2rem -} - -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: .2rem; - border-bottom-right-radius: .2rem -} - -.badge { - display: inline-block; - padding: .25em .4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25rem; - transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .badge { - transition: none - } -} - -a.badge:focus, -a.badge:hover { - text-decoration: none -} - -.badge:empty { - display: none -} - -.btn .badge { - position: relative; - top: -1px -} - -.badge-pill { - padding-right: .6em; - padding-left: .6em; - border-radius: 10rem -} - -.badge-primary { - color: #fff; - background-color: #007bff -} - -a.badge-primary:focus, -a.badge-primary:hover { - color: #fff; - background-color: #0062cc -} - -a.badge-primary.focus, -a.badge-primary:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) -} - -.badge-secondary { - color: #fff; - background-color: #6c757d -} - -a.badge-secondary:focus, -a.badge-secondary:hover { - color: #fff; - background-color: #545b62 -} - -a.badge-secondary.focus, -a.badge-secondary:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) -} - -.badge-success { - color: #fff; - background-color: #28a745 -} - -a.badge-success:focus, -a.badge-success:hover { - color: #fff; - background-color: #1e7e34 -} - -a.badge-success.focus, -a.badge-success:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) -} - -.badge-info { - color: #fff; - background-color: #17a2b8 -} - -a.badge-info:focus, -a.badge-info:hover { - color: #fff; - background-color: #117a8b -} - -a.badge-info.focus, -a.badge-info:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) -} - -.badge-warning { - color: #212529; - background-color: #ffc107 -} - -a.badge-warning:focus, -a.badge-warning:hover { - color: #212529; - background-color: #d39e00 -} - -a.badge-warning.focus, -a.badge-warning:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) -} - -.badge-danger { - color: #fff; - background-color: #dc3545 -} - -a.badge-danger:focus, -a.badge-danger:hover { - color: #fff; - background-color: #bd2130 -} - -a.badge-danger.focus, -a.badge-danger:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) -} - -.badge-light { - color: #212529; - background-color: #f8f9fa -} - -a.badge-light:focus, -a.badge-light:hover { - color: #212529; - background-color: #dae0e5 -} - -a.badge-light.focus, -a.badge-light:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) -} - -.badge-dark { - color: #fff; - background-color: #343a40 -} - -a.badge-dark:focus, -a.badge-dark:hover { - color: #fff; - background-color: #1d2124 -} - -a.badge-dark.focus, -a.badge-dark:focus { - outline: 0; - box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: .3rem -} - -@media (min-width:576px) { - .jumbotron { - padding: 4rem 2rem - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0 -} - -.alert { - position: relative; - padding: .75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: .25rem -} - -.alert-heading { - color: inherit -} - -.alert-link { - font-weight: 700 -} - -.alert-dismissible { - padding-right: 4rem -} - -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - padding: .75rem 1.25rem; - color: inherit -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff -} - -.alert-primary hr { - border-top-color: #9fcdff -} - -.alert-primary .alert-link { - color: #002752 -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db -} - -.alert-secondary hr { - border-top-color: #c8cbcf -} - -.alert-secondary .alert-link { - color: #202326 -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb -} - -.alert-success hr { - border-top-color: #b1dfbb -} - -.alert-success .alert-link { - color: #0b2e13 -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb -} - -.alert-info hr { - border-top-color: #abdde5 -} - -.alert-info .alert-link { - color: #062c33 -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba -} - -.alert-warning hr { - border-top-color: #ffe8a1 -} - -.alert-warning .alert-link { - color: #533f03 -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb -} - -.alert-danger hr { - border-top-color: #f1b0b7 -} - -.alert-danger .alert-link { - color: #491217 -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe -} - -.alert-light hr { - border-top-color: #ececf6 -} - -.alert-light .alert-link { - color: #686868 -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca -} - -.alert-dark hr { - border-top-color: #b9bbbe -} - -.alert-dark .alert-link { - color: #040505 -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0 - } - - to { - background-position: 0 0 - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0 - } - - to { - background-position: 0 0 - } -} - -.progress { - display: -ms-flexbox; - display: flex; - height: 1rem; - overflow: hidden; - line-height: 0; - font-size: .75rem; - background-color: #e9ecef; - border-radius: .25rem -} - -.progress-bar { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #007bff; - transition: width .6s ease -} - -@media (prefers-reduced-motion:reduce) { - .progress-bar { - transition: none - } -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem -} - -.progress-bar-animated { - -webkit-animation: progress-bar-stripes 1s linear infinite; - animation: progress-bar-stripes 1s linear infinite -} - -@media (prefers-reduced-motion:reduce) { - .progress-bar-animated { - -webkit-animation: none; - animation: none - } -} - -.media { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start -} - -.media-body { - -ms-flex: 1; - flex: 1 -} - -.list-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: .25rem -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit -} - -.list-group-item-action:focus, -.list-group-item-action:hover { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa -} - -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef -} - -.list-group-item { - position: relative; - display: block; - padding: .75rem 1.25rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, .125) -} - -.list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit -} - -.list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit -} - -.list-group-item.disabled, -.list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff -} - -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff -} - -.list-group-item+.list-group-item { - border-top-width: 0 -} - -.list-group-item+.list-group-item.active { - margin-top: -1px; - border-top-width: 1px -} - -.list-group-horizontal { - -ms-flex-direction: row; - flex-direction: row -} - -.list-group-horizontal>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 -} - -.list-group-horizontal>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 -} - -.list-group-horizontal>.list-group-item.active { - margin-top: 0 -} - -.list-group-horizontal>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 -} - -.list-group-horizontal>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px -} - -@media (min-width:576px) { - .list-group-horizontal-sm { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-sm>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-sm>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-sm>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-sm>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-sm>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:768px) { - .list-group-horizontal-md { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-md>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-md>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-md>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-md>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-md>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:992px) { - .list-group-horizontal-lg { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-lg>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-lg>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-lg>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-lg>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-lg>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -@media (min-width:1200px) { - .list-group-horizontal-xl { - -ms-flex-direction: row; - flex-direction: row - } - - .list-group-horizontal-xl>.list-group-item:first-child { - border-bottom-left-radius: .25rem; - border-top-right-radius: 0 - } - - .list-group-horizontal-xl>.list-group-item:last-child { - border-top-right-radius: .25rem; - border-bottom-left-radius: 0 - } - - .list-group-horizontal-xl>.list-group-item.active { - margin-top: 0 - } - - .list-group-horizontal-xl>.list-group-item+.list-group-item { - border-top-width: 1px; - border-left-width: 0 - } - - .list-group-horizontal-xl>.list-group-item+.list-group-item.active { - margin-left: -1px; - border-left-width: 1px - } -} - -.list-group-flush { - border-radius: 0 -} - -.list-group-flush>.list-group-item { - border-width: 0 0 1px -} - -.list-group-flush>.list-group-item:last-child { - border-bottom-width: 0 -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff -} - -.list-group-item-primary.list-group-item-action:focus, -.list-group-item-primary.list-group-item-action:hover { - color: #004085; - background-color: #9fcdff -} - -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085 -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db -} - -.list-group-item-secondary.list-group-item-action:focus, -.list-group-item-secondary.list-group-item-action:hover { - color: #383d41; - background-color: #c8cbcf -} - -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41 -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb -} - -.list-group-item-success.list-group-item-action:focus, -.list-group-item-success.list-group-item-action:hover { - color: #155724; - background-color: #b1dfbb -} - -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724 -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb -} - -.list-group-item-info.list-group-item-action:focus, -.list-group-item-info.list-group-item-action:hover { - color: #0c5460; - background-color: #abdde5 -} - -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460 -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba -} - -.list-group-item-warning.list-group-item-action:focus, -.list-group-item-warning.list-group-item-action:hover { - color: #856404; - background-color: #ffe8a1 -} - -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404 -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb -} - -.list-group-item-danger.list-group-item-action:focus, -.list-group-item-danger.list-group-item-action:hover { - color: #721c24; - background-color: #f1b0b7 -} - -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24 -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe -} - -.list-group-item-light.list-group-item-action:focus, -.list-group-item-light.list-group-item-action:hover { - color: #818182; - background-color: #ececf6 -} - -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182 -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca -} - -.list-group-item-dark.list-group-item-action:focus, -.list-group-item-dark.list-group-item-action:hover { - color: #1b1e21; - background-color: #b9bbbe -} - -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21 -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .5 -} - -.close:hover { - color: #000; - text-decoration: none -} - -.close:not(:disabled):not(.disabled):focus, -.close:not(:disabled):not(.disabled):hover { - opacity: .75 -} - -button.close { - padding: 0; - background-color: transparent; - border: 0 -} - -a.close.disabled { - pointer-events: none -} - -.toast { - -ms-flex-preferred-size: 350px; - flex-basis: 350px; - max-width: 350px; - font-size: .875rem; - background-color: rgba(255, 255, 255, .85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .1); - box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1); - opacity: 0; - border-radius: .25rem -} - -.toast:not(:last-child) { - margin-bottom: .75rem -} - -.toast.showing { - opacity: 1 -} - -.toast.show { - display: block; - opacity: 1 -} - -.toast.hide { - display: none -} - -.toast-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - padding: .25rem .75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, .85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, .05); - border-top-left-radius: calc(.25rem - 1px); - border-top-right-radius: calc(.25rem - 1px) -} - -.toast-body { - padding: .75rem -} - -.modal-open { - overflow: hidden -} - -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto -} - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0 -} - -.modal-dialog { - position: relative; - width: auto; - margin: .5rem; - pointer-events: none -} - -.modal.fade .modal-dialog { - transition: -webkit-transform .3s ease-out; - transition: transform .3s ease-out; - transition: transform .3s ease-out, -webkit-transform .3s ease-out; - -webkit-transform: translate(0, -50px); - transform: translate(0, -50px) -} - -@media (prefers-reduced-motion:reduce) { - .modal.fade .modal-dialog { - transition: none - } -} - -.modal.show .modal-dialog { - -webkit-transform: none; - transform: none -} - -.modal.modal-static .modal-dialog { - -webkit-transform: scale(1.02); - transform: scale(1.02) -} - -.modal-dialog-scrollable { - display: -ms-flexbox; - display: flex; - max-height: calc(100% - 1rem) -} - -.modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden -} - -.modal-dialog-scrollable .modal-footer, -.modal-dialog-scrollable .modal-header { - -ms-flex-negative: 0; - flex-shrink: 0 -} - -.modal-dialog-scrollable .modal-body { - overflow-y: auto -} - -.modal-dialog-centered { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - min-height: calc(100% - 1rem) -} - -.modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - height: -webkit-min-content; - height: -moz-min-content; - height: min-content; - content: "" -} - -.modal-dialog-centered.modal-dialog-scrollable { - -ms-flex-direction: column; - flex-direction: column; - -ms-flex-pack: center; - justify-content: center; - height: 100% -} - -.modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none -} - -.modal-dialog-centered.modal-dialog-scrollable::before { - content: none -} - -.modal-content { - position: relative; - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem; - outline: 0 -} - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000 -} - -.modal-backdrop.fade { - opacity: 0 -} - -.modal-backdrop.show { - opacity: .5 -} - -.modal-header { - display: -ms-flexbox; - display: flex; - -ms-flex-align: start; - align-items: flex-start; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(.3rem - 1px); - border-top-right-radius: calc(.3rem - 1px) -} - -.modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5 -} - -.modal-body { - position: relative; - -ms-flex: 1 1 auto; - flex: 1 1 auto; - padding: 1rem -} - -.modal-footer { - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: end; - justify-content: flex-end; - padding: .75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(.3rem - 1px); - border-bottom-left-radius: calc(.3rem - 1px) -} - -.modal-footer>* { - margin: .25rem -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll -} - -@media (min-width:576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto - } - - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem) - } - - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem) - } - - .modal-dialog-centered { - min-height: calc(100% - 3.5rem) - } - - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - height: -webkit-min-content; - height: -moz-min-content; - height: min-content - } - - .modal-sm { - max-width: 300px - } -} - -@media (min-width:992px) { - - .modal-lg, - .modal-xl { - max-width: 800px - } -} - -@media (min-width:1200px) { - .modal-xl { - max-width: 1140px - } -} - -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: .875rem; - word-wrap: break-word; - opacity: 0 -} - -.tooltip.show { - opacity: .9 -} - -.tooltip .arrow { - position: absolute; - display: block; - width: .8rem; - height: .4rem -} - -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid -} - -.bs-tooltip-auto[x-placement^=top], -.bs-tooltip-top { - padding: .4rem 0 -} - -.bs-tooltip-auto[x-placement^=top] .arrow, -.bs-tooltip-top .arrow { - bottom: 0 -} - -.bs-tooltip-auto[x-placement^=top] .arrow::before, -.bs-tooltip-top .arrow::before { - top: 0; - border-width: .4rem .4rem 0; - border-top-color: #000 -} - -.bs-tooltip-auto[x-placement^=right], -.bs-tooltip-right { - padding: 0 .4rem -} - -.bs-tooltip-auto[x-placement^=right] .arrow, -.bs-tooltip-right .arrow { - left: 0; - width: .4rem; - height: .8rem -} - -.bs-tooltip-auto[x-placement^=right] .arrow::before, -.bs-tooltip-right .arrow::before { - right: 0; - border-width: .4rem .4rem .4rem 0; - border-right-color: #000 -} - -.bs-tooltip-auto[x-placement^=bottom], -.bs-tooltip-bottom { - padding: .4rem 0 -} - -.bs-tooltip-auto[x-placement^=bottom] .arrow, -.bs-tooltip-bottom .arrow { - top: 0 -} - -.bs-tooltip-auto[x-placement^=bottom] .arrow::before, -.bs-tooltip-bottom .arrow::before { - bottom: 0; - border-width: 0 .4rem .4rem; - border-bottom-color: #000 -} - -.bs-tooltip-auto[x-placement^=left], -.bs-tooltip-left { - padding: 0 .4rem -} - -.bs-tooltip-auto[x-placement^=left] .arrow, -.bs-tooltip-left .arrow { - right: 0; - width: .4rem; - height: .8rem -} - -.bs-tooltip-auto[x-placement^=left] .arrow::before, -.bs-tooltip-left .arrow::before { - left: 0; - border-width: .4rem 0 .4rem .4rem; - border-left-color: #000 -} - -.tooltip-inner { - max-width: 200px; - padding: .25rem .5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: .25rem -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: .875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem -} - -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: .5rem; - margin: 0 .3rem -} - -.popover .arrow::after, -.popover .arrow::before { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid -} - -.bs-popover-auto[x-placement^=top], -.bs-popover-top { - margin-bottom: .5rem -} - -.bs-popover-auto[x-placement^=top]>.arrow, -.bs-popover-top>.arrow { - bottom: calc(-.5rem - 1px) -} - -.bs-popover-auto[x-placement^=top]>.arrow::before, -.bs-popover-top>.arrow::before { - bottom: 0; - border-width: .5rem .5rem 0; - border-top-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=top]>.arrow::after, -.bs-popover-top>.arrow::after { - bottom: 1px; - border-width: .5rem .5rem 0; - border-top-color: #fff -} - -.bs-popover-auto[x-placement^=right], -.bs-popover-right { - margin-left: .5rem -} - -.bs-popover-auto[x-placement^=right]>.arrow, -.bs-popover-right>.arrow { - left: calc(-.5rem - 1px); - width: .5rem; - height: 1rem; - margin: .3rem 0 -} - -.bs-popover-auto[x-placement^=right]>.arrow::before, -.bs-popover-right>.arrow::before { - left: 0; - border-width: .5rem .5rem .5rem 0; - border-right-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=right]>.arrow::after, -.bs-popover-right>.arrow::after { - left: 1px; - border-width: .5rem .5rem .5rem 0; - border-right-color: #fff -} - -.bs-popover-auto[x-placement^=bottom], -.bs-popover-bottom { - margin-top: .5rem -} - -.bs-popover-auto[x-placement^=bottom]>.arrow, -.bs-popover-bottom>.arrow { - top: calc(-.5rem - 1px) -} - -.bs-popover-auto[x-placement^=bottom]>.arrow::before, -.bs-popover-bottom>.arrow::before { - top: 0; - border-width: 0 .5rem .5rem .5rem; - border-bottom-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=bottom]>.arrow::after, -.bs-popover-bottom>.arrow::after { - top: 1px; - border-width: 0 .5rem .5rem .5rem; - border-bottom-color: #fff -} - -.bs-popover-auto[x-placement^=bottom] .popover-header::before, -.bs-popover-bottom .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7 -} - -.bs-popover-auto[x-placement^=left], -.bs-popover-left { - margin-right: .5rem -} - -.bs-popover-auto[x-placement^=left]>.arrow, -.bs-popover-left>.arrow { - right: calc(-.5rem - 1px); - width: .5rem; - height: 1rem; - margin: .3rem 0 -} - -.bs-popover-auto[x-placement^=left]>.arrow::before, -.bs-popover-left>.arrow::before { - right: 0; - border-width: .5rem 0 .5rem .5rem; - border-left-color: rgba(0, 0, 0, .25) -} - -.bs-popover-auto[x-placement^=left]>.arrow::after, -.bs-popover-left>.arrow::after { - right: 1px; - border-width: .5rem 0 .5rem .5rem; - border-left-color: #fff -} - -.popover-header { - padding: .5rem .75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(.3rem - 1px); - border-top-right-radius: calc(.3rem - 1px) -} - -.popover-header:empty { - display: none -} - -.popover-body { - padding: .5rem .75rem; - color: #212529 -} - -.carousel { - position: relative -} - -.carousel.pointer-event { - -ms-touch-action: pan-y; - touch-action: pan-y -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden -} - -.carousel-inner::after { - display: block; - clear: both; - content: "" -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - transition: -webkit-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out -} - -@media (prefers-reduced-motion:reduce) { - .carousel-item { - transition: none - } -} - -.carousel-item-next, -.carousel-item-prev, -.carousel-item.active { - display: block -} - -.active.carousel-item-right, -.carousel-item-next:not(.carousel-item-left) { - -webkit-transform: translateX(100%); - transform: translateX(100%) -} - -.active.carousel-item-left, -.carousel-item-prev:not(.carousel-item-right) { - -webkit-transform: translateX(-100%); - transform: translateX(-100%) -} - -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - -webkit-transform: none; - transform: none -} - -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right, -.carousel-fade .carousel-item.active { - z-index: 1; - opacity: 1 -} - -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: opacity 0s .6s -} - -@media (prefers-reduced-motion:reduce) { - - .carousel-fade .active.carousel-item-left, - .carousel-fade .active.carousel-item-right { - transition: none - } -} - -.carousel-control-next, -.carousel-control-prev { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: .5; - transition: opacity .15s ease -} - -@media (prefers-reduced-motion:reduce) { - - .carousel-control-next, - .carousel-control-prev { - transition: none - } -} - -.carousel-control-next:focus, -.carousel-control-next:hover, -.carousel-control-prev:focus, -.carousel-control-prev:hover { - color: #fff; - text-decoration: none; - outline: 0; - opacity: .9 -} - -.carousel-control-prev { - left: 0 -} - -.carousel-control-next { - right: 0 -} - -.carousel-control-next-icon, -.carousel-control-prev-icon { - display: inline-block; - width: 20px; - height: 20px; - background: no-repeat 50%/100% 100% -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e") -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e") -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: -ms-flexbox; - display: flex; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none -} - -.carousel-indicators li { - box-sizing: content-box; - -ms-flex: 0 1 auto; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: .5; - transition: opacity .6s ease -} - -@media (prefers-reduced-motion:reduce) { - .carousel-indicators li { - transition: none - } -} - -.carousel-indicators .active { - opacity: 1 -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center -} - -@-webkit-keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -@keyframes spinner-border { - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg) - } -} - -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: .25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - -webkit-animation: spinner-border .75s linear infinite; - animation: spinner-border .75s linear infinite -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: .2em -} - -@-webkit-keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0) - } - - 50% { - opacity: 1; - -webkit-transform: none; - transform: none - } -} - -@keyframes spinner-grow { - 0% { - -webkit-transform: scale(0); - transform: scale(0) - } - - 50% { - opacity: 1; - -webkit-transform: none; - transform: none - } -} - -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - -webkit-animation: spinner-grow .75s linear infinite; - animation: spinner-grow .75s linear infinite -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem -} - -.align-baseline { - vertical-align: baseline !important -} - -.align-top { - vertical-align: top !important -} - -.align-middle { - vertical-align: middle !important -} - -.align-bottom { - vertical-align: bottom !important -} - -.align-text-bottom { - vertical-align: text-bottom !important -} - -.align-text-top { - vertical-align: text-top !important -} - -.bg-primary { - background-color: #007bff !important -} - -a.bg-primary:focus, -a.bg-primary:hover, -button.bg-primary:focus, -button.bg-primary:hover { - background-color: #0062cc !important -} - -.bg-secondary { - background-color: #6c757d !important -} - -a.bg-secondary:focus, -a.bg-secondary:hover, -button.bg-secondary:focus, -button.bg-secondary:hover { - background-color: #545b62 !important -} - -.bg-success { - background-color: #28a745 !important -} - -a.bg-success:focus, -a.bg-success:hover, -button.bg-success:focus, -button.bg-success:hover { - background-color: #1e7e34 !important -} - -.bg-info { - background-color: #17a2b8 !important -} - -a.bg-info:focus, -a.bg-info:hover, -button.bg-info:focus, -button.bg-info:hover { - background-color: #117a8b !important -} - -.bg-warning { - background-color: #ffc107 !important -} - -a.bg-warning:focus, -a.bg-warning:hover, -button.bg-warning:focus, -button.bg-warning:hover { - background-color: #d39e00 !important -} - -.bg-danger { - background-color: #dc3545 !important -} - -a.bg-danger:focus, -a.bg-danger:hover, -button.bg-danger:focus, -button.bg-danger:hover { - background-color: #bd2130 !important -} - -.bg-light { - background-color: #f8f9fa !important -} - -a.bg-light:focus, -a.bg-light:hover, -button.bg-light:focus, -button.bg-light:hover { - background-color: #dae0e5 !important -} - -.bg-dark { - background-color: #343a40 !important -} - -a.bg-dark:focus, -a.bg-dark:hover, -button.bg-dark:focus, -button.bg-dark:hover { - background-color: #1d2124 !important -} - -.bg-white { - background-color: #fff !important -} - -.bg-transparent { - background-color: transparent !important -} - -.border { - border: 1px solid #dee2e6 !important -} - -.border-top { - border-top: 1px solid #dee2e6 !important -} - -.border-right { - border-right: 1px solid #dee2e6 !important -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important -} - -.border-left { - border-left: 1px solid #dee2e6 !important -} - -.border-0 { - border: 0 !important -} - -.border-top-0 { - border-top: 0 !important -} - -.border-right-0 { - border-right: 0 !important -} - -.border-bottom-0 { - border-bottom: 0 !important -} - -.border-left-0 { - border-left: 0 !important -} - -.border-primary { - border-color: #007bff !important -} - -.border-secondary { - border-color: #6c757d !important -} - -.border-success { - border-color: #28a745 !important -} - -.border-info { - border-color: #17a2b8 !important -} - -.border-warning { - border-color: #ffc107 !important -} - -.border-danger { - border-color: #dc3545 !important -} - -.border-light { - border-color: #f8f9fa !important -} - -.border-dark { - border-color: #343a40 !important -} - -.border-white { - border-color: #fff !important -} - -.rounded-sm { - border-radius: .2rem !important -} - -.rounded { - border-radius: .25rem !important -} - -.rounded-top { - border-top-left-radius: .25rem !important; - border-top-right-radius: .25rem !important -} - -.rounded-right { - border-top-right-radius: .25rem !important; - border-bottom-right-radius: .25rem !important -} - -.rounded-bottom { - border-bottom-right-radius: .25rem !important; - border-bottom-left-radius: .25rem !important -} - -.rounded-left { - border-top-left-radius: .25rem !important; - border-bottom-left-radius: .25rem !important -} - -.rounded-lg { - border-radius: .3rem !important -} - -.rounded-circle { - border-radius: 50% !important -} - -.rounded-pill { - border-radius: 50rem !important -} - -.rounded-0 { - border-radius: 0 !important -} - -.clearfix::after { - display: block; - clear: both; - content: "" -} - -.d-none { - display: none !important -} - -.d-inline { - display: inline !important -} - -.d-inline-block { - display: inline-block !important -} - -.d-block { - display: block !important -} - -.d-table { - display: table !important -} - -.d-table-row { - display: table-row !important -} - -.d-table-cell { - display: table-cell !important -} - -.d-flex { - display: -ms-flexbox !important; - display: flex !important -} - -.d-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important -} - -@media (min-width:576px) { - .d-sm-none { - display: none !important - } - - .d-sm-inline { - display: inline !important - } - - .d-sm-inline-block { - display: inline-block !important - } - - .d-sm-block { - display: block !important - } - - .d-sm-table { - display: table !important - } - - .d-sm-table-row { - display: table-row !important - } - - .d-sm-table-cell { - display: table-cell !important - } - - .d-sm-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-sm-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:768px) { - .d-md-none { - display: none !important - } - - .d-md-inline { - display: inline !important - } - - .d-md-inline-block { - display: inline-block !important - } - - .d-md-block { - display: block !important - } - - .d-md-table { - display: table !important - } - - .d-md-table-row { - display: table-row !important - } - - .d-md-table-cell { - display: table-cell !important - } - - .d-md-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-md-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:992px) { - .d-lg-none { - display: none !important - } - - .d-lg-inline { - display: inline !important - } - - .d-lg-inline-block { - display: inline-block !important - } - - .d-lg-block { - display: block !important - } - - .d-lg-table { - display: table !important - } - - .d-lg-table-row { - display: table-row !important - } - - .d-lg-table-cell { - display: table-cell !important - } - - .d-lg-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-lg-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media (min-width:1200px) { - .d-xl-none { - display: none !important - } - - .d-xl-inline { - display: inline !important - } - - .d-xl-inline-block { - display: inline-block !important - } - - .d-xl-block { - display: block !important - } - - .d-xl-table { - display: table !important - } - - .d-xl-table-row { - display: table-row !important - } - - .d-xl-table-cell { - display: table-cell !important - } - - .d-xl-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-xl-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -@media print { - .d-print-none { - display: none !important - } - - .d-print-inline { - display: inline !important - } - - .d-print-inline-block { - display: inline-block !important - } - - .d-print-block { - display: block !important - } - - .d-print-table { - display: table !important - } - - .d-print-table-row { - display: table-row !important - } - - .d-print-table-cell { - display: table-cell !important - } - - .d-print-flex { - display: -ms-flexbox !important; - display: flex !important - } - - .d-print-inline-flex { - display: -ms-inline-flexbox !important; - display: inline-flex !important - } -} - -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden -} - -.embed-responsive::before { - display: block; - content: "" -} - -.embed-responsive .embed-responsive-item, -.embed-responsive embed, -.embed-responsive iframe, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0 -} - -.embed-responsive-21by9::before { - padding-top: 42.857143% -} - -.embed-responsive-16by9::before { - padding-top: 56.25% -} - -.embed-responsive-4by3::before { - padding-top: 75% -} - -.embed-responsive-1by1::before { - padding-top: 100% -} - -.flex-row { - -ms-flex-direction: row !important; - flex-direction: row !important -} - -.flex-column { - -ms-flex-direction: column !important; - flex-direction: column !important -} - -.flex-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important -} - -.flex-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important -} - -.flex-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important -} - -.flex-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important -} - -.flex-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important -} - -.flex-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important -} - -.flex-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important -} - -.flex-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important -} - -.flex-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important -} - -.flex-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important -} - -.justify-content-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important -} - -.justify-content-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important -} - -.justify-content-center { - -ms-flex-pack: center !important; - justify-content: center !important -} - -.justify-content-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important -} - -.justify-content-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important -} - -.align-items-start { - -ms-flex-align: start !important; - align-items: flex-start !important -} - -.align-items-end { - -ms-flex-align: end !important; - align-items: flex-end !important -} - -.align-items-center { - -ms-flex-align: center !important; - align-items: center !important -} - -.align-items-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important -} - -.align-items-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important -} - -.align-content-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important -} - -.align-content-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important -} - -.align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important -} - -.align-content-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important -} - -.align-content-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important -} - -.align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important -} - -.align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important -} - -.align-self-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important -} - -.align-self-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important -} - -.align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important -} - -.align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important -} - -.align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important -} - -@media (min-width:576px) { - .flex-sm-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-sm-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-sm-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-sm-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-sm-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-sm-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-sm-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-sm-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-sm-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-sm-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-sm-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-sm-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-sm-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-sm-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-sm-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-sm-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-sm-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-sm-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-sm-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-sm-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-sm-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-sm-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-sm-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-sm-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-sm-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-sm-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-sm-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-sm-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-sm-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-sm-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-sm-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-sm-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-sm-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-sm-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:768px) { - .flex-md-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-md-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-md-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-md-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-md-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-md-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-md-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-md-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-md-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-md-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-md-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-md-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-md-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-md-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-md-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-md-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-md-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-md-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-md-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-md-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-md-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-md-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-md-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-md-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-md-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-md-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-md-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-md-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-md-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-md-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-md-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-md-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-md-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-md-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:992px) { - .flex-lg-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-lg-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-lg-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-lg-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-lg-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-lg-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-lg-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-lg-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-lg-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-lg-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-lg-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-lg-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-lg-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-lg-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-lg-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-lg-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-lg-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-lg-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-lg-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-lg-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-lg-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-lg-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-lg-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-lg-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-lg-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-lg-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-lg-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-lg-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-lg-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-lg-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-lg-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-lg-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-lg-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-lg-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -@media (min-width:1200px) { - .flex-xl-row { - -ms-flex-direction: row !important; - flex-direction: row !important - } - - .flex-xl-column { - -ms-flex-direction: column !important; - flex-direction: column !important - } - - .flex-xl-row-reverse { - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important - } - - .flex-xl-column-reverse { - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important - } - - .flex-xl-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important - } - - .flex-xl-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important - } - - .flex-xl-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important - } - - .flex-xl-fill { - -ms-flex: 1 1 auto !important; - flex: 1 1 auto !important - } - - .flex-xl-grow-0 { - -ms-flex-positive: 0 !important; - flex-grow: 0 !important - } - - .flex-xl-grow-1 { - -ms-flex-positive: 1 !important; - flex-grow: 1 !important - } - - .flex-xl-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important - } - - .flex-xl-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important - } - - .justify-content-xl-start { - -ms-flex-pack: start !important; - justify-content: flex-start !important - } - - .justify-content-xl-end { - -ms-flex-pack: end !important; - justify-content: flex-end !important - } - - .justify-content-xl-center { - -ms-flex-pack: center !important; - justify-content: center !important - } - - .justify-content-xl-between { - -ms-flex-pack: justify !important; - justify-content: space-between !important - } - - .justify-content-xl-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important - } - - .align-items-xl-start { - -ms-flex-align: start !important; - align-items: flex-start !important - } - - .align-items-xl-end { - -ms-flex-align: end !important; - align-items: flex-end !important - } - - .align-items-xl-center { - -ms-flex-align: center !important; - align-items: center !important - } - - .align-items-xl-baseline { - -ms-flex-align: baseline !important; - align-items: baseline !important - } - - .align-items-xl-stretch { - -ms-flex-align: stretch !important; - align-items: stretch !important - } - - .align-content-xl-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important - } - - .align-content-xl-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important - } - - .align-content-xl-center { - -ms-flex-line-pack: center !important; - align-content: center !important - } - - .align-content-xl-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important - } - - .align-content-xl-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important - } - - .align-content-xl-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important - } - - .align-self-xl-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important - } - - .align-self-xl-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important - } - - .align-self-xl-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important - } - - .align-self-xl-center { - -ms-flex-item-align: center !important; - align-self: center !important - } - - .align-self-xl-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important - } - - .align-self-xl-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important - } -} - -.float-left { - float: left !important -} - -.float-right { - float: right !important -} - -.float-none { - float: none !important -} - -@media (min-width:576px) { - .float-sm-left { - float: left !important - } - - .float-sm-right { - float: right !important - } - - .float-sm-none { - float: none !important - } -} - -@media (min-width:768px) { - .float-md-left { - float: left !important - } - - .float-md-right { - float: right !important - } - - .float-md-none { - float: none !important - } -} - -@media (min-width:992px) { - .float-lg-left { - float: left !important - } - - .float-lg-right { - float: right !important - } - - .float-lg-none { - float: none !important - } -} - -@media (min-width:1200px) { - .float-xl-left { - float: left !important - } - - .float-xl-right { - float: right !important - } - - .float-xl-none { - float: none !important - } -} - -.user-select-all { - -webkit-user-select: all !important; - -moz-user-select: all !important; - -ms-user-select: all !important; - user-select: all !important -} - -.user-select-auto { - -webkit-user-select: auto !important; - -moz-user-select: auto !important; - -ms-user-select: auto !important; - user-select: auto !important -} - -.user-select-none { - -webkit-user-select: none !important; - -moz-user-select: none !important; - -ms-user-select: none !important; - user-select: none !important -} - -.overflow-auto { - overflow: auto !important -} - -.overflow-hidden { - overflow: hidden !important -} - -.position-static { - position: static !important -} - -.position-relative { - position: relative !important -} - -.position-absolute { - position: absolute !important -} - -.position-fixed { - position: fixed !important -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important -} - -.fixed-top { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030 -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030 -} - -@supports ((position:-webkit-sticky) or (position:sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020 - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0 -} - -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal -} - -.shadow-sm { - box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important -} - -.shadow { - box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important -} - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important -} - -.shadow-none { - box-shadow: none !important -} - -.w-25 { - width: 25% !important -} - -.w-50 { - width: 50% !important -} - -.w-75 { - width: 75% !important -} - -.w-100 { - width: 100% !important -} - -.w-auto { - width: auto !important -} - -.h-25 { - height: 25% !important -} - -.h-50 { - height: 50% !important -} - -.h-75 { - height: 75% !important -} - -.h-100 { - height: 100% !important -} - -.h-auto { - height: auto !important -} - -.mw-100 { - max-width: 100% !important -} - -.mh-100 { - max-height: 100% !important -} - -.min-vw-100 { - min-width: 100vw !important -} - -.min-vh-100 { - min-height: 100vh !important -} - -.vw-100 { - width: 100vw !important -} - -.vh-100 { - height: 100vh !important -} - -.m-0 { - margin: 0 !important -} - -.mt-0, -.my-0 { - margin-top: 0 !important -} - -.mr-0, -.mx-0 { - margin-right: 0 !important -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important -} - -.ml-0, -.mx-0 { - margin-left: 0 !important -} - -.m-1 { - margin: .25rem !important -} - -.mt-1, -.my-1 { - margin-top: .25rem !important -} - -.mr-1, -.mx-1 { - margin-right: .25rem !important -} - -.mb-1, -.my-1 { - margin-bottom: .25rem !important -} - -.ml-1, -.mx-1 { - margin-left: .25rem !important -} - -.m-2 { - margin: .5rem !important -} - -.mt-2, -.my-2 { - margin-top: .5rem !important -} - -.mr-2, -.mx-2 { - margin-right: .5rem !important -} - -.mb-2, -.my-2 { - margin-bottom: .5rem !important -} - -.ml-2, -.mx-2 { - margin-left: .5rem !important -} - -.m-3 { - margin: 1rem !important -} - -.mt-3, -.my-3 { - margin-top: 1rem !important -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important -} - -.m-4 { - margin: 1.5rem !important -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important -} - -.m-5 { - margin: 3rem !important -} - -.mt-5, -.my-5 { - margin-top: 3rem !important -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important -} - -.p-0 { - padding: 0 !important -} - -.pt-0, -.py-0 { - padding-top: 0 !important -} - -.pr-0, -.px-0 { - padding-right: 0 !important -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important -} - -.pl-0, -.px-0 { - padding-left: 0 !important -} - -.p-1 { - padding: .25rem !important -} - -.pt-1, -.py-1 { - padding-top: .25rem !important -} - -.pr-1, -.px-1 { - padding-right: .25rem !important -} - -.pb-1, -.py-1 { - padding-bottom: .25rem !important -} - -.pl-1, -.px-1 { - padding-left: .25rem !important -} - -.p-2 { - padding: .5rem !important -} - -.pt-2, -.py-2 { - padding-top: .5rem !important -} - -.pr-2, -.px-2 { - padding-right: .5rem !important -} - -.pb-2, -.py-2 { - padding-bottom: .5rem !important -} - -.pl-2, -.px-2 { - padding-left: .5rem !important -} - -.p-3 { - padding: 1rem !important -} - -.pt-3, -.py-3 { - padding-top: 1rem !important -} - -.pr-3, -.px-3 { - padding-right: 1rem !important -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important -} - -.pl-3, -.px-3 { - padding-left: 1rem !important -} - -.p-4 { - padding: 1.5rem !important -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important -} - -.p-5 { - padding: 3rem !important -} - -.pt-5, -.py-5 { - padding-top: 3rem !important -} - -.pr-5, -.px-5 { - padding-right: 3rem !important -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important -} - -.pl-5, -.px-5 { - padding-left: 3rem !important -} - -.m-n1 { - margin: -.25rem !important -} - -.mt-n1, -.my-n1 { - margin-top: -.25rem !important -} - -.mr-n1, -.mx-n1 { - margin-right: -.25rem !important -} - -.mb-n1, -.my-n1 { - margin-bottom: -.25rem !important -} - -.ml-n1, -.mx-n1 { - margin-left: -.25rem !important -} - -.m-n2 { - margin: -.5rem !important -} - -.mt-n2, -.my-n2 { - margin-top: -.5rem !important -} - -.mr-n2, -.mx-n2 { - margin-right: -.5rem !important -} - -.mb-n2, -.my-n2 { - margin-bottom: -.5rem !important -} - -.ml-n2, -.mx-n2 { - margin-left: -.5rem !important -} - -.m-n3 { - margin: -1rem !important -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important -} - -.m-n4 { - margin: -1.5rem !important -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important -} - -.m-n5 { - margin: -3rem !important -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important -} - -.m-auto { - margin: auto !important -} - -.mt-auto, -.my-auto { - margin-top: auto !important -} - -.mr-auto, -.mx-auto { - margin-right: auto !important -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important -} - -.ml-auto, -.mx-auto { - margin-left: auto !important -} - -@media (min-width:576px) { - .m-sm-0 { - margin: 0 !important - } - - .mt-sm-0, - .my-sm-0 { - margin-top: 0 !important - } - - .mr-sm-0, - .mx-sm-0 { - margin-right: 0 !important - } - - .mb-sm-0, - .my-sm-0 { - margin-bottom: 0 !important - } - - .ml-sm-0, - .mx-sm-0 { - margin-left: 0 !important - } - - .m-sm-1 { - margin: .25rem !important - } - - .mt-sm-1, - .my-sm-1 { - margin-top: .25rem !important - } - - .mr-sm-1, - .mx-sm-1 { - margin-right: .25rem !important - } - - .mb-sm-1, - .my-sm-1 { - margin-bottom: .25rem !important - } - - .ml-sm-1, - .mx-sm-1 { - margin-left: .25rem !important - } - - .m-sm-2 { - margin: .5rem !important - } - - .mt-sm-2, - .my-sm-2 { - margin-top: .5rem !important - } - - .mr-sm-2, - .mx-sm-2 { - margin-right: .5rem !important - } - - .mb-sm-2, - .my-sm-2 { - margin-bottom: .5rem !important - } - - .ml-sm-2, - .mx-sm-2 { - margin-left: .5rem !important - } - - .m-sm-3 { - margin: 1rem !important - } - - .mt-sm-3, - .my-sm-3 { - margin-top: 1rem !important - } - - .mr-sm-3, - .mx-sm-3 { - margin-right: 1rem !important - } - - .mb-sm-3, - .my-sm-3 { - margin-bottom: 1rem !important - } - - .ml-sm-3, - .mx-sm-3 { - margin-left: 1rem !important - } - - .m-sm-4 { - margin: 1.5rem !important - } - - .mt-sm-4, - .my-sm-4 { - margin-top: 1.5rem !important - } - - .mr-sm-4, - .mx-sm-4 { - margin-right: 1.5rem !important - } - - .mb-sm-4, - .my-sm-4 { - margin-bottom: 1.5rem !important - } - - .ml-sm-4, - .mx-sm-4 { - margin-left: 1.5rem !important - } - - .m-sm-5 { - margin: 3rem !important - } - - .mt-sm-5, - .my-sm-5 { - margin-top: 3rem !important - } - - .mr-sm-5, - .mx-sm-5 { - margin-right: 3rem !important - } - - .mb-sm-5, - .my-sm-5 { - margin-bottom: 3rem !important - } - - .ml-sm-5, - .mx-sm-5 { - margin-left: 3rem !important - } - - .p-sm-0 { - padding: 0 !important - } - - .pt-sm-0, - .py-sm-0 { - padding-top: 0 !important - } - - .pr-sm-0, - .px-sm-0 { - padding-right: 0 !important - } - - .pb-sm-0, - .py-sm-0 { - padding-bottom: 0 !important - } - - .pl-sm-0, - .px-sm-0 { - padding-left: 0 !important - } - - .p-sm-1 { - padding: .25rem !important - } - - .pt-sm-1, - .py-sm-1 { - padding-top: .25rem !important - } - - .pr-sm-1, - .px-sm-1 { - padding-right: .25rem !important - } - - .pb-sm-1, - .py-sm-1 { - padding-bottom: .25rem !important - } - - .pl-sm-1, - .px-sm-1 { - padding-left: .25rem !important - } - - .p-sm-2 { - padding: .5rem !important - } - - .pt-sm-2, - .py-sm-2 { - padding-top: .5rem !important - } - - .pr-sm-2, - .px-sm-2 { - padding-right: .5rem !important - } - - .pb-sm-2, - .py-sm-2 { - padding-bottom: .5rem !important - } - - .pl-sm-2, - .px-sm-2 { - padding-left: .5rem !important - } - - .p-sm-3 { - padding: 1rem !important - } - - .pt-sm-3, - .py-sm-3 { - padding-top: 1rem !important - } - - .pr-sm-3, - .px-sm-3 { - padding-right: 1rem !important - } - - .pb-sm-3, - .py-sm-3 { - padding-bottom: 1rem !important - } - - .pl-sm-3, - .px-sm-3 { - padding-left: 1rem !important - } - - .p-sm-4 { - padding: 1.5rem !important - } - - .pt-sm-4, - .py-sm-4 { - padding-top: 1.5rem !important - } - - .pr-sm-4, - .px-sm-4 { - padding-right: 1.5rem !important - } - - .pb-sm-4, - .py-sm-4 { - padding-bottom: 1.5rem !important - } - - .pl-sm-4, - .px-sm-4 { - padding-left: 1.5rem !important - } - - .p-sm-5 { - padding: 3rem !important - } - - .pt-sm-5, - .py-sm-5 { - padding-top: 3rem !important - } - - .pr-sm-5, - .px-sm-5 { - padding-right: 3rem !important - } - - .pb-sm-5, - .py-sm-5 { - padding-bottom: 3rem !important - } - - .pl-sm-5, - .px-sm-5 { - padding-left: 3rem !important - } - - .m-sm-n1 { - margin: -.25rem !important - } - - .mt-sm-n1, - .my-sm-n1 { - margin-top: -.25rem !important - } - - .mr-sm-n1, - .mx-sm-n1 { - margin-right: -.25rem !important - } - - .mb-sm-n1, - .my-sm-n1 { - margin-bottom: -.25rem !important - } - - .ml-sm-n1, - .mx-sm-n1 { - margin-left: -.25rem !important - } - - .m-sm-n2 { - margin: -.5rem !important - } - - .mt-sm-n2, - .my-sm-n2 { - margin-top: -.5rem !important - } - - .mr-sm-n2, - .mx-sm-n2 { - margin-right: -.5rem !important - } - - .mb-sm-n2, - .my-sm-n2 { - margin-bottom: -.5rem !important - } - - .ml-sm-n2, - .mx-sm-n2 { - margin-left: -.5rem !important - } - - .m-sm-n3 { - margin: -1rem !important - } - - .mt-sm-n3, - .my-sm-n3 { - margin-top: -1rem !important - } - - .mr-sm-n3, - .mx-sm-n3 { - margin-right: -1rem !important - } - - .mb-sm-n3, - .my-sm-n3 { - margin-bottom: -1rem !important - } - - .ml-sm-n3, - .mx-sm-n3 { - margin-left: -1rem !important - } - - .m-sm-n4 { - margin: -1.5rem !important - } - - .mt-sm-n4, - .my-sm-n4 { - margin-top: -1.5rem !important - } - - .mr-sm-n4, - .mx-sm-n4 { - margin-right: -1.5rem !important - } - - .mb-sm-n4, - .my-sm-n4 { - margin-bottom: -1.5rem !important - } - - .ml-sm-n4, - .mx-sm-n4 { - margin-left: -1.5rem !important - } - - .m-sm-n5 { - margin: -3rem !important - } - - .mt-sm-n5, - .my-sm-n5 { - margin-top: -3rem !important - } - - .mr-sm-n5, - .mx-sm-n5 { - margin-right: -3rem !important - } - - .mb-sm-n5, - .my-sm-n5 { - margin-bottom: -3rem !important - } - - .ml-sm-n5, - .mx-sm-n5 { - margin-left: -3rem !important - } - - .m-sm-auto { - margin: auto !important - } - - .mt-sm-auto, - .my-sm-auto { - margin-top: auto !important - } - - .mr-sm-auto, - .mx-sm-auto { - margin-right: auto !important - } - - .mb-sm-auto, - .my-sm-auto { - margin-bottom: auto !important - } - - .ml-sm-auto, - .mx-sm-auto { - margin-left: auto !important - } -} - -@media (min-width:768px) { - .m-md-0 { - margin: 0 !important - } - - .mt-md-0, - .my-md-0 { - margin-top: 0 !important - } - - .mr-md-0, - .mx-md-0 { - margin-right: 0 !important - } - - .mb-md-0, - .my-md-0 { - margin-bottom: 0 !important - } - - .ml-md-0, - .mx-md-0 { - margin-left: 0 !important - } - - .m-md-1 { - margin: .25rem !important - } - - .mt-md-1, - .my-md-1 { - margin-top: .25rem !important - } - - .mr-md-1, - .mx-md-1 { - margin-right: .25rem !important - } - - .mb-md-1, - .my-md-1 { - margin-bottom: .25rem !important - } - - .ml-md-1, - .mx-md-1 { - margin-left: .25rem !important - } - - .m-md-2 { - margin: .5rem !important - } - - .mt-md-2, - .my-md-2 { - margin-top: .5rem !important - } - - .mr-md-2, - .mx-md-2 { - margin-right: .5rem !important - } - - .mb-md-2, - .my-md-2 { - margin-bottom: .5rem !important - } - - .ml-md-2, - .mx-md-2 { - margin-left: .5rem !important - } - - .m-md-3 { - margin: 1rem !important - } - - .mt-md-3, - .my-md-3 { - margin-top: 1rem !important - } - - .mr-md-3, - .mx-md-3 { - margin-right: 1rem !important - } - - .mb-md-3, - .my-md-3 { - margin-bottom: 1rem !important - } - - .ml-md-3, - .mx-md-3 { - margin-left: 1rem !important - } - - .m-md-4 { - margin: 1.5rem !important - } - - .mt-md-4, - .my-md-4 { - margin-top: 1.5rem !important - } - - .mr-md-4, - .mx-md-4 { - margin-right: 1.5rem !important - } - - .mb-md-4, - .my-md-4 { - margin-bottom: 1.5rem !important - } - - .ml-md-4, - .mx-md-4 { - margin-left: 1.5rem !important - } - - .m-md-5 { - margin: 3rem !important - } - - .mt-md-5, - .my-md-5 { - margin-top: 3rem !important - } - - .mr-md-5, - .mx-md-5 { - margin-right: 3rem !important - } - - .mb-md-5, - .my-md-5 { - margin-bottom: 3rem !important - } - - .ml-md-5, - .mx-md-5 { - margin-left: 3rem !important - } - - .p-md-0 { - padding: 0 !important - } - - .pt-md-0, - .py-md-0 { - padding-top: 0 !important - } - - .pr-md-0, - .px-md-0 { - padding-right: 0 !important - } - - .pb-md-0, - .py-md-0 { - padding-bottom: 0 !important - } - - .pl-md-0, - .px-md-0 { - padding-left: 0 !important - } - - .p-md-1 { - padding: .25rem !important - } - - .pt-md-1, - .py-md-1 { - padding-top: .25rem !important - } - - .pr-md-1, - .px-md-1 { - padding-right: .25rem !important - } - - .pb-md-1, - .py-md-1 { - padding-bottom: .25rem !important - } - - .pl-md-1, - .px-md-1 { - padding-left: .25rem !important - } - - .p-md-2 { - padding: .5rem !important - } - - .pt-md-2, - .py-md-2 { - padding-top: .5rem !important - } - - .pr-md-2, - .px-md-2 { - padding-right: .5rem !important - } - - .pb-md-2, - .py-md-2 { - padding-bottom: .5rem !important - } - - .pl-md-2, - .px-md-2 { - padding-left: .5rem !important - } - - .p-md-3 { - padding: 1rem !important - } - - .pt-md-3, - .py-md-3 { - padding-top: 1rem !important - } - - .pr-md-3, - .px-md-3 { - padding-right: 1rem !important - } - - .pb-md-3, - .py-md-3 { - padding-bottom: 1rem !important - } - - .pl-md-3, - .px-md-3 { - padding-left: 1rem !important - } - - .p-md-4 { - padding: 1.5rem !important - } - - .pt-md-4, - .py-md-4 { - padding-top: 1.5rem !important - } - - .pr-md-4, - .px-md-4 { - padding-right: 1.5rem !important - } - - .pb-md-4, - .py-md-4 { - padding-bottom: 1.5rem !important - } - - .pl-md-4, - .px-md-4 { - padding-left: 1.5rem !important - } - - .p-md-5 { - padding: 3rem !important - } - - .pt-md-5, - .py-md-5 { - padding-top: 3rem !important - } - - .pr-md-5, - .px-md-5 { - padding-right: 3rem !important - } - - .pb-md-5, - .py-md-5 { - padding-bottom: 3rem !important - } - - .pl-md-5, - .px-md-5 { - padding-left: 3rem !important - } - - .m-md-n1 { - margin: -.25rem !important - } - - .mt-md-n1, - .my-md-n1 { - margin-top: -.25rem !important - } - - .mr-md-n1, - .mx-md-n1 { - margin-right: -.25rem !important - } - - .mb-md-n1, - .my-md-n1 { - margin-bottom: -.25rem !important - } - - .ml-md-n1, - .mx-md-n1 { - margin-left: -.25rem !important - } - - .m-md-n2 { - margin: -.5rem !important - } - - .mt-md-n2, - .my-md-n2 { - margin-top: -.5rem !important - } - - .mr-md-n2, - .mx-md-n2 { - margin-right: -.5rem !important - } - - .mb-md-n2, - .my-md-n2 { - margin-bottom: -.5rem !important - } - - .ml-md-n2, - .mx-md-n2 { - margin-left: -.5rem !important - } - - .m-md-n3 { - margin: -1rem !important - } - - .mt-md-n3, - .my-md-n3 { - margin-top: -1rem !important - } - - .mr-md-n3, - .mx-md-n3 { - margin-right: -1rem !important - } - - .mb-md-n3, - .my-md-n3 { - margin-bottom: -1rem !important - } - - .ml-md-n3, - .mx-md-n3 { - margin-left: -1rem !important - } - - .m-md-n4 { - margin: -1.5rem !important - } - - .mt-md-n4, - .my-md-n4 { - margin-top: -1.5rem !important - } - - .mr-md-n4, - .mx-md-n4 { - margin-right: -1.5rem !important - } - - .mb-md-n4, - .my-md-n4 { - margin-bottom: -1.5rem !important - } - - .ml-md-n4, - .mx-md-n4 { - margin-left: -1.5rem !important - } - - .m-md-n5 { - margin: -3rem !important - } - - .mt-md-n5, - .my-md-n5 { - margin-top: -3rem !important - } - - .mr-md-n5, - .mx-md-n5 { - margin-right: -3rem !important - } - - .mb-md-n5, - .my-md-n5 { - margin-bottom: -3rem !important - } - - .ml-md-n5, - .mx-md-n5 { - margin-left: -3rem !important - } - - .m-md-auto { - margin: auto !important - } - - .mt-md-auto, - .my-md-auto { - margin-top: auto !important - } - - .mr-md-auto, - .mx-md-auto { - margin-right: auto !important - } - - .mb-md-auto, - .my-md-auto { - margin-bottom: auto !important - } - - .ml-md-auto, - .mx-md-auto { - margin-left: auto !important - } -} - -@media (min-width:992px) { - .m-lg-0 { - margin: 0 !important - } - - .mt-lg-0, - .my-lg-0 { - margin-top: 0 !important - } - - .mr-lg-0, - .mx-lg-0 { - margin-right: 0 !important - } - - .mb-lg-0, - .my-lg-0 { - margin-bottom: 0 !important - } - - .ml-lg-0, - .mx-lg-0 { - margin-left: 0 !important - } - - .m-lg-1 { - margin: .25rem !important - } - - .mt-lg-1, - .my-lg-1 { - margin-top: .25rem !important - } - - .mr-lg-1, - .mx-lg-1 { - margin-right: .25rem !important - } - - .mb-lg-1, - .my-lg-1 { - margin-bottom: .25rem !important - } - - .ml-lg-1, - .mx-lg-1 { - margin-left: .25rem !important - } - - .m-lg-2 { - margin: .5rem !important - } - - .mt-lg-2, - .my-lg-2 { - margin-top: .5rem !important - } - - .mr-lg-2, - .mx-lg-2 { - margin-right: .5rem !important - } - - .mb-lg-2, - .my-lg-2 { - margin-bottom: .5rem !important - } - - .ml-lg-2, - .mx-lg-2 { - margin-left: .5rem !important - } - - .m-lg-3 { - margin: 1rem !important - } - - .mt-lg-3, - .my-lg-3 { - margin-top: 1rem !important - } - - .mr-lg-3, - .mx-lg-3 { - margin-right: 1rem !important - } - - .mb-lg-3, - .my-lg-3 { - margin-bottom: 1rem !important - } - - .ml-lg-3, - .mx-lg-3 { - margin-left: 1rem !important - } - - .m-lg-4 { - margin: 1.5rem !important - } - - .mt-lg-4, - .my-lg-4 { - margin-top: 1.5rem !important - } - - .mr-lg-4, - .mx-lg-4 { - margin-right: 1.5rem !important - } - - .mb-lg-4, - .my-lg-4 { - margin-bottom: 1.5rem !important - } - - .ml-lg-4, - .mx-lg-4 { - margin-left: 1.5rem !important - } - - .m-lg-5 { - margin: 3rem !important - } - - .mt-lg-5, - .my-lg-5 { - margin-top: 3rem !important - } - - .mr-lg-5, - .mx-lg-5 { - margin-right: 3rem !important - } - - .mb-lg-5, - .my-lg-5 { - margin-bottom: 3rem !important - } - - .ml-lg-5, - .mx-lg-5 { - margin-left: 3rem !important - } - - .p-lg-0 { - padding: 0 !important - } - - .pt-lg-0, - .py-lg-0 { - padding-top: 0 !important - } - - .pr-lg-0, - .px-lg-0 { - padding-right: 0 !important - } - - .pb-lg-0, - .py-lg-0 { - padding-bottom: 0 !important - } - - .pl-lg-0, - .px-lg-0 { - padding-left: 0 !important - } - - .p-lg-1 { - padding: .25rem !important - } - - .pt-lg-1, - .py-lg-1 { - padding-top: .25rem !important - } - - .pr-lg-1, - .px-lg-1 { - padding-right: .25rem !important - } - - .pb-lg-1, - .py-lg-1 { - padding-bottom: .25rem !important - } - - .pl-lg-1, - .px-lg-1 { - padding-left: .25rem !important - } - - .p-lg-2 { - padding: .5rem !important - } - - .pt-lg-2, - .py-lg-2 { - padding-top: .5rem !important - } - - .pr-lg-2, - .px-lg-2 { - padding-right: .5rem !important - } - - .pb-lg-2, - .py-lg-2 { - padding-bottom: .5rem !important - } - - .pl-lg-2, - .px-lg-2 { - padding-left: .5rem !important - } - - .p-lg-3 { - padding: 1rem !important - } - - .pt-lg-3, - .py-lg-3 { - padding-top: 1rem !important - } - - .pr-lg-3, - .px-lg-3 { - padding-right: 1rem !important - } - - .pb-lg-3, - .py-lg-3 { - padding-bottom: 1rem !important - } - - .pl-lg-3, - .px-lg-3 { - padding-left: 1rem !important - } - - .p-lg-4 { - padding: 1.5rem !important - } - - .pt-lg-4, - .py-lg-4 { - padding-top: 1.5rem !important - } - - .pr-lg-4, - .px-lg-4 { - padding-right: 1.5rem !important - } - - .pb-lg-4, - .py-lg-4 { - padding-bottom: 1.5rem !important - } - - .pl-lg-4, - .px-lg-4 { - padding-left: 1.5rem !important - } - - .p-lg-5 { - padding: 3rem !important - } - - .pt-lg-5, - .py-lg-5 { - padding-top: 3rem !important - } - - .pr-lg-5, - .px-lg-5 { - padding-right: 3rem !important - } - - .pb-lg-5, - .py-lg-5 { - padding-bottom: 3rem !important - } - - .pl-lg-5, - .px-lg-5 { - padding-left: 3rem !important - } - - .m-lg-n1 { - margin: -.25rem !important - } - - .mt-lg-n1, - .my-lg-n1 { - margin-top: -.25rem !important - } - - .mr-lg-n1, - .mx-lg-n1 { - margin-right: -.25rem !important - } - - .mb-lg-n1, - .my-lg-n1 { - margin-bottom: -.25rem !important - } - - .ml-lg-n1, - .mx-lg-n1 { - margin-left: -.25rem !important - } - - .m-lg-n2 { - margin: -.5rem !important - } - - .mt-lg-n2, - .my-lg-n2 { - margin-top: -.5rem !important - } - - .mr-lg-n2, - .mx-lg-n2 { - margin-right: -.5rem !important - } - - .mb-lg-n2, - .my-lg-n2 { - margin-bottom: -.5rem !important - } - - .ml-lg-n2, - .mx-lg-n2 { - margin-left: -.5rem !important - } - - .m-lg-n3 { - margin: -1rem !important - } - - .mt-lg-n3, - .my-lg-n3 { - margin-top: -1rem !important - } - - .mr-lg-n3, - .mx-lg-n3 { - margin-right: -1rem !important - } - - .mb-lg-n3, - .my-lg-n3 { - margin-bottom: -1rem !important - } - - .ml-lg-n3, - .mx-lg-n3 { - margin-left: -1rem !important - } - - .m-lg-n4 { - margin: -1.5rem !important - } - - .mt-lg-n4, - .my-lg-n4 { - margin-top: -1.5rem !important - } - - .mr-lg-n4, - .mx-lg-n4 { - margin-right: -1.5rem !important - } - - .mb-lg-n4, - .my-lg-n4 { - margin-bottom: -1.5rem !important - } - - .ml-lg-n4, - .mx-lg-n4 { - margin-left: -1.5rem !important - } - - .m-lg-n5 { - margin: -3rem !important - } - - .mt-lg-n5, - .my-lg-n5 { - margin-top: -3rem !important - } - - .mr-lg-n5, - .mx-lg-n5 { - margin-right: -3rem !important - } - - .mb-lg-n5, - .my-lg-n5 { - margin-bottom: -3rem !important - } - - .ml-lg-n5, - .mx-lg-n5 { - margin-left: -3rem !important - } - - .m-lg-auto { - margin: auto !important - } - - .mt-lg-auto, - .my-lg-auto { - margin-top: auto !important - } - - .mr-lg-auto, - .mx-lg-auto { - margin-right: auto !important - } - - .mb-lg-auto, - .my-lg-auto { - margin-bottom: auto !important - } - - .ml-lg-auto, - .mx-lg-auto { - margin-left: auto !important - } -} - -@media (min-width:1200px) { - .m-xl-0 { - margin: 0 !important - } - - .mt-xl-0, - .my-xl-0 { - margin-top: 0 !important - } - - .mr-xl-0, - .mx-xl-0 { - margin-right: 0 !important - } - - .mb-xl-0, - .my-xl-0 { - margin-bottom: 0 !important - } - - .ml-xl-0, - .mx-xl-0 { - margin-left: 0 !important - } - - .m-xl-1 { - margin: .25rem !important - } - - .mt-xl-1, - .my-xl-1 { - margin-top: .25rem !important - } - - .mr-xl-1, - .mx-xl-1 { - margin-right: .25rem !important - } - - .mb-xl-1, - .my-xl-1 { - margin-bottom: .25rem !important - } - - .ml-xl-1, - .mx-xl-1 { - margin-left: .25rem !important - } - - .m-xl-2 { - margin: .5rem !important - } - - .mt-xl-2, - .my-xl-2 { - margin-top: .5rem !important - } - - .mr-xl-2, - .mx-xl-2 { - margin-right: .5rem !important - } - - .mb-xl-2, - .my-xl-2 { - margin-bottom: .5rem !important - } - - .ml-xl-2, - .mx-xl-2 { - margin-left: .5rem !important - } - - .m-xl-3 { - margin: 1rem !important - } - - .mt-xl-3, - .my-xl-3 { - margin-top: 1rem !important - } - - .mr-xl-3, - .mx-xl-3 { - margin-right: 1rem !important - } - - .mb-xl-3, - .my-xl-3 { - margin-bottom: 1rem !important - } - - .ml-xl-3, - .mx-xl-3 { - margin-left: 1rem !important - } - - .m-xl-4 { - margin: 1.5rem !important - } - - .mt-xl-4, - .my-xl-4 { - margin-top: 1.5rem !important - } - - .mr-xl-4, - .mx-xl-4 { - margin-right: 1.5rem !important - } - - .mb-xl-4, - .my-xl-4 { - margin-bottom: 1.5rem !important - } - - .ml-xl-4, - .mx-xl-4 { - margin-left: 1.5rem !important - } - - .m-xl-5 { - margin: 3rem !important - } - - .mt-xl-5, - .my-xl-5 { - margin-top: 3rem !important - } - - .mr-xl-5, - .mx-xl-5 { - margin-right: 3rem !important - } - - .mb-xl-5, - .my-xl-5 { - margin-bottom: 3rem !important - } - - .ml-xl-5, - .mx-xl-5 { - margin-left: 3rem !important - } - - .p-xl-0 { - padding: 0 !important - } - - .pt-xl-0, - .py-xl-0 { - padding-top: 0 !important - } - - .pr-xl-0, - .px-xl-0 { - padding-right: 0 !important - } - - .pb-xl-0, - .py-xl-0 { - padding-bottom: 0 !important - } - - .pl-xl-0, - .px-xl-0 { - padding-left: 0 !important - } - - .p-xl-1 { - padding: .25rem !important - } - - .pt-xl-1, - .py-xl-1 { - padding-top: .25rem !important - } - - .pr-xl-1, - .px-xl-1 { - padding-right: .25rem !important - } - - .pb-xl-1, - .py-xl-1 { - padding-bottom: .25rem !important - } - - .pl-xl-1, - .px-xl-1 { - padding-left: .25rem !important - } - - .p-xl-2 { - padding: .5rem !important - } - - .pt-xl-2, - .py-xl-2 { - padding-top: .5rem !important - } - - .pr-xl-2, - .px-xl-2 { - padding-right: .5rem !important - } - - .pb-xl-2, - .py-xl-2 { - padding-bottom: .5rem !important - } - - .pl-xl-2, - .px-xl-2 { - padding-left: .5rem !important - } - - .p-xl-3 { - padding: 1rem !important - } - - .pt-xl-3, - .py-xl-3 { - padding-top: 1rem !important - } - - .pr-xl-3, - .px-xl-3 { - padding-right: 1rem !important - } - - .pb-xl-3, - .py-xl-3 { - padding-bottom: 1rem !important - } - - .pl-xl-3, - .px-xl-3 { - padding-left: 1rem !important - } - - .p-xl-4 { - padding: 1.5rem !important - } - - .pt-xl-4, - .py-xl-4 { - padding-top: 1.5rem !important - } - - .pr-xl-4, - .px-xl-4 { - padding-right: 1.5rem !important - } - - .pb-xl-4, - .py-xl-4 { - padding-bottom: 1.5rem !important - } - - .pl-xl-4, - .px-xl-4 { - padding-left: 1.5rem !important - } - - .p-xl-5 { - padding: 3rem !important - } - - .pt-xl-5, - .py-xl-5 { - padding-top: 3rem !important - } - - .pr-xl-5, - .px-xl-5 { - padding-right: 3rem !important - } - - .pb-xl-5, - .py-xl-5 { - padding-bottom: 3rem !important - } - - .pl-xl-5, - .px-xl-5 { - padding-left: 3rem !important - } - - .m-xl-n1 { - margin: -.25rem !important - } - - .mt-xl-n1, - .my-xl-n1 { - margin-top: -.25rem !important - } - - .mr-xl-n1, - .mx-xl-n1 { - margin-right: -.25rem !important - } - - .mb-xl-n1, - .my-xl-n1 { - margin-bottom: -.25rem !important - } - - .ml-xl-n1, - .mx-xl-n1 { - margin-left: -.25rem !important - } - - .m-xl-n2 { - margin: -.5rem !important - } - - .mt-xl-n2, - .my-xl-n2 { - margin-top: -.5rem !important - } - - .mr-xl-n2, - .mx-xl-n2 { - margin-right: -.5rem !important - } - - .mb-xl-n2, - .my-xl-n2 { - margin-bottom: -.5rem !important - } - - .ml-xl-n2, - .mx-xl-n2 { - margin-left: -.5rem !important - } - - .m-xl-n3 { - margin: -1rem !important - } - - .mt-xl-n3, - .my-xl-n3 { - margin-top: -1rem !important - } - - .mr-xl-n3, - .mx-xl-n3 { - margin-right: -1rem !important - } - - .mb-xl-n3, - .my-xl-n3 { - margin-bottom: -1rem !important - } - - .ml-xl-n3, - .mx-xl-n3 { - margin-left: -1rem !important - } - - .m-xl-n4 { - margin: -1.5rem !important - } - - .mt-xl-n4, - .my-xl-n4 { - margin-top: -1.5rem !important - } - - .mr-xl-n4, - .mx-xl-n4 { - margin-right: -1.5rem !important - } - - .mb-xl-n4, - .my-xl-n4 { - margin-bottom: -1.5rem !important - } - - .ml-xl-n4, - .mx-xl-n4 { - margin-left: -1.5rem !important - } - - .m-xl-n5 { - margin: -3rem !important - } - - .mt-xl-n5, - .my-xl-n5 { - margin-top: -3rem !important - } - - .mr-xl-n5, - .mx-xl-n5 { - margin-right: -3rem !important - } - - .mb-xl-n5, - .my-xl-n5 { - margin-bottom: -3rem !important - } - - .ml-xl-n5, - .mx-xl-n5 { - margin-left: -3rem !important - } - - .m-xl-auto { - margin: auto !important - } - - .mt-xl-auto, - .my-xl-auto { - margin-top: auto !important - } - - .mr-xl-auto, - .mx-xl-auto { - margin-right: auto !important - } - - .mb-xl-auto, - .my-xl-auto { - margin-bottom: auto !important - } - - .ml-xl-auto, - .mx-xl-auto { - margin-left: auto !important - } -} - -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: rgba(0, 0, 0, 0) -} - -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important -} - -.text-justify { - text-align: justify !important -} - -.text-wrap { - white-space: normal !important -} - -.text-nowrap { - white-space: nowrap !important -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap -} - -.text-left { - text-align: left !important -} - -.text-right { - text-align: right !important -} - -.text-center { - text-align: center !important -} - -@media (min-width:576px) { - .text-sm-left { - text-align: left !important - } - - .text-sm-right { - text-align: right !important - } - - .text-sm-center { - text-align: center !important - } -} - -@media (min-width:768px) { - .text-md-left { - text-align: left !important - } - - .text-md-right { - text-align: right !important - } - - .text-md-center { - text-align: center !important - } -} - -@media (min-width:992px) { - .text-lg-left { - text-align: left !important - } - - .text-lg-right { - text-align: right !important - } - - .text-lg-center { - text-align: center !important - } -} - -@media (min-width:1200px) { - .text-xl-left { - text-align: left !important - } - - .text-xl-right { - text-align: right !important - } - - .text-xl-center { - text-align: center !important - } -} - -.text-lowercase { - text-transform: lowercase !important -} - -.text-uppercase { - text-transform: uppercase !important -} - -.text-capitalize { - text-transform: capitalize !important -} - -.font-weight-light { - font-weight: 300 !important -} - -.font-weight-lighter { - font-weight: lighter !important -} - -.font-weight-normal { - font-weight: 400 !important -} - -.font-weight-bold { - font-weight: 700 !important -} - -.font-weight-bolder { - font-weight: bolder !important -} - -.font-italic { - font-style: italic !important -} - -.text-white { - color: #fff !important -} - -.text-primary { - color: #007bff !important -} - -a.text-primary:focus, -a.text-primary:hover { - color: #0056b3 !important -} - -.text-secondary { - color: #6c757d !important -} - -a.text-secondary:focus, -a.text-secondary:hover { - color: #494f54 !important -} - -.text-success { - color: #28a745 !important -} - -a.text-success:focus, -a.text-success:hover { - color: #19692c !important -} - -.text-info { - color: #17a2b8 !important -} - -a.text-info:focus, -a.text-info:hover { - color: #0f6674 !important -} - -.text-warning { - color: #ffc107 !important -} - -a.text-warning:focus, -a.text-warning:hover { - color: #ba8b00 !important -} - -.text-danger { - color: #dc3545 !important -} - -a.text-danger:focus, -a.text-danger:hover { - color: #a71d2a !important -} - -.text-light { - color: #f8f9fa !important -} - -a.text-light:focus, -a.text-light:hover { - color: #cbd3da !important -} - -.text-dark { - color: #343a40 !important -} - -a.text-dark:focus, -a.text-dark:hover { - color: #121416 !important -} - -.text-body { - color: #212529 !important -} - -.text-muted { - color: #6c757d !important -} - -.text-black-50 { - color: rgba(0, 0, 0, .5) !important -} - -.text-white-50 { - color: rgba(255, 255, 255, .5) !important -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0 -} - -.text-decoration-none { - text-decoration: none !important -} - -.text-break { - word-break: break-word !important; - overflow-wrap: break-word !important -} - -.text-reset { - color: inherit !important -} - -.visible { - visibility: visible !important -} - -.invisible { - visibility: hidden !important -} - -@media print { - - *, - ::after, - ::before { - text-shadow: none !important; - box-shadow: none !important - } - - a:not(.btn) { - text-decoration: underline - } - - abbr[title]::after { - content: " ("attr(title) ")" - } - - pre { - white-space: pre-wrap !important - } - - blockquote, - pre { - border: 1px solid #adb5bd; - page-break-inside: avoid - } - - thead { - display: table-header-group - } - - img, - tr { - page-break-inside: avoid - } - - h2, - h3, - p { - orphans: 3; - widows: 3 - } - - h2, - h3 { - page-break-after: avoid - } - - @page { - size: a3 - } - - body { - min-width: 992px !important - } - - .container { - min-width: 992px !important - } - - .navbar { - display: none - } - - .badge { - border: 1px solid #000 - } - - .table { - border-collapse: collapse !important - } - - .table td, - .table th { - background-color: #fff !important - } - - .table-bordered td, - .table-bordered th { - border: 1px solid #dee2e6 !important - } - - .table-dark { - color: inherit - } - - .table-dark tbody+tbody, - .table-dark td, - .table-dark th, - .table-dark thead th { - border-color: #dee2e6 - } - - .table .thead-dark th { - color: inherit; - border-color: #dee2e6 - } -} - -/* ---------- Helper ---------- */ -/*-- - - Custom Row -------------------------------------------*/ -.row-0 { - margin-left: 0px; - margin-right: 0px; -} - -.row-0>[class*="col"] { - padding-left: 0px; - padding-right: 0px; -} - -.row-1 { - margin-left: -1px; - margin-right: -1px; -} - -.row-1>[class*="col"] { - padding-left: 1px; - padding-right: 1px; -} - -.row-2 { - margin-left: -2px; - margin-right: -2px; -} - -.row-2>[class*="col"] { - padding-left: 2px; - padding-right: 2px; -} - -.row-3 { - margin-left: -3px; - margin-right: -3px; -} - -.row-3>[class*="col"] { - padding-left: 3px; - padding-right: 3px; -} - -.row-4 { - margin-left: -4px; - margin-right: -4px; -} - -.row-4>[class*="col"] { - padding-left: 4px; - padding-right: 4px; -} - -.row-5 { - margin-left: -5px; - margin-right: -5px; -} - -.row-5>[class*="col"] { - padding-left: 5px; - padding-right: 5px; -} - -.row-6 { - margin-left: -6px; - margin-right: -6px; -} - -.row-6>[class*="col"] { - padding-left: 6px; - padding-right: 6px; -} - -.row-7 { - margin-left: -7px; - margin-right: -7px; -} - -.row-7>[class*="col"] { - padding-left: 7px; - padding-right: 7px; -} - -.row-8 { - margin-left: -8px; - margin-right: -8px; -} - -.row-8>[class*="col"] { - padding-left: 8px; - padding-right: 8px; -} - -.row-9 { - margin-left: -9px; - margin-right: -9px; -} - -.row-9>[class*="col"] { - padding-left: 9px; - padding-right: 9px; -} - -.row-10 { - margin-left: -10px; - margin-right: -10px; -} - -.row-10>[class*="col"] { - padding-left: 10px; - padding-right: 10px; -} - -.row-11 { - margin-left: -11px; - margin-right: -11px; -} - -.row-11>[class*="col"] { - padding-left: 11px; - padding-right: 11px; -} - -.row-12 { - margin-left: -12px; - margin-right: -12px; -} - -.row-12>[class*="col"] { - padding-left: 12px; - padding-right: 12px; -} - -.row-13 { - margin-left: -13px; - margin-right: -13px; -} - -.row-13>[class*="col"] { - padding-left: 13px; - padding-right: 13px; -} - -.row-14 { - margin-left: -14px; - margin-right: -14px; -} - -.row-14>[class*="col"] { - padding-left: 14px; - padding-right: 14px; -} - -.row-15 { - margin-left: -15px; - margin-right: -15px; -} - -.row-15>[class*="col"] { - padding-left: 15px; - padding-right: 15px; -} - -.row-16 { - margin-left: -16px; - margin-right: -16px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-16 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-16 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-16 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-16 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-16>[class*="col"] { - padding-left: 16px; - padding-right: 16px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-16>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-16>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-16>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-16>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-17 { - margin-left: -17px; - margin-right: -17px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-17 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-17 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-17 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-17 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-17>[class*="col"] { - padding-left: 17px; - padding-right: 17px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-17>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-17>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-17>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-17>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-18 { - margin-left: -18px; - margin-right: -18px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-18 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-18 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-18 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-18 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-18>[class*="col"] { - padding-left: 18px; - padding-right: 18px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-18>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-18>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-18>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-18>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-19 { - margin-left: -19px; - margin-right: -19px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-19 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-19 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-19 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-19 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-19>[class*="col"] { - padding-left: 19px; - padding-right: 19px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-19>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-19>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-19>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-19>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-20 { - margin-left: -20px; - margin-right: -20px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-20 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-20 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-20 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-20 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-20>[class*="col"] { - padding-left: 20px; - padding-right: 20px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-20>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-20>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-20>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-20>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-21 { - margin-left: -21px; - margin-right: -21px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-21 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-21 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-21 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-21 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-21>[class*="col"] { - padding-left: 21px; - padding-right: 21px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-21>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-21>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-21>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-21>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-22 { - margin-left: -22px; - margin-right: -22px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-22 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-22 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-22 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-22 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-22>[class*="col"] { - padding-left: 22px; - padding-right: 22px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-22>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-22>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-22>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-22>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-23 { - margin-left: -23px; - margin-right: -23px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-23 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-23 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-23 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-23 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-23>[class*="col"] { - padding-left: 23px; - padding-right: 23px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-23>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-23>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-23>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-23>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-24 { - margin-left: -24px; - margin-right: -24px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-24 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-24 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-24 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-24 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-24>[class*="col"] { - padding-left: 24px; - padding-right: 24px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-24>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-24>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-24>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-24>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-25 { - margin-left: -25px; - margin-right: -25px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-25 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-25 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-25 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-25 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-25>[class*="col"] { - padding-left: 25px; - padding-right: 25px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-25>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-25>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-25>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-25>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-26 { - margin-left: -26px; - margin-right: -26px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-26 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-26 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-26 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-26 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-26>[class*="col"] { - padding-left: 26px; - padding-right: 26px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-26>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-26>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-26>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-26>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-27 { - margin-left: -27px; - margin-right: -27px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-27 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-27 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-27 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-27 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-27>[class*="col"] { - padding-left: 27px; - padding-right: 27px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-27>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-27>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-27>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-27>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-28 { - margin-left: -28px; - margin-right: -28px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-28 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-28 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-28 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-28 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-28>[class*="col"] { - padding-left: 28px; - padding-right: 28px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-28>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-28>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-28>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-28>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-29 { - margin-left: -29px; - margin-right: -29px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-29 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-29 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-29 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-29 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-29>[class*="col"] { - padding-left: 29px; - padding-right: 29px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-29>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-29>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-29>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-29>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-30 { - margin-left: -30px; - margin-right: -30px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-30 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-30 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-30 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-30 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-30>[class*="col"] { - padding-left: 30px; - padding-right: 30px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-30>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-30>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-30>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-30>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-31 { - margin-left: -31px; - margin-right: -31px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-31 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-31 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-31 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-31 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-31>[class*="col"] { - padding-left: 31px; - padding-right: 31px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-31>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-31>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-31>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-31>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-32 { - margin-left: -32px; - margin-right: -32px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-32 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-32 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-32 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-32 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-32>[class*="col"] { - padding-left: 32px; - padding-right: 32px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-32>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-32>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-32>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-32>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-33 { - margin-left: -33px; - margin-right: -33px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-33 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-33 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-33 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-33 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-33>[class*="col"] { - padding-left: 33px; - padding-right: 33px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-33>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-33>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-33>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-33>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-34 { - margin-left: -34px; - margin-right: -34px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-34 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-34 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-34 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-34 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-34>[class*="col"] { - padding-left: 34px; - padding-right: 34px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-34>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-34>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-34>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-34>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-35 { - margin-left: -35px; - margin-right: -35px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-35 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-35 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-35 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-35 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-35>[class*="col"] { - padding-left: 35px; - padding-right: 35px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-35>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-35>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-35>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-35>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-36 { - margin-left: -36px; - margin-right: -36px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-36 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-36 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-36 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-36 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-36>[class*="col"] { - padding-left: 36px; - padding-right: 36px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-36>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-36>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-36>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-36>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-37 { - margin-left: -37px; - margin-right: -37px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-37 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-37 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-37 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-37 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-37>[class*="col"] { - padding-left: 37px; - padding-right: 37px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-37>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-37>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-37>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-37>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-38 { - margin-left: -38px; - margin-right: -38px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-38 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-38 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-38 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-38 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-38>[class*="col"] { - padding-left: 38px; - padding-right: 38px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-38>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-38>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-38>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-38>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-39 { - margin-left: -39px; - margin-right: -39px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-39 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-39 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-39 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-39 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-39>[class*="col"] { - padding-left: 39px; - padding-right: 39px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-39>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-39>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-39>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-39>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-40 { - margin-left: -40px; - margin-right: -40px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-40 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-40 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-40 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-40 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-40>[class*="col"] { - padding-left: 40px; - padding-right: 40px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-40>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-40>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-40>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-40>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-41 { - margin-left: -41px; - margin-right: -41px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-41 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-41 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-41 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-41 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-41>[class*="col"] { - padding-left: 41px; - padding-right: 41px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-41>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-41>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-41>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-41>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-42 { - margin-left: -42px; - margin-right: -42px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-42 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-42 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-42 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-42 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-42>[class*="col"] { - padding-left: 42px; - padding-right: 42px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-42>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-42>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-42>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-42>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-43 { - margin-left: -43px; - margin-right: -43px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-43 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-43 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-43 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-43 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-43>[class*="col"] { - padding-left: 43px; - padding-right: 43px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-43>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-43>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-43>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-43>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-44 { - margin-left: -44px; - margin-right: -44px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-44 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-44 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-44 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-44 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-44>[class*="col"] { - padding-left: 44px; - padding-right: 44px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-44>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-44>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-44>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-44>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-45 { - margin-left: -45px; - margin-right: -45px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-45 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-45 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-45 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-45 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-45>[class*="col"] { - padding-left: 45px; - padding-right: 45px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-45>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-45>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-45>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-45>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-46 { - margin-left: -46px; - margin-right: -46px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-46 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-46 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-46 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-46 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-46>[class*="col"] { - padding-left: 46px; - padding-right: 46px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-46>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-46>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-46>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-46>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-47 { - margin-left: -47px; - margin-right: -47px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-47 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-47 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-47 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-47 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-47>[class*="col"] { - padding-left: 47px; - padding-right: 47px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-47>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-47>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-47>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-47>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-48 { - margin-left: -48px; - margin-right: -48px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-48 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-48 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-48 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-48 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-48>[class*="col"] { - padding-left: 48px; - padding-right: 48px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-48>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-48>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-48>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-48>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-49 { - margin-left: -49px; - margin-right: -49px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-49 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-49 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-49 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-49 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-49>[class*="col"] { - padding-left: 49px; - padding-right: 49px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-49>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-49>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-49>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-49>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-50 { - margin-left: -50px; - margin-right: -50px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-50 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-50 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-50 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-50 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-50>[class*="col"] { - padding-left: 50px; - padding-right: 50px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-50>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-50>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-50>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-50>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-51 { - margin-left: -51px; - margin-right: -51px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-51 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-51 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-51 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-51 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-51>[class*="col"] { - padding-left: 51px; - padding-right: 51px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-51>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-51>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-51>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-51>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-52 { - margin-left: -52px; - margin-right: -52px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-52 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-52 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-52 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-52 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-52>[class*="col"] { - padding-left: 52px; - padding-right: 52px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-52>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-52>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-52>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-52>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-53 { - margin-left: -53px; - margin-right: -53px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-53 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-53 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-53 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-53 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-53>[class*="col"] { - padding-left: 53px; - padding-right: 53px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-53>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-53>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-53>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-53>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-54 { - margin-left: -54px; - margin-right: -54px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-54 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-54 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-54 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-54 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-54>[class*="col"] { - padding-left: 54px; - padding-right: 54px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-54>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-54>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-54>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-54>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-55 { - margin-left: -55px; - margin-right: -55px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-55 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-55 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-55 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-55 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-55>[class*="col"] { - padding-left: 55px; - padding-right: 55px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-55>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-55>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-55>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-55>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-56 { - margin-left: -56px; - margin-right: -56px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-56 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-56 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-56 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-56 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-56>[class*="col"] { - padding-left: 56px; - padding-right: 56px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-56>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-56>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-56>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-56>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-57 { - margin-left: -57px; - margin-right: -57px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-57 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-57 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-57 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-57 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-57>[class*="col"] { - padding-left: 57px; - padding-right: 57px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-57>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-57>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-57>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-57>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-58 { - margin-left: -58px; - margin-right: -58px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-58 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-58 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-58 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-58 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-58>[class*="col"] { - padding-left: 58px; - padding-right: 58px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-58>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-58>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-58>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-58>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-59 { - margin-left: -59px; - margin-right: -59px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-59 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-59 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-59 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-59 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-59>[class*="col"] { - padding-left: 59px; - padding-right: 59px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-59>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-59>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-59>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-59>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-60 { - margin-left: -60px; - margin-right: -60px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-60 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-60 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-60 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-60 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-60>[class*="col"] { - padding-left: 60px; - padding-right: 60px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-60>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-60>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-60>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-60>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-61 { - margin-left: -61px; - margin-right: -61px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-61 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-61 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-61 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-61 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-61>[class*="col"] { - padding-left: 61px; - padding-right: 61px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-61>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-61>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-61>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-61>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-62 { - margin-left: -62px; - margin-right: -62px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-62 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-62 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-62 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-62 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-62>[class*="col"] { - padding-left: 62px; - padding-right: 62px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-62>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-62>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-62>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-62>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-63 { - margin-left: -63px; - margin-right: -63px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-63 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-63 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-63 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-63 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-63>[class*="col"] { - padding-left: 63px; - padding-right: 63px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-63>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-63>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-63>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-63>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-64 { - margin-left: -64px; - margin-right: -64px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-64 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-64 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-64 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-64 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-64>[class*="col"] { - padding-left: 64px; - padding-right: 64px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-64>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-64>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-64>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-64>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-65 { - margin-left: -65px; - margin-right: -65px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-65 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-65 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-65 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-65 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-65>[class*="col"] { - padding-left: 65px; - padding-right: 65px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-65>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-65>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-65>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-65>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-66 { - margin-left: -66px; - margin-right: -66px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-66 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-66 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-66 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-66 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-66>[class*="col"] { - padding-left: 66px; - padding-right: 66px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-66>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-66>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-66>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-66>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-67 { - margin-left: -67px; - margin-right: -67px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-67 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-67 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-67 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-67 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-67>[class*="col"] { - padding-left: 67px; - padding-right: 67px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-67>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-67>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-67>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-67>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-68 { - margin-left: -68px; - margin-right: -68px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-68 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-68 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-68 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-68 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-68>[class*="col"] { - padding-left: 68px; - padding-right: 68px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-68>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-68>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-68>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-68>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-69 { - margin-left: -69px; - margin-right: -69px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-69 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-69 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-69 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-69 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-69>[class*="col"] { - padding-left: 69px; - padding-right: 69px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-69>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-69>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-69>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-69>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-70 { - margin-left: -70px; - margin-right: -70px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-70 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-70 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-70 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-70 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-70>[class*="col"] { - padding-left: 70px; - padding-right: 70px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-70>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-70>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-70>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-70>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-71 { - margin-left: -71px; - margin-right: -71px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-71 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-71 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-71 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-71 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-71>[class*="col"] { - padding-left: 71px; - padding-right: 71px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-71>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-71>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-71>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-71>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-72 { - margin-left: -72px; - margin-right: -72px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-72 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-72 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-72 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-72 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-72>[class*="col"] { - padding-left: 72px; - padding-right: 72px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-72>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-72>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-72>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-72>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-73 { - margin-left: -73px; - margin-right: -73px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-73 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-73 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-73 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-73 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-73>[class*="col"] { - padding-left: 73px; - padding-right: 73px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-73>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-73>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-73>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-73>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-74 { - margin-left: -74px; - margin-right: -74px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-74 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-74 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-74 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-74 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-74>[class*="col"] { - padding-left: 74px; - padding-right: 74px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-74>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-74>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-74>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-74>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-75 { - margin-left: -75px; - margin-right: -75px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-75 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-75 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-75 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-75 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-75>[class*="col"] { - padding-left: 75px; - padding-right: 75px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-75>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-75>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-75>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-75>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-76 { - margin-left: -76px; - margin-right: -76px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-76 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-76 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-76 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-76 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-76>[class*="col"] { - padding-left: 76px; - padding-right: 76px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-76>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-76>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-76>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-76>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-77 { - margin-left: -77px; - margin-right: -77px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-77 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-77 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-77 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-77 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-77>[class*="col"] { - padding-left: 77px; - padding-right: 77px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-77>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-77>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-77>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-77>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-78 { - margin-left: -78px; - margin-right: -78px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-78 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-78 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-78 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-78 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-78>[class*="col"] { - padding-left: 78px; - padding-right: 78px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-78>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-78>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-78>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-78>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-79 { - margin-left: -79px; - margin-right: -79px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-79 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-79 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-79 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-79 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-79>[class*="col"] { - padding-left: 79px; - padding-right: 79px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-79>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-79>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-79>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-79>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -.row-80 { - margin-left: -80px; - margin-right: -80px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-80 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-80 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-80 { - margin-left: -15px; - margin-right: -15px; - } -} - -@media only screen and (max-width: 767px) { - .row-80 { - margin-left: -15px; - margin-right: -15px; - } -} - -.row-80>[class*="col"] { - padding-left: 80px; - padding-right: 80px; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .row-80>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .row-80>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .row-80>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -@media only screen and (max-width: 767px) { - .row-80>[class*="col"] { - padding-left: 15px; - padding-right: 15px; - } -} - -/*-- - - Margin & Padding - -----------------------------------------*/ -/*-- Margin Top --*/ -.mt-0 { - margin-top: 0px !important; -} - -.mt-5 { - margin-top: 5px !important; -} - -.mt-10 { - margin-top: 10px !important; -} - -.mt-15 { - margin-top: 15px !important; -} - -.mt-20 { - margin-top: 20px !important; -} - -.mt-25 { - margin-top: 25px !important; -} - -.mt-30 { - margin-top: 30px !important; -} - -.mt-35 { - margin-top: 35px !important; -} - -.mt-40 { - margin-top: 40px !important; -} - -.mt-45 { - margin-top: 45px !important; -} - -.mt-50 { - margin-top: 50px !important; -} - -.mt-55 { - margin-top: 55px !important; -} - -.mt-60 { - margin-top: 60px !important; -} - -.mt-65 { - margin-top: 65px !important; -} - -.mt-70 { - margin-top: 70px !important; -} - -.mt-75 { - margin-top: 75px !important; -} - -.mt-80 { - margin-top: 80px !important; -} - -.mt-85 { - margin-top: 85px !important; -} - -.mt-90 { - margin-top: 90px !important; -} - -.mt-95 { - margin-top: 95px !important; -} - -.mt-100 { - margin-top: 100px !important; -} - -.mt-105 { - margin-top: 105px !important; -} - -.mt-110 { - margin-top: 110px !important; -} - -.mt-115 { - margin-top: 115px !important; -} - -.mt-120 { - margin-top: 120px !important; -} - -.mt-125 { - margin-top: 125px !important; -} - -.mt-130 { - margin-top: 130px !important; -} - -.mt-135 { - margin-top: 135px !important; -} - -.mt-140 { - margin-top: 140px !important; -} - -.mt-145 { - margin-top: 145px !important; -} - -.mt-150 { - margin-top: 150px !important; -} - -.mt-155 { - margin-top: 155px !important; -} - -.mt-160 { - margin-top: 160px !important; -} - -.mt-165 { - margin-top: 165px !important; -} - -.mt-170 { - margin-top: 170px !important; -} - -.mt-175 { - margin-top: 175px !important; -} - -.mt-180 { - margin-top: 180px !important; -} - -.mt-185 { - margin-top: 185px !important; -} - -.mt-190 { - margin-top: 190px !important; -} - -.mt-195 { - margin-top: 195px !important; -} - -.mt-200 { - margin-top: 200px !important; -} - -.mt-205 { - margin-top: 205px !important; -} - -.mt-210 { - margin-top: 210px !important; -} - -.mt-215 { - margin-top: 215px !important; -} - -.mt-220 { - margin-top: 220px !important; -} - -.mt-225 { - margin-top: 225px !important; -} - -.mt-230 { - margin-top: 230px !important; -} - -.mt-235 { - margin-top: 235px !important; -} - -.mt-240 { - margin-top: 240px !important; -} - -.mt-245 { - margin-top: 245px !important; -} - -.mt-250 { - margin-top: 250px !important; -} - -.mt-255 { - margin-top: 255px !important; -} - -.mt-260 { - margin-top: 260px !important; -} - -.mt-265 { - margin-top: 265px !important; -} - -.mt-270 { - margin-top: 270px !important; -} - -.mt-275 { - margin-top: 275px !important; -} - -.mt-280 { - margin-top: 280px !important; -} - -.mt-285 { - margin-top: 285px !important; -} - -.mt-290 { - margin-top: 290px !important; -} - -.mt-295 { - margin-top: 295px !important; -} - -.mt-300 { - margin-top: 300px !important; -} - -.mt-305 { - margin-top: 305px !important; -} - -.mt-310 { - margin-top: 310px !important; -} - -.mt-315 { - margin-top: 315px !important; -} - -.mt-320 { - margin-top: 320px !important; -} - -.mt-325 { - margin-top: 325px !important; -} - -.mt-330 { - margin-top: 330px !important; -} - -.mt-335 { - margin-top: 335px !important; -} - -.mt-340 { - margin-top: 340px !important; -} - -.mt-345 { - margin-top: 345px !important; -} - -.mt-350 { - margin-top: 350px !important; -} - -.mt-355 { - margin-top: 355px !important; -} - -.mt-360 { - margin-top: 360px !important; -} - -.mt-365 { - margin-top: 365px !important; -} - -.mt-370 { - margin-top: 370px !important; -} - -.mt-375 { - margin-top: 375px !important; -} - -.mt-380 { - margin-top: 380px !important; -} - -.mt-385 { - margin-top: 385px !important; -} - -.mt-390 { - margin-top: 390px !important; -} - -.mt-395 { - margin-top: 395px !important; -} - -.mt-400 { - margin-top: 400px !important; -} - -.mt-405 { - margin-top: 405px !important; -} - -.mt-410 { - margin-top: 410px !important; -} - -.mt-415 { - margin-top: 415px !important; -} - -.mt-420 { - margin-top: 420px !important; -} - -.mt-425 { - margin-top: 425px !important; -} - -.mt-430 { - margin-top: 430px !important; -} - -.mt-435 { - margin-top: 435px !important; -} - -.mt-440 { - margin-top: 440px !important; -} - -.mt-445 { - margin-top: 445px !important; -} - -.mt-450 { - margin-top: 450px !important; -} - -.mt-455 { - margin-top: 455px !important; -} - -.mt-460 { - margin-top: 460px !important; -} - -.mt-465 { - margin-top: 465px !important; -} - -.mt-470 { - margin-top: 470px !important; -} - -.mt-475 { - margin-top: 475px !important; -} - -.mt-480 { - margin-top: 480px !important; -} - -.mt-485 { - margin-top: 485px !important; -} - -.mt-490 { - margin-top: 490px !important; -} - -.mt-495 { - margin-top: 495px !important; -} - -.mt-500 { - margin-top: 500px !important; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-0 { - margin-top: 0px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-5 { - margin-top: 5px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-10 { - margin-top: 10px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-15 { - margin-top: 15px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-20 { - margin-top: 20px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-25 { - margin-top: 25px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-30 { - margin-top: 30px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-35 { - margin-top: 35px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-40 { - margin-top: 40px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-45 { - margin-top: 45px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-50 { - margin-top: 50px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-55 { - margin-top: 55px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-60 { - margin-top: 60px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-65 { - margin-top: 65px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-70 { - margin-top: 70px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-75 { - margin-top: 75px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-80 { - margin-top: 80px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-85 { - margin-top: 85px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-90 { - margin-top: 90px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-95 { - margin-top: 95px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-100 { - margin-top: 100px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-105 { - margin-top: 105px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-110 { - margin-top: 110px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-115 { - margin-top: 115px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-120 { - margin-top: 120px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-125 { - margin-top: 125px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-130 { - margin-top: 130px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-135 { - margin-top: 135px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-140 { - margin-top: 140px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-145 { - margin-top: 145px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-150 { - margin-top: 150px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-155 { - margin-top: 155px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-160 { - margin-top: 160px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-165 { - margin-top: 165px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-170 { - margin-top: 170px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-175 { - margin-top: 175px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-180 { - margin-top: 180px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-185 { - margin-top: 185px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-190 { - margin-top: 190px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-195 { - margin-top: 195px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-200 { - margin-top: 200px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-205 { - margin-top: 205px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-210 { - margin-top: 210px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-215 { - margin-top: 215px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-220 { - margin-top: 220px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-225 { - margin-top: 225px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-230 { - margin-top: 230px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-235 { - margin-top: 235px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-240 { - margin-top: 240px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-245 { - margin-top: 245px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-250 { - margin-top: 250px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-255 { - margin-top: 255px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-260 { - margin-top: 260px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-265 { - margin-top: 265px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-270 { - margin-top: 270px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-275 { - margin-top: 275px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-280 { - margin-top: 280px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-285 { - margin-top: 285px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-290 { - margin-top: 290px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-295 { - margin-top: 295px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-300 { - margin-top: 300px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-305 { - margin-top: 305px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-310 { - margin-top: 310px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-315 { - margin-top: 315px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-320 { - margin-top: 320px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-325 { - margin-top: 325px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-330 { - margin-top: 330px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-335 { - margin-top: 335px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-340 { - margin-top: 340px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-345 { - margin-top: 345px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-350 { - margin-top: 350px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-355 { - margin-top: 355px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-360 { - margin-top: 360px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-365 { - margin-top: 365px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-370 { - margin-top: 370px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-375 { - margin-top: 375px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-380 { - margin-top: 380px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-385 { - margin-top: 385px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-390 { - margin-top: 390px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-395 { - margin-top: 395px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-400 { - margin-top: 400px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-405 { - margin-top: 405px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-410 { - margin-top: 410px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-415 { - margin-top: 415px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-420 { - margin-top: 420px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-425 { - margin-top: 425px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-430 { - margin-top: 430px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-435 { - margin-top: 435px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-440 { - margin-top: 440px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-445 { - margin-top: 445px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-450 { - margin-top: 450px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-455 { - margin-top: 455px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-460 { - margin-top: 460px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-465 { - margin-top: 465px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-470 { - margin-top: 470px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-475 { - margin-top: 475px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-480 { - margin-top: 480px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-485 { - margin-top: 485px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-490 { - margin-top: 490px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-495 { - margin-top: 495px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mt-xl-500 { - margin-top: 500px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-0 { - margin-top: 0px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-5 { - margin-top: 5px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-10 { - margin-top: 10px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-15 { - margin-top: 15px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-20 { - margin-top: 20px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-25 { - margin-top: 25px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-30 { - margin-top: 30px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-35 { - margin-top: 35px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-40 { - margin-top: 40px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-45 { - margin-top: 45px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-50 { - margin-top: 50px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-55 { - margin-top: 55px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-60 { - margin-top: 60px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-65 { - margin-top: 65px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-70 { - margin-top: 70px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-75 { - margin-top: 75px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-80 { - margin-top: 80px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-85 { - margin-top: 85px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-90 { - margin-top: 90px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-95 { - margin-top: 95px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-100 { - margin-top: 100px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-105 { - margin-top: 105px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-110 { - margin-top: 110px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-115 { - margin-top: 115px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-120 { - margin-top: 120px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-125 { - margin-top: 125px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-130 { - margin-top: 130px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-135 { - margin-top: 135px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-140 { - margin-top: 140px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-145 { - margin-top: 145px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-150 { - margin-top: 150px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-155 { - margin-top: 155px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-160 { - margin-top: 160px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-165 { - margin-top: 165px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-170 { - margin-top: 170px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-175 { - margin-top: 175px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-180 { - margin-top: 180px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-185 { - margin-top: 185px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-190 { - margin-top: 190px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-195 { - margin-top: 195px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-200 { - margin-top: 200px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-205 { - margin-top: 205px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-210 { - margin-top: 210px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-215 { - margin-top: 215px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-220 { - margin-top: 220px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-225 { - margin-top: 225px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-230 { - margin-top: 230px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-235 { - margin-top: 235px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-240 { - margin-top: 240px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-245 { - margin-top: 245px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-250 { - margin-top: 250px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-255 { - margin-top: 255px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-260 { - margin-top: 260px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-265 { - margin-top: 265px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-270 { - margin-top: 270px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-275 { - margin-top: 275px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-280 { - margin-top: 280px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-285 { - margin-top: 285px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-290 { - margin-top: 290px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-295 { - margin-top: 295px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-300 { - margin-top: 300px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-305 { - margin-top: 305px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-310 { - margin-top: 310px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-315 { - margin-top: 315px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-320 { - margin-top: 320px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-325 { - margin-top: 325px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-330 { - margin-top: 330px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-335 { - margin-top: 335px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-340 { - margin-top: 340px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-345 { - margin-top: 345px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-350 { - margin-top: 350px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-355 { - margin-top: 355px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-360 { - margin-top: 360px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-365 { - margin-top: 365px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-370 { - margin-top: 370px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-375 { - margin-top: 375px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-380 { - margin-top: 380px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-385 { - margin-top: 385px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-390 { - margin-top: 390px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-395 { - margin-top: 395px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-400 { - margin-top: 400px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-405 { - margin-top: 405px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-410 { - margin-top: 410px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-415 { - margin-top: 415px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-420 { - margin-top: 420px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-425 { - margin-top: 425px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-430 { - margin-top: 430px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-435 { - margin-top: 435px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-440 { - margin-top: 440px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-445 { - margin-top: 445px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-450 { - margin-top: 450px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-455 { - margin-top: 455px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-460 { - margin-top: 460px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-465 { - margin-top: 465px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-470 { - margin-top: 470px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-475 { - margin-top: 475px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-480 { - margin-top: 480px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-485 { - margin-top: 485px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-490 { - margin-top: 490px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-495 { - margin-top: 495px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mt-lg-500 { - margin-top: 500px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-0 { - margin-top: 0px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-5 { - margin-top: 5px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-10 { - margin-top: 10px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-15 { - margin-top: 15px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-20 { - margin-top: 20px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-25 { - margin-top: 25px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-30 { - margin-top: 30px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-35 { - margin-top: 35px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-40 { - margin-top: 40px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-45 { - margin-top: 45px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-50 { - margin-top: 50px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-55 { - margin-top: 55px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-60 { - margin-top: 60px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-65 { - margin-top: 65px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-70 { - margin-top: 70px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-75 { - margin-top: 75px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-80 { - margin-top: 80px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-85 { - margin-top: 85px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-90 { - margin-top: 90px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-95 { - margin-top: 95px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-100 { - margin-top: 100px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-105 { - margin-top: 105px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-110 { - margin-top: 110px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-115 { - margin-top: 115px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-120 { - margin-top: 120px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-125 { - margin-top: 125px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-130 { - margin-top: 130px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-135 { - margin-top: 135px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-140 { - margin-top: 140px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-145 { - margin-top: 145px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-150 { - margin-top: 150px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-155 { - margin-top: 155px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-160 { - margin-top: 160px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-165 { - margin-top: 165px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-170 { - margin-top: 170px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-175 { - margin-top: 175px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-180 { - margin-top: 180px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-185 { - margin-top: 185px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-190 { - margin-top: 190px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-195 { - margin-top: 195px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-200 { - margin-top: 200px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-205 { - margin-top: 205px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-210 { - margin-top: 210px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-215 { - margin-top: 215px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-220 { - margin-top: 220px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-225 { - margin-top: 225px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-230 { - margin-top: 230px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-235 { - margin-top: 235px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-240 { - margin-top: 240px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-245 { - margin-top: 245px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-250 { - margin-top: 250px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-255 { - margin-top: 255px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-260 { - margin-top: 260px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-265 { - margin-top: 265px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-270 { - margin-top: 270px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-275 { - margin-top: 275px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-280 { - margin-top: 280px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-285 { - margin-top: 285px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-290 { - margin-top: 290px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-295 { - margin-top: 295px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-300 { - margin-top: 300px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-305 { - margin-top: 305px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-310 { - margin-top: 310px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-315 { - margin-top: 315px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-320 { - margin-top: 320px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-325 { - margin-top: 325px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-330 { - margin-top: 330px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-335 { - margin-top: 335px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-340 { - margin-top: 340px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-345 { - margin-top: 345px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-350 { - margin-top: 350px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-355 { - margin-top: 355px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-360 { - margin-top: 360px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-365 { - margin-top: 365px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-370 { - margin-top: 370px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-375 { - margin-top: 375px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-380 { - margin-top: 380px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-385 { - margin-top: 385px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-390 { - margin-top: 390px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-395 { - margin-top: 395px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-400 { - margin-top: 400px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-405 { - margin-top: 405px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-410 { - margin-top: 410px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-415 { - margin-top: 415px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-420 { - margin-top: 420px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-425 { - margin-top: 425px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-430 { - margin-top: 430px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-435 { - margin-top: 435px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-440 { - margin-top: 440px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-445 { - margin-top: 445px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-450 { - margin-top: 450px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-455 { - margin-top: 455px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-460 { - margin-top: 460px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-465 { - margin-top: 465px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-470 { - margin-top: 470px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-475 { - margin-top: 475px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-480 { - margin-top: 480px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-485 { - margin-top: 485px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-490 { - margin-top: 490px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-495 { - margin-top: 495px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mt-md-500 { - margin-top: 500px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-0 { - margin-top: 0px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-5 { - margin-top: 5px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-10 { - margin-top: 10px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-15 { - margin-top: 15px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-20 { - margin-top: 20px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-25 { - margin-top: 25px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-30 { - margin-top: 30px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-35 { - margin-top: 35px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-40 { - margin-top: 40px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-45 { - margin-top: 45px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-50 { - margin-top: 50px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-55 { - margin-top: 55px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-60 { - margin-top: 60px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-65 { - margin-top: 65px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-70 { - margin-top: 70px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-75 { - margin-top: 75px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-80 { - margin-top: 80px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-85 { - margin-top: 85px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-90 { - margin-top: 90px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-95 { - margin-top: 95px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-100 { - margin-top: 100px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-105 { - margin-top: 105px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-110 { - margin-top: 110px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-115 { - margin-top: 115px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-120 { - margin-top: 120px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-125 { - margin-top: 125px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-130 { - margin-top: 130px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-135 { - margin-top: 135px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-140 { - margin-top: 140px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-145 { - margin-top: 145px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-150 { - margin-top: 150px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-155 { - margin-top: 155px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-160 { - margin-top: 160px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-165 { - margin-top: 165px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-170 { - margin-top: 170px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-175 { - margin-top: 175px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-180 { - margin-top: 180px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-185 { - margin-top: 185px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-190 { - margin-top: 190px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-195 { - margin-top: 195px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-200 { - margin-top: 200px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-205 { - margin-top: 205px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-210 { - margin-top: 210px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-215 { - margin-top: 215px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-220 { - margin-top: 220px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-225 { - margin-top: 225px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-230 { - margin-top: 230px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-235 { - margin-top: 235px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-240 { - margin-top: 240px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-245 { - margin-top: 245px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-250 { - margin-top: 250px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-255 { - margin-top: 255px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-260 { - margin-top: 260px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-265 { - margin-top: 265px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-270 { - margin-top: 270px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-275 { - margin-top: 275px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-280 { - margin-top: 280px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-285 { - margin-top: 285px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-290 { - margin-top: 290px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-295 { - margin-top: 295px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-300 { - margin-top: 300px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-305 { - margin-top: 305px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-310 { - margin-top: 310px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-315 { - margin-top: 315px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-320 { - margin-top: 320px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-325 { - margin-top: 325px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-330 { - margin-top: 330px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-335 { - margin-top: 335px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-340 { - margin-top: 340px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-345 { - margin-top: 345px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-350 { - margin-top: 350px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-355 { - margin-top: 355px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-360 { - margin-top: 360px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-365 { - margin-top: 365px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-370 { - margin-top: 370px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-375 { - margin-top: 375px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-380 { - margin-top: 380px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-385 { - margin-top: 385px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-390 { - margin-top: 390px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-395 { - margin-top: 395px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-400 { - margin-top: 400px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-405 { - margin-top: 405px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-410 { - margin-top: 410px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-415 { - margin-top: 415px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-420 { - margin-top: 420px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-425 { - margin-top: 425px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-430 { - margin-top: 430px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-435 { - margin-top: 435px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-440 { - margin-top: 440px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-445 { - margin-top: 445px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-450 { - margin-top: 450px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-455 { - margin-top: 455px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-460 { - margin-top: 460px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-465 { - margin-top: 465px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-470 { - margin-top: 470px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-475 { - margin-top: 475px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-480 { - margin-top: 480px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-485 { - margin-top: 485px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-490 { - margin-top: 490px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-495 { - margin-top: 495px !important; - } -} - -@media only screen and (max-width: 767px) { - .mt-sm-500 { - margin-top: 500px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-0 { - margin-top: 0px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-5 { - margin-top: 5px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-10 { - margin-top: 10px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-15 { - margin-top: 15px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-20 { - margin-top: 20px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-25 { - margin-top: 25px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-30 { - margin-top: 30px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-35 { - margin-top: 35px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-40 { - margin-top: 40px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-45 { - margin-top: 45px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-50 { - margin-top: 50px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-55 { - margin-top: 55px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-60 { - margin-top: 60px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-65 { - margin-top: 65px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-70 { - margin-top: 70px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-75 { - margin-top: 75px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-80 { - margin-top: 80px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-85 { - margin-top: 85px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-90 { - margin-top: 90px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-95 { - margin-top: 95px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-100 { - margin-top: 100px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-105 { - margin-top: 105px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-110 { - margin-top: 110px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-115 { - margin-top: 115px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-120 { - margin-top: 120px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-125 { - margin-top: 125px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-130 { - margin-top: 130px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-135 { - margin-top: 135px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-140 { - margin-top: 140px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-145 { - margin-top: 145px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-150 { - margin-top: 150px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-155 { - margin-top: 155px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-160 { - margin-top: 160px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-165 { - margin-top: 165px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-170 { - margin-top: 170px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-175 { - margin-top: 175px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-180 { - margin-top: 180px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-185 { - margin-top: 185px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-190 { - margin-top: 190px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-195 { - margin-top: 195px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-200 { - margin-top: 200px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-205 { - margin-top: 205px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-210 { - margin-top: 210px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-215 { - margin-top: 215px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-220 { - margin-top: 220px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-225 { - margin-top: 225px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-230 { - margin-top: 230px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-235 { - margin-top: 235px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-240 { - margin-top: 240px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-245 { - margin-top: 245px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-250 { - margin-top: 250px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-255 { - margin-top: 255px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-260 { - margin-top: 260px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-265 { - margin-top: 265px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-270 { - margin-top: 270px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-275 { - margin-top: 275px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-280 { - margin-top: 280px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-285 { - margin-top: 285px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-290 { - margin-top: 290px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-295 { - margin-top: 295px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-300 { - margin-top: 300px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-305 { - margin-top: 305px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-310 { - margin-top: 310px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-315 { - margin-top: 315px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-320 { - margin-top: 320px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-325 { - margin-top: 325px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-330 { - margin-top: 330px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-335 { - margin-top: 335px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-340 { - margin-top: 340px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-345 { - margin-top: 345px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-350 { - margin-top: 350px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-355 { - margin-top: 355px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-360 { - margin-top: 360px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-365 { - margin-top: 365px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-370 { - margin-top: 370px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-375 { - margin-top: 375px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-380 { - margin-top: 380px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-385 { - margin-top: 385px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-390 { - margin-top: 390px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-395 { - margin-top: 395px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-400 { - margin-top: 400px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-405 { - margin-top: 405px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-410 { - margin-top: 410px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-415 { - margin-top: 415px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-420 { - margin-top: 420px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-425 { - margin-top: 425px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-430 { - margin-top: 430px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-435 { - margin-top: 435px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-440 { - margin-top: 440px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-445 { - margin-top: 445px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-450 { - margin-top: 450px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-455 { - margin-top: 455px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-460 { - margin-top: 460px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-465 { - margin-top: 465px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-470 { - margin-top: 470px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-475 { - margin-top: 475px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-480 { - margin-top: 480px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-485 { - margin-top: 485px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-490 { - margin-top: 490px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-495 { - margin-top: 495px !important; - } -} - -@media only screen and (max-width: 575px) { - .mt-xs-500 { - margin-top: 500px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-0 { - margin-top: 0px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-5 { - margin-top: 5px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-10 { - margin-top: 10px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-15 { - margin-top: 15px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-20 { - margin-top: 20px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-25 { - margin-top: 25px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-30 { - margin-top: 30px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-35 { - margin-top: 35px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-40 { - margin-top: 40px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-45 { - margin-top: 45px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-50 { - margin-top: 50px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-55 { - margin-top: 55px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-60 { - margin-top: 60px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-65 { - margin-top: 65px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-70 { - margin-top: 70px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-75 { - margin-top: 75px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-80 { - margin-top: 80px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-85 { - margin-top: 85px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-90 { - margin-top: 90px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-95 { - margin-top: 95px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-100 { - margin-top: 100px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-105 { - margin-top: 105px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-110 { - margin-top: 110px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-115 { - margin-top: 115px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-120 { - margin-top: 120px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-125 { - margin-top: 125px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-130 { - margin-top: 130px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-135 { - margin-top: 135px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-140 { - margin-top: 140px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-145 { - margin-top: 145px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-150 { - margin-top: 150px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-155 { - margin-top: 155px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-160 { - margin-top: 160px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-165 { - margin-top: 165px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-170 { - margin-top: 170px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-175 { - margin-top: 175px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-180 { - margin-top: 180px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-185 { - margin-top: 185px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-190 { - margin-top: 190px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-195 { - margin-top: 195px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-200 { - margin-top: 200px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-205 { - margin-top: 205px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-210 { - margin-top: 210px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-215 { - margin-top: 215px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-220 { - margin-top: 220px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-225 { - margin-top: 225px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-230 { - margin-top: 230px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-235 { - margin-top: 235px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-240 { - margin-top: 240px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-245 { - margin-top: 245px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-250 { - margin-top: 250px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-255 { - margin-top: 255px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-260 { - margin-top: 260px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-265 { - margin-top: 265px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-270 { - margin-top: 270px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-275 { - margin-top: 275px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-280 { - margin-top: 280px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-285 { - margin-top: 285px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-290 { - margin-top: 290px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-295 { - margin-top: 295px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-300 { - margin-top: 300px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-305 { - margin-top: 305px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-310 { - margin-top: 310px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-315 { - margin-top: 315px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-320 { - margin-top: 320px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-325 { - margin-top: 325px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-330 { - margin-top: 330px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-335 { - margin-top: 335px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-340 { - margin-top: 340px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-345 { - margin-top: 345px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-350 { - margin-top: 350px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-355 { - margin-top: 355px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-360 { - margin-top: 360px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-365 { - margin-top: 365px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-370 { - margin-top: 370px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-375 { - margin-top: 375px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-380 { - margin-top: 380px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-385 { - margin-top: 385px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-390 { - margin-top: 390px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-395 { - margin-top: 395px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-400 { - margin-top: 400px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-405 { - margin-top: 405px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-410 { - margin-top: 410px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-415 { - margin-top: 415px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-420 { - margin-top: 420px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-425 { - margin-top: 425px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-430 { - margin-top: 430px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-435 { - margin-top: 435px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-440 { - margin-top: 440px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-445 { - margin-top: 445px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-450 { - margin-top: 450px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-455 { - margin-top: 455px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-460 { - margin-top: 460px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-465 { - margin-top: 465px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-470 { - margin-top: 470px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-475 { - margin-top: 475px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-480 { - margin-top: 480px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-485 { - margin-top: 485px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-490 { - margin-top: 490px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-495 { - margin-top: 495px !important; - } -} - -@media only screen and (max-width: 479px) { - .mt-xxs-500 { - margin-top: 500px !important; - } -} - -/*-- Margin Bottom --*/ -.mb-0 { - margin-bottom: 0px !important; -} - -.mb-5 { - margin-bottom: 5px !important; -} - -.mb-10 { - margin-bottom: 10px !important; -} - -.mb-15 { - margin-bottom: 15px !important; -} - -.mb-20 { - margin-bottom: 20px !important; -} - -.mb-25 { - margin-bottom: 25px !important; -} - -.mb-30 { - margin-bottom: 30px !important; -} - -.mb-35 { - margin-bottom: 35px !important; -} - -.mb-40 { - margin-bottom: 40px !important; -} - -.mb-45 { - margin-bottom: 45px !important; -} - -.mb-50 { - margin-bottom: 50px !important; -} - -.mb-55 { - margin-bottom: 55px !important; -} - -.mb-60 { - margin-bottom: 60px !important; -} - -.mb-65 { - margin-bottom: 65px !important; -} - -.mb-70 { - margin-bottom: 70px !important; -} - -.mb-75 { - margin-bottom: 75px !important; -} - -.mb-80 { - margin-bottom: 80px !important; -} - -.mb-85 { - margin-bottom: 85px !important; -} - -.mb-90 { - margin-bottom: 90px !important; -} - -.mb-95 { - margin-bottom: 95px !important; -} - -.mb-100 { - margin-bottom: 100px !important; -} - -.mb-105 { - margin-bottom: 105px !important; -} - -.mb-110 { - margin-bottom: 110px !important; -} - -.mb-115 { - margin-bottom: 115px !important; -} - -.mb-120 { - margin-bottom: 120px !important; -} - -.mb-125 { - margin-bottom: 125px !important; -} - -.mb-130 { - margin-bottom: 130px !important; -} - -.mb-135 { - margin-bottom: 135px !important; -} - -.mb-140 { - margin-bottom: 140px !important; -} - -.mb-145 { - margin-bottom: 145px !important; -} - -.mb-150 { - margin-bottom: 150px !important; -} - -.mb-155 { - margin-bottom: 155px !important; -} - -.mb-160 { - margin-bottom: 160px !important; -} - -.mb-165 { - margin-bottom: 165px !important; -} - -.mb-170 { - margin-bottom: 170px !important; -} - -.mb-175 { - margin-bottom: 175px !important; -} - -.mb-180 { - margin-bottom: 180px !important; -} - -.mb-185 { - margin-bottom: 185px !important; -} - -.mb-190 { - margin-bottom: 190px !important; -} - -.mb-195 { - margin-bottom: 195px !important; -} - -.mb-200 { - margin-bottom: 200px !important; -} - -.mb-205 { - margin-bottom: 205px !important; -} - -.mb-210 { - margin-bottom: 210px !important; -} - -.mb-215 { - margin-bottom: 215px !important; -} - -.mb-220 { - margin-bottom: 220px !important; -} - -.mb-225 { - margin-bottom: 225px !important; -} - -.mb-230 { - margin-bottom: 230px !important; -} - -.mb-235 { - margin-bottom: 235px !important; -} - -.mb-240 { - margin-bottom: 240px !important; -} - -.mb-245 { - margin-bottom: 245px !important; -} - -.mb-250 { - margin-bottom: 250px !important; -} - -.mb-255 { - margin-bottom: 255px !important; -} - -.mb-260 { - margin-bottom: 260px !important; -} - -.mb-265 { - margin-bottom: 265px !important; -} - -.mb-270 { - margin-bottom: 270px !important; -} - -.mb-275 { - margin-bottom: 275px !important; -} - -.mb-280 { - margin-bottom: 280px !important; -} - -.mb-285 { - margin-bottom: 285px !important; -} - -.mb-290 { - margin-bottom: 290px !important; -} - -.mb-295 { - margin-bottom: 295px !important; -} - -.mb-300 { - margin-bottom: 300px !important; -} - -.mb-305 { - margin-bottom: 305px !important; -} - -.mb-310 { - margin-bottom: 310px !important; -} - -.mb-315 { - margin-bottom: 315px !important; -} - -.mb-320 { - margin-bottom: 320px !important; -} - -.mb-325 { - margin-bottom: 325px !important; -} - -.mb-330 { - margin-bottom: 330px !important; -} - -.mb-335 { - margin-bottom: 335px !important; -} - -.mb-340 { - margin-bottom: 340px !important; -} - -.mb-345 { - margin-bottom: 345px !important; -} - -.mb-350 { - margin-bottom: 350px !important; -} - -.mb-355 { - margin-bottom: 355px !important; -} - -.mb-360 { - margin-bottom: 360px !important; -} - -.mb-365 { - margin-bottom: 365px !important; -} - -.mb-370 { - margin-bottom: 370px !important; -} - -.mb-375 { - margin-bottom: 375px !important; -} - -.mb-380 { - margin-bottom: 380px !important; -} - -.mb-385 { - margin-bottom: 385px !important; -} - -.mb-390 { - margin-bottom: 390px !important; -} - -.mb-395 { - margin-bottom: 395px !important; -} - -.mb-400 { - margin-bottom: 400px !important; -} - -.mb-405 { - margin-bottom: 405px !important; -} - -.mb-410 { - margin-bottom: 410px !important; -} - -.mb-415 { - margin-bottom: 415px !important; -} - -.mb-420 { - margin-bottom: 420px !important; -} - -.mb-425 { - margin-bottom: 425px !important; -} - -.mb-430 { - margin-bottom: 430px !important; -} - -.mb-435 { - margin-bottom: 435px !important; -} - -.mb-440 { - margin-bottom: 440px !important; -} - -.mb-445 { - margin-bottom: 445px !important; -} - -.mb-450 { - margin-bottom: 450px !important; -} - -.mb-455 { - margin-bottom: 455px !important; -} - -.mb-460 { - margin-bottom: 460px !important; -} - -.mb-465 { - margin-bottom: 465px !important; -} - -.mb-470 { - margin-bottom: 470px !important; -} - -.mb-475 { - margin-bottom: 475px !important; -} - -.mb-480 { - margin-bottom: 480px !important; -} - -.mb-485 { - margin-bottom: 485px !important; -} - -.mb-490 { - margin-bottom: 490px !important; -} - -.mb-495 { - margin-bottom: 495px !important; -} - -.mb-500 { - margin-bottom: 500px !important; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-0 { - margin-bottom: 0px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-5 { - margin-bottom: 5px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-10 { - margin-bottom: 10px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-15 { - margin-bottom: 15px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-20 { - margin-bottom: 20px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-25 { - margin-bottom: 25px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-30 { - margin-bottom: 30px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-35 { - margin-bottom: 35px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-40 { - margin-bottom: 40px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-45 { - margin-bottom: 45px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-50 { - margin-bottom: 50px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-55 { - margin-bottom: 55px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-60 { - margin-bottom: 60px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-65 { - margin-bottom: 65px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-70 { - margin-bottom: 70px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-75 { - margin-bottom: 75px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-80 { - margin-bottom: 80px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-85 { - margin-bottom: 85px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-90 { - margin-bottom: 90px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-95 { - margin-bottom: 95px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-100 { - margin-bottom: 100px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-105 { - margin-bottom: 105px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-110 { - margin-bottom: 110px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-115 { - margin-bottom: 115px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-120 { - margin-bottom: 120px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-125 { - margin-bottom: 125px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-130 { - margin-bottom: 130px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-135 { - margin-bottom: 135px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-140 { - margin-bottom: 140px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-145 { - margin-bottom: 145px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-150 { - margin-bottom: 150px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-155 { - margin-bottom: 155px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-160 { - margin-bottom: 160px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-165 { - margin-bottom: 165px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-170 { - margin-bottom: 170px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-175 { - margin-bottom: 175px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-180 { - margin-bottom: 180px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-185 { - margin-bottom: 185px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-190 { - margin-bottom: 190px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-195 { - margin-bottom: 195px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-200 { - margin-bottom: 200px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-205 { - margin-bottom: 205px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-210 { - margin-bottom: 210px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-215 { - margin-bottom: 215px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-220 { - margin-bottom: 220px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-225 { - margin-bottom: 225px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-230 { - margin-bottom: 230px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-235 { - margin-bottom: 235px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-240 { - margin-bottom: 240px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-245 { - margin-bottom: 245px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-250 { - margin-bottom: 250px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-255 { - margin-bottom: 255px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-260 { - margin-bottom: 260px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-265 { - margin-bottom: 265px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-270 { - margin-bottom: 270px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-275 { - margin-bottom: 275px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-280 { - margin-bottom: 280px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-285 { - margin-bottom: 285px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-290 { - margin-bottom: 290px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-295 { - margin-bottom: 295px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-300 { - margin-bottom: 300px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-305 { - margin-bottom: 305px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-310 { - margin-bottom: 310px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-315 { - margin-bottom: 315px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-320 { - margin-bottom: 320px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-325 { - margin-bottom: 325px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-330 { - margin-bottom: 330px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-335 { - margin-bottom: 335px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-340 { - margin-bottom: 340px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-345 { - margin-bottom: 345px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-350 { - margin-bottom: 350px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-355 { - margin-bottom: 355px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-360 { - margin-bottom: 360px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-365 { - margin-bottom: 365px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-370 { - margin-bottom: 370px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-375 { - margin-bottom: 375px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-380 { - margin-bottom: 380px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-385 { - margin-bottom: 385px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-390 { - margin-bottom: 390px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-395 { - margin-bottom: 395px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-400 { - margin-bottom: 400px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-405 { - margin-bottom: 405px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-410 { - margin-bottom: 410px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-415 { - margin-bottom: 415px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-420 { - margin-bottom: 420px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-425 { - margin-bottom: 425px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-430 { - margin-bottom: 430px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-435 { - margin-bottom: 435px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-440 { - margin-bottom: 440px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-445 { - margin-bottom: 445px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-450 { - margin-bottom: 450px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-455 { - margin-bottom: 455px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-460 { - margin-bottom: 460px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-465 { - margin-bottom: 465px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-470 { - margin-bottom: 470px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-475 { - margin-bottom: 475px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-480 { - margin-bottom: 480px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-485 { - margin-bottom: 485px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-490 { - margin-bottom: 490px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-495 { - margin-bottom: 495px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mb-xl-500 { - margin-bottom: 500px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-0 { - margin-bottom: 0px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-5 { - margin-bottom: 5px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-10 { - margin-bottom: 10px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-15 { - margin-bottom: 15px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-20 { - margin-bottom: 20px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-25 { - margin-bottom: 25px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-30 { - margin-bottom: 30px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-35 { - margin-bottom: 35px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-40 { - margin-bottom: 40px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-45 { - margin-bottom: 45px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-50 { - margin-bottom: 50px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-55 { - margin-bottom: 55px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-60 { - margin-bottom: 60px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-65 { - margin-bottom: 65px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-70 { - margin-bottom: 70px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-75 { - margin-bottom: 75px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-80 { - margin-bottom: 80px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-85 { - margin-bottom: 85px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-90 { - margin-bottom: 90px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-95 { - margin-bottom: 95px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-100 { - margin-bottom: 100px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-105 { - margin-bottom: 105px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-110 { - margin-bottom: 110px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-115 { - margin-bottom: 115px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-120 { - margin-bottom: 120px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-125 { - margin-bottom: 125px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-130 { - margin-bottom: 130px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-135 { - margin-bottom: 135px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-140 { - margin-bottom: 140px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-145 { - margin-bottom: 145px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-150 { - margin-bottom: 150px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-155 { - margin-bottom: 155px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-160 { - margin-bottom: 160px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-165 { - margin-bottom: 165px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-170 { - margin-bottom: 170px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-175 { - margin-bottom: 175px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-180 { - margin-bottom: 180px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-185 { - margin-bottom: 185px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-190 { - margin-bottom: 190px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-195 { - margin-bottom: 195px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-200 { - margin-bottom: 200px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-205 { - margin-bottom: 205px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-210 { - margin-bottom: 210px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-215 { - margin-bottom: 215px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-220 { - margin-bottom: 220px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-225 { - margin-bottom: 225px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-230 { - margin-bottom: 230px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-235 { - margin-bottom: 235px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-240 { - margin-bottom: 240px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-245 { - margin-bottom: 245px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-250 { - margin-bottom: 250px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-255 { - margin-bottom: 255px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-260 { - margin-bottom: 260px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-265 { - margin-bottom: 265px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-270 { - margin-bottom: 270px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-275 { - margin-bottom: 275px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-280 { - margin-bottom: 280px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-285 { - margin-bottom: 285px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-290 { - margin-bottom: 290px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-295 { - margin-bottom: 295px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-300 { - margin-bottom: 300px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-305 { - margin-bottom: 305px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-310 { - margin-bottom: 310px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-315 { - margin-bottom: 315px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-320 { - margin-bottom: 320px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-325 { - margin-bottom: 325px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-330 { - margin-bottom: 330px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-335 { - margin-bottom: 335px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-340 { - margin-bottom: 340px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-345 { - margin-bottom: 345px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-350 { - margin-bottom: 350px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-355 { - margin-bottom: 355px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-360 { - margin-bottom: 360px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-365 { - margin-bottom: 365px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-370 { - margin-bottom: 370px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-375 { - margin-bottom: 375px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-380 { - margin-bottom: 380px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-385 { - margin-bottom: 385px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-390 { - margin-bottom: 390px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-395 { - margin-bottom: 395px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-400 { - margin-bottom: 400px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-405 { - margin-bottom: 405px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-410 { - margin-bottom: 410px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-415 { - margin-bottom: 415px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-420 { - margin-bottom: 420px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-425 { - margin-bottom: 425px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-430 { - margin-bottom: 430px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-435 { - margin-bottom: 435px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-440 { - margin-bottom: 440px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-445 { - margin-bottom: 445px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-450 { - margin-bottom: 450px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-455 { - margin-bottom: 455px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-460 { - margin-bottom: 460px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-465 { - margin-bottom: 465px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-470 { - margin-bottom: 470px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-475 { - margin-bottom: 475px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-480 { - margin-bottom: 480px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-485 { - margin-bottom: 485px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-490 { - margin-bottom: 490px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-495 { - margin-bottom: 495px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mb-lg-500 { - margin-bottom: 500px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-0 { - margin-bottom: 0px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-5 { - margin-bottom: 5px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-10 { - margin-bottom: 10px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-15 { - margin-bottom: 15px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-20 { - margin-bottom: 20px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-25 { - margin-bottom: 25px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-30 { - margin-bottom: 30px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-35 { - margin-bottom: 35px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-40 { - margin-bottom: 40px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-45 { - margin-bottom: 45px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-50 { - margin-bottom: 50px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-55 { - margin-bottom: 55px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-60 { - margin-bottom: 60px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-65 { - margin-bottom: 65px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-70 { - margin-bottom: 70px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-75 { - margin-bottom: 75px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-80 { - margin-bottom: 80px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-85 { - margin-bottom: 85px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-90 { - margin-bottom: 90px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-95 { - margin-bottom: 95px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-100 { - margin-bottom: 100px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-105 { - margin-bottom: 105px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-110 { - margin-bottom: 110px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-115 { - margin-bottom: 115px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-120 { - margin-bottom: 120px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-125 { - margin-bottom: 125px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-130 { - margin-bottom: 130px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-135 { - margin-bottom: 135px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-140 { - margin-bottom: 140px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-145 { - margin-bottom: 145px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-150 { - margin-bottom: 150px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-155 { - margin-bottom: 155px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-160 { - margin-bottom: 160px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-165 { - margin-bottom: 165px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-170 { - margin-bottom: 170px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-175 { - margin-bottom: 175px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-180 { - margin-bottom: 180px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-185 { - margin-bottom: 185px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-190 { - margin-bottom: 190px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-195 { - margin-bottom: 195px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-200 { - margin-bottom: 200px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-205 { - margin-bottom: 205px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-210 { - margin-bottom: 210px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-215 { - margin-bottom: 215px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-220 { - margin-bottom: 220px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-225 { - margin-bottom: 225px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-230 { - margin-bottom: 230px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-235 { - margin-bottom: 235px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-240 { - margin-bottom: 240px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-245 { - margin-bottom: 245px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-250 { - margin-bottom: 250px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-255 { - margin-bottom: 255px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-260 { - margin-bottom: 260px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-265 { - margin-bottom: 265px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-270 { - margin-bottom: 270px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-275 { - margin-bottom: 275px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-280 { - margin-bottom: 280px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-285 { - margin-bottom: 285px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-290 { - margin-bottom: 290px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-295 { - margin-bottom: 295px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-300 { - margin-bottom: 300px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-305 { - margin-bottom: 305px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-310 { - margin-bottom: 310px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-315 { - margin-bottom: 315px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-320 { - margin-bottom: 320px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-325 { - margin-bottom: 325px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-330 { - margin-bottom: 330px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-335 { - margin-bottom: 335px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-340 { - margin-bottom: 340px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-345 { - margin-bottom: 345px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-350 { - margin-bottom: 350px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-355 { - margin-bottom: 355px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-360 { - margin-bottom: 360px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-365 { - margin-bottom: 365px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-370 { - margin-bottom: 370px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-375 { - margin-bottom: 375px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-380 { - margin-bottom: 380px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-385 { - margin-bottom: 385px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-390 { - margin-bottom: 390px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-395 { - margin-bottom: 395px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-400 { - margin-bottom: 400px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-405 { - margin-bottom: 405px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-410 { - margin-bottom: 410px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-415 { - margin-bottom: 415px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-420 { - margin-bottom: 420px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-425 { - margin-bottom: 425px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-430 { - margin-bottom: 430px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-435 { - margin-bottom: 435px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-440 { - margin-bottom: 440px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-445 { - margin-bottom: 445px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-450 { - margin-bottom: 450px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-455 { - margin-bottom: 455px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-460 { - margin-bottom: 460px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-465 { - margin-bottom: 465px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-470 { - margin-bottom: 470px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-475 { - margin-bottom: 475px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-480 { - margin-bottom: 480px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-485 { - margin-bottom: 485px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-490 { - margin-bottom: 490px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-495 { - margin-bottom: 495px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mb-md-500 { - margin-bottom: 500px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-0 { - margin-bottom: 0px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-5 { - margin-bottom: 5px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-10 { - margin-bottom: 10px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-15 { - margin-bottom: 15px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-20 { - margin-bottom: 20px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-25 { - margin-bottom: 25px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-30 { - margin-bottom: 30px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-35 { - margin-bottom: 35px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-40 { - margin-bottom: 40px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-45 { - margin-bottom: 45px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-50 { - margin-bottom: 50px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-55 { - margin-bottom: 55px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-60 { - margin-bottom: 60px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-65 { - margin-bottom: 65px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-70 { - margin-bottom: 70px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-75 { - margin-bottom: 75px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-80 { - margin-bottom: 80px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-85 { - margin-bottom: 85px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-90 { - margin-bottom: 90px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-95 { - margin-bottom: 95px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-100 { - margin-bottom: 100px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-105 { - margin-bottom: 105px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-110 { - margin-bottom: 110px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-115 { - margin-bottom: 115px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-120 { - margin-bottom: 120px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-125 { - margin-bottom: 125px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-130 { - margin-bottom: 130px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-135 { - margin-bottom: 135px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-140 { - margin-bottom: 140px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-145 { - margin-bottom: 145px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-150 { - margin-bottom: 150px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-155 { - margin-bottom: 155px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-160 { - margin-bottom: 160px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-165 { - margin-bottom: 165px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-170 { - margin-bottom: 170px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-175 { - margin-bottom: 175px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-180 { - margin-bottom: 180px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-185 { - margin-bottom: 185px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-190 { - margin-bottom: 190px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-195 { - margin-bottom: 195px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-200 { - margin-bottom: 200px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-205 { - margin-bottom: 205px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-210 { - margin-bottom: 210px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-215 { - margin-bottom: 215px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-220 { - margin-bottom: 220px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-225 { - margin-bottom: 225px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-230 { - margin-bottom: 230px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-235 { - margin-bottom: 235px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-240 { - margin-bottom: 240px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-245 { - margin-bottom: 245px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-250 { - margin-bottom: 250px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-255 { - margin-bottom: 255px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-260 { - margin-bottom: 260px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-265 { - margin-bottom: 265px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-270 { - margin-bottom: 270px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-275 { - margin-bottom: 275px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-280 { - margin-bottom: 280px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-285 { - margin-bottom: 285px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-290 { - margin-bottom: 290px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-295 { - margin-bottom: 295px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-300 { - margin-bottom: 300px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-305 { - margin-bottom: 305px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-310 { - margin-bottom: 310px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-315 { - margin-bottom: 315px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-320 { - margin-bottom: 320px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-325 { - margin-bottom: 325px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-330 { - margin-bottom: 330px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-335 { - margin-bottom: 335px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-340 { - margin-bottom: 340px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-345 { - margin-bottom: 345px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-350 { - margin-bottom: 350px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-355 { - margin-bottom: 355px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-360 { - margin-bottom: 360px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-365 { - margin-bottom: 365px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-370 { - margin-bottom: 370px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-375 { - margin-bottom: 375px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-380 { - margin-bottom: 380px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-385 { - margin-bottom: 385px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-390 { - margin-bottom: 390px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-395 { - margin-bottom: 395px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-400 { - margin-bottom: 400px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-405 { - margin-bottom: 405px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-410 { - margin-bottom: 410px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-415 { - margin-bottom: 415px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-420 { - margin-bottom: 420px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-425 { - margin-bottom: 425px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-430 { - margin-bottom: 430px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-435 { - margin-bottom: 435px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-440 { - margin-bottom: 440px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-445 { - margin-bottom: 445px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-450 { - margin-bottom: 450px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-455 { - margin-bottom: 455px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-460 { - margin-bottom: 460px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-465 { - margin-bottom: 465px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-470 { - margin-bottom: 470px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-475 { - margin-bottom: 475px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-480 { - margin-bottom: 480px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-485 { - margin-bottom: 485px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-490 { - margin-bottom: 490px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-495 { - margin-bottom: 495px !important; - } -} - -@media only screen and (max-width: 767px) { - .mb-sm-500 { - margin-bottom: 500px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-0 { - margin-bottom: 0px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-5 { - margin-bottom: 5px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-10 { - margin-bottom: 10px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-15 { - margin-bottom: 15px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-20 { - margin-bottom: 20px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-25 { - margin-bottom: 25px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-30 { - margin-bottom: 30px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-35 { - margin-bottom: 35px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-40 { - margin-bottom: 40px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-45 { - margin-bottom: 45px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-50 { - margin-bottom: 50px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-55 { - margin-bottom: 55px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-60 { - margin-bottom: 60px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-65 { - margin-bottom: 65px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-70 { - margin-bottom: 70px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-75 { - margin-bottom: 75px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-80 { - margin-bottom: 80px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-85 { - margin-bottom: 85px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-90 { - margin-bottom: 90px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-95 { - margin-bottom: 95px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-100 { - margin-bottom: 100px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-105 { - margin-bottom: 105px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-110 { - margin-bottom: 110px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-115 { - margin-bottom: 115px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-120 { - margin-bottom: 120px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-125 { - margin-bottom: 125px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-130 { - margin-bottom: 130px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-135 { - margin-bottom: 135px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-140 { - margin-bottom: 140px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-145 { - margin-bottom: 145px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-150 { - margin-bottom: 150px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-155 { - margin-bottom: 155px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-160 { - margin-bottom: 160px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-165 { - margin-bottom: 165px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-170 { - margin-bottom: 170px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-175 { - margin-bottom: 175px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-180 { - margin-bottom: 180px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-185 { - margin-bottom: 185px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-190 { - margin-bottom: 190px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-195 { - margin-bottom: 195px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-200 { - margin-bottom: 200px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-205 { - margin-bottom: 205px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-210 { - margin-bottom: 210px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-215 { - margin-bottom: 215px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-220 { - margin-bottom: 220px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-225 { - margin-bottom: 225px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-230 { - margin-bottom: 230px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-235 { - margin-bottom: 235px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-240 { - margin-bottom: 240px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-245 { - margin-bottom: 245px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-250 { - margin-bottom: 250px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-255 { - margin-bottom: 255px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-260 { - margin-bottom: 260px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-265 { - margin-bottom: 265px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-270 { - margin-bottom: 270px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-275 { - margin-bottom: 275px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-280 { - margin-bottom: 280px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-285 { - margin-bottom: 285px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-290 { - margin-bottom: 290px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-295 { - margin-bottom: 295px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-300 { - margin-bottom: 300px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-305 { - margin-bottom: 305px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-310 { - margin-bottom: 310px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-315 { - margin-bottom: 315px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-320 { - margin-bottom: 320px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-325 { - margin-bottom: 325px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-330 { - margin-bottom: 330px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-335 { - margin-bottom: 335px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-340 { - margin-bottom: 340px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-345 { - margin-bottom: 345px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-350 { - margin-bottom: 350px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-355 { - margin-bottom: 355px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-360 { - margin-bottom: 360px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-365 { - margin-bottom: 365px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-370 { - margin-bottom: 370px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-375 { - margin-bottom: 375px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-380 { - margin-bottom: 380px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-385 { - margin-bottom: 385px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-390 { - margin-bottom: 390px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-395 { - margin-bottom: 395px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-400 { - margin-bottom: 400px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-405 { - margin-bottom: 405px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-410 { - margin-bottom: 410px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-415 { - margin-bottom: 415px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-420 { - margin-bottom: 420px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-425 { - margin-bottom: 425px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-430 { - margin-bottom: 430px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-435 { - margin-bottom: 435px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-440 { - margin-bottom: 440px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-445 { - margin-bottom: 445px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-450 { - margin-bottom: 450px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-455 { - margin-bottom: 455px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-460 { - margin-bottom: 460px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-465 { - margin-bottom: 465px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-470 { - margin-bottom: 470px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-475 { - margin-bottom: 475px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-480 { - margin-bottom: 480px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-485 { - margin-bottom: 485px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-490 { - margin-bottom: 490px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-495 { - margin-bottom: 495px !important; - } -} - -@media only screen and (max-width: 575px) { - .mb-xs-500 { - margin-bottom: 500px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-0 { - margin-bottom: 0px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-5 { - margin-bottom: 5px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-10 { - margin-bottom: 10px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-15 { - margin-bottom: 15px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-20 { - margin-bottom: 20px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-25 { - margin-bottom: 25px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-30 { - margin-bottom: 30px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-35 { - margin-bottom: 35px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-40 { - margin-bottom: 40px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-45 { - margin-bottom: 45px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-50 { - margin-bottom: 50px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-55 { - margin-bottom: 55px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-60 { - margin-bottom: 60px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-65 { - margin-bottom: 65px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-70 { - margin-bottom: 70px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-75 { - margin-bottom: 75px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-80 { - margin-bottom: 80px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-85 { - margin-bottom: 85px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-90 { - margin-bottom: 90px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-95 { - margin-bottom: 95px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-100 { - margin-bottom: 100px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-105 { - margin-bottom: 105px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-110 { - margin-bottom: 110px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-115 { - margin-bottom: 115px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-120 { - margin-bottom: 120px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-125 { - margin-bottom: 125px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-130 { - margin-bottom: 130px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-135 { - margin-bottom: 135px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-140 { - margin-bottom: 140px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-145 { - margin-bottom: 145px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-150 { - margin-bottom: 150px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-155 { - margin-bottom: 155px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-160 { - margin-bottom: 160px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-165 { - margin-bottom: 165px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-170 { - margin-bottom: 170px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-175 { - margin-bottom: 175px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-180 { - margin-bottom: 180px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-185 { - margin-bottom: 185px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-190 { - margin-bottom: 190px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-195 { - margin-bottom: 195px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-200 { - margin-bottom: 200px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-205 { - margin-bottom: 205px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-210 { - margin-bottom: 210px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-215 { - margin-bottom: 215px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-220 { - margin-bottom: 220px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-225 { - margin-bottom: 225px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-230 { - margin-bottom: 230px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-235 { - margin-bottom: 235px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-240 { - margin-bottom: 240px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-245 { - margin-bottom: 245px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-250 { - margin-bottom: 250px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-255 { - margin-bottom: 255px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-260 { - margin-bottom: 260px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-265 { - margin-bottom: 265px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-270 { - margin-bottom: 270px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-275 { - margin-bottom: 275px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-280 { - margin-bottom: 280px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-285 { - margin-bottom: 285px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-290 { - margin-bottom: 290px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-295 { - margin-bottom: 295px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-300 { - margin-bottom: 300px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-305 { - margin-bottom: 305px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-310 { - margin-bottom: 310px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-315 { - margin-bottom: 315px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-320 { - margin-bottom: 320px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-325 { - margin-bottom: 325px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-330 { - margin-bottom: 330px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-335 { - margin-bottom: 335px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-340 { - margin-bottom: 340px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-345 { - margin-bottom: 345px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-350 { - margin-bottom: 350px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-355 { - margin-bottom: 355px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-360 { - margin-bottom: 360px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-365 { - margin-bottom: 365px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-370 { - margin-bottom: 370px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-375 { - margin-bottom: 375px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-380 { - margin-bottom: 380px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-385 { - margin-bottom: 385px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-390 { - margin-bottom: 390px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-395 { - margin-bottom: 395px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-400 { - margin-bottom: 400px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-405 { - margin-bottom: 405px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-410 { - margin-bottom: 410px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-415 { - margin-bottom: 415px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-420 { - margin-bottom: 420px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-425 { - margin-bottom: 425px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-430 { - margin-bottom: 430px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-435 { - margin-bottom: 435px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-440 { - margin-bottom: 440px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-445 { - margin-bottom: 445px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-450 { - margin-bottom: 450px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-455 { - margin-bottom: 455px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-460 { - margin-bottom: 460px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-465 { - margin-bottom: 465px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-470 { - margin-bottom: 470px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-475 { - margin-bottom: 475px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-480 { - margin-bottom: 480px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-485 { - margin-bottom: 485px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-490 { - margin-bottom: 490px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-495 { - margin-bottom: 495px !important; - } -} - -@media only screen and (max-width: 479px) { - .mb-xxs-500 { - margin-bottom: 500px !important; - } -} - -/*-- Margin Left --*/ -.ml-0 { - margin-left: 0px !important; -} - -.ml-5 { - margin-left: 5px !important; -} - -.ml-10 { - margin-left: 10px !important; -} - -.ml-15 { - margin-left: 15px !important; -} - -.ml-20 { - margin-left: 20px !important; -} - -.ml-25 { - margin-left: 25px !important; -} - -.ml-30 { - margin-left: 30px !important; -} - -.ml-35 { - margin-left: 35px !important; -} - -.ml-40 { - margin-left: 40px !important; -} - -.ml-45 { - margin-left: 45px !important; -} - -.ml-50 { - margin-left: 50px !important; -} - -.ml-55 { - margin-left: 55px !important; -} - -.ml-60 { - margin-left: 60px !important; -} - -.ml-65 { - margin-left: 65px !important; -} - -.ml-70 { - margin-left: 70px !important; -} - -.ml-75 { - margin-left: 75px !important; -} - -.ml-80 { - margin-left: 80px !important; -} - -.ml-85 { - margin-left: 85px !important; -} - -.ml-90 { - margin-left: 90px !important; -} - -.ml-95 { - margin-left: 95px !important; -} - -.ml-100 { - margin-left: 100px !important; -} - -.ml-105 { - margin-left: 105px !important; -} - -.ml-110 { - margin-left: 110px !important; -} - -.ml-115 { - margin-left: 115px !important; -} - -.ml-120 { - margin-left: 120px !important; -} - -.ml-125 { - margin-left: 125px !important; -} - -.ml-130 { - margin-left: 130px !important; -} - -.ml-135 { - margin-left: 135px !important; -} - -.ml-140 { - margin-left: 140px !important; -} - -.ml-145 { - margin-left: 145px !important; -} - -.ml-150 { - margin-left: 150px !important; -} - -.ml-155 { - margin-left: 155px !important; -} - -.ml-160 { - margin-left: 160px !important; -} - -.ml-165 { - margin-left: 165px !important; -} - -.ml-170 { - margin-left: 170px !important; -} - -.ml-175 { - margin-left: 175px !important; -} - -.ml-180 { - margin-left: 180px !important; -} - -.ml-185 { - margin-left: 185px !important; -} - -.ml-190 { - margin-left: 190px !important; -} - -.ml-195 { - margin-left: 195px !important; -} - -.ml-200 { - margin-left: 200px !important; -} - -.ml-205 { - margin-left: 205px !important; -} - -.ml-210 { - margin-left: 210px !important; -} - -.ml-215 { - margin-left: 215px !important; -} - -.ml-220 { - margin-left: 220px !important; -} - -.ml-225 { - margin-left: 225px !important; -} - -.ml-230 { - margin-left: 230px !important; -} - -.ml-235 { - margin-left: 235px !important; -} - -.ml-240 { - margin-left: 240px !important; -} - -.ml-245 { - margin-left: 245px !important; -} - -.ml-250 { - margin-left: 250px !important; -} - -.ml-255 { - margin-left: 255px !important; -} - -.ml-260 { - margin-left: 260px !important; -} - -.ml-265 { - margin-left: 265px !important; -} - -.ml-270 { - margin-left: 270px !important; -} - -.ml-275 { - margin-left: 275px !important; -} - -.ml-280 { - margin-left: 280px !important; -} - -.ml-285 { - margin-left: 285px !important; -} - -.ml-290 { - margin-left: 290px !important; -} - -.ml-295 { - margin-left: 295px !important; -} - -.ml-300 { - margin-left: 300px !important; -} - -.ml-305 { - margin-left: 305px !important; -} - -.ml-310 { - margin-left: 310px !important; -} - -.ml-315 { - margin-left: 315px !important; -} - -.ml-320 { - margin-left: 320px !important; -} - -.ml-325 { - margin-left: 325px !important; -} - -.ml-330 { - margin-left: 330px !important; -} - -.ml-335 { - margin-left: 335px !important; -} - -.ml-340 { - margin-left: 340px !important; -} - -.ml-345 { - margin-left: 345px !important; -} - -.ml-350 { - margin-left: 350px !important; -} - -.ml-355 { - margin-left: 355px !important; -} - -.ml-360 { - margin-left: 360px !important; -} - -.ml-365 { - margin-left: 365px !important; -} - -.ml-370 { - margin-left: 370px !important; -} - -.ml-375 { - margin-left: 375px !important; -} - -.ml-380 { - margin-left: 380px !important; -} - -.ml-385 { - margin-left: 385px !important; -} - -.ml-390 { - margin-left: 390px !important; -} - -.ml-395 { - margin-left: 395px !important; -} - -.ml-400 { - margin-left: 400px !important; -} - -.ml-405 { - margin-left: 405px !important; -} - -.ml-410 { - margin-left: 410px !important; -} - -.ml-415 { - margin-left: 415px !important; -} - -.ml-420 { - margin-left: 420px !important; -} - -.ml-425 { - margin-left: 425px !important; -} - -.ml-430 { - margin-left: 430px !important; -} - -.ml-435 { - margin-left: 435px !important; -} - -.ml-440 { - margin-left: 440px !important; -} - -.ml-445 { - margin-left: 445px !important; -} - -.ml-450 { - margin-left: 450px !important; -} - -.ml-455 { - margin-left: 455px !important; -} - -.ml-460 { - margin-left: 460px !important; -} - -.ml-465 { - margin-left: 465px !important; -} - -.ml-470 { - margin-left: 470px !important; -} - -.ml-475 { - margin-left: 475px !important; -} - -.ml-480 { - margin-left: 480px !important; -} - -.ml-485 { - margin-left: 485px !important; -} - -.ml-490 { - margin-left: 490px !important; -} - -.ml-495 { - margin-left: 495px !important; -} - -.ml-500 { - margin-left: 500px !important; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-0 { - margin-left: 0px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-5 { - margin-left: 5px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-10 { - margin-left: 10px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-15 { - margin-left: 15px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-20 { - margin-left: 20px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-25 { - margin-left: 25px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-30 { - margin-left: 30px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-35 { - margin-left: 35px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-40 { - margin-left: 40px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-45 { - margin-left: 45px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-50 { - margin-left: 50px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-55 { - margin-left: 55px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-60 { - margin-left: 60px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-65 { - margin-left: 65px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-70 { - margin-left: 70px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-75 { - margin-left: 75px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-80 { - margin-left: 80px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-85 { - margin-left: 85px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-90 { - margin-left: 90px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-95 { - margin-left: 95px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-100 { - margin-left: 100px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-105 { - margin-left: 105px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-110 { - margin-left: 110px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-115 { - margin-left: 115px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-120 { - margin-left: 120px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-125 { - margin-left: 125px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-130 { - margin-left: 130px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-135 { - margin-left: 135px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-140 { - margin-left: 140px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-145 { - margin-left: 145px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-150 { - margin-left: 150px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-155 { - margin-left: 155px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-160 { - margin-left: 160px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-165 { - margin-left: 165px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-170 { - margin-left: 170px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-175 { - margin-left: 175px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-180 { - margin-left: 180px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-185 { - margin-left: 185px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-190 { - margin-left: 190px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-195 { - margin-left: 195px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-200 { - margin-left: 200px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-205 { - margin-left: 205px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-210 { - margin-left: 210px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-215 { - margin-left: 215px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-220 { - margin-left: 220px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-225 { - margin-left: 225px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-230 { - margin-left: 230px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-235 { - margin-left: 235px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-240 { - margin-left: 240px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-245 { - margin-left: 245px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-250 { - margin-left: 250px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-255 { - margin-left: 255px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-260 { - margin-left: 260px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-265 { - margin-left: 265px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-270 { - margin-left: 270px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-275 { - margin-left: 275px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-280 { - margin-left: 280px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-285 { - margin-left: 285px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-290 { - margin-left: 290px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-295 { - margin-left: 295px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-300 { - margin-left: 300px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-305 { - margin-left: 305px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-310 { - margin-left: 310px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-315 { - margin-left: 315px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-320 { - margin-left: 320px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-325 { - margin-left: 325px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-330 { - margin-left: 330px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-335 { - margin-left: 335px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-340 { - margin-left: 340px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-345 { - margin-left: 345px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-350 { - margin-left: 350px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-355 { - margin-left: 355px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-360 { - margin-left: 360px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-365 { - margin-left: 365px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-370 { - margin-left: 370px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-375 { - margin-left: 375px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-380 { - margin-left: 380px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-385 { - margin-left: 385px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-390 { - margin-left: 390px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-395 { - margin-left: 395px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-400 { - margin-left: 400px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-405 { - margin-left: 405px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-410 { - margin-left: 410px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-415 { - margin-left: 415px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-420 { - margin-left: 420px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-425 { - margin-left: 425px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-430 { - margin-left: 430px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-435 { - margin-left: 435px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-440 { - margin-left: 440px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-445 { - margin-left: 445px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-450 { - margin-left: 450px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-455 { - margin-left: 455px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-460 { - margin-left: 460px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-465 { - margin-left: 465px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-470 { - margin-left: 470px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-475 { - margin-left: 475px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-480 { - margin-left: 480px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-485 { - margin-left: 485px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-490 { - margin-left: 490px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-495 { - margin-left: 495px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .ml-xl-500 { - margin-left: 500px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-0 { - margin-left: 0px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-5 { - margin-left: 5px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-10 { - margin-left: 10px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-15 { - margin-left: 15px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-20 { - margin-left: 20px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-25 { - margin-left: 25px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-30 { - margin-left: 30px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-35 { - margin-left: 35px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-40 { - margin-left: 40px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-45 { - margin-left: 45px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-50 { - margin-left: 50px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-55 { - margin-left: 55px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-60 { - margin-left: 60px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-65 { - margin-left: 65px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-70 { - margin-left: 70px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-75 { - margin-left: 75px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-80 { - margin-left: 80px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-85 { - margin-left: 85px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-90 { - margin-left: 90px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-95 { - margin-left: 95px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-100 { - margin-left: 100px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-105 { - margin-left: 105px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-110 { - margin-left: 110px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-115 { - margin-left: 115px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-120 { - margin-left: 120px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-125 { - margin-left: 125px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-130 { - margin-left: 130px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-135 { - margin-left: 135px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-140 { - margin-left: 140px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-145 { - margin-left: 145px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-150 { - margin-left: 150px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-155 { - margin-left: 155px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-160 { - margin-left: 160px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-165 { - margin-left: 165px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-170 { - margin-left: 170px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-175 { - margin-left: 175px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-180 { - margin-left: 180px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-185 { - margin-left: 185px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-190 { - margin-left: 190px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-195 { - margin-left: 195px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-200 { - margin-left: 200px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-205 { - margin-left: 205px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-210 { - margin-left: 210px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-215 { - margin-left: 215px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-220 { - margin-left: 220px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-225 { - margin-left: 225px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-230 { - margin-left: 230px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-235 { - margin-left: 235px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-240 { - margin-left: 240px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-245 { - margin-left: 245px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-250 { - margin-left: 250px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-255 { - margin-left: 255px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-260 { - margin-left: 260px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-265 { - margin-left: 265px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-270 { - margin-left: 270px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-275 { - margin-left: 275px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-280 { - margin-left: 280px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-285 { - margin-left: 285px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-290 { - margin-left: 290px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-295 { - margin-left: 295px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-300 { - margin-left: 300px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-305 { - margin-left: 305px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-310 { - margin-left: 310px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-315 { - margin-left: 315px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-320 { - margin-left: 320px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-325 { - margin-left: 325px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-330 { - margin-left: 330px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-335 { - margin-left: 335px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-340 { - margin-left: 340px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-345 { - margin-left: 345px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-350 { - margin-left: 350px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-355 { - margin-left: 355px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-360 { - margin-left: 360px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-365 { - margin-left: 365px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-370 { - margin-left: 370px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-375 { - margin-left: 375px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-380 { - margin-left: 380px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-385 { - margin-left: 385px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-390 { - margin-left: 390px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-395 { - margin-left: 395px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-400 { - margin-left: 400px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-405 { - margin-left: 405px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-410 { - margin-left: 410px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-415 { - margin-left: 415px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-420 { - margin-left: 420px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-425 { - margin-left: 425px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-430 { - margin-left: 430px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-435 { - margin-left: 435px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-440 { - margin-left: 440px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-445 { - margin-left: 445px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-450 { - margin-left: 450px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-455 { - margin-left: 455px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-460 { - margin-left: 460px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-465 { - margin-left: 465px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-470 { - margin-left: 470px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-475 { - margin-left: 475px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-480 { - margin-left: 480px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-485 { - margin-left: 485px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-490 { - margin-left: 490px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-495 { - margin-left: 495px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .ml-lg-500 { - margin-left: 500px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-0 { - margin-left: 0px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-5 { - margin-left: 5px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-10 { - margin-left: 10px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-15 { - margin-left: 15px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-20 { - margin-left: 20px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-25 { - margin-left: 25px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-30 { - margin-left: 30px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-35 { - margin-left: 35px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-40 { - margin-left: 40px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-45 { - margin-left: 45px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-50 { - margin-left: 50px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-55 { - margin-left: 55px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-60 { - margin-left: 60px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-65 { - margin-left: 65px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-70 { - margin-left: 70px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-75 { - margin-left: 75px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-80 { - margin-left: 80px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-85 { - margin-left: 85px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-90 { - margin-left: 90px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-95 { - margin-left: 95px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-100 { - margin-left: 100px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-105 { - margin-left: 105px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-110 { - margin-left: 110px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-115 { - margin-left: 115px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-120 { - margin-left: 120px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-125 { - margin-left: 125px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-130 { - margin-left: 130px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-135 { - margin-left: 135px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-140 { - margin-left: 140px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-145 { - margin-left: 145px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-150 { - margin-left: 150px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-155 { - margin-left: 155px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-160 { - margin-left: 160px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-165 { - margin-left: 165px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-170 { - margin-left: 170px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-175 { - margin-left: 175px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-180 { - margin-left: 180px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-185 { - margin-left: 185px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-190 { - margin-left: 190px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-195 { - margin-left: 195px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-200 { - margin-left: 200px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-205 { - margin-left: 205px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-210 { - margin-left: 210px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-215 { - margin-left: 215px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-220 { - margin-left: 220px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-225 { - margin-left: 225px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-230 { - margin-left: 230px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-235 { - margin-left: 235px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-240 { - margin-left: 240px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-245 { - margin-left: 245px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-250 { - margin-left: 250px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-255 { - margin-left: 255px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-260 { - margin-left: 260px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-265 { - margin-left: 265px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-270 { - margin-left: 270px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-275 { - margin-left: 275px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-280 { - margin-left: 280px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-285 { - margin-left: 285px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-290 { - margin-left: 290px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-295 { - margin-left: 295px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-300 { - margin-left: 300px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-305 { - margin-left: 305px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-310 { - margin-left: 310px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-315 { - margin-left: 315px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-320 { - margin-left: 320px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-325 { - margin-left: 325px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-330 { - margin-left: 330px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-335 { - margin-left: 335px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-340 { - margin-left: 340px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-345 { - margin-left: 345px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-350 { - margin-left: 350px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-355 { - margin-left: 355px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-360 { - margin-left: 360px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-365 { - margin-left: 365px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-370 { - margin-left: 370px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-375 { - margin-left: 375px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-380 { - margin-left: 380px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-385 { - margin-left: 385px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-390 { - margin-left: 390px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-395 { - margin-left: 395px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-400 { - margin-left: 400px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-405 { - margin-left: 405px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-410 { - margin-left: 410px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-415 { - margin-left: 415px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-420 { - margin-left: 420px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-425 { - margin-left: 425px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-430 { - margin-left: 430px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-435 { - margin-left: 435px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-440 { - margin-left: 440px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-445 { - margin-left: 445px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-450 { - margin-left: 450px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-455 { - margin-left: 455px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-460 { - margin-left: 460px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-465 { - margin-left: 465px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-470 { - margin-left: 470px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-475 { - margin-left: 475px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-480 { - margin-left: 480px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-485 { - margin-left: 485px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-490 { - margin-left: 490px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-495 { - margin-left: 495px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .ml-md-500 { - margin-left: 500px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-0 { - margin-left: 0px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-5 { - margin-left: 5px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-10 { - margin-left: 10px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-15 { - margin-left: 15px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-20 { - margin-left: 20px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-25 { - margin-left: 25px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-30 { - margin-left: 30px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-35 { - margin-left: 35px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-40 { - margin-left: 40px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-45 { - margin-left: 45px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-50 { - margin-left: 50px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-55 { - margin-left: 55px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-60 { - margin-left: 60px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-65 { - margin-left: 65px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-70 { - margin-left: 70px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-75 { - margin-left: 75px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-80 { - margin-left: 80px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-85 { - margin-left: 85px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-90 { - margin-left: 90px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-95 { - margin-left: 95px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-100 { - margin-left: 100px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-105 { - margin-left: 105px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-110 { - margin-left: 110px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-115 { - margin-left: 115px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-120 { - margin-left: 120px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-125 { - margin-left: 125px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-130 { - margin-left: 130px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-135 { - margin-left: 135px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-140 { - margin-left: 140px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-145 { - margin-left: 145px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-150 { - margin-left: 150px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-155 { - margin-left: 155px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-160 { - margin-left: 160px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-165 { - margin-left: 165px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-170 { - margin-left: 170px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-175 { - margin-left: 175px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-180 { - margin-left: 180px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-185 { - margin-left: 185px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-190 { - margin-left: 190px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-195 { - margin-left: 195px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-200 { - margin-left: 200px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-205 { - margin-left: 205px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-210 { - margin-left: 210px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-215 { - margin-left: 215px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-220 { - margin-left: 220px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-225 { - margin-left: 225px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-230 { - margin-left: 230px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-235 { - margin-left: 235px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-240 { - margin-left: 240px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-245 { - margin-left: 245px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-250 { - margin-left: 250px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-255 { - margin-left: 255px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-260 { - margin-left: 260px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-265 { - margin-left: 265px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-270 { - margin-left: 270px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-275 { - margin-left: 275px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-280 { - margin-left: 280px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-285 { - margin-left: 285px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-290 { - margin-left: 290px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-295 { - margin-left: 295px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-300 { - margin-left: 300px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-305 { - margin-left: 305px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-310 { - margin-left: 310px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-315 { - margin-left: 315px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-320 { - margin-left: 320px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-325 { - margin-left: 325px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-330 { - margin-left: 330px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-335 { - margin-left: 335px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-340 { - margin-left: 340px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-345 { - margin-left: 345px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-350 { - margin-left: 350px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-355 { - margin-left: 355px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-360 { - margin-left: 360px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-365 { - margin-left: 365px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-370 { - margin-left: 370px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-375 { - margin-left: 375px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-380 { - margin-left: 380px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-385 { - margin-left: 385px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-390 { - margin-left: 390px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-395 { - margin-left: 395px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-400 { - margin-left: 400px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-405 { - margin-left: 405px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-410 { - margin-left: 410px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-415 { - margin-left: 415px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-420 { - margin-left: 420px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-425 { - margin-left: 425px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-430 { - margin-left: 430px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-435 { - margin-left: 435px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-440 { - margin-left: 440px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-445 { - margin-left: 445px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-450 { - margin-left: 450px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-455 { - margin-left: 455px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-460 { - margin-left: 460px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-465 { - margin-left: 465px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-470 { - margin-left: 470px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-475 { - margin-left: 475px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-480 { - margin-left: 480px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-485 { - margin-left: 485px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-490 { - margin-left: 490px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-495 { - margin-left: 495px !important; - } -} - -@media only screen and (max-width: 767px) { - .ml-sm-500 { - margin-left: 500px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-0 { - margin-left: 0px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-5 { - margin-left: 5px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-10 { - margin-left: 10px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-15 { - margin-left: 15px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-20 { - margin-left: 20px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-25 { - margin-left: 25px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-30 { - margin-left: 30px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-35 { - margin-left: 35px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-40 { - margin-left: 40px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-45 { - margin-left: 45px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-50 { - margin-left: 50px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-55 { - margin-left: 55px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-60 { - margin-left: 60px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-65 { - margin-left: 65px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-70 { - margin-left: 70px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-75 { - margin-left: 75px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-80 { - margin-left: 80px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-85 { - margin-left: 85px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-90 { - margin-left: 90px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-95 { - margin-left: 95px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-100 { - margin-left: 100px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-105 { - margin-left: 105px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-110 { - margin-left: 110px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-115 { - margin-left: 115px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-120 { - margin-left: 120px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-125 { - margin-left: 125px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-130 { - margin-left: 130px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-135 { - margin-left: 135px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-140 { - margin-left: 140px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-145 { - margin-left: 145px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-150 { - margin-left: 150px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-155 { - margin-left: 155px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-160 { - margin-left: 160px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-165 { - margin-left: 165px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-170 { - margin-left: 170px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-175 { - margin-left: 175px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-180 { - margin-left: 180px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-185 { - margin-left: 185px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-190 { - margin-left: 190px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-195 { - margin-left: 195px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-200 { - margin-left: 200px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-205 { - margin-left: 205px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-210 { - margin-left: 210px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-215 { - margin-left: 215px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-220 { - margin-left: 220px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-225 { - margin-left: 225px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-230 { - margin-left: 230px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-235 { - margin-left: 235px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-240 { - margin-left: 240px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-245 { - margin-left: 245px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-250 { - margin-left: 250px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-255 { - margin-left: 255px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-260 { - margin-left: 260px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-265 { - margin-left: 265px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-270 { - margin-left: 270px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-275 { - margin-left: 275px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-280 { - margin-left: 280px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-285 { - margin-left: 285px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-290 { - margin-left: 290px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-295 { - margin-left: 295px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-300 { - margin-left: 300px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-305 { - margin-left: 305px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-310 { - margin-left: 310px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-315 { - margin-left: 315px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-320 { - margin-left: 320px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-325 { - margin-left: 325px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-330 { - margin-left: 330px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-335 { - margin-left: 335px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-340 { - margin-left: 340px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-345 { - margin-left: 345px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-350 { - margin-left: 350px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-355 { - margin-left: 355px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-360 { - margin-left: 360px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-365 { - margin-left: 365px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-370 { - margin-left: 370px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-375 { - margin-left: 375px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-380 { - margin-left: 380px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-385 { - margin-left: 385px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-390 { - margin-left: 390px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-395 { - margin-left: 395px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-400 { - margin-left: 400px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-405 { - margin-left: 405px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-410 { - margin-left: 410px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-415 { - margin-left: 415px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-420 { - margin-left: 420px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-425 { - margin-left: 425px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-430 { - margin-left: 430px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-435 { - margin-left: 435px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-440 { - margin-left: 440px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-445 { - margin-left: 445px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-450 { - margin-left: 450px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-455 { - margin-left: 455px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-460 { - margin-left: 460px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-465 { - margin-left: 465px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-470 { - margin-left: 470px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-475 { - margin-left: 475px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-480 { - margin-left: 480px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-485 { - margin-left: 485px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-490 { - margin-left: 490px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-495 { - margin-left: 495px !important; - } -} - -@media only screen and (max-width: 575px) { - .ml-xs-500 { - margin-left: 500px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-0 { - margin-left: 0px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-5 { - margin-left: 5px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-10 { - margin-left: 10px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-15 { - margin-left: 15px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-20 { - margin-left: 20px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-25 { - margin-left: 25px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-30 { - margin-left: 30px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-35 { - margin-left: 35px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-40 { - margin-left: 40px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-45 { - margin-left: 45px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-50 { - margin-left: 50px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-55 { - margin-left: 55px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-60 { - margin-left: 60px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-65 { - margin-left: 65px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-70 { - margin-left: 70px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-75 { - margin-left: 75px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-80 { - margin-left: 80px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-85 { - margin-left: 85px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-90 { - margin-left: 90px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-95 { - margin-left: 95px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-100 { - margin-left: 100px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-105 { - margin-left: 105px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-110 { - margin-left: 110px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-115 { - margin-left: 115px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-120 { - margin-left: 120px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-125 { - margin-left: 125px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-130 { - margin-left: 130px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-135 { - margin-left: 135px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-140 { - margin-left: 140px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-145 { - margin-left: 145px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-150 { - margin-left: 150px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-155 { - margin-left: 155px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-160 { - margin-left: 160px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-165 { - margin-left: 165px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-170 { - margin-left: 170px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-175 { - margin-left: 175px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-180 { - margin-left: 180px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-185 { - margin-left: 185px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-190 { - margin-left: 190px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-195 { - margin-left: 195px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-200 { - margin-left: 200px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-205 { - margin-left: 205px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-210 { - margin-left: 210px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-215 { - margin-left: 215px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-220 { - margin-left: 220px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-225 { - margin-left: 225px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-230 { - margin-left: 230px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-235 { - margin-left: 235px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-240 { - margin-left: 240px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-245 { - margin-left: 245px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-250 { - margin-left: 250px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-255 { - margin-left: 255px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-260 { - margin-left: 260px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-265 { - margin-left: 265px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-270 { - margin-left: 270px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-275 { - margin-left: 275px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-280 { - margin-left: 280px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-285 { - margin-left: 285px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-290 { - margin-left: 290px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-295 { - margin-left: 295px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-300 { - margin-left: 300px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-305 { - margin-left: 305px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-310 { - margin-left: 310px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-315 { - margin-left: 315px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-320 { - margin-left: 320px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-325 { - margin-left: 325px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-330 { - margin-left: 330px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-335 { - margin-left: 335px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-340 { - margin-left: 340px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-345 { - margin-left: 345px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-350 { - margin-left: 350px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-355 { - margin-left: 355px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-360 { - margin-left: 360px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-365 { - margin-left: 365px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-370 { - margin-left: 370px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-375 { - margin-left: 375px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-380 { - margin-left: 380px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-385 { - margin-left: 385px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-390 { - margin-left: 390px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-395 { - margin-left: 395px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-400 { - margin-left: 400px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-405 { - margin-left: 405px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-410 { - margin-left: 410px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-415 { - margin-left: 415px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-420 { - margin-left: 420px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-425 { - margin-left: 425px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-430 { - margin-left: 430px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-435 { - margin-left: 435px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-440 { - margin-left: 440px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-445 { - margin-left: 445px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-450 { - margin-left: 450px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-455 { - margin-left: 455px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-460 { - margin-left: 460px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-465 { - margin-left: 465px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-470 { - margin-left: 470px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-475 { - margin-left: 475px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-480 { - margin-left: 480px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-485 { - margin-left: 485px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-490 { - margin-left: 490px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-495 { - margin-left: 495px !important; - } -} - -@media only screen and (max-width: 479px) { - .ml-xxs-500 { - margin-left: 500px !important; - } -} - -/*-- Margin Right --*/ -.mr-0 { - margin-right: 0px !important; -} - -.mr-5 { - margin-right: 5px !important; -} - -.mr-10 { - margin-right: 10px !important; -} - -.mr-15 { - margin-right: 15px !important; -} - -.mr-20 { - margin-right: 20px !important; -} - -.mr-25 { - margin-right: 25px !important; -} - -.mr-30 { - margin-right: 30px !important; -} - -.mr-35 { - margin-right: 35px !important; -} - -.mr-40 { - margin-right: 40px !important; -} - -.mr-45 { - margin-right: 45px !important; -} - -.mr-50 { - margin-right: 50px !important; -} - -.mr-55 { - margin-right: 55px !important; -} - -.mr-60 { - margin-right: 60px !important; -} - -.mr-65 { - margin-right: 65px !important; -} - -.mr-70 { - margin-right: 70px !important; -} - -.mr-75 { - margin-right: 75px !important; -} - -.mr-80 { - margin-right: 80px !important; -} - -.mr-85 { - margin-right: 85px !important; -} - -.mr-90 { - margin-right: 90px !important; -} - -.mr-95 { - margin-right: 95px !important; -} - -.mr-100 { - margin-right: 100px !important; -} - -.mr-105 { - margin-right: 105px !important; -} - -.mr-110 { - margin-right: 110px !important; -} - -.mr-115 { - margin-right: 115px !important; -} - -.mr-120 { - margin-right: 120px !important; -} - -.mr-125 { - margin-right: 125px !important; -} - -.mr-130 { - margin-right: 130px !important; -} - -.mr-135 { - margin-right: 135px !important; -} - -.mr-140 { - margin-right: 140px !important; -} - -.mr-145 { - margin-right: 145px !important; -} - -.mr-150 { - margin-right: 150px !important; -} - -.mr-155 { - margin-right: 155px !important; -} - -.mr-160 { - margin-right: 160px !important; -} - -.mr-165 { - margin-right: 165px !important; -} - -.mr-170 { - margin-right: 170px !important; -} - -.mr-175 { - margin-right: 175px !important; -} - -.mr-180 { - margin-right: 180px !important; -} - -.mr-185 { - margin-right: 185px !important; -} - -.mr-190 { - margin-right: 190px !important; -} - -.mr-195 { - margin-right: 195px !important; -} - -.mr-200 { - margin-right: 200px !important; -} - -.mr-205 { - margin-right: 205px !important; -} - -.mr-210 { - margin-right: 210px !important; -} - -.mr-215 { - margin-right: 215px !important; -} - -.mr-220 { - margin-right: 220px !important; -} - -.mr-225 { - margin-right: 225px !important; -} - -.mr-230 { - margin-right: 230px !important; -} - -.mr-235 { - margin-right: 235px !important; -} - -.mr-240 { - margin-right: 240px !important; -} - -.mr-245 { - margin-right: 245px !important; -} - -.mr-250 { - margin-right: 250px !important; -} - -.mr-255 { - margin-right: 255px !important; -} - -.mr-260 { - margin-right: 260px !important; -} - -.mr-265 { - margin-right: 265px !important; -} - -.mr-270 { - margin-right: 270px !important; -} - -.mr-275 { - margin-right: 275px !important; -} - -.mr-280 { - margin-right: 280px !important; -} - -.mr-285 { - margin-right: 285px !important; -} - -.mr-290 { - margin-right: 290px !important; -} - -.mr-295 { - margin-right: 295px !important; -} - -.mr-300 { - margin-right: 300px !important; -} - -.mr-305 { - margin-right: 305px !important; -} - -.mr-310 { - margin-right: 310px !important; -} - -.mr-315 { - margin-right: 315px !important; -} - -.mr-320 { - margin-right: 320px !important; -} - -.mr-325 { - margin-right: 325px !important; -} - -.mr-330 { - margin-right: 330px !important; -} - -.mr-335 { - margin-right: 335px !important; -} - -.mr-340 { - margin-right: 340px !important; -} - -.mr-345 { - margin-right: 345px !important; -} - -.mr-350 { - margin-right: 350px !important; -} - -.mr-355 { - margin-right: 355px !important; -} - -.mr-360 { - margin-right: 360px !important; -} - -.mr-365 { - margin-right: 365px !important; -} - -.mr-370 { - margin-right: 370px !important; -} - -.mr-375 { - margin-right: 375px !important; -} - -.mr-380 { - margin-right: 380px !important; -} - -.mr-385 { - margin-right: 385px !important; -} - -.mr-390 { - margin-right: 390px !important; -} - -.mr-395 { - margin-right: 395px !important; -} - -.mr-400 { - margin-right: 400px !important; -} - -.mr-405 { - margin-right: 405px !important; -} - -.mr-410 { - margin-right: 410px !important; -} - -.mr-415 { - margin-right: 415px !important; -} - -.mr-420 { - margin-right: 420px !important; -} - -.mr-425 { - margin-right: 425px !important; -} - -.mr-430 { - margin-right: 430px !important; -} - -.mr-435 { - margin-right: 435px !important; -} - -.mr-440 { - margin-right: 440px !important; -} - -.mr-445 { - margin-right: 445px !important; -} - -.mr-450 { - margin-right: 450px !important; -} - -.mr-455 { - margin-right: 455px !important; -} - -.mr-460 { - margin-right: 460px !important; -} - -.mr-465 { - margin-right: 465px !important; -} - -.mr-470 { - margin-right: 470px !important; -} - -.mr-475 { - margin-right: 475px !important; -} - -.mr-480 { - margin-right: 480px !important; -} - -.mr-485 { - margin-right: 485px !important; -} - -.mr-490 { - margin-right: 490px !important; -} - -.mr-495 { - margin-right: 495px !important; -} - -.mr-500 { - margin-right: 500px !important; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-0 { - margin-right: 0px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-5 { - margin-right: 5px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-10 { - margin-right: 10px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-15 { - margin-right: 15px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-20 { - margin-right: 20px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-25 { - margin-right: 25px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-30 { - margin-right: 30px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-35 { - margin-right: 35px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-40 { - margin-right: 40px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-45 { - margin-right: 45px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-50 { - margin-right: 50px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-55 { - margin-right: 55px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-60 { - margin-right: 60px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-65 { - margin-right: 65px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-70 { - margin-right: 70px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-75 { - margin-right: 75px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-80 { - margin-right: 80px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-85 { - margin-right: 85px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-90 { - margin-right: 90px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-95 { - margin-right: 95px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-100 { - margin-right: 100px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-105 { - margin-right: 105px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-110 { - margin-right: 110px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-115 { - margin-right: 115px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-120 { - margin-right: 120px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-125 { - margin-right: 125px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-130 { - margin-right: 130px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-135 { - margin-right: 135px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-140 { - margin-right: 140px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-145 { - margin-right: 145px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-150 { - margin-right: 150px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-155 { - margin-right: 155px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-160 { - margin-right: 160px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-165 { - margin-right: 165px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-170 { - margin-right: 170px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-175 { - margin-right: 175px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-180 { - margin-right: 180px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-185 { - margin-right: 185px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-190 { - margin-right: 190px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-195 { - margin-right: 195px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-200 { - margin-right: 200px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-205 { - margin-right: 205px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-210 { - margin-right: 210px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-215 { - margin-right: 215px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-220 { - margin-right: 220px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-225 { - margin-right: 225px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-230 { - margin-right: 230px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-235 { - margin-right: 235px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-240 { - margin-right: 240px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-245 { - margin-right: 245px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-250 { - margin-right: 250px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-255 { - margin-right: 255px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-260 { - margin-right: 260px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-265 { - margin-right: 265px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-270 { - margin-right: 270px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-275 { - margin-right: 275px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-280 { - margin-right: 280px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-285 { - margin-right: 285px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-290 { - margin-right: 290px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-295 { - margin-right: 295px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-300 { - margin-right: 300px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-305 { - margin-right: 305px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-310 { - margin-right: 310px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-315 { - margin-right: 315px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-320 { - margin-right: 320px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-325 { - margin-right: 325px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-330 { - margin-right: 330px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-335 { - margin-right: 335px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-340 { - margin-right: 340px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-345 { - margin-right: 345px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-350 { - margin-right: 350px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-355 { - margin-right: 355px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-360 { - margin-right: 360px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-365 { - margin-right: 365px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-370 { - margin-right: 370px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-375 { - margin-right: 375px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-380 { - margin-right: 380px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-385 { - margin-right: 385px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-390 { - margin-right: 390px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-395 { - margin-right: 395px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-400 { - margin-right: 400px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-405 { - margin-right: 405px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-410 { - margin-right: 410px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-415 { - margin-right: 415px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-420 { - margin-right: 420px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-425 { - margin-right: 425px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-430 { - margin-right: 430px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-435 { - margin-right: 435px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-440 { - margin-right: 440px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-445 { - margin-right: 445px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-450 { - margin-right: 450px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-455 { - margin-right: 455px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-460 { - margin-right: 460px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-465 { - margin-right: 465px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-470 { - margin-right: 470px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-475 { - margin-right: 475px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-480 { - margin-right: 480px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-485 { - margin-right: 485px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-490 { - margin-right: 490px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-495 { - margin-right: 495px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .mr-xl-500 { - margin-right: 500px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-0 { - margin-right: 0px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-5 { - margin-right: 5px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-10 { - margin-right: 10px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-15 { - margin-right: 15px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-20 { - margin-right: 20px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-25 { - margin-right: 25px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-30 { - margin-right: 30px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-35 { - margin-right: 35px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-40 { - margin-right: 40px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-45 { - margin-right: 45px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-50 { - margin-right: 50px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-55 { - margin-right: 55px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-60 { - margin-right: 60px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-65 { - margin-right: 65px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-70 { - margin-right: 70px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-75 { - margin-right: 75px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-80 { - margin-right: 80px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-85 { - margin-right: 85px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-90 { - margin-right: 90px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-95 { - margin-right: 95px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-100 { - margin-right: 100px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-105 { - margin-right: 105px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-110 { - margin-right: 110px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-115 { - margin-right: 115px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-120 { - margin-right: 120px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-125 { - margin-right: 125px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-130 { - margin-right: 130px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-135 { - margin-right: 135px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-140 { - margin-right: 140px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-145 { - margin-right: 145px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-150 { - margin-right: 150px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-155 { - margin-right: 155px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-160 { - margin-right: 160px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-165 { - margin-right: 165px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-170 { - margin-right: 170px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-175 { - margin-right: 175px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-180 { - margin-right: 180px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-185 { - margin-right: 185px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-190 { - margin-right: 190px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-195 { - margin-right: 195px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-200 { - margin-right: 200px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-205 { - margin-right: 205px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-210 { - margin-right: 210px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-215 { - margin-right: 215px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-220 { - margin-right: 220px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-225 { - margin-right: 225px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-230 { - margin-right: 230px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-235 { - margin-right: 235px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-240 { - margin-right: 240px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-245 { - margin-right: 245px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-250 { - margin-right: 250px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-255 { - margin-right: 255px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-260 { - margin-right: 260px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-265 { - margin-right: 265px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-270 { - margin-right: 270px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-275 { - margin-right: 275px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-280 { - margin-right: 280px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-285 { - margin-right: 285px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-290 { - margin-right: 290px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-295 { - margin-right: 295px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-300 { - margin-right: 300px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-305 { - margin-right: 305px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-310 { - margin-right: 310px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-315 { - margin-right: 315px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-320 { - margin-right: 320px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-325 { - margin-right: 325px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-330 { - margin-right: 330px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-335 { - margin-right: 335px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-340 { - margin-right: 340px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-345 { - margin-right: 345px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-350 { - margin-right: 350px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-355 { - margin-right: 355px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-360 { - margin-right: 360px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-365 { - margin-right: 365px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-370 { - margin-right: 370px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-375 { - margin-right: 375px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-380 { - margin-right: 380px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-385 { - margin-right: 385px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-390 { - margin-right: 390px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-395 { - margin-right: 395px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-400 { - margin-right: 400px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-405 { - margin-right: 405px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-410 { - margin-right: 410px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-415 { - margin-right: 415px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-420 { - margin-right: 420px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-425 { - margin-right: 425px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-430 { - margin-right: 430px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-435 { - margin-right: 435px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-440 { - margin-right: 440px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-445 { - margin-right: 445px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-450 { - margin-right: 450px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-455 { - margin-right: 455px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-460 { - margin-right: 460px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-465 { - margin-right: 465px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-470 { - margin-right: 470px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-475 { - margin-right: 475px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-480 { - margin-right: 480px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-485 { - margin-right: 485px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-490 { - margin-right: 490px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-495 { - margin-right: 495px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .mr-lg-500 { - margin-right: 500px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-0 { - margin-right: 0px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-5 { - margin-right: 5px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-10 { - margin-right: 10px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-15 { - margin-right: 15px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-20 { - margin-right: 20px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-25 { - margin-right: 25px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-30 { - margin-right: 30px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-35 { - margin-right: 35px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-40 { - margin-right: 40px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-45 { - margin-right: 45px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-50 { - margin-right: 50px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-55 { - margin-right: 55px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-60 { - margin-right: 60px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-65 { - margin-right: 65px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-70 { - margin-right: 70px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-75 { - margin-right: 75px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-80 { - margin-right: 80px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-85 { - margin-right: 85px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-90 { - margin-right: 90px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-95 { - margin-right: 95px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-100 { - margin-right: 100px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-105 { - margin-right: 105px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-110 { - margin-right: 110px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-115 { - margin-right: 115px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-120 { - margin-right: 120px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-125 { - margin-right: 125px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-130 { - margin-right: 130px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-135 { - margin-right: 135px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-140 { - margin-right: 140px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-145 { - margin-right: 145px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-150 { - margin-right: 150px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-155 { - margin-right: 155px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-160 { - margin-right: 160px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-165 { - margin-right: 165px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-170 { - margin-right: 170px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-175 { - margin-right: 175px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-180 { - margin-right: 180px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-185 { - margin-right: 185px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-190 { - margin-right: 190px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-195 { - margin-right: 195px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-200 { - margin-right: 200px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-205 { - margin-right: 205px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-210 { - margin-right: 210px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-215 { - margin-right: 215px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-220 { - margin-right: 220px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-225 { - margin-right: 225px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-230 { - margin-right: 230px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-235 { - margin-right: 235px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-240 { - margin-right: 240px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-245 { - margin-right: 245px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-250 { - margin-right: 250px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-255 { - margin-right: 255px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-260 { - margin-right: 260px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-265 { - margin-right: 265px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-270 { - margin-right: 270px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-275 { - margin-right: 275px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-280 { - margin-right: 280px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-285 { - margin-right: 285px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-290 { - margin-right: 290px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-295 { - margin-right: 295px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-300 { - margin-right: 300px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-305 { - margin-right: 305px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-310 { - margin-right: 310px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-315 { - margin-right: 315px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-320 { - margin-right: 320px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-325 { - margin-right: 325px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-330 { - margin-right: 330px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-335 { - margin-right: 335px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-340 { - margin-right: 340px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-345 { - margin-right: 345px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-350 { - margin-right: 350px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-355 { - margin-right: 355px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-360 { - margin-right: 360px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-365 { - margin-right: 365px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-370 { - margin-right: 370px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-375 { - margin-right: 375px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-380 { - margin-right: 380px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-385 { - margin-right: 385px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-390 { - margin-right: 390px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-395 { - margin-right: 395px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-400 { - margin-right: 400px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-405 { - margin-right: 405px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-410 { - margin-right: 410px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-415 { - margin-right: 415px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-420 { - margin-right: 420px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-425 { - margin-right: 425px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-430 { - margin-right: 430px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-435 { - margin-right: 435px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-440 { - margin-right: 440px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-445 { - margin-right: 445px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-450 { - margin-right: 450px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-455 { - margin-right: 455px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-460 { - margin-right: 460px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-465 { - margin-right: 465px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-470 { - margin-right: 470px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-475 { - margin-right: 475px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-480 { - margin-right: 480px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-485 { - margin-right: 485px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-490 { - margin-right: 490px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-495 { - margin-right: 495px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .mr-md-500 { - margin-right: 500px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-0 { - margin-right: 0px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-5 { - margin-right: 5px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-10 { - margin-right: 10px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-15 { - margin-right: 15px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-20 { - margin-right: 20px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-25 { - margin-right: 25px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-30 { - margin-right: 30px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-35 { - margin-right: 35px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-40 { - margin-right: 40px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-45 { - margin-right: 45px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-50 { - margin-right: 50px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-55 { - margin-right: 55px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-60 { - margin-right: 60px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-65 { - margin-right: 65px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-70 { - margin-right: 70px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-75 { - margin-right: 75px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-80 { - margin-right: 80px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-85 { - margin-right: 85px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-90 { - margin-right: 90px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-95 { - margin-right: 95px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-100 { - margin-right: 100px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-105 { - margin-right: 105px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-110 { - margin-right: 110px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-115 { - margin-right: 115px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-120 { - margin-right: 120px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-125 { - margin-right: 125px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-130 { - margin-right: 130px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-135 { - margin-right: 135px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-140 { - margin-right: 140px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-145 { - margin-right: 145px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-150 { - margin-right: 150px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-155 { - margin-right: 155px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-160 { - margin-right: 160px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-165 { - margin-right: 165px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-170 { - margin-right: 170px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-175 { - margin-right: 175px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-180 { - margin-right: 180px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-185 { - margin-right: 185px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-190 { - margin-right: 190px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-195 { - margin-right: 195px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-200 { - margin-right: 200px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-205 { - margin-right: 205px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-210 { - margin-right: 210px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-215 { - margin-right: 215px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-220 { - margin-right: 220px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-225 { - margin-right: 225px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-230 { - margin-right: 230px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-235 { - margin-right: 235px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-240 { - margin-right: 240px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-245 { - margin-right: 245px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-250 { - margin-right: 250px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-255 { - margin-right: 255px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-260 { - margin-right: 260px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-265 { - margin-right: 265px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-270 { - margin-right: 270px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-275 { - margin-right: 275px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-280 { - margin-right: 280px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-285 { - margin-right: 285px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-290 { - margin-right: 290px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-295 { - margin-right: 295px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-300 { - margin-right: 300px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-305 { - margin-right: 305px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-310 { - margin-right: 310px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-315 { - margin-right: 315px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-320 { - margin-right: 320px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-325 { - margin-right: 325px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-330 { - margin-right: 330px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-335 { - margin-right: 335px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-340 { - margin-right: 340px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-345 { - margin-right: 345px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-350 { - margin-right: 350px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-355 { - margin-right: 355px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-360 { - margin-right: 360px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-365 { - margin-right: 365px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-370 { - margin-right: 370px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-375 { - margin-right: 375px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-380 { - margin-right: 380px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-385 { - margin-right: 385px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-390 { - margin-right: 390px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-395 { - margin-right: 395px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-400 { - margin-right: 400px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-405 { - margin-right: 405px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-410 { - margin-right: 410px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-415 { - margin-right: 415px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-420 { - margin-right: 420px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-425 { - margin-right: 425px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-430 { - margin-right: 430px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-435 { - margin-right: 435px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-440 { - margin-right: 440px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-445 { - margin-right: 445px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-450 { - margin-right: 450px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-455 { - margin-right: 455px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-460 { - margin-right: 460px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-465 { - margin-right: 465px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-470 { - margin-right: 470px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-475 { - margin-right: 475px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-480 { - margin-right: 480px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-485 { - margin-right: 485px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-490 { - margin-right: 490px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-495 { - margin-right: 495px !important; - } -} - -@media only screen and (max-width: 767px) { - .mr-sm-500 { - margin-right: 500px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-0 { - margin-right: 0px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-5 { - margin-right: 5px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-10 { - margin-right: 10px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-15 { - margin-right: 15px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-20 { - margin-right: 20px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-25 { - margin-right: 25px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-30 { - margin-right: 30px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-35 { - margin-right: 35px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-40 { - margin-right: 40px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-45 { - margin-right: 45px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-50 { - margin-right: 50px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-55 { - margin-right: 55px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-60 { - margin-right: 60px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-65 { - margin-right: 65px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-70 { - margin-right: 70px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-75 { - margin-right: 75px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-80 { - margin-right: 80px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-85 { - margin-right: 85px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-90 { - margin-right: 90px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-95 { - margin-right: 95px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-100 { - margin-right: 100px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-105 { - margin-right: 105px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-110 { - margin-right: 110px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-115 { - margin-right: 115px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-120 { - margin-right: 120px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-125 { - margin-right: 125px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-130 { - margin-right: 130px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-135 { - margin-right: 135px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-140 { - margin-right: 140px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-145 { - margin-right: 145px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-150 { - margin-right: 150px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-155 { - margin-right: 155px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-160 { - margin-right: 160px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-165 { - margin-right: 165px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-170 { - margin-right: 170px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-175 { - margin-right: 175px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-180 { - margin-right: 180px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-185 { - margin-right: 185px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-190 { - margin-right: 190px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-195 { - margin-right: 195px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-200 { - margin-right: 200px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-205 { - margin-right: 205px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-210 { - margin-right: 210px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-215 { - margin-right: 215px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-220 { - margin-right: 220px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-225 { - margin-right: 225px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-230 { - margin-right: 230px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-235 { - margin-right: 235px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-240 { - margin-right: 240px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-245 { - margin-right: 245px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-250 { - margin-right: 250px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-255 { - margin-right: 255px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-260 { - margin-right: 260px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-265 { - margin-right: 265px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-270 { - margin-right: 270px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-275 { - margin-right: 275px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-280 { - margin-right: 280px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-285 { - margin-right: 285px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-290 { - margin-right: 290px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-295 { - margin-right: 295px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-300 { - margin-right: 300px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-305 { - margin-right: 305px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-310 { - margin-right: 310px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-315 { - margin-right: 315px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-320 { - margin-right: 320px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-325 { - margin-right: 325px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-330 { - margin-right: 330px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-335 { - margin-right: 335px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-340 { - margin-right: 340px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-345 { - margin-right: 345px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-350 { - margin-right: 350px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-355 { - margin-right: 355px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-360 { - margin-right: 360px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-365 { - margin-right: 365px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-370 { - margin-right: 370px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-375 { - margin-right: 375px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-380 { - margin-right: 380px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-385 { - margin-right: 385px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-390 { - margin-right: 390px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-395 { - margin-right: 395px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-400 { - margin-right: 400px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-405 { - margin-right: 405px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-410 { - margin-right: 410px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-415 { - margin-right: 415px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-420 { - margin-right: 420px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-425 { - margin-right: 425px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-430 { - margin-right: 430px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-435 { - margin-right: 435px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-440 { - margin-right: 440px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-445 { - margin-right: 445px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-450 { - margin-right: 450px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-455 { - margin-right: 455px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-460 { - margin-right: 460px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-465 { - margin-right: 465px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-470 { - margin-right: 470px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-475 { - margin-right: 475px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-480 { - margin-right: 480px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-485 { - margin-right: 485px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-490 { - margin-right: 490px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-495 { - margin-right: 495px !important; - } -} - -@media only screen and (max-width: 575px) { - .mr-xs-500 { - margin-right: 500px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-0 { - margin-right: 0px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-5 { - margin-right: 5px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-10 { - margin-right: 10px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-15 { - margin-right: 15px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-20 { - margin-right: 20px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-25 { - margin-right: 25px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-30 { - margin-right: 30px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-35 { - margin-right: 35px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-40 { - margin-right: 40px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-45 { - margin-right: 45px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-50 { - margin-right: 50px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-55 { - margin-right: 55px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-60 { - margin-right: 60px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-65 { - margin-right: 65px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-70 { - margin-right: 70px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-75 { - margin-right: 75px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-80 { - margin-right: 80px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-85 { - margin-right: 85px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-90 { - margin-right: 90px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-95 { - margin-right: 95px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-100 { - margin-right: 100px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-105 { - margin-right: 105px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-110 { - margin-right: 110px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-115 { - margin-right: 115px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-120 { - margin-right: 120px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-125 { - margin-right: 125px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-130 { - margin-right: 130px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-135 { - margin-right: 135px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-140 { - margin-right: 140px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-145 { - margin-right: 145px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-150 { - margin-right: 150px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-155 { - margin-right: 155px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-160 { - margin-right: 160px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-165 { - margin-right: 165px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-170 { - margin-right: 170px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-175 { - margin-right: 175px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-180 { - margin-right: 180px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-185 { - margin-right: 185px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-190 { - margin-right: 190px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-195 { - margin-right: 195px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-200 { - margin-right: 200px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-205 { - margin-right: 205px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-210 { - margin-right: 210px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-215 { - margin-right: 215px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-220 { - margin-right: 220px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-225 { - margin-right: 225px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-230 { - margin-right: 230px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-235 { - margin-right: 235px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-240 { - margin-right: 240px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-245 { - margin-right: 245px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-250 { - margin-right: 250px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-255 { - margin-right: 255px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-260 { - margin-right: 260px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-265 { - margin-right: 265px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-270 { - margin-right: 270px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-275 { - margin-right: 275px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-280 { - margin-right: 280px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-285 { - margin-right: 285px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-290 { - margin-right: 290px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-295 { - margin-right: 295px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-300 { - margin-right: 300px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-305 { - margin-right: 305px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-310 { - margin-right: 310px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-315 { - margin-right: 315px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-320 { - margin-right: 320px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-325 { - margin-right: 325px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-330 { - margin-right: 330px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-335 { - margin-right: 335px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-340 { - margin-right: 340px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-345 { - margin-right: 345px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-350 { - margin-right: 350px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-355 { - margin-right: 355px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-360 { - margin-right: 360px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-365 { - margin-right: 365px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-370 { - margin-right: 370px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-375 { - margin-right: 375px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-380 { - margin-right: 380px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-385 { - margin-right: 385px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-390 { - margin-right: 390px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-395 { - margin-right: 395px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-400 { - margin-right: 400px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-405 { - margin-right: 405px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-410 { - margin-right: 410px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-415 { - margin-right: 415px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-420 { - margin-right: 420px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-425 { - margin-right: 425px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-430 { - margin-right: 430px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-435 { - margin-right: 435px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-440 { - margin-right: 440px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-445 { - margin-right: 445px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-450 { - margin-right: 450px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-455 { - margin-right: 455px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-460 { - margin-right: 460px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-465 { - margin-right: 465px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-470 { - margin-right: 470px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-475 { - margin-right: 475px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-480 { - margin-right: 480px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-485 { - margin-right: 485px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-490 { - margin-right: 490px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-495 { - margin-right: 495px !important; - } -} - -@media only screen and (max-width: 479px) { - .mr-xxs-500 { - margin-right: 500px !important; - } -} - -/*-- Padding Top --*/ -.pt-0 { - padding-top: 0px !important; -} - -.pt-5 { - padding-top: 5px !important; -} - -.pt-10 { - padding-top: 10px !important; -} - -.pt-15 { - padding-top: 15px !important; -} - -.pt-20 { - padding-top: 20px !important; -} - -.pt-25 { - padding-top: 25px !important; -} - -.pt-30 { - padding-top: 30px !important; -} - -.pt-35 { - padding-top: 35px !important; -} - -.pt-40 { - padding-top: 40px !important; -} - -.pt-45 { - padding-top: 45px !important; -} - -.pt-50 { - padding-top: 50px !important; -} - -.pt-55 { - padding-top: 55px !important; -} - -.pt-60 { - padding-top: 60px !important; -} - -.pt-65 { - padding-top: 65px !important; -} - -.pt-70 { - padding-top: 70px !important; -} - -.pt-75 { - padding-top: 75px !important; -} - -.pt-80 { - padding-top: 80px !important; -} - -.pt-85 { - padding-top: 85px !important; -} - -.pt-90 { - padding-top: 90px !important; -} - -.pt-95 { - padding-top: 95px !important; -} - -.pt-100 { - padding-top: 100px !important; -} - -.pt-105 { - padding-top: 105px !important; -} - -.pt-110 { - padding-top: 110px !important; -} - -.pt-115 { - padding-top: 115px !important; -} - -.pt-120 { - padding-top: 120px !important; -} - -.pt-125 { - padding-top: 125px !important; -} - -.pt-130 { - padding-top: 130px !important; -} - -.pt-135 { - padding-top: 135px !important; -} - -.pt-140 { - padding-top: 140px !important; -} - -.pt-145 { - padding-top: 145px !important; -} - -.pt-150 { - padding-top: 150px !important; -} - -.pt-155 { - padding-top: 155px !important; -} - -.pt-160 { - padding-top: 160px !important; -} - -.pt-165 { - padding-top: 165px !important; -} - -.pt-170 { - padding-top: 170px !important; -} - -.pt-175 { - padding-top: 175px !important; -} - -.pt-180 { - padding-top: 180px !important; -} - -.pt-185 { - padding-top: 185px !important; -} - -.pt-190 { - padding-top: 190px !important; -} - -.pt-195 { - padding-top: 195px !important; -} - -.pt-200 { - padding-top: 200px !important; -} - -.pt-205 { - padding-top: 205px !important; -} - -.pt-210 { - padding-top: 210px !important; -} - -.pt-215 { - padding-top: 215px !important; -} - -.pt-220 { - padding-top: 220px !important; -} - -.pt-225 { - padding-top: 225px !important; -} - -.pt-230 { - padding-top: 230px !important; -} - -.pt-235 { - padding-top: 235px !important; -} - -.pt-240 { - padding-top: 240px !important; -} - -.pt-245 { - padding-top: 245px !important; -} - -.pt-250 { - padding-top: 250px !important; -} - -.pt-255 { - padding-top: 255px !important; -} - -.pt-260 { - padding-top: 260px !important; -} - -.pt-265 { - padding-top: 265px !important; -} - -.pt-270 { - padding-top: 270px !important; -} - -.pt-275 { - padding-top: 275px !important; -} - -.pt-280 { - padding-top: 280px !important; -} - -.pt-285 { - padding-top: 285px !important; -} - -.pt-290 { - padding-top: 290px !important; -} - -.pt-295 { - padding-top: 295px !important; -} - -.pt-300 { - padding-top: 300px !important; -} - -.pt-305 { - padding-top: 305px !important; -} - -.pt-310 { - padding-top: 310px !important; -} - -.pt-315 { - padding-top: 315px !important; -} - -.pt-320 { - padding-top: 320px !important; -} - -.pt-325 { - padding-top: 325px !important; -} - -.pt-330 { - padding-top: 330px !important; -} - -.pt-335 { - padding-top: 335px !important; -} - -.pt-340 { - padding-top: 340px !important; -} - -.pt-345 { - padding-top: 345px !important; -} - -.pt-350 { - padding-top: 350px !important; -} - -.pt-355 { - padding-top: 355px !important; -} - -.pt-360 { - padding-top: 360px !important; -} - -.pt-365 { - padding-top: 365px !important; -} - -.pt-370 { - padding-top: 370px !important; -} - -.pt-375 { - padding-top: 375px !important; -} - -.pt-380 { - padding-top: 380px !important; -} - -.pt-385 { - padding-top: 385px !important; -} - -.pt-390 { - padding-top: 390px !important; -} - -.pt-395 { - padding-top: 395px !important; -} - -.pt-400 { - padding-top: 400px !important; -} - -.pt-405 { - padding-top: 405px !important; -} - -.pt-410 { - padding-top: 410px !important; -} - -.pt-415 { - padding-top: 415px !important; -} - -.pt-420 { - padding-top: 420px !important; -} - -.pt-425 { - padding-top: 425px !important; -} - -.pt-430 { - padding-top: 430px !important; -} - -.pt-435 { - padding-top: 435px !important; -} - -.pt-440 { - padding-top: 440px !important; -} - -.pt-445 { - padding-top: 445px !important; -} - -.pt-450 { - padding-top: 450px !important; -} - -.pt-455 { - padding-top: 455px !important; -} - -.pt-460 { - padding-top: 460px !important; -} - -.pt-465 { - padding-top: 465px !important; -} - -.pt-470 { - padding-top: 470px !important; -} - -.pt-475 { - padding-top: 475px !important; -} - -.pt-480 { - padding-top: 480px !important; -} - -.pt-485 { - padding-top: 485px !important; -} - -.pt-490 { - padding-top: 490px !important; -} - -.pt-495 { - padding-top: 495px !important; -} - -.pt-500 { - padding-top: 500px !important; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-0 { - padding-top: 0px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-5 { - padding-top: 5px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-10 { - padding-top: 10px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-15 { - padding-top: 15px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-20 { - padding-top: 20px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-25 { - padding-top: 25px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-30 { - padding-top: 30px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-35 { - padding-top: 35px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-40 { - padding-top: 40px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-45 { - padding-top: 45px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-50 { - padding-top: 50px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-55 { - padding-top: 55px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-60 { - padding-top: 60px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-65 { - padding-top: 65px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-70 { - padding-top: 70px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-75 { - padding-top: 75px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-80 { - padding-top: 80px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-85 { - padding-top: 85px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-90 { - padding-top: 90px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-95 { - padding-top: 95px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-100 { - padding-top: 100px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-105 { - padding-top: 105px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-110 { - padding-top: 110px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-115 { - padding-top: 115px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-120 { - padding-top: 120px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-125 { - padding-top: 125px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-130 { - padding-top: 130px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-135 { - padding-top: 135px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-140 { - padding-top: 140px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-145 { - padding-top: 145px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-150 { - padding-top: 150px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-155 { - padding-top: 155px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-160 { - padding-top: 160px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-165 { - padding-top: 165px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-170 { - padding-top: 170px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-175 { - padding-top: 175px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-180 { - padding-top: 180px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-185 { - padding-top: 185px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-190 { - padding-top: 190px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-195 { - padding-top: 195px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-200 { - padding-top: 200px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-205 { - padding-top: 205px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-210 { - padding-top: 210px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-215 { - padding-top: 215px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-220 { - padding-top: 220px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-225 { - padding-top: 225px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-230 { - padding-top: 230px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-235 { - padding-top: 235px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-240 { - padding-top: 240px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-245 { - padding-top: 245px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-250 { - padding-top: 250px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-255 { - padding-top: 255px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-260 { - padding-top: 260px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-265 { - padding-top: 265px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-270 { - padding-top: 270px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-275 { - padding-top: 275px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-280 { - padding-top: 280px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-285 { - padding-top: 285px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-290 { - padding-top: 290px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-295 { - padding-top: 295px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-300 { - padding-top: 300px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-305 { - padding-top: 305px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-310 { - padding-top: 310px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-315 { - padding-top: 315px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-320 { - padding-top: 320px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-325 { - padding-top: 325px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-330 { - padding-top: 330px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-335 { - padding-top: 335px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-340 { - padding-top: 340px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-345 { - padding-top: 345px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-350 { - padding-top: 350px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-355 { - padding-top: 355px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-360 { - padding-top: 360px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-365 { - padding-top: 365px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-370 { - padding-top: 370px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-375 { - padding-top: 375px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-380 { - padding-top: 380px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-385 { - padding-top: 385px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-390 { - padding-top: 390px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-395 { - padding-top: 395px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-400 { - padding-top: 400px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-405 { - padding-top: 405px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-410 { - padding-top: 410px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-415 { - padding-top: 415px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-420 { - padding-top: 420px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-425 { - padding-top: 425px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-430 { - padding-top: 430px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-435 { - padding-top: 435px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-440 { - padding-top: 440px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-445 { - padding-top: 445px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-450 { - padding-top: 450px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-455 { - padding-top: 455px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-460 { - padding-top: 460px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-465 { - padding-top: 465px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-470 { - padding-top: 470px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-475 { - padding-top: 475px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-480 { - padding-top: 480px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-485 { - padding-top: 485px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-490 { - padding-top: 490px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-495 { - padding-top: 495px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pt-xl-500 { - padding-top: 500px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-0 { - padding-top: 0px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-5 { - padding-top: 5px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-10 { - padding-top: 10px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-15 { - padding-top: 15px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-20 { - padding-top: 20px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-25 { - padding-top: 25px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-30 { - padding-top: 30px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-35 { - padding-top: 35px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-40 { - padding-top: 40px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-45 { - padding-top: 45px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-50 { - padding-top: 50px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-55 { - padding-top: 55px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-60 { - padding-top: 60px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-65 { - padding-top: 65px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-70 { - padding-top: 70px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-75 { - padding-top: 75px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-80 { - padding-top: 80px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-85 { - padding-top: 85px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-90 { - padding-top: 90px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-95 { - padding-top: 95px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-100 { - padding-top: 100px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-105 { - padding-top: 105px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-110 { - padding-top: 110px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-115 { - padding-top: 115px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-120 { - padding-top: 120px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-125 { - padding-top: 125px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-130 { - padding-top: 130px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-135 { - padding-top: 135px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-140 { - padding-top: 140px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-145 { - padding-top: 145px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-150 { - padding-top: 150px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-155 { - padding-top: 155px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-160 { - padding-top: 160px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-165 { - padding-top: 165px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-170 { - padding-top: 170px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-175 { - padding-top: 175px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-180 { - padding-top: 180px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-185 { - padding-top: 185px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-190 { - padding-top: 190px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-195 { - padding-top: 195px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-200 { - padding-top: 200px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-205 { - padding-top: 205px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-210 { - padding-top: 210px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-215 { - padding-top: 215px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-220 { - padding-top: 220px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-225 { - padding-top: 225px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-230 { - padding-top: 230px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-235 { - padding-top: 235px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-240 { - padding-top: 240px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-245 { - padding-top: 245px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-250 { - padding-top: 250px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-255 { - padding-top: 255px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-260 { - padding-top: 260px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-265 { - padding-top: 265px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-270 { - padding-top: 270px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-275 { - padding-top: 275px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-280 { - padding-top: 280px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-285 { - padding-top: 285px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-290 { - padding-top: 290px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-295 { - padding-top: 295px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-300 { - padding-top: 300px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-305 { - padding-top: 305px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-310 { - padding-top: 310px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-315 { - padding-top: 315px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-320 { - padding-top: 320px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-325 { - padding-top: 325px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-330 { - padding-top: 330px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-335 { - padding-top: 335px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-340 { - padding-top: 340px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-345 { - padding-top: 345px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-350 { - padding-top: 350px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-355 { - padding-top: 355px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-360 { - padding-top: 360px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-365 { - padding-top: 365px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-370 { - padding-top: 370px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-375 { - padding-top: 375px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-380 { - padding-top: 380px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-385 { - padding-top: 385px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-390 { - padding-top: 390px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-395 { - padding-top: 395px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-400 { - padding-top: 400px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-405 { - padding-top: 405px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-410 { - padding-top: 410px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-415 { - padding-top: 415px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-420 { - padding-top: 420px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-425 { - padding-top: 425px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-430 { - padding-top: 430px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-435 { - padding-top: 435px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-440 { - padding-top: 440px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-445 { - padding-top: 445px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-450 { - padding-top: 450px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-455 { - padding-top: 455px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-460 { - padding-top: 460px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-465 { - padding-top: 465px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-470 { - padding-top: 470px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-475 { - padding-top: 475px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-480 { - padding-top: 480px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-485 { - padding-top: 485px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-490 { - padding-top: 490px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-495 { - padding-top: 495px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pt-lg-500 { - padding-top: 500px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-0 { - padding-top: 0px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-5 { - padding-top: 5px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-10 { - padding-top: 10px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-15 { - padding-top: 15px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-20 { - padding-top: 20px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-25 { - padding-top: 25px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-30 { - padding-top: 30px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-35 { - padding-top: 35px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-40 { - padding-top: 40px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-45 { - padding-top: 45px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-50 { - padding-top: 50px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-55 { - padding-top: 55px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-60 { - padding-top: 60px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-65 { - padding-top: 65px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-70 { - padding-top: 70px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-75 { - padding-top: 75px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-80 { - padding-top: 80px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-85 { - padding-top: 85px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-90 { - padding-top: 90px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-95 { - padding-top: 95px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-100 { - padding-top: 100px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-105 { - padding-top: 105px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-110 { - padding-top: 110px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-115 { - padding-top: 115px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-120 { - padding-top: 120px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-125 { - padding-top: 125px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-130 { - padding-top: 130px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-135 { - padding-top: 135px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-140 { - padding-top: 140px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-145 { - padding-top: 145px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-150 { - padding-top: 150px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-155 { - padding-top: 155px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-160 { - padding-top: 160px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-165 { - padding-top: 165px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-170 { - padding-top: 170px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-175 { - padding-top: 175px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-180 { - padding-top: 180px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-185 { - padding-top: 185px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-190 { - padding-top: 190px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-195 { - padding-top: 195px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-200 { - padding-top: 200px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-205 { - padding-top: 205px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-210 { - padding-top: 210px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-215 { - padding-top: 215px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-220 { - padding-top: 220px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-225 { - padding-top: 225px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-230 { - padding-top: 230px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-235 { - padding-top: 235px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-240 { - padding-top: 240px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-245 { - padding-top: 245px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-250 { - padding-top: 250px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-255 { - padding-top: 255px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-260 { - padding-top: 260px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-265 { - padding-top: 265px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-270 { - padding-top: 270px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-275 { - padding-top: 275px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-280 { - padding-top: 280px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-285 { - padding-top: 285px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-290 { - padding-top: 290px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-295 { - padding-top: 295px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-300 { - padding-top: 300px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-305 { - padding-top: 305px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-310 { - padding-top: 310px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-315 { - padding-top: 315px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-320 { - padding-top: 320px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-325 { - padding-top: 325px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-330 { - padding-top: 330px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-335 { - padding-top: 335px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-340 { - padding-top: 340px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-345 { - padding-top: 345px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-350 { - padding-top: 350px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-355 { - padding-top: 355px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-360 { - padding-top: 360px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-365 { - padding-top: 365px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-370 { - padding-top: 370px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-375 { - padding-top: 375px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-380 { - padding-top: 380px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-385 { - padding-top: 385px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-390 { - padding-top: 390px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-395 { - padding-top: 395px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-400 { - padding-top: 400px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-405 { - padding-top: 405px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-410 { - padding-top: 410px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-415 { - padding-top: 415px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-420 { - padding-top: 420px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-425 { - padding-top: 425px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-430 { - padding-top: 430px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-435 { - padding-top: 435px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-440 { - padding-top: 440px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-445 { - padding-top: 445px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-450 { - padding-top: 450px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-455 { - padding-top: 455px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-460 { - padding-top: 460px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-465 { - padding-top: 465px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-470 { - padding-top: 470px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-475 { - padding-top: 475px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-480 { - padding-top: 480px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-485 { - padding-top: 485px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-490 { - padding-top: 490px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-495 { - padding-top: 495px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pt-md-500 { - padding-top: 500px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-0 { - padding-top: 0px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-5 { - padding-top: 5px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-10 { - padding-top: 10px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-15 { - padding-top: 15px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-20 { - padding-top: 20px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-25 { - padding-top: 25px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-30 { - padding-top: 30px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-35 { - padding-top: 35px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-40 { - padding-top: 40px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-45 { - padding-top: 45px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-50 { - padding-top: 50px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-55 { - padding-top: 55px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-60 { - padding-top: 60px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-65 { - padding-top: 65px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-70 { - padding-top: 70px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-75 { - padding-top: 75px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-80 { - padding-top: 80px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-85 { - padding-top: 85px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-90 { - padding-top: 90px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-95 { - padding-top: 95px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-100 { - padding-top: 100px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-105 { - padding-top: 105px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-110 { - padding-top: 110px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-115 { - padding-top: 115px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-120 { - padding-top: 120px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-125 { - padding-top: 125px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-130 { - padding-top: 130px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-135 { - padding-top: 135px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-140 { - padding-top: 140px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-145 { - padding-top: 145px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-150 { - padding-top: 150px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-155 { - padding-top: 155px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-160 { - padding-top: 160px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-165 { - padding-top: 165px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-170 { - padding-top: 170px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-175 { - padding-top: 175px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-180 { - padding-top: 180px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-185 { - padding-top: 185px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-190 { - padding-top: 190px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-195 { - padding-top: 195px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-200 { - padding-top: 200px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-205 { - padding-top: 205px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-210 { - padding-top: 210px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-215 { - padding-top: 215px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-220 { - padding-top: 220px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-225 { - padding-top: 225px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-230 { - padding-top: 230px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-235 { - padding-top: 235px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-240 { - padding-top: 240px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-245 { - padding-top: 245px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-250 { - padding-top: 250px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-255 { - padding-top: 255px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-260 { - padding-top: 260px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-265 { - padding-top: 265px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-270 { - padding-top: 270px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-275 { - padding-top: 275px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-280 { - padding-top: 280px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-285 { - padding-top: 285px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-290 { - padding-top: 290px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-295 { - padding-top: 295px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-300 { - padding-top: 300px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-305 { - padding-top: 305px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-310 { - padding-top: 310px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-315 { - padding-top: 315px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-320 { - padding-top: 320px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-325 { - padding-top: 325px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-330 { - padding-top: 330px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-335 { - padding-top: 335px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-340 { - padding-top: 340px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-345 { - padding-top: 345px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-350 { - padding-top: 350px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-355 { - padding-top: 355px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-360 { - padding-top: 360px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-365 { - padding-top: 365px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-370 { - padding-top: 370px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-375 { - padding-top: 375px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-380 { - padding-top: 380px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-385 { - padding-top: 385px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-390 { - padding-top: 390px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-395 { - padding-top: 395px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-400 { - padding-top: 400px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-405 { - padding-top: 405px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-410 { - padding-top: 410px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-415 { - padding-top: 415px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-420 { - padding-top: 420px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-425 { - padding-top: 425px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-430 { - padding-top: 430px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-435 { - padding-top: 435px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-440 { - padding-top: 440px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-445 { - padding-top: 445px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-450 { - padding-top: 450px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-455 { - padding-top: 455px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-460 { - padding-top: 460px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-465 { - padding-top: 465px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-470 { - padding-top: 470px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-475 { - padding-top: 475px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-480 { - padding-top: 480px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-485 { - padding-top: 485px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-490 { - padding-top: 490px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-495 { - padding-top: 495px !important; - } -} - -@media only screen and (max-width: 767px) { - .pt-sm-500 { - padding-top: 500px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-0 { - padding-top: 0px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-5 { - padding-top: 5px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-10 { - padding-top: 10px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-15 { - padding-top: 15px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-20 { - padding-top: 20px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-25 { - padding-top: 25px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-30 { - padding-top: 30px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-35 { - padding-top: 35px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-40 { - padding-top: 40px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-45 { - padding-top: 45px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-50 { - padding-top: 50px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-55 { - padding-top: 55px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-60 { - padding-top: 60px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-65 { - padding-top: 65px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-70 { - padding-top: 70px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-75 { - padding-top: 75px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-80 { - padding-top: 80px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-85 { - padding-top: 85px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-90 { - padding-top: 90px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-95 { - padding-top: 95px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-100 { - padding-top: 100px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-105 { - padding-top: 105px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-110 { - padding-top: 110px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-115 { - padding-top: 115px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-120 { - padding-top: 120px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-125 { - padding-top: 125px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-130 { - padding-top: 130px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-135 { - padding-top: 135px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-140 { - padding-top: 140px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-145 { - padding-top: 145px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-150 { - padding-top: 150px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-155 { - padding-top: 155px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-160 { - padding-top: 160px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-165 { - padding-top: 165px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-170 { - padding-top: 170px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-175 { - padding-top: 175px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-180 { - padding-top: 180px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-185 { - padding-top: 185px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-190 { - padding-top: 190px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-195 { - padding-top: 195px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-200 { - padding-top: 200px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-205 { - padding-top: 205px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-210 { - padding-top: 210px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-215 { - padding-top: 215px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-220 { - padding-top: 220px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-225 { - padding-top: 225px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-230 { - padding-top: 230px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-235 { - padding-top: 235px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-240 { - padding-top: 240px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-245 { - padding-top: 245px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-250 { - padding-top: 250px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-255 { - padding-top: 255px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-260 { - padding-top: 260px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-265 { - padding-top: 265px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-270 { - padding-top: 270px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-275 { - padding-top: 275px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-280 { - padding-top: 280px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-285 { - padding-top: 285px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-290 { - padding-top: 290px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-295 { - padding-top: 295px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-300 { - padding-top: 300px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-305 { - padding-top: 305px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-310 { - padding-top: 310px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-315 { - padding-top: 315px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-320 { - padding-top: 320px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-325 { - padding-top: 325px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-330 { - padding-top: 330px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-335 { - padding-top: 335px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-340 { - padding-top: 340px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-345 { - padding-top: 345px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-350 { - padding-top: 350px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-355 { - padding-top: 355px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-360 { - padding-top: 360px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-365 { - padding-top: 365px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-370 { - padding-top: 370px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-375 { - padding-top: 375px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-380 { - padding-top: 380px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-385 { - padding-top: 385px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-390 { - padding-top: 390px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-395 { - padding-top: 395px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-400 { - padding-top: 400px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-405 { - padding-top: 405px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-410 { - padding-top: 410px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-415 { - padding-top: 415px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-420 { - padding-top: 420px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-425 { - padding-top: 425px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-430 { - padding-top: 430px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-435 { - padding-top: 435px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-440 { - padding-top: 440px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-445 { - padding-top: 445px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-450 { - padding-top: 450px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-455 { - padding-top: 455px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-460 { - padding-top: 460px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-465 { - padding-top: 465px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-470 { - padding-top: 470px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-475 { - padding-top: 475px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-480 { - padding-top: 480px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-485 { - padding-top: 485px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-490 { - padding-top: 490px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-495 { - padding-top: 495px !important; - } -} - -@media only screen and (max-width: 575px) { - .pt-xs-500 { - padding-top: 500px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-0 { - padding-top: 0px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-5 { - padding-top: 5px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-10 { - padding-top: 10px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-15 { - padding-top: 15px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-20 { - padding-top: 20px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-25 { - padding-top: 25px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-30 { - padding-top: 30px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-35 { - padding-top: 35px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-40 { - padding-top: 40px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-45 { - padding-top: 45px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-50 { - padding-top: 50px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-55 { - padding-top: 55px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-60 { - padding-top: 60px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-65 { - padding-top: 65px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-70 { - padding-top: 70px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-75 { - padding-top: 75px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-80 { - padding-top: 80px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-85 { - padding-top: 85px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-90 { - padding-top: 90px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-95 { - padding-top: 95px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-100 { - padding-top: 100px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-105 { - padding-top: 105px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-110 { - padding-top: 110px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-115 { - padding-top: 115px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-120 { - padding-top: 120px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-125 { - padding-top: 125px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-130 { - padding-top: 130px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-135 { - padding-top: 135px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-140 { - padding-top: 140px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-145 { - padding-top: 145px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-150 { - padding-top: 150px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-155 { - padding-top: 155px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-160 { - padding-top: 160px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-165 { - padding-top: 165px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-170 { - padding-top: 170px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-175 { - padding-top: 175px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-180 { - padding-top: 180px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-185 { - padding-top: 185px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-190 { - padding-top: 190px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-195 { - padding-top: 195px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-200 { - padding-top: 200px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-205 { - padding-top: 205px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-210 { - padding-top: 210px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-215 { - padding-top: 215px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-220 { - padding-top: 220px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-225 { - padding-top: 225px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-230 { - padding-top: 230px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-235 { - padding-top: 235px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-240 { - padding-top: 240px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-245 { - padding-top: 245px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-250 { - padding-top: 250px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-255 { - padding-top: 255px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-260 { - padding-top: 260px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-265 { - padding-top: 265px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-270 { - padding-top: 270px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-275 { - padding-top: 275px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-280 { - padding-top: 280px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-285 { - padding-top: 285px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-290 { - padding-top: 290px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-295 { - padding-top: 295px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-300 { - padding-top: 300px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-305 { - padding-top: 305px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-310 { - padding-top: 310px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-315 { - padding-top: 315px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-320 { - padding-top: 320px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-325 { - padding-top: 325px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-330 { - padding-top: 330px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-335 { - padding-top: 335px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-340 { - padding-top: 340px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-345 { - padding-top: 345px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-350 { - padding-top: 350px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-355 { - padding-top: 355px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-360 { - padding-top: 360px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-365 { - padding-top: 365px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-370 { - padding-top: 370px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-375 { - padding-top: 375px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-380 { - padding-top: 380px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-385 { - padding-top: 385px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-390 { - padding-top: 390px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-395 { - padding-top: 395px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-400 { - padding-top: 400px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-405 { - padding-top: 405px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-410 { - padding-top: 410px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-415 { - padding-top: 415px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-420 { - padding-top: 420px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-425 { - padding-top: 425px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-430 { - padding-top: 430px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-435 { - padding-top: 435px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-440 { - padding-top: 440px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-445 { - padding-top: 445px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-450 { - padding-top: 450px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-455 { - padding-top: 455px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-460 { - padding-top: 460px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-465 { - padding-top: 465px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-470 { - padding-top: 470px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-475 { - padding-top: 475px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-480 { - padding-top: 480px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-485 { - padding-top: 485px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-490 { - padding-top: 490px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-495 { - padding-top: 495px !important; - } -} - -@media only screen and (max-width: 479px) { - .pt-xxs-500 { - padding-top: 500px !important; - } -} - -/*-- Padding Bottom --*/ -.pb-0 { - padding-bottom: 0px !important; -} - -.pb-5 { - padding-bottom: 5px !important; -} - -.pb-10 { - padding-bottom: 10px !important; -} - -.pb-15 { - padding-bottom: 15px !important; -} - -.pb-20 { - padding-bottom: 20px !important; -} - -.pb-25 { - padding-bottom: 25px !important; -} - -.pb-30 { - padding-bottom: 30px !important; -} - -.pb-35 { - padding-bottom: 35px !important; -} - -.pb-40 { - padding-bottom: 40px !important; -} - -.pb-45 { - padding-bottom: 45px !important; -} - -.pb-50 { - padding-bottom: 50px !important; -} - -.pb-55 { - padding-bottom: 55px !important; -} - -.pb-60 { - padding-bottom: 60px !important; -} - -.pb-65 { - padding-bottom: 65px !important; -} - -.pb-70 { - padding-bottom: 70px !important; -} - -.pb-75 { - padding-bottom: 75px !important; -} - -.pb-80 { - padding-bottom: 80px !important; -} - -.pb-85 { - padding-bottom: 85px !important; -} - -.pb-90 { - padding-bottom: 90px !important; -} - -.pb-95 { - padding-bottom: 95px !important; -} - -.pb-100 { - padding-bottom: 100px !important; -} - -.pb-105 { - padding-bottom: 105px !important; -} - -.pb-110 { - padding-bottom: 110px !important; -} - -.pb-115 { - padding-bottom: 115px !important; -} - -.pb-120 { - padding-bottom: 120px !important; -} - -.pb-125 { - padding-bottom: 125px !important; -} - -.pb-130 { - padding-bottom: 130px !important; -} - -.pb-135 { - padding-bottom: 135px !important; -} - -.pb-140 { - padding-bottom: 140px !important; -} - -.pb-145 { - padding-bottom: 145px !important; -} - -.pb-150 { - padding-bottom: 150px !important; -} - -.pb-155 { - padding-bottom: 155px !important; -} - -.pb-160 { - padding-bottom: 160px !important; -} - -.pb-165 { - padding-bottom: 165px !important; -} - -.pb-170 { - padding-bottom: 170px !important; -} - -.pb-175 { - padding-bottom: 175px !important; -} - -.pb-180 { - padding-bottom: 180px !important; -} - -.pb-185 { - padding-bottom: 185px !important; -} - -.pb-190 { - padding-bottom: 190px !important; -} - -.pb-195 { - padding-bottom: 195px !important; -} - -.pb-200 { - padding-bottom: 200px !important; -} - -.pb-205 { - padding-bottom: 205px !important; -} - -.pb-210 { - padding-bottom: 210px !important; -} - -.pb-215 { - padding-bottom: 215px !important; -} - -.pb-220 { - padding-bottom: 220px !important; -} - -.pb-225 { - padding-bottom: 225px !important; -} - -.pb-230 { - padding-bottom: 230px !important; -} - -.pb-235 { - padding-bottom: 235px !important; -} - -.pb-240 { - padding-bottom: 240px !important; -} - -.pb-245 { - padding-bottom: 245px !important; -} - -.pb-250 { - padding-bottom: 250px !important; -} - -.pb-255 { - padding-bottom: 255px !important; -} - -.pb-260 { - padding-bottom: 260px !important; -} - -.pb-265 { - padding-bottom: 265px !important; -} - -.pb-270 { - padding-bottom: 270px !important; -} - -.pb-275 { - padding-bottom: 275px !important; -} - -.pb-280 { - padding-bottom: 280px !important; -} - -.pb-285 { - padding-bottom: 285px !important; -} - -.pb-290 { - padding-bottom: 290px !important; -} - -.pb-295 { - padding-bottom: 295px !important; -} - -.pb-300 { - padding-bottom: 300px !important; -} - -.pb-305 { - padding-bottom: 305px !important; -} - -.pb-310 { - padding-bottom: 310px !important; -} - -.pb-315 { - padding-bottom: 315px !important; -} - -.pb-320 { - padding-bottom: 320px !important; -} - -.pb-325 { - padding-bottom: 325px !important; -} - -.pb-330 { - padding-bottom: 330px !important; -} - -.pb-335 { - padding-bottom: 335px !important; -} - -.pb-340 { - padding-bottom: 340px !important; -} - -.pb-345 { - padding-bottom: 345px !important; -} - -.pb-350 { - padding-bottom: 350px !important; -} - -.pb-355 { - padding-bottom: 355px !important; -} - -.pb-360 { - padding-bottom: 360px !important; -} - -.pb-365 { - padding-bottom: 365px !important; -} - -.pb-370 { - padding-bottom: 370px !important; -} - -.pb-375 { - padding-bottom: 375px !important; -} - -.pb-380 { - padding-bottom: 380px !important; -} - -.pb-385 { - padding-bottom: 385px !important; -} - -.pb-390 { - padding-bottom: 390px !important; -} - -.pb-395 { - padding-bottom: 395px !important; -} - -.pb-400 { - padding-bottom: 400px !important; -} - -.pb-405 { - padding-bottom: 405px !important; -} - -.pb-410 { - padding-bottom: 410px !important; -} - -.pb-415 { - padding-bottom: 415px !important; -} - -.pb-420 { - padding-bottom: 420px !important; -} - -.pb-425 { - padding-bottom: 425px !important; -} - -.pb-430 { - padding-bottom: 430px !important; -} - -.pb-435 { - padding-bottom: 435px !important; -} - -.pb-440 { - padding-bottom: 440px !important; -} - -.pb-445 { - padding-bottom: 445px !important; -} - -.pb-450 { - padding-bottom: 450px !important; -} - -.pb-455 { - padding-bottom: 455px !important; -} - -.pb-460 { - padding-bottom: 460px !important; -} - -.pb-465 { - padding-bottom: 465px !important; -} - -.pb-470 { - padding-bottom: 470px !important; -} - -.pb-475 { - padding-bottom: 475px !important; -} - -.pb-480 { - padding-bottom: 480px !important; -} - -.pb-485 { - padding-bottom: 485px !important; -} - -.pb-490 { - padding-bottom: 490px !important; -} - -.pb-495 { - padding-bottom: 495px !important; -} - -.pb-500 { - padding-bottom: 500px !important; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-0 { - padding-bottom: 0px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-5 { - padding-bottom: 5px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-10 { - padding-bottom: 10px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-15 { - padding-bottom: 15px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-20 { - padding-bottom: 20px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-25 { - padding-bottom: 25px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-30 { - padding-bottom: 30px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-35 { - padding-bottom: 35px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-40 { - padding-bottom: 40px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-45 { - padding-bottom: 45px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-50 { - padding-bottom: 50px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-55 { - padding-bottom: 55px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-60 { - padding-bottom: 60px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-65 { - padding-bottom: 65px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-70 { - padding-bottom: 70px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-75 { - padding-bottom: 75px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-80 { - padding-bottom: 80px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-85 { - padding-bottom: 85px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-90 { - padding-bottom: 90px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-95 { - padding-bottom: 95px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-100 { - padding-bottom: 100px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-105 { - padding-bottom: 105px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-110 { - padding-bottom: 110px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-115 { - padding-bottom: 115px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-120 { - padding-bottom: 120px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-125 { - padding-bottom: 125px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-130 { - padding-bottom: 130px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-135 { - padding-bottom: 135px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-140 { - padding-bottom: 140px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-145 { - padding-bottom: 145px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-150 { - padding-bottom: 150px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-155 { - padding-bottom: 155px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-160 { - padding-bottom: 160px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-165 { - padding-bottom: 165px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-170 { - padding-bottom: 170px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-175 { - padding-bottom: 175px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-180 { - padding-bottom: 180px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-185 { - padding-bottom: 185px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-190 { - padding-bottom: 190px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-195 { - padding-bottom: 195px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-200 { - padding-bottom: 200px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-205 { - padding-bottom: 205px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-210 { - padding-bottom: 210px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-215 { - padding-bottom: 215px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-220 { - padding-bottom: 220px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-225 { - padding-bottom: 225px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-230 { - padding-bottom: 230px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-235 { - padding-bottom: 235px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-240 { - padding-bottom: 240px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-245 { - padding-bottom: 245px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-250 { - padding-bottom: 250px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-255 { - padding-bottom: 255px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-260 { - padding-bottom: 260px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-265 { - padding-bottom: 265px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-270 { - padding-bottom: 270px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-275 { - padding-bottom: 275px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-280 { - padding-bottom: 280px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-285 { - padding-bottom: 285px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-290 { - padding-bottom: 290px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-295 { - padding-bottom: 295px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-300 { - padding-bottom: 300px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-305 { - padding-bottom: 305px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-310 { - padding-bottom: 310px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-315 { - padding-bottom: 315px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-320 { - padding-bottom: 320px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-325 { - padding-bottom: 325px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-330 { - padding-bottom: 330px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-335 { - padding-bottom: 335px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-340 { - padding-bottom: 340px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-345 { - padding-bottom: 345px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-350 { - padding-bottom: 350px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-355 { - padding-bottom: 355px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-360 { - padding-bottom: 360px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-365 { - padding-bottom: 365px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-370 { - padding-bottom: 370px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-375 { - padding-bottom: 375px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-380 { - padding-bottom: 380px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-385 { - padding-bottom: 385px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-390 { - padding-bottom: 390px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-395 { - padding-bottom: 395px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-400 { - padding-bottom: 400px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-405 { - padding-bottom: 405px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-410 { - padding-bottom: 410px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-415 { - padding-bottom: 415px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-420 { - padding-bottom: 420px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-425 { - padding-bottom: 425px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-430 { - padding-bottom: 430px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-435 { - padding-bottom: 435px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-440 { - padding-bottom: 440px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-445 { - padding-bottom: 445px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-450 { - padding-bottom: 450px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-455 { - padding-bottom: 455px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-460 { - padding-bottom: 460px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-465 { - padding-bottom: 465px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-470 { - padding-bottom: 470px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-475 { - padding-bottom: 475px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-480 { - padding-bottom: 480px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-485 { - padding-bottom: 485px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-490 { - padding-bottom: 490px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-495 { - padding-bottom: 495px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pb-xl-500 { - padding-bottom: 500px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-0 { - padding-bottom: 0px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-5 { - padding-bottom: 5px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-10 { - padding-bottom: 10px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-15 { - padding-bottom: 15px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-20 { - padding-bottom: 20px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-25 { - padding-bottom: 25px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-30 { - padding-bottom: 30px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-35 { - padding-bottom: 35px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-40 { - padding-bottom: 40px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-45 { - padding-bottom: 45px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-50 { - padding-bottom: 50px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-55 { - padding-bottom: 55px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-60 { - padding-bottom: 60px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-65 { - padding-bottom: 65px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-70 { - padding-bottom: 70px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-75 { - padding-bottom: 75px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-80 { - padding-bottom: 80px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-85 { - padding-bottom: 85px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-90 { - padding-bottom: 90px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-95 { - padding-bottom: 95px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-100 { - padding-bottom: 100px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-105 { - padding-bottom: 105px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-110 { - padding-bottom: 110px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-115 { - padding-bottom: 115px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-120 { - padding-bottom: 120px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-125 { - padding-bottom: 125px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-130 { - padding-bottom: 130px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-135 { - padding-bottom: 135px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-140 { - padding-bottom: 140px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-145 { - padding-bottom: 145px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-150 { - padding-bottom: 150px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-155 { - padding-bottom: 155px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-160 { - padding-bottom: 160px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-165 { - padding-bottom: 165px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-170 { - padding-bottom: 170px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-175 { - padding-bottom: 175px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-180 { - padding-bottom: 180px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-185 { - padding-bottom: 185px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-190 { - padding-bottom: 190px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-195 { - padding-bottom: 195px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-200 { - padding-bottom: 200px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-205 { - padding-bottom: 205px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-210 { - padding-bottom: 210px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-215 { - padding-bottom: 215px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-220 { - padding-bottom: 220px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-225 { - padding-bottom: 225px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-230 { - padding-bottom: 230px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-235 { - padding-bottom: 235px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-240 { - padding-bottom: 240px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-245 { - padding-bottom: 245px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-250 { - padding-bottom: 250px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-255 { - padding-bottom: 255px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-260 { - padding-bottom: 260px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-265 { - padding-bottom: 265px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-270 { - padding-bottom: 270px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-275 { - padding-bottom: 275px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-280 { - padding-bottom: 280px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-285 { - padding-bottom: 285px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-290 { - padding-bottom: 290px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-295 { - padding-bottom: 295px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-300 { - padding-bottom: 300px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-305 { - padding-bottom: 305px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-310 { - padding-bottom: 310px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-315 { - padding-bottom: 315px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-320 { - padding-bottom: 320px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-325 { - padding-bottom: 325px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-330 { - padding-bottom: 330px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-335 { - padding-bottom: 335px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-340 { - padding-bottom: 340px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-345 { - padding-bottom: 345px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-350 { - padding-bottom: 350px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-355 { - padding-bottom: 355px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-360 { - padding-bottom: 360px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-365 { - padding-bottom: 365px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-370 { - padding-bottom: 370px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-375 { - padding-bottom: 375px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-380 { - padding-bottom: 380px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-385 { - padding-bottom: 385px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-390 { - padding-bottom: 390px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-395 { - padding-bottom: 395px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-400 { - padding-bottom: 400px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-405 { - padding-bottom: 405px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-410 { - padding-bottom: 410px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-415 { - padding-bottom: 415px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-420 { - padding-bottom: 420px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-425 { - padding-bottom: 425px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-430 { - padding-bottom: 430px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-435 { - padding-bottom: 435px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-440 { - padding-bottom: 440px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-445 { - padding-bottom: 445px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-450 { - padding-bottom: 450px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-455 { - padding-bottom: 455px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-460 { - padding-bottom: 460px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-465 { - padding-bottom: 465px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-470 { - padding-bottom: 470px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-475 { - padding-bottom: 475px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-480 { - padding-bottom: 480px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-485 { - padding-bottom: 485px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-490 { - padding-bottom: 490px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-495 { - padding-bottom: 495px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pb-lg-500 { - padding-bottom: 500px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-0 { - padding-bottom: 0px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-5 { - padding-bottom: 5px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-10 { - padding-bottom: 10px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-15 { - padding-bottom: 15px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-20 { - padding-bottom: 20px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-25 { - padding-bottom: 25px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-30 { - padding-bottom: 30px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-35 { - padding-bottom: 35px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-40 { - padding-bottom: 40px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-45 { - padding-bottom: 45px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-50 { - padding-bottom: 50px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-55 { - padding-bottom: 55px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-60 { - padding-bottom: 60px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-65 { - padding-bottom: 65px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-70 { - padding-bottom: 70px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-75 { - padding-bottom: 75px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-80 { - padding-bottom: 80px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-85 { - padding-bottom: 85px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-90 { - padding-bottom: 90px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-95 { - padding-bottom: 95px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-100 { - padding-bottom: 100px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-105 { - padding-bottom: 105px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-110 { - padding-bottom: 110px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-115 { - padding-bottom: 115px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-120 { - padding-bottom: 120px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-125 { - padding-bottom: 125px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-130 { - padding-bottom: 130px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-135 { - padding-bottom: 135px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-140 { - padding-bottom: 140px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-145 { - padding-bottom: 145px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-150 { - padding-bottom: 150px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-155 { - padding-bottom: 155px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-160 { - padding-bottom: 160px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-165 { - padding-bottom: 165px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-170 { - padding-bottom: 170px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-175 { - padding-bottom: 175px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-180 { - padding-bottom: 180px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-185 { - padding-bottom: 185px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-190 { - padding-bottom: 190px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-195 { - padding-bottom: 195px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-200 { - padding-bottom: 200px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-205 { - padding-bottom: 205px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-210 { - padding-bottom: 210px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-215 { - padding-bottom: 215px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-220 { - padding-bottom: 220px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-225 { - padding-bottom: 225px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-230 { - padding-bottom: 230px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-235 { - padding-bottom: 235px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-240 { - padding-bottom: 240px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-245 { - padding-bottom: 245px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-250 { - padding-bottom: 250px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-255 { - padding-bottom: 255px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-260 { - padding-bottom: 260px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-265 { - padding-bottom: 265px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-270 { - padding-bottom: 270px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-275 { - padding-bottom: 275px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-280 { - padding-bottom: 280px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-285 { - padding-bottom: 285px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-290 { - padding-bottom: 290px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-295 { - padding-bottom: 295px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-300 { - padding-bottom: 300px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-305 { - padding-bottom: 305px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-310 { - padding-bottom: 310px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-315 { - padding-bottom: 315px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-320 { - padding-bottom: 320px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-325 { - padding-bottom: 325px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-330 { - padding-bottom: 330px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-335 { - padding-bottom: 335px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-340 { - padding-bottom: 340px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-345 { - padding-bottom: 345px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-350 { - padding-bottom: 350px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-355 { - padding-bottom: 355px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-360 { - padding-bottom: 360px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-365 { - padding-bottom: 365px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-370 { - padding-bottom: 370px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-375 { - padding-bottom: 375px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-380 { - padding-bottom: 380px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-385 { - padding-bottom: 385px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-390 { - padding-bottom: 390px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-395 { - padding-bottom: 395px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-400 { - padding-bottom: 400px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-405 { - padding-bottom: 405px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-410 { - padding-bottom: 410px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-415 { - padding-bottom: 415px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-420 { - padding-bottom: 420px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-425 { - padding-bottom: 425px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-430 { - padding-bottom: 430px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-435 { - padding-bottom: 435px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-440 { - padding-bottom: 440px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-445 { - padding-bottom: 445px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-450 { - padding-bottom: 450px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-455 { - padding-bottom: 455px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-460 { - padding-bottom: 460px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-465 { - padding-bottom: 465px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-470 { - padding-bottom: 470px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-475 { - padding-bottom: 475px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-480 { - padding-bottom: 480px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-485 { - padding-bottom: 485px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-490 { - padding-bottom: 490px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-495 { - padding-bottom: 495px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pb-md-500 { - padding-bottom: 500px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-0 { - padding-bottom: 0px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-5 { - padding-bottom: 5px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-10 { - padding-bottom: 10px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-15 { - padding-bottom: 15px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-20 { - padding-bottom: 20px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-25 { - padding-bottom: 25px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-30 { - padding-bottom: 30px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-35 { - padding-bottom: 35px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-40 { - padding-bottom: 40px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-45 { - padding-bottom: 45px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-50 { - padding-bottom: 50px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-55 { - padding-bottom: 55px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-60 { - padding-bottom: 60px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-65 { - padding-bottom: 65px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-70 { - padding-bottom: 70px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-75 { - padding-bottom: 75px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-80 { - padding-bottom: 80px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-85 { - padding-bottom: 85px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-90 { - padding-bottom: 90px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-95 { - padding-bottom: 95px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-100 { - padding-bottom: 100px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-105 { - padding-bottom: 105px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-110 { - padding-bottom: 110px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-115 { - padding-bottom: 115px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-120 { - padding-bottom: 120px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-125 { - padding-bottom: 125px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-130 { - padding-bottom: 130px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-135 { - padding-bottom: 135px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-140 { - padding-bottom: 140px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-145 { - padding-bottom: 145px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-150 { - padding-bottom: 150px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-155 { - padding-bottom: 155px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-160 { - padding-bottom: 160px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-165 { - padding-bottom: 165px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-170 { - padding-bottom: 170px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-175 { - padding-bottom: 175px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-180 { - padding-bottom: 180px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-185 { - padding-bottom: 185px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-190 { - padding-bottom: 190px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-195 { - padding-bottom: 195px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-200 { - padding-bottom: 200px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-205 { - padding-bottom: 205px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-210 { - padding-bottom: 210px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-215 { - padding-bottom: 215px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-220 { - padding-bottom: 220px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-225 { - padding-bottom: 225px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-230 { - padding-bottom: 230px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-235 { - padding-bottom: 235px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-240 { - padding-bottom: 240px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-245 { - padding-bottom: 245px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-250 { - padding-bottom: 250px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-255 { - padding-bottom: 255px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-260 { - padding-bottom: 260px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-265 { - padding-bottom: 265px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-270 { - padding-bottom: 270px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-275 { - padding-bottom: 275px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-280 { - padding-bottom: 280px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-285 { - padding-bottom: 285px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-290 { - padding-bottom: 290px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-295 { - padding-bottom: 295px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-300 { - padding-bottom: 300px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-305 { - padding-bottom: 305px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-310 { - padding-bottom: 310px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-315 { - padding-bottom: 315px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-320 { - padding-bottom: 320px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-325 { - padding-bottom: 325px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-330 { - padding-bottom: 330px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-335 { - padding-bottom: 335px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-340 { - padding-bottom: 340px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-345 { - padding-bottom: 345px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-350 { - padding-bottom: 350px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-355 { - padding-bottom: 355px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-360 { - padding-bottom: 360px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-365 { - padding-bottom: 365px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-370 { - padding-bottom: 370px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-375 { - padding-bottom: 375px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-380 { - padding-bottom: 380px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-385 { - padding-bottom: 385px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-390 { - padding-bottom: 390px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-395 { - padding-bottom: 395px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-400 { - padding-bottom: 400px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-405 { - padding-bottom: 405px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-410 { - padding-bottom: 410px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-415 { - padding-bottom: 415px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-420 { - padding-bottom: 420px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-425 { - padding-bottom: 425px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-430 { - padding-bottom: 430px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-435 { - padding-bottom: 435px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-440 { - padding-bottom: 440px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-445 { - padding-bottom: 445px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-450 { - padding-bottom: 450px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-455 { - padding-bottom: 455px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-460 { - padding-bottom: 460px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-465 { - padding-bottom: 465px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-470 { - padding-bottom: 470px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-475 { - padding-bottom: 475px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-480 { - padding-bottom: 480px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-485 { - padding-bottom: 485px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-490 { - padding-bottom: 490px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-495 { - padding-bottom: 495px !important; - } -} - -@media only screen and (max-width: 767px) { - .pb-sm-500 { - padding-bottom: 500px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-0 { - padding-bottom: 0px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-5 { - padding-bottom: 5px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-10 { - padding-bottom: 10px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-15 { - padding-bottom: 15px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-20 { - padding-bottom: 20px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-25 { - padding-bottom: 25px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-30 { - padding-bottom: 30px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-35 { - padding-bottom: 35px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-40 { - padding-bottom: 40px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-45 { - padding-bottom: 45px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-50 { - padding-bottom: 50px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-55 { - padding-bottom: 55px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-60 { - padding-bottom: 60px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-65 { - padding-bottom: 65px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-70 { - padding-bottom: 70px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-75 { - padding-bottom: 75px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-80 { - padding-bottom: 80px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-85 { - padding-bottom: 85px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-90 { - padding-bottom: 90px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-95 { - padding-bottom: 95px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-100 { - padding-bottom: 100px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-105 { - padding-bottom: 105px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-110 { - padding-bottom: 110px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-115 { - padding-bottom: 115px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-120 { - padding-bottom: 120px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-125 { - padding-bottom: 125px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-130 { - padding-bottom: 130px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-135 { - padding-bottom: 135px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-140 { - padding-bottom: 140px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-145 { - padding-bottom: 145px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-150 { - padding-bottom: 150px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-155 { - padding-bottom: 155px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-160 { - padding-bottom: 160px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-165 { - padding-bottom: 165px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-170 { - padding-bottom: 170px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-175 { - padding-bottom: 175px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-180 { - padding-bottom: 180px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-185 { - padding-bottom: 185px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-190 { - padding-bottom: 190px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-195 { - padding-bottom: 195px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-200 { - padding-bottom: 200px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-205 { - padding-bottom: 205px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-210 { - padding-bottom: 210px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-215 { - padding-bottom: 215px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-220 { - padding-bottom: 220px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-225 { - padding-bottom: 225px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-230 { - padding-bottom: 230px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-235 { - padding-bottom: 235px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-240 { - padding-bottom: 240px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-245 { - padding-bottom: 245px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-250 { - padding-bottom: 250px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-255 { - padding-bottom: 255px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-260 { - padding-bottom: 260px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-265 { - padding-bottom: 265px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-270 { - padding-bottom: 270px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-275 { - padding-bottom: 275px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-280 { - padding-bottom: 280px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-285 { - padding-bottom: 285px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-290 { - padding-bottom: 290px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-295 { - padding-bottom: 295px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-300 { - padding-bottom: 300px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-305 { - padding-bottom: 305px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-310 { - padding-bottom: 310px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-315 { - padding-bottom: 315px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-320 { - padding-bottom: 320px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-325 { - padding-bottom: 325px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-330 { - padding-bottom: 330px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-335 { - padding-bottom: 335px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-340 { - padding-bottom: 340px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-345 { - padding-bottom: 345px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-350 { - padding-bottom: 350px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-355 { - padding-bottom: 355px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-360 { - padding-bottom: 360px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-365 { - padding-bottom: 365px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-370 { - padding-bottom: 370px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-375 { - padding-bottom: 375px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-380 { - padding-bottom: 380px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-385 { - padding-bottom: 385px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-390 { - padding-bottom: 390px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-395 { - padding-bottom: 395px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-400 { - padding-bottom: 400px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-405 { - padding-bottom: 405px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-410 { - padding-bottom: 410px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-415 { - padding-bottom: 415px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-420 { - padding-bottom: 420px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-425 { - padding-bottom: 425px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-430 { - padding-bottom: 430px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-435 { - padding-bottom: 435px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-440 { - padding-bottom: 440px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-445 { - padding-bottom: 445px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-450 { - padding-bottom: 450px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-455 { - padding-bottom: 455px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-460 { - padding-bottom: 460px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-465 { - padding-bottom: 465px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-470 { - padding-bottom: 470px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-475 { - padding-bottom: 475px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-480 { - padding-bottom: 480px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-485 { - padding-bottom: 485px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-490 { - padding-bottom: 490px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-495 { - padding-bottom: 495px !important; - } -} - -@media only screen and (max-width: 575px) { - .pb-xs-500 { - padding-bottom: 500px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-0 { - padding-bottom: 0px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-5 { - padding-bottom: 5px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-10 { - padding-bottom: 10px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-15 { - padding-bottom: 15px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-20 { - padding-bottom: 20px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-25 { - padding-bottom: 25px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-30 { - padding-bottom: 30px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-35 { - padding-bottom: 35px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-40 { - padding-bottom: 40px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-45 { - padding-bottom: 45px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-50 { - padding-bottom: 50px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-55 { - padding-bottom: 55px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-60 { - padding-bottom: 60px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-65 { - padding-bottom: 65px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-70 { - padding-bottom: 70px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-75 { - padding-bottom: 75px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-80 { - padding-bottom: 80px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-85 { - padding-bottom: 85px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-90 { - padding-bottom: 90px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-95 { - padding-bottom: 95px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-100 { - padding-bottom: 100px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-105 { - padding-bottom: 105px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-110 { - padding-bottom: 110px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-115 { - padding-bottom: 115px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-120 { - padding-bottom: 120px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-125 { - padding-bottom: 125px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-130 { - padding-bottom: 130px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-135 { - padding-bottom: 135px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-140 { - padding-bottom: 140px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-145 { - padding-bottom: 145px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-150 { - padding-bottom: 150px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-155 { - padding-bottom: 155px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-160 { - padding-bottom: 160px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-165 { - padding-bottom: 165px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-170 { - padding-bottom: 170px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-175 { - padding-bottom: 175px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-180 { - padding-bottom: 180px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-185 { - padding-bottom: 185px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-190 { - padding-bottom: 190px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-195 { - padding-bottom: 195px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-200 { - padding-bottom: 200px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-205 { - padding-bottom: 205px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-210 { - padding-bottom: 210px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-215 { - padding-bottom: 215px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-220 { - padding-bottom: 220px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-225 { - padding-bottom: 225px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-230 { - padding-bottom: 230px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-235 { - padding-bottom: 235px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-240 { - padding-bottom: 240px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-245 { - padding-bottom: 245px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-250 { - padding-bottom: 250px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-255 { - padding-bottom: 255px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-260 { - padding-bottom: 260px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-265 { - padding-bottom: 265px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-270 { - padding-bottom: 270px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-275 { - padding-bottom: 275px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-280 { - padding-bottom: 280px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-285 { - padding-bottom: 285px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-290 { - padding-bottom: 290px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-295 { - padding-bottom: 295px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-300 { - padding-bottom: 300px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-305 { - padding-bottom: 305px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-310 { - padding-bottom: 310px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-315 { - padding-bottom: 315px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-320 { - padding-bottom: 320px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-325 { - padding-bottom: 325px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-330 { - padding-bottom: 330px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-335 { - padding-bottom: 335px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-340 { - padding-bottom: 340px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-345 { - padding-bottom: 345px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-350 { - padding-bottom: 350px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-355 { - padding-bottom: 355px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-360 { - padding-bottom: 360px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-365 { - padding-bottom: 365px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-370 { - padding-bottom: 370px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-375 { - padding-bottom: 375px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-380 { - padding-bottom: 380px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-385 { - padding-bottom: 385px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-390 { - padding-bottom: 390px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-395 { - padding-bottom: 395px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-400 { - padding-bottom: 400px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-405 { - padding-bottom: 405px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-410 { - padding-bottom: 410px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-415 { - padding-bottom: 415px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-420 { - padding-bottom: 420px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-425 { - padding-bottom: 425px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-430 { - padding-bottom: 430px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-435 { - padding-bottom: 435px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-440 { - padding-bottom: 440px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-445 { - padding-bottom: 445px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-450 { - padding-bottom: 450px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-455 { - padding-bottom: 455px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-460 { - padding-bottom: 460px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-465 { - padding-bottom: 465px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-470 { - padding-bottom: 470px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-475 { - padding-bottom: 475px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-480 { - padding-bottom: 480px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-485 { - padding-bottom: 485px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-490 { - padding-bottom: 490px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-495 { - padding-bottom: 495px !important; - } -} - -@media only screen and (max-width: 479px) { - .pb-xxs-500 { - padding-bottom: 500px !important; - } -} - -/*-- Padding Left --*/ -.pl-0 { - padding-left: 0px !important; -} - -.pl-5 { - padding-left: 5px !important; -} - -.pl-10 { - padding-left: 10px !important; -} - -.pl-15 { - padding-left: 15px !important; -} - -.pl-20 { - padding-left: 20px !important; -} - -.pl-25 { - padding-left: 25px !important; -} - -.pl-30 { - padding-left: 30px !important; -} - -.pl-35 { - padding-left: 35px !important; -} - -.pl-40 { - padding-left: 40px !important; -} - -.pl-45 { - padding-left: 45px !important; -} - -.pl-50 { - padding-left: 50px !important; -} - -.pl-55 { - padding-left: 55px !important; -} - -.pl-60 { - padding-left: 60px !important; -} - -.pl-65 { - padding-left: 65px !important; -} - -.pl-70 { - padding-left: 70px !important; -} - -.pl-75 { - padding-left: 75px !important; -} - -.pl-80 { - padding-left: 80px !important; -} - -.pl-85 { - padding-left: 85px !important; -} - -.pl-90 { - padding-left: 90px !important; -} - -.pl-95 { - padding-left: 95px !important; -} - -.pl-100 { - padding-left: 100px !important; -} - -.pl-105 { - padding-left: 105px !important; -} - -.pl-110 { - padding-left: 110px !important; -} - -.pl-115 { - padding-left: 115px !important; -} - -.pl-120 { - padding-left: 120px !important; -} - -.pl-125 { - padding-left: 125px !important; -} - -.pl-130 { - padding-left: 130px !important; -} - -.pl-135 { - padding-left: 135px !important; -} - -.pl-140 { - padding-left: 140px !important; -} - -.pl-145 { - padding-left: 145px !important; -} - -.pl-150 { - padding-left: 150px !important; -} - -.pl-155 { - padding-left: 155px !important; -} - -.pl-160 { - padding-left: 160px !important; -} - -.pl-165 { - padding-left: 165px !important; -} - -.pl-170 { - padding-left: 170px !important; -} - -.pl-175 { - padding-left: 175px !important; -} - -.pl-180 { - padding-left: 180px !important; -} - -.pl-185 { - padding-left: 185px !important; -} - -.pl-190 { - padding-left: 190px !important; -} - -.pl-195 { - padding-left: 195px !important; -} - -.pl-200 { - padding-left: 200px !important; -} - -.pl-205 { - padding-left: 205px !important; -} - -.pl-210 { - padding-left: 210px !important; -} - -.pl-215 { - padding-left: 215px !important; -} - -.pl-220 { - padding-left: 220px !important; -} - -.pl-225 { - padding-left: 225px !important; -} - -.pl-230 { - padding-left: 230px !important; -} - -.pl-235 { - padding-left: 235px !important; -} - -.pl-240 { - padding-left: 240px !important; -} - -.pl-245 { - padding-left: 245px !important; -} - -.pl-250 { - padding-left: 250px !important; -} - -.pl-255 { - padding-left: 255px !important; -} - -.pl-260 { - padding-left: 260px !important; -} - -.pl-265 { - padding-left: 265px !important; -} - -.pl-270 { - padding-left: 270px !important; -} - -.pl-275 { - padding-left: 275px !important; -} - -.pl-280 { - padding-left: 280px !important; -} - -.pl-285 { - padding-left: 285px !important; -} - -.pl-290 { - padding-left: 290px !important; -} - -.pl-295 { - padding-left: 295px !important; -} - -.pl-300 { - padding-left: 300px !important; -} - -.pl-305 { - padding-left: 305px !important; -} - -.pl-310 { - padding-left: 310px !important; -} - -.pl-315 { - padding-left: 315px !important; -} - -.pl-320 { - padding-left: 320px !important; -} - -.pl-325 { - padding-left: 325px !important; -} - -.pl-330 { - padding-left: 330px !important; -} - -.pl-335 { - padding-left: 335px !important; -} - -.pl-340 { - padding-left: 340px !important; -} - -.pl-345 { - padding-left: 345px !important; -} - -.pl-350 { - padding-left: 350px !important; -} - -.pl-355 { - padding-left: 355px !important; -} - -.pl-360 { - padding-left: 360px !important; -} - -.pl-365 { - padding-left: 365px !important; -} - -.pl-370 { - padding-left: 370px !important; -} - -.pl-375 { - padding-left: 375px !important; -} - -.pl-380 { - padding-left: 380px !important; -} - -.pl-385 { - padding-left: 385px !important; -} - -.pl-390 { - padding-left: 390px !important; -} - -.pl-395 { - padding-left: 395px !important; -} - -.pl-400 { - padding-left: 400px !important; -} - -.pl-405 { - padding-left: 405px !important; -} - -.pl-410 { - padding-left: 410px !important; -} - -.pl-415 { - padding-left: 415px !important; -} - -.pl-420 { - padding-left: 420px !important; -} - -.pl-425 { - padding-left: 425px !important; -} - -.pl-430 { - padding-left: 430px !important; -} - -.pl-435 { - padding-left: 435px !important; -} - -.pl-440 { - padding-left: 440px !important; -} - -.pl-445 { - padding-left: 445px !important; -} - -.pl-450 { - padding-left: 450px !important; -} - -.pl-455 { - padding-left: 455px !important; -} - -.pl-460 { - padding-left: 460px !important; -} - -.pl-465 { - padding-left: 465px !important; -} - -.pl-470 { - padding-left: 470px !important; -} - -.pl-475 { - padding-left: 475px !important; -} - -.pl-480 { - padding-left: 480px !important; -} - -.pl-485 { - padding-left: 485px !important; -} - -.pl-490 { - padding-left: 490px !important; -} - -.pl-495 { - padding-left: 495px !important; -} - -.pl-500 { - padding-left: 500px !important; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-0 { - padding-left: 0px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-5 { - padding-left: 5px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-10 { - padding-left: 10px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-15 { - padding-left: 15px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-20 { - padding-left: 20px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-25 { - padding-left: 25px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-30 { - padding-left: 30px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-35 { - padding-left: 35px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-40 { - padding-left: 40px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-45 { - padding-left: 45px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-50 { - padding-left: 50px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-55 { - padding-left: 55px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-60 { - padding-left: 60px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-65 { - padding-left: 65px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-70 { - padding-left: 70px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-75 { - padding-left: 75px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-80 { - padding-left: 80px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-85 { - padding-left: 85px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-90 { - padding-left: 90px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-95 { - padding-left: 95px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-100 { - padding-left: 100px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-105 { - padding-left: 105px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-110 { - padding-left: 110px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-115 { - padding-left: 115px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-120 { - padding-left: 120px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-125 { - padding-left: 125px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-130 { - padding-left: 130px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-135 { - padding-left: 135px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-140 { - padding-left: 140px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-145 { - padding-left: 145px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-150 { - padding-left: 150px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-155 { - padding-left: 155px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-160 { - padding-left: 160px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-165 { - padding-left: 165px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-170 { - padding-left: 170px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-175 { - padding-left: 175px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-180 { - padding-left: 180px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-185 { - padding-left: 185px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-190 { - padding-left: 190px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-195 { - padding-left: 195px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-200 { - padding-left: 200px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-205 { - padding-left: 205px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-210 { - padding-left: 210px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-215 { - padding-left: 215px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-220 { - padding-left: 220px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-225 { - padding-left: 225px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-230 { - padding-left: 230px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-235 { - padding-left: 235px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-240 { - padding-left: 240px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-245 { - padding-left: 245px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-250 { - padding-left: 250px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-255 { - padding-left: 255px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-260 { - padding-left: 260px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-265 { - padding-left: 265px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-270 { - padding-left: 270px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-275 { - padding-left: 275px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-280 { - padding-left: 280px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-285 { - padding-left: 285px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-290 { - padding-left: 290px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-295 { - padding-left: 295px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-300 { - padding-left: 300px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-305 { - padding-left: 305px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-310 { - padding-left: 310px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-315 { - padding-left: 315px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-320 { - padding-left: 320px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-325 { - padding-left: 325px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-330 { - padding-left: 330px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-335 { - padding-left: 335px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-340 { - padding-left: 340px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-345 { - padding-left: 345px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-350 { - padding-left: 350px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-355 { - padding-left: 355px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-360 { - padding-left: 360px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-365 { - padding-left: 365px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-370 { - padding-left: 370px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-375 { - padding-left: 375px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-380 { - padding-left: 380px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-385 { - padding-left: 385px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-390 { - padding-left: 390px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-395 { - padding-left: 395px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-400 { - padding-left: 400px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-405 { - padding-left: 405px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-410 { - padding-left: 410px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-415 { - padding-left: 415px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-420 { - padding-left: 420px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-425 { - padding-left: 425px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-430 { - padding-left: 430px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-435 { - padding-left: 435px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-440 { - padding-left: 440px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-445 { - padding-left: 445px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-450 { - padding-left: 450px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-455 { - padding-left: 455px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-460 { - padding-left: 460px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-465 { - padding-left: 465px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-470 { - padding-left: 470px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-475 { - padding-left: 475px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-480 { - padding-left: 480px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-485 { - padding-left: 485px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-490 { - padding-left: 490px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-495 { - padding-left: 495px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pl-xl-500 { - padding-left: 500px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-0 { - padding-left: 0px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-5 { - padding-left: 5px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-10 { - padding-left: 10px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-15 { - padding-left: 15px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-20 { - padding-left: 20px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-25 { - padding-left: 25px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-30 { - padding-left: 30px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-35 { - padding-left: 35px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-40 { - padding-left: 40px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-45 { - padding-left: 45px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-50 { - padding-left: 50px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-55 { - padding-left: 55px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-60 { - padding-left: 60px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-65 { - padding-left: 65px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-70 { - padding-left: 70px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-75 { - padding-left: 75px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-80 { - padding-left: 80px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-85 { - padding-left: 85px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-90 { - padding-left: 90px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-95 { - padding-left: 95px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-100 { - padding-left: 100px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-105 { - padding-left: 105px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-110 { - padding-left: 110px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-115 { - padding-left: 115px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-120 { - padding-left: 120px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-125 { - padding-left: 125px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-130 { - padding-left: 130px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-135 { - padding-left: 135px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-140 { - padding-left: 140px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-145 { - padding-left: 145px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-150 { - padding-left: 150px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-155 { - padding-left: 155px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-160 { - padding-left: 160px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-165 { - padding-left: 165px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-170 { - padding-left: 170px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-175 { - padding-left: 175px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-180 { - padding-left: 180px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-185 { - padding-left: 185px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-190 { - padding-left: 190px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-195 { - padding-left: 195px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-200 { - padding-left: 200px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-205 { - padding-left: 205px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-210 { - padding-left: 210px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-215 { - padding-left: 215px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-220 { - padding-left: 220px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-225 { - padding-left: 225px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-230 { - padding-left: 230px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-235 { - padding-left: 235px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-240 { - padding-left: 240px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-245 { - padding-left: 245px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-250 { - padding-left: 250px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-255 { - padding-left: 255px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-260 { - padding-left: 260px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-265 { - padding-left: 265px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-270 { - padding-left: 270px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-275 { - padding-left: 275px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-280 { - padding-left: 280px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-285 { - padding-left: 285px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-290 { - padding-left: 290px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-295 { - padding-left: 295px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-300 { - padding-left: 300px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-305 { - padding-left: 305px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-310 { - padding-left: 310px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-315 { - padding-left: 315px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-320 { - padding-left: 320px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-325 { - padding-left: 325px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-330 { - padding-left: 330px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-335 { - padding-left: 335px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-340 { - padding-left: 340px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-345 { - padding-left: 345px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-350 { - padding-left: 350px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-355 { - padding-left: 355px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-360 { - padding-left: 360px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-365 { - padding-left: 365px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-370 { - padding-left: 370px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-375 { - padding-left: 375px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-380 { - padding-left: 380px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-385 { - padding-left: 385px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-390 { - padding-left: 390px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-395 { - padding-left: 395px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-400 { - padding-left: 400px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-405 { - padding-left: 405px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-410 { - padding-left: 410px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-415 { - padding-left: 415px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-420 { - padding-left: 420px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-425 { - padding-left: 425px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-430 { - padding-left: 430px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-435 { - padding-left: 435px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-440 { - padding-left: 440px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-445 { - padding-left: 445px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-450 { - padding-left: 450px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-455 { - padding-left: 455px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-460 { - padding-left: 460px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-465 { - padding-left: 465px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-470 { - padding-left: 470px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-475 { - padding-left: 475px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-480 { - padding-left: 480px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-485 { - padding-left: 485px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-490 { - padding-left: 490px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-495 { - padding-left: 495px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pl-lg-500 { - padding-left: 500px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-0 { - padding-left: 0px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-5 { - padding-left: 5px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-10 { - padding-left: 10px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-15 { - padding-left: 15px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-20 { - padding-left: 20px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-25 { - padding-left: 25px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-30 { - padding-left: 30px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-35 { - padding-left: 35px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-40 { - padding-left: 40px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-45 { - padding-left: 45px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-50 { - padding-left: 50px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-55 { - padding-left: 55px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-60 { - padding-left: 60px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-65 { - padding-left: 65px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-70 { - padding-left: 70px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-75 { - padding-left: 75px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-80 { - padding-left: 80px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-85 { - padding-left: 85px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-90 { - padding-left: 90px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-95 { - padding-left: 95px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-100 { - padding-left: 100px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-105 { - padding-left: 105px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-110 { - padding-left: 110px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-115 { - padding-left: 115px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-120 { - padding-left: 120px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-125 { - padding-left: 125px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-130 { - padding-left: 130px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-135 { - padding-left: 135px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-140 { - padding-left: 140px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-145 { - padding-left: 145px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-150 { - padding-left: 150px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-155 { - padding-left: 155px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-160 { - padding-left: 160px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-165 { - padding-left: 165px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-170 { - padding-left: 170px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-175 { - padding-left: 175px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-180 { - padding-left: 180px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-185 { - padding-left: 185px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-190 { - padding-left: 190px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-195 { - padding-left: 195px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-200 { - padding-left: 200px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-205 { - padding-left: 205px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-210 { - padding-left: 210px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-215 { - padding-left: 215px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-220 { - padding-left: 220px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-225 { - padding-left: 225px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-230 { - padding-left: 230px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-235 { - padding-left: 235px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-240 { - padding-left: 240px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-245 { - padding-left: 245px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-250 { - padding-left: 250px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-255 { - padding-left: 255px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-260 { - padding-left: 260px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-265 { - padding-left: 265px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-270 { - padding-left: 270px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-275 { - padding-left: 275px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-280 { - padding-left: 280px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-285 { - padding-left: 285px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-290 { - padding-left: 290px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-295 { - padding-left: 295px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-300 { - padding-left: 300px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-305 { - padding-left: 305px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-310 { - padding-left: 310px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-315 { - padding-left: 315px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-320 { - padding-left: 320px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-325 { - padding-left: 325px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-330 { - padding-left: 330px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-335 { - padding-left: 335px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-340 { - padding-left: 340px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-345 { - padding-left: 345px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-350 { - padding-left: 350px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-355 { - padding-left: 355px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-360 { - padding-left: 360px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-365 { - padding-left: 365px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-370 { - padding-left: 370px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-375 { - padding-left: 375px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-380 { - padding-left: 380px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-385 { - padding-left: 385px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-390 { - padding-left: 390px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-395 { - padding-left: 395px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-400 { - padding-left: 400px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-405 { - padding-left: 405px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-410 { - padding-left: 410px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-415 { - padding-left: 415px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-420 { - padding-left: 420px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-425 { - padding-left: 425px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-430 { - padding-left: 430px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-435 { - padding-left: 435px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-440 { - padding-left: 440px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-445 { - padding-left: 445px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-450 { - padding-left: 450px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-455 { - padding-left: 455px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-460 { - padding-left: 460px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-465 { - padding-left: 465px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-470 { - padding-left: 470px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-475 { - padding-left: 475px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-480 { - padding-left: 480px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-485 { - padding-left: 485px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-490 { - padding-left: 490px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-495 { - padding-left: 495px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pl-md-500 { - padding-left: 500px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-0 { - padding-left: 0px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-5 { - padding-left: 5px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-10 { - padding-left: 10px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-15 { - padding-left: 15px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-20 { - padding-left: 20px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-25 { - padding-left: 25px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-30 { - padding-left: 30px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-35 { - padding-left: 35px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-40 { - padding-left: 40px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-45 { - padding-left: 45px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-50 { - padding-left: 50px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-55 { - padding-left: 55px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-60 { - padding-left: 60px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-65 { - padding-left: 65px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-70 { - padding-left: 70px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-75 { - padding-left: 75px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-80 { - padding-left: 80px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-85 { - padding-left: 85px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-90 { - padding-left: 90px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-95 { - padding-left: 95px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-100 { - padding-left: 100px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-105 { - padding-left: 105px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-110 { - padding-left: 110px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-115 { - padding-left: 115px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-120 { - padding-left: 120px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-125 { - padding-left: 125px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-130 { - padding-left: 130px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-135 { - padding-left: 135px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-140 { - padding-left: 140px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-145 { - padding-left: 145px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-150 { - padding-left: 150px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-155 { - padding-left: 155px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-160 { - padding-left: 160px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-165 { - padding-left: 165px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-170 { - padding-left: 170px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-175 { - padding-left: 175px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-180 { - padding-left: 180px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-185 { - padding-left: 185px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-190 { - padding-left: 190px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-195 { - padding-left: 195px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-200 { - padding-left: 200px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-205 { - padding-left: 205px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-210 { - padding-left: 210px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-215 { - padding-left: 215px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-220 { - padding-left: 220px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-225 { - padding-left: 225px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-230 { - padding-left: 230px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-235 { - padding-left: 235px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-240 { - padding-left: 240px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-245 { - padding-left: 245px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-250 { - padding-left: 250px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-255 { - padding-left: 255px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-260 { - padding-left: 260px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-265 { - padding-left: 265px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-270 { - padding-left: 270px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-275 { - padding-left: 275px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-280 { - padding-left: 280px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-285 { - padding-left: 285px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-290 { - padding-left: 290px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-295 { - padding-left: 295px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-300 { - padding-left: 300px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-305 { - padding-left: 305px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-310 { - padding-left: 310px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-315 { - padding-left: 315px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-320 { - padding-left: 320px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-325 { - padding-left: 325px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-330 { - padding-left: 330px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-335 { - padding-left: 335px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-340 { - padding-left: 340px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-345 { - padding-left: 345px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-350 { - padding-left: 350px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-355 { - padding-left: 355px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-360 { - padding-left: 360px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-365 { - padding-left: 365px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-370 { - padding-left: 370px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-375 { - padding-left: 375px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-380 { - padding-left: 380px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-385 { - padding-left: 385px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-390 { - padding-left: 390px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-395 { - padding-left: 395px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-400 { - padding-left: 400px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-405 { - padding-left: 405px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-410 { - padding-left: 410px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-415 { - padding-left: 415px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-420 { - padding-left: 420px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-425 { - padding-left: 425px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-430 { - padding-left: 430px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-435 { - padding-left: 435px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-440 { - padding-left: 440px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-445 { - padding-left: 445px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-450 { - padding-left: 450px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-455 { - padding-left: 455px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-460 { - padding-left: 460px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-465 { - padding-left: 465px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-470 { - padding-left: 470px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-475 { - padding-left: 475px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-480 { - padding-left: 480px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-485 { - padding-left: 485px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-490 { - padding-left: 490px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-495 { - padding-left: 495px !important; - } -} - -@media only screen and (max-width: 767px) { - .pl-sm-500 { - padding-left: 500px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-0 { - padding-left: 0px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-5 { - padding-left: 5px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-10 { - padding-left: 10px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-15 { - padding-left: 15px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-20 { - padding-left: 20px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-25 { - padding-left: 25px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-30 { - padding-left: 30px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-35 { - padding-left: 35px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-40 { - padding-left: 40px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-45 { - padding-left: 45px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-50 { - padding-left: 50px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-55 { - padding-left: 55px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-60 { - padding-left: 60px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-65 { - padding-left: 65px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-70 { - padding-left: 70px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-75 { - padding-left: 75px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-80 { - padding-left: 80px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-85 { - padding-left: 85px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-90 { - padding-left: 90px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-95 { - padding-left: 95px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-100 { - padding-left: 100px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-105 { - padding-left: 105px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-110 { - padding-left: 110px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-115 { - padding-left: 115px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-120 { - padding-left: 120px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-125 { - padding-left: 125px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-130 { - padding-left: 130px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-135 { - padding-left: 135px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-140 { - padding-left: 140px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-145 { - padding-left: 145px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-150 { - padding-left: 150px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-155 { - padding-left: 155px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-160 { - padding-left: 160px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-165 { - padding-left: 165px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-170 { - padding-left: 170px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-175 { - padding-left: 175px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-180 { - padding-left: 180px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-185 { - padding-left: 185px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-190 { - padding-left: 190px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-195 { - padding-left: 195px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-200 { - padding-left: 200px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-205 { - padding-left: 205px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-210 { - padding-left: 210px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-215 { - padding-left: 215px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-220 { - padding-left: 220px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-225 { - padding-left: 225px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-230 { - padding-left: 230px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-235 { - padding-left: 235px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-240 { - padding-left: 240px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-245 { - padding-left: 245px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-250 { - padding-left: 250px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-255 { - padding-left: 255px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-260 { - padding-left: 260px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-265 { - padding-left: 265px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-270 { - padding-left: 270px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-275 { - padding-left: 275px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-280 { - padding-left: 280px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-285 { - padding-left: 285px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-290 { - padding-left: 290px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-295 { - padding-left: 295px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-300 { - padding-left: 300px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-305 { - padding-left: 305px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-310 { - padding-left: 310px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-315 { - padding-left: 315px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-320 { - padding-left: 320px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-325 { - padding-left: 325px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-330 { - padding-left: 330px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-335 { - padding-left: 335px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-340 { - padding-left: 340px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-345 { - padding-left: 345px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-350 { - padding-left: 350px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-355 { - padding-left: 355px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-360 { - padding-left: 360px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-365 { - padding-left: 365px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-370 { - padding-left: 370px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-375 { - padding-left: 375px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-380 { - padding-left: 380px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-385 { - padding-left: 385px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-390 { - padding-left: 390px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-395 { - padding-left: 395px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-400 { - padding-left: 400px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-405 { - padding-left: 405px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-410 { - padding-left: 410px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-415 { - padding-left: 415px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-420 { - padding-left: 420px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-425 { - padding-left: 425px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-430 { - padding-left: 430px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-435 { - padding-left: 435px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-440 { - padding-left: 440px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-445 { - padding-left: 445px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-450 { - padding-left: 450px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-455 { - padding-left: 455px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-460 { - padding-left: 460px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-465 { - padding-left: 465px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-470 { - padding-left: 470px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-475 { - padding-left: 475px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-480 { - padding-left: 480px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-485 { - padding-left: 485px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-490 { - padding-left: 490px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-495 { - padding-left: 495px !important; - } -} - -@media only screen and (max-width: 575px) { - .pl-xs-500 { - padding-left: 500px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-0 { - padding-left: 0px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-5 { - padding-left: 5px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-10 { - padding-left: 10px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-15 { - padding-left: 15px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-20 { - padding-left: 20px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-25 { - padding-left: 25px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-30 { - padding-left: 30px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-35 { - padding-left: 35px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-40 { - padding-left: 40px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-45 { - padding-left: 45px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-50 { - padding-left: 50px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-55 { - padding-left: 55px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-60 { - padding-left: 60px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-65 { - padding-left: 65px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-70 { - padding-left: 70px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-75 { - padding-left: 75px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-80 { - padding-left: 80px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-85 { - padding-left: 85px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-90 { - padding-left: 90px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-95 { - padding-left: 95px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-100 { - padding-left: 100px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-105 { - padding-left: 105px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-110 { - padding-left: 110px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-115 { - padding-left: 115px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-120 { - padding-left: 120px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-125 { - padding-left: 125px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-130 { - padding-left: 130px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-135 { - padding-left: 135px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-140 { - padding-left: 140px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-145 { - padding-left: 145px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-150 { - padding-left: 150px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-155 { - padding-left: 155px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-160 { - padding-left: 160px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-165 { - padding-left: 165px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-170 { - padding-left: 170px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-175 { - padding-left: 175px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-180 { - padding-left: 180px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-185 { - padding-left: 185px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-190 { - padding-left: 190px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-195 { - padding-left: 195px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-200 { - padding-left: 200px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-205 { - padding-left: 205px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-210 { - padding-left: 210px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-215 { - padding-left: 215px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-220 { - padding-left: 220px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-225 { - padding-left: 225px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-230 { - padding-left: 230px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-235 { - padding-left: 235px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-240 { - padding-left: 240px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-245 { - padding-left: 245px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-250 { - padding-left: 250px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-255 { - padding-left: 255px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-260 { - padding-left: 260px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-265 { - padding-left: 265px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-270 { - padding-left: 270px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-275 { - padding-left: 275px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-280 { - padding-left: 280px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-285 { - padding-left: 285px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-290 { - padding-left: 290px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-295 { - padding-left: 295px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-300 { - padding-left: 300px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-305 { - padding-left: 305px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-310 { - padding-left: 310px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-315 { - padding-left: 315px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-320 { - padding-left: 320px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-325 { - padding-left: 325px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-330 { - padding-left: 330px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-335 { - padding-left: 335px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-340 { - padding-left: 340px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-345 { - padding-left: 345px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-350 { - padding-left: 350px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-355 { - padding-left: 355px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-360 { - padding-left: 360px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-365 { - padding-left: 365px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-370 { - padding-left: 370px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-375 { - padding-left: 375px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-380 { - padding-left: 380px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-385 { - padding-left: 385px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-390 { - padding-left: 390px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-395 { - padding-left: 395px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-400 { - padding-left: 400px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-405 { - padding-left: 405px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-410 { - padding-left: 410px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-415 { - padding-left: 415px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-420 { - padding-left: 420px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-425 { - padding-left: 425px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-430 { - padding-left: 430px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-435 { - padding-left: 435px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-440 { - padding-left: 440px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-445 { - padding-left: 445px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-450 { - padding-left: 450px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-455 { - padding-left: 455px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-460 { - padding-left: 460px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-465 { - padding-left: 465px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-470 { - padding-left: 470px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-475 { - padding-left: 475px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-480 { - padding-left: 480px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-485 { - padding-left: 485px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-490 { - padding-left: 490px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-495 { - padding-left: 495px !important; - } -} - -@media only screen and (max-width: 479px) { - .pl-xxs-500 { - padding-left: 500px !important; - } -} - -/*-- Padding Right --*/ -.pr-0 { - padding-right: 0px !important; -} - -.pr-5 { - padding-right: 5px !important; -} - -.pr-10 { - padding-right: 10px !important; -} - -.pr-15 { - padding-right: 15px !important; -} - -.pr-20 { - padding-right: 20px !important; -} - -.pr-25 { - padding-right: 25px !important; -} - -.pr-30 { - padding-right: 30px !important; -} - -.pr-35 { - padding-right: 35px !important; -} - -.pr-40 { - padding-right: 40px !important; -} - -.pr-45 { - padding-right: 45px !important; -} - -.pr-50 { - padding-right: 50px !important; -} - -.pr-55 { - padding-right: 55px !important; -} - -.pr-60 { - padding-right: 60px !important; -} - -.pr-65 { - padding-right: 65px !important; -} - -.pr-70 { - padding-right: 70px !important; -} - -.pr-75 { - padding-right: 75px !important; -} - -.pr-80 { - padding-right: 80px !important; -} - -.pr-85 { - padding-right: 85px !important; -} - -.pr-90 { - padding-right: 90px !important; -} - -.pr-95 { - padding-right: 95px !important; -} - -.pr-100 { - padding-right: 100px !important; -} - -.pr-105 { - padding-right: 105px !important; -} - -.pr-110 { - padding-right: 110px !important; -} - -.pr-115 { - padding-right: 115px !important; -} - -.pr-120 { - padding-right: 120px !important; -} - -.pr-125 { - padding-right: 125px !important; -} - -.pr-130 { - padding-right: 130px !important; -} - -.pr-135 { - padding-right: 135px !important; -} - -.pr-140 { - padding-right: 140px !important; -} - -.pr-145 { - padding-right: 145px !important; -} - -.pr-150 { - padding-right: 150px !important; -} - -.pr-155 { - padding-right: 155px !important; -} - -.pr-160 { - padding-right: 160px !important; -} - -.pr-165 { - padding-right: 165px !important; -} - -.pr-170 { - padding-right: 170px !important; -} - -.pr-175 { - padding-right: 175px !important; -} - -.pr-180 { - padding-right: 180px !important; -} - -.pr-185 { - padding-right: 185px !important; -} - -.pr-190 { - padding-right: 190px !important; -} - -.pr-195 { - padding-right: 195px !important; -} - -.pr-200 { - padding-right: 200px !important; -} - -.pr-205 { - padding-right: 205px !important; -} - -.pr-210 { - padding-right: 210px !important; -} - -.pr-215 { - padding-right: 215px !important; -} - -.pr-220 { - padding-right: 220px !important; -} - -.pr-225 { - padding-right: 225px !important; -} - -.pr-230 { - padding-right: 230px !important; -} - -.pr-235 { - padding-right: 235px !important; -} - -.pr-240 { - padding-right: 240px !important; -} - -.pr-245 { - padding-right: 245px !important; -} - -.pr-250 { - padding-right: 250px !important; -} - -.pr-255 { - padding-right: 255px !important; -} - -.pr-260 { - padding-right: 260px !important; -} - -.pr-265 { - padding-right: 265px !important; -} - -.pr-270 { - padding-right: 270px !important; -} - -.pr-275 { - padding-right: 275px !important; -} - -.pr-280 { - padding-right: 280px !important; -} - -.pr-285 { - padding-right: 285px !important; -} - -.pr-290 { - padding-right: 290px !important; -} - -.pr-295 { - padding-right: 295px !important; -} - -.pr-300 { - padding-right: 300px !important; -} - -.pr-305 { - padding-right: 305px !important; -} - -.pr-310 { - padding-right: 310px !important; -} - -.pr-315 { - padding-right: 315px !important; -} - -.pr-320 { - padding-right: 320px !important; -} - -.pr-325 { - padding-right: 325px !important; -} - -.pr-330 { - padding-right: 330px !important; -} - -.pr-335 { - padding-right: 335px !important; -} - -.pr-340 { - padding-right: 340px !important; -} - -.pr-345 { - padding-right: 345px !important; -} - -.pr-350 { - padding-right: 350px !important; -} - -.pr-355 { - padding-right: 355px !important; -} - -.pr-360 { - padding-right: 360px !important; -} - -.pr-365 { - padding-right: 365px !important; -} - -.pr-370 { - padding-right: 370px !important; -} - -.pr-375 { - padding-right: 375px !important; -} - -.pr-380 { - padding-right: 380px !important; -} - -.pr-385 { - padding-right: 385px !important; -} - -.pr-390 { - padding-right: 390px !important; -} - -.pr-395 { - padding-right: 395px !important; -} - -.pr-400 { - padding-right: 400px !important; -} - -.pr-405 { - padding-right: 405px !important; -} - -.pr-410 { - padding-right: 410px !important; -} - -.pr-415 { - padding-right: 415px !important; -} - -.pr-420 { - padding-right: 420px !important; -} - -.pr-425 { - padding-right: 425px !important; -} - -.pr-430 { - padding-right: 430px !important; -} - -.pr-435 { - padding-right: 435px !important; -} - -.pr-440 { - padding-right: 440px !important; -} - -.pr-445 { - padding-right: 445px !important; -} - -.pr-450 { - padding-right: 450px !important; -} - -.pr-455 { - padding-right: 455px !important; -} - -.pr-460 { - padding-right: 460px !important; -} - -.pr-465 { - padding-right: 465px !important; -} - -.pr-470 { - padding-right: 470px !important; -} - -.pr-475 { - padding-right: 475px !important; -} - -.pr-480 { - padding-right: 480px !important; -} - -.pr-485 { - padding-right: 485px !important; -} - -.pr-490 { - padding-right: 490px !important; -} - -.pr-495 { - padding-right: 495px !important; -} - -.pr-500 { - padding-right: 500px !important; -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-0 { - padding-right: 0px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-5 { - padding-right: 5px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-10 { - padding-right: 10px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-15 { - padding-right: 15px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-20 { - padding-right: 20px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-25 { - padding-right: 25px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-30 { - padding-right: 30px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-35 { - padding-right: 35px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-40 { - padding-right: 40px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-45 { - padding-right: 45px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-50 { - padding-right: 50px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-55 { - padding-right: 55px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-60 { - padding-right: 60px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-65 { - padding-right: 65px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-70 { - padding-right: 70px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-75 { - padding-right: 75px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-80 { - padding-right: 80px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-85 { - padding-right: 85px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-90 { - padding-right: 90px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-95 { - padding-right: 95px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-100 { - padding-right: 100px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-105 { - padding-right: 105px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-110 { - padding-right: 110px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-115 { - padding-right: 115px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-120 { - padding-right: 120px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-125 { - padding-right: 125px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-130 { - padding-right: 130px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-135 { - padding-right: 135px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-140 { - padding-right: 140px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-145 { - padding-right: 145px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-150 { - padding-right: 150px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-155 { - padding-right: 155px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-160 { - padding-right: 160px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-165 { - padding-right: 165px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-170 { - padding-right: 170px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-175 { - padding-right: 175px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-180 { - padding-right: 180px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-185 { - padding-right: 185px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-190 { - padding-right: 190px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-195 { - padding-right: 195px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-200 { - padding-right: 200px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-205 { - padding-right: 205px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-210 { - padding-right: 210px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-215 { - padding-right: 215px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-220 { - padding-right: 220px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-225 { - padding-right: 225px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-230 { - padding-right: 230px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-235 { - padding-right: 235px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-240 { - padding-right: 240px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-245 { - padding-right: 245px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-250 { - padding-right: 250px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-255 { - padding-right: 255px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-260 { - padding-right: 260px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-265 { - padding-right: 265px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-270 { - padding-right: 270px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-275 { - padding-right: 275px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-280 { - padding-right: 280px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-285 { - padding-right: 285px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-290 { - padding-right: 290px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-295 { - padding-right: 295px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-300 { - padding-right: 300px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-305 { - padding-right: 305px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-310 { - padding-right: 310px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-315 { - padding-right: 315px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-320 { - padding-right: 320px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-325 { - padding-right: 325px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-330 { - padding-right: 330px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-335 { - padding-right: 335px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-340 { - padding-right: 340px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-345 { - padding-right: 345px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-350 { - padding-right: 350px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-355 { - padding-right: 355px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-360 { - padding-right: 360px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-365 { - padding-right: 365px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-370 { - padding-right: 370px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-375 { - padding-right: 375px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-380 { - padding-right: 380px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-385 { - padding-right: 385px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-390 { - padding-right: 390px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-395 { - padding-right: 395px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-400 { - padding-right: 400px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-405 { - padding-right: 405px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-410 { - padding-right: 410px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-415 { - padding-right: 415px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-420 { - padding-right: 420px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-425 { - padding-right: 425px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-430 { - padding-right: 430px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-435 { - padding-right: 435px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-440 { - padding-right: 440px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-445 { - padding-right: 445px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-450 { - padding-right: 450px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-455 { - padding-right: 455px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-460 { - padding-right: 460px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-465 { - padding-right: 465px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-470 { - padding-right: 470px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-475 { - padding-right: 475px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-480 { - padding-right: 480px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-485 { - padding-right: 485px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-490 { - padding-right: 490px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-495 { - padding-right: 495px !important; - } -} - -@media only screen and (min-width: 1200px) and (max-width: 1499px) { - .pr-xl-500 { - padding-right: 500px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-0 { - padding-right: 0px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-5 { - padding-right: 5px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-10 { - padding-right: 10px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-15 { - padding-right: 15px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-20 { - padding-right: 20px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-25 { - padding-right: 25px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-30 { - padding-right: 30px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-35 { - padding-right: 35px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-40 { - padding-right: 40px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-45 { - padding-right: 45px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-50 { - padding-right: 50px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-55 { - padding-right: 55px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-60 { - padding-right: 60px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-65 { - padding-right: 65px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-70 { - padding-right: 70px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-75 { - padding-right: 75px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-80 { - padding-right: 80px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-85 { - padding-right: 85px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-90 { - padding-right: 90px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-95 { - padding-right: 95px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-100 { - padding-right: 100px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-105 { - padding-right: 105px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-110 { - padding-right: 110px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-115 { - padding-right: 115px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-120 { - padding-right: 120px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-125 { - padding-right: 125px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-130 { - padding-right: 130px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-135 { - padding-right: 135px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-140 { - padding-right: 140px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-145 { - padding-right: 145px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-150 { - padding-right: 150px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-155 { - padding-right: 155px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-160 { - padding-right: 160px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-165 { - padding-right: 165px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-170 { - padding-right: 170px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-175 { - padding-right: 175px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-180 { - padding-right: 180px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-185 { - padding-right: 185px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-190 { - padding-right: 190px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-195 { - padding-right: 195px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-200 { - padding-right: 200px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-205 { - padding-right: 205px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-210 { - padding-right: 210px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-215 { - padding-right: 215px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-220 { - padding-right: 220px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-225 { - padding-right: 225px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-230 { - padding-right: 230px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-235 { - padding-right: 235px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-240 { - padding-right: 240px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-245 { - padding-right: 245px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-250 { - padding-right: 250px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-255 { - padding-right: 255px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-260 { - padding-right: 260px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-265 { - padding-right: 265px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-270 { - padding-right: 270px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-275 { - padding-right: 275px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-280 { - padding-right: 280px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-285 { - padding-right: 285px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-290 { - padding-right: 290px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-295 { - padding-right: 295px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-300 { - padding-right: 300px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-305 { - padding-right: 305px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-310 { - padding-right: 310px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-315 { - padding-right: 315px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-320 { - padding-right: 320px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-325 { - padding-right: 325px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-330 { - padding-right: 330px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-335 { - padding-right: 335px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-340 { - padding-right: 340px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-345 { - padding-right: 345px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-350 { - padding-right: 350px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-355 { - padding-right: 355px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-360 { - padding-right: 360px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-365 { - padding-right: 365px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-370 { - padding-right: 370px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-375 { - padding-right: 375px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-380 { - padding-right: 380px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-385 { - padding-right: 385px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-390 { - padding-right: 390px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-395 { - padding-right: 395px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-400 { - padding-right: 400px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-405 { - padding-right: 405px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-410 { - padding-right: 410px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-415 { - padding-right: 415px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-420 { - padding-right: 420px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-425 { - padding-right: 425px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-430 { - padding-right: 430px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-435 { - padding-right: 435px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-440 { - padding-right: 440px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-445 { - padding-right: 445px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-450 { - padding-right: 450px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-455 { - padding-right: 455px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-460 { - padding-right: 460px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-465 { - padding-right: 465px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-470 { - padding-right: 470px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-475 { - padding-right: 475px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-480 { - padding-right: 480px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-485 { - padding-right: 485px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-490 { - padding-right: 490px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-495 { - padding-right: 495px !important; - } -} - -@media only screen and (min-width: 992px) and (max-width: 1199px) { - .pr-lg-500 { - padding-right: 500px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-0 { - padding-right: 0px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-5 { - padding-right: 5px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-10 { - padding-right: 10px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-15 { - padding-right: 15px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-20 { - padding-right: 20px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-25 { - padding-right: 25px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-30 { - padding-right: 30px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-35 { - padding-right: 35px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-40 { - padding-right: 40px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-45 { - padding-right: 45px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-50 { - padding-right: 50px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-55 { - padding-right: 55px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-60 { - padding-right: 60px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-65 { - padding-right: 65px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-70 { - padding-right: 70px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-75 { - padding-right: 75px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-80 { - padding-right: 80px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-85 { - padding-right: 85px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-90 { - padding-right: 90px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-95 { - padding-right: 95px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-100 { - padding-right: 100px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-105 { - padding-right: 105px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-110 { - padding-right: 110px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-115 { - padding-right: 115px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-120 { - padding-right: 120px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-125 { - padding-right: 125px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-130 { - padding-right: 130px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-135 { - padding-right: 135px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-140 { - padding-right: 140px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-145 { - padding-right: 145px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-150 { - padding-right: 150px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-155 { - padding-right: 155px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-160 { - padding-right: 160px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-165 { - padding-right: 165px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-170 { - padding-right: 170px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-175 { - padding-right: 175px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-180 { - padding-right: 180px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-185 { - padding-right: 185px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-190 { - padding-right: 190px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-195 { - padding-right: 195px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-200 { - padding-right: 200px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-205 { - padding-right: 205px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-210 { - padding-right: 210px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-215 { - padding-right: 215px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-220 { - padding-right: 220px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-225 { - padding-right: 225px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-230 { - padding-right: 230px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-235 { - padding-right: 235px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-240 { - padding-right: 240px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-245 { - padding-right: 245px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-250 { - padding-right: 250px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-255 { - padding-right: 255px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-260 { - padding-right: 260px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-265 { - padding-right: 265px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-270 { - padding-right: 270px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-275 { - padding-right: 275px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-280 { - padding-right: 280px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-285 { - padding-right: 285px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-290 { - padding-right: 290px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-295 { - padding-right: 295px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-300 { - padding-right: 300px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-305 { - padding-right: 305px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-310 { - padding-right: 310px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-315 { - padding-right: 315px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-320 { - padding-right: 320px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-325 { - padding-right: 325px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-330 { - padding-right: 330px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-335 { - padding-right: 335px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-340 { - padding-right: 340px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-345 { - padding-right: 345px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-350 { - padding-right: 350px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-355 { - padding-right: 355px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-360 { - padding-right: 360px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-365 { - padding-right: 365px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-370 { - padding-right: 370px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-375 { - padding-right: 375px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-380 { - padding-right: 380px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-385 { - padding-right: 385px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-390 { - padding-right: 390px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-395 { - padding-right: 395px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-400 { - padding-right: 400px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-405 { - padding-right: 405px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-410 { - padding-right: 410px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-415 { - padding-right: 415px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-420 { - padding-right: 420px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-425 { - padding-right: 425px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-430 { - padding-right: 430px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-435 { - padding-right: 435px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-440 { - padding-right: 440px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-445 { - padding-right: 445px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-450 { - padding-right: 450px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-455 { - padding-right: 455px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-460 { - padding-right: 460px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-465 { - padding-right: 465px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-470 { - padding-right: 470px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-475 { - padding-right: 475px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-480 { - padding-right: 480px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-485 { - padding-right: 485px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-490 { - padding-right: 490px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-495 { - padding-right: 495px !important; - } -} - -@media only screen and (min-width: 768px) and (max-width: 991px) { - .pr-md-500 { - padding-right: 500px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-0 { - padding-right: 0px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-5 { - padding-right: 5px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-10 { - padding-right: 10px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-15 { - padding-right: 15px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-20 { - padding-right: 20px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-25 { - padding-right: 25px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-30 { - padding-right: 30px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-35 { - padding-right: 35px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-40 { - padding-right: 40px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-45 { - padding-right: 45px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-50 { - padding-right: 50px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-55 { - padding-right: 55px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-60 { - padding-right: 60px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-65 { - padding-right: 65px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-70 { - padding-right: 70px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-75 { - padding-right: 75px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-80 { - padding-right: 80px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-85 { - padding-right: 85px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-90 { - padding-right: 90px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-95 { - padding-right: 95px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-100 { - padding-right: 100px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-105 { - padding-right: 105px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-110 { - padding-right: 110px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-115 { - padding-right: 115px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-120 { - padding-right: 120px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-125 { - padding-right: 125px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-130 { - padding-right: 130px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-135 { - padding-right: 135px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-140 { - padding-right: 140px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-145 { - padding-right: 145px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-150 { - padding-right: 150px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-155 { - padding-right: 155px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-160 { - padding-right: 160px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-165 { - padding-right: 165px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-170 { - padding-right: 170px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-175 { - padding-right: 175px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-180 { - padding-right: 180px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-185 { - padding-right: 185px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-190 { - padding-right: 190px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-195 { - padding-right: 195px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-200 { - padding-right: 200px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-205 { - padding-right: 205px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-210 { - padding-right: 210px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-215 { - padding-right: 215px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-220 { - padding-right: 220px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-225 { - padding-right: 225px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-230 { - padding-right: 230px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-235 { - padding-right: 235px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-240 { - padding-right: 240px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-245 { - padding-right: 245px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-250 { - padding-right: 250px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-255 { - padding-right: 255px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-260 { - padding-right: 260px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-265 { - padding-right: 265px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-270 { - padding-right: 270px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-275 { - padding-right: 275px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-280 { - padding-right: 280px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-285 { - padding-right: 285px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-290 { - padding-right: 290px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-295 { - padding-right: 295px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-300 { - padding-right: 300px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-305 { - padding-right: 305px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-310 { - padding-right: 310px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-315 { - padding-right: 315px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-320 { - padding-right: 320px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-325 { - padding-right: 325px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-330 { - padding-right: 330px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-335 { - padding-right: 335px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-340 { - padding-right: 340px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-345 { - padding-right: 345px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-350 { - padding-right: 350px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-355 { - padding-right: 355px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-360 { - padding-right: 360px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-365 { - padding-right: 365px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-370 { - padding-right: 370px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-375 { - padding-right: 375px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-380 { - padding-right: 380px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-385 { - padding-right: 385px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-390 { - padding-right: 390px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-395 { - padding-right: 395px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-400 { - padding-right: 400px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-405 { - padding-right: 405px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-410 { - padding-right: 410px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-415 { - padding-right: 415px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-420 { - padding-right: 420px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-425 { - padding-right: 425px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-430 { - padding-right: 430px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-435 { - padding-right: 435px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-440 { - padding-right: 440px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-445 { - padding-right: 445px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-450 { - padding-right: 450px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-455 { - padding-right: 455px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-460 { - padding-right: 460px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-465 { - padding-right: 465px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-470 { - padding-right: 470px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-475 { - padding-right: 475px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-480 { - padding-right: 480px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-485 { - padding-right: 485px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-490 { - padding-right: 490px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-495 { - padding-right: 495px !important; - } -} - -@media only screen and (max-width: 767px) { - .pr-sm-500 { - padding-right: 500px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-0 { - padding-right: 0px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-5 { - padding-right: 5px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-10 { - padding-right: 10px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-15 { - padding-right: 15px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-20 { - padding-right: 20px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-25 { - padding-right: 25px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-30 { - padding-right: 30px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-35 { - padding-right: 35px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-40 { - padding-right: 40px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-45 { - padding-right: 45px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-50 { - padding-right: 50px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-55 { - padding-right: 55px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-60 { - padding-right: 60px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-65 { - padding-right: 65px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-70 { - padding-right: 70px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-75 { - padding-right: 75px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-80 { - padding-right: 80px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-85 { - padding-right: 85px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-90 { - padding-right: 90px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-95 { - padding-right: 95px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-100 { - padding-right: 100px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-105 { - padding-right: 105px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-110 { - padding-right: 110px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-115 { - padding-right: 115px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-120 { - padding-right: 120px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-125 { - padding-right: 125px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-130 { - padding-right: 130px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-135 { - padding-right: 135px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-140 { - padding-right: 140px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-145 { - padding-right: 145px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-150 { - padding-right: 150px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-155 { - padding-right: 155px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-160 { - padding-right: 160px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-165 { - padding-right: 165px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-170 { - padding-right: 170px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-175 { - padding-right: 175px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-180 { - padding-right: 180px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-185 { - padding-right: 185px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-190 { - padding-right: 190px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-195 { - padding-right: 195px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-200 { - padding-right: 200px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-205 { - padding-right: 205px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-210 { - padding-right: 210px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-215 { - padding-right: 215px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-220 { - padding-right: 220px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-225 { - padding-right: 225px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-230 { - padding-right: 230px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-235 { - padding-right: 235px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-240 { - padding-right: 240px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-245 { - padding-right: 245px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-250 { - padding-right: 250px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-255 { - padding-right: 255px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-260 { - padding-right: 260px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-265 { - padding-right: 265px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-270 { - padding-right: 270px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-275 { - padding-right: 275px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-280 { - padding-right: 280px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-285 { - padding-right: 285px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-290 { - padding-right: 290px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-295 { - padding-right: 295px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-300 { - padding-right: 300px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-305 { - padding-right: 305px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-310 { - padding-right: 310px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-315 { - padding-right: 315px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-320 { - padding-right: 320px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-325 { - padding-right: 325px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-330 { - padding-right: 330px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-335 { - padding-right: 335px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-340 { - padding-right: 340px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-345 { - padding-right: 345px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-350 { - padding-right: 350px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-355 { - padding-right: 355px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-360 { - padding-right: 360px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-365 { - padding-right: 365px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-370 { - padding-right: 370px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-375 { - padding-right: 375px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-380 { - padding-right: 380px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-385 { - padding-right: 385px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-390 { - padding-right: 390px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-395 { - padding-right: 395px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-400 { - padding-right: 400px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-405 { - padding-right: 405px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-410 { - padding-right: 410px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-415 { - padding-right: 415px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-420 { - padding-right: 420px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-425 { - padding-right: 425px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-430 { - padding-right: 430px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-435 { - padding-right: 435px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-440 { - padding-right: 440px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-445 { - padding-right: 445px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-450 { - padding-right: 450px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-455 { - padding-right: 455px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-460 { - padding-right: 460px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-465 { - padding-right: 465px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-470 { - padding-right: 470px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-475 { - padding-right: 475px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-480 { - padding-right: 480px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-485 { - padding-right: 485px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-490 { - padding-right: 490px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-495 { - padding-right: 495px !important; - } -} - -@media only screen and (max-width: 575px) { - .pr-xs-500 { - padding-right: 500px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-0 { - padding-right: 0px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-5 { - padding-right: 5px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-10 { - padding-right: 10px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-15 { - padding-right: 15px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-20 { - padding-right: 20px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-25 { - padding-right: 25px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-30 { - padding-right: 30px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-35 { - padding-right: 35px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-40 { - padding-right: 40px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-45 { - padding-right: 45px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-50 { - padding-right: 50px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-55 { - padding-right: 55px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-60 { - padding-right: 60px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-65 { - padding-right: 65px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-70 { - padding-right: 70px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-75 { - padding-right: 75px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-80 { - padding-right: 80px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-85 { - padding-right: 85px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-90 { - padding-right: 90px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-95 { - padding-right: 95px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-100 { - padding-right: 100px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-105 { - padding-right: 105px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-110 { - padding-right: 110px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-115 { - padding-right: 115px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-120 { - padding-right: 120px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-125 { - padding-right: 125px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-130 { - padding-right: 130px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-135 { - padding-right: 135px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-140 { - padding-right: 140px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-145 { - padding-right: 145px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-150 { - padding-right: 150px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-155 { - padding-right: 155px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-160 { - padding-right: 160px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-165 { - padding-right: 165px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-170 { - padding-right: 170px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-175 { - padding-right: 175px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-180 { - padding-right: 180px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-185 { - padding-right: 185px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-190 { - padding-right: 190px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-195 { - padding-right: 195px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-200 { - padding-right: 200px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-205 { - padding-right: 205px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-210 { - padding-right: 210px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-215 { - padding-right: 215px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-220 { - padding-right: 220px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-225 { - padding-right: 225px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-230 { - padding-right: 230px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-235 { - padding-right: 235px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-240 { - padding-right: 240px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-245 { - padding-right: 245px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-250 { - padding-right: 250px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-255 { - padding-right: 255px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-260 { - padding-right: 260px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-265 { - padding-right: 265px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-270 { - padding-right: 270px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-275 { - padding-right: 275px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-280 { - padding-right: 280px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-285 { - padding-right: 285px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-290 { - padding-right: 290px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-295 { - padding-right: 295px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-300 { - padding-right: 300px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-305 { - padding-right: 305px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-310 { - padding-right: 310px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-315 { - padding-right: 315px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-320 { - padding-right: 320px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-325 { - padding-right: 325px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-330 { - padding-right: 330px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-335 { - padding-right: 335px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-340 { - padding-right: 340px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-345 { - padding-right: 345px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-350 { - padding-right: 350px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-355 { - padding-right: 355px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-360 { - padding-right: 360px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-365 { - padding-right: 365px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-370 { - padding-right: 370px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-375 { - padding-right: 375px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-380 { - padding-right: 380px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-385 { - padding-right: 385px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-390 { - padding-right: 390px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-395 { - padding-right: 395px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-400 { - padding-right: 400px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-405 { - padding-right: 405px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-410 { - padding-right: 410px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-415 { - padding-right: 415px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-420 { - padding-right: 420px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-425 { - padding-right: 425px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-430 { - padding-right: 430px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-435 { - padding-right: 435px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-440 { - padding-right: 440px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-445 { - padding-right: 445px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-450 { - padding-right: 450px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-455 { - padding-right: 455px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-460 { - padding-right: 460px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-465 { - padding-right: 465px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-470 { - padding-right: 470px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-475 { - padding-right: 475px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-480 { - padding-right: 480px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-485 { - padding-right: 485px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-490 { - padding-right: 490px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-495 { - padding-right: 495px !important; - } -} - -@media only screen and (max-width: 479px) { - .pr-xxs-500 { - padding-right: 500px !important; - } -} - -/* no gutters */ -.no-gutters { - margin-left: 0; - margin-right: 0; -} - -.no-gutters>.col, -.no-gutters>[class*="col-"] { - padding-right: 0; - padding-left: 0; - margin: 0; -} \ No newline at end of file diff --git a/desarrollo/diseno/support-center/faqs.php b/desarrollo/diseno/support-center/faqs.php deleted file mode 100644 index 748bd480..00000000 --- a/desarrollo/diseno/support-center/faqs.php +++ /dev/null @@ -1,593 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

FAQs

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
-
- -

Frequently asked
questions

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

-
-
-
- -
- - -
- -
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
-
-
- - -
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
-
-
- -
- -
- -
- - - -
- -
- -
- -
-
- -

Frequently asked
questions

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

-
-
-
- -
- - -
- -
-
- -
-
How do I disable installed apps? What - is the source of the ?
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis tempus eleifend tortor, - vel molestie orci feugiat sit amet. Donec posuere rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In at - eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed.

-
-
-
- - -
-
- -
-
What should I include in App ?
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis tempus eleifend tortor, - vel molestie orci feugiat sit amet. Donec posuere rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In at - eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed.

-
-
-
- - -
-
- -
-
Can users choose to install the app?
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis tempus eleifend tortor, - vel molestie orci feugiat sit amet. Donec posuere rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In at - eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed.

-
-
-
- - -
-
- -
-
How does the Moodle app work?
-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis tempus eleifend tortor, - vel molestie orci feugiat sit amet. Donec posuere rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In at - eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed.

-
-
-
- -
- - -
- -
-
-

Need any help!

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet.

- Contact - us -
-
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/forget-password.php b/desarrollo/diseno/support-center/forget-password.php deleted file mode 100644 index e6679278..00000000 --- a/desarrollo/diseno/support-center/forget-password.php +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - -
- -
- -
- -
- - -
- -
- -
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/image.php b/desarrollo/diseno/support-center/image.php deleted file mode 100644 index 73f97daf..00000000 --- a/desarrollo/diseno/support-center/image.php +++ /dev/null @@ -1,511 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Image

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
- -
- - -
-
-
-

Images

-
-
-

Documentation and examples for opting images into responsive behavior (so they - never become larger than their parent elements) and add lightweight styles to - them—all via classes.

-

Images in Bootstrap are made responsive with.img-fluid. max-width: 100%; and height: auto; are applied to the image so - that it scales with the parent element.

-
-
- Responsive image -
-
-
-
-                                        
-<div class="image-box mb-20">
-    <img class="img-fluid" src="img/docs/r-img-1.jpg" alt="Responsive image">
-</div>
-                                        
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Image shapes

-
-
-

Easily create images in different shapes with adding one class to the tag. -

-
-
-
-
- Round image -
-
- Circle image -
-
- Thumbnail -
-
-
-
-
-
-                                        
-<div class="image-shapes-box mb-20">
-    <div class="row">
-        <div class="col-md-6 text-center">
-            <img src="assets/images/thumb/l-1.jpg" class="rounded" alt="Round image">
-        </div>
-        <div class="col-md-6 text-center">
-            <img src="assets/images/thumb/l-2.jpg" class="rounded-circle" alt="Circle image">
-        </div>
-        <div class="col-md-6 col-center mt-30">
-            <img src="assets/images/thumb/l-3.jpg" class="img-thumbnail" alt="Thumbnail">
-        </div>
-    </div>
-</div>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Aligning images

-
-
-

Align images with the helper float - classes or text - alignment classes. block-level - images can be centered using the - .mx-auto margin utility class. -

-
-
- ... - ... -
-
-
-
-        
-<div class="aligningimage-box fix mb-20">
-    <img src="img/docs/Round-img-1.jpg" class="rounded float-left" alt="...">
-    <img src="img/docs/circle-img-1.jpg" class="rounded float-right" alt="...">
-</div>
-
-
Markup
-
Copy -
-
-
-
-
-
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/img/bg/map.png b/desarrollo/diseno/support-center/img/bg/map.png deleted file mode 100644 index f897a9a6..00000000 Binary files a/desarrollo/diseno/support-center/img/bg/map.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/bg/newsletter-bg.jpg b/desarrollo/diseno/support-center/img/bg/newsletter-bg.jpg deleted file mode 100644 index 21306227..00000000 Binary files a/desarrollo/diseno/support-center/img/bg/newsletter-bg.jpg and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/favicon.png b/desarrollo/diseno/support-center/img/favicon.png deleted file mode 100644 index bccd2629..00000000 Binary files a/desarrollo/diseno/support-center/img/favicon.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/hero/hero-1.png b/desarrollo/diseno/support-center/img/hero/hero-1.png deleted file mode 100644 index 03263f4a..00000000 Binary files a/desarrollo/diseno/support-center/img/hero/hero-1.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/icon/close-dark.png b/desarrollo/diseno/support-center/img/icon/close-dark.png deleted file mode 100644 index b9d5478e..00000000 Binary files a/desarrollo/diseno/support-center/img/icon/close-dark.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/icon/close-white.png b/desarrollo/diseno/support-center/img/icon/close-white.png deleted file mode 100644 index 2d0ab28b..00000000 Binary files a/desarrollo/diseno/support-center/img/icon/close-white.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/icon/menu.png b/desarrollo/diseno/support-center/img/icon/menu.png deleted file mode 100644 index cd7367ca..00000000 Binary files a/desarrollo/diseno/support-center/img/icon/menu.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/icon/search.png b/desarrollo/diseno/support-center/img/icon/search.png deleted file mode 100644 index 7d09f9e7..00000000 Binary files a/desarrollo/diseno/support-center/img/icon/search.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/logo-2x.png b/desarrollo/diseno/support-center/img/logo-2x.png deleted file mode 100644 index 463ad75d..00000000 Binary files a/desarrollo/diseno/support-center/img/logo-2x.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/logo.png b/desarrollo/diseno/support-center/img/logo.png deleted file mode 100644 index 956938d4..00000000 Binary files a/desarrollo/diseno/support-center/img/logo.png and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/team/team-1.jpg b/desarrollo/diseno/support-center/img/team/team-1.jpg deleted file mode 100644 index 3d86eeb8..00000000 Binary files a/desarrollo/diseno/support-center/img/team/team-1.jpg and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/team/team-2.jpg b/desarrollo/diseno/support-center/img/team/team-2.jpg deleted file mode 100644 index de0a508a..00000000 Binary files a/desarrollo/diseno/support-center/img/team/team-2.jpg and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/team/team-3.jpg b/desarrollo/diseno/support-center/img/team/team-3.jpg deleted file mode 100644 index 5899b38f..00000000 Binary files a/desarrollo/diseno/support-center/img/team/team-3.jpg and /dev/null differ diff --git a/desarrollo/diseno/support-center/img/team/team-4.jpg b/desarrollo/diseno/support-center/img/team/team-4.jpg deleted file mode 100644 index a0c831cf..00000000 Binary files a/desarrollo/diseno/support-center/img/team/team-4.jpg and /dev/null differ diff --git a/desarrollo/diseno/support-center/index.php b/desarrollo/diseno/support-center/index.php deleted file mode 100644 index a803b495..00000000 --- a/desarrollo/diseno/support-center/index.php +++ /dev/null @@ -1,547 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - - - - - - - -
- -
- - - -
- -
-
-
- Hero
-

Necesitas Ayuda?

-

Busca en nuestro Centro de Apoyo.

-
- - -
-
-
- -
- - - -
- -
- -
- -
-
- -

Banco de Sabiduría

-
-
-
- -
- - -
- -
-
-
- -
-
-

Base de Conocimiento

-

- Encuentra todo lo relacionado a La Pieza.DO. -

- Leer más -
-
-
- - -
-
-
- -
-
-

FAQ

-

- Muchas preguntas que se han hecho antes y tienen respuestas aquí. -

- Read more -
-
-
- - -
-
-
- -
-
-

Documentación

-

- Lee la documentación y explora nuestra nueva interfaz de usuario. -

- Read more -
-
-
- -
- -
- -
- - - -
- -
- -
- -
-
- -

Preguntas
Frecuentes

-

Aqui tenemos todas las respuestas a tus preguntas con respecto al uso de La Pieza.DO.
Aquí podrás encontrar respuestas rápidas para que puedas utilizar la aplicación.

-
-
-
- -
- - -
- -
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
-
-
- - -
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
- -
- -
-
-

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis - tempus eleifend tortor, vel molestie orci feugiat sit amet. Donec posuere - rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In - at eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis - ut. Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-
-
-
-
-
- -
- -
- -
- - - - - - - - - - -
- -
- - - - -
- - - -
- -
- - - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/intro.php b/desarrollo/diseno/support-center/intro.php deleted file mode 100644 index 14e162be..00000000 --- a/desarrollo/diseno/support-center/intro.php +++ /dev/null @@ -1,502 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Getting Started

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
- -
- - -
-
-
-
-

Introduction

-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis tempus eleifend - tortor, vel molestie orci feugiat sit amet. Donec posuere rhoncus tempus. - Pellentesque vitae tincidunt est. Aliquam non aliquet nisi, ac sagittis nibh. In at - eleifend tellus, eget tempor diam. Vestibulum tincidunt tempus eros, - et rutrum diam posuere sed. Duis tempus aliquet felis, ac posuere nisi mollis ut. - Morbi maximus, mauris sed posuere dignissim, diam nibh euismod ex, - id volutpat neque purus et mi.

-

Sed sed aliquam diam. Etiam convallis lorem fringilla lobortis dictum. Vivamus - volutpat tempor ligula suscipit pulvinar. - Cras accumsan leo lorem, at accumsan neque mattis vel. Pellentesque quis euismod - lacus, a pellentesque nunc. Suspendisse suscipit venenatis ex, - at malesuada purus ornare eu. Mauris sed libero ac libero ornare gravida. Aliquam - est enim, rutrum at enim ac, sollicitudin sodales purus. Sed - mollis tempus est, sed bibendum magna tempor nec. Sed erat felis, suscipit eget - ultricies id, malesuada quis purus. Etiam aliquet consectetur - velit, nec pulvinar est egestas sed.

-

Aenean suscipit arcu purus, eget blandit dolor consequat quis. In maximus sagittis - justo, a aliquam leo luctus condimentum. Proin velit lectus, - venenatis vehicula risus sed, gravida feugiat ligula. Nam maximus, urna eget - elementum consectetur, eros justo volutpat diam, eu porta neque lorem at massa. - Nunc scelerisque est eu erat cursus, sed elementum lectus sagittis. Sed sed faucibus - est, sit amet eleifend metus. Nunc pharetra tincidunt eros non viverra. - Curabitur vulputate augue sapien, sed porttitor mauris facilisis euismod. -

- - -
-

Grunt File & Installation

- The JavaScript Task Runner. -
-

Installing Grunt: Run - npm install grunt --save-dev command from your teminal to - install grunt within your project.

-

Grunt Sass: Run grunt sass command from - your project directory. It will compile SASS to CSS for the project. - This will read the file `assets/scss/filename.scss` and output a - plain-css file to `/assets/css/filename.css`.

-

Grunt JSHint: Run grunt jshint command from - your project directory. It will checks all *.js files under - `assetsjs/filename` for common syntax or coding errors using the JSHint - utility.

-

Grunt Sprite: Run grunt sprite command from - your project directory.

-

Further help: To get more help on the grunt checkout Grunt

-

Note: However, any SASS code you write must be able - compile via Grunt as well.It will generate pre-compiled javascript - templates.

-

Grunt - is a JavaScript task runner, a tool used to automatically perform - frequent tasks such as minification, compilation, unit testing, and - linting. It uses a command-line interface to run custom tasks defined in - a file.

-
-
- -

SCSS Structure

-

Aenean suscipit arcu purus, eget blandit dolor consequat quis. - In maximus sagittis justo, a aliquam leo luctus condimentum. Proin velit lectus, - venenatis vehicula risus sed, gravida feugiat ligula. Nam maximus, urna eget - elementum consectetur, eros justo volutpat diam, eu porta neque lorem at massa. - Nunc scelerisque est eu erat cursus, sed elementum lectus sagittis. Sed sed faucibus - est, sit amet eleifend metus. Nunc pharetra tincidunt eros non viverra. - Curabitur vulputate augue sapien, sed porttitor mauris facilisis euismod. -

-
- -

Folder Structure

-
-
├── html files
-├── css/
-    ├── All css files
-├── fonts/
-├── img/
-├── Js/
-    ├── All common Javascripts files
-├── scss/
-    ├── All scss files
-
-
-
- -

Font Used

-
-

Google fonts are used in the template. They are as follows: Nunito - Sans - Pro and - Rubik

-

Icons: Line Awesome and Remixicon -

-

All Images are used: Pexels.com and Freepik

-
-
-
-
-
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/js/main.js b/desarrollo/diseno/support-center/js/main.js deleted file mode 100644 index 3ae2693c..00000000 --- a/desarrollo/diseno/support-center/js/main.js +++ /dev/null @@ -1,188 +0,0 @@ -/* Template Name: Docuto - Documentation HTML Template - Author: Acavo - Version: 1.0.0 - Created: Oct 2020 - File Description: Main js file of the template -*/ - - -/*============================================*/ -// -// 01 -- Header -// 02 -- mCustomScrollbar -// 03 -- Smooth scroll js -// 04 -- back to top -// 05 -- Clipboar Active -// 06 -- Preloader -// 07 -- AOS -// -/*===========================================*/ - - -(function ($) { - "use strict"; - - /*=========================================== - - 01 -- Header - - =============================================*/ - - var nav_offset_top = $("header").height() + 50; - - function navbarFixed() { - if ($(".header_area").length) { - $(window).scroll(function () { - var scroll = $(window).scrollTop(); - if (scroll >= nav_offset_top) { - $(".header_area").addClass("navbar_fixed"); - } else { - $(".header_area").removeClass("navbar_fixed"); - } - }); - } - } - navbarFixed(); - - - - $(document).ready(function () { - $(".pagepiling .section").each(function (e) { - if (e != 0) $(this).hide(); - }); - - $(".moveDown").on("click", function () { - if ($(".pagepiling .section:visible").next().length != 0) - $(".pagepiling .section:visible") - .next() - .show() - .addClass("active") - .prev() - .hide() - .removeClass("active"); - return false; - }); - }); - /*=========================================== - - 02 -- mCustomScrollbar - - =============================================*/ - - $(window).on("load", function () { - if ($(".scroll_body").length) { - $(".scroll_body").mCustomScrollbar({ - theme: "dark-3", - setHeight: true, - }); - } - }); - - $(".menu_btn").on("click", function () { - $("body").removeClass("menu-is-closed").addClass("menu-is-opened"); - }); - $(".close_btn, .body_capture").on("click", function () { - $("body").removeClass("menu-is-opened").addClass("menu-is-closed"); - }); - - function wd_scroll() { - if ($(".wd_scroll").length) { - $(window).on("load", function () { - $(".wd_scroll").mCustomScrollbar({ - theme: "dark", - }); - }); - } - } - wd_scroll(); - - $(".menu_list li a").each(function () { - var $this = $(this); - $this.on("click", function (e) { - var has = $this.hasClass("open"); - $(".menu_list li a").removeClass("open"); - if (has) { - $this.removeClass("open"); - } else { - $this.addClass("open"); - } - }); - }); - - var dropToggle = $(".menu_list > li").has("ul").children("a"); - dropToggle.on("click", function () { - dropToggle.not(this).closest("li").find("ul").slideUp(300); - $(this).closest("li").children("ul").slideToggle(300); - return false; - }); - - /*=========================================== - - 03 -- Wow Animation - - =============================================*/ - - - function wowAnimation() { - new WOW({ - offset: 100, - animateClass: "animated", - mobile: true, - }).init(); - } - wowAnimation(); - - /*=========================================== - - 04 -- back to top - start - - =============================================*/ - - $(window).scroll(function () { - if ($(this).scrollTop() > 200) { - $('#backtotop:hidden').stop(true, true).fadeIn(); - } else { - $('#backtotop').stop(true, true).fadeOut(); - } - }); - $(function () { - $("#scroll").on('click', function () { - $("html,body").animate({ - scrollTop: $("#thetop").offset().top - }, "slow"); - return false - }) - }); - /*=========================================== - - 05 -- Clipboar Active - - =============================================*/ - - $('.cbtn').on('click', function () { - var $this = $(this); - var clipboard = new ClipboardJS('.cbtn'); - - clipboard.on('success', function (e) { - $this.text('Copied!'); - - setTimeout(function () { - $this.text('Copy'); - }, 2000); - }); - }); - /*=========================================== - - 06 -- Preloader - - =============================================*/ - - $(window).on("load", function () { - $("#status").fadeOut(); - $("#preloader").delay(550).fadeOut("slow"); - $("body").delay(550).css({ - overflow: "visible", - }); - }); - -})(jQuery); \ No newline at end of file diff --git a/desarrollo/diseno/support-center/js/plugins.js b/desarrollo/diseno/support-center/js/plugins.js deleted file mode 100644 index 5fdac5f0..00000000 --- a/desarrollo/diseno/support-center/js/plugins.js +++ /dev/null @@ -1,2993 +0,0 @@ -/* Template Name: Docuto - Documentation HTML Template - Author: Acavo - Version: 1.0.0 - Created: Oct 2020 - File Description: Plugins js file of the template -*/ - - -/*============================================*/ -// -// 01 -- Wow -// 02 -- Prism JS -// 03 -- Smooth scroll js -// -/*===========================================*/ -/*=========================================== - - 01 -- Wow - -=============================================*/ - -/*! WOW - v1.1.3 - 2016-05-06 - * Copyright (c) 2016 Matthieu Aussaguel;*/ -(function () { - var a, b, c, d, e, f = function (a, b) { - return function () { - return a.apply(b, arguments) - } - }, - g = [].indexOf || function (a) { - for (var b = 0, c = this.length; c > b; b++) - if (b in this && this[b] === a) return b; - return -1 - }; - b = function () { - function a() {} - return a.prototype.extend = function (a, b) { - var c, d; - for (c in b) d = b[c], null == a[c] && (a[c] = d); - return a - }, a.prototype.isMobile = function (a) { - return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a) - }, a.prototype.createEvent = function (a, b, c, d) { - var e; - return null == b && (b = !1), null == c && (c = !1), null == d && (d = null), null != document.createEvent ? (e = document.createEvent("CustomEvent"), e.initCustomEvent(a, b, c, d)) : null != document.createEventObject ? (e = document.createEventObject(), e.eventType = a) : e.eventName = a, e - }, a.prototype.emitEvent = function (a, b) { - return null != a.dispatchEvent ? a.dispatchEvent(b) : b in (null != a) ? a[b]() : "on" + b in (null != a) ? a["on" + b]() : void 0 - }, a.prototype.addEvent = function (a, b, c) { - return null != a.addEventListener ? a.addEventListener(b, c, !1) : null != a.attachEvent ? a.attachEvent("on" + b, c) : a[b] = c - }, a.prototype.removeEvent = function (a, b, c) { - return null != a.removeEventListener ? a.removeEventListener(b, c, !1) : null != a.detachEvent ? a.detachEvent("on" + b, c) : delete a[b] - }, a.prototype.innerHeight = function () { - return "innerHeight" in window ? window.innerHeight : document.documentElement.clientHeight - }, a - }(), c = this.WeakMap || this.MozWeakMap || (c = function () { - function a() { - this.keys = [], this.values = [] - } - return a.prototype.get = function (a) { - var b, c, d, e, f; - for (f = this.keys, b = d = 0, e = f.length; e > d; b = ++d) - if (c = f[b], c === a) return this.values[b] - }, a.prototype.set = function (a, b) { - var c, d, e, f, g; - for (g = this.keys, c = e = 0, f = g.length; f > e; c = ++e) - if (d = g[c], d === a) return void(this.values[c] = b); - return this.keys.push(a), this.values.push(b) - }, a - }()), a = this.MutationObserver || this.WebkitMutationObserver || this.MozMutationObserver || (a = function () { - function a() { - "undefined" != typeof console && null !== console && console.warn("MutationObserver is not supported by your browser."), "undefined" != typeof console && null !== console && console.warn("WOW.js cannot detect dom mutations, please call .sync() after loading new content.") - } - return a.notSupported = !0, a.prototype.observe = function () {}, a - }()), d = this.getComputedStyle || function (a, b) { - return this.getPropertyValue = function (b) { - var c; - return "float" === b && (b = "styleFloat"), e.test(b) && b.replace(e, function (a, b) { - return b.toUpperCase() - }), (null != (c = a.currentStyle) ? c[b] : void 0) || null - }, this - }, e = /(\-([a-z]){1})/g, this.WOW = function () { - function e(a) { - null == a && (a = {}), this.scrollCallback = f(this.scrollCallback, this), this.scrollHandler = f(this.scrollHandler, this), this.resetAnimation = f(this.resetAnimation, this), this.start = f(this.start, this), this.scrolled = !0, this.config = this.util().extend(a, this.defaults), null != a.scrollContainer && (this.config.scrollContainer = document.querySelector(a.scrollContainer)), this.animationNameCache = new c, this.wowEvent = this.util().createEvent(this.config.boxClass) - } - return e.prototype.defaults = { - boxClass: "wow", - animateClass: "animated", - offset: 0, - mobile: !0, - live: !0, - callback: null, - scrollContainer: null - }, e.prototype.init = function () { - var a; - return this.element = window.document.documentElement, "interactive" === (a = document.readyState) || "complete" === a ? this.start() : this.util().addEvent(document, "DOMContentLoaded", this.start), this.finished = [] - }, e.prototype.start = function () { - var b, c, d, e; - if (this.stopped = !1, this.boxes = function () { - var a, c, d, e; - for (d = this.element.querySelectorAll("." + this.config.boxClass), e = [], a = 0, c = d.length; c > a; a++) b = d[a], e.push(b); - return e - }.call(this), this.all = function () { - var a, c, d, e; - for (d = this.boxes, e = [], a = 0, c = d.length; c > a; a++) b = d[a], e.push(b); - return e - }.call(this), this.boxes.length) - if (this.disabled()) this.resetStyle(); - else - for (e = this.boxes, c = 0, d = e.length; d > c; c++) b = e[c], this.applyStyle(b, !0); - return this.disabled() || (this.util().addEvent(this.config.scrollContainer || window, "scroll", this.scrollHandler), this.util().addEvent(window, "resize", this.scrollHandler), this.interval = setInterval(this.scrollCallback, 50)), this.config.live ? new a(function (a) { - return function (b) { - var c, d, e, f, g; - for (g = [], c = 0, d = b.length; d > c; c++) f = b[c], g.push(function () { - var a, b, c, d; - for (c = f.addedNodes || [], d = [], a = 0, b = c.length; b > a; a++) e = c[a], d.push(this.doSync(e)); - return d - }.call(a)); - return g - } - }(this)).observe(document.body, { - childList: !0, - subtree: !0 - }) : void 0 - }, e.prototype.stop = function () { - return this.stopped = !0, this.util().removeEvent(this.config.scrollContainer || window, "scroll", this.scrollHandler), this.util().removeEvent(window, "resize", this.scrollHandler), null != this.interval ? clearInterval(this.interval) : void 0 - }, e.prototype.sync = function (b) { - return a.notSupported ? this.doSync(this.element) : void 0 - }, e.prototype.doSync = function (a) { - var b, c, d, e, f; - if (null == a && (a = this.element), 1 === a.nodeType) { - for (a = a.parentNode || a, e = a.querySelectorAll("." + this.config.boxClass), f = [], c = 0, d = e.length; d > c; c++) b = e[c], g.call(this.all, b) < 0 ? (this.boxes.push(b), this.all.push(b), this.stopped || this.disabled() ? this.resetStyle() : this.applyStyle(b, !0), f.push(this.scrolled = !0)) : f.push(void 0); - return f - } - }, e.prototype.show = function (a) { - return this.applyStyle(a), a.className = a.className + " " + this.config.animateClass, null != this.config.callback && this.config.callback(a), this.util().emitEvent(a, this.wowEvent), this.util().addEvent(a, "animationend", this.resetAnimation), this.util().addEvent(a, "oanimationend", this.resetAnimation), this.util().addEvent(a, "webkitAnimationEnd", this.resetAnimation), this.util().addEvent(a, "MSAnimationEnd", this.resetAnimation), a - }, e.prototype.applyStyle = function (a, b) { - var c, d, e; - return d = a.getAttribute("data-wow-duration"), c = a.getAttribute("data-wow-delay"), e = a.getAttribute("data-wow-iteration"), this.animate(function (f) { - return function () { - return f.customStyle(a, b, d, c, e) - } - }(this)) - }, e.prototype.animate = function () { - return "requestAnimationFrame" in window ? function (a) { - return window.requestAnimationFrame(a) - } : function (a) { - return a() - } - }(), e.prototype.resetStyle = function () { - var a, b, c, d, e; - for (d = this.boxes, e = [], b = 0, c = d.length; c > b; b++) a = d[b], e.push(a.style.visibility = "visible"); - return e - }, e.prototype.resetAnimation = function (a) { - var b; - return a.type.toLowerCase().indexOf("animationend") >= 0 ? (b = a.target || a.srcElement, b.className = b.className.replace(this.config.animateClass, "").trim()) : void 0 - }, e.prototype.customStyle = function (a, b, c, d, e) { - return b && this.cacheAnimationName(a), a.style.visibility = b ? "hidden" : "visible", c && this.vendorSet(a.style, { - animationDuration: c - }), d && this.vendorSet(a.style, { - animationDelay: d - }), e && this.vendorSet(a.style, { - animationIterationCount: e - }), this.vendorSet(a.style, { - animationName: b ? "none" : this.cachedAnimationName(a) - }), a - }, e.prototype.vendors = ["moz", "webkit"], e.prototype.vendorSet = function (a, b) { - var c, d, e, f; - d = []; - for (c in b) e = b[c], a["" + c] = e, d.push(function () { - var b, d, g, h; - for (g = this.vendors, h = [], b = 0, d = g.length; d > b; b++) f = g[b], h.push(a["" + f + c.charAt(0).toUpperCase() + c.substr(1)] = e); - return h - }.call(this)); - return d - }, e.prototype.vendorCSS = function (a, b) { - var c, e, f, g, h, i; - for (h = d(a), g = h.getPropertyCSSValue(b), f = this.vendors, c = 0, e = f.length; e > c; c++) i = f[c], g = g || h.getPropertyCSSValue("-" + i + "-" + b); - return g - }, e.prototype.animationName = function (a) { - var b; - try { - b = this.vendorCSS(a, "animation-name").cssText - } catch (c) { - b = d(a).getPropertyValue("animation-name") - } - return "none" === b ? "" : b - }, e.prototype.cacheAnimationName = function (a) { - return this.animationNameCache.set(a, this.animationName(a)) - }, e.prototype.cachedAnimationName = function (a) { - return this.animationNameCache.get(a) - }, e.prototype.scrollHandler = function () { - return this.scrolled = !0 - }, e.prototype.scrollCallback = function () { - var a; - return !this.scrolled || (this.scrolled = !1, this.boxes = function () { - var b, c, d, e; - for (d = this.boxes, e = [], b = 0, c = d.length; c > b; b++) a = d[b], a && (this.isVisible(a) ? this.show(a) : e.push(a)); - return e - }.call(this), this.boxes.length || this.config.live) ? void 0 : this.stop() - }, e.prototype.offsetTop = function (a) { - for (var b; void 0 === a.offsetTop;) a = a.parentNode; - for (b = a.offsetTop; a = a.offsetParent;) b += a.offsetTop; - return b - }, e.prototype.isVisible = function (a) { - var b, c, d, e, f; - return c = a.getAttribute("data-wow-offset") || this.config.offset, f = this.config.scrollContainer && this.config.scrollContainer.scrollTop || window.pageYOffset, e = f + Math.min(this.element.clientHeight, this.util().innerHeight()) - c, d = this.offsetTop(a), b = d + a.clientHeight, e >= d && b >= f - }, e.prototype.util = function () { - return null != this._util ? this._util : this._util = new b - }, e.prototype.disabled = function () { - return !this.config.mobile && this.util().isMobile(navigator.userAgent) - }, e - }() -}).call(this); -/*=========================================== - - 02 -- Prism JS - -=============================================*/ - -/* PrismJS 1.15.0 -https://prismjs.com/download.html#themes=prism-coy&languages=markup+css+clike+javascript&plugins=line-numbers */ -var _self = "undefined" != typeof window ? window : "undefined" != typeof WorkerGlobalScope && self instanceof WorkerGlobalScope ? self : {}, - Prism = function () { - var e = /\blang(?:uage)?-([\w-]+)\b/i, - t = 0, - n = _self.Prism = { - manual: _self.Prism && _self.Prism.manual, - disableWorkerMessageHandler: _self.Prism && _self.Prism.disableWorkerMessageHandler, - util: { - encode: function (e) { - return e instanceof r ? new r(e.type, n.util.encode(e.content), e.alias) : "Array" === n.util.type(e) ? e.map(n.util.encode) : e.replace(/&/g, "&").replace(/ e.length) return; - if (!(w instanceof s)) { - if (m && b != t.length - 1) { - h.lastIndex = k; - var _ = h.exec(e); - if (!_) break; - for (var j = _.index + (d ? _[1].length : 0), P = _.index + _[0].length, A = b, x = k, O = t.length; O > A && (P > x || !t[A].type && !t[A - 1].greedy); ++A) x += t[A].length, j >= x && (++b, k = x); - if (t[b] instanceof s) continue; - I = A - b, w = e.slice(k, x), _.index -= k - } else { - h.lastIndex = 0; - var _ = h.exec(w), - I = 1 - } - if (_) { - d && (p = _[1] ? _[1].length : 0); - var j = _.index + p, - _ = _[0].slice(p), - P = j + _.length, - N = w.slice(0, j), - S = w.slice(P), - C = [b, I]; - N && (++b, k += N.length, C.push(N)); - var E = new s(u, f ? n.tokenize(_, f) : _, y, _, m); - if (C.push(E), S && C.push(S), Array.prototype.splice.apply(t, C), 1 != I && n.matchGrammar(e, t, r, b, k, !0, u), i) break - } else if (i) break - } - } - } - } - }, - tokenize: function (e, t) { - var r = [e], - a = t.rest; - if (a) { - for (var l in a) t[l] = a[l]; - delete t.rest - } - return n.matchGrammar(e, r, t, 0, 0, !1), r - }, - hooks: { - all: {}, - add: function (e, t) { - var r = n.hooks.all; - r[e] = r[e] || [], r[e].push(t) - }, - run: function (e, t) { - var r = n.hooks.all[e]; - if (r && r.length) - for (var a, l = 0; a = r[l++];) a(t) - } - } - }, - r = n.Token = function (e, t, n, r, a) { - this.type = e, this.content = t, this.alias = n, this.length = 0 | (r || "").length, this.greedy = !!a - }; - if (r.stringify = function (e, t, a) { - if ("string" == typeof e) return e; - if ("Array" === n.util.type(e)) return e.map(function (n) { - return r.stringify(n, t, e) - }).join(""); - var l = { - type: e.type, - content: r.stringify(e.content, t, a), - tag: "span", - classes: ["token", e.type], - attributes: {}, - language: t, - parent: a - }; - if (e.alias) { - var i = "Array" === n.util.type(e.alias) ? e.alias : [e.alias]; - Array.prototype.push.apply(l.classes, i) - } - n.hooks.run("wrap", l); - var o = Object.keys(l.attributes).map(function (e) { - return e + '="' + (l.attributes[e] || "").replace(/"/g, """) + '"' - }).join(" "); - return "<" + l.tag + ' class="' + l.classes.join(" ") + '"' + (o ? " " + o : "") + ">" + l.content + "" - }, !_self.document) return _self.addEventListener ? (n.disableWorkerMessageHandler || _self.addEventListener("message", function (e) { - var t = JSON.parse(e.data), - r = t.language, - a = t.code, - l = t.immediateClose; - _self.postMessage(n.highlight(a, n.languages[r], r)), l && _self.close() - }, !1), _self.Prism) : _self.Prism; - var a = document.currentScript || [].slice.call(document.getElementsByTagName("script")).pop(); - return a && (n.filename = a.src, n.manual || a.hasAttribute("data-manual") || ("loading" !== document.readyState ? window.requestAnimationFrame ? window.requestAnimationFrame(n.highlightAll) : window.setTimeout(n.highlightAll, 16) : document.addEventListener("DOMContentLoaded", n.highlightAll))), _self.Prism - }(); -"undefined" != typeof module && module.exports && (module.exports = Prism), "undefined" != typeof global && (global.Prism = Prism); -Prism.languages.markup = { - comment: //, - prolog: /<\?[\s\S]+?\?>/, - doctype: //i, - cdata: //i, - tag: { - pattern: /<\/?(?!\d)[^\s>\/=$<%]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s'">=]+))?)*\s*\/?>/i, - greedy: !0, - inside: { - tag: { - pattern: /^<\/?[^\s>\/]+/i, - inside: { - punctuation: /^<\/?/, - namespace: /^[^\s>\/:]+:/ - } - }, - "attr-value": { - pattern: /=(?:("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|[^\s'">=]+)/i, - inside: { - punctuation: [/^=/, { - pattern: /(^|[^\\])["']/, - lookbehind: !0 - }] - } - }, - punctuation: /\/?>/, - "attr-name": { - pattern: /[^\s>\/]+/, - inside: { - namespace: /^[^\s>\/:]+:/ - } - } - } - }, - entity: /&#?[\da-z]{1,8};/i -}, Prism.languages.markup.tag.inside["attr-value"].inside.entity = Prism.languages.markup.entity, Prism.hooks.add("wrap", function (a) { - "entity" === a.type && (a.attributes.title = a.content.replace(/&/, "&")) -}), Prism.languages.xml = Prism.languages.markup, Prism.languages.html = Prism.languages.markup, Prism.languages.mathml = Prism.languages.markup, Prism.languages.svg = Prism.languages.markup; -Prism.languages.css = { - comment: /\/\*[\s\S]*?\*\//, - atrule: { - pattern: /@[\w-]+?.*?(?:;|(?=\s*\{))/i, - inside: { - rule: /@[\w-]+/ - } - }, - url: /url\((?:(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|.*?)\)/i, - selector: /[^{}\s][^{};]*?(?=\s*\{)/, - string: { - pattern: /("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/, - greedy: !0 - }, - property: /[-_a-z\xA0-\uFFFF][-\w\xA0-\uFFFF]*(?=\s*:)/i, - important: /!important\b/i, - "function": /[-a-z0-9]+(?=\()/i, - punctuation: /[(){};:]/ -}, Prism.languages.css.atrule.inside.rest = Prism.languages.css, Prism.languages.markup && (Prism.languages.insertBefore("markup", "tag", { - style: { - pattern: /()[\s\S]*?(?=<\/style>)/i, - lookbehind: !0, - inside: Prism.languages.css, - alias: "language-css", - greedy: !0 - } -}), Prism.languages.insertBefore("inside", "attr-value", { - "style-attr": { - pattern: /\s*style=("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/i, - inside: { - "attr-name": { - pattern: /^\s*style/i, - inside: Prism.languages.markup.tag.inside - }, - punctuation: /^\s*=\s*['"]|['"]\s*$/, - "attr-value": { - pattern: /.+/i, - inside: Prism.languages.css - } - }, - alias: "language-css" - } -}, Prism.languages.markup.tag)); -Prism.languages.clike = { - comment: [{ - pattern: /(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/, - lookbehind: !0 - }, { - pattern: /(^|[^\\:])\/\/.*/, - lookbehind: !0, - greedy: !0 - }], - string: { - pattern: /(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/, - greedy: !0 - }, - "class-name": { - pattern: /((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[\w.\\]+/i, - lookbehind: !0, - inside: { - punctuation: /[.\\]/ - } - }, - keyword: /\b(?:if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/, - "boolean": /\b(?:true|false)\b/, - "function": /\w+(?=\()/, - number: /\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?/i, - operator: /--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/, - punctuation: /[{}[\];(),.:]/ -}; -Prism.languages.javascript = Prism.languages.extend("clike", { - "class-name": [Prism.languages.clike["class-name"], { - pattern: /(^|[^$\w\xA0-\uFFFF])[_$A-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\.(?:prototype|constructor))/, - lookbehind: !0 - }], - keyword: [{ - pattern: /((?:^|})\s*)(?:catch|finally)\b/, - lookbehind: !0 - }, /\b(?:as|async|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/], - number: /\b(?:(?:0[xX][\dA-Fa-f]+|0[bB][01]+|0[oO][0-7]+)n?|\d+n|NaN|Infinity)\b|(?:\b\d+\.?\d*|\B\.\d+)(?:[Ee][+-]?\d+)?/, - "function": /[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*\(|\.(?:apply|bind|call)\()/, - operator: /-[-=]?|\+[+=]?|!=?=?|<>?>?=?|=(?:==?|>)?|&[&=]?|\|[|=]?|\*\*?=?|\/=?|~|\^=?|%=?|\?|\.{3}/ -}), Prism.languages.javascript["class-name"][0].pattern = /(\b(?:class|interface|extends|implements|instanceof|new)\s+)[\w.\\]+/, Prism.languages.insertBefore("javascript", "keyword", { - regex: { - pattern: /((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(\[[^\]\r\n]+]|\\.|[^\/\\\[\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})\]]))/, - lookbehind: !0, - greedy: !0 - }, - "function-variable": { - pattern: /[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*[=:]\s*(?:function\b|(?:\([^()]*\)|[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)\s*=>))/i, - alias: "function" - }, - constant: /\b[A-Z][A-Z\d_]*\b/ -}), Prism.languages.insertBefore("javascript", "string", { - "template-string": { - pattern: /`(?:\\[\s\S]|\${[^}]+}|[^\\`])*`/, - greedy: !0, - inside: { - interpolation: { - pattern: /\${[^}]+}/, - inside: { - "interpolation-punctuation": { - pattern: /^\${|}$/, - alias: "punctuation" - }, - rest: Prism.languages.javascript - } - }, - string: /[\s\S]+/ - } - } -}), Prism.languages.markup && Prism.languages.insertBefore("markup", "tag", { - script: { - pattern: /()[\s\S]*?(?=<\/script>)/i, - lookbehind: !0, - inside: Prism.languages.javascript, - alias: "language-javascript", - greedy: !0 - } -}), Prism.languages.js = Prism.languages.javascript; -! function () { - if ("undefined" != typeof self && self.Prism && self.document) { - var e = "line-numbers", - t = /\n(?!$)/g, - n = function (e) { - var n = r(e), - s = n["white-space"]; - if ("pre-wrap" === s || "pre-line" === s) { - var l = e.querySelector("code"), - i = e.querySelector(".line-numbers-rows"), - a = e.querySelector(".line-numbers-sizer"), - o = l.textContent.split(t); - a || (a = document.createElement("span"), a.className = "line-numbers-sizer", l.appendChild(a)), a.style.display = "block", o.forEach(function (e, t) { - a.textContent = e || "\n"; - var n = a.getBoundingClientRect().height; - i.children[t].style.height = n + "px" - }), a.textContent = "", a.style.display = "none" - } - }, - r = function (e) { - return e ? window.getComputedStyle ? getComputedStyle(e) : e.currentStyle || null : null - }; - window.addEventListener("resize", function () { - Array.prototype.forEach.call(document.querySelectorAll("pre." + e), n) - }), Prism.hooks.add("complete", function (e) { - if (e.code) { - var r = e.element.parentNode, - s = /\s*\bline-numbers\b\s*/; - if (r && /pre/i.test(r.nodeName) && (s.test(r.className) || s.test(e.element.className)) && !e.element.querySelector(".line-numbers-rows")) { - s.test(e.element.className) && (e.element.className = e.element.className.replace(s, " ")), s.test(r.className) || (r.className += " line-numbers"); - var l, i = e.code.match(t), - a = i ? i.length + 1 : 1, - o = new Array(a + 1); - o = o.join(""), l = document.createElement("span"), l.setAttribute("aria-hidden", "true"), l.className = "line-numbers-rows", l.innerHTML = o, r.hasAttribute("data-start") && (r.style.counterReset = "linenumber " + (parseInt(r.getAttribute("data-start"), 10) - 1)), e.element.appendChild(l), n(r), Prism.hooks.run("line-numbers", e) - } - } - }), Prism.hooks.add("line-numbers", function (e) { - e.plugins = e.plugins || {}, e.plugins.lineNumbers = !0 - }), Prism.plugins.lineNumbers = { - getLine: function (t, n) { - if ("PRE" === t.tagName && t.classList.contains(e)) { - var r = t.querySelector(".line-numbers-rows"), - s = parseInt(t.getAttribute("data-start"), 10) || 1, - l = s + (r.children.length - 1); - s > n && (n = s), n > l && (n = l); - var i = n - s; - return r.children[i] - } - } - } - } -}(); - - - -/*! - * clipboard.js v2.0.4 - * https://zenorocha.github.io/clipboard.js - * - * Licensed MIT © Zeno Rocha - */ -! function (t, e) { - "object" == typeof exports && "object" == typeof module ? module.exports = e() : "function" == typeof define && define.amd ? define([], e) : "object" == typeof exports ? exports.ClipboardJS = e() : t.ClipboardJS = e() -}(this, function () { - return function (n) { - var o = {}; - - function r(t) { - if (o[t]) return o[t].exports; - var e = o[t] = { - i: t, - l: !1, - exports: {} - }; - return n[t].call(e.exports, e, e.exports, r), e.l = !0, e.exports - } - return r.m = n, r.c = o, r.d = function (t, e, n) { - r.o(t, e) || Object.defineProperty(t, e, { - enumerable: !0, - get: n - }) - }, r.r = function (t) { - "undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(t, Symbol.toStringTag, { - value: "Module" - }), Object.defineProperty(t, "__esModule", { - value: !0 - }) - }, r.t = function (e, t) { - if (1 & t && (e = r(e)), 8 & t) return e; - if (4 & t && "object" == typeof e && e && e.__esModule) return e; - var n = Object.create(null); - if (r.r(n), Object.defineProperty(n, "default", { - enumerable: !0, - value: e - }), 2 & t && "string" != typeof e) - for (var o in e) r.d(n, o, function (t) { - return e[t] - }.bind(null, o)); - return n - }, r.n = function (t) { - var e = t && t.__esModule ? function () { - return t.default - } : function () { - return t - }; - return r.d(e, "a", e), e - }, r.o = function (t, e) { - return Object.prototype.hasOwnProperty.call(t, e) - }, r.p = "", r(r.s = 0) - }([function (t, e, n) { - "use strict"; - var r = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (t) { - return typeof t - } : function (t) { - return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t - }, - i = function () { - function o(t, e) { - for (var n = 0; n < e.length; n++) { - var o = e[n]; - o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(t, o.key, o) - } - } - return function (t, e, n) { - return e && o(t.prototype, e), n && o(t, n), t - } - }(), - a = o(n(1)), - c = o(n(3)), - u = o(n(4)); - - function o(t) { - return t && t.__esModule ? t : { - default: t - } - } - var l = function (t) { - function o(t, e) { - ! function (t, e) { - if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") - }(this, o); - var n = function (t, e) { - if (!t) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); - return !e || "object" != typeof e && "function" != typeof e ? t : e - }(this, (o.__proto__ || Object.getPrototypeOf(o)).call(this)); - return n.resolveOptions(e), n.listenClick(t), n - } - return function (t, e) { - if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function, not " + typeof e); - t.prototype = Object.create(e && e.prototype, { - constructor: { - value: t, - enumerable: !1, - writable: !0, - configurable: !0 - } - }), e && (Object.setPrototypeOf ? Object.setPrototypeOf(t, e) : t.__proto__ = e) - }(o, c.default), i(o, [{ - key: "resolveOptions", - value: function () { - var t = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}; - this.action = "function" == typeof t.action ? t.action : this.defaultAction, this.target = "function" == typeof t.target ? t.target : this.defaultTarget, this.text = "function" == typeof t.text ? t.text : this.defaultText, this.container = "object" === r(t.container) ? t.container : document.body - } - }, { - key: "listenClick", - value: function (t) { - var e = this; - this.listener = (0, u.default)(t, "click", function (t) { - return e.onClick(t) - }) - } - }, { - key: "onClick", - value: function (t) { - var e = t.delegateTarget || t.currentTarget; - this.clipboardAction && (this.clipboardAction = null), this.clipboardAction = new a.default({ - action: this.action(e), - target: this.target(e), - text: this.text(e), - container: this.container, - trigger: e, - emitter: this - }) - } - }, { - key: "defaultAction", - value: function (t) { - return s("action", t) - } - }, { - key: "defaultTarget", - value: function (t) { - var e = s("target", t); - if (e) return document.querySelector(e) - } - }, { - key: "defaultText", - value: function (t) { - return s("text", t) - } - }, { - key: "destroy", - value: function () { - this.listener.destroy(), this.clipboardAction && (this.clipboardAction.destroy(), this.clipboardAction = null) - } - }], [{ - key: "isSupported", - value: function () { - var t = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : ["copy", "cut"], - e = "string" == typeof t ? [t] : t, - n = !!document.queryCommandSupported; - return e.forEach(function (t) { - n = n && !!document.queryCommandSupported(t) - }), n - } - }]), o - }(); - - function s(t, e) { - var n = "data-clipboard-" + t; - if (e.hasAttribute(n)) return e.getAttribute(n) - } - t.exports = l - }, function (t, e, n) { - "use strict"; - var o, r = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (t) { - return typeof t - } : function (t) { - return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t - }, - i = function () { - function o(t, e) { - for (var n = 0; n < e.length; n++) { - var o = e[n]; - o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(t, o.key, o) - } - } - return function (t, e, n) { - return e && o(t.prototype, e), n && o(t, n), t - } - }(), - a = n(2), - c = (o = a) && o.__esModule ? o : { - default: o - }; - var u = function () { - function e(t) { - ! function (t, e) { - if (!(t instanceof e)) throw new TypeError("Cannot call a class as a function") - }(this, e), this.resolveOptions(t), this.initSelection() - } - return i(e, [{ - key: "resolveOptions", - value: function () { - var t = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : {}; - this.action = t.action, this.container = t.container, this.emitter = t.emitter, this.target = t.target, this.text = t.text, this.trigger = t.trigger, this.selectedText = "" - } - }, { - key: "initSelection", - value: function () { - this.text ? this.selectFake() : this.target && this.selectTarget() - } - }, { - key: "selectFake", - value: function () { - var t = this, - e = "rtl" == document.documentElement.getAttribute("dir"); - this.removeFake(), this.fakeHandlerCallback = function () { - return t.removeFake() - }, this.fakeHandler = this.container.addEventListener("click", this.fakeHandlerCallback) || !0, this.fakeElem = document.createElement("textarea"), this.fakeElem.style.fontSize = "12pt", this.fakeElem.style.border = "0", this.fakeElem.style.padding = "0", this.fakeElem.style.margin = "0", this.fakeElem.style.position = "absolute", this.fakeElem.style[e ? "right" : "left"] = "-9999px"; - var n = window.pageYOffset || document.documentElement.scrollTop; - this.fakeElem.style.top = n + "px", this.fakeElem.setAttribute("readonly", ""), this.fakeElem.value = this.text, this.container.appendChild(this.fakeElem), this.selectedText = (0, c.default)(this.fakeElem), this.copyText() - } - }, { - key: "removeFake", - value: function () { - this.fakeHandler && (this.container.removeEventListener("click", this.fakeHandlerCallback), this.fakeHandler = null, this.fakeHandlerCallback = null), this.fakeElem && (this.container.removeChild(this.fakeElem), this.fakeElem = null) - } - }, { - key: "selectTarget", - value: function () { - this.selectedText = (0, c.default)(this.target), this.copyText() - } - }, { - key: "copyText", - value: function () { - var e = void 0; - try { - e = document.execCommand(this.action) - } catch (t) { - e = !1 - } - this.handleResult(e) - } - }, { - key: "handleResult", - value: function (t) { - this.emitter.emit(t ? "success" : "error", { - action: this.action, - text: this.selectedText, - trigger: this.trigger, - clearSelection: this.clearSelection.bind(this) - }) - } - }, { - key: "clearSelection", - value: function () { - this.trigger && this.trigger.focus(), window.getSelection().removeAllRanges() - } - }, { - key: "destroy", - value: function () { - this.removeFake() - } - }, { - key: "action", - set: function () { - var t = 0 < arguments.length && void 0 !== arguments[0] ? arguments[0] : "copy"; - if (this._action = t, "copy" !== this._action && "cut" !== this._action) throw new Error('Invalid "action" value, use either "copy" or "cut"') - }, - get: function () { - return this._action - } - }, { - key: "target", - set: function (t) { - if (void 0 !== t) { - if (!t || "object" !== (void 0 === t ? "undefined" : r(t)) || 1 !== t.nodeType) throw new Error('Invalid "target" value, use a valid Element'); - if ("copy" === this.action && t.hasAttribute("disabled")) throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute'); - if ("cut" === this.action && (t.hasAttribute("readonly") || t.hasAttribute("disabled"))) throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes'); - this._target = t - } - }, - get: function () { - return this._target - } - }]), e - }(); - t.exports = u - }, function (t, e) { - t.exports = function (t) { - var e; - if ("SELECT" === t.nodeName) t.focus(), e = t.value; - else if ("INPUT" === t.nodeName || "TEXTAREA" === t.nodeName) { - var n = t.hasAttribute("readonly"); - n || t.setAttribute("readonly", ""), t.select(), t.setSelectionRange(0, t.value.length), n || t.removeAttribute("readonly"), e = t.value - } else { - t.hasAttribute("contenteditable") && t.focus(); - var o = window.getSelection(), - r = document.createRange(); - r.selectNodeContents(t), o.removeAllRanges(), o.addRange(r), e = o.toString() - } - return e - } - }, function (t, e) { - function n() {} - n.prototype = { - on: function (t, e, n) { - var o = this.e || (this.e = {}); - return (o[t] || (o[t] = [])).push({ - fn: e, - ctx: n - }), this - }, - once: function (t, e, n) { - var o = this; - - function r() { - o.off(t, r), e.apply(n, arguments) - } - return r._ = e, this.on(t, r, n) - }, - emit: function (t) { - for (var e = [].slice.call(arguments, 1), n = ((this.e || (this.e = {}))[t] || []).slice(), o = 0, r = n.length; o < r; o++) n[o].fn.apply(n[o].ctx, e); - return this - }, - off: function (t, e) { - var n = this.e || (this.e = {}), - o = n[t], - r = []; - if (o && e) - for (var i = 0, a = o.length; i < a; i++) o[i].fn !== e && o[i].fn._ !== e && r.push(o[i]); - return r.length ? n[t] = r : delete n[t], this - } - }, t.exports = n - }, function (t, e, n) { - var d = n(5), - h = n(6); - t.exports = function (t, e, n) { - if (!t && !e && !n) throw new Error("Missing required arguments"); - if (!d.string(e)) throw new TypeError("Second argument must be a String"); - if (!d.fn(n)) throw new TypeError("Third argument must be a Function"); - if (d.node(t)) return s = e, f = n, (l = t).addEventListener(s, f), { - destroy: function () { - l.removeEventListener(s, f) - } - }; - if (d.nodeList(t)) return a = t, c = e, u = n, Array.prototype.forEach.call(a, function (t) { - t.addEventListener(c, u) - }), { - destroy: function () { - Array.prototype.forEach.call(a, function (t) { - t.removeEventListener(c, u) - }) - } - }; - if (d.string(t)) return o = t, r = e, i = n, h(document.body, o, r, i); - throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList"); - var o, r, i, a, c, u, l, s, f - } - }, function (t, n) { - n.node = function (t) { - return void 0 !== t && t instanceof HTMLElement && 1 === t.nodeType - }, n.nodeList = function (t) { - var e = Object.prototype.toString.call(t); - return void 0 !== t && ("[object NodeList]" === e || "[object HTMLCollection]" === e) && "length" in t && (0 === t.length || n.node(t[0])) - }, n.string = function (t) { - return "string" == typeof t || t instanceof String - }, n.fn = function (t) { - return "[object Function]" === Object.prototype.toString.call(t) - } - }, function (t, e, n) { - var a = n(7); - - function i(t, e, n, o, r) { - var i = function (e, n, t, o) { - return function (t) { - t.delegateTarget = a(t.target, n), t.delegateTarget && o.call(e, t) - } - }.apply(this, arguments); - return t.addEventListener(n, i, r), { - destroy: function () { - t.removeEventListener(n, i, r) - } - } - } - t.exports = function (t, e, n, o, r) { - return "function" == typeof t.addEventListener ? i.apply(null, arguments) : "function" == typeof n ? i.bind(null, document).apply(null, arguments) : ("string" == typeof t && (t = document.querySelectorAll(t)), Array.prototype.map.call(t, function (t) { - return i(t, e, n, o, r) - })) - } - }, function (t, e) { - if ("undefined" != typeof Element && !Element.prototype.matches) { - var n = Element.prototype; - n.matches = n.matchesSelector || n.mozMatchesSelector || n.msMatchesSelector || n.oMatchesSelector || n.webkitMatchesSelector - } - t.exports = function (t, e) { - for (; t && 9 !== t.nodeType;) { - if ("function" == typeof t.matches && t.matches(e)) return t; - t = t.parentNode - } - } - }]) -}); - -// -// -// -// -// -// Smoth scroll -// -// -// -// -// -/* == jquery mousewheel plugin == Version: 3.1.13, License: MIT License (MIT) */ -! function (a) { - "function" == typeof define && define.amd ? define(["jquery"], a) : "object" == typeof exports ? module.exports = a : a(jQuery) -}(function (a) { - function b(b) { - var g = b || window.event, - h = i.call(arguments, 1), - j = 0, - l = 0, - m = 0, - n = 0, - o = 0, - p = 0; - if (b = a.event.fix(g), b.type = "mousewheel", "detail" in g && (m = -1 * g.detail), "wheelDelta" in g && (m = g.wheelDelta), "wheelDeltaY" in g && (m = g.wheelDeltaY), "wheelDeltaX" in g && (l = -1 * g.wheelDeltaX), "axis" in g && g.axis === g.HORIZONTAL_AXIS && (l = -1 * m, m = 0), j = 0 === m ? l : m, "deltaY" in g && (m = -1 * g.deltaY, j = m), "deltaX" in g && (l = g.deltaX, 0 === m && (j = -1 * l)), 0 !== m || 0 !== l) { - if (1 === g.deltaMode) { - var q = a.data(this, "mousewheel-line-height"); - j *= q, m *= q, l *= q - } else if (2 === g.deltaMode) { - var r = a.data(this, "mousewheel-page-height"); - j *= r, m *= r, l *= r - } - if (n = Math.max(Math.abs(m), Math.abs(l)), (!f || f > n) && (f = n, d(g, n) && (f /= 40)), d(g, n) && (j /= 40, l /= 40, m /= 40), j = Math[j >= 1 ? "floor" : "ceil"](j / f), l = Math[l >= 1 ? "floor" : "ceil"](l / f), m = Math[m >= 1 ? "floor" : "ceil"](m / f), k.settings.normalizeOffset && this.getBoundingClientRect) { - var s = this.getBoundingClientRect(); - o = b.clientX - s.left, p = b.clientY - s.top - } - return b.deltaX = l, b.deltaY = m, b.deltaFactor = f, b.offsetX = o, b.offsetY = p, b.deltaMode = 0, h.unshift(b, j, l, m), e && clearTimeout(e), e = setTimeout(c, 200), (a.event.dispatch || a.event.handle).apply(this, h) - } - } - - function c() { - f = null - } - - function d(a, b) { - return k.settings.adjustOldDeltas && "mousewheel" === a.type && b % 120 === 0 - } - var e, f, g = ["wheel", "mousewheel", "DOMMouseScroll", "MozMousePixelScroll"], - h = "onwheel" in document || document.documentMode >= 9 ? ["wheel"] : ["mousewheel", "DomMouseScroll", "MozMousePixelScroll"], - i = Array.prototype.slice; - if (a.event.fixHooks) - for (var j = g.length; j;) a.event.fixHooks[g[--j]] = a.event.mouseHooks; - var k = a.event.special.mousewheel = { - version: "3.1.12", - setup: function () { - if (this.addEventListener) - for (var c = h.length; c;) this.addEventListener(h[--c], b, !1); - else this.onmousewheel = b; - a.data(this, "mousewheel-line-height", k.getLineHeight(this)), a.data(this, "mousewheel-page-height", k.getPageHeight(this)) - }, - teardown: function () { - if (this.removeEventListener) - for (var c = h.length; c;) this.removeEventListener(h[--c], b, !1); - else this.onmousewheel = null; - a.removeData(this, "mousewheel-line-height"), a.removeData(this, "mousewheel-page-height") - }, - getLineHeight: function (b) { - var c = a(b), - d = c["offsetParent" in a.fn ? "offsetParent" : "parent"](); - return d.length || (d = a("body")), parseInt(d.css("fontSize"), 10) || parseInt(c.css("fontSize"), 10) || 16 - }, - getPageHeight: function (b) { - return a(b).height() - }, - settings: { - adjustOldDeltas: !0, - normalizeOffset: !0 - } - }; - a.fn.extend({ - mousewheel: function (a) { - return a ? this.bind("mousewheel", a) : this.trigger("mousewheel") - }, - unmousewheel: function (a) { - return this.unbind("mousewheel", a) - } - }) -}); -! function (a) { - "function" == typeof define && define.amd ? define(["jquery"], a) : "object" == typeof exports ? module.exports = a : a(jQuery) -}(function (a) { - function b(b) { - var g = b || window.event, - h = i.call(arguments, 1), - j = 0, - l = 0, - m = 0, - n = 0, - o = 0, - p = 0; - if (b = a.event.fix(g), b.type = "mousewheel", "detail" in g && (m = -1 * g.detail), "wheelDelta" in g && (m = g.wheelDelta), "wheelDeltaY" in g && (m = g.wheelDeltaY), "wheelDeltaX" in g && (l = -1 * g.wheelDeltaX), "axis" in g && g.axis === g.HORIZONTAL_AXIS && (l = -1 * m, m = 0), j = 0 === m ? l : m, "deltaY" in g && (m = -1 * g.deltaY, j = m), "deltaX" in g && (l = g.deltaX, 0 === m && (j = -1 * l)), 0 !== m || 0 !== l) { - if (1 === g.deltaMode) { - var q = a.data(this, "mousewheel-line-height"); - j *= q, m *= q, l *= q - } else if (2 === g.deltaMode) { - var r = a.data(this, "mousewheel-page-height"); - j *= r, m *= r, l *= r - } - if (n = Math.max(Math.abs(m), Math.abs(l)), (!f || f > n) && (f = n, d(g, n) && (f /= 40)), d(g, n) && (j /= 40, l /= 40, m /= 40), j = Math[j >= 1 ? "floor" : "ceil"](j / f), l = Math[l >= 1 ? "floor" : "ceil"](l / f), m = Math[m >= 1 ? "floor" : "ceil"](m / f), k.settings.normalizeOffset && this.getBoundingClientRect) { - var s = this.getBoundingClientRect(); - o = b.clientX - s.left, p = b.clientY - s.top - } - return b.deltaX = l, b.deltaY = m, b.deltaFactor = f, b.offsetX = o, b.offsetY = p, b.deltaMode = 0, h.unshift(b, j, l, m), e && clearTimeout(e), e = setTimeout(c, 200), (a.event.dispatch || a.event.handle).apply(this, h) - } - } - - function c() { - f = null - } - - function d(a, b) { - return k.settings.adjustOldDeltas && "mousewheel" === a.type && b % 120 === 0 - } - var e, f, g = ["wheel", "mousewheel", "DOMMouseScroll", "MozMousePixelScroll"], - h = "onwheel" in document || document.documentMode >= 9 ? ["wheel"] : ["mousewheel", "DomMouseScroll", "MozMousePixelScroll"], - i = Array.prototype.slice; - if (a.event.fixHooks) - for (var j = g.length; j;) a.event.fixHooks[g[--j]] = a.event.mouseHooks; - var k = a.event.special.mousewheel = { - version: "3.1.12", - setup: function () { - if (this.addEventListener) - for (var c = h.length; c;) this.addEventListener(h[--c], b, !1); - else this.onmousewheel = b; - a.data(this, "mousewheel-line-height", k.getLineHeight(this)), a.data(this, "mousewheel-page-height", k.getPageHeight(this)) - }, - teardown: function () { - if (this.removeEventListener) - for (var c = h.length; c;) this.removeEventListener(h[--c], b, !1); - else this.onmousewheel = null; - a.removeData(this, "mousewheel-line-height"), a.removeData(this, "mousewheel-page-height") - }, - getLineHeight: function (b) { - var c = a(b), - d = c["offsetParent" in a.fn ? "offsetParent" : "parent"](); - return d.length || (d = a("body")), parseInt(d.css("fontSize"), 10) || parseInt(c.css("fontSize"), 10) || 16 - }, - getPageHeight: function (b) { - return a(b).height() - }, - settings: { - adjustOldDeltas: !0, - normalizeOffset: !0 - } - }; - a.fn.extend({ - mousewheel: function (a) { - return a ? this.bind("mousewheel", a) : this.trigger("mousewheel") - }, - unmousewheel: function (a) { - return this.unbind("mousewheel", a) - } - }) -}); -/* == malihu jquery custom scrollbar plugin == Version: 3.1.5, License: MIT License (MIT) */ -! function (e) { - "function" == typeof define && define.amd ? define(["jquery"], e) : "undefined" != typeof module && module.exports ? module.exports = e : e(jQuery, window, document) -}(function (e) { - ! function (t) { - var o = "function" == typeof define && define.amd, - a = "undefined" != typeof module && module.exports, - n = "https:" == document.location.protocol ? "https:" : "http:", - i = "cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.1.13/jquery.mousewheel.min.js"; - o || (a ? require("jquery-mousewheel")(e) : e.event.special.mousewheel || e("head").append(decodeURI("%3Cscript src=" + n + "//" + i + "%3E%3C/script%3E"))), t() - }(function () { - var t, o = "mCustomScrollbar", - a = "mCS", - n = ".mCustomScrollbar", - i = { - setTop: 0, - setLeft: 0, - axis: "y", - scrollbarPosition: "inside", - scrollInertia: 950, - autoDraggerLength: !0, - alwaysShowScrollbar: 0, - snapOffset: 0, - mouseWheel: { - enable: !0, - scrollAmount: "auto", - axis: "y", - deltaFactor: "auto", - disableOver: ["select", "option", "keygen", "datalist", "textarea"] - }, - scrollButtons: { - scrollType: "stepless", - scrollAmount: "auto" - }, - keyboard: { - enable: !0, - scrollType: "stepless", - scrollAmount: "auto" - }, - contentTouchScroll: 25, - documentTouchScroll: !0, - advanced: { - autoScrollOnFocus: "input,textarea,select,button,datalist,keygen,a[tabindex],area,object,[contenteditable='true']", - updateOnContentResize: !0, - updateOnImageLoad: "auto", - autoUpdateTimeout: 60 - }, - theme: "light", - callbacks: { - onTotalScrollOffset: 0, - onTotalScrollBackOffset: 0, - alwaysTriggerOffsets: !0 - } - }, - r = 0, - l = {}, - s = window.attachEvent && !window.addEventListener ? 1 : 0, - c = !1, - d = ["mCSB_dragger_onDrag", "mCSB_scrollTools_onDrag", "mCS_img_loaded", "mCS_disabled", "mCS_destroyed", "mCS_no_scrollbar", "mCS-autoHide", "mCS-dir-rtl", "mCS_no_scrollbar_y", "mCS_no_scrollbar_x", "mCS_y_hidden", "mCS_x_hidden", "mCSB_draggerContainer", "mCSB_buttonUp", "mCSB_buttonDown", "mCSB_buttonLeft", "mCSB_buttonRight"], - u = { - init: function (t) { - var t = e.extend(!0, {}, i, t), - o = f.call(this); - if (t.live) { - var s = t.liveSelector || this.selector || n, - c = e(s); - if ("off" === t.live) return void m(s); - l[s] = setTimeout(function () { - c.mCustomScrollbar(t), "once" === t.live && c.length && m(s) - }, 500) - } else m(s); - return t.setWidth = t.set_width ? t.set_width : t.setWidth, t.setHeight = t.set_height ? t.set_height : t.setHeight, t.axis = t.horizontalScroll ? "x" : p(t.axis), t.scrollInertia = t.scrollInertia > 0 && t.scrollInertia < 17 ? 17 : t.scrollInertia, "object" != typeof t.mouseWheel && 1 == t.mouseWheel && (t.mouseWheel = { - enable: !0, - scrollAmount: "auto", - axis: "y", - preventDefault: !1, - deltaFactor: "auto", - normalizeDelta: !1, - invert: !1 - }), t.mouseWheel.scrollAmount = t.mouseWheelPixels ? t.mouseWheelPixels : t.mouseWheel.scrollAmount, t.mouseWheel.normalizeDelta = t.advanced.normalizeMouseWheelDelta ? t.advanced.normalizeMouseWheelDelta : t.mouseWheel.normalizeDelta, t.scrollButtons.scrollType = g(t.scrollButtons.scrollType), h(t), e(o).each(function () { - var o = e(this); - if (!o.data(a)) { - o.data(a, { - idx: ++r, - opt: t, - scrollRatio: { - y: null, - x: null - }, - overflowed: null, - contentReset: { - y: null, - x: null - }, - bindEvents: !1, - tweenRunning: !1, - sequential: {}, - langDir: o.css("direction"), - cbOffsets: null, - trigger: null, - poll: { - size: { - o: 0, - n: 0 - }, - img: { - o: 0, - n: 0 - }, - change: { - o: 0, - n: 0 - } - } - }); - var n = o.data(a), - i = n.opt, - l = o.data("mcs-axis"), - s = o.data("mcs-scrollbar-position"), - c = o.data("mcs-theme"); - l && (i.axis = l), s && (i.scrollbarPosition = s), c && (i.theme = c, h(i)), v.call(this), n && i.callbacks.onCreate && "function" == typeof i.callbacks.onCreate && i.callbacks.onCreate.call(this), e("#mCSB_" + n.idx + "_container img:not(." + d[2] + ")").addClass(d[2]), u.update.call(null, o) - } - }) - }, - update: function (t, o) { - var n = t || f.call(this); - return e(n).each(function () { - var t = e(this); - if (t.data(a)) { - var n = t.data(a), - i = n.opt, - r = e("#mCSB_" + n.idx + "_container"), - l = e("#mCSB_" + n.idx), - s = [e("#mCSB_" + n.idx + "_dragger_vertical"), e("#mCSB_" + n.idx + "_dragger_horizontal")]; - if (!r.length) return; - n.tweenRunning && Q(t), o && n && i.callbacks.onBeforeUpdate && "function" == typeof i.callbacks.onBeforeUpdate && i.callbacks.onBeforeUpdate.call(this), t.hasClass(d[3]) && t.removeClass(d[3]), t.hasClass(d[4]) && t.removeClass(d[4]), l.css("max-height", "none"), l.height() !== t.height() && l.css("max-height", t.height()), _.call(this), "y" === i.axis || i.advanced.autoExpandHorizontalScroll || r.css("width", x(r)), n.overflowed = y.call(this), M.call(this), i.autoDraggerLength && S.call(this), b.call(this), T.call(this); - var c = [Math.abs(r[0].offsetTop), Math.abs(r[0].offsetLeft)]; - "x" !== i.axis && (n.overflowed[0] ? s[0].height() > s[0].parent().height() ? B.call(this) : (G(t, c[0].toString(), { - dir: "y", - dur: 0, - overwrite: "none" - }), n.contentReset.y = null) : (B.call(this), "y" === i.axis ? k.call(this) : "yx" === i.axis && n.overflowed[1] && G(t, c[1].toString(), { - dir: "x", - dur: 0, - overwrite: "none" - }))), "y" !== i.axis && (n.overflowed[1] ? s[1].width() > s[1].parent().width() ? B.call(this) : (G(t, c[1].toString(), { - dir: "x", - dur: 0, - overwrite: "none" - }), n.contentReset.x = null) : (B.call(this), "x" === i.axis ? k.call(this) : "yx" === i.axis && n.overflowed[0] && G(t, c[0].toString(), { - dir: "y", - dur: 0, - overwrite: "none" - }))), o && n && (2 === o && i.callbacks.onImageLoad && "function" == typeof i.callbacks.onImageLoad ? i.callbacks.onImageLoad.call(this) : 3 === o && i.callbacks.onSelectorChange && "function" == typeof i.callbacks.onSelectorChange ? i.callbacks.onSelectorChange.call(this) : i.callbacks.onUpdate && "function" == typeof i.callbacks.onUpdate && i.callbacks.onUpdate.call(this)), N.call(this) - } - }) - }, - scrollTo: function (t, o) { - if ("undefined" != typeof t && null != t) { - var n = f.call(this); - return e(n).each(function () { - var n = e(this); - if (n.data(a)) { - var i = n.data(a), - r = i.opt, - l = { - trigger: "external", - scrollInertia: r.scrollInertia, - scrollEasing: "mcsEaseInOut", - moveDragger: !1, - timeout: 60, - callbacks: !0, - onStart: !0, - onUpdate: !0, - onComplete: !0 - }, - s = e.extend(!0, {}, l, o), - c = Y.call(this, t), - d = s.scrollInertia > 0 && s.scrollInertia < 17 ? 17 : s.scrollInertia; - c[0] = X.call(this, c[0], "y"), c[1] = X.call(this, c[1], "x"), s.moveDragger && (c[0] *= i.scrollRatio.y, c[1] *= i.scrollRatio.x), s.dur = ne() ? 0 : d, setTimeout(function () { - null !== c[0] && "undefined" != typeof c[0] && "x" !== r.axis && i.overflowed[0] && (s.dir = "y", s.overwrite = "all", G(n, c[0].toString(), s)), null !== c[1] && "undefined" != typeof c[1] && "y" !== r.axis && i.overflowed[1] && (s.dir = "x", s.overwrite = "none", G(n, c[1].toString(), s)) - }, s.timeout) - } - }) - } - }, - stop: function () { - var t = f.call(this); - return e(t).each(function () { - var t = e(this); - t.data(a) && Q(t) - }) - }, - disable: function (t) { - var o = f.call(this); - return e(o).each(function () { - var o = e(this); - if (o.data(a)) { - o.data(a); - N.call(this, "remove"), k.call(this), t && B.call(this), M.call(this, !0), o.addClass(d[3]) - } - }) - }, - destroy: function () { - var t = f.call(this); - return e(t).each(function () { - var n = e(this); - if (n.data(a)) { - var i = n.data(a), - r = i.opt, - l = e("#mCSB_" + i.idx), - s = e("#mCSB_" + i.idx + "_container"), - c = e(".mCSB_" + i.idx + "_scrollbar"); - r.live && m(r.liveSelector || e(t).selector), N.call(this, "remove"), k.call(this), B.call(this), n.removeData(a), $(this, "mcs"), c.remove(), s.find("img." + d[2]).removeClass(d[2]), l.replaceWith(s.contents()), n.removeClass(o + " _" + a + "_" + i.idx + " " + d[6] + " " + d[7] + " " + d[5] + " " + d[3]).addClass(d[4]) - } - }) - } - }, - f = function () { - return "object" != typeof e(this) || e(this).length < 1 ? n : this - }, - h = function (t) { - var o = ["rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark"], - a = ["rounded-dots", "rounded-dots-dark", "3d", "3d-dark", "3d-thick", "3d-thick-dark", "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark"], - n = ["minimal", "minimal-dark"], - i = ["minimal", "minimal-dark"], - r = ["minimal", "minimal-dark"]; - t.autoDraggerLength = e.inArray(t.theme, o) > -1 ? !1 : t.autoDraggerLength, t.autoExpandScrollbar = e.inArray(t.theme, a) > -1 ? !1 : t.autoExpandScrollbar, t.scrollButtons.enable = e.inArray(t.theme, n) > -1 ? !1 : t.scrollButtons.enable, t.autoHideScrollbar = e.inArray(t.theme, i) > -1 ? !0 : t.autoHideScrollbar, t.scrollbarPosition = e.inArray(t.theme, r) > -1 ? "outside" : t.scrollbarPosition - }, - m = function (e) { - l[e] && (clearTimeout(l[e]), $(l, e)) - }, - p = function (e) { - return "yx" === e || "xy" === e || "auto" === e ? "yx" : "x" === e || "horizontal" === e ? "x" : "y" - }, - g = function (e) { - return "stepped" === e || "pixels" === e || "step" === e || "click" === e ? "stepped" : "stepless" - }, - v = function () { - var t = e(this), - n = t.data(a), - i = n.opt, - r = i.autoExpandScrollbar ? " " + d[1] + "_expand" : "", - l = ["
", "
"], - s = "yx" === i.axis ? "mCSB_vertical_horizontal" : "x" === i.axis ? "mCSB_horizontal" : "mCSB_vertical", - c = "yx" === i.axis ? l[0] + l[1] : "x" === i.axis ? l[1] : l[0], - u = "yx" === i.axis ? "
" : "", - f = i.autoHideScrollbar ? " " + d[6] : "", - h = "x" !== i.axis && "rtl" === n.langDir ? " " + d[7] : ""; - i.setWidth && t.css("width", i.setWidth), i.setHeight && t.css("height", i.setHeight), i.setLeft = "y" !== i.axis && "rtl" === n.langDir ? "989999px" : i.setLeft, t.addClass(o + " _" + a + "_" + n.idx + f + h).wrapInner("
"); - var m = e("#mCSB_" + n.idx), - p = e("#mCSB_" + n.idx + "_container"); - "y" === i.axis || i.advanced.autoExpandHorizontalScroll || p.css("width", x(p)), "outside" === i.scrollbarPosition ? ("static" === t.css("position") && t.css("position", "relative"), t.css("overflow", "visible"), m.addClass("mCSB_outside").after(c)) : (m.addClass("mCSB_inside").append(c), p.wrap(u)), w.call(this); - var g = [e("#mCSB_" + n.idx + "_dragger_vertical"), e("#mCSB_" + n.idx + "_dragger_horizontal")]; - g[0].css("min-height", g[0].height()), g[1].css("min-width", g[1].width()) - }, - x = function (t) { - var o = [t[0].scrollWidth, Math.max.apply(Math, t.children().map(function () { - return e(this).outerWidth(!0) - }).get())], - a = t.parent().width(); - return o[0] > a ? o[0] : o[1] > a ? o[1] : "100%" - }, - _ = function () { - var t = e(this), - o = t.data(a), - n = o.opt, - i = e("#mCSB_" + o.idx + "_container"); - if (n.advanced.autoExpandHorizontalScroll && "y" !== n.axis) { - i.css({ - width: "auto", - "min-width": 0, - "overflow-x": "scroll" - }); - var r = Math.ceil(i[0].scrollWidth); - 3 === n.advanced.autoExpandHorizontalScroll || 2 !== n.advanced.autoExpandHorizontalScroll && r > i.parent().width() ? i.css({ - width: r, - "min-width": "100%", - "overflow-x": "inherit" - }) : i.css({ - "overflow-x": "inherit", - position: "absolute" - }).wrap("
").css({ - width: Math.ceil(i[0].getBoundingClientRect().right + .4) - Math.floor(i[0].getBoundingClientRect().left), - "min-width": "100%", - position: "relative" - }).unwrap() - } - }, - w = function () { - var t = e(this), - o = t.data(a), - n = o.opt, - i = e(".mCSB_" + o.idx + "_scrollbar:first"), - r = oe(n.scrollButtons.tabindex) ? "tabindex='" + n.scrollButtons.tabindex + "'" : "", - l = ["", "", "", ""], - s = ["x" === n.axis ? l[2] : l[0], "x" === n.axis ? l[3] : l[1], l[2], l[3]]; - n.scrollButtons.enable && i.prepend(s[0]).append(s[1]).next(".mCSB_scrollTools").prepend(s[2]).append(s[3]) - }, - S = function () { - var t = e(this), - o = t.data(a), - n = e("#mCSB_" + o.idx), - i = e("#mCSB_" + o.idx + "_container"), - r = [e("#mCSB_" + o.idx + "_dragger_vertical"), e("#mCSB_" + o.idx + "_dragger_horizontal")], - l = [n.height() / i.outerHeight(!1), n.width() / i.outerWidth(!1)], - c = [parseInt(r[0].css("min-height")), Math.round(l[0] * r[0].parent().height()), parseInt(r[1].css("min-width")), Math.round(l[1] * r[1].parent().width())], - d = s && c[1] < c[0] ? c[0] : c[1], - u = s && c[3] < c[2] ? c[2] : c[3]; - r[0].css({ - height: d, - "max-height": r[0].parent().height() - 10 - }).find(".mCSB_dragger_bar").css({ - "line-height": c[0] + "px" - }), r[1].css({ - width: u, - "max-width": r[1].parent().width() - 10 - }) - }, - b = function () { - var t = e(this), - o = t.data(a), - n = e("#mCSB_" + o.idx), - i = e("#mCSB_" + o.idx + "_container"), - r = [e("#mCSB_" + o.idx + "_dragger_vertical"), e("#mCSB_" + o.idx + "_dragger_horizontal")], - l = [i.outerHeight(!1) - n.height(), i.outerWidth(!1) - n.width()], - s = [l[0] / (r[0].parent().height() - r[0].height()), l[1] / (r[1].parent().width() - r[1].width())]; - o.scrollRatio = { - y: s[0], - x: s[1] - } - }, - C = function (e, t, o) { - var a = o ? d[0] + "_expanded" : "", - n = e.closest(".mCSB_scrollTools"); - "active" === t ? (e.toggleClass(d[0] + " " + a), n.toggleClass(d[1]), e[0]._draggable = e[0]._draggable ? 0 : 1) : e[0]._draggable || ("hide" === t ? (e.removeClass(d[0]), n.removeClass(d[1])) : (e.addClass(d[0]), n.addClass(d[1]))) - }, - y = function () { - var t = e(this), - o = t.data(a), - n = e("#mCSB_" + o.idx), - i = e("#mCSB_" + o.idx + "_container"), - r = null == o.overflowed ? i.height() : i.outerHeight(!1), - l = null == o.overflowed ? i.width() : i.outerWidth(!1), - s = i[0].scrollHeight, - c = i[0].scrollWidth; - return s > r && (r = s), c > l && (l = c), [r > n.height(), l > n.width()] - }, - B = function () { - var t = e(this), - o = t.data(a), - n = o.opt, - i = e("#mCSB_" + o.idx), - r = e("#mCSB_" + o.idx + "_container"), - l = [e("#mCSB_" + o.idx + "_dragger_vertical"), e("#mCSB_" + o.idx + "_dragger_horizontal")]; - if (Q(t), ("x" !== n.axis && !o.overflowed[0] || "y" === n.axis && o.overflowed[0]) && (l[0].add(r).css("top", 0), G(t, "_resetY")), "y" !== n.axis && !o.overflowed[1] || "x" === n.axis && o.overflowed[1]) { - var s = dx = 0; - "rtl" === o.langDir && (s = i.width() - r.outerWidth(!1), dx = Math.abs(s / o.scrollRatio.x)), r.css("left", s), l[1].css("left", dx), G(t, "_resetX") - } - }, - T = function () { - function t() { - r = setTimeout(function () { - e.event.special.mousewheel ? (clearTimeout(r), W.call(o[0])) : t() - }, 100) - } - var o = e(this), - n = o.data(a), - i = n.opt; - if (!n.bindEvents) { - if (I.call(this), i.contentTouchScroll && D.call(this), E.call(this), i.mouseWheel.enable) { - var r; - t() - } - P.call(this), U.call(this), i.advanced.autoScrollOnFocus && H.call(this), i.scrollButtons.enable && F.call(this), i.keyboard.enable && q.call(this), n.bindEvents = !0 - } - }, - k = function () { - var t = e(this), - o = t.data(a), - n = o.opt, - i = a + "_" + o.idx, - r = ".mCSB_" + o.idx + "_scrollbar", - l = e("#mCSB_" + o.idx + ",#mCSB_" + o.idx + "_container,#mCSB_" + o.idx + "_container_wrapper," + r + " ." + d[12] + ",#mCSB_" + o.idx + "_dragger_vertical,#mCSB_" + o.idx + "_dragger_horizontal," + r + ">a"), - s = e("#mCSB_" + o.idx + "_container"); - n.advanced.releaseDraggableSelectors && l.add(e(n.advanced.releaseDraggableSelectors)), n.advanced.extraDraggableSelectors && l.add(e(n.advanced.extraDraggableSelectors)), o.bindEvents && (e(document).add(e(!A() || top.document)).unbind("." + i), l.each(function () { - e(this).unbind("." + i) - }), clearTimeout(t[0]._focusTimeout), $(t[0], "_focusTimeout"), clearTimeout(o.sequential.step), $(o.sequential, "step"), clearTimeout(s[0].onCompleteTimeout), $(s[0], "onCompleteTimeout"), o.bindEvents = !1) - }, - M = function (t) { - var o = e(this), - n = o.data(a), - i = n.opt, - r = e("#mCSB_" + n.idx + "_container_wrapper"), - l = r.length ? r : e("#mCSB_" + n.idx + "_container"), - s = [e("#mCSB_" + n.idx + "_scrollbar_vertical"), e("#mCSB_" + n.idx + "_scrollbar_horizontal")], - c = [s[0].find(".mCSB_dragger"), s[1].find(".mCSB_dragger")]; - "x" !== i.axis && (n.overflowed[0] && !t ? (s[0].add(c[0]).add(s[0].children("a")).css("display", "block"), l.removeClass(d[8] + " " + d[10])) : (i.alwaysShowScrollbar ? (2 !== i.alwaysShowScrollbar && c[0].css("display", "none"), l.removeClass(d[10])) : (s[0].css("display", "none"), l.addClass(d[10])), l.addClass(d[8]))), "y" !== i.axis && (n.overflowed[1] && !t ? (s[1].add(c[1]).add(s[1].children("a")).css("display", "block"), l.removeClass(d[9] + " " + d[11])) : (i.alwaysShowScrollbar ? (2 !== i.alwaysShowScrollbar && c[1].css("display", "none"), l.removeClass(d[11])) : (s[1].css("display", "none"), l.addClass(d[11])), l.addClass(d[9]))), n.overflowed[0] || n.overflowed[1] ? o.removeClass(d[5]) : o.addClass(d[5]) - }, - O = function (t) { - var o = t.type, - a = t.target.ownerDocument !== document && null !== frameElement ? [e(frameElement).offset().top, e(frameElement).offset().left] : null, - n = A() && t.target.ownerDocument !== top.document && null !== frameElement ? [e(t.view.frameElement).offset().top, e(t.view.frameElement).offset().left] : [0, 0]; - switch (o) { - case "pointerdown": - case "MSPointerDown": - case "pointermove": - case "MSPointerMove": - case "pointerup": - case "MSPointerUp": - return a ? [t.originalEvent.pageY - a[0] + n[0], t.originalEvent.pageX - a[1] + n[1], !1] : [t.originalEvent.pageY, t.originalEvent.pageX, !1]; - case "touchstart": - case "touchmove": - case "touchend": - var i = t.originalEvent.touches[0] || t.originalEvent.changedTouches[0], - r = t.originalEvent.touches.length || t.originalEvent.changedTouches.length; - return t.target.ownerDocument !== document ? [i.screenY, i.screenX, r > 1] : [i.pageY, i.pageX, r > 1]; - default: - return a ? [t.pageY - a[0] + n[0], t.pageX - a[1] + n[1], !1] : [t.pageY, t.pageX, !1] - } - }, - I = function () { - function t(e, t, a, n) { - if (h[0].idleTimer = d.scrollInertia < 233 ? 250 : 0, o.attr("id") === f[1]) var i = "x", - s = (o[0].offsetLeft - t + n) * l.scrollRatio.x; - else var i = "y", - s = (o[0].offsetTop - e + a) * l.scrollRatio.y; - G(r, s.toString(), { - dir: i, - drag: !0 - }) - } - var o, n, i, r = e(this), - l = r.data(a), - d = l.opt, - u = a + "_" + l.idx, - f = ["mCSB_" + l.idx + "_dragger_vertical", "mCSB_" + l.idx + "_dragger_horizontal"], - h = e("#mCSB_" + l.idx + "_container"), - m = e("#" + f[0] + ",#" + f[1]), - p = d.advanced.releaseDraggableSelectors ? m.add(e(d.advanced.releaseDraggableSelectors)) : m, - g = d.advanced.extraDraggableSelectors ? e(!A() || top.document).add(e(d.advanced.extraDraggableSelectors)) : e(!A() || top.document); - m.bind("contextmenu." + u, function (e) { - e.preventDefault() - }).bind("mousedown." + u + " touchstart." + u + " pointerdown." + u + " MSPointerDown." + u, function (t) { - if (t.stopImmediatePropagation(), t.preventDefault(), ee(t)) { - c = !0, s && (document.onselectstart = function () { - return !1 - }), L.call(h, !1), Q(r), o = e(this); - var a = o.offset(), - l = O(t)[0] - a.top, - u = O(t)[1] - a.left, - f = o.height() + a.top, - m = o.width() + a.left; - f > l && l > 0 && m > u && u > 0 && (n = l, i = u), C(o, "active", d.autoExpandScrollbar) - } - }).bind("touchmove." + u, function (e) { - e.stopImmediatePropagation(), e.preventDefault(); - var a = o.offset(), - r = O(e)[0] - a.top, - l = O(e)[1] - a.left; - t(n, i, r, l) - }), e(document).add(g).bind("mousemove." + u + " pointermove." + u + " MSPointerMove." + u, function (e) { - if (o) { - var a = o.offset(), - r = O(e)[0] - a.top, - l = O(e)[1] - a.left; - if (n === r && i === l) return; - t(n, i, r, l) - } - }).add(p).bind("mouseup." + u + " touchend." + u + " pointerup." + u + " MSPointerUp." + u, function () { - o && (C(o, "active", d.autoExpandScrollbar), o = null), c = !1, s && (document.onselectstart = null), L.call(h, !0) - }) - }, - D = function () { - function o(e) { - if (!te(e) || c || O(e)[2]) return void(t = 0); - t = 1, b = 0, C = 0, d = 1, y.removeClass("mCS_touch_action"); - var o = I.offset(); - u = O(e)[0] - o.top, f = O(e)[1] - o.left, z = [O(e)[0], O(e)[1]] - } - - function n(e) { - if (te(e) && !c && !O(e)[2] && (T.documentTouchScroll || e.preventDefault(), e.stopImmediatePropagation(), (!C || b) && d)) { - g = K(); - var t = M.offset(), - o = O(e)[0] - t.top, - a = O(e)[1] - t.left, - n = "mcsLinearOut"; - if (E.push(o), W.push(a), z[2] = Math.abs(O(e)[0] - z[0]), z[3] = Math.abs(O(e)[1] - z[1]), B.overflowed[0]) var i = D[0].parent().height() - D[0].height(), - r = u - o > 0 && o - u > -(i * B.scrollRatio.y) && (2 * z[3] < z[2] || "yx" === T.axis); - if (B.overflowed[1]) var l = D[1].parent().width() - D[1].width(), - h = f - a > 0 && a - f > -(l * B.scrollRatio.x) && (2 * z[2] < z[3] || "yx" === T.axis); - r || h ? (U || e.preventDefault(), b = 1) : (C = 1, y.addClass("mCS_touch_action")), U && e.preventDefault(), w = "yx" === T.axis ? [u - o, f - a] : "x" === T.axis ? [null, f - a] : [u - o, null], I[0].idleTimer = 250, B.overflowed[0] && s(w[0], R, n, "y", "all", !0), B.overflowed[1] && s(w[1], R, n, "x", L, !0) - } - } - - function i(e) { - if (!te(e) || c || O(e)[2]) return void(t = 0); - t = 1, e.stopImmediatePropagation(), Q(y), p = K(); - var o = M.offset(); - h = O(e)[0] - o.top, m = O(e)[1] - o.left, E = [], W = [] - } - - function r(e) { - if (te(e) && !c && !O(e)[2]) { - d = 0, e.stopImmediatePropagation(), b = 0, C = 0, v = K(); - var t = M.offset(), - o = O(e)[0] - t.top, - a = O(e)[1] - t.left; - if (!(v - g > 30)) { - _ = 1e3 / (v - p); - var n = "mcsEaseOut", - i = 2.5 > _, - r = i ? [E[E.length - 2], W[W.length - 2]] : [0, 0]; - x = i ? [o - r[0], a - r[1]] : [o - h, a - m]; - var u = [Math.abs(x[0]), Math.abs(x[1])]; - _ = i ? [Math.abs(x[0] / 4), Math.abs(x[1] / 4)] : [_, _]; - var f = [Math.abs(I[0].offsetTop) - x[0] * l(u[0] / _[0], _[0]), Math.abs(I[0].offsetLeft) - x[1] * l(u[1] / _[1], _[1])]; - w = "yx" === T.axis ? [f[0], f[1]] : "x" === T.axis ? [null, f[1]] : [f[0], null], S = [4 * u[0] + T.scrollInertia, 4 * u[1] + T.scrollInertia]; - var y = parseInt(T.contentTouchScroll) || 0; - w[0] = u[0] > y ? w[0] : 0, w[1] = u[1] > y ? w[1] : 0, B.overflowed[0] && s(w[0], S[0], n, "y", L, !1), B.overflowed[1] && s(w[1], S[1], n, "x", L, !1) - } - } - } - - function l(e, t) { - var o = [1.5 * t, 2 * t, t / 1.5, t / 2]; - return e > 90 ? t > 4 ? o[0] : o[3] : e > 60 ? t > 3 ? o[3] : o[2] : e > 30 ? t > 8 ? o[1] : t > 6 ? o[0] : t > 4 ? t : o[2] : t > 8 ? t : o[3] - } - - function s(e, t, o, a, n, i) { - e && G(y, e.toString(), { - dur: t, - scrollEasing: o, - dir: a, - overwrite: n, - drag: i - }) - } - var d, u, f, h, m, p, g, v, x, _, w, S, b, C, y = e(this), - B = y.data(a), - T = B.opt, - k = a + "_" + B.idx, - M = e("#mCSB_" + B.idx), - I = e("#mCSB_" + B.idx + "_container"), - D = [e("#mCSB_" + B.idx + "_dragger_vertical"), e("#mCSB_" + B.idx + "_dragger_horizontal")], - E = [], - W = [], - R = 0, - L = "yx" === T.axis ? "none" : "all", - z = [], - P = I.find("iframe"), - H = ["touchstart." + k + " pointerdown." + k + " MSPointerDown." + k, "touchmove." + k + " pointermove." + k + " MSPointerMove." + k, "touchend." + k + " pointerup." + k + " MSPointerUp." + k], - U = void 0 !== document.body.style.touchAction && "" !== document.body.style.touchAction; - I.bind(H[0], function (e) { - o(e) - }).bind(H[1], function (e) { - n(e) - }), M.bind(H[0], function (e) { - i(e) - }).bind(H[2], function (e) { - r(e) - }), P.length && P.each(function () { - e(this).bind("load", function () { - A(this) && e(this.contentDocument || this.contentWindow.document).bind(H[0], function (e) { - o(e), i(e) - }).bind(H[1], function (e) { - n(e) - }).bind(H[2], function (e) { - r(e) - }) - }) - }) - }, - E = function () { - function o() { - return window.getSelection ? window.getSelection().toString() : document.selection && "Control" != document.selection.type ? document.selection.createRange().text : 0 - } - - function n(e, t, o) { - d.type = o && i ? "stepped" : "stepless", d.scrollAmount = 10, j(r, e, t, "mcsLinearOut", o ? 60 : null) - } - var i, r = e(this), - l = r.data(a), - s = l.opt, - d = l.sequential, - u = a + "_" + l.idx, - f = e("#mCSB_" + l.idx + "_container"), - h = f.parent(); - f.bind("mousedown." + u, function () { - t || i || (i = 1, c = !0) - }).add(document).bind("mousemove." + u, function (e) { - if (!t && i && o()) { - var a = f.offset(), - r = O(e)[0] - a.top + f[0].offsetTop, - c = O(e)[1] - a.left + f[0].offsetLeft; - r > 0 && r < h.height() && c > 0 && c < h.width() ? d.step && n("off", null, "stepped") : ("x" !== s.axis && l.overflowed[0] && (0 > r ? n("on", 38) : r > h.height() && n("on", 40)), "y" !== s.axis && l.overflowed[1] && (0 > c ? n("on", 37) : c > h.width() && n("on", 39))) - } - }).bind("mouseup." + u + " dragend." + u, function () { - t || (i && (i = 0, n("off", null)), c = !1) - }) - }, - W = function () { - function t(t, a) { - if (Q(o), !z(o, t.target)) { - var r = "auto" !== i.mouseWheel.deltaFactor ? parseInt(i.mouseWheel.deltaFactor) : s && t.deltaFactor < 100 ? 100 : t.deltaFactor || 100, - d = i.scrollInertia; - if ("x" === i.axis || "x" === i.mouseWheel.axis) var u = "x", - f = [Math.round(r * n.scrollRatio.x), parseInt(i.mouseWheel.scrollAmount)], - h = "auto" !== i.mouseWheel.scrollAmount ? f[1] : f[0] >= l.width() ? .9 * l.width() : f[0], - m = Math.abs(e("#mCSB_" + n.idx + "_container")[0].offsetLeft), - p = c[1][0].offsetLeft, - g = c[1].parent().width() - c[1].width(), - v = "y" === i.mouseWheel.axis ? t.deltaY || a : t.deltaX; - else var u = "y", - f = [Math.round(r * n.scrollRatio.y), parseInt(i.mouseWheel.scrollAmount)], - h = "auto" !== i.mouseWheel.scrollAmount ? f[1] : f[0] >= l.height() ? .9 * l.height() : f[0], - m = Math.abs(e("#mCSB_" + n.idx + "_container")[0].offsetTop), - p = c[0][0].offsetTop, - g = c[0].parent().height() - c[0].height(), - v = t.deltaY || a; - "y" === u && !n.overflowed[0] || "x" === u && !n.overflowed[1] || ((i.mouseWheel.invert || t.webkitDirectionInvertedFromDevice) && (v = -v), i.mouseWheel.normalizeDelta && (v = 0 > v ? -1 : 1), (v > 0 && 0 !== p || 0 > v && p !== g || i.mouseWheel.preventDefault) && (t.stopImmediatePropagation(), t.preventDefault()), t.deltaFactor < 5 && !i.mouseWheel.normalizeDelta && (h = t.deltaFactor, d = 17), G(o, (m - v * h).toString(), { - dir: u, - dur: d - })) - } - } - if (e(this).data(a)) { - var o = e(this), - n = o.data(a), - i = n.opt, - r = a + "_" + n.idx, - l = e("#mCSB_" + n.idx), - c = [e("#mCSB_" + n.idx + "_dragger_vertical"), e("#mCSB_" + n.idx + "_dragger_horizontal")], - d = e("#mCSB_" + n.idx + "_container").find("iframe"); - d.length && d.each(function () { - e(this).bind("load", function () { - A(this) && e(this.contentDocument || this.contentWindow.document).bind("mousewheel." + r, function (e, o) { - t(e, o) - }) - }) - }), l.bind("mousewheel." + r, function (e, o) { - t(e, o) - }) - } - }, - R = new Object, - A = function (t) { - var o = !1, - a = !1, - n = null; - if (void 0 === t ? a = "#empty" : void 0 !== e(t).attr("id") && (a = e(t).attr("id")), a !== !1 && void 0 !== R[a]) return R[a]; - if (t) { - try { - var i = t.contentDocument || t.contentWindow.document; - n = i.body.innerHTML - } catch (r) {} - o = null !== n - } else { - try { - var i = top.document; - n = i.body.innerHTML - } catch (r) {} - o = null !== n - } - return a !== !1 && (R[a] = o), o - }, - L = function (e) { - var t = this.find("iframe"); - if (t.length) { - var o = e ? "auto" : "none"; - t.css("pointer-events", o) - } - }, - z = function (t, o) { - var n = o.nodeName.toLowerCase(), - i = t.data(a).opt.mouseWheel.disableOver, - r = ["select", "textarea"]; - return e.inArray(n, i) > -1 && !(e.inArray(n, r) > -1 && !e(o).is(":focus")) - }, - P = function () { - var t, o = e(this), - n = o.data(a), - i = a + "_" + n.idx, - r = e("#mCSB_" + n.idx + "_container"), - l = r.parent(), - s = e(".mCSB_" + n.idx + "_scrollbar ." + d[12]); - s.bind("mousedown." + i + " touchstart." + i + " pointerdown." + i + " MSPointerDown." + i, function (o) { - c = !0, e(o.target).hasClass("mCSB_dragger") || (t = 1) - }).bind("touchend." + i + " pointerup." + i + " MSPointerUp." + i, function () { - c = !1 - }).bind("click." + i, function (a) { - if (t && (t = 0, e(a.target).hasClass(d[12]) || e(a.target).hasClass("mCSB_draggerRail"))) { - Q(o); - var i = e(this), - s = i.find(".mCSB_dragger"); - if (i.parent(".mCSB_scrollTools_horizontal").length > 0) { - if (!n.overflowed[1]) return; - var c = "x", - u = a.pageX > s.offset().left ? -1 : 1, - f = Math.abs(r[0].offsetLeft) - u * (.9 * l.width()) - } else { - if (!n.overflowed[0]) return; - var c = "y", - u = a.pageY > s.offset().top ? -1 : 1, - f = Math.abs(r[0].offsetTop) - u * (.9 * l.height()) - } - G(o, f.toString(), { - dir: c, - scrollEasing: "mcsEaseInOut" - }) - } - }) - }, - H = function () { - var t = e(this), - o = t.data(a), - n = o.opt, - i = a + "_" + o.idx, - r = e("#mCSB_" + o.idx + "_container"), - l = r.parent(); - r.bind("focusin." + i, function () { - var o = e(document.activeElement), - a = r.find(".mCustomScrollBox").length, - i = 0; - o.is(n.advanced.autoScrollOnFocus) && (Q(t), clearTimeout(t[0]._focusTimeout), t[0]._focusTimer = a ? (i + 17) * a : 0, t[0]._focusTimeout = setTimeout(function () { - var e = [ae(o)[0], ae(o)[1]], - a = [r[0].offsetTop, r[0].offsetLeft], - s = [a[0] + e[0] >= 0 && a[0] + e[0] < l.height() - o.outerHeight(!1), a[1] + e[1] >= 0 && a[0] + e[1] < l.width() - o.outerWidth(!1)], - c = "yx" !== n.axis || s[0] || s[1] ? "all" : "none"; - "x" === n.axis || s[0] || G(t, e[0].toString(), { - dir: "y", - scrollEasing: "mcsEaseInOut", - overwrite: c, - dur: i - }), "y" === n.axis || s[1] || G(t, e[1].toString(), { - dir: "x", - scrollEasing: "mcsEaseInOut", - overwrite: c, - dur: i - }) - }, t[0]._focusTimer)) - }) - }, - U = function () { - var t = e(this), - o = t.data(a), - n = a + "_" + o.idx, - i = e("#mCSB_" + o.idx + "_container").parent(); - i.bind("scroll." + n, function () { - 0 === i.scrollTop() && 0 === i.scrollLeft() || e(".mCSB_" + o.idx + "_scrollbar").css("visibility", "hidden") - }) - }, - F = function () { - var t = e(this), - o = t.data(a), - n = o.opt, - i = o.sequential, - r = a + "_" + o.idx, - l = ".mCSB_" + o.idx + "_scrollbar", - s = e(l + ">a"); - s.bind("contextmenu." + r, function (e) { - e.preventDefault() - }).bind("mousedown." + r + " touchstart." + r + " pointerdown." + r + " MSPointerDown." + r + " mouseup." + r + " touchend." + r + " pointerup." + r + " MSPointerUp." + r + " mouseout." + r + " pointerout." + r + " MSPointerOut." + r + " click." + r, function (a) { - function r(e, o) { - i.scrollAmount = n.scrollButtons.scrollAmount, j(t, e, o) - } - if (a.preventDefault(), ee(a)) { - var l = e(this).attr("class"); - switch (i.type = n.scrollButtons.scrollType, a.type) { - case "mousedown": - case "touchstart": - case "pointerdown": - case "MSPointerDown": - if ("stepped" === i.type) return; - c = !0, o.tweenRunning = !1, r("on", l); - break; - case "mouseup": - case "touchend": - case "pointerup": - case "MSPointerUp": - case "mouseout": - case "pointerout": - case "MSPointerOut": - if ("stepped" === i.type) return; - c = !1, i.dir && r("off", l); - break; - case "click": - if ("stepped" !== i.type || o.tweenRunning) return; - r("on", l) - } - } - }) - }, - q = function () { - function t(t) { - function a(e, t) { - r.type = i.keyboard.scrollType, r.scrollAmount = i.keyboard.scrollAmount, "stepped" === r.type && n.tweenRunning || j(o, e, t) - } - switch (t.type) { - case "blur": - n.tweenRunning && r.dir && a("off", null); - break; - case "keydown": - case "keyup": - var l = t.keyCode ? t.keyCode : t.which, - s = "on"; - if ("x" !== i.axis && (38 === l || 40 === l) || "y" !== i.axis && (37 === l || 39 === l)) { - if ((38 === l || 40 === l) && !n.overflowed[0] || (37 === l || 39 === l) && !n.overflowed[1]) return; - "keyup" === t.type && (s = "off"), e(document.activeElement).is(u) || (t.preventDefault(), t.stopImmediatePropagation(), a(s, l)) - } else if (33 === l || 34 === l) { - if ((n.overflowed[0] || n.overflowed[1]) && (t.preventDefault(), t.stopImmediatePropagation()), "keyup" === t.type) { - Q(o); - var f = 34 === l ? -1 : 1; - if ("x" === i.axis || "yx" === i.axis && n.overflowed[1] && !n.overflowed[0]) var h = "x", - m = Math.abs(c[0].offsetLeft) - f * (.9 * d.width()); - else var h = "y", - m = Math.abs(c[0].offsetTop) - f * (.9 * d.height()); - G(o, m.toString(), { - dir: h, - scrollEasing: "mcsEaseInOut" - }) - } - } else if ((35 === l || 36 === l) && !e(document.activeElement).is(u) && ((n.overflowed[0] || n.overflowed[1]) && (t.preventDefault(), t.stopImmediatePropagation()), "keyup" === t.type)) { - if ("x" === i.axis || "yx" === i.axis && n.overflowed[1] && !n.overflowed[0]) var h = "x", - m = 35 === l ? Math.abs(d.width() - c.outerWidth(!1)) : 0; - else var h = "y", - m = 35 === l ? Math.abs(d.height() - c.outerHeight(!1)) : 0; - G(o, m.toString(), { - dir: h, - scrollEasing: "mcsEaseInOut" - }) - } - } - } - var o = e(this), - n = o.data(a), - i = n.opt, - r = n.sequential, - l = a + "_" + n.idx, - s = e("#mCSB_" + n.idx), - c = e("#mCSB_" + n.idx + "_container"), - d = c.parent(), - u = "input,textarea,select,datalist,keygen,[contenteditable='true']", - f = c.find("iframe"), - h = ["blur." + l + " keydown." + l + " keyup." + l]; - f.length && f.each(function () { - e(this).bind("load", function () { - A(this) && e(this.contentDocument || this.contentWindow.document).bind(h[0], function (e) { - t(e) - }) - }) - }), s.attr("tabindex", "0").bind(h[0], function (e) { - t(e) - }) - }, - j = function (t, o, n, i, r) { - function l(e) { - u.snapAmount && (f.scrollAmount = u.snapAmount instanceof Array ? "x" === f.dir[0] ? u.snapAmount[1] : u.snapAmount[0] : u.snapAmount); - var o = "stepped" !== f.type, - a = r ? r : e ? o ? p / 1.5 : g : 1e3 / 60, - n = e ? o ? 7.5 : 40 : 2.5, - s = [Math.abs(h[0].offsetTop), Math.abs(h[0].offsetLeft)], - d = [c.scrollRatio.y > 10 ? 10 : c.scrollRatio.y, c.scrollRatio.x > 10 ? 10 : c.scrollRatio.x], - m = "x" === f.dir[0] ? s[1] + f.dir[1] * (d[1] * n) : s[0] + f.dir[1] * (d[0] * n), - v = "x" === f.dir[0] ? s[1] + f.dir[1] * parseInt(f.scrollAmount) : s[0] + f.dir[1] * parseInt(f.scrollAmount), - x = "auto" !== f.scrollAmount ? v : m, - _ = i ? i : e ? o ? "mcsLinearOut" : "mcsEaseInOut" : "mcsLinear", - w = !!e; - return e && 17 > a && (x = "x" === f.dir[0] ? s[1] : s[0]), G(t, x.toString(), { - dir: f.dir[0], - scrollEasing: _, - dur: a, - onComplete: w - }), e ? void(f.dir = !1) : (clearTimeout(f.step), void(f.step = setTimeout(function () { - l() - }, a))) - } - - function s() { - clearTimeout(f.step), $(f, "step"), Q(t) - } - var c = t.data(a), - u = c.opt, - f = c.sequential, - h = e("#mCSB_" + c.idx + "_container"), - m = "stepped" === f.type, - p = u.scrollInertia < 26 ? 26 : u.scrollInertia, - g = u.scrollInertia < 1 ? 17 : u.scrollInertia; - switch (o) { - case "on": - if (f.dir = [n === d[16] || n === d[15] || 39 === n || 37 === n ? "x" : "y", n === d[13] || n === d[15] || 38 === n || 37 === n ? -1 : 1], Q(t), oe(n) && "stepped" === f.type) return; - l(m); - break; - case "off": - s(), (m || c.tweenRunning && f.dir) && l(!0) - } - }, - Y = function (t) { - var o = e(this).data(a).opt, - n = []; - return "function" == typeof t && (t = t()), t instanceof Array ? n = t.length > 1 ? [t[0], t[1]] : "x" === o.axis ? [null, t[0]] : [t[0], null] : (n[0] = t.y ? t.y : t.x || "x" === o.axis ? null : t, n[1] = t.x ? t.x : t.y || "y" === o.axis ? null : t), "function" == typeof n[0] && (n[0] = n[0]()), "function" == typeof n[1] && (n[1] = n[1]()), n - }, - X = function (t, o) { - if (null != t && "undefined" != typeof t) { - var n = e(this), - i = n.data(a), - r = i.opt, - l = e("#mCSB_" + i.idx + "_container"), - s = l.parent(), - c = typeof t; - o || (o = "x" === r.axis ? "x" : "y"); - var d = "x" === o ? l.outerWidth(!1) - s.width() : l.outerHeight(!1) - s.height(), - f = "x" === o ? l[0].offsetLeft : l[0].offsetTop, - h = "x" === o ? "left" : "top"; - switch (c) { - case "function": - return t(); - case "object": - var m = t.jquery ? t : e(t); - if (!m.length) return; - return "x" === o ? ae(m)[1] : ae(m)[0]; - case "string": - case "number": - if (oe(t)) return Math.abs(t); - if (-1 !== t.indexOf("%")) return Math.abs(d * parseInt(t) / 100); - if (-1 !== t.indexOf("-=")) return Math.abs(f - parseInt(t.split("-=")[1])); - if (-1 !== t.indexOf("+=")) { - var p = f + parseInt(t.split("+=")[1]); - return p >= 0 ? 0 : Math.abs(p) - } - if (-1 !== t.indexOf("px") && oe(t.split("px")[0])) return Math.abs(t.split("px")[0]); - if ("top" === t || "left" === t) return 0; - if ("bottom" === t) return Math.abs(s.height() - l.outerHeight(!1)); - if ("right" === t) return Math.abs(s.width() - l.outerWidth(!1)); - if ("first" === t || "last" === t) { - var m = l.find(":" + t); - return "x" === o ? ae(m)[1] : ae(m)[0] - } - return e(t).length ? "x" === o ? ae(e(t))[1] : ae(e(t))[0] : (l.css(h, t), void u.update.call(null, n[0])) - } - } - }, - N = function (t) { - function o() { - return clearTimeout(f[0].autoUpdate), 0 === l.parents("html").length ? void(l = null) : void(f[0].autoUpdate = setTimeout(function () { - return c.advanced.updateOnSelectorChange && (s.poll.change.n = i(), s.poll.change.n !== s.poll.change.o) ? (s.poll.change.o = s.poll.change.n, void r(3)) : c.advanced.updateOnContentResize && (s.poll.size.n = l[0].scrollHeight + l[0].scrollWidth + f[0].offsetHeight + l[0].offsetHeight + l[0].offsetWidth, s.poll.size.n !== s.poll.size.o) ? (s.poll.size.o = s.poll.size.n, void r(1)) : !c.advanced.updateOnImageLoad || "auto" === c.advanced.updateOnImageLoad && "y" === c.axis || (s.poll.img.n = f.find("img").length, s.poll.img.n === s.poll.img.o) ? void((c.advanced.updateOnSelectorChange || c.advanced.updateOnContentResize || c.advanced.updateOnImageLoad) && o()) : (s.poll.img.o = s.poll.img.n, void f.find("img").each(function () { - n(this) - })) - }, c.advanced.autoUpdateTimeout)) - } - - function n(t) { - function o(e, t) { - return function () { - return t.apply(e, arguments) - } - } - - function a() { - this.onload = null, e(t).addClass(d[2]), r(2) - } - if (e(t).hasClass(d[2])) return void r(); - var n = new Image; - n.onload = o(n, a), n.src = t.src - } - - function i() { - c.advanced.updateOnSelectorChange === !0 && (c.advanced.updateOnSelectorChange = "*"); - var e = 0, - t = f.find(c.advanced.updateOnSelectorChange); - return c.advanced.updateOnSelectorChange && t.length > 0 && t.each(function () { - e += this.offsetHeight + this.offsetWidth - }), e - } - - function r(e) { - clearTimeout(f[0].autoUpdate), u.update.call(null, l[0], e) - } - var l = e(this), - s = l.data(a), - c = s.opt, - f = e("#mCSB_" + s.idx + "_container"); - return t ? (clearTimeout(f[0].autoUpdate), void $(f[0], "autoUpdate")) : void o() - }, - V = function (e, t, o) { - return Math.round(e / t) * t - o - }, - Q = function (t) { - var o = t.data(a), - n = e("#mCSB_" + o.idx + "_container,#mCSB_" + o.idx + "_container_wrapper,#mCSB_" + o.idx + "_dragger_vertical,#mCSB_" + o.idx + "_dragger_horizontal"); - n.each(function () { - Z.call(this) - }) - }, - G = function (t, o, n) { - function i(e) { - return s && c.callbacks[e] && "function" == typeof c.callbacks[e] - } - - function r() { - return [c.callbacks.alwaysTriggerOffsets || w >= S[0] + y, c.callbacks.alwaysTriggerOffsets || -B >= w] - } - - function l() { - var e = [h[0].offsetTop, h[0].offsetLeft], - o = [x[0].offsetTop, x[0].offsetLeft], - a = [h.outerHeight(!1), h.outerWidth(!1)], - i = [f.height(), f.width()]; - t[0].mcs = { - content: h, - top: e[0], - left: e[1], - draggerTop: o[0], - draggerLeft: o[1], - topPct: Math.round(100 * Math.abs(e[0]) / (Math.abs(a[0]) - i[0])), - leftPct: Math.round(100 * Math.abs(e[1]) / (Math.abs(a[1]) - i[1])), - direction: n.dir - } - } - var s = t.data(a), - c = s.opt, - d = { - trigger: "internal", - dir: "y", - scrollEasing: "mcsEaseOut", - drag: !1, - dur: c.scrollInertia, - overwrite: "all", - callbacks: !0, - onStart: !0, - onUpdate: !0, - onComplete: !0 - }, - n = e.extend(d, n), - u = [n.dur, n.drag ? 0 : n.dur], - f = e("#mCSB_" + s.idx), - h = e("#mCSB_" + s.idx + "_container"), - m = h.parent(), - p = c.callbacks.onTotalScrollOffset ? Y.call(t, c.callbacks.onTotalScrollOffset) : [0, 0], - g = c.callbacks.onTotalScrollBackOffset ? Y.call(t, c.callbacks.onTotalScrollBackOffset) : [0, 0]; - if (s.trigger = n.trigger, 0 === m.scrollTop() && 0 === m.scrollLeft() || (e(".mCSB_" + s.idx + "_scrollbar").css("visibility", "visible"), m.scrollTop(0).scrollLeft(0)), "_resetY" !== o || s.contentReset.y || (i("onOverflowYNone") && c.callbacks.onOverflowYNone.call(t[0]), s.contentReset.y = 1), "_resetX" !== o || s.contentReset.x || (i("onOverflowXNone") && c.callbacks.onOverflowXNone.call(t[0]), s.contentReset.x = 1), "_resetY" !== o && "_resetX" !== o) { - if (!s.contentReset.y && t[0].mcs || !s.overflowed[0] || (i("onOverflowY") && c.callbacks.onOverflowY.call(t[0]), s.contentReset.x = null), !s.contentReset.x && t[0].mcs || !s.overflowed[1] || (i("onOverflowX") && c.callbacks.onOverflowX.call(t[0]), s.contentReset.x = null), c.snapAmount) { - var v = c.snapAmount instanceof Array ? "x" === n.dir ? c.snapAmount[1] : c.snapAmount[0] : c.snapAmount; - o = V(o, v, c.snapOffset) - } - switch (n.dir) { - case "x": - var x = e("#mCSB_" + s.idx + "_dragger_horizontal"), - _ = "left", - w = h[0].offsetLeft, - S = [f.width() - h.outerWidth(!1), x.parent().width() - x.width()], - b = [o, 0 === o ? 0 : o / s.scrollRatio.x], - y = p[1], - B = g[1], - T = y > 0 ? y / s.scrollRatio.x : 0, - k = B > 0 ? B / s.scrollRatio.x : 0; - break; - case "y": - var x = e("#mCSB_" + s.idx + "_dragger_vertical"), - _ = "top", - w = h[0].offsetTop, - S = [f.height() - h.outerHeight(!1), x.parent().height() - x.height()], - b = [o, 0 === o ? 0 : o / s.scrollRatio.y], - y = p[0], - B = g[0], - T = y > 0 ? y / s.scrollRatio.y : 0, - k = B > 0 ? B / s.scrollRatio.y : 0 - } - b[1] < 0 || 0 === b[0] && 0 === b[1] ? b = [0, 0] : b[1] >= S[1] ? b = [S[0], S[1]] : b[0] = -b[0], t[0].mcs || (l(), i("onInit") && c.callbacks.onInit.call(t[0])), clearTimeout(h[0].onCompleteTimeout), J(x[0], _, Math.round(b[1]), u[1], n.scrollEasing), !s.tweenRunning && (0 === w && b[0] >= 0 || w === S[0] && b[0] <= S[0]) || J(h[0], _, Math.round(b[0]), u[0], n.scrollEasing, n.overwrite, { - onStart: function () { - n.callbacks && n.onStart && !s.tweenRunning && (i("onScrollStart") && (l(), c.callbacks.onScrollStart.call(t[0])), s.tweenRunning = !0, C(x), s.cbOffsets = r()) - }, - onUpdate: function () { - n.callbacks && n.onUpdate && i("whileScrolling") && (l(), c.callbacks.whileScrolling.call(t[0])) - }, - onComplete: function () { - if (n.callbacks && n.onComplete) { - "yx" === c.axis && clearTimeout(h[0].onCompleteTimeout); - var e = h[0].idleTimer || 0; - h[0].onCompleteTimeout = setTimeout(function () { - i("onScroll") && (l(), c.callbacks.onScroll.call(t[0])), i("onTotalScroll") && b[1] >= S[1] - T && s.cbOffsets[0] && (l(), c.callbacks.onTotalScroll.call(t[0])), i("onTotalScrollBack") && b[1] <= k && s.cbOffsets[1] && (l(), c.callbacks.onTotalScrollBack.call(t[0])), s.tweenRunning = !1, h[0].idleTimer = 0, C(x, "hide") - }, e) - } - } - }) - } - }, - J = function (e, t, o, a, n, i, r) { - function l() { - S.stop || (x || m.call(), x = K() - v, s(), x >= S.time && (S.time = x > S.time ? x + f - (x - S.time) : x + f - 1, S.time < x + 1 && (S.time = x + 1)), S.time < a ? S.id = h(l) : g.call()) - } - - function s() { - a > 0 ? (S.currVal = u(S.time, _, b, a, n), w[t] = Math.round(S.currVal) + "px") : w[t] = o + "px", p.call() - } - - function c() { - f = 1e3 / 60, S.time = x + f, h = window.requestAnimationFrame ? window.requestAnimationFrame : function (e) { - return s(), setTimeout(e, .01) - }, S.id = h(l) - } - - function d() { - null != S.id && (window.requestAnimationFrame ? window.cancelAnimationFrame(S.id) : clearTimeout(S.id), S.id = null) - } - - function u(e, t, o, a, n) { - switch (n) { - case "linear": - case "mcsLinear": - return o * e / a + t; - case "mcsLinearOut": - return e /= a, e--, o * Math.sqrt(1 - e * e) + t; - case "easeInOutSmooth": - return e /= a / 2, 1 > e ? o / 2 * e * e + t : (e--, -o / 2 * (e * (e - 2) - 1) + t); - case "easeInOutStrong": - return e /= a / 2, 1 > e ? o / 2 * Math.pow(2, 10 * (e - 1)) + t : (e--, o / 2 * (-Math.pow(2, -10 * e) + 2) + t); - case "easeInOut": - case "mcsEaseInOut": - return e /= a / 2, 1 > e ? o / 2 * e * e * e + t : (e -= 2, o / 2 * (e * e * e + 2) + t); - case "easeOutSmooth": - return e /= a, e--, -o * (e * e * e * e - 1) + t; - case "easeOutStrong": - return o * (-Math.pow(2, -10 * e / a) + 1) + t; - case "easeOut": - case "mcsEaseOut": - default: - var i = (e /= a) * e, - r = i * e; - return t + o * (.499999999999997 * r * i + -2.5 * i * i + 5.5 * r + -6.5 * i + 4 * e) - } - } - e._mTween || (e._mTween = { - top: {}, - left: {} - }); - var f, h, r = r || {}, - m = r.onStart || function () {}, - p = r.onUpdate || function () {}, - g = r.onComplete || function () {}, - v = K(), - x = 0, - _ = e.offsetTop, - w = e.style, - S = e._mTween[t]; - "left" === t && (_ = e.offsetLeft); - var b = o - _; - S.stop = 0, "none" !== i && d(), c() - }, - K = function () { - return window.performance && window.performance.now ? window.performance.now() : window.performance && window.performance.webkitNow ? window.performance.webkitNow() : Date.now ? Date.now() : (new Date).getTime() - }, - Z = function () { - var e = this; - e._mTween || (e._mTween = { - top: {}, - left: {} - }); - for (var t = ["top", "left"], o = 0; o < t.length; o++) { - var a = t[o]; - e._mTween[a].id && (window.requestAnimationFrame ? window.cancelAnimationFrame(e._mTween[a].id) : clearTimeout(e._mTween[a].id), e._mTween[a].id = null, e._mTween[a].stop = 1) - } - }, - $ = function (e, t) { - try { - delete e[t] - } catch (o) { - e[t] = null - } - }, - ee = function (e) { - return !(e.which && 1 !== e.which) - }, - te = function (e) { - var t = e.originalEvent.pointerType; - return !(t && "touch" !== t && 2 !== t) - }, - oe = function (e) { - return !isNaN(parseFloat(e)) && isFinite(e) - }, - ae = function (e) { - var t = e.parents(".mCSB_container"); - return [e.offset().top - t.offset().top, e.offset().left - t.offset().left] - }, - ne = function () { - function e() { - var e = ["webkit", "moz", "ms", "o"]; - if ("hidden" in document) return "hidden"; - for (var t = 0; t < e.length; t++) - if (e[t] + "Hidden" in document) return e[t] + "Hidden"; - return null - } - var t = e(); - return t ? document[t] : !1 - }; - e.fn[o] = function (t) { - return u[t] ? u[t].apply(this, Array.prototype.slice.call(arguments, 1)) : "object" != typeof t && t ? void e.error("Method " + t + " does not exist") : u.init.apply(this, arguments) - }, e[o] = function (t) { - return u[t] ? u[t].apply(this, Array.prototype.slice.call(arguments, 1)) : "object" != typeof t && t ? void e.error("Method " + t + " does not exist") : u.init.apply(this, arguments) - }, e[o].defaults = i, window[o] = !0, e(window).bind("load", function () { - e(n)[o](), e.extend(e.expr[":"], { - mcsInView: e.expr[":"].mcsInView || function (t) { - var o, a, n = e(t), - i = n.parents(".mCSB_container"); - if (i.length) return o = i.parent(), a = [i[0].offsetTop, i[0].offsetLeft], a[0] + ae(n)[0] >= 0 && a[0] + ae(n)[0] < o.height() - n.outerHeight(!1) && a[1] + ae(n)[1] >= 0 && a[1] + ae(n)[1] < o.width() - n.outerWidth(!1) - }, - mcsInSight: e.expr[":"].mcsInSight || function (t, o, a) { - var n, i, r, l, s = e(t), - c = s.parents(".mCSB_container"), - d = "exact" === a[3] ? [ - [1, 0], - [1, 0] - ] : [ - [.9, .1], - [.6, .4] - ]; - if (c.length) return n = [s.outerHeight(!1), s.outerWidth(!1)], r = [c[0].offsetTop + ae(s)[0], c[0].offsetLeft + ae(s)[1]], i = [c.parent()[0].offsetHeight, c.parent()[0].offsetWidth], l = [n[0] < i[0] ? d[0] : d[1], n[1] < i[1] ? d[0] : d[1]], r[0] - i[0] * l[0][0] < 0 && r[0] + n[0] - i[0] * l[0][1] >= 0 && r[1] - i[1] * l[1][0] < 0 && r[1] + n[1] - i[1] * l[1][1] >= 0 - }, - mcsOverflow: e.expr[":"].mcsOverflow || function (t) { - var o = e(t).data(a); - if (o) return o.overflowed[0] || o.overflowed[1] - } - }) - }) - }) -}); -/*=========================================== - - 03 -- Smooth scroll js - -=============================================*/ -// SmoothScroll for websites v1.2.1 -// Licensed under the terms of the MIT license. - -// People involved -// - Balazs Galambosi (maintainer) -// - Michael Herf (Pulse Algorithm) - -(function () { - // Scroll Variables (tweakable) - var defaultOptions = { - // Scrolling Core - frameRate: 150, // [Hz] - animationTime: 400, // [px] - stepSize: 120, // [px] - - // Pulse (less tweakable) - // ratio of "tail" to "acceleration" - pulseAlgorithm: true, - pulseScale: 8, - pulseNormalize: 1, - - // Acceleration - accelerationDelta: 20, // 20 - accelerationMax: 1, // 1 - - // Keyboard Settings - keyboardSupport: true, // option - arrowScroll: 50, // [px] - - // Other - touchpadSupport: true, - fixedBackground: true, - excluded: "", - }; - - var options = defaultOptions; - - // Other Variables - var isExcluded = false; - var isFrame = false; - var direction = { - x: 0, - y: 0 - }; - var initDone = false; - var root = document.documentElement; - var activeElement; - var observer; - var deltaBuffer = [120, 120, 120]; - - var key = { - left: 37, - up: 38, - right: 39, - down: 40, - spacebar: 32, - pageup: 33, - pagedown: 34, - end: 35, - home: 36, - }; - - /*********************************************** - * SETTINGS - ***********************************************/ - - var options = defaultOptions; - - /*********************************************** - * INITIALIZE - ***********************************************/ - - /** - * Tests if smooth scrolling is allowed. Shuts down everything if not. - */ - function initTest() { - var disableKeyboard = false; - - // disable keyboard support if anything above requested it - if (disableKeyboard) { - removeEvent("keydown", keydown); - } - - if (options.keyboardSupport && !disableKeyboard) { - addEvent("keydown", keydown); - } - } - - /** - * Sets up scrolls array, determines if frames are involved. - */ - function init() { - if (!document.body) return; - - var body = document.body; - var html = document.documentElement; - var windowHeight = window.innerHeight; - var scrollHeight = body.scrollHeight; - - // check compat mode for root element - root = document.compatMode.indexOf("CSS") >= 0 ? html : body; - activeElement = body; - - initTest(); - initDone = true; - - // Checks if this script is running in a frame - if (top != self) { - isFrame = true; - } else if ( - - /** - * This fixes a bug where the areas left and right to - * the content does not trigger the onmousewheel event - * on some pages. e.g.: html, body { height: 100% } - */ - scrollHeight > windowHeight && - (body.offsetHeight <= windowHeight || html.offsetHeight <= windowHeight) - ) { - // DOMChange (throttle): fix height - var pending = false; - var refresh = function () { - if (!pending && html.scrollHeight != document.height) { - pending = true; // add a new pending action - setTimeout(function () { - html.style.height = document.height + "px"; - pending = false; - }, 500); // act rarely to stay fast - } - }; - html.style.height = "auto"; - setTimeout(refresh, 10); - - // clearfix - if (root.offsetHeight <= windowHeight) { - var underlay = document.createElement("div"); - underlay.style.clear = "both"; - body.appendChild(underlay); - } - } - - // disable fixed background - if (!options.fixedBackground && !isExcluded) { - body.style.backgroundAttachment = "scroll"; - html.style.backgroundAttachment = "scroll"; - } - } - - /************************************************ - * SCROLLING - ************************************************/ - - var que = []; - var pending = false; - var lastScroll = +new Date(); - - /** - * Pushes scroll actions to the scrolling queue. - */ - function scrollArray(elem, left, top, delay) { - delay || (delay = 1000); - directionCheck(left, top); - - if (options.accelerationMax != 1) { - var now = +new Date(); - var elapsed = now - lastScroll; - if (elapsed < options.accelerationDelta) { - var factor = (1 + 30 / elapsed) / 2; - if (factor > 1) { - factor = Math.min(factor, options.accelerationMax); - left *= factor; - top *= factor; - } - } - lastScroll = +new Date(); - } - - // push a scroll command - que.push({ - x: left, - y: top, - lastX: left < 0 ? 0.99 : -0.99, - lastY: top < 0 ? 0.99 : -0.99, - start: +new Date(), - }); - - // don't act if there's a pending queue - if (pending) { - return; - } - - var scrollWindow = elem === document.body; - - var step = function (time) { - var now = +new Date(); - var scrollX = 0; - var scrollY = 0; - - for (var i = 0; i < que.length; i++) { - var item = que[i]; - var elapsed = now - item.start; - var finished = elapsed >= options.animationTime; - - // scroll position: [0, 1] - var position = finished ? 1 : elapsed / options.animationTime; - - // easing [optional] - if (options.pulseAlgorithm) { - position = pulse(position); - } - - // only need the difference - var x = (item.x * position - item.lastX) >> 0; - var y = (item.y * position - item.lastY) >> 0; - - // add this to the total scrolling - scrollX += x; - scrollY += y; - - // update last values - item.lastX += x; - item.lastY += y; - - // delete and step back if it's over - if (finished) { - que.splice(i, 1); - i--; - } - } - - // scroll left and top - if (scrollWindow) { - window.scrollBy(scrollX, scrollY); - } else { - if (scrollX) elem.scrollLeft += scrollX; - if (scrollY) elem.scrollTop += scrollY; - } - - // clean up if there's nothing left to do - if (!left && !top) { - que = []; - } - - if (que.length) { - requestFrame(step, elem, delay / options.frameRate + 1); - } else { - pending = false; - } - }; - - // start a new queue of actions - requestFrame(step, elem, 0); - pending = true; - } - - /*********************************************** - * EVENTS - ***********************************************/ - - /** - * Mouse wheel handler. - * @param {Object} event - */ - function wheel(event) { - if (!initDone) { - init(); - } - - var target = event.target; - var overflowing = overflowingAncestor(target); - - // use default if there's no overflowing - // element or default action is prevented - if ( - !overflowing || - event.defaultPrevented || - isNodeName(activeElement, "embed") || - (isNodeName(target, "embed") && /\.pdf/i.test(target.src)) - ) { - return true; - } - - var deltaX = event.wheelDeltaX || 0; - var deltaY = event.wheelDeltaY || 0; - - // use wheelDelta if deltaX/Y is not available - if (!deltaX && !deltaY) { - deltaY = event.wheelDelta || 0; - } - - // check if it's a touchpad scroll that should be ignored - if (!options.touchpadSupport && isTouchpad(deltaY)) { - return true; - } - - // scale by step size - // delta is 120 most of the time - // synaptics seems to send 1 sometimes - if (Math.abs(deltaX) > 1.2) { - deltaX *= options.stepSize / 120; - } - if (Math.abs(deltaY) > 1.2) { - deltaY *= options.stepSize / 120; - } - - scrollArray(overflowing, -deltaX, -deltaY); - event.preventDefault(); - } - - /** - * Keydown event handler. - * @param {Object} event - */ - function keydown(event) { - var target = event.target; - var modifier = - event.ctrlKey || - event.altKey || - event.metaKey || - (event.shiftKey && event.keyCode !== key.spacebar); - - // do nothing if user is editing text - // or using a modifier key (except shift) - // or in a dropdown - if ( - /input|textarea|select|embed/i.test(target.nodeName) || - target.isContentEditable || - event.defaultPrevented || - modifier - ) { - return true; - } - // spacebar should trigger button press - if (isNodeName(target, "button") && event.keyCode === key.spacebar) { - return true; - } - - var shift, - x = 0, - y = 0; - var elem = overflowingAncestor(activeElement); - var clientHeight = elem.clientHeight; - - if (elem == document.body) { - clientHeight = window.innerHeight; - } - - switch (event.keyCode) { - case key.up: - y = -options.arrowScroll; - break; - case key.down: - y = options.arrowScroll; - break; - case key.spacebar: // (+ shift) - shift = event.shiftKey ? 1 : -1; - y = -shift * clientHeight * 0.9; - break; - case key.pageup: - y = -clientHeight * 0.9; - break; - case key.pagedown: - y = clientHeight * 0.9; - break; - case key.home: - y = -elem.scrollTop; - break; - case key.end: - var damt = elem.scrollHeight - elem.scrollTop - clientHeight; - y = damt > 0 ? damt + 10 : 0; - break; - case key.left: - x = -options.arrowScroll; - break; - case key.right: - x = options.arrowScroll; - break; - default: - return true; // a key we don't care about - } - - scrollArray(elem, x, y); - event.preventDefault(); - } - - /** - * Mousedown event only for updating activeElement - */ - function mousedown(event) { - activeElement = event.target; - } - - /*********************************************** - * OVERFLOW - ***********************************************/ - - var cache = {}; // cleared out every once in while - setInterval(function () { - cache = {}; - }, 10 * 1000); - - var uniqueID = (function () { - var i = 0; - return function (el) { - return el.uniqueID || (el.uniqueID = i++); - }; - })(); - - function setCache(elems, overflowing) { - for (var i = elems.length; i--;) cache[uniqueID(elems[i])] = overflowing; - return overflowing; - } - - function overflowingAncestor(el) { - var elems = []; - var rootScrollHeight = root.scrollHeight; - do { - var cached = cache[uniqueID(el)]; - if (cached) { - return setCache(elems, cached); - } - elems.push(el); - if (rootScrollHeight === el.scrollHeight) { - if (!isFrame || root.clientHeight + 10 < rootScrollHeight) { - return setCache(elems, document.body); // scrolling root in WebKit - } - } else if (el.clientHeight + 10 < el.scrollHeight) { - overflow = getComputedStyle(el, "").getPropertyValue("overflow-y"); - if (overflow === "scroll" || overflow === "auto") { - return setCache(elems, el); - } - } - } while ((el = el.parentNode)); - } - - /*********************************************** - * HELPERS - ***********************************************/ - - function addEvent(type, fn, bubble) { - window.addEventListener(type, fn, bubble || false); - } - - function removeEvent(type, fn, bubble) { - window.removeEventListener(type, fn, bubble || false); - } - - function isNodeName(el, tag) { - return (el.nodeName || "").toLowerCase() === tag.toLowerCase(); - } - - function directionCheck(x, y) { - x = x > 0 ? 1 : -1; - y = y > 0 ? 1 : -1; - if (direction.x !== x || direction.y !== y) { - direction.x = x; - direction.y = y; - que = []; - lastScroll = 0; - } - } - - var deltaBufferTimer; - - function isTouchpad(deltaY) { - if (!deltaY) return; - deltaY = Math.abs(deltaY); - deltaBuffer.push(deltaY); - deltaBuffer.shift(); - clearTimeout(deltaBufferTimer); - var allDivisable = - isDivisible(deltaBuffer[0], 120) && - isDivisible(deltaBuffer[1], 120) && - isDivisible(deltaBuffer[2], 120); - return !allDivisable; - } - - function isDivisible(n, divisor) { - return Math.floor(n / divisor) == n / divisor; - } - - var requestFrame = (function () { - return ( - window.requestAnimationFrame || - window.webkitRequestAnimationFrame || - function (callback, element, delay) { - window.setTimeout(callback, delay || 1000 / 60); - } - ); - })(); - - /*********************************************** - * PULSE - ***********************************************/ - - /** - * Viscous fluid with a pulse for part and decay for the rest. - * - Applies a fixed force over an interval (a damped acceleration), and - * - Lets the exponential bleed away the velocity over a longer interval - * - Michael Herf, http://stereopsis.com/stopping/ - */ - function pulse_(x) { - var val, start, expx; - // test - x = x * options.pulseScale; - if (x < 1) { - // acceleartion - val = x - (1 - Math.exp(-x)); - } else { - // tail - // the previous animation ended here: - start = Math.exp(-1); - // simple viscous drag - x -= 1; - expx = 1 - Math.exp(-x); - val = start + expx * (1 - start); - } - return val * options.pulseNormalize; - } - - function pulse(x) { - if (x >= 1) return 1; - if (x <= 0) return 0; - - if (options.pulseNormalize == 1) { - options.pulseNormalize /= pulse_(1); - } - return pulse_(x); - } - - var isChrome = /chrome/i.test(window.navigator.userAgent); - var wheelEvent = null; - if ("onwheel" in document.createElement("div")) wheelEvent = "wheel"; - else if ("onmousewheel" in document.createElement("div")) - wheelEvent = "mousewheel"; - - if (wheelEvent && isChrome) { - addEvent(wheelEvent, wheel); - addEvent("mousedown", mousedown); - addEvent("load", init); - } -})(); \ No newline at end of file diff --git a/desarrollo/diseno/support-center/js/vendors.js b/desarrollo/diseno/support-center/js/vendors.js deleted file mode 100644 index 47a15030..00000000 --- a/desarrollo/diseno/support-center/js/vendors.js +++ /dev/null @@ -1,13365 +0,0 @@ -/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ ! function (e, t) { - "use strict"; - "object" == typeof module && "object" == typeof module.exports ? module.exports = e.document ? t(e, !0) : function (e) { - if (!e.document) throw new Error("jQuery requires a window with a document"); - return t(e) - } : t(e) -}("undefined" != typeof window ? window : this, function (C, e) { - "use strict"; - var t = [], - r = Object.getPrototypeOf, - s = t.slice, - g = t.flat ? function (e) { - return t.flat.call(e) - } : function (e) { - return t.concat.apply([], e) - }, - u = t.push, - i = t.indexOf, - n = {}, - o = n.toString, - v = n.hasOwnProperty, - a = v.toString, - l = a.call(Object), - y = {}, - m = function (e) { - return "function" == typeof e && "number" != typeof e.nodeType - }, - x = function (e) { - return null != e && e === e.window - }, - E = C.document, - c = { - type: !0, - src: !0, - nonce: !0, - noModule: !0 - }; - - function b(e, t, n) { - var r, i, o = (n = n || E).createElement("script"); - if (o.text = e, t) - for (r in c)(i = t[r] || t.getAttribute && t.getAttribute(r)) && o.setAttribute(r, i); - n.head.appendChild(o).parentNode.removeChild(o) - } - - function w(e) { - return null == e ? e + "" : "object" == typeof e || "function" == typeof e ? n[o.call(e)] || "object" : typeof e - } - var f = "3.5.1", - S = function (e, t) { - return new S.fn.init(e, t) - }; - - function p(e) { - var t = !!e && "length" in e && e.length, - n = w(e); - return !m(e) && !x(e) && ("array" === n || 0 === t || "number" == typeof t && 0 < t && t - 1 in e) - } - S.fn = S.prototype = { - jquery: f, - constructor: S, - length: 0, - toArray: function () { - return s.call(this) - }, - get: function (e) { - return null == e ? s.call(this) : e < 0 ? this[e + this.length] : this[e] - }, - pushStack: function (e) { - var t = S.merge(this.constructor(), e); - return t.prevObject = this, t - }, - each: function (e) { - return S.each(this, e) - }, - map: function (n) { - return this.pushStack(S.map(this, function (e, t) { - return n.call(e, t, e) - })) - }, - slice: function () { - return this.pushStack(s.apply(this, arguments)) - }, - first: function () { - return this.eq(0) - }, - last: function () { - return this.eq(-1) - }, - even: function () { - return this.pushStack(S.grep(this, function (e, t) { - return (t + 1) % 2 - })) - }, - odd: function () { - return this.pushStack(S.grep(this, function (e, t) { - return t % 2 - })) - }, - eq: function (e) { - var t = this.length, - n = +e + (e < 0 ? t : 0); - return this.pushStack(0 <= n && n < t ? [this[n]] : []) - }, - end: function () { - return this.prevObject || this.constructor() - }, - push: u, - sort: t.sort, - splice: t.splice - }, S.extend = S.fn.extend = function () { - var e, t, n, r, i, o, a = arguments[0] || {}, - s = 1, - u = arguments.length, - l = !1; - for ("boolean" == typeof a && (l = a, a = arguments[s] || {}, s++), "object" == typeof a || m(a) || (a = {}), s === u && (a = this, s--); s < u; s++) - if (null != (e = arguments[s])) - for (t in e) r = e[t], "__proto__" !== t && a !== r && (l && r && (S.isPlainObject(r) || (i = Array.isArray(r))) ? (n = a[t], o = i && !Array.isArray(n) ? [] : i || S.isPlainObject(n) ? n : {}, i = !1, a[t] = S.extend(l, o, r)) : void 0 !== r && (a[t] = r)); - return a - }, S.extend({ - expando: "jQuery" + (f + Math.random()).replace(/\D/g, ""), - isReady: !0, - error: function (e) { - throw new Error(e) - }, - noop: function () {}, - isPlainObject: function (e) { - var t, n; - return !(!e || "[object Object]" !== o.call(e)) && (!(t = r(e)) || "function" == typeof (n = v.call(t, "constructor") && t.constructor) && a.call(n) === l) - }, - isEmptyObject: function (e) { - var t; - for (t in e) return !1; - return !0 - }, - globalEval: function (e, t, n) { - b(e, { - nonce: t && t.nonce - }, n) - }, - each: function (e, t) { - var n, r = 0; - if (p(e)) { - for (n = e.length; r < n; r++) - if (!1 === t.call(e[r], r, e[r])) break - } else - for (r in e) - if (!1 === t.call(e[r], r, e[r])) break; - return e - }, - makeArray: function (e, t) { - var n = t || []; - return null != e && (p(Object(e)) ? S.merge(n, "string" == typeof e ? [e] : e) : u.call(n, e)), n - }, - inArray: function (e, t, n) { - return null == t ? -1 : i.call(t, e, n) - }, - merge: function (e, t) { - for (var n = +t.length, r = 0, i = e.length; r < n; r++) e[i++] = t[r]; - return e.length = i, e - }, - grep: function (e, t, n) { - for (var r = [], i = 0, o = e.length, a = !n; i < o; i++) !t(e[i], i) !== a && r.push(e[i]); - return r - }, - map: function (e, t, n) { - var r, i, o = 0, - a = []; - if (p(e)) - for (r = e.length; o < r; o++) null != (i = t(e[o], o, n)) && a.push(i); - else - for (o in e) null != (i = t(e[o], o, n)) && a.push(i); - return g(a) - }, - guid: 1, - support: y - }), "function" == typeof Symbol && (S.fn[Symbol.iterator] = t[Symbol.iterator]), S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "), function (e, t) { - n["[object " + t + "]"] = t.toLowerCase() - }); - var d = function (n) { - var e, d, b, o, i, h, f, g, w, u, l, T, C, a, E, v, s, c, y, S = "sizzle" + 1 * new Date, - p = n.document, - k = 0, - r = 0, - m = ue(), - x = ue(), - A = ue(), - N = ue(), - D = function (e, t) { - return e === t && (l = !0), 0 - }, - j = {}.hasOwnProperty, - t = [], - q = t.pop, - L = t.push, - H = t.push, - O = t.slice, - P = function (e, t) { - for (var n = 0, r = e.length; n < r; n++) - if (e[n] === t) return n; - return -1 - }, - R = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", - M = "[\\x20\\t\\r\\n\\f]", - I = "(?:\\\\[\\da-fA-F]{1,6}" + M + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - W = "\\[" + M + "*(" + I + ")(?:" + M + "*([*^$|!~]?=)" + M + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + I + "))|)" + M + "*\\]", - F = ":(" + I + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + W + ")*)|.*)\\)|)", - B = new RegExp(M + "+", "g"), - $ = new RegExp("^" + M + "+|((?:^|[^\\\\])(?:\\\\.)*)" + M + "+$", "g"), - _ = new RegExp("^" + M + "*," + M + "*"), - z = new RegExp("^" + M + "*([>+~]|" + M + ")" + M + "*"), - U = new RegExp(M + "|>"), - X = new RegExp(F), - V = new RegExp("^" + I + "$"), - G = { - ID: new RegExp("^#(" + I + ")"), - CLASS: new RegExp("^\\.(" + I + ")"), - TAG: new RegExp("^(" + I + "|[*])"), - ATTR: new RegExp("^" + W), - PSEUDO: new RegExp("^" + F), - CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + M + "*(even|odd|(([+-]|)(\\d*)n|)" + M + "*(?:([+-]|)" + M + "*(\\d+)|))" + M + "*\\)|)", "i"), - bool: new RegExp("^(?:" + R + ")$", "i"), - needsContext: new RegExp("^" + M + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + M + "*((?:-\\d)?\\d*)" + M + "*\\)|)(?=[^-]|$)", "i") - }, - Y = /HTML$/i, - Q = /^(?:input|select|textarea|button)$/i, - J = /^h\d$/i, - K = /^[^{]+\{\s*\[native \w/, - Z = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - ee = /[+~]/, - te = new RegExp("\\\\[\\da-fA-F]{1,6}" + M + "?|\\\\([^\\r\\n\\f])", "g"), - ne = function (e, t) { - var n = "0x" + e.slice(1) - 65536; - return t || (n < 0 ? String.fromCharCode(n + 65536) : String.fromCharCode(n >> 10 | 55296, 1023 & n | 56320)) - }, - re = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - ie = function (e, t) { - return t ? "\0" === e ? "\ufffd" : e.slice(0, -1) + "\\" + e.charCodeAt(e.length - 1).toString(16) + " " : "\\" + e - }, - oe = function () { - T() - }, - ae = be(function (e) { - return !0 === e.disabled && "fieldset" === e.nodeName.toLowerCase() - }, { - dir: "parentNode", - next: "legend" - }); - try { - H.apply(t = O.call(p.childNodes), p.childNodes), t[p.childNodes.length].nodeType - } catch (e) { - H = { - apply: t.length ? function (e, t) { - L.apply(e, O.call(t)) - } : function (e, t) { - var n = e.length, - r = 0; - while (e[n++] = t[r++]); - e.length = n - 1 - } - } - } - - function se(t, e, n, r) { - var i, o, a, s, u, l, c, f = e && e.ownerDocument, - p = e ? e.nodeType : 9; - if (n = n || [], "string" != typeof t || !t || 1 !== p && 9 !== p && 11 !== p) return n; - if (!r && (T(e), e = e || C, E)) { - if (11 !== p && (u = Z.exec(t))) - if (i = u[1]) { - if (9 === p) { - if (!(a = e.getElementById(i))) return n; - if (a.id === i) return n.push(a), n - } else if (f && (a = f.getElementById(i)) && y(e, a) && a.id === i) return n.push(a), n - } else { - if (u[2]) return H.apply(n, e.getElementsByTagName(t)), n; - if ((i = u[3]) && d.getElementsByClassName && e.getElementsByClassName) return H.apply(n, e.getElementsByClassName(i)), n - } if (d.qsa && !N[t + " "] && (!v || !v.test(t)) && (1 !== p || "object" !== e.nodeName.toLowerCase())) { - if (c = t, f = e, 1 === p && (U.test(t) || z.test(t))) { - (f = ee.test(t) && ye(e.parentNode) || e) === e && d.scope || ((s = e.getAttribute("id")) ? s = s.replace(re, ie) : e.setAttribute("id", s = S)), o = (l = h(t)).length; - while (o--) l[o] = (s ? "#" + s : ":scope") + " " + xe(l[o]); - c = l.join(",") - } - try { - return H.apply(n, f.querySelectorAll(c)), n - } catch (e) { - N(t, !0) - } finally { - s === S && e.removeAttribute("id") - } - } - } - return g(t.replace($, "$1"), e, n, r) - } - - function ue() { - var r = []; - return function e(t, n) { - return r.push(t + " ") > b.cacheLength && delete e[r.shift()], e[t + " "] = n - } - } - - function le(e) { - return e[S] = !0, e - } - - function ce(e) { - var t = C.createElement("fieldset"); - try { - return !!e(t) - } catch (e) { - return !1 - } finally { - t.parentNode && t.parentNode.removeChild(t), t = null - } - } - - function fe(e, t) { - var n = e.split("|"), - r = n.length; - while (r--) b.attrHandle[n[r]] = t - } - - function pe(e, t) { - var n = t && e, - r = n && 1 === e.nodeType && 1 === t.nodeType && e.sourceIndex - t.sourceIndex; - if (r) return r; - if (n) - while (n = n.nextSibling) - if (n === t) return -1; - return e ? 1 : -1 - } - - function de(t) { - return function (e) { - return "input" === e.nodeName.toLowerCase() && e.type === t - } - } - - function he(n) { - return function (e) { - var t = e.nodeName.toLowerCase(); - return ("input" === t || "button" === t) && e.type === n - } - } - - function ge(t) { - return function (e) { - return "form" in e ? e.parentNode && !1 === e.disabled ? "label" in e ? "label" in e.parentNode ? e.parentNode.disabled === t : e.disabled === t : e.isDisabled === t || e.isDisabled !== !t && ae(e) === t : e.disabled === t : "label" in e && e.disabled === t - } - } - - function ve(a) { - return le(function (o) { - return o = +o, le(function (e, t) { - var n, r = a([], e.length, o), - i = r.length; - while (i--) e[n = r[i]] && (e[n] = !(t[n] = e[n])) - }) - }) - } - - function ye(e) { - return e && "undefined" != typeof e.getElementsByTagName && e - } - for (e in d = se.support = {}, i = se.isXML = function (e) { - var t = e.namespaceURI, - n = (e.ownerDocument || e).documentElement; - return !Y.test(t || n && n.nodeName || "HTML") - }, T = se.setDocument = function (e) { - var t, n, r = e ? e.ownerDocument || e : p; - return r != C && 9 === r.nodeType && r.documentElement && (a = (C = r).documentElement, E = !i(C), p != C && (n = C.defaultView) && n.top !== n && (n.addEventListener ? n.addEventListener("unload", oe, !1) : n.attachEvent && n.attachEvent("onunload", oe)), d.scope = ce(function (e) { - return a.appendChild(e).appendChild(C.createElement("div")), "undefined" != typeof e.querySelectorAll && !e.querySelectorAll(":scope fieldset div").length - }), d.attributes = ce(function (e) { - return e.className = "i", !e.getAttribute("className") - }), d.getElementsByTagName = ce(function (e) { - return e.appendChild(C.createComment("")), !e.getElementsByTagName("*").length - }), d.getElementsByClassName = K.test(C.getElementsByClassName), d.getById = ce(function (e) { - return a.appendChild(e).id = S, !C.getElementsByName || !C.getElementsByName(S).length - }), d.getById ? (b.filter.ID = function (e) { - var t = e.replace(te, ne); - return function (e) { - return e.getAttribute("id") === t - } - }, b.find.ID = function (e, t) { - if ("undefined" != typeof t.getElementById && E) { - var n = t.getElementById(e); - return n ? [n] : [] - } - }) : (b.filter.ID = function (e) { - var n = e.replace(te, ne); - return function (e) { - var t = "undefined" != typeof e.getAttributeNode && e.getAttributeNode("id"); - return t && t.value === n - } - }, b.find.ID = function (e, t) { - if ("undefined" != typeof t.getElementById && E) { - var n, r, i, o = t.getElementById(e); - if (o) { - if ((n = o.getAttributeNode("id")) && n.value === e) return [o]; - i = t.getElementsByName(e), r = 0; - while (o = i[r++]) - if ((n = o.getAttributeNode("id")) && n.value === e) return [o] - } - return [] - } - }), b.find.TAG = d.getElementsByTagName ? function (e, t) { - return "undefined" != typeof t.getElementsByTagName ? t.getElementsByTagName(e) : d.qsa ? t.querySelectorAll(e) : void 0 - } : function (e, t) { - var n, r = [], - i = 0, - o = t.getElementsByTagName(e); - if ("*" === e) { - while (n = o[i++]) 1 === n.nodeType && r.push(n); - return r - } - return o - }, b.find.CLASS = d.getElementsByClassName && function (e, t) { - if ("undefined" != typeof t.getElementsByClassName && E) return t.getElementsByClassName(e) - }, s = [], v = [], (d.qsa = K.test(C.querySelectorAll)) && (ce(function (e) { - var t; - a.appendChild(e).innerHTML = "", e.querySelectorAll("[msallowcapture^='']").length && v.push("[*^$]=" + M + "*(?:''|\"\")"), e.querySelectorAll("[selected]").length || v.push("\\[" + M + "*(?:value|" + R + ")"), e.querySelectorAll("[id~=" + S + "-]").length || v.push("~="), (t = C.createElement("input")).setAttribute("name", ""), e.appendChild(t), e.querySelectorAll("[name='']").length || v.push("\\[" + M + "*name" + M + "*=" + M + "*(?:''|\"\")"), e.querySelectorAll(":checked").length || v.push(":checked"), e.querySelectorAll("a#" + S + "+*").length || v.push(".#.+[+~]"), e.querySelectorAll("\\\f"), v.push("[\\r\\n\\f]") - }), ce(function (e) { - e.innerHTML = ""; - var t = C.createElement("input"); - t.setAttribute("type", "hidden"), e.appendChild(t).setAttribute("name", "D"), e.querySelectorAll("[name=d]").length && v.push("name" + M + "*[*^$|!~]?="), 2 !== e.querySelectorAll(":enabled").length && v.push(":enabled", ":disabled"), a.appendChild(e).disabled = !0, 2 !== e.querySelectorAll(":disabled").length && v.push(":enabled", ":disabled"), e.querySelectorAll("*,:x"), v.push(",.*:") - })), (d.matchesSelector = K.test(c = a.matches || a.webkitMatchesSelector || a.mozMatchesSelector || a.oMatchesSelector || a.msMatchesSelector)) && ce(function (e) { - d.disconnectedMatch = c.call(e, "*"), c.call(e, "[s!='']:x"), s.push("!=", F) - }), v = v.length && new RegExp(v.join("|")), s = s.length && new RegExp(s.join("|")), t = K.test(a.compareDocumentPosition), y = t || K.test(a.contains) ? function (e, t) { - var n = 9 === e.nodeType ? e.documentElement : e, - r = t && t.parentNode; - return e === r || !(!r || 1 !== r.nodeType || !(n.contains ? n.contains(r) : e.compareDocumentPosition && 16 & e.compareDocumentPosition(r))) - } : function (e, t) { - if (t) - while (t = t.parentNode) - if (t === e) return !0; - return !1 - }, D = t ? function (e, t) { - if (e === t) return l = !0, 0; - var n = !e.compareDocumentPosition - !t.compareDocumentPosition; - return n || (1 & (n = (e.ownerDocument || e) == (t.ownerDocument || t) ? e.compareDocumentPosition(t) : 1) || !d.sortDetached && t.compareDocumentPosition(e) === n ? e == C || e.ownerDocument == p && y(p, e) ? -1 : t == C || t.ownerDocument == p && y(p, t) ? 1 : u ? P(u, e) - P(u, t) : 0 : 4 & n ? -1 : 1) - } : function (e, t) { - if (e === t) return l = !0, 0; - var n, r = 0, - i = e.parentNode, - o = t.parentNode, - a = [e], - s = [t]; - if (!i || !o) return e == C ? -1 : t == C ? 1 : i ? -1 : o ? 1 : u ? P(u, e) - P(u, t) : 0; - if (i === o) return pe(e, t); - n = e; - while (n = n.parentNode) a.unshift(n); - n = t; - while (n = n.parentNode) s.unshift(n); - while (a[r] === s[r]) r++; - return r ? pe(a[r], s[r]) : a[r] == p ? -1 : s[r] == p ? 1 : 0 - }), C - }, se.matches = function (e, t) { - return se(e, null, null, t) - }, se.matchesSelector = function (e, t) { - if (T(e), d.matchesSelector && E && !N[t + " "] && (!s || !s.test(t)) && (!v || !v.test(t))) try { - var n = c.call(e, t); - if (n || d.disconnectedMatch || e.document && 11 !== e.document.nodeType) return n - } catch (e) { - N(t, !0) - } - return 0 < se(t, C, null, [e]).length - }, se.contains = function (e, t) { - return (e.ownerDocument || e) != C && T(e), y(e, t) - }, se.attr = function (e, t) { - (e.ownerDocument || e) != C && T(e); - var n = b.attrHandle[t.toLowerCase()], - r = n && j.call(b.attrHandle, t.toLowerCase()) ? n(e, t, !E) : void 0; - return void 0 !== r ? r : d.attributes || !E ? e.getAttribute(t) : (r = e.getAttributeNode(t)) && r.specified ? r.value : null - }, se.escape = function (e) { - return (e + "").replace(re, ie) - }, se.error = function (e) { - throw new Error("Syntax error, unrecognized expression: " + e) - }, se.uniqueSort = function (e) { - var t, n = [], - r = 0, - i = 0; - if (l = !d.detectDuplicates, u = !d.sortStable && e.slice(0), e.sort(D), l) { - while (t = e[i++]) t === e[i] && (r = n.push(i)); - while (r--) e.splice(n[r], 1) - } - return u = null, e - }, o = se.getText = function (e) { - var t, n = "", - r = 0, - i = e.nodeType; - if (i) { - if (1 === i || 9 === i || 11 === i) { - if ("string" == typeof e.textContent) return e.textContent; - for (e = e.firstChild; e; e = e.nextSibling) n += o(e) - } else if (3 === i || 4 === i) return e.nodeValue - } else - while (t = e[r++]) n += o(t); - return n - }, (b = se.selectors = { - cacheLength: 50, - createPseudo: le, - match: G, - attrHandle: {}, - find: {}, - relative: { - ">": { - dir: "parentNode", - first: !0 - }, - " ": { - dir: "parentNode" - }, - "+": { - dir: "previousSibling", - first: !0 - }, - "~": { - dir: "previousSibling" - } - }, - preFilter: { - ATTR: function (e) { - return e[1] = e[1].replace(te, ne), e[3] = (e[3] || e[4] || e[5] || "").replace(te, ne), "~=" === e[2] && (e[3] = " " + e[3] + " "), e.slice(0, 4) - }, - CHILD: function (e) { - return e[1] = e[1].toLowerCase(), "nth" === e[1].slice(0, 3) ? (e[3] || se.error(e[0]), e[4] = +(e[4] ? e[5] + (e[6] || 1) : 2 * ("even" === e[3] || "odd" === e[3])), e[5] = +(e[7] + e[8] || "odd" === e[3])) : e[3] && se.error(e[0]), e - }, - PSEUDO: function (e) { - var t, n = !e[6] && e[2]; - return G.CHILD.test(e[0]) ? null : (e[3] ? e[2] = e[4] || e[5] || "" : n && X.test(n) && (t = h(n, !0)) && (t = n.indexOf(")", n.length - t) - n.length) && (e[0] = e[0].slice(0, t), e[2] = n.slice(0, t)), e.slice(0, 3)) - } - }, - filter: { - TAG: function (e) { - var t = e.replace(te, ne).toLowerCase(); - return "*" === e ? function () { - return !0 - } : function (e) { - return e.nodeName && e.nodeName.toLowerCase() === t - } - }, - CLASS: function (e) { - var t = m[e + " "]; - return t || (t = new RegExp("(^|" + M + ")" + e + "(" + M + "|$)")) && m(e, function (e) { - return t.test("string" == typeof e.className && e.className || "undefined" != typeof e.getAttribute && e.getAttribute("class") || "") - }) - }, - ATTR: function (n, r, i) { - return function (e) { - var t = se.attr(e, n); - return null == t ? "!=" === r : !r || (t += "", "=" === r ? t === i : "!=" === r ? t !== i : "^=" === r ? i && 0 === t.indexOf(i) : "*=" === r ? i && -1 < t.indexOf(i) : "$=" === r ? i && t.slice(-i.length) === i : "~=" === r ? -1 < (" " + t.replace(B, " ") + " ").indexOf(i) : "|=" === r && (t === i || t.slice(0, i.length + 1) === i + "-")) - } - }, - CHILD: function (h, e, t, g, v) { - var y = "nth" !== h.slice(0, 3), - m = "last" !== h.slice(-4), - x = "of-type" === e; - return 1 === g && 0 === v ? function (e) { - return !!e.parentNode - } : function (e, t, n) { - var r, i, o, a, s, u, l = y !== m ? "nextSibling" : "previousSibling", - c = e.parentNode, - f = x && e.nodeName.toLowerCase(), - p = !n && !x, - d = !1; - if (c) { - if (y) { - while (l) { - a = e; - while (a = a[l]) - if (x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) return !1; - u = l = "only" === h && !u && "nextSibling" - } - return !0 - } - if (u = [m ? c.firstChild : c.lastChild], m && p) { - d = (s = (r = (i = (o = (a = c)[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]) && r[2], a = s && c.childNodes[s]; - while (a = ++s && a && a[l] || (d = s = 0) || u.pop()) - if (1 === a.nodeType && ++d && a === e) { - i[h] = [k, s, d]; - break - } - } else if (p && (d = s = (r = (i = (o = (a = e)[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]), !1 === d) - while (a = ++s && a && a[l] || (d = s = 0) || u.pop()) - if ((x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) && ++d && (p && ((i = (o = a[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] = [k, d]), a === e)) break; - return (d -= v) === g || d % g == 0 && 0 <= d / g - } - } - }, - PSEUDO: function (e, o) { - var t, a = b.pseudos[e] || b.setFilters[e.toLowerCase()] || se.error("unsupported pseudo: " + e); - return a[S] ? a(o) : 1 < a.length ? (t = [e, e, "", o], b.setFilters.hasOwnProperty(e.toLowerCase()) ? le(function (e, t) { - var n, r = a(e, o), - i = r.length; - while (i--) e[n = P(e, r[i])] = !(t[n] = r[i]) - }) : function (e) { - return a(e, 0, t) - }) : a - } - }, - pseudos: { - not: le(function (e) { - var r = [], - i = [], - s = f(e.replace($, "$1")); - return s[S] ? le(function (e, t, n, r) { - var i, o = s(e, null, r, []), - a = e.length; - while (a--)(i = o[a]) && (e[a] = !(t[a] = i)) - }) : function (e, t, n) { - return r[0] = e, s(r, null, n, i), r[0] = null, !i.pop() - } - }), - has: le(function (t) { - return function (e) { - return 0 < se(t, e).length - } - }), - contains: le(function (t) { - return t = t.replace(te, ne), - function (e) { - return -1 < (e.textContent || o(e)).indexOf(t) - } - }), - lang: le(function (n) { - return V.test(n || "") || se.error("unsupported lang: " + n), n = n.replace(te, ne).toLowerCase(), - function (e) { - var t; - do { - if (t = E ? e.lang : e.getAttribute("xml:lang") || e.getAttribute("lang")) return (t = t.toLowerCase()) === n || 0 === t.indexOf(n + "-") - } while ((e = e.parentNode) && 1 === e.nodeType); - return !1 - } - }), - target: function (e) { - var t = n.location && n.location.hash; - return t && t.slice(1) === e.id - }, - root: function (e) { - return e === a - }, - focus: function (e) { - return e === C.activeElement && (!C.hasFocus || C.hasFocus()) && !!(e.type || e.href || ~e.tabIndex) - }, - enabled: ge(!1), - disabled: ge(!0), - checked: function (e) { - var t = e.nodeName.toLowerCase(); - return "input" === t && !!e.checked || "option" === t && !!e.selected - }, - selected: function (e) { - return e.parentNode && e.parentNode.selectedIndex, !0 === e.selected - }, - empty: function (e) { - for (e = e.firstChild; e; e = e.nextSibling) - if (e.nodeType < 6) return !1; - return !0 - }, - parent: function (e) { - return !b.pseudos.empty(e) - }, - header: function (e) { - return J.test(e.nodeName) - }, - input: function (e) { - return Q.test(e.nodeName) - }, - button: function (e) { - var t = e.nodeName.toLowerCase(); - return "input" === t && "button" === e.type || "button" === t - }, - text: function (e) { - var t; - return "input" === e.nodeName.toLowerCase() && "text" === e.type && (null == (t = e.getAttribute("type")) || "text" === t.toLowerCase()) - }, - first: ve(function () { - return [0] - }), - last: ve(function (e, t) { - return [t - 1] - }), - eq: ve(function (e, t, n) { - return [n < 0 ? n + t : n] - }), - even: ve(function (e, t) { - for (var n = 0; n < t; n += 2) e.push(n); - return e - }), - odd: ve(function (e, t) { - for (var n = 1; n < t; n += 2) e.push(n); - return e - }), - lt: ve(function (e, t, n) { - for (var r = n < 0 ? n + t : t < n ? t : n; 0 <= --r;) e.push(r); - return e - }), - gt: ve(function (e, t, n) { - for (var r = n < 0 ? n + t : n; ++r < t;) e.push(r); - return e - }) - } - }).pseudos.nth = b.pseudos.eq, { - radio: !0, - checkbox: !0, - file: !0, - password: !0, - image: !0 - }) b.pseudos[e] = de(e); - for (e in { - submit: !0, - reset: !0 - }) b.pseudos[e] = he(e); - - function me() {} - - function xe(e) { - for (var t = 0, n = e.length, r = ""; t < n; t++) r += e[t].value; - return r - } - - function be(s, e, t) { - var u = e.dir, - l = e.next, - c = l || u, - f = t && "parentNode" === c, - p = r++; - return e.first ? function (e, t, n) { - while (e = e[u]) - if (1 === e.nodeType || f) return s(e, t, n); - return !1 - } : function (e, t, n) { - var r, i, o, a = [k, p]; - if (n) { - while (e = e[u]) - if ((1 === e.nodeType || f) && s(e, t, n)) return !0 - } else - while (e = e[u]) - if (1 === e.nodeType || f) - if (i = (o = e[S] || (e[S] = {}))[e.uniqueID] || (o[e.uniqueID] = {}), l && l === e.nodeName.toLowerCase()) e = e[u] || e; - else { - if ((r = i[c]) && r[0] === k && r[1] === p) return a[2] = r[2]; - if ((i[c] = a)[2] = s(e, t, n)) return !0 - } return !1 - } - } - - function we(i) { - return 1 < i.length ? function (e, t, n) { - var r = i.length; - while (r--) - if (!i[r](e, t, n)) return !1; - return !0 - } : i[0] - } - - function Te(e, t, n, r, i) { - for (var o, a = [], s = 0, u = e.length, l = null != t; s < u; s++)(o = e[s]) && (n && !n(o, r, i) || (a.push(o), l && t.push(s))); - return a - } - - function Ce(d, h, g, v, y, e) { - return v && !v[S] && (v = Ce(v)), y && !y[S] && (y = Ce(y, e)), le(function (e, t, n, r) { - var i, o, a, s = [], - u = [], - l = t.length, - c = e || function (e, t, n) { - for (var r = 0, i = t.length; r < i; r++) se(e, t[r], n); - return n - }(h || "*", n.nodeType ? [n] : n, []), - f = !d || !e && h ? c : Te(c, s, d, n, r), - p = g ? y || (e ? d : l || v) ? [] : t : f; - if (g && g(f, p, n, r), v) { - i = Te(p, u), v(i, [], n, r), o = i.length; - while (o--)(a = i[o]) && (p[u[o]] = !(f[u[o]] = a)) - } - if (e) { - if (y || d) { - if (y) { - i = [], o = p.length; - while (o--)(a = p[o]) && i.push(f[o] = a); - y(null, p = [], i, r) - } - o = p.length; - while (o--)(a = p[o]) && -1 < (i = y ? P(e, a) : s[o]) && (e[i] = !(t[i] = a)) - } - } else p = Te(p === t ? p.splice(l, p.length) : p), y ? y(null, t, p, r) : H.apply(t, p) - }) - } - - function Ee(e) { - for (var i, t, n, r = e.length, o = b.relative[e[0].type], a = o || b.relative[" "], s = o ? 1 : 0, u = be(function (e) { - return e === i - }, a, !0), l = be(function (e) { - return -1 < P(i, e) - }, a, !0), c = [function (e, t, n) { - var r = !o && (n || t !== w) || ((i = t).nodeType ? u(e, t, n) : l(e, t, n)); - return i = null, r - }]; s < r; s++) - if (t = b.relative[e[s].type]) c = [be(we(c), t)]; - else { - if ((t = b.filter[e[s].type].apply(null, e[s].matches))[S]) { - for (n = ++s; n < r; n++) - if (b.relative[e[n].type]) break; - return Ce(1 < s && we(c), 1 < s && xe(e.slice(0, s - 1).concat({ - value: " " === e[s - 2].type ? "*" : "" - })).replace($, "$1"), t, s < n && Ee(e.slice(s, n)), n < r && Ee(e = e.slice(n)), n < r && xe(e)) - } - c.push(t) - } return we(c) - } - return me.prototype = b.filters = b.pseudos, b.setFilters = new me, h = se.tokenize = function (e, t) { - var n, r, i, o, a, s, u, l = x[e + " "]; - if (l) return t ? 0 : l.slice(0); - a = e, s = [], u = b.preFilter; - while (a) { - for (o in n && !(r = _.exec(a)) || (r && (a = a.slice(r[0].length) || a), s.push(i = [])), n = !1, (r = z.exec(a)) && (n = r.shift(), i.push({ - value: n, - type: r[0].replace($, " ") - }), a = a.slice(n.length)), b.filter) !(r = G[o].exec(a)) || u[o] && !(r = u[o](r)) || (n = r.shift(), i.push({ - value: n, - type: o, - matches: r - }), a = a.slice(n.length)); - if (!n) break - } - return t ? a.length : a ? se.error(e) : x(e, s).slice(0) - }, f = se.compile = function (e, t) { - var n, v, y, m, x, r, i = [], - o = [], - a = A[e + " "]; - if (!a) { - t || (t = h(e)), n = t.length; - while (n--)(a = Ee(t[n]))[S] ? i.push(a) : o.push(a); - (a = A(e, (v = o, m = 0 < (y = i).length, x = 0 < v.length, r = function (e, t, n, r, i) { - var o, a, s, u = 0, - l = "0", - c = e && [], - f = [], - p = w, - d = e || x && b.find.TAG("*", i), - h = k += null == p ? 1 : Math.random() || .1, - g = d.length; - for (i && (w = t == C || t || i); l !== g && null != (o = d[l]); l++) { - if (x && o) { - a = 0, t || o.ownerDocument == C || (T(o), n = !E); - while (s = v[a++]) - if (s(o, t || C, n)) { - r.push(o); - break - } i && (k = h) - } - m && ((o = !s && o) && u--, e && c.push(o)) - } - if (u += l, m && l !== u) { - a = 0; - while (s = y[a++]) s(c, f, t, n); - if (e) { - if (0 < u) - while (l--) c[l] || f[l] || (f[l] = q.call(r)); - f = Te(f) - } - H.apply(r, f), i && !e && 0 < f.length && 1 < u + y.length && se.uniqueSort(r) - } - return i && (k = h, w = p), c - }, m ? le(r) : r))).selector = e - } - return a - }, g = se.select = function (e, t, n, r) { - var i, o, a, s, u, l = "function" == typeof e && e, - c = !r && h(e = l.selector || e); - if (n = n || [], 1 === c.length) { - if (2 < (o = c[0] = c[0].slice(0)).length && "ID" === (a = o[0]).type && 9 === t.nodeType && E && b.relative[o[1].type]) { - if (!(t = (b.find.ID(a.matches[0].replace(te, ne), t) || [])[0])) return n; - l && (t = t.parentNode), e = e.slice(o.shift().value.length) - } - i = G.needsContext.test(e) ? 0 : o.length; - while (i--) { - if (a = o[i], b.relative[s = a.type]) break; - if ((u = b.find[s]) && (r = u(a.matches[0].replace(te, ne), ee.test(o[0].type) && ye(t.parentNode) || t))) { - if (o.splice(i, 1), !(e = r.length && xe(o))) return H.apply(n, r), n; - break - } - } - } - return (l || f(e, c))(r, t, !E, n, !t || ee.test(e) && ye(t.parentNode) || t), n - }, d.sortStable = S.split("").sort(D).join("") === S, d.detectDuplicates = !!l, T(), d.sortDetached = ce(function (e) { - return 1 & e.compareDocumentPosition(C.createElement("fieldset")) - }), ce(function (e) { - return e.innerHTML = "", "#" === e.firstChild.getAttribute("href") - }) || fe("type|href|height|width", function (e, t, n) { - if (!n) return e.getAttribute(t, "type" === t.toLowerCase() ? 1 : 2) - }), d.attributes && ce(function (e) { - return e.innerHTML = "", e.firstChild.setAttribute("value", ""), "" === e.firstChild.getAttribute("value") - }) || fe("value", function (e, t, n) { - if (!n && "input" === e.nodeName.toLowerCase()) return e.defaultValue - }), ce(function (e) { - return null == e.getAttribute("disabled") - }) || fe(R, function (e, t, n) { - var r; - if (!n) return !0 === e[t] ? t.toLowerCase() : (r = e.getAttributeNode(t)) && r.specified ? r.value : null - }), se - }(C); - S.find = d, S.expr = d.selectors, S.expr[":"] = S.expr.pseudos, S.uniqueSort = S.unique = d.uniqueSort, S.text = d.getText, S.isXMLDoc = d.isXML, S.contains = d.contains, S.escapeSelector = d.escape; - var h = function (e, t, n) { - var r = [], - i = void 0 !== n; - while ((e = e[t]) && 9 !== e.nodeType) - if (1 === e.nodeType) { - if (i && S(e).is(n)) break; - r.push(e) - } return r - }, - T = function (e, t) { - for (var n = []; e; e = e.nextSibling) 1 === e.nodeType && e !== t && n.push(e); - return n - }, - k = S.expr.match.needsContext; - - function A(e, t) { - return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase() - } - var N = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i; - - function D(e, n, r) { - return m(n) ? S.grep(e, function (e, t) { - return !!n.call(e, t, e) !== r - }) : n.nodeType ? S.grep(e, function (e) { - return e === n !== r - }) : "string" != typeof n ? S.grep(e, function (e) { - return -1 < i.call(n, e) !== r - }) : S.filter(n, e, r) - } - S.filter = function (e, t, n) { - var r = t[0]; - return n && (e = ":not(" + e + ")"), 1 === t.length && 1 === r.nodeType ? S.find.matchesSelector(r, e) ? [r] : [] : S.find.matches(e, S.grep(t, function (e) { - return 1 === e.nodeType - })) - }, S.fn.extend({ - find: function (e) { - var t, n, r = this.length, - i = this; - if ("string" != typeof e) return this.pushStack(S(e).filter(function () { - for (t = 0; t < r; t++) - if (S.contains(i[t], this)) return !0 - })); - for (n = this.pushStack([]), t = 0; t < r; t++) S.find(e, i[t], n); - return 1 < r ? S.uniqueSort(n) : n - }, - filter: function (e) { - return this.pushStack(D(this, e || [], !1)) - }, - not: function (e) { - return this.pushStack(D(this, e || [], !0)) - }, - is: function (e) { - return !!D(this, "string" == typeof e && k.test(e) ? S(e) : e || [], !1).length - } - }); - var j, q = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/; - (S.fn.init = function (e, t, n) { - var r, i; - if (!e) return this; - if (n = n || j, "string" == typeof e) { - if (!(r = "<" === e[0] && ">" === e[e.length - 1] && 3 <= e.length ? [null, e, null] : q.exec(e)) || !r[1] && t) return !t || t.jquery ? (t || n).find(e) : this.constructor(t).find(e); - if (r[1]) { - if (t = t instanceof S ? t[0] : t, S.merge(this, S.parseHTML(r[1], t && t.nodeType ? t.ownerDocument || t : E, !0)), N.test(r[1]) && S.isPlainObject(t)) - for (r in t) m(this[r]) ? this[r](t[r]) : this.attr(r, t[r]); - return this - } - return (i = E.getElementById(r[2])) && (this[0] = i, this.length = 1), this - } - return e.nodeType ? (this[0] = e, this.length = 1, this) : m(e) ? void 0 !== n.ready ? n.ready(e) : e(S) : S.makeArray(e, this) - }).prototype = S.fn, j = S(E); - var L = /^(?:parents|prev(?:Until|All))/, - H = { - children: !0, - contents: !0, - next: !0, - prev: !0 - }; - - function O(e, t) { - while ((e = e[t]) && 1 !== e.nodeType); - return e - } - S.fn.extend({ - has: function (e) { - var t = S(e, this), - n = t.length; - return this.filter(function () { - for (var e = 0; e < n; e++) - if (S.contains(this, t[e])) return !0 - }) - }, - closest: function (e, t) { - var n, r = 0, - i = this.length, - o = [], - a = "string" != typeof e && S(e); - if (!k.test(e)) - for (; r < i; r++) - for (n = this[r]; n && n !== t; n = n.parentNode) - if (n.nodeType < 11 && (a ? -1 < a.index(n) : 1 === n.nodeType && S.find.matchesSelector(n, e))) { - o.push(n); - break - } return this.pushStack(1 < o.length ? S.uniqueSort(o) : o) - }, - index: function (e) { - return e ? "string" == typeof e ? i.call(S(e), this[0]) : i.call(this, e.jquery ? e[0] : e) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1 - }, - add: function (e, t) { - return this.pushStack(S.uniqueSort(S.merge(this.get(), S(e, t)))) - }, - addBack: function (e) { - return this.add(null == e ? this.prevObject : this.prevObject.filter(e)) - } - }), S.each({ - parent: function (e) { - var t = e.parentNode; - return t && 11 !== t.nodeType ? t : null - }, - parents: function (e) { - return h(e, "parentNode") - }, - parentsUntil: function (e, t, n) { - return h(e, "parentNode", n) - }, - next: function (e) { - return O(e, "nextSibling") - }, - prev: function (e) { - return O(e, "previousSibling") - }, - nextAll: function (e) { - return h(e, "nextSibling") - }, - prevAll: function (e) { - return h(e, "previousSibling") - }, - nextUntil: function (e, t, n) { - return h(e, "nextSibling", n) - }, - prevUntil: function (e, t, n) { - return h(e, "previousSibling", n) - }, - siblings: function (e) { - return T((e.parentNode || {}).firstChild, e) - }, - children: function (e) { - return T(e.firstChild) - }, - contents: function (e) { - return null != e.contentDocument && r(e.contentDocument) ? e.contentDocument : (A(e, "template") && (e = e.content || e), S.merge([], e.childNodes)) - } - }, function (r, i) { - S.fn[r] = function (e, t) { - var n = S.map(this, i, e); - return "Until" !== r.slice(-5) && (t = e), t && "string" == typeof t && (n = S.filter(t, n)), 1 < this.length && (H[r] || S.uniqueSort(n), L.test(r) && n.reverse()), this.pushStack(n) - } - }); - var P = /[^\x20\t\r\n\f]+/g; - - function R(e) { - return e - } - - function M(e) { - throw e - } - - function I(e, t, n, r) { - var i; - try { - e && m(i = e.promise) ? i.call(e).done(t).fail(n) : e && m(i = e.then) ? i.call(e, t, n) : t.apply(void 0, [e].slice(r)) - } catch (e) { - n.apply(void 0, [e]) - } - } - S.Callbacks = function (r) { - var e, n; - r = "string" == typeof r ? (e = r, n = {}, S.each(e.match(P) || [], function (e, t) { - n[t] = !0 - }), n) : S.extend({}, r); - var i, t, o, a, s = [], - u = [], - l = -1, - c = function () { - for (a = a || r.once, o = i = !0; u.length; l = -1) { - t = u.shift(); - while (++l < s.length) !1 === s[l].apply(t[0], t[1]) && r.stopOnFalse && (l = s.length, t = !1) - } - r.memory || (t = !1), i = !1, a && (s = t ? [] : "") - }, - f = { - add: function () { - return s && (t && !i && (l = s.length - 1, u.push(t)), function n(e) { - S.each(e, function (e, t) { - m(t) ? r.unique && f.has(t) || s.push(t) : t && t.length && "string" !== w(t) && n(t) - }) - }(arguments), t && !i && c()), this - }, - remove: function () { - return S.each(arguments, function (e, t) { - var n; - while (-1 < (n = S.inArray(t, s, n))) s.splice(n, 1), n <= l && l-- - }), this - }, - has: function (e) { - return e ? -1 < S.inArray(e, s) : 0 < s.length - }, - empty: function () { - return s && (s = []), this - }, - disable: function () { - return a = u = [], s = t = "", this - }, - disabled: function () { - return !s - }, - lock: function () { - return a = u = [], t || i || (s = t = ""), this - }, - locked: function () { - return !!a - }, - fireWith: function (e, t) { - return a || (t = [e, (t = t || []).slice ? t.slice() : t], u.push(t), i || c()), this - }, - fire: function () { - return f.fireWith(this, arguments), this - }, - fired: function () { - return !!o - } - }; - return f - }, S.extend({ - Deferred: function (e) { - var o = [ - ["notify", "progress", S.Callbacks("memory"), S.Callbacks("memory"), 2], - ["resolve", "done", S.Callbacks("once memory"), S.Callbacks("once memory"), 0, "resolved"], - ["reject", "fail", S.Callbacks("once memory"), S.Callbacks("once memory"), 1, "rejected"] - ], - i = "pending", - a = { - state: function () { - return i - }, - always: function () { - return s.done(arguments).fail(arguments), this - }, - "catch": function (e) { - return a.then(null, e) - }, - pipe: function () { - var i = arguments; - return S.Deferred(function (r) { - S.each(o, function (e, t) { - var n = m(i[t[4]]) && i[t[4]]; - s[t[1]](function () { - var e = n && n.apply(this, arguments); - e && m(e.promise) ? e.promise().progress(r.notify).done(r.resolve).fail(r.reject) : r[t[0] + "With"](this, n ? [e] : arguments) - }) - }), i = null - }).promise() - }, - then: function (t, n, r) { - var u = 0; - - function l(i, o, a, s) { - return function () { - var n = this, - r = arguments, - e = function () { - var e, t; - if (!(i < u)) { - if ((e = a.apply(n, r)) === o.promise()) throw new TypeError("Thenable self-resolution"); - t = e && ("object" == typeof e || "function" == typeof e) && e.then, m(t) ? s ? t.call(e, l(u, o, R, s), l(u, o, M, s)) : (u++, t.call(e, l(u, o, R, s), l(u, o, M, s), l(u, o, R, o.notifyWith))) : (a !== R && (n = void 0, r = [e]), (s || o.resolveWith)(n, r)) - } - }, - t = s ? e : function () { - try { - e() - } catch (e) { - S.Deferred.exceptionHook && S.Deferred.exceptionHook(e, t.stackTrace), u <= i + 1 && (a !== M && (n = void 0, r = [e]), o.rejectWith(n, r)) - } - }; - i ? t() : (S.Deferred.getStackHook && (t.stackTrace = S.Deferred.getStackHook()), C.setTimeout(t)) - } - } - return S.Deferred(function (e) { - o[0][3].add(l(0, e, m(r) ? r : R, e.notifyWith)), o[1][3].add(l(0, e, m(t) ? t : R)), o[2][3].add(l(0, e, m(n) ? n : M)) - }).promise() - }, - promise: function (e) { - return null != e ? S.extend(e, a) : a - } - }, - s = {}; - return S.each(o, function (e, t) { - var n = t[2], - r = t[5]; - a[t[1]] = n.add, r && n.add(function () { - i = r - }, o[3 - e][2].disable, o[3 - e][3].disable, o[0][2].lock, o[0][3].lock), n.add(t[3].fire), s[t[0]] = function () { - return s[t[0] + "With"](this === s ? void 0 : this, arguments), this - }, s[t[0] + "With"] = n.fireWith - }), a.promise(s), e && e.call(s, s), s - }, - when: function (e) { - var n = arguments.length, - t = n, - r = Array(t), - i = s.call(arguments), - o = S.Deferred(), - a = function (t) { - return function (e) { - r[t] = this, i[t] = 1 < arguments.length ? s.call(arguments) : e, --n || o.resolveWith(r, i) - } - }; - if (n <= 1 && (I(e, o.done(a(t)).resolve, o.reject, !n), "pending" === o.state() || m(i[t] && i[t].then))) return o.then(); - while (t--) I(i[t], a(t), o.reject); - return o.promise() - } - }); - var W = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - S.Deferred.exceptionHook = function (e, t) { - C.console && C.console.warn && e && W.test(e.name) && C.console.warn("jQuery.Deferred exception: " + e.message, e.stack, t) - }, S.readyException = function (e) { - C.setTimeout(function () { - throw e - }) - }; - var F = S.Deferred(); - - function B() { - E.removeEventListener("DOMContentLoaded", B), C.removeEventListener("load", B), S.ready() - } - S.fn.ready = function (e) { - return F.then(e)["catch"](function (e) { - S.readyException(e) - }), this - }, S.extend({ - isReady: !1, - readyWait: 1, - ready: function (e) { - (!0 === e ? --S.readyWait : S.isReady) || (S.isReady = !0) !== e && 0 < --S.readyWait || F.resolveWith(E, [S]) - } - }), S.ready.then = F.then, "complete" === E.readyState || "loading" !== E.readyState && !E.documentElement.doScroll ? C.setTimeout(S.ready) : (E.addEventListener("DOMContentLoaded", B), C.addEventListener("load", B)); - var $ = function (e, t, n, r, i, o, a) { - var s = 0, - u = e.length, - l = null == n; - if ("object" === w(n)) - for (s in i = !0, n) $(e, t, s, n[s], !0, o, a); - else if (void 0 !== r && (i = !0, m(r) || (a = !0), l && (a ? (t.call(e, r), t = null) : (l = t, t = function (e, t, n) { - return l.call(S(e), n) - })), t)) - for (; s < u; s++) t(e[s], n, a ? r : r.call(e[s], s, t(e[s], n))); - return i ? e : l ? t.call(e) : u ? t(e[0], n) : o - }, - _ = /^-ms-/, - z = /-([a-z])/g; - - function U(e, t) { - return t.toUpperCase() - } - - function X(e) { - return e.replace(_, "ms-").replace(z, U) - } - var V = function (e) { - return 1 === e.nodeType || 9 === e.nodeType || !+e.nodeType - }; - - function G() { - this.expando = S.expando + G.uid++ - } - G.uid = 1, G.prototype = { - cache: function (e) { - var t = e[this.expando]; - return t || (t = {}, V(e) && (e.nodeType ? e[this.expando] = t : Object.defineProperty(e, this.expando, { - value: t, - configurable: !0 - }))), t - }, - set: function (e, t, n) { - var r, i = this.cache(e); - if ("string" == typeof t) i[X(t)] = n; - else - for (r in t) i[X(r)] = t[r]; - return i - }, - get: function (e, t) { - return void 0 === t ? this.cache(e) : e[this.expando] && e[this.expando][X(t)] - }, - access: function (e, t, n) { - return void 0 === t || t && "string" == typeof t && void 0 === n ? this.get(e, t) : (this.set(e, t, n), void 0 !== n ? n : t) - }, - remove: function (e, t) { - var n, r = e[this.expando]; - if (void 0 !== r) { - if (void 0 !== t) { - n = (t = Array.isArray(t) ? t.map(X) : (t = X(t)) in r ? [t] : t.match(P) || []).length; - while (n--) delete r[t[n]] - }(void 0 === t || S.isEmptyObject(r)) && (e.nodeType ? e[this.expando] = void 0 : delete e[this.expando]) - } - }, - hasData: function (e) { - var t = e[this.expando]; - return void 0 !== t && !S.isEmptyObject(t) - } - }; - var Y = new G, - Q = new G, - J = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - K = /[A-Z]/g; - - function Z(e, t, n) { - var r, i; - if (void 0 === n && 1 === e.nodeType) - if (r = "data-" + t.replace(K, "-$&").toLowerCase(), "string" == typeof (n = e.getAttribute(r))) { - try { - n = "true" === (i = n) || "false" !== i && ("null" === i ? null : i === +i + "" ? +i : J.test(i) ? JSON.parse(i) : i) - } catch (e) {} - Q.set(e, t, n) - } else n = void 0; - return n - } - S.extend({ - hasData: function (e) { - return Q.hasData(e) || Y.hasData(e) - }, - data: function (e, t, n) { - return Q.access(e, t, n) - }, - removeData: function (e, t) { - Q.remove(e, t) - }, - _data: function (e, t, n) { - return Y.access(e, t, n) - }, - _removeData: function (e, t) { - Y.remove(e, t) - } - }), S.fn.extend({ - data: function (n, e) { - var t, r, i, o = this[0], - a = o && o.attributes; - if (void 0 === n) { - if (this.length && (i = Q.get(o), 1 === o.nodeType && !Y.get(o, "hasDataAttrs"))) { - t = a.length; - while (t--) a[t] && 0 === (r = a[t].name).indexOf("data-") && (r = X(r.slice(5)), Z(o, r, i[r])); - Y.set(o, "hasDataAttrs", !0) - } - return i - } - return "object" == typeof n ? this.each(function () { - Q.set(this, n) - }) : $(this, function (e) { - var t; - if (o && void 0 === e) return void 0 !== (t = Q.get(o, n)) ? t : void 0 !== (t = Z(o, n)) ? t : void 0; - this.each(function () { - Q.set(this, n, e) - }) - }, null, e, 1 < arguments.length, null, !0) - }, - removeData: function (e) { - return this.each(function () { - Q.remove(this, e) - }) - } - }), S.extend({ - queue: function (e, t, n) { - var r; - if (e) return t = (t || "fx") + "queue", r = Y.get(e, t), n && (!r || Array.isArray(n) ? r = Y.access(e, t, S.makeArray(n)) : r.push(n)), r || [] - }, - dequeue: function (e, t) { - t = t || "fx"; - var n = S.queue(e, t), - r = n.length, - i = n.shift(), - o = S._queueHooks(e, t); - "inprogress" === i && (i = n.shift(), r--), i && ("fx" === t && n.unshift("inprogress"), delete o.stop, i.call(e, function () { - S.dequeue(e, t) - }, o)), !r && o && o.empty.fire() - }, - _queueHooks: function (e, t) { - var n = t + "queueHooks"; - return Y.get(e, n) || Y.access(e, n, { - empty: S.Callbacks("once memory").add(function () { - Y.remove(e, [t + "queue", n]) - }) - }) - } - }), S.fn.extend({ - queue: function (t, n) { - var e = 2; - return "string" != typeof t && (n = t, t = "fx", e--), arguments.length < e ? S.queue(this[0], t) : void 0 === n ? this : this.each(function () { - var e = S.queue(this, t, n); - S._queueHooks(this, t), "fx" === t && "inprogress" !== e[0] && S.dequeue(this, t) - }) - }, - dequeue: function (e) { - return this.each(function () { - S.dequeue(this, e) - }) - }, - clearQueue: function (e) { - return this.queue(e || "fx", []) - }, - promise: function (e, t) { - var n, r = 1, - i = S.Deferred(), - o = this, - a = this.length, - s = function () { - --r || i.resolveWith(o, [o]) - }; - "string" != typeof e && (t = e, e = void 0), e = e || "fx"; - while (a--)(n = Y.get(o[a], e + "queueHooks")) && n.empty && (r++, n.empty.add(s)); - return s(), i.promise(t) - } - }); - var ee = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, - te = new RegExp("^(?:([+-])=|)(" + ee + ")([a-z%]*)$", "i"), - ne = ["Top", "Right", "Bottom", "Left"], - re = E.documentElement, - ie = function (e) { - return S.contains(e.ownerDocument, e) - }, - oe = { - composed: !0 - }; - re.getRootNode && (ie = function (e) { - return S.contains(e.ownerDocument, e) || e.getRootNode(oe) === e.ownerDocument - }); - var ae = function (e, t) { - return "none" === (e = t || e).style.display || "" === e.style.display && ie(e) && "none" === S.css(e, "display") - }; - - function se(e, t, n, r) { - var i, o, a = 20, - s = r ? function () { - return r.cur() - } : function () { - return S.css(e, t, "") - }, - u = s(), - l = n && n[3] || (S.cssNumber[t] ? "" : "px"), - c = e.nodeType && (S.cssNumber[t] || "px" !== l && +u) && te.exec(S.css(e, t)); - if (c && c[3] !== l) { - u /= 2, l = l || c[3], c = +u || 1; - while (a--) S.style(e, t, c + l), (1 - o) * (1 - (o = s() / u || .5)) <= 0 && (a = 0), c /= o; - c *= 2, S.style(e, t, c + l), n = n || [] - } - return n && (c = +c || +u || 0, i = n[1] ? c + (n[1] + 1) * n[2] : +n[2], r && (r.unit = l, r.start = c, r.end = i)), i - } - var ue = {}; - - function le(e, t) { - for (var n, r, i, o, a, s, u, l = [], c = 0, f = e.length; c < f; c++)(r = e[c]).style && (n = r.style.display, t ? ("none" === n && (l[c] = Y.get(r, "display") || null, l[c] || (r.style.display = "")), "" === r.style.display && ae(r) && (l[c] = (u = a = o = void 0, a = (i = r).ownerDocument, s = i.nodeName, (u = ue[s]) || (o = a.body.appendChild(a.createElement(s)), u = S.css(o, "display"), o.parentNode.removeChild(o), "none" === u && (u = "block"), ue[s] = u)))) : "none" !== n && (l[c] = "none", Y.set(r, "display", n))); - for (c = 0; c < f; c++) null != l[c] && (e[c].style.display = l[c]); - return e - } - S.fn.extend({ - show: function () { - return le(this, !0) - }, - hide: function () { - return le(this) - }, - toggle: function (e) { - return "boolean" == typeof e ? e ? this.show() : this.hide() : this.each(function () { - ae(this) ? S(this).show() : S(this).hide() - }) - } - }); - var ce, fe, pe = /^(?:checkbox|radio)$/i, - de = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i, - he = /^$|^module$|\/(?:java|ecma)script/i; - ce = E.createDocumentFragment().appendChild(E.createElement("div")), (fe = E.createElement("input")).setAttribute("type", "radio"), fe.setAttribute("checked", "checked"), fe.setAttribute("name", "t"), ce.appendChild(fe), y.checkClone = ce.cloneNode(!0).cloneNode(!0).lastChild.checked, ce.innerHTML = "", y.noCloneChecked = !!ce.cloneNode(!0).lastChild.defaultValue, ce.innerHTML = "", y.option = !!ce.lastChild; - var ge = { - thead: [1, "", "
"], - col: [2, "", "
"], - tr: [2, "", "
"], - td: [3, "", "
"], - _default: [0, "", ""] - }; - - function ve(e, t) { - var n; - return n = "undefined" != typeof e.getElementsByTagName ? e.getElementsByTagName(t || "*") : "undefined" != typeof e.querySelectorAll ? e.querySelectorAll(t || "*") : [], void 0 === t || t && A(e, t) ? S.merge([e], n) : n - } - - function ye(e, t) { - for (var n = 0, r = e.length; n < r; n++) Y.set(e[n], "globalEval", !t || Y.get(t[n], "globalEval")) - } - ge.tbody = ge.tfoot = ge.colgroup = ge.caption = ge.thead, ge.th = ge.td, y.option || (ge.optgroup = ge.option = [1, ""]); - var me = /<|&#?\w+;/; - - function xe(e, t, n, r, i) { - for (var o, a, s, u, l, c, f = t.createDocumentFragment(), p = [], d = 0, h = e.length; d < h; d++) - if ((o = e[d]) || 0 === o) - if ("object" === w(o)) S.merge(p, o.nodeType ? [o] : o); - else if (me.test(o)) { - a = a || f.appendChild(t.createElement("div")), s = (de.exec(o) || ["", ""])[1].toLowerCase(), u = ge[s] || ge._default, a.innerHTML = u[1] + S.htmlPrefilter(o) + u[2], c = u[0]; - while (c--) a = a.lastChild; - S.merge(p, a.childNodes), (a = f.firstChild).textContent = "" - } else p.push(t.createTextNode(o)); - f.textContent = "", d = 0; - while (o = p[d++]) - if (r && -1 < S.inArray(o, r)) i && i.push(o); - else if (l = ie(o), a = ve(f.appendChild(o), "script"), l && ye(a), n) { - c = 0; - while (o = a[c++]) he.test(o.type || "") && n.push(o) - } - return f - } - var be = /^key/, - we = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - Te = /^([^.]*)(?:\.(.+)|)/; - - function Ce() { - return !0 - } - - function Ee() { - return !1 - } - - function Se(e, t) { - return e === function () { - try { - return E.activeElement - } catch (e) {} - }() == ("focus" === t) - } - - function ke(e, t, n, r, i, o) { - var a, s; - if ("object" == typeof t) { - for (s in "string" != typeof n && (r = r || n, n = void 0), t) ke(e, s, n, r, t[s], o); - return e - } - if (null == r && null == i ? (i = n, r = n = void 0) : null == i && ("string" == typeof n ? (i = r, r = void 0) : (i = r, r = n, n = void 0)), !1 === i) i = Ee; - else if (!i) return e; - return 1 === o && (a = i, (i = function (e) { - return S().off(e), a.apply(this, arguments) - }).guid = a.guid || (a.guid = S.guid++)), e.each(function () { - S.event.add(this, t, i, r, n) - }) - } - - function Ae(e, i, o) { - o ? (Y.set(e, i, !1), S.event.add(e, i, { - namespace: !1, - handler: function (e) { - var t, n, r = Y.get(this, i); - if (1 & e.isTrigger && this[i]) { - if (r.length)(S.event.special[i] || {}).delegateType && e.stopPropagation(); - else if (r = s.call(arguments), Y.set(this, i, r), t = o(this, i), this[i](), r !== (n = Y.get(this, i)) || t ? Y.set(this, i, !1) : n = {}, r !== n) return e.stopImmediatePropagation(), e.preventDefault(), n.value - } else r.length && (Y.set(this, i, { - value: S.event.trigger(S.extend(r[0], S.Event.prototype), r.slice(1), this) - }), e.stopImmediatePropagation()) - } - })) : void 0 === Y.get(e, i) && S.event.add(e, i, Ce) - } - S.event = { - global: {}, - add: function (t, e, n, r, i) { - var o, a, s, u, l, c, f, p, d, h, g, v = Y.get(t); - if (V(t)) { - n.handler && (n = (o = n).handler, i = o.selector), i && S.find.matchesSelector(re, i), n.guid || (n.guid = S.guid++), (u = v.events) || (u = v.events = Object.create(null)), (a = v.handle) || (a = v.handle = function (e) { - return "undefined" != typeof S && S.event.triggered !== e.type ? S.event.dispatch.apply(t, arguments) : void 0 - }), l = (e = (e || "").match(P) || [""]).length; - while (l--) d = g = (s = Te.exec(e[l]) || [])[1], h = (s[2] || "").split(".").sort(), d && (f = S.event.special[d] || {}, d = (i ? f.delegateType : f.bindType) || d, f = S.event.special[d] || {}, c = S.extend({ - type: d, - origType: g, - data: r, - handler: n, - guid: n.guid, - selector: i, - needsContext: i && S.expr.match.needsContext.test(i), - namespace: h.join(".") - }, o), (p = u[d]) || ((p = u[d] = []).delegateCount = 0, f.setup && !1 !== f.setup.call(t, r, h, a) || t.addEventListener && t.addEventListener(d, a)), f.add && (f.add.call(t, c), c.handler.guid || (c.handler.guid = n.guid)), i ? p.splice(p.delegateCount++, 0, c) : p.push(c), S.event.global[d] = !0) - } - }, - remove: function (e, t, n, r, i) { - var o, a, s, u, l, c, f, p, d, h, g, v = Y.hasData(e) && Y.get(e); - if (v && (u = v.events)) { - l = (t = (t || "").match(P) || [""]).length; - while (l--) - if (d = g = (s = Te.exec(t[l]) || [])[1], h = (s[2] || "").split(".").sort(), d) { - f = S.event.special[d] || {}, p = u[d = (r ? f.delegateType : f.bindType) || d] || [], s = s[2] && new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)"), a = o = p.length; - while (o--) c = p[o], !i && g !== c.origType || n && n.guid !== c.guid || s && !s.test(c.namespace) || r && r !== c.selector && ("**" !== r || !c.selector) || (p.splice(o, 1), c.selector && p.delegateCount--, f.remove && f.remove.call(e, c)); - a && !p.length && (f.teardown && !1 !== f.teardown.call(e, h, v.handle) || S.removeEvent(e, d, v.handle), delete u[d]) - } else - for (d in u) S.event.remove(e, d + t[l], n, r, !0); - S.isEmptyObject(u) && Y.remove(e, "handle events") - } - }, - dispatch: function (e) { - var t, n, r, i, o, a, s = new Array(arguments.length), - u = S.event.fix(e), - l = (Y.get(this, "events") || Object.create(null))[u.type] || [], - c = S.event.special[u.type] || {}; - for (s[0] = u, t = 1; t < arguments.length; t++) s[t] = arguments[t]; - if (u.delegateTarget = this, !c.preDispatch || !1 !== c.preDispatch.call(this, u)) { - a = S.event.handlers.call(this, u, l), t = 0; - while ((i = a[t++]) && !u.isPropagationStopped()) { - u.currentTarget = i.elem, n = 0; - while ((o = i.handlers[n++]) && !u.isImmediatePropagationStopped()) u.rnamespace && !1 !== o.namespace && !u.rnamespace.test(o.namespace) || (u.handleObj = o, u.data = o.data, void 0 !== (r = ((S.event.special[o.origType] || {}).handle || o.handler).apply(i.elem, s)) && !1 === (u.result = r) && (u.preventDefault(), u.stopPropagation())) - } - return c.postDispatch && c.postDispatch.call(this, u), u.result - } - }, - handlers: function (e, t) { - var n, r, i, o, a, s = [], - u = t.delegateCount, - l = e.target; - if (u && l.nodeType && !("click" === e.type && 1 <= e.button)) - for (; l !== this; l = l.parentNode || this) - if (1 === l.nodeType && ("click" !== e.type || !0 !== l.disabled)) { - for (o = [], a = {}, n = 0; n < u; n++) void 0 === a[i = (r = t[n]).selector + " "] && (a[i] = r.needsContext ? -1 < S(i, this).index(l) : S.find(i, this, null, [l]).length), a[i] && o.push(r); - o.length && s.push({ - elem: l, - handlers: o - }) - } return l = this, u < t.length && s.push({ - elem: l, - handlers: t.slice(u) - }), s - }, - addProp: function (t, e) { - Object.defineProperty(S.Event.prototype, t, { - enumerable: !0, - configurable: !0, - get: m(e) ? function () { - if (this.originalEvent) return e(this.originalEvent) - } : function () { - if (this.originalEvent) return this.originalEvent[t] - }, - set: function (e) { - Object.defineProperty(this, t, { - enumerable: !0, - configurable: !0, - writable: !0, - value: e - }) - } - }) - }, - fix: function (e) { - return e[S.expando] ? e : new S.Event(e) - }, - special: { - load: { - noBubble: !0 - }, - click: { - setup: function (e) { - var t = this || e; - return pe.test(t.type) && t.click && A(t, "input") && Ae(t, "click", Ce), !1 - }, - trigger: function (e) { - var t = this || e; - return pe.test(t.type) && t.click && A(t, "input") && Ae(t, "click"), !0 - }, - _default: function (e) { - var t = e.target; - return pe.test(t.type) && t.click && A(t, "input") && Y.get(t, "click") || A(t, "a") - } - }, - beforeunload: { - postDispatch: function (e) { - void 0 !== e.result && e.originalEvent && (e.originalEvent.returnValue = e.result) - } - } - } - }, S.removeEvent = function (e, t, n) { - e.removeEventListener && e.removeEventListener(t, n) - }, S.Event = function (e, t) { - if (!(this instanceof S.Event)) return new S.Event(e, t); - e && e.type ? (this.originalEvent = e, this.type = e.type, this.isDefaultPrevented = e.defaultPrevented || void 0 === e.defaultPrevented && !1 === e.returnValue ? Ce : Ee, this.target = e.target && 3 === e.target.nodeType ? e.target.parentNode : e.target, this.currentTarget = e.currentTarget, this.relatedTarget = e.relatedTarget) : this.type = e, t && S.extend(this, t), this.timeStamp = e && e.timeStamp || Date.now(), this[S.expando] = !0 - }, S.Event.prototype = { - constructor: S.Event, - isDefaultPrevented: Ee, - isPropagationStopped: Ee, - isImmediatePropagationStopped: Ee, - isSimulated: !1, - preventDefault: function () { - var e = this.originalEvent; - this.isDefaultPrevented = Ce, e && !this.isSimulated && e.preventDefault() - }, - stopPropagation: function () { - var e = this.originalEvent; - this.isPropagationStopped = Ce, e && !this.isSimulated && e.stopPropagation() - }, - stopImmediatePropagation: function () { - var e = this.originalEvent; - this.isImmediatePropagationStopped = Ce, e && !this.isSimulated && e.stopImmediatePropagation(), this.stopPropagation() - } - }, S.each({ - altKey: !0, - bubbles: !0, - cancelable: !0, - changedTouches: !0, - ctrlKey: !0, - detail: !0, - eventPhase: !0, - metaKey: !0, - pageX: !0, - pageY: !0, - shiftKey: !0, - view: !0, - "char": !0, - code: !0, - charCode: !0, - key: !0, - keyCode: !0, - button: !0, - buttons: !0, - clientX: !0, - clientY: !0, - offsetX: !0, - offsetY: !0, - pointerId: !0, - pointerType: !0, - screenX: !0, - screenY: !0, - targetTouches: !0, - toElement: !0, - touches: !0, - which: function (e) { - var t = e.button; - return null == e.which && be.test(e.type) ? null != e.charCode ? e.charCode : e.keyCode : !e.which && void 0 !== t && we.test(e.type) ? 1 & t ? 1 : 2 & t ? 3 : 4 & t ? 2 : 0 : e.which - } - }, S.event.addProp), S.each({ - focus: "focusin", - blur: "focusout" - }, function (e, t) { - S.event.special[e] = { - setup: function () { - return Ae(this, e, Se), !1 - }, - trigger: function () { - return Ae(this, e), !0 - }, - delegateType: t - } - }), S.each({ - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" - }, function (e, i) { - S.event.special[e] = { - delegateType: i, - bindType: i, - handle: function (e) { - var t, n = e.relatedTarget, - r = e.handleObj; - return n && (n === this || S.contains(this, n)) || (e.type = r.origType, t = r.handler.apply(this, arguments), e.type = i), t - } - } - }), S.fn.extend({ - on: function (e, t, n, r) { - return ke(this, e, t, n, r) - }, - one: function (e, t, n, r) { - return ke(this, e, t, n, r, 1) - }, - off: function (e, t, n) { - var r, i; - if (e && e.preventDefault && e.handleObj) return r = e.handleObj, S(e.delegateTarget).off(r.namespace ? r.origType + "." + r.namespace : r.origType, r.selector, r.handler), this; - if ("object" == typeof e) { - for (i in e) this.off(i, t, e[i]); - return this - } - return !1 !== t && "function" != typeof t || (n = t, t = void 0), !1 === n && (n = Ee), this.each(function () { - S.event.remove(this, e, n, t) - }) - } - }); - var Ne = /\s*$/g; - - function qe(e, t) { - return A(e, "table") && A(11 !== t.nodeType ? t : t.firstChild, "tr") && S(e).children("tbody")[0] || e - } - - function Le(e) { - return e.type = (null !== e.getAttribute("type")) + "/" + e.type, e - } - - function He(e) { - return "true/" === (e.type || "").slice(0, 5) ? e.type = e.type.slice(5) : e.removeAttribute("type"), e - } - - function Oe(e, t) { - var n, r, i, o, a, s; - if (1 === t.nodeType) { - if (Y.hasData(e) && (s = Y.get(e).events)) - for (i in Y.remove(t, "handle events"), s) - for (n = 0, r = s[i].length; n < r; n++) S.event.add(t, i, s[i][n]); - Q.hasData(e) && (o = Q.access(e), a = S.extend({}, o), Q.set(t, a)) - } - } - - function Pe(n, r, i, o) { - r = g(r); - var e, t, a, s, u, l, c = 0, - f = n.length, - p = f - 1, - d = r[0], - h = m(d); - if (h || 1 < f && "string" == typeof d && !y.checkClone && De.test(d)) return n.each(function (e) { - var t = n.eq(e); - h && (r[0] = d.call(this, e, t.html())), Pe(t, r, i, o) - }); - if (f && (t = (e = xe(r, n[0].ownerDocument, !1, n, o)).firstChild, 1 === e.childNodes.length && (e = t), t || o)) { - for (s = (a = S.map(ve(e, "script"), Le)).length; c < f; c++) u = e, c !== p && (u = S.clone(u, !0, !0), s && S.merge(a, ve(u, "script"))), i.call(n[c], u, c); - if (s) - for (l = a[a.length - 1].ownerDocument, S.map(a, He), c = 0; c < s; c++) u = a[c], he.test(u.type || "") && !Y.access(u, "globalEval") && S.contains(l, u) && (u.src && "module" !== (u.type || "").toLowerCase() ? S._evalUrl && !u.noModule && S._evalUrl(u.src, { - nonce: u.nonce || u.getAttribute("nonce") - }, l) : b(u.textContent.replace(je, ""), u, l)) - } - return n - } - - function Re(e, t, n) { - for (var r, i = t ? S.filter(t, e) : e, o = 0; null != (r = i[o]); o++) n || 1 !== r.nodeType || S.cleanData(ve(r)), r.parentNode && (n && ie(r) && ye(ve(r, "script")), r.parentNode.removeChild(r)); - return e - } - S.extend({ - htmlPrefilter: function (e) { - return e - }, - clone: function (e, t, n) { - var r, i, o, a, s, u, l, c = e.cloneNode(!0), - f = ie(e); - if (!(y.noCloneChecked || 1 !== e.nodeType && 11 !== e.nodeType || S.isXMLDoc(e))) - for (a = ve(c), r = 0, i = (o = ve(e)).length; r < i; r++) s = o[r], u = a[r], void 0, "input" === (l = u.nodeName.toLowerCase()) && pe.test(s.type) ? u.checked = s.checked : "input" !== l && "textarea" !== l || (u.defaultValue = s.defaultValue); - if (t) - if (n) - for (o = o || ve(e), a = a || ve(c), r = 0, i = o.length; r < i; r++) Oe(o[r], a[r]); - else Oe(e, c); - return 0 < (a = ve(c, "script")).length && ye(a, !f && ve(e, "script")), c - }, - cleanData: function (e) { - for (var t, n, r, i = S.event.special, o = 0; void 0 !== (n = e[o]); o++) - if (V(n)) { - if (t = n[Y.expando]) { - if (t.events) - for (r in t.events) i[r] ? S.event.remove(n, r) : S.removeEvent(n, r, t.handle); - n[Y.expando] = void 0 - } - n[Q.expando] && (n[Q.expando] = void 0) - } - } - }), S.fn.extend({ - detach: function (e) { - return Re(this, e, !0) - }, - remove: function (e) { - return Re(this, e) - }, - text: function (e) { - return $(this, function (e) { - return void 0 === e ? S.text(this) : this.empty().each(function () { - 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || (this.textContent = e) - }) - }, null, e, arguments.length) - }, - append: function () { - return Pe(this, arguments, function (e) { - 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || qe(this, e).appendChild(e) - }) - }, - prepend: function () { - return Pe(this, arguments, function (e) { - if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) { - var t = qe(this, e); - t.insertBefore(e, t.firstChild) - } - }) - }, - before: function () { - return Pe(this, arguments, function (e) { - this.parentNode && this.parentNode.insertBefore(e, this) - }) - }, - after: function () { - return Pe(this, arguments, function (e) { - this.parentNode && this.parentNode.insertBefore(e, this.nextSibling) - }) - }, - empty: function () { - for (var e, t = 0; null != (e = this[t]); t++) 1 === e.nodeType && (S.cleanData(ve(e, !1)), e.textContent = ""); - return this - }, - clone: function (e, t) { - return e = null != e && e, t = null == t ? e : t, this.map(function () { - return S.clone(this, e, t) - }) - }, - html: function (e) { - return $(this, function (e) { - var t = this[0] || {}, - n = 0, - r = this.length; - if (void 0 === e && 1 === t.nodeType) return t.innerHTML; - if ("string" == typeof e && !Ne.test(e) && !ge[(de.exec(e) || ["", ""])[1].toLowerCase()]) { - e = S.htmlPrefilter(e); - try { - for (; n < r; n++) 1 === (t = this[n] || {}).nodeType && (S.cleanData(ve(t, !1)), t.innerHTML = e); - t = 0 - } catch (e) {} - } - t && this.empty().append(e) - }, null, e, arguments.length) - }, - replaceWith: function () { - var n = []; - return Pe(this, arguments, function (e) { - var t = this.parentNode; - S.inArray(this, n) < 0 && (S.cleanData(ve(this)), t && t.replaceChild(e, this)) - }, n) - } - }), S.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" - }, function (e, a) { - S.fn[e] = function (e) { - for (var t, n = [], r = S(e), i = r.length - 1, o = 0; o <= i; o++) t = o === i ? this : this.clone(!0), S(r[o])[a](t), u.apply(n, t.get()); - return this.pushStack(n) - } - }); - var Me = new RegExp("^(" + ee + ")(?!px)[a-z%]+$", "i"), - Ie = function (e) { - var t = e.ownerDocument.defaultView; - return t && t.opener || (t = C), t.getComputedStyle(e) - }, - We = function (e, t, n) { - var r, i, o = {}; - for (i in t) o[i] = e.style[i], e.style[i] = t[i]; - for (i in r = n.call(e), t) e.style[i] = o[i]; - return r - }, - Fe = new RegExp(ne.join("|"), "i"); - - function Be(e, t, n) { - var r, i, o, a, s = e.style; - return (n = n || Ie(e)) && ("" !== (a = n.getPropertyValue(t) || n[t]) || ie(e) || (a = S.style(e, t)), !y.pixelBoxStyles() && Me.test(a) && Fe.test(t) && (r = s.width, i = s.minWidth, o = s.maxWidth, s.minWidth = s.maxWidth = s.width = a, a = n.width, s.width = r, s.minWidth = i, s.maxWidth = o)), void 0 !== a ? a + "" : a - } - - function $e(e, t) { - return { - get: function () { - if (!e()) return (this.get = t).apply(this, arguments); - delete this.get - } - } - }! function () { - function e() { - if (l) { - u.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", l.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", re.appendChild(u).appendChild(l); - var e = C.getComputedStyle(l); - n = "1%" !== e.top, s = 12 === t(e.marginLeft), l.style.right = "60%", o = 36 === t(e.right), r = 36 === t(e.width), l.style.position = "absolute", i = 12 === t(l.offsetWidth / 3), re.removeChild(u), l = null - } - } - - function t(e) { - return Math.round(parseFloat(e)) - } - var n, r, i, o, a, s, u = E.createElement("div"), - l = E.createElement("div"); - l.style && (l.style.backgroundClip = "content-box", l.cloneNode(!0).style.backgroundClip = "", y.clearCloneStyle = "content-box" === l.style.backgroundClip, S.extend(y, { - boxSizingReliable: function () { - return e(), r - }, - pixelBoxStyles: function () { - return e(), o - }, - pixelPosition: function () { - return e(), n - }, - reliableMarginLeft: function () { - return e(), s - }, - scrollboxSize: function () { - return e(), i - }, - reliableTrDimensions: function () { - var e, t, n, r; - return null == a && (e = E.createElement("table"), t = E.createElement("tr"), n = E.createElement("div"), e.style.cssText = "position:absolute;left:-11111px", t.style.height = "1px", n.style.height = "9px", re.appendChild(e).appendChild(t).appendChild(n), r = C.getComputedStyle(t), a = 3 < parseInt(r.height), re.removeChild(e)), a - } - })) - }(); - var _e = ["Webkit", "Moz", "ms"], - ze = E.createElement("div").style, - Ue = {}; - - function Xe(e) { - var t = S.cssProps[e] || Ue[e]; - return t || (e in ze ? e : Ue[e] = function (e) { - var t = e[0].toUpperCase() + e.slice(1), - n = _e.length; - while (n--) - if ((e = _e[n] + t) in ze) return e - }(e) || e) - } - var Ve = /^(none|table(?!-c[ea]).+)/, - Ge = /^--/, - Ye = { - position: "absolute", - visibility: "hidden", - display: "block" - }, - Qe = { - letterSpacing: "0", - fontWeight: "400" - }; - - function Je(e, t, n) { - var r = te.exec(t); - return r ? Math.max(0, r[2] - (n || 0)) + (r[3] || "px") : t - } - - function Ke(e, t, n, r, i, o) { - var a = "width" === t ? 1 : 0, - s = 0, - u = 0; - if (n === (r ? "border" : "content")) return 0; - for (; a < 4; a += 2) "margin" === n && (u += S.css(e, n + ne[a], !0, i)), r ? ("content" === n && (u -= S.css(e, "padding" + ne[a], !0, i)), "margin" !== n && (u -= S.css(e, "border" + ne[a] + "Width", !0, i))) : (u += S.css(e, "padding" + ne[a], !0, i), "padding" !== n ? u += S.css(e, "border" + ne[a] + "Width", !0, i) : s += S.css(e, "border" + ne[a] + "Width", !0, i)); - return !r && 0 <= o && (u += Math.max(0, Math.ceil(e["offset" + t[0].toUpperCase() + t.slice(1)] - o - u - s - .5)) || 0), u - } - - function Ze(e, t, n) { - var r = Ie(e), - i = (!y.boxSizingReliable() || n) && "border-box" === S.css(e, "boxSizing", !1, r), - o = i, - a = Be(e, t, r), - s = "offset" + t[0].toUpperCase() + t.slice(1); - if (Me.test(a)) { - if (!n) return a; - a = "auto" - } - return (!y.boxSizingReliable() && i || !y.reliableTrDimensions() && A(e, "tr") || "auto" === a || !parseFloat(a) && "inline" === S.css(e, "display", !1, r)) && e.getClientRects().length && (i = "border-box" === S.css(e, "boxSizing", !1, r), (o = s in e) && (a = e[s])), (a = parseFloat(a) || 0) + Ke(e, t, n || (i ? "border" : "content"), o, r, a) + "px" - } - - function et(e, t, n, r, i) { - return new et.prototype.init(e, t, n, r, i) - } - S.extend({ - cssHooks: { - opacity: { - get: function (e, t) { - if (t) { - var n = Be(e, "opacity"); - return "" === n ? "1" : n - } - } - } - }, - cssNumber: { - animationIterationCount: !0, - columnCount: !0, - fillOpacity: !0, - flexGrow: !0, - flexShrink: !0, - fontWeight: !0, - gridArea: !0, - gridColumn: !0, - gridColumnEnd: !0, - gridColumnStart: !0, - gridRow: !0, - gridRowEnd: !0, - gridRowStart: !0, - lineHeight: !0, - opacity: !0, - order: !0, - orphans: !0, - widows: !0, - zIndex: !0, - zoom: !0 - }, - cssProps: {}, - style: function (e, t, n, r) { - if (e && 3 !== e.nodeType && 8 !== e.nodeType && e.style) { - var i, o, a, s = X(t), - u = Ge.test(t), - l = e.style; - if (u || (t = Xe(s)), a = S.cssHooks[t] || S.cssHooks[s], void 0 === n) return a && "get" in a && void 0 !== (i = a.get(e, !1, r)) ? i : l[t]; - "string" === (o = typeof n) && (i = te.exec(n)) && i[1] && (n = se(e, t, i), o = "number"), null != n && n == n && ("number" !== o || u || (n += i && i[3] || (S.cssNumber[s] ? "" : "px")), y.clearCloneStyle || "" !== n || 0 !== t.indexOf("background") || (l[t] = "inherit"), a && "set" in a && void 0 === (n = a.set(e, n, r)) || (u ? l.setProperty(t, n) : l[t] = n)) - } - }, - css: function (e, t, n, r) { - var i, o, a, s = X(t); - return Ge.test(t) || (t = Xe(s)), (a = S.cssHooks[t] || S.cssHooks[s]) && "get" in a && (i = a.get(e, !0, n)), void 0 === i && (i = Be(e, t, r)), "normal" === i && t in Qe && (i = Qe[t]), "" === n || n ? (o = parseFloat(i), !0 === n || isFinite(o) ? o || 0 : i) : i - } - }), S.each(["height", "width"], function (e, u) { - S.cssHooks[u] = { - get: function (e, t, n) { - if (t) return !Ve.test(S.css(e, "display")) || e.getClientRects().length && e.getBoundingClientRect().width ? Ze(e, u, n) : We(e, Ye, function () { - return Ze(e, u, n) - }) - }, - set: function (e, t, n) { - var r, i = Ie(e), - o = !y.scrollboxSize() && "absolute" === i.position, - a = (o || n) && "border-box" === S.css(e, "boxSizing", !1, i), - s = n ? Ke(e, u, n, a, i) : 0; - return a && o && (s -= Math.ceil(e["offset" + u[0].toUpperCase() + u.slice(1)] - parseFloat(i[u]) - Ke(e, u, "border", !1, i) - .5)), s && (r = te.exec(t)) && "px" !== (r[3] || "px") && (e.style[u] = t, t = S.css(e, u)), Je(0, t, s) - } - } - }), S.cssHooks.marginLeft = $e(y.reliableMarginLeft, function (e, t) { - if (t) return (parseFloat(Be(e, "marginLeft")) || e.getBoundingClientRect().left - We(e, { - marginLeft: 0 - }, function () { - return e.getBoundingClientRect().left - })) + "px" - }), S.each({ - margin: "", - padding: "", - border: "Width" - }, function (i, o) { - S.cssHooks[i + o] = { - expand: function (e) { - for (var t = 0, n = {}, r = "string" == typeof e ? e.split(" ") : [e]; t < 4; t++) n[i + ne[t] + o] = r[t] || r[t - 2] || r[0]; - return n - } - }, "margin" !== i && (S.cssHooks[i + o].set = Je) - }), S.fn.extend({ - css: function (e, t) { - return $(this, function (e, t, n) { - var r, i, o = {}, - a = 0; - if (Array.isArray(t)) { - for (r = Ie(e), i = t.length; a < i; a++) o[t[a]] = S.css(e, t[a], !1, r); - return o - } - return void 0 !== n ? S.style(e, t, n) : S.css(e, t) - }, e, t, 1 < arguments.length) - } - }), ((S.Tween = et).prototype = { - constructor: et, - init: function (e, t, n, r, i, o) { - this.elem = e, this.prop = n, this.easing = i || S.easing._default, this.options = t, this.start = this.now = this.cur(), this.end = r, this.unit = o || (S.cssNumber[n] ? "" : "px") - }, - cur: function () { - var e = et.propHooks[this.prop]; - return e && e.get ? e.get(this) : et.propHooks._default.get(this) - }, - run: function (e) { - var t, n = et.propHooks[this.prop]; - return this.options.duration ? this.pos = t = S.easing[this.easing](e, this.options.duration * e, 0, 1, this.options.duration) : this.pos = t = e, this.now = (this.end - this.start) * t + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), n && n.set ? n.set(this) : et.propHooks._default.set(this), this - } - }).init.prototype = et.prototype, (et.propHooks = { - _default: { - get: function (e) { - var t; - return 1 !== e.elem.nodeType || null != e.elem[e.prop] && null == e.elem.style[e.prop] ? e.elem[e.prop] : (t = S.css(e.elem, e.prop, "")) && "auto" !== t ? t : 0 - }, - set: function (e) { - S.fx.step[e.prop] ? S.fx.step[e.prop](e) : 1 !== e.elem.nodeType || !S.cssHooks[e.prop] && null == e.elem.style[Xe(e.prop)] ? e.elem[e.prop] = e.now : S.style(e.elem, e.prop, e.now + e.unit) - } - } - }).scrollTop = et.propHooks.scrollLeft = { - set: function (e) { - e.elem.nodeType && e.elem.parentNode && (e.elem[e.prop] = e.now) - } - }, S.easing = { - linear: function (e) { - return e - }, - swing: function (e) { - return .5 - Math.cos(e * Math.PI) / 2 - }, - _default: "swing" - }, S.fx = et.prototype.init, S.fx.step = {}; - var tt, nt, rt, it, ot = /^(?:toggle|show|hide)$/, - at = /queueHooks$/; - - function st() { - nt && (!1 === E.hidden && C.requestAnimationFrame ? C.requestAnimationFrame(st) : C.setTimeout(st, S.fx.interval), S.fx.tick()) - } - - function ut() { - return C.setTimeout(function () { - tt = void 0 - }), tt = Date.now() - } - - function lt(e, t) { - var n, r = 0, - i = { - height: e - }; - for (t = t ? 1 : 0; r < 4; r += 2 - t) i["margin" + (n = ne[r])] = i["padding" + n] = e; - return t && (i.opacity = i.width = e), i - } - - function ct(e, t, n) { - for (var r, i = (ft.tweeners[t] || []).concat(ft.tweeners["*"]), o = 0, a = i.length; o < a; o++) - if (r = i[o].call(n, t, e)) return r - } - - function ft(o, e, t) { - var n, a, r = 0, - i = ft.prefilters.length, - s = S.Deferred().always(function () { - delete u.elem - }), - u = function () { - if (a) return !1; - for (var e = tt || ut(), t = Math.max(0, l.startTime + l.duration - e), n = 1 - (t / l.duration || 0), r = 0, i = l.tweens.length; r < i; r++) l.tweens[r].run(n); - return s.notifyWith(o, [l, n, t]), n < 1 && i ? t : (i || s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l]), !1) - }, - l = s.promise({ - elem: o, - props: S.extend({}, e), - opts: S.extend(!0, { - specialEasing: {}, - easing: S.easing._default - }, t), - originalProperties: e, - originalOptions: t, - startTime: tt || ut(), - duration: t.duration, - tweens: [], - createTween: function (e, t) { - var n = S.Tween(o, l.opts, e, t, l.opts.specialEasing[e] || l.opts.easing); - return l.tweens.push(n), n - }, - stop: function (e) { - var t = 0, - n = e ? l.tweens.length : 0; - if (a) return this; - for (a = !0; t < n; t++) l.tweens[t].run(1); - return e ? (s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l, e])) : s.rejectWith(o, [l, e]), this - } - }), - c = l.props; - for (! function (e, t) { - var n, r, i, o, a; - for (n in e) - if (i = t[r = X(n)], o = e[n], Array.isArray(o) && (i = o[1], o = e[n] = o[0]), n !== r && (e[r] = o, delete e[n]), (a = S.cssHooks[r]) && "expand" in a) - for (n in o = a.expand(o), delete e[r], o) n in e || (e[n] = o[n], t[n] = i); - else t[r] = i - }(c, l.opts.specialEasing); r < i; r++) - if (n = ft.prefilters[r].call(l, o, c, l.opts)) return m(n.stop) && (S._queueHooks(l.elem, l.opts.queue).stop = n.stop.bind(n)), n; - return S.map(c, ct, l), m(l.opts.start) && l.opts.start.call(o, l), l.progress(l.opts.progress).done(l.opts.done, l.opts.complete).fail(l.opts.fail).always(l.opts.always), S.fx.timer(S.extend(u, { - elem: o, - anim: l, - queue: l.opts.queue - })), l - } - S.Animation = S.extend(ft, { - tweeners: { - "*": [function (e, t) { - var n = this.createTween(e, t); - return se(n.elem, e, te.exec(t), n), n - }] - }, - tweener: function (e, t) { - m(e) ? (t = e, e = ["*"]) : e = e.match(P); - for (var n, r = 0, i = e.length; r < i; r++) n = e[r], ft.tweeners[n] = ft.tweeners[n] || [], ft.tweeners[n].unshift(t) - }, - prefilters: [function (e, t, n) { - var r, i, o, a, s, u, l, c, f = "width" in t || "height" in t, - p = this, - d = {}, - h = e.style, - g = e.nodeType && ae(e), - v = Y.get(e, "fxshow"); - for (r in n.queue || (null == (a = S._queueHooks(e, "fx")).unqueued && (a.unqueued = 0, s = a.empty.fire, a.empty.fire = function () { - a.unqueued || s() - }), a.unqueued++, p.always(function () { - p.always(function () { - a.unqueued--, S.queue(e, "fx").length || a.empty.fire() - }) - })), t) - if (i = t[r], ot.test(i)) { - if (delete t[r], o = o || "toggle" === i, i === (g ? "hide" : "show")) { - if ("show" !== i || !v || void 0 === v[r]) continue; - g = !0 - } - d[r] = v && v[r] || S.style(e, r) - } if ((u = !S.isEmptyObject(t)) || !S.isEmptyObject(d)) - for (r in f && 1 === e.nodeType && (n.overflow = [h.overflow, h.overflowX, h.overflowY], null == (l = v && v.display) && (l = Y.get(e, "display")), "none" === (c = S.css(e, "display")) && (l ? c = l : (le([e], !0), l = e.style.display || l, c = S.css(e, "display"), le([e]))), ("inline" === c || "inline-block" === c && null != l) && "none" === S.css(e, "float") && (u || (p.done(function () { - h.display = l - }), null == l && (c = h.display, l = "none" === c ? "" : c)), h.display = "inline-block")), n.overflow && (h.overflow = "hidden", p.always(function () { - h.overflow = n.overflow[0], h.overflowX = n.overflow[1], h.overflowY = n.overflow[2] - })), u = !1, d) u || (v ? "hidden" in v && (g = v.hidden) : v = Y.access(e, "fxshow", { - display: l - }), o && (v.hidden = !g), g && le([e], !0), p.done(function () { - for (r in g || le([e]), Y.remove(e, "fxshow"), d) S.style(e, r, d[r]) - })), u = ct(g ? v[r] : 0, r, p), r in v || (v[r] = u.start, g && (u.end = u.start, u.start = 0)) - }], - prefilter: function (e, t) { - t ? ft.prefilters.unshift(e) : ft.prefilters.push(e) - } - }), S.speed = function (e, t, n) { - var r = e && "object" == typeof e ? S.extend({}, e) : { - complete: n || !n && t || m(e) && e, - duration: e, - easing: n && t || t && !m(t) && t - }; - return S.fx.off ? r.duration = 0 : "number" != typeof r.duration && (r.duration in S.fx.speeds ? r.duration = S.fx.speeds[r.duration] : r.duration = S.fx.speeds._default), null != r.queue && !0 !== r.queue || (r.queue = "fx"), r.old = r.complete, r.complete = function () { - m(r.old) && r.old.call(this), r.queue && S.dequeue(this, r.queue) - }, r - }, S.fn.extend({ - fadeTo: function (e, t, n, r) { - return this.filter(ae).css("opacity", 0).show().end().animate({ - opacity: t - }, e, n, r) - }, - animate: function (t, e, n, r) { - var i = S.isEmptyObject(t), - o = S.speed(e, n, r), - a = function () { - var e = ft(this, S.extend({}, t), o); - (i || Y.get(this, "finish")) && e.stop(!0) - }; - return a.finish = a, i || !1 === o.queue ? this.each(a) : this.queue(o.queue, a) - }, - stop: function (i, e, o) { - var a = function (e) { - var t = e.stop; - delete e.stop, t(o) - }; - return "string" != typeof i && (o = e, e = i, i = void 0), e && this.queue(i || "fx", []), this.each(function () { - var e = !0, - t = null != i && i + "queueHooks", - n = S.timers, - r = Y.get(this); - if (t) r[t] && r[t].stop && a(r[t]); - else - for (t in r) r[t] && r[t].stop && at.test(t) && a(r[t]); - for (t = n.length; t--;) n[t].elem !== this || null != i && n[t].queue !== i || (n[t].anim.stop(o), e = !1, n.splice(t, 1)); - !e && o || S.dequeue(this, i) - }) - }, - finish: function (a) { - return !1 !== a && (a = a || "fx"), this.each(function () { - var e, t = Y.get(this), - n = t[a + "queue"], - r = t[a + "queueHooks"], - i = S.timers, - o = n ? n.length : 0; - for (t.finish = !0, S.queue(this, a, []), r && r.stop && r.stop.call(this, !0), e = i.length; e--;) i[e].elem === this && i[e].queue === a && (i[e].anim.stop(!0), i.splice(e, 1)); - for (e = 0; e < o; e++) n[e] && n[e].finish && n[e].finish.call(this); - delete t.finish - }) - } - }), S.each(["toggle", "show", "hide"], function (e, r) { - var i = S.fn[r]; - S.fn[r] = function (e, t, n) { - return null == e || "boolean" == typeof e ? i.apply(this, arguments) : this.animate(lt(r, !0), e, t, n) - } - }), S.each({ - slideDown: lt("show"), - slideUp: lt("hide"), - slideToggle: lt("toggle"), - fadeIn: { - opacity: "show" - }, - fadeOut: { - opacity: "hide" - }, - fadeToggle: { - opacity: "toggle" - } - }, function (e, r) { - S.fn[e] = function (e, t, n) { - return this.animate(r, e, t, n) - } - }), S.timers = [], S.fx.tick = function () { - var e, t = 0, - n = S.timers; - for (tt = Date.now(); t < n.length; t++)(e = n[t])() || n[t] !== e || n.splice(t--, 1); - n.length || S.fx.stop(), tt = void 0 - }, S.fx.timer = function (e) { - S.timers.push(e), S.fx.start() - }, S.fx.interval = 13, S.fx.start = function () { - nt || (nt = !0, st()) - }, S.fx.stop = function () { - nt = null - }, S.fx.speeds = { - slow: 600, - fast: 200, - _default: 400 - }, S.fn.delay = function (r, e) { - return r = S.fx && S.fx.speeds[r] || r, e = e || "fx", this.queue(e, function (e, t) { - var n = C.setTimeout(e, r); - t.stop = function () { - C.clearTimeout(n) - } - }) - }, rt = E.createElement("input"), it = E.createElement("select").appendChild(E.createElement("option")), rt.type = "checkbox", y.checkOn = "" !== rt.value, y.optSelected = it.selected, (rt = E.createElement("input")).value = "t", rt.type = "radio", y.radioValue = "t" === rt.value; - var pt, dt = S.expr.attrHandle; - S.fn.extend({ - attr: function (e, t) { - return $(this, S.attr, e, t, 1 < arguments.length) - }, - removeAttr: function (e) { - return this.each(function () { - S.removeAttr(this, e) - }) - } - }), S.extend({ - attr: function (e, t, n) { - var r, i, o = e.nodeType; - if (3 !== o && 8 !== o && 2 !== o) return "undefined" == typeof e.getAttribute ? S.prop(e, t, n) : (1 === o && S.isXMLDoc(e) || (i = S.attrHooks[t.toLowerCase()] || (S.expr.match.bool.test(t) ? pt : void 0)), void 0 !== n ? null === n ? void S.removeAttr(e, t) : i && "set" in i && void 0 !== (r = i.set(e, n, t)) ? r : (e.setAttribute(t, n + ""), n) : i && "get" in i && null !== (r = i.get(e, t)) ? r : null == (r = S.find.attr(e, t)) ? void 0 : r) - }, - attrHooks: { - type: { - set: function (e, t) { - if (!y.radioValue && "radio" === t && A(e, "input")) { - var n = e.value; - return e.setAttribute("type", t), n && (e.value = n), t - } - } - } - }, - removeAttr: function (e, t) { - var n, r = 0, - i = t && t.match(P); - if (i && 1 === e.nodeType) - while (n = i[r++]) e.removeAttribute(n) - } - }), pt = { - set: function (e, t, n) { - return !1 === t ? S.removeAttr(e, n) : e.setAttribute(n, n), n - } - }, S.each(S.expr.match.bool.source.match(/\w+/g), function (e, t) { - var a = dt[t] || S.find.attr; - dt[t] = function (e, t, n) { - var r, i, o = t.toLowerCase(); - return n || (i = dt[o], dt[o] = r, r = null != a(e, t, n) ? o : null, dt[o] = i), r - } - }); - var ht = /^(?:input|select|textarea|button)$/i, - gt = /^(?:a|area)$/i; - - function vt(e) { - return (e.match(P) || []).join(" ") - } - - function yt(e) { - return e.getAttribute && e.getAttribute("class") || "" - } - - function mt(e) { - return Array.isArray(e) ? e : "string" == typeof e && e.match(P) || [] - } - S.fn.extend({ - prop: function (e, t) { - return $(this, S.prop, e, t, 1 < arguments.length) - }, - removeProp: function (e) { - return this.each(function () { - delete this[S.propFix[e] || e] - }) - } - }), S.extend({ - prop: function (e, t, n) { - var r, i, o = e.nodeType; - if (3 !== o && 8 !== o && 2 !== o) return 1 === o && S.isXMLDoc(e) || (t = S.propFix[t] || t, i = S.propHooks[t]), void 0 !== n ? i && "set" in i && void 0 !== (r = i.set(e, n, t)) ? r : e[t] = n : i && "get" in i && null !== (r = i.get(e, t)) ? r : e[t] - }, - propHooks: { - tabIndex: { - get: function (e) { - var t = S.find.attr(e, "tabindex"); - return t ? parseInt(t, 10) : ht.test(e.nodeName) || gt.test(e.nodeName) && e.href ? 0 : -1 - } - } - }, - propFix: { - "for": "htmlFor", - "class": "className" - } - }), y.optSelected || (S.propHooks.selected = { - get: function (e) { - var t = e.parentNode; - return t && t.parentNode && t.parentNode.selectedIndex, null - }, - set: function (e) { - var t = e.parentNode; - t && (t.selectedIndex, t.parentNode && t.parentNode.selectedIndex) - } - }), S.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function () { - S.propFix[this.toLowerCase()] = this - }), S.fn.extend({ - addClass: function (t) { - var e, n, r, i, o, a, s, u = 0; - if (m(t)) return this.each(function (e) { - S(this).addClass(t.call(this, e, yt(this))) - }); - if ((e = mt(t)).length) - while (n = this[u++]) - if (i = yt(n), r = 1 === n.nodeType && " " + vt(i) + " ") { - a = 0; - while (o = e[a++]) r.indexOf(" " + o + " ") < 0 && (r += o + " "); - i !== (s = vt(r)) && n.setAttribute("class", s) - } return this - }, - removeClass: function (t) { - var e, n, r, i, o, a, s, u = 0; - if (m(t)) return this.each(function (e) { - S(this).removeClass(t.call(this, e, yt(this))) - }); - if (!arguments.length) return this.attr("class", ""); - if ((e = mt(t)).length) - while (n = this[u++]) - if (i = yt(n), r = 1 === n.nodeType && " " + vt(i) + " ") { - a = 0; - while (o = e[a++]) - while (-1 < r.indexOf(" " + o + " ")) r = r.replace(" " + o + " ", " "); - i !== (s = vt(r)) && n.setAttribute("class", s) - } return this - }, - toggleClass: function (i, t) { - var o = typeof i, - a = "string" === o || Array.isArray(i); - return "boolean" == typeof t && a ? t ? this.addClass(i) : this.removeClass(i) : m(i) ? this.each(function (e) { - S(this).toggleClass(i.call(this, e, yt(this), t), t) - }) : this.each(function () { - var e, t, n, r; - if (a) { - t = 0, n = S(this), r = mt(i); - while (e = r[t++]) n.hasClass(e) ? n.removeClass(e) : n.addClass(e) - } else void 0 !== i && "boolean" !== o || ((e = yt(this)) && Y.set(this, "__className__", e), this.setAttribute && this.setAttribute("class", e || !1 === i ? "" : Y.get(this, "__className__") || "")) - }) - }, - hasClass: function (e) { - var t, n, r = 0; - t = " " + e + " "; - while (n = this[r++]) - if (1 === n.nodeType && -1 < (" " + vt(yt(n)) + " ").indexOf(t)) return !0; - return !1 - } - }); - var xt = /\r/g; - S.fn.extend({ - val: function (n) { - var r, e, i, t = this[0]; - return arguments.length ? (i = m(n), this.each(function (e) { - var t; - 1 === this.nodeType && (null == (t = i ? n.call(this, e, S(this).val()) : n) ? t = "" : "number" == typeof t ? t += "" : Array.isArray(t) && (t = S.map(t, function (e) { - return null == e ? "" : e + "" - })), (r = S.valHooks[this.type] || S.valHooks[this.nodeName.toLowerCase()]) && "set" in r && void 0 !== r.set(this, t, "value") || (this.value = t)) - })) : t ? (r = S.valHooks[t.type] || S.valHooks[t.nodeName.toLowerCase()]) && "get" in r && void 0 !== (e = r.get(t, "value")) ? e : "string" == typeof (e = t.value) ? e.replace(xt, "") : null == e ? "" : e : void 0 - } - }), S.extend({ - valHooks: { - option: { - get: function (e) { - var t = S.find.attr(e, "value"); - return null != t ? t : vt(S.text(e)) - } - }, - select: { - get: function (e) { - var t, n, r, i = e.options, - o = e.selectedIndex, - a = "select-one" === e.type, - s = a ? null : [], - u = a ? o + 1 : i.length; - for (r = o < 0 ? u : a ? o : 0; r < u; r++) - if (((n = i[r]).selected || r === o) && !n.disabled && (!n.parentNode.disabled || !A(n.parentNode, "optgroup"))) { - if (t = S(n).val(), a) return t; - s.push(t) - } return s - }, - set: function (e, t) { - var n, r, i = e.options, - o = S.makeArray(t), - a = i.length; - while (a--)((r = i[a]).selected = -1 < S.inArray(S.valHooks.option.get(r), o)) && (n = !0); - return n || (e.selectedIndex = -1), o - } - } - } - }), S.each(["radio", "checkbox"], function () { - S.valHooks[this] = { - set: function (e, t) { - if (Array.isArray(t)) return e.checked = -1 < S.inArray(S(e).val(), t) - } - }, y.checkOn || (S.valHooks[this].get = function (e) { - return null === e.getAttribute("value") ? "on" : e.value - }) - }), y.focusin = "onfocusin" in C; - var bt = /^(?:focusinfocus|focusoutblur)$/, - wt = function (e) { - e.stopPropagation() - }; - S.extend(S.event, { - trigger: function (e, t, n, r) { - var i, o, a, s, u, l, c, f, p = [n || E], - d = v.call(e, "type") ? e.type : e, - h = v.call(e, "namespace") ? e.namespace.split(".") : []; - if (o = f = a = n = n || E, 3 !== n.nodeType && 8 !== n.nodeType && !bt.test(d + S.event.triggered) && (-1 < d.indexOf(".") && (d = (h = d.split(".")).shift(), h.sort()), u = d.indexOf(":") < 0 && "on" + d, (e = e[S.expando] ? e : new S.Event(d, "object" == typeof e && e)).isTrigger = r ? 2 : 3, e.namespace = h.join("."), e.rnamespace = e.namespace ? new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, e.result = void 0, e.target || (e.target = n), t = null == t ? [e] : S.makeArray(t, [e]), c = S.event.special[d] || {}, r || !c.trigger || !1 !== c.trigger.apply(n, t))) { - if (!r && !c.noBubble && !x(n)) { - for (s = c.delegateType || d, bt.test(s + d) || (o = o.parentNode); o; o = o.parentNode) p.push(o), a = o; - a === (n.ownerDocument || E) && p.push(a.defaultView || a.parentWindow || C) - } - i = 0; - while ((o = p[i++]) && !e.isPropagationStopped()) f = o, e.type = 1 < i ? s : c.bindType || d, (l = (Y.get(o, "events") || Object.create(null))[e.type] && Y.get(o, "handle")) && l.apply(o, t), (l = u && o[u]) && l.apply && V(o) && (e.result = l.apply(o, t), !1 === e.result && e.preventDefault()); - return e.type = d, r || e.isDefaultPrevented() || c._default && !1 !== c._default.apply(p.pop(), t) || !V(n) || u && m(n[d]) && !x(n) && ((a = n[u]) && (n[u] = null), S.event.triggered = d, e.isPropagationStopped() && f.addEventListener(d, wt), n[d](), e.isPropagationStopped() && f.removeEventListener(d, wt), S.event.triggered = void 0, a && (n[u] = a)), e.result - } - }, - simulate: function (e, t, n) { - var r = S.extend(new S.Event, n, { - type: e, - isSimulated: !0 - }); - S.event.trigger(r, null, t) - } - }), S.fn.extend({ - trigger: function (e, t) { - return this.each(function () { - S.event.trigger(e, t, this) - }) - }, - triggerHandler: function (e, t) { - var n = this[0]; - if (n) return S.event.trigger(e, t, n, !0) - } - }), y.focusin || S.each({ - focus: "focusin", - blur: "focusout" - }, function (n, r) { - var i = function (e) { - S.event.simulate(r, e.target, S.event.fix(e)) - }; - S.event.special[r] = { - setup: function () { - var e = this.ownerDocument || this.document || this, - t = Y.access(e, r); - t || e.addEventListener(n, i, !0), Y.access(e, r, (t || 0) + 1) - }, - teardown: function () { - var e = this.ownerDocument || this.document || this, - t = Y.access(e, r) - 1; - t ? Y.access(e, r, t) : (e.removeEventListener(n, i, !0), Y.remove(e, r)) - } - } - }); - var Tt = C.location, - Ct = { - guid: Date.now() - }, - Et = /\?/; - S.parseXML = function (e) { - var t; - if (!e || "string" != typeof e) return null; - try { - t = (new C.DOMParser).parseFromString(e, "text/xml") - } catch (e) { - t = void 0 - } - return t && !t.getElementsByTagName("parsererror").length || S.error("Invalid XML: " + e), t - }; - var St = /\[\]$/, - kt = /\r?\n/g, - At = /^(?:submit|button|image|reset|file)$/i, - Nt = /^(?:input|select|textarea|keygen)/i; - - function Dt(n, e, r, i) { - var t; - if (Array.isArray(e)) S.each(e, function (e, t) { - r || St.test(n) ? i(n, t) : Dt(n + "[" + ("object" == typeof t && null != t ? e : "") + "]", t, r, i) - }); - else if (r || "object" !== w(e)) i(n, e); - else - for (t in e) Dt(n + "[" + t + "]", e[t], r, i) - } - S.param = function (e, t) { - var n, r = [], - i = function (e, t) { - var n = m(t) ? t() : t; - r[r.length] = encodeURIComponent(e) + "=" + encodeURIComponent(null == n ? "" : n) - }; - if (null == e) return ""; - if (Array.isArray(e) || e.jquery && !S.isPlainObject(e)) S.each(e, function () { - i(this.name, this.value) - }); - else - for (n in e) Dt(n, e[n], t, i); - return r.join("&") - }, S.fn.extend({ - serialize: function () { - return S.param(this.serializeArray()) - }, - serializeArray: function () { - return this.map(function () { - var e = S.prop(this, "elements"); - return e ? S.makeArray(e) : this - }).filter(function () { - var e = this.type; - return this.name && !S(this).is(":disabled") && Nt.test(this.nodeName) && !At.test(e) && (this.checked || !pe.test(e)) - }).map(function (e, t) { - var n = S(this).val(); - return null == n ? null : Array.isArray(n) ? S.map(n, function (e) { - return { - name: t.name, - value: e.replace(kt, "\r\n") - } - }) : { - name: t.name, - value: n.replace(kt, "\r\n") - } - }).get() - } - }); - var jt = /%20/g, - qt = /#.*$/, - Lt = /([?&])_=[^&]*/, - Ht = /^(.*?):[ \t]*([^\r\n]*)$/gm, - Ot = /^(?:GET|HEAD)$/, - Pt = /^\/\//, - Rt = {}, - Mt = {}, - It = "*/".concat("*"), - Wt = E.createElement("a"); - - function Ft(o) { - return function (e, t) { - "string" != typeof e && (t = e, e = "*"); - var n, r = 0, - i = e.toLowerCase().match(P) || []; - if (m(t)) - while (n = i[r++]) "+" === n[0] ? (n = n.slice(1) || "*", (o[n] = o[n] || []).unshift(t)) : (o[n] = o[n] || []).push(t) - } - } - - function Bt(t, i, o, a) { - var s = {}, - u = t === Mt; - - function l(e) { - var r; - return s[e] = !0, S.each(t[e] || [], function (e, t) { - var n = t(i, o, a); - return "string" != typeof n || u || s[n] ? u ? !(r = n) : void 0 : (i.dataTypes.unshift(n), l(n), !1) - }), r - } - return l(i.dataTypes[0]) || !s["*"] && l("*") - } - - function $t(e, t) { - var n, r, i = S.ajaxSettings.flatOptions || {}; - for (n in t) void 0 !== t[n] && ((i[n] ? e : r || (r = {}))[n] = t[n]); - return r && S.extend(!0, e, r), e - } - Wt.href = Tt.href, S.extend({ - active: 0, - lastModified: {}, - etag: {}, - ajaxSettings: { - url: Tt.href, - type: "GET", - isLocal: /^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Tt.protocol), - global: !0, - processData: !0, - async: !0, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - accepts: { - "*": It, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - converters: { - "* text": String, - "text html": !0, - "text json": JSON.parse, - "text xml": S.parseXML - }, - flatOptions: { - url: !0, - context: !0 - } - }, - ajaxSetup: function (e, t) { - return t ? $t($t(e, S.ajaxSettings), t) : $t(S.ajaxSettings, e) - }, - ajaxPrefilter: Ft(Rt), - ajaxTransport: Ft(Mt), - ajax: function (e, t) { - "object" == typeof e && (t = e, e = void 0), t = t || {}; - var c, f, p, n, d, r, h, g, i, o, v = S.ajaxSetup({}, t), - y = v.context || v, - m = v.context && (y.nodeType || y.jquery) ? S(y) : S.event, - x = S.Deferred(), - b = S.Callbacks("once memory"), - w = v.statusCode || {}, - a = {}, - s = {}, - u = "canceled", - T = { - readyState: 0, - getResponseHeader: function (e) { - var t; - if (h) { - if (!n) { - n = {}; - while (t = Ht.exec(p)) n[t[1].toLowerCase() + " "] = (n[t[1].toLowerCase() + " "] || []).concat(t[2]) - } - t = n[e.toLowerCase() + " "] - } - return null == t ? null : t.join(", ") - }, - getAllResponseHeaders: function () { - return h ? p : null - }, - setRequestHeader: function (e, t) { - return null == h && (e = s[e.toLowerCase()] = s[e.toLowerCase()] || e, a[e] = t), this - }, - overrideMimeType: function (e) { - return null == h && (v.mimeType = e), this - }, - statusCode: function (e) { - var t; - if (e) - if (h) T.always(e[T.status]); - else - for (t in e) w[t] = [w[t], e[t]]; - return this - }, - abort: function (e) { - var t = e || u; - return c && c.abort(t), l(0, t), this - } - }; - if (x.promise(T), v.url = ((e || v.url || Tt.href) + "").replace(Pt, Tt.protocol + "//"), v.type = t.method || t.type || v.method || v.type, v.dataTypes = (v.dataType || "*").toLowerCase().match(P) || [""], null == v.crossDomain) { - r = E.createElement("a"); - try { - r.href = v.url, r.href = r.href, v.crossDomain = Wt.protocol + "//" + Wt.host != r.protocol + "//" + r.host - } catch (e) { - v.crossDomain = !0 - } - } - if (v.data && v.processData && "string" != typeof v.data && (v.data = S.param(v.data, v.traditional)), Bt(Rt, v, t, T), h) return T; - for (i in (g = S.event && v.global) && 0 == S.active++ && S.event.trigger("ajaxStart"), v.type = v.type.toUpperCase(), v.hasContent = !Ot.test(v.type), f = v.url.replace(qt, ""), v.hasContent ? v.data && v.processData && 0 === (v.contentType || "").indexOf("application/x-www-form-urlencoded") && (v.data = v.data.replace(jt, "+")) : (o = v.url.slice(f.length), v.data && (v.processData || "string" == typeof v.data) && (f += (Et.test(f) ? "&" : "?") + v.data, delete v.data), !1 === v.cache && (f = f.replace(Lt, "$1"), o = (Et.test(f) ? "&" : "?") + "_=" + Ct.guid++ + o), v.url = f + o), v.ifModified && (S.lastModified[f] && T.setRequestHeader("If-Modified-Since", S.lastModified[f]), S.etag[f] && T.setRequestHeader("If-None-Match", S.etag[f])), (v.data && v.hasContent && !1 !== v.contentType || t.contentType) && T.setRequestHeader("Content-Type", v.contentType), T.setRequestHeader("Accept", v.dataTypes[0] && v.accepts[v.dataTypes[0]] ? v.accepts[v.dataTypes[0]] + ("*" !== v.dataTypes[0] ? ", " + It + "; q=0.01" : "") : v.accepts["*"]), v.headers) T.setRequestHeader(i, v.headers[i]); - if (v.beforeSend && (!1 === v.beforeSend.call(y, T, v) || h)) return T.abort(); - if (u = "abort", b.add(v.complete), T.done(v.success), T.fail(v.error), c = Bt(Mt, v, t, T)) { - if (T.readyState = 1, g && m.trigger("ajaxSend", [T, v]), h) return T; - v.async && 0 < v.timeout && (d = C.setTimeout(function () { - T.abort("timeout") - }, v.timeout)); - try { - h = !1, c.send(a, l) - } catch (e) { - if (h) throw e; - l(-1, e) - } - } else l(-1, "No Transport"); - - function l(e, t, n, r) { - var i, o, a, s, u, l = t; - h || (h = !0, d && C.clearTimeout(d), c = void 0, p = r || "", T.readyState = 0 < e ? 4 : 0, i = 200 <= e && e < 300 || 304 === e, n && (s = function (e, t, n) { - var r, i, o, a, s = e.contents, - u = e.dataTypes; - while ("*" === u[0]) u.shift(), void 0 === r && (r = e.mimeType || t.getResponseHeader("Content-Type")); - if (r) - for (i in s) - if (s[i] && s[i].test(r)) { - u.unshift(i); - break - } if (u[0] in n) o = u[0]; - else { - for (i in n) { - if (!u[0] || e.converters[i + " " + u[0]]) { - o = i; - break - } - a || (a = i) - } - o = o || a - } - if (o) return o !== u[0] && u.unshift(o), n[o] - }(v, T, n)), !i && -1 < S.inArray("script", v.dataTypes) && (v.converters["text script"] = function () {}), s = function (e, t, n, r) { - var i, o, a, s, u, l = {}, - c = e.dataTypes.slice(); - if (c[1]) - for (a in e.converters) l[a.toLowerCase()] = e.converters[a]; - o = c.shift(); - while (o) - if (e.responseFields[o] && (n[e.responseFields[o]] = t), !u && r && e.dataFilter && (t = e.dataFilter(t, e.dataType)), u = o, o = c.shift()) - if ("*" === o) o = u; - else if ("*" !== u && u !== o) { - if (!(a = l[u + " " + o] || l["* " + o])) - for (i in l) - if ((s = i.split(" "))[1] === o && (a = l[u + " " + s[0]] || l["* " + s[0]])) { - !0 === a ? a = l[i] : !0 !== l[i] && (o = s[0], c.unshift(s[1])); - break - } if (!0 !== a) - if (a && e["throws"]) t = a(t); - else try { - t = a(t) - } catch (e) { - return { - state: "parsererror", - error: a ? e : "No conversion from " + u + " to " + o - } - } - } - return { - state: "success", - data: t - } - }(v, s, T, i), i ? (v.ifModified && ((u = T.getResponseHeader("Last-Modified")) && (S.lastModified[f] = u), (u = T.getResponseHeader("etag")) && (S.etag[f] = u)), 204 === e || "HEAD" === v.type ? l = "nocontent" : 304 === e ? l = "notmodified" : (l = s.state, o = s.data, i = !(a = s.error))) : (a = l, !e && l || (l = "error", e < 0 && (e = 0))), T.status = e, T.statusText = (t || l) + "", i ? x.resolveWith(y, [o, l, T]) : x.rejectWith(y, [T, l, a]), T.statusCode(w), w = void 0, g && m.trigger(i ? "ajaxSuccess" : "ajaxError", [T, v, i ? o : a]), b.fireWith(y, [T, l]), g && (m.trigger("ajaxComplete", [T, v]), --S.active || S.event.trigger("ajaxStop"))) - } - return T - }, - getJSON: function (e, t, n) { - return S.get(e, t, n, "json") - }, - getScript: function (e, t) { - return S.get(e, void 0, t, "script") - } - }), S.each(["get", "post"], function (e, i) { - S[i] = function (e, t, n, r) { - return m(t) && (r = r || n, n = t, t = void 0), S.ajax(S.extend({ - url: e, - type: i, - dataType: r, - data: t, - success: n - }, S.isPlainObject(e) && e)) - } - }), S.ajaxPrefilter(function (e) { - var t; - for (t in e.headers) "content-type" === t.toLowerCase() && (e.contentType = e.headers[t] || "") - }), S._evalUrl = function (e, t, n) { - return S.ajax({ - url: e, - type: "GET", - dataType: "script", - cache: !0, - async: !1, - global: !1, - converters: { - "text script": function () {} - }, - dataFilter: function (e) { - S.globalEval(e, t, n) - } - }) - }, S.fn.extend({ - wrapAll: function (e) { - var t; - return this[0] && (m(e) && (e = e.call(this[0])), t = S(e, this[0].ownerDocument).eq(0).clone(!0), this[0].parentNode && t.insertBefore(this[0]), t.map(function () { - var e = this; - while (e.firstElementChild) e = e.firstElementChild; - return e - }).append(this)), this - }, - wrapInner: function (n) { - return m(n) ? this.each(function (e) { - S(this).wrapInner(n.call(this, e)) - }) : this.each(function () { - var e = S(this), - t = e.contents(); - t.length ? t.wrapAll(n) : e.append(n) - }) - }, - wrap: function (t) { - var n = m(t); - return this.each(function (e) { - S(this).wrapAll(n ? t.call(this, e) : t) - }) - }, - unwrap: function (e) { - return this.parent(e).not("body").each(function () { - S(this).replaceWith(this.childNodes) - }), this - } - }), S.expr.pseudos.hidden = function (e) { - return !S.expr.pseudos.visible(e) - }, S.expr.pseudos.visible = function (e) { - return !!(e.offsetWidth || e.offsetHeight || e.getClientRects().length) - }, S.ajaxSettings.xhr = function () { - try { - return new C.XMLHttpRequest - } catch (e) {} - }; - var _t = { - 0: 200, - 1223: 204 - }, - zt = S.ajaxSettings.xhr(); - y.cors = !!zt && "withCredentials" in zt, y.ajax = zt = !!zt, S.ajaxTransport(function (i) { - var o, a; - if (y.cors || zt && !i.crossDomain) return { - send: function (e, t) { - var n, r = i.xhr(); - if (r.open(i.type, i.url, i.async, i.username, i.password), i.xhrFields) - for (n in i.xhrFields) r[n] = i.xhrFields[n]; - for (n in i.mimeType && r.overrideMimeType && r.overrideMimeType(i.mimeType), i.crossDomain || e["X-Requested-With"] || (e["X-Requested-With"] = "XMLHttpRequest"), e) r.setRequestHeader(n, e[n]); - o = function (e) { - return function () { - o && (o = a = r.onload = r.onerror = r.onabort = r.ontimeout = r.onreadystatechange = null, "abort" === e ? r.abort() : "error" === e ? "number" != typeof r.status ? t(0, "error") : t(r.status, r.statusText) : t(_t[r.status] || r.status, r.statusText, "text" !== (r.responseType || "text") || "string" != typeof r.responseText ? { - binary: r.response - } : { - text: r.responseText - }, r.getAllResponseHeaders())) - } - }, r.onload = o(), a = r.onerror = r.ontimeout = o("error"), void 0 !== r.onabort ? r.onabort = a : r.onreadystatechange = function () { - 4 === r.readyState && C.setTimeout(function () { - o && a() - }) - }, o = o("abort"); - try { - r.send(i.hasContent && i.data || null) - } catch (e) { - if (o) throw e - } - }, - abort: function () { - o && o() - } - } - }), S.ajaxPrefilter(function (e) { - e.crossDomain && (e.contents.script = !1) - }), S.ajaxSetup({ - accepts: { - script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function (e) { - return S.globalEval(e), e - } - } - }), S.ajaxPrefilter("script", function (e) { - void 0 === e.cache && (e.cache = !1), e.crossDomain && (e.type = "GET") - }), S.ajaxTransport("script", function (n) { - var r, i; - if (n.crossDomain || n.scriptAttrs) return { - send: function (e, t) { - r = S(" - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/pagination.php b/desarrollo/diseno/support-center/pagination.php deleted file mode 100644 index bb416bf5..00000000 --- a/desarrollo/diseno/support-center/pagination.php +++ /dev/null @@ -1,622 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - - - - - -
- -
- - - -
- -
- -
- -
-
-

Pagination

-

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

- -
-
- -
- -
- -
- - - -
- -
- -
- -
- -
- - -
-
-
-

Pagination

-
-
-

Documentation and examples for showing pagination to indicate a - series of related content exists across multiple pages.

-
- -
-
-
-    
-<nav aria-label="Page navigation example">
-    <ul class="pagination">
-        <li class="page-item"><a class="page-link" href="#">Previous</a></li>
-        <li class="page-item"><a class="page-link" href="#">1</a></li>
-        <li class="page-item"><a class="page-link" href="#">2</a></li>
-        <li class="page-item"><a class="page-link" href="#">3</a></li>
-        <li class="page-item"><a class="page-link" href="#">Next</a></li>
-    </ul>
-</nav>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Working with icons

-
-
-

Looking to use an icon or symbol in place of text for some pagination links? Be - sure to provide proper screen reader support with aria attributes and the .sr-only utility.

-
- -
- -
-
-    
-<nav aria-label="Page navigation example">
-    <ul class="pagination">
-        <li class="page-item">
-            <a class="page-link" href="#" aria-label="Previous">
-                <span aria-hidden="true">&laquo;</span>
-                <span class="sr-only">Previous</span>
-            </a>
-        </li>
-        <li class="page-item"><a class="page-link" href="#">1</a></li>
-        <li class="page-item"><a class="page-link" href="#">2</a></li>
-        <li class="page-item"><a class="page-link" href="#">3</a></li>
-        <li class="page-item">
-            <a class="page-link" href="#" aria-label="Next">
-                <span aria-hidden="true">&raquo;</span>
-                <span class="sr-only">Next</span>
-            </a>
-        </li>
-    </ul>
-</nav>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Disabled and active states

-
-
-
- -
-
-
-
-    <nav aria-label="...">
-    <ul class="pagination">
-        <li class="page-item disabled">
-            <a class="page-link" href="#" tabindex="-1">Previous</a>
-        </li>
-        <li class="page-item"><a class="page-link" href="#">1</a></li>
-        <li class="page-item active">
-            <a class="page-link" href="#">2 <span class="sr-only">(current)</span></a>
-        </li>
-        <li class="page-item"><a class="page-link" href="#">3</a></li>
-        <li class="page-item">
-            <a class="page-link" href="#">Next</a>
-        </li>
-    </ul>
-</nav>
-
-
Markup
-
Copy -
-
-
-
-
-
-
-

Alignment

-
-
-

Change the alignment of pagination components with flexbox - utilities.

-
- -
-
-
-
-<nav aria-label="Page navigation example">
-    <ul class="pagination justify-content-center">
-        <li class="page-item disabled">
-            <a class="page-link" href="#" tabindex="-1">Previous</a>
-        </li>
-        <li class="page-item"><a class="page-link" href="#">1</a></li>
-        <li class="page-item"><a class="page-link" href="#">2</a></li>
-        <li class="page-item"><a class="page-link" href="#">3</a></li>
-        <li class="page-item">
-            <a class="page-link" href="#">Next</a>
-        </li>
-    </ul>
-</nav>
-
-
Markup
-
Copy -
-
-
-
- -
-
-
-
-<nav aria-label="Page navigation example">
-    <ul class="pagination justify-content-end">
-        <li class="page-item disabled">
-            <a class="page-link" href="#" tabindex="-1">Previous</a>
-        </li>
-        <li class="page-item"><a class="page-link" href="#">1</a></li>
-        <li class="page-item"><a class="page-link" href="#">2</a></li>
-        <li class="page-item"><a class="page-link" href="#">3</a></li>
-        <li class="page-item">
-            <a class="page-link" href="#">Next</a>
-        </li>
-    </ul>
-</nav>
-
-
Markup
-
Copy -
-
-
-
-
-
- -
- -
- -
- - - - - - - -
- -
- -
-
-

Docuto

-

Docuto is a Support & Help Center Template to create - your own - 24/7 self-service customer - support center.

-
-
- - -
- - - -
- -
- - - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/diseno/support-center/register.php b/desarrollo/diseno/support-center/register.php deleted file mode 100644 index 294d78e5..00000000 --- a/desarrollo/diseno/support-center/register.php +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - Soporte - La Pieza.DO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
- - - -
- -
- -
- -
- - -
- -
- -
- -
- - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/desarrollo/index b/desarrollo/index new file mode 100644 index 00000000..d8bf81d3 Binary files /dev/null and b/desarrollo/index differ diff --git a/desarrollo/packed-refs b/desarrollo/packed-refs new file mode 100644 index 00000000..0beba1fa --- /dev/null +++ b/desarrollo/packed-refs @@ -0,0 +1,5 @@ +# pack-refs with: peeled fully-peeled sorted +20f1c60600999aab8e93a51ae8f94b6e933a067e refs/heads/alejandro +1ad40ed5af32995b02eaec0dafb6049986ef37cf refs/heads/master +a0d4f5ba3bb3e9880f74857dd3a9fe414fb3f3c7 refs/remotes/origin/alejandro +229640246a2619c40973bafef47c0090fcae259f refs/remotes/origin/master diff --git a/desarrollo/temp/IWoZhNx6FV/addons/delivery_boy_addon.zip b/desarrollo/public/addons/CRTIoky0Th7nOjSyz1pAtVefUuerBPRFRvC9DvWf.zip similarity index 100% rename from desarrollo/temp/IWoZhNx6FV/addons/delivery_boy_addon.zip rename to desarrollo/public/addons/CRTIoky0Th7nOjSyz1pAtVefUuerBPRFRvC9DvWf.zip diff --git a/desarrollo/public/affiliate_banner.jpg b/desarrollo/public/affiliate_banner.jpg deleted file mode 100644 index 2642e24f..00000000 Binary files a/desarrollo/public/affiliate_banner.jpg and /dev/null differ diff --git a/desarrollo/public/assets/css/aiz-core.css b/desarrollo/public/assets/css/aiz-core.css index 273c9578..1119b101 100644 --- a/desarrollo/public/assets/css/aiz-core.css +++ b/desarrollo/public/assets/css/aiz-core.css @@ -417,12 +417,17 @@ fixed-bottom 1030*/ white-space: nowrap; } @media (max-width: 991.98px) { + + .mobile-hor-swipe { -webkit-overflow-scrolling: touch; overflow-x: auto; white-space: nowrap; } } +.mt-lapieza { + margin-top: 13%; +} .top-0 { top: 0 !important; @@ -728,6 +733,11 @@ fixed-bottom 1030*/ .hov-bg-dark:hover { background-color: var(--dark) !important; } +.bg-red, +.hov-bg-red:hover { + background-color: #E63108 !important; +} + .bg-soft-dark, .hov-bg-soft-dark:hover { background-color: var(--soft-dark) !important; @@ -982,6 +992,11 @@ hr { .hov-text-gray:hover { color: var(--gray) !important; } + +.text-blue-lapieza , +.hov-text-blue-lapieza:hover { + color: #003b73 !important; +} .text-gray-dark { color: var(--gray-dark) !important; } @@ -1869,6 +1884,9 @@ hr { } /* sm */ @media (min-width: 576px) { + .mt-lapieza { + margin-top: 13%; + } .border-sm { border: 1px solid #dfdfe6 !important; } @@ -2779,6 +2797,9 @@ hr { } /* md */ @media (min-width: 768px) { + .mt-lapieza { + margin-top: 13%; + } .border-md { border: 1px solid #dfdfe6 !important; } @@ -3677,6 +3698,9 @@ hr { } /* lg */ @media (min-width: 992px) { + .mt-lapieza { + margin-top: 13%; + } .border-lg { border: 1px solid #dfdfe6 !important; } @@ -11138,6 +11162,12 @@ ul.apps a:hover i{ .rounded-content{ border-radius: 50%; } + +.rounded-content-lapieza{ + border-radius: 100%; + background-color: #fff; +} + .rounded-1{ border-radius: 0.25rem !important; } @@ -11153,6 +11183,16 @@ ul.apps a:hover i{ .rounded-lapieza{ border-radius: 10px !important; } + +.rounded-15px{ + border-radius: 15px !important; +} + +.rounded-25px{ + border-radius: 25px !important; +} + + .flash-deal-item:hover .flash-deal-price{ padding-top: 0 !important; } diff --git a/desarrollo/public/assets/css/aiz-core_old.css b/desarrollo/public/assets/css/aiz-core_old.css new file mode 100644 index 00000000..f2a1276e --- /dev/null +++ b/desarrollo/public/assets/css/aiz-core_old.css @@ -0,0 +1,11272 @@ +/* + +Don't modify this file. +use custom-style.css + +*/ + +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --soft-white: #b5b5bf; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #f77b0b; + --hov-primary: #e56f0e; + --soft-primary: rgba(247, 123, 11, 0.15); + --secondary: #8f97ab; + --soft-secondary: rgba(143, 151, 171, 0.15); + --success: #0abb75; + --soft-success: rgba(10, 187, 117, 0.15); + --info: #25bcf1; + --soft-info: rgba(37, 188, 241, 0.15); + --warning: #ffc519; + --soft-warning: rgba(255, 197, 25, 0.15); + --danger: #ef486a; + --soft-danger: rgba(239, 72, 106, 0.15); + --light: #f2f3f8; + --soft-light: #dfdfe6; + --dark: #111723; + --soft-dark: rgba(42, 50, 66, 0.15); + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", + Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, + "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", + "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, + "Liberation Mono", "Courier New", monospace; +} +.tagify { + --tags-border-color: #dfdfe6; + --tag-bg: #e2e5ec; + --tag-hover: #d9e6ff; + --tag-text-color: #212529; + --tag-text-color--edit: #212529; + --tag-pad: 0.3rem 0.5rem; + --tag-inset-shadow-size: 1.1em; + --tag-invalid-color: #d39494; + --tag-invalid-bg: rgba(253, 57, 75, 0.5); + --tag-remove-bg: rgba(253, 57, 75, 0.3); + --tag-remove-btn-bg: none; + --tag-remove-btn-bg--hover: #fd394b; + --tag--min-width: 1ch; + --tag--max-width: auto; + --tag-hide-transition: 0.3s; + --loader-size: 0.8em; +} +pre { + white-space: initial; +} +html { + scroll-behavior: smooth; +} + +/* common helper utilites */ +.c-scrollbar::-webkit-scrollbar { + width: 4px; + background: #1e1e2d; + border-radius: 3px; +} +.c-scrollbar::-webkit-scrollbar-track { + background: transparent; +} +.c-scrollbar::-webkit-scrollbar-thumb { + background: rgba(255, 255, 255, 0.2); + border-radius: 3px; +} +.c-scrollbar { + scrollbar-color: rgba(255, 255, 255, 0.2); + scrollbar-width: thin; +} + +.c-scrollbar-light::-webkit-scrollbar, +.uppy-Dashboard-files::-webkit-scrollbar, +.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar { + width: 4px; + background: rgba(24, 28, 41, 0.08); + border-radius: 3px; +} +.c-scrollbar-light::-webkit-scrollbar-track, +.uppy-Dashboard-files::-webkit-scrollbar-track, +.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-track { + background: transparent; +} +.c-scrollbar-light::-webkit-scrollbar-thumb, +.uppy-Dashboard-files::-webkit-scrollbar-thumb, +.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-thumb { + background: rgba(24, 28, 41, 0.1); + border-radius: 3px; +} +.c-scrollbar-light, +.uppy-Dashboard-files, +.bootstrap-select .dropdown-menu .inner { + scrollbar-color: rgba(24, 28, 41, 0.08); + scrollbar-width: thin; +} + +.no-scrollbar::-webkit-scrollbar { + width: 0; +} +.no-scrollbar::-webkit-scrollbar-track { + background: transparent; +} +.no-scrollbar::-webkit-scrollbar-thumb { + background: transparent; +} + +.img-fit { + max-height: 100%; + width: 100%; + object-fit: cover; +} + +.overlay { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + right: 0; + bottom: 0; + transition: all 0.3s ease-in; + -webkit-transition: all 0.3s ease-in; + z-index: 1; + background-color: rgba(0, 0, 0, 0.6); +} +.overlay.overlay-fixed { + position: fixed; +} +.hov-overlay .overlay, +.hov-container .hov-box { + visibility: hidden; + opacity: 0; + -webkit-transition: visibility 0.3s ease, opacity 0.3s ease; + transition: visibility 0.3s ease, opacity 0.3s ease; +} +.hov-overlay:hover .overlay, +.hov-container:hover .hov-box { + visibility: visible; + opacity: 1; +} +.hov-scale-img:hover img, +.hov-scale:hover{ + transform: scale(1.05); +} +.fullscreen { + min-height: 100vh; +} + +/*modal 1050 +backdrop 1040 +fixed-bottom 1030*/ + +.z--1 { + z-index: -1 !important; +} +.z-0 { + z-index: 0 !important; +} +.z-1 { + z-index: 1 !important; +} +.z-2 { + z-index: 2 !important; +} +.z-3 { + z-index: 3 !important; +} +.z-5 { + z-index: 5 !important; +} +.z-1020 { + z-index: 1020 !important; +} +.z-1025 { + z-index: 1025 !important; +} +.z-1035 { + z-index: 1035 !important; +} +.z-1045 { + z-index: 1045 !important; +} + +.minw-0 { + min-width: 0; +} +.text-truncate-2 { + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; +} +.text-truncate-3 { + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; +} +.c-pointer { + cursor: pointer !important; +} +.c-not-allowed { + cursor: not-allowed !important; +} +.c-default { + cursor: default !important; +} + +/* Position */ +.attached-top, +.attached-bottom { + position: absolute; + left: 0; + right: 0; + width: 100%; + z-index: 2; +} +.attached-top { + top: 0; +} +.attached-bottom { + bottom: 0; +} +.separator { + position: relative; + text-align: center; + z-index: 1; +} + +.separator:before { + position: absolute; + content: ""; + width: 100%; + height: 1px; + background: #ebedf2; + left: 0; + right: 0; + top: 50%; + z-index: -1; +} +.absolute-center { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} +.absolute-full { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; +} +.absolute-top-right { + position: absolute; + top: 0; + right: 0; +} +[dir="rtl"] .absolute-top-right { + right: auto; + left: 0; +} +.absolute-top-right--2px{ + position: absolute; + top: -2px; + right: -2px; +} +.absolute-top-right--5px{ + position: absolute; + top: -5px; + right: -5px; +} +.absolute-top-right--10px{ + position: absolute; + top: -10px; + right: -10px; +} +.absolute-top-left { + position: absolute; + top: 0; + left: 0; +} +[dir="rtl"] .absolute-top-left { + left: auto; + right: 0; +} +.absolute-bottom-right { + position: absolute; + bottom: 0; + right: 0; +} +[dir="rtl"] .absolute-bottom-right { + left: auto; + right: 0; +} +.absolute-bottom-left { + position: absolute; + bottom: 0; + left: 0; +} +[dir="rtl"] .absolute-bottom-left { + left: auto; + right: 0; +} +.absolute-top-center { + position: absolute; + top: 0; + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); +} +.sticky-bottom { + position: -webkit-sticky; + position: sticky; + bottom: 0; + z-index: 1020; +} +.recommended-ribbon { + font-size: 12px; + font-weight: 700; + text-transform: uppercase; + color: #fff; + background: #ff0000; + transform: rotate(45deg); + -webkit-transform: rotate(45deg); + padding: 5px 30px; + top: 29px; + right: -40px; +} + +.dot-loader > div { + display: inline-flex; + width: 8px; + height: 8px; + border-radius: 100%; + margin: 0 2px; + background: #777; + -webkit-animation: loader 1.48s ease-in-out infinite both; + animation: loader 1.48s ease-in-out infinite both; +} +.dot-loader > div:nth-child(1) { + -webkit-animation-delay: -0.32s; + animation-delay: -0.32s; +} +.dot-loader > div:nth-child(2) { + -webkit-animation-delay: -0.16s; + animation-delay: -0.16s; +} + +.attributes-color-container { + display: block; + width: 40px; + height: 25px; + border: solid 1px #000; +} + +@-webkit-keyframes loader { + 0%, + 80%, + 100% { + -webkit-transform: scale(0); + transform: scale(0); + opacity: 0.2; + } + 40% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0.8; + } +} + +@keyframes loader { + 0%, + 80%, + 100% { + -webkit-transform: scale(0); + transform: scale(0); + opacity: 0.2; + } + 40% { + -webkit-transform: scale(1); + transform: scale(1); + opacity: 0.8; + } +} + +.hor-swipe { + -webkit-overflow-scrolling: touch; + overflow-x: auto; + overflow-y: hidden; + white-space: nowrap; +} +@media (max-width: 991.98px) { + .mobile-hor-swipe { + -webkit-overflow-scrolling: touch; + overflow-x: auto; + white-space: nowrap; + } +} + +.top-0 { + top: 0 !important; +} +.top-100 { + top: 100% !important; +} +.bottom-0 { + bottom: 0 !important; +} +.bottom-100 { + bottom: 100% !important; +} +.left-0 { + left: 0 !important; +} +.left-100 { + left: 100% !important; +} +.right-0 { + right: 0 !important; +} +.right-100 { + right: 100% !important; +} + +/*bootstrap extend*/ +.fw-100 { + font-weight: 100 !important; +} +.fw-200 { + font-weight: 200 !important; +} +.fw-300 { + font-weight: 300 !important; +} +.fw-400 { + font-weight: 400 !important; +} +.fw-500 { + font-weight: 500 !important; +} +.fw-600 { + font-weight: 600 !important; +} +.fw-700 { + font-weight: 700 !important; +} +.fw-800 { + font-weight: 800 !important; +} +.fw-900 { + font-weight: 900 !important; +} + +.fs-8 { + font-size: 0.5rem !important; +} +.fs-9 { + font-size: 0.5625rem !important; +} +.fs-10 { + font-size: 0.625rem !important; +} +.fs-11 { + font-size: 0.6875rem !important; +} +.fs-12 { + font-size: 0.75rem !important; +} +.fs-13 { + font-size: 0.8125rem !important; +} +.fs-14 { + font-size: 0.875rem !important; +} +.fs-15 { + font-size: 0.9375rem !important; +} +.fs-15 { + font-size: 0.9375rem !important; +} +.fs-16 { + font-size: 1rem !important; +} +.fs-17 { + font-size: 1.0625rem !important; +} +.fs-18 { + font-size: 1.125rem !important; +} +.fs-19 { + font-size: 1.1875rem !important; +} +.fs-20 { + font-size: 1.25rem !important; +} +.fs-21 { + font-size: 1.3125rem !important; +} +.fs-22 { + font-size: 1.375rem !important; +} +.fs-23 { + font-size: 1.4375rem !important; +} +.fs-24 { + font-size: 1.5rem !important; +} +.fs-26 { + font-size: 1.625rem !important; +} +.fs-28 { + font-size: 1.75rem !important; +} +.fs-30 { + font-size: 1.875rem !important; +} +.fs-36 { + font-size: 2.25rem !important; +} + +.lh-1 { + line-height: 1 !important; +} +.lh-1-1 { + line-height: 1.1 !important; +} +.lh-1-2 { + line-height: 1.2 !important; +} +.lh-1-3 { + line-height: 1.3 !important; +} +.lh-1-4 { + line-height: 1.4 !important; +} +.lh-1-5 { + line-height: 1.5 !important; +} +.lh-1-6 { + line-height: 1.6 !important; +} +.lh-1-7 { + line-height: 1.7 !important; +} +.lh-1-8 { + line-height: 1.8 !important; +} +.lh-1-9 { + line-height: 1.9 !important; +} +.lh-2 { + line-height: 2 !important; +} + +.opacity-0, +.hov-opacity-0:hover { + opacity: 0 !important; +} +.opacity-10 , +.hov-opacity-10:hover { + opacity: 0.1 !important; +} +.opacity-20 , +.hov-opacity-20:hover { + opacity: 0.2 !important; +} +.opacity-30 , +.hov-opacity-30:hover { + opacity: 0.3 !important; +} +.opacity-40 , +.hov-opacity-40:hover { + opacity: 0.4 !important; +} +.opacity-50 , +.hov-opacity-50:hover { + opacity: 0.5 !important; +} +.opacity-60 , +.hov-opacity-60:hover { + opacity: 0.6 !important; +} +.opacity-70 , +.hov-opacity-70:hover { + opacity: 0.7 !important; +} +.opacity-80 , +.hov-opacity-80:hover { + opacity: 0.8 !important; +} +.opacity-90 , +.hov-opacity-90:hover { + opacity: 0.9 !important; +} +.opacity-100 , +.hov-opacity-100:hover { + opacity: 1 !important; +} + +.shadow-xs , +.hov-shadow-xs:hover { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05) !important; +} +.shadow-sm , +.hov-shadow-sm:hover { + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; +} +.shadow , +.hov-shadow:hover { + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; +} +.shadow-md , +.hov-shadow-md:hover { + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), + 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; +} +.shadow-lg , +.hov-shadow-lg:hover { + box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), + 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; +} +.shadow-xl , +.hov-shadow-xl:hover { + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), + 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; +} +.shadow-2xl , +.hov-shadow-2xl:hover { + box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; +} +.shadow-out , +.hov-shadow-out:hover { + z-index: 2 !important; + box-shadow: 0px 20px 40px rgb(0 0 0 / 16%) !important; + /* box-shadow: 0px 2px 30px -7px rgb(0 0 0 / 30%) !important; */ +} +.shadow-none , +.hov-shadow-none:hover { + box-shadow: none !important; +} + +.bg-cover { + background-size: cover; +} +.bg-center { + background-position: center center; +} +.bg-no-repeat { + background-repeat: no-repeat; +} + +.bg-primary , +.hov-bg-primary:hover { + background-color: var(--primary) !important; +} +.bg-soft-primary, +.hov-bg-soft-primary:hover { + background-color: var(--soft-primary) !important; +} +.bg-secondary, +.hov-bg-secondary:hover { + background-color: var(--secondary) !important; +} +.bg-soft-secondary, +.hov-bg-soft-secondary:hover { + background-color: var(--soft-secondary) !important; +} +.bg-success, +.hov-bg-success:hover { + background-color: var(--success) !important; +} +.bg-soft-success, +.hov-bg-soft-success:hover { + background-color: var(--soft-success) !important; +} +.bg-info, +.hov-bg-info:hover { + background-color: var(--info) !important; +} +.bg-soft-info, +.hov-bg-soft-info:hover { + background-color: var(--soft-info) !important; +} +.bg-warning, +.hov-bg-warning:hover { + background-color: var(--warning) !important; +} +.bg-soft-warning, +.hov-bg-soft-warning:hover { + background-color: var(--soft-warning) !important; +} +.bg-danger, +.hov-bg-danger:hover { + background-color: var(--danger) !important; +} +.bg-soft-danger, +.hov-bg-soft-danger:hover { + background-color: var(--soft-danger) !important; +} +.bg-dark, +.hov-bg-dark:hover { + background-color: var(--dark) !important; +} +.bg-soft-dark, +.hov-bg-soft-dark:hover { + background-color: var(--soft-dark) !important; +} +.bg-light, +.hov-bg-light:hover { + background-color: var(--light) !important; +} +.bg-black, +.hov-bg-black:hover { + background-color: #17171f !important; +} +.bg-soft-light, +.hov-bg-soft-light:hover { + background-color: var(--soft-light) !important; +} +.bg-gray, +.hov-bg-gray:hover { + background-color: var(--gray) !important; +} +.bg-soft-white{ + background-color: var(--soft-white) !important; +} +.hov-bg-white:hover { + background-color: #fff !important; +} + +.bg-black-10, +.hov-bg-black-10:hover{ + background-color: rgb(0 0 0 / 10%) !important; +} +.bg-black-20, +.hov-bg-black-20:hover, +.bg-black-10:hover{ + background-color: rgb(0 0 0 / 20%) !important; +} + +.bg-grad-1 { + background-color: #eb4786; + background-image: linear-gradient(315deg, #eb4786 0%, #b854a6 74%); +} +.bg-grad-2 { + background-color: #875fc0; + background-image: linear-gradient(315deg, #875fc0 0%, #5346ba 74%); +} +.bg-grad-3 { + background-color: #47c5f4; + background-image: linear-gradient(315deg, #47c5f4 0%, #6791d9 74%); +} +.bg-grad-4 { + background-color: #ffb72c; + background-image: linear-gradient(315deg, #ffb72c 0%, #f57f59 74%); +} +.bg-grad-5 { + background-color: #f2d470; + background-image: linear-gradient( 120deg, #f2d470 0%, #f39f3d 100%); +} + +[class*="border"], +hr { + /* border-color: #dfdfe6 !important; */ + border-color: #ededf2 !important; +} + +.border-2{ + border: 2px solid !important; +} +.border-3{ + border: 2px solid !important; +} + +.border-gray-100 { + border-color: #f7fafc !important; +} +.border-gray-200 { + border-color: #edf2f7 !important; +} +.border-gray-300 { + border-color: #e2e8f0 !important; +} +.border-gray-400 { + border-color: #cbd5e0 !important; +} +.border-gray-500 { + border-color: #a0aec0 !important; +} +.border-gray-600 { + border-color: #718096 !important; +} +.border-gray-700 { + border-color: #4a5568 !important; +} +.border-gray-800 { + border-color: #2d3748 !important; +} +.border-gray-900 { + border-color: #1a202c !important; +} + +.border-primary { + border-color: var(--primary) !important; +} +.border-secondary { + border-color: var(--secondary) !important; +} +.border-success { + border-color: var(--success) !important; +} +.border-info { + border-color: var(--info) !important; +} +.border-warning { + border-color: var(--warning) !important; +} +.border-danger { + border-color: var(--danger) !important; +} +.border-light { + border-color: var(--light) !important; +} +.border-dark { + border-color: var(--dark) !important; +} + +.border-soft-primary { + border-color: var(--soft-primary) !important; +} +.border-soft-secondary { + border-color: var(--soft-secondary) !important; +} +.border-soft-success { + border-color: var(--soft-success) !important; +} +.border-soft-info { + border-color: var(--soft-info) !important; +} +.border-soft-warning { + border-color: var(--soft-warning) !important; +} +.border-soft-danger { + border-color: var(--soft-danger) !important; +} +.border-soft-dark { + border-color: var(--soft-dark) !important; +} +.border-soft-light { + border-color: var(--soft-light) !important; +} +.spinner-border { + border-right-color: transparent !important; +} + +.border-width-2 { + border-width: 2px !important; +} +.border-width-3 { + border-width: 3px !important; +} +.border-width-4 { + border-width: 4px !important; +} +.border-bottom-6px { + border-bottom: 6px solid !important; + border-bottom-color: var(--soft-light) !important; +} +.done .border-bottom-6px { + border-bottom-color: var(--success) !important; +} +.active .border-bottom-6px { + border-bottom-color: var(--primary) !important; +} + +.border-dotted { + border-style: dotted !important; +} +.border-dashed { + border-style: dashed !important; +} +.border-transparent { + border-color: transparent !important; +} +.hov-border:hover { + border-color: #dee2e6 !important; +} +.hov-border-primary:hover { + border-color: var(--primary) !important; +} + +.text-primary, +.hov-text-primary:hover { + color: var(--primary) !important; +} +.text-soft-primary, +.hov-text-soft-primary:hover { + color: var(--soft-primary) !important; +} +.text-secondary, +.hov-text-secondary:hover { + color: var(--secondary) !important; +} +.text-soft-secondary, +.hov-text-soft-secondary:hover { + color: var(--soft-secondary) !important; +} +.text-success, +.hov-text-success:hover { + color: var(--success) !important; +} +.text-soft-success, +.hov-text-soft-success:hover { + color: var(--soft-success) !important; +} +.text-info, +.hov-text-info:hover { + color: var(--info) !important; +} +.text-soft-info, +.hov-text-soft-info:hover { + color: var(--soft-info) !important; +} +.text-warning, +.hov-text-warning:hover { + color: var(--warning) !important; +} +.text-soft-warning, +.hov-text-soft-warning:hover { + color: var(--soft-warning) !important; +} +.text-danger, +.hov-text-danger:hover { + color: var(--danger) !important; +} +.text-soft-danger, +.hov-text-soft-danger:hover { + color: var(--soft-danger) !important; +} +.text-dark, +.hov-text-dark:hover { + color: var(--dark) !important; +} +.text-soft-dark, +.hov-text-soft-dark:hover { + color: var(--soft-dark) !important; +} +.text-gray , +.hov-text-gray:hover { + color: var(--gray) !important; +} +.text-gray-dark { + color: var(--gray-dark) !important; +} +.text-light, +.hov-text-light:hover { + color: var(--light) !important; +} +.text-soft-light{ + color: var(--soft-light) !important; +} +.text-soft-white{ + color: var(--soft-white) !important; +} +.text-blue { + color: var(--blue) !important; +} +.text-inherit { + color: inherit !important; +} +.hov-text-white:hover { + color: #fff !important; +} +.hov-text-bold:hover { + font-weight: bold !important; +} + +.w-auto { + width: auto; +} +.w-5px, +.size-5px { + width: 5px; +} +.w-10px, +.size-10px { + width: 10px; +} +.w-15px, +.size-15px { + width: 15px; +} +.w-20px, +.size-20px { + width: 20px; +} +.w-25px, +.size-25px { + width: 25px; +} +.w-30px, +.size-30px { + width: 30px; +} +.w-35px, +.size-35px { + width: 35px; +} +.w-40px, +.size-40px { + width: 40px; +} +.w-45px, +.size-45px { + width: 45px; +} +.w-48px, +.size-48px { + width: 48px; +} +.w-50px, +.size-50px { + width: 50px; +} +.w-60px, +.size-60px { + width: 60px; +} +.w-64px, +.size-64px { + width: 64px; +} +.w-70px, +.size-70px { + width: 70px; +} +.w-80px, +.size-80px { + width: 80px; +} +.w-90px, +.size-90px { + width: 90px; +} +.w-100px, +.size-100px { + width: 100px; +} +.w-110px, +.size-110px { + width: 110px; +} +.w-120px, +.size-120px { + width: 120px; +} +.w-130px, +.size-130px { + width: 130px; +} +.w-140px, +.size-140px { + width: 140px; +} +.w-150px, +.size-150px { + width: 150px; +} +.w-160px, +.size-160px { + width: 160px; +} +.w-170px, +.size-170px { + width: 170px; +} +.w-180px, +.size-180px { + width: 180px; +} +.w-190px, +.size-190px { + width: 190px; +} +.w-200px, +.size-200px { + width: 200px; +} +.w-210px, +.size-210px { + width: 210px; +} +.w-220px, +.size-220px { + width: 220px; +} +.w-230px, +.size-230px { + width: 230px; +} +.w-240px, +.size-240px { + width: 240px; +} +.w-250px, +.size-250px { + width: 250px; +} +.w-260px, +.size-260px { + width: 260px; +} +.w-270px, +.size-270px { + width: 270px; +} +.w-280px, +.size-280px { + width: 280px; +} +.w-290px, +.size-290px { + width: 290px; +} +.w-300px, +.size-300px { + width: 300px; +} +.w-310px, +.size-310px { + width: 310px; +} +.w-320px, +.size-320px { + width: 320px; +} +.w-330px, +.size-330px { + width: 330px; +} +.w-340px, +.size-340px { + width: 340px; +} +.w-350px, +.size-350px { + width: 350px; +} +.w-360px, +.size-360px { + width: 360px; +} +.w-370px, +.size-370px { + width: 370px; +} +.w-380px, +.size-380px { + width: 380px; +} +.w-390px, +.size-390px { + width: 390px; +} +.w-400px, +.size-400px { + width: 400px; +} +.w-410px, +.size-410px { + width: 410px; +} +.w-420px, +.size-420px { + width: 420px; +} +.w-450px, +.size-450px { + width: 450px; +} +.w-500px, +.size-500px { + width: 500px; +} +.w-640px, +.size-640px { + width: 640px; +} + +.h-auto { + height: auto; +} +.h-5px, +.size-5px { + height: 5px; +} +.h-10px, +.size-10px { + height: 10px; +} +.h-15px, +.size-15px { + height: 15px; +} +.h-20px, +.size-20px { + height: 20px; +} +.h-25px, +.size-25px { + height: 25px; +} +.h-30px, +.size-30px { + height: 30px; +} +.h-35px, +.size-35px { + height: 35px; +} +.h-40px, +.size-40px { + height: 40px; +} +.h-45px, +.size-45px { + height: 45px; +} +.h-48px, +.size-48px { + height: 48px; +} +.h-50px, +.size-50px { + height: 50px; +} +.h-60px, +.size-60px { + height: 60px; +} +.h-64px, +.size-64px { + height: 64px; +} +.h-70px, +.size-70px { + height: 70px; +} +.h-80px, +.size-80px { + height: 80px; +} +.h-90px, +.size-90px { + height: 90px; +} +.h-100px, +.size-100px { + height: 100px; +} +.h-110px, +.size-110px { + height: 110px; +} +.h-120px, +.size-120px { + height: 120px; +} +.h-130px, +.size-130px { + height: 130px; +} +.h-140px, +.size-140px { + height: 140px; +} +.h-150px, +.size-150px { + height: 150px; +} +.h-160px, +.size-160px { + height: 160px; +} +.h-170px, +.size-170px { + height: 170px; +} +.h-180px, +.size-180px { + height: 180px; +} +.h-190px, +.size-190px { + height: 190px; +} +.h-200px, +.size-200px { + height: 200px; +} +.h-210px, +.size-210px { + height: 210px; +} +.h-220px, +.size-220px { + height: 220px; +} +.h-230px, +.size-230px { + height: 230px; +} +.h-240px, +.size-240px { + height: 240px; +} +.h-250px, +.size-250px { + height: 250px; +} +.h-260px, +.size-260px { + height: 260px; +} +.h-270px, +.size-270px { + height: 270px; +} +.h-280px, +.size-280px { + height: 280px; +} +.h-290px, +.size-290px { + height: 290px; +} +.h-300px, +.size-300px { + height: 300px; +} +.h-310px, +.size-310px { + height: 310px; +} +.h-320px, +.size-320px { + height: 320px; +} +.h-330px, +.size-330px { + height: 330px; +} +.h-340px, +.size-340px { + height: 340px; +} +.h-350px, +.size-350px { + height: 350px; +} +.h-360px, +.size-360px { + height: 360px; +} +.h-370px, +.size-370px { + height: 370px; +} +.h-380px, +.size-380px { + height: 380px; +} +.h-390px, +.size-390px { + height: 390px; +} +.h-400px, +.size-400px { + height: 400px; +} +.h-410px, +.size-410px { + height: 410px; +} +.h-420px, +.size-420px { + height: 420px; +} +.h-450px, +.size-450px { + height: 450px; +} +.h-460px, +.size-460px { + height: 460px; +} +.h-475px, +.size-475px { + height: 475px; +} +.h-485px, +.size-485px { + height: 485px; +} +.h-500px, +.size-500px { + height: 500px; +} +.h-640px, +.size-640px { + height: 640px; +} + +.pl-6, +.px-6, +.p-6 { + padding-left: 4rem; +} +.pl-7, +.px-7, +.p-7 { + padding-left: 5rem; +} +.pl-8, +.px-8, +.p-8 { + padding-left: 6rem; +} +.pl-9, +.px-9, +.p-9 { + padding-left: 8rem; +} +.pl-10, +.px-10, +.p-10 { + padding-left: 10rem; +} +.pl-11, +.px-11, +.p-11 { + padding-left: 12rem; +} +.pl-12, +.px-12, +.p-12 { + padding-left: 16rem; +} + +.pr-6, +.px-6, +.p-6 { + padding-right: 4rem; +} +.pr-7, +.px-7, +.p-7 { + padding-right: 5rem; +} +.pr-8, +.px-8, +.p-8 { + padding-right: 6rem; +} +.pr-9, +.px-9, +.p-9 { + padding-right: 8rem; +} +.pr-10, +.px-10, +.p-10 { + padding-right: 10rem; +} +.pr-11, +.px-11, +.p-11 { + padding-right: 12rem; +} +.pr-12, +.px-12, +.p-12 { + padding-right: 16rem; +} + +.pt-6, +.py-6, +.p-6 { + padding-top: 4rem; +} +.pt-7, +.py-7, +.p-7 { + padding-top: 5rem; +} +.pt-8, +.py-8, +.p-8 { + padding-top: 6rem; +} +.pt-9, +.py-9, +.p-9 { + padding-top: 8rem; +} +.pt-10, +.py-10, +.p-10 { + padding-top: 10rem; +} +.pt-11, +.py-11, +.p-11 { + padding-top: 12rem; +} +.pt-12, +.py-12, +.p-12 { + padding-top: 16rem; +} + +.pb-6, +.py-6, +.p-6 { + padding-bottom: 4rem; +} +.pb-7, +.py-7, +.p-7 { + padding-bottom: 5rem; +} +.pb-8, +.py-8, +.p-8 { + padding-bottom: 6rem; +} +.pb-9, +.py-9, +.p-9 { + padding-bottom: 8rem; +} +.pb-10, +.py-10, +.p-10 { + padding-bottom: 10rem; +} +.pb-11, +.py-11, +.p-11 { + padding-bottom: 12rem; +} +.pb-12, +.py-12, +.p-12 { + padding-bottom: 16rem; +} + +.pl-5px, +.px-5px, +.p-5px { + padding-left: 5px; +} +.pl-10px, +.px-10px, +.p-10px { + padding-left: 10px; +} +.pl-13px, +.px-13px, +.p-13px { + padding-left: 13px; +} +.pl-14px, +.px-14px, +.p-14px { + padding-left: 14px; +} +.pl-15px, +.px-15px, +.p-15px { + padding-left: 15px; +} +.pl-20px, +.px-20px, +.p-20px { + padding-left: 20px; +} +.pl-25px, +.px-25px, +.p-25px { + padding-left: 25px; +} +.pl-30px, +.px-30px, +.p-30px { + padding-left: 30px; +} + +.pr-5px, +.px-5px, +.p-5px { + padding-right: 5px; +} +.pr-10px, +.px-10px, +.p-10px { + padding-right: 10px; +} +.pr-13px, +.px-13px, +.p-13px { + padding-right: 13px; +} +.pr-14px, +.px-14px, +.p-14px { + padding-right: 14px; +} +.pr-15px, +.px-15px, +.p-15px { + padding-right: 15px; +} +.pr-20px, +.px-20px, +.p-20px { + padding-right: 20px; +} +.pr-25px, +.px-25px, +.p-25px { + padding-right: 25px; +} +.pr-30px, +.px-30px, +.p-30px { + padding-right: 30px; +} + +.pt-5px, +.py-5px, +.p-5px { + padding-top: 5px; +} +.pt-10px, +.py-10px, +.p-10px { + padding-top: 10px; +} +.pt-13px, +.py-13px, +.p-13px { + padding-top: 13px; +} +.pt-14px, +.py-14px, +.p-14px { + padding-top: 14px; +} +.pt-15px, +.py-15px, +.p-15px { + padding-top: 15px; +} +.pt-20px, +.py-20px, +.p-20px { + padding-top: 20px; +} +.pt-25px, +.py-25px, +.p-25px { + padding-top: 25px; +} +.pt-30px, +.py-30px, +.p-30px { + padding-top: 30px; +} + +.pb-5px, +.py-5px, +.p-5px { + padding-bottom: 5px; +} +.pb-10px, +.py-10px, +.p-10px { + padding-bottom: 10px; +} +.pb-15px, +.py-15px, +.p-15px { + padding-bottom: 15px; +} +.pb-15px, +.py-15px, +.p-15px { + padding-bottom: 15px; +} +.pb-20px, +.py-20px, +.p-20px { + padding-bottom: 20px; +} +.pb-25px, +.py-25px, +.p-25px { + padding-bottom: 25px; +} +.pb-30px, +.py-30px, +.p-30px { + padding-bottom: 30px; +} + +.col-xxl-1, +.col-xxl-2, +.col-xxl-3, +.col-xxl-4, +.col-xxl-5, +.col-xxl-6, +.col-xxl-7, +.col-xxl-8, +.col-xxl-9, +.col-xxl-10, +.col-xxl-11, +.col-xxl-12, +.col-xxl, +.col-xxl-auto { + position: relative; + width: 100%; + padding-right: 15px; + padding-left: 15px; +} + +.gutters-5 { + margin-right: -5px; + margin-left: -5px; +} +.gutters-5 > .col, +.gutters-5 > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; +} +.gutters-10 { + margin-right: -10px; + margin-left: -10px; +} +.gutters-10 > .col, +.gutters-10 > [class*="col-"] { + padding-right: 10px; + padding-left: 10px; +} +.gutters-15 { + margin-right: -15px; + margin-left: -15px; +} +.gutters-15 > .col, +.gutters-15 > [class*="col-"] { + padding-right: 15px; + padding-left: 15px; +} +.gutters-16 { + margin-right: -16px; + margin-left: -16px; +} +.gutters-16 > .col, +.gutters-16 > [class*="col-"] { + padding-right: 16px; + padding-left: 16px; +} +.gutters-17 { + margin-right: -17px; + margin-left: -17px; +} +.gutters-17 > .col, +.gutters-17 > [class*="col-"] { + padding-right: 17px; + padding-left: 17px; +} +.gutters-20 { + margin-right: -20px; + margin-left: -20px; +} +.gutters-20 > .col, +.gutters-20 > [class*="col-"] { + padding-right: 20px; + padding-left: 20px; +} +.gutters-25 { + margin-right: -25px; + margin-left: -25px; +} +.gutters-25 > .col, +.gutters-25 > [class*="col-"] { + padding-right: 25px; + padding-left: 25px; +} +.gutters-30 { + margin-right: -30px; + margin-left: -30px; +} +.gutters-30 > .col, +.gutters-30 > [class*="col-"] { + padding-right: 30px; + padding-left: 30px; +} + +[dir="rtl"] .row-cols-1 > * { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; +} +[dir="rtl"] .row-cols-2 > * { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; +} +[dir="rtl"] .row-cols-3 > * { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; +} +[dir="rtl"] .row-cols-4 > * { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; +} +[dir="rtl"] .row-cols-5 > * { + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; +} +[dir="rtl"] .row-cols-6 > * { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; +} +/* sm */ +@media (min-width: 576px) { + .border-sm { + border: 1px solid #dfdfe6 !important; + } + .border-sm-top { + border-top: 1px solid #dfdfe6 !important; + } + .border-sm-right { + border-right: 1px solid #dfdfe6 !important; + } + .border-sm-bottom { + border-bottom: 1px solid #dfdfe6 !important; + } + .border-sm-left { + border-left: 1px solid #dfdfe6 !important; + } + .border-sm-0 { + border: 0 !important; + } + .border-sm-top-0 { + border-top: 0 !important; + } + .border-sm-right-0 { + border-right: 0 !important; + } + .border-sm-bottom-0 { + border-bottom: 0 !important; + } + .border-sm-left-0 { + border-left: 0 !important; + } + + .w-sm-25 { + width: 25% !important; + } + .w-sm-50 { + width: 50% !important; + } + .w-sm-75 { + width: 75% !important; + } + .w-sm-100 { + width: 100% !important; + } + .w-sm-auto { + width: auto !important; + } + + .pl-sm-6, + .px-sm-6, + .p-sm-6 { + padding-left: 4rem; + } + .pl-sm-7, + .px-sm-7, + .p-sm-7 { + padding-left: 5rem; + } + .pl-sm-8, + .px-sm-8, + .p-sm-8 { + padding-left: 6rem; + } + .pl-sm-9, + .px-sm-9, + .p-sm-9 { + padding-left: 8rem; + } + .pl-sm-10, + .px-sm-10, + .p-sm-10 { + padding-left: 10rem; + } + .pl-sm-11, + .px-sm-11, + .p-sm-11 { + padding-left: 12rem; + } + .pl-sm-12, + .px-sm-12, + .p-sm-12 { + padding-left: 16rem; + } + + .pr-sm-6, + .px-sm-6, + .p-sm-6 { + padding-right: 4rem; + } + .pr-sm-7, + .px-sm-7, + .p-sm-7 { + padding-right: 5rem; + } + .pr-sm-8, + .px-sm-8, + .p-sm-8 { + padding-right: 6rem; + } + .pr-sm-9, + .px-sm-9, + .p-sm-9 { + padding-right: 8rem; + } + .pr-sm-10, + .px-sm-10, + .p-sm-10 { + padding-right: 10rem; + } + .pr-sm-11, + .px-sm-11, + .p-sm-11 { + padding-right: 12rem; + } + .pr-sm-12, + .px-sm-12, + .p-sm-12 { + padding-right: 16rem; + } + + .pt-sm-6, + .py-sm-6, + .p-sm-6 { + padding-top: 4rem; + } + .pt-sm-7, + .py-sm-7, + .p-sm-7 { + padding-top: 5rem; + } + .pt-sm-8, + .py-sm-8, + .p-sm-8 { + padding-top: 6rem; + } + .pt-sm-9, + .py-sm-9, + .p-sm-9 { + padding-top: 8rem; + } + .pt-sm-10, + .py-sm-10, + .p-sm-10 { + padding-top: 10rem; + } + .pt-sm-11, + .py-sm-11, + .p-sm-11 { + padding-top: 12rem; + } + .pt-sm-12, + .py-sm-12, + .p-sm-12 { + padding-top: 16rem; + } + + .pb-sm-6, + .py-sm-6, + .p-sm-6 { + padding-bottom: 4rem; + } + .pb-sm-7, + .py-sm-7, + .p-sm-7 { + padding-bottom: 5rem; + } + .pb-sm-8, + .py-sm-8, + .p-sm-8 { + padding-bottom: 6rem; + } + .pb-sm-9, + .py-sm-9, + .p-sm-9 { + padding-bottom: 8rem; + } + .pb-sm-10, + .py-sm-10, + .p-sm-10 { + padding-bottom: 10rem; + } + .pb-sm-11, + .py-sm-11, + .p-sm-11 { + padding-bottom: 12rem; + } + .pb-sm-12, + .py-sm-12, + .p-sm-12 { + padding-bottom: 16rem; + } + + .pl-sm-5px, + .px-sm-5px, + .p-sm-5px { + padding-left: 5px; + } + .pl-sm-10px, + .px-sm-10px, + .p-sm-10px { + padding-left: 10px; + } + .pl-sm-13px, + .px-sm-13px, + .p-sm-13px { + padding-left: 13px; + } + .pl-sm-14px, + .px-sm-14px, + .p-sm-14px { + padding-left: 14px; + } + .pl-sm-15px, + .px-sm-15px, + .p-sm-15px { + padding-left: 15px; + } + .pl-sm-20px, + .px-sm-20px, + .p-sm-20px { + padding-left: 20px; + } + .pl-sm-25px, + .px-sm-25px, + .p-sm-25px { + padding-left: 25px; + } + .pl-sm-30px, + .px-sm-30px, + .p-sm-30px { + padding-left: 30px; + } + + .pr-sm-5px, + .px-sm-5px, + .p-sm-5px { + padding-right: 5px; + } + .pr-sm-10px, + .px-sm-10px, + .p-sm-10px { + padding-right: 10px; + } + .pr-sm-15px, + .px-sm-15px, + .p-sm-15px { + padding-right: 15px; + } + .pr-sm-13px, + .px-sm-13px, + .p-sm-13px { + padding-right: 13px; + } + .pr-sm-14px, + .px-sm-14px, + .p-sm-14px { + padding-right: 14px; + } + .pr-sm-20px, + .px-sm-20px, + .p-sm-20px { + padding-right: 20px; + } + .pr-sm-25px, + .px-sm-25px, + .p-sm-25px { + padding-right: 25px; + } + .pr-sm-30px, + .px-sm-30px, + .p-sm-30px { + padding-right: 30px; + } + + .pt-sm-5px, + .py-sm-5px, + .p-sm-5px { + padding-top: 5px; + } + .pt-sm-10px, + .py-sm-10px, + .p-sm-10px { + padding-top: 10px; + } + .pt-sm-13px, + .py-sm-13px, + .p-sm-13px { + padding-top: 13px; + } + .pt-sm-14px, + .py-sm-14px, + .p-sm-14px { + padding-top: 14px; + } + .pt-sm-15px, + .py-sm-15px, + .p-sm-15px { + padding-top: 15px; + } + .pt-sm-20px, + .py-sm-20px, + .p-sm-20px { + padding-top: 20px; + } + .pt-sm-25px, + .py-sm-25px, + .p-sm-25px { + padding-top: 25px; + } + .pt-sm-30px, + .py-sm-30px, + .p-sm-30px { + padding-top: 30px; + } + + .pb-sm-5px, + .py-sm-5px, + .p-sm-5px { + padding-bottom: 5px; + } + .pb-sm-10px, + .py-sm-10px, + .p-sm-10px { + padding-bottom: 10px; + } + .pb-sm-13px, + .py-sm-13px, + .p-sm-13px { + padding-bottom: 13px; + } + .pb-sm-14px, + .py-sm-14px, + .p-sm-14px { + padding-bottom: 14px; + } + .pb-sm-15px, + .py-sm-15px, + .p-sm-15px { + padding-bottom: 15px; + } + .pb-sm-20px, + .py-sm-20px, + .p-sm-20px { + padding-bottom: 20px; + } + .pb-sm-25px, + .py-sm-25px, + .p-sm-25px { + padding-bottom: 25px; + } + .pb-sm-30px, + .py-sm-30px, + .p-sm-30px { + padding-bottom: 30px; + } + + .w-sm-auto { + width: auto; + } + .w-sm-5px, + .size-sm-5px { + width: 5px; + } + .w-sm-10px, + .size-sm-10px { + width: 10px; + } + .w-sm-15px, + .size-sm-15px { + width: 15px; + } + .w-sm-20px, + .size-sm-20px { + width: 20px; + } + .w-sm-25px, + .size-sm-25px { + width: 25px; + } + .w-sm-30px, + .size-sm-30px { + width: 30px; + } + .w-sm-35px, + .size-sm-35px { + width: 35px; + } + .w-sm-40px, + .size-sm-40px { + width: 40px; + } + .w-sm-45px, + .size-sm-45px { + width: 45px; + } + .w-sm-48px, + .size-sm-48px { + width: 48px; + } + .w-sm-50px, + .size-sm-50px { + width: 50px; + } + .w-sm-60px, + .size-sm-60px { + width: 60px; + } + .w-sm-64px, + .size-sm-64px { + width: 64px; + } + .w-sm-70px, + .size-sm-70px { + width: 70px; + } + .w-sm-80px, + .size-sm-80px { + width: 80px; + } + .w-sm-90px, + .size-sm-90px { + width: 90px; + } + .w-sm-100px, + .size-sm-100px { + width: 100px; + } + .w-sm-110px, + .size-sm-110px { + width: 110px; + } + .w-sm-120px, + .size-sm-120px { + width: 120px; + } + .w-sm-130px, + .size-sm-130px { + width: 130px; + } + .w-sm-140px, + .size-sm-140px { + width: 140px; + } + .w-sm-150px, + .size-sm-150px { + width: 150px; + } + .w-sm-160px, + .size-sm-160px { + width: 160px; + } + .w-sm-170px, + .size-sm-170px { + width: 170px; + } + .w-sm-180px, + .size-sm-180px { + width: 180px; + } + .w-sm-190px, + .size-sm-190px { + width: 190px; + } + .w-sm-200px, + .size-sm-200px { + width: 200px; + } + .w-sm-210px, + .size-sm-210px { + width: 210px; + } + .w-sm-220px, + .size-sm-220px { + width: 220px; + } + .w-sm-230px, + .size-sm-230px { + width: 230px; + } + .w-sm-240px, + .size-sm-240px { + width: 240px; + } + .w-sm-250px, + .size-sm-250px { + width: 250px; + } + .w-sm-260px, + .size-sm-260px { + width: 260px; + } + .w-sm-270px, + .size-sm-270px { + width: 270px; + } + .w-sm-280px, + .size-sm-280px { + width: 280px; + } + .w-sm-290px, + .size-sm-290px { + width: 290px; + } + .w-sm-300px, + .size-sm-300px { + width: 300px; + } + .w-sm-310px, + .size-sm-310px { + width: 310px; + } + .w-sm-320px, + .size-sm-320px { + width: 320px; + } + .w-sm-330px, + .size-sm-330px { + width: 330px; + } + .w-sm-340px, + .size-sm-340px { + width: 340px; + } + .w-sm-350px, + .size-sm-350px { + width: 350px; + } + .w-sm-360px, + .size-sm-360px { + width: 360px; + } + .w-sm-370px, + .size-sm-370px { + width: 370px; + } + .w-sm-380px, + .size-sm-380px { + width: 380px; + } + .w-sm-390px, + .size-sm-390px { + width: 390px; + } + .w-sm-400px, + .size-sm-400px { + width: 400px; + } + .w-sm-410px, + .size-sm-410px { + width: 410px; + } + .w-sm-420px, + .size-sm-420px { + width: 420px; + } + .w-sm-450px, + .size-sm-450px { + width: 450px; + } + .w-sm-500px, + .size-sm-500px { + width: 500px; + } + .w-sm-640px, + .size-sm-640px { + width: 640px; + } + + .h-sm-auto { + height: auto; + } + .h-sm-5px, + .size-sm-5px { + height: 5px; + } + .h-sm-10px, + .size-sm-10px { + height: 10px; + } + .h-sm-15px, + .size-sm-15px { + height: 15px; + } + .h-sm-20px, + .size-sm-20px { + height: 20px; + } + .h-sm-25px, + .size-sm-25px { + height: 25px; + } + .h-sm-30px, + .size-sm-30px { + height: 30px; + } + .h-sm-35px, + .size-sm-35px { + height: 35px; + } + .h-sm-40px, + .size-sm-40px { + height: 40px; + } + .h-sm-45px, + .size-sm-45px { + height: 45px; + } + .h-sm-48px, + .size-sm-48px { + height: 48px; + } + .h-sm-50px, + .size-sm-50px { + height: 50px; + } + .h-sm-60px, + .size-sm-60px { + height: 60px; + } + .h-sm-64px, + .size-sm-64px { + height: 64px; + } + .h-sm-70px, + .size-sm-70px { + height: 70px; + } + .h-sm-80px, + .size-sm-80px { + height: 80px; + } + .h-sm-90px, + .size-sm-90px { + height: 90px; + } + .h-sm-100px, + .size-sm-100px { + height: 100px; + } + .h-sm-110px, + .size-sm-110px { + height: 110px; + } + .h-sm-120px, + .size-sm-120px { + height: 120px; + } + .h-sm-130px, + .size-sm-130px { + height: 130px; + } + .h-sm-140px, + .size-sm-140px { + height: 140px; + } + .h-sm-150px, + .size-sm-150px { + height: 150px; + } + .h-sm-160px, + .size-sm-160px { + height: 160px; + } + .h-sm-170px, + .size-sm-170px { + height: 170px; + } + .h-sm-180px, + .size-sm-180px { + height: 180px; + } + .h-sm-190px, + .size-sm-190px { + height: 190px; + } + .h-sm-200px, + .size-sm-200px { + height: 200px; + } + .h-sm-210px, + .size-sm-210px { + height: 210px; + } + .h-sm-220px, + .size-sm-220px { + height: 220px; + } + .h-sm-230px, + .size-sm-230px { + height: 230px; + } + .h-sm-240px, + .size-sm-240px { + height: 240px; + } + .h-sm-250px, + .size-sm-250px { + height: 250px; + } + .h-sm-260px, + .size-sm-260px { + height: 260px; + } + .h-sm-270px, + .size-sm-270px { + height: 270px; + } + .h-sm-280px, + .size-sm-280px { + height: 280px; + } + .h-sm-290px, + .size-sm-290px { + height: 290px; + } + .h-sm-300px, + .size-sm-300px { + height: 300px; + } + .h-sm-310px, + .size-sm-310px { + height: 310px; + } + .h-sm-320px, + .size-sm-320px { + height: 320px; + } + .h-sm-330px, + .size-sm-330px { + height: 330px; + } + .h-sm-340px, + .size-sm-340px { + height: 340px; + } + .h-sm-350px, + .size-sm-350px { + height: 350px; + } + .h-sm-360px, + .size-sm-360px { + height: 360px; + } + .h-sm-370px, + .size-sm-370px { + height: 370px; + } + .h-sm-380px, + .size-sm-380px { + height: 380px; + } + .h-sm-390px, + .size-sm-390px { + height: 390px; + } + .h-sm-400px, + .size-sm-400px { + height: 400px; + } + .h-sm-410px, + .size-sm-410px { + height: 410px; + } + .h-sm-420px, + .size-sm-420px { + height: 420px; + } + .h-sm-450px, + .size-sm-450px { + height: 450px; + } + .h-sm-460px, + .size-sm-460px { + height: 460px; + } + .h-sm-475px, + .size-sm-475px { + height: 475px; + } + .h-sm-485px, + .size-sm-485px { + height: 485px; + } + .h-sm-500px, + .size-sm-500px { + height: 500px; + } + .h-sm-640px, + .size-sm-640px { + height: 640px; + } + + .sm-no-gutters { + margin-right: -0px; + margin-left: -0px; + } + .sm-no-gutters > .col, + .sm-no-gutters > [class*="col-"] { + padding-right: 0px; + padding-left: 0px; + } + .sm-gutters-5 { + margin-right: -5px; + margin-left: -5px; + } + .sm-gutters-5 > .col, + .sm-gutters-5 > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; + } + .sm-gutters-10 { + margin-right: -10px; + margin-left: -10px; + } + .sm-gutters-10 > .col, + .sm-gutters-10 > [class*="col-"] { + padding-right: 10px; + padding-left: 10px; + } + .sm-gutters-15 { + margin-right: -15px; + margin-left: -15px; + } + .sm-gutters-15 > .col, + .sm-gutters-15 > [class*="col-"] { + padding-right: 15px; + padding-left: 15px; + } + .sm-gutters-16 { + margin-right: -16px; + margin-left: -16px; + } + .aiz-carousel.sm-gutters-16 .slick-list { + width: calc(100% + 5px); + padding-left: 1px; + } + .sm-gutters-16 > .col, + .sm-gutters-16 > [class*="col-"], + .aiz-carousel.sm-gutters-16 .carousel-box { + padding-right: 16px; + padding-left: 16px; + } + .sm-gutters-17 { + margin-right: -17px; + margin-left: -17px; + } + .aiz-carousel.sm-gutters-17 .slick-list { + width: calc(100% + 5px); + padding-left: 1px; + } + .sm-gutters-17 > .col, + .sm-gutters-17 > [class*="col-"], + .aiz-carousel.sm-gutters-17 .carousel-box { + padding-right: 17px; + padding-left: 17px; + } + .sm-gutters-20 { + margin-right: -20px; + margin-left: -20px; + } + .sm-gutters-20 > .col, + .sm-gutters-20 > [class*="col-"] { + padding-right: 20px; + padding-left: 20px; + } + .sm-gutters-25 { + margin-right: -25px; + margin-left: -25px; + } + .sm-gutters-25 > .col, + .sm-gutters-25 > [class*="col-"] { + padding-right: 25px; + padding-left: 25px; + } + .sm-gutters-30 { + margin-right: -30px; + margin-left: -30px; + } + .sm-gutters-30 > .col, + .sm-gutters-30 > [class*="col-"] { + padding-right: 30px; + padding-left: 30px; + } + + .flex-grow-sm-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-grow-sm-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + [dir="rtl"] .row-cols-sm-1 > * { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + [dir="rtl"] .row-cols-sm-2 > * { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + [dir="rtl"] .row-cols-sm-3 > * { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + [dir="rtl"] .row-cols-sm-4 > * { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + [dir="rtl"] .row-cols-sm-5 > * { + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; + } + [dir="rtl"] .row-cols-sm-6 > * { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } +} +/* md */ +@media (min-width: 768px) { + .border-md { + border: 1px solid #dfdfe6 !important; + } + .border-md-top { + border-top: 1px solid #dfdfe6 !important; + } + .border-md-right { + border-right: 1px solid #dfdfe6 !important; + } + .border-md-bottom { + border-bottom: 1px solid #dfdfe6 !important; + } + .border-md-left { + border-left: 1px solid #dfdfe6 !important; + } + .border-md-0 { + border: 0 !important; + } + .border-md-top-0 { + border-top: 0 !important; + } + .border-md-right-0 { + border-right: 0 !important; + } + .border-md-bottom-0 { + border-bottom: 0 !important; + } + .border-md-left-0 { + border-left: 0 !important; + } + + .w-md-25 { + width: 25% !important; + } + .w-md-50 { + width: 50% !important; + } + .w-md-75 { + width: 75% !important; + } + .w-md-100 { + width: 100% !important; + } + .w-md-auto { + width: auto !important; + } + + .pl-md-6, + .px-md-6, + .p-md-6 { + padding-left: 4rem; + } + .pl-md-7, + .px-md-7, + .p-md-7 { + padding-left: 5rem; + } + .pl-md-8, + .px-md-8, + .p-md-8 { + padding-left: 6rem; + } + .pl-md-9, + .px-md-9, + .p-md-9 { + padding-left: 8rem; + } + .pl-md-10, + .px-md-10, + .p-md-10 { + padding-left: 10rem; + } + .pl-md-11, + .px-md-11, + .p-md-11 { + padding-left: 12rem; + } + .pl-md-12, + .px-md-12, + .p-md-12 { + padding-left: 16rem; + } + + .pr-md-6, + .px-md-6, + .p-md-6 { + padding-right: 4rem; + } + .pr-md-7, + .px-md-7, + .p-md-7 { + padding-right: 5rem; + } + .pr-md-8, + .px-md-8, + .p-md-8 { + padding-right: 6rem; + } + .pr-md-9, + .px-md-9, + .p-md-9 { + padding-right: 8rem; + } + .pr-md-10, + .px-md-10, + .p-md-10 { + padding-right: 10rem; + } + .pr-md-11, + .px-md-11, + .p-md-11 { + padding-right: 12rem; + } + .pr-md-12, + .px-md-12, + .p-md-12 { + padding-right: 16rem; + } + + .pt-md-6, + .py-md-6, + .p-md-6 { + padding-top: 4rem; + } + .pt-md-7, + .py-md-7, + .p-md-7 { + padding-top: 5rem; + } + .pt-md-8, + .py-md-8, + .p-md-8 { + padding-top: 6rem; + } + .pt-md-9, + .py-md-9, + .p-md-9 { + padding-top: 8rem; + } + .pt-md-10, + .py-md-10, + .p-md-10 { + padding-top: 10rem; + } + .pt-md-11, + .py-md-11, + .p-md-11 { + padding-top: 12rem; + } + .pt-md-12, + .py-md-12, + .p-md-12 { + padding-top: 16rem; + } + + .pb-md-6, + .py-md-6, + .p-md-6 { + padding-bottom: 4rem; + } + .pb-md-7, + .py-md-7, + .p-md-7 { + padding-bottom: 5rem; + } + .pb-md-8, + .py-md-8, + .p-md-8 { + padding-bottom: 6rem; + } + .pb-md-9, + .py-md-9, + .p-md-9 { + padding-bottom: 8rem; + } + .pb-md-10, + .py-md-10, + .p-md-10 { + padding-bottom: 10rem; + } + .pb-md-11, + .py-md-11, + .p-md-11 { + padding-bottom: 12rem; + } + .pb-md-12, + .py-md-12, + .p-md-12 { + padding-bottom: 16rem; + } + + .pl-md-5px, + .px-md-5px, + .p-md-5px { + padding-left: 5px; + } + .pl-md-10px, + .px-md-10px, + .p-md-10px { + padding-left: 10px; + } + .pl-md-14px, + .px-md-14px, + .p-md-14px { + padding-left: 14px; + } + .pl-md-15px, + .px-md-15px, + .p-md-15px { + padding-left: 15px; + } + .pl-md-20px, + .px-md-20px, + .p-md-20px { + padding-left: 20px; + } + .pl-md-25px, + .px-md-25px, + .p-md-25px { + padding-left: 25px; + } + .pl-md-30px, + .px-md-30px, + .p-md-30px { + padding-left: 30px; + } + + .pr-md-5px, + .px-md-5px, + .p-md-5px { + padding-right: 5px; + } + .pr-md-10px, + .px-md-10px, + .p-md-10px { + padding-right: 10px; + } + .pr-md-14px, + .px-md-14px, + .p-md-14px { + padding-right: 14px; + } + .pr-md-15px, + .px-md-15px, + .p-md-15px { + padding-right: 15px; + } + .pr-md-20px, + .px-md-20px, + .p-md-20px { + padding-right: 20px; + } + .pr-md-25px, + .px-md-25px, + .p-md-25px { + padding-right: 25px; + } + .pr-md-30px, + .px-md-30px, + .p-md-30px { + padding-right: 30px; + } + + .pt-md-5px, + .py-md-5px, + .p-md-5px { + padding-top: 5px; + } + .pt-md-10px, + .py-md-10px, + .p-md-10px { + padding-top: 10px; + } + .pt-md-14px, + .py-md-14px, + .p-md-14px { + padding-top: 14px; + } + .pt-md-15px, + .py-md-15px, + .p-md-15px { + padding-top: 15px; + } + .pt-md-20px, + .py-md-20px, + .p-md-20px { + padding-top: 20px; + } + .pt-md-25px, + .py-md-25px, + .p-md-25px { + padding-top: 25px; + } + .pt-md-30px, + .py-md-30px, + .p-md-30px { + padding-top: 30px; + } + + .pb-md-5px, + .py-md-5px, + .p-md-5px { + padding-bottom: 5px; + } + .pb-md-10px, + .py-md-10px, + .p-md-10px { + padding-bottom: 10px; + } + .pb-md-14px, + .py-md-14px, + .p-md-14px { + padding-bottom: 14px; + } + .pb-md-15px, + .py-md-15px, + .p-md-15px { + padding-bottom: 15px; + } + .pb-md-20px, + .py-md-20px, + .p-md-20px { + padding-bottom: 20px; + } + .pb-md-25px, + .py-md-25px, + .p-md-25px { + padding-bottom: 25px; + } + .pb-md-30px, + .py-md-30px, + .p-md-30px { + padding-bottom: 30px; + } + + .w-md-auto { + width: auto; + } + .w-md-5px, + .size-md-5px { + width: 5px; + } + .w-md-10px, + .size-md-10px { + width: 10px; + } + .w-md-15px, + .size-md-15px { + width: 15px; + } + .w-md-20px, + .size-md-20px { + width: 20px; + } + .w-md-25px, + .size-md-25px { + width: 25px; + } + .w-md-30px, + .size-md-30px { + width: 30px; + } + .w-md-35px, + .size-md-35px { + width: 35px; + } + .w-md-40px, + .size-md-40px { + width: 40px; + } + .w-md-45px, + .size-md-45px { + width: 45px; + } + .w-md-48px, + .size-md-48px { + width: 48px; + } + .w-md-50px, + .size-md-50px { + width: 50px; + } + .w-md-60px, + .size-md-60px { + width: 60px; + } + .w-md-64px, + .size-md-64px { + width: 64px; + } + .w-md-70px, + .size-md-70px { + width: 70px; + } + .w-md-80px, + .size-md-80px { + width: 80px; + } + .w-md-90px, + .size-md-90px { + width: 90px; + } + .w-md-100px, + .size-md-100px { + width: 100px; + } + .w-md-110px, + .size-md-110px { + width: 110px; + } + .w-md-120px, + .size-md-120px { + width: 120px; + } + .w-md-130px, + .size-md-130px { + width: 130px; + } + .w-md-140px, + .size-md-140px { + width: 140px; + } + .w-md-150px, + .size-md-150px { + width: 150px; + } + .w-md-160px, + .size-md-160px { + width: 160px; + } + .w-md-170px, + .size-md-170px { + width: 170px; + } + .w-md-180px, + .size-md-180px { + width: 180px; + } + .w-md-190px, + .size-md-190px { + width: 190px; + } + .w-md-200px, + .size-md-200px { + width: 200px; + } + .w-md-210px, + .size-md-210px { + width: 210px; + } + .w-md-220px, + .size-md-220px { + width: 220px; + } + .w-md-230px, + .size-md-230px { + width: 230px; + } + .w-md-240px, + .size-md-240px { + width: 240px; + } + .w-md-250px, + .size-md-250px { + width: 250px; + } + .w-md-260px, + .size-md-260px { + width: 260px; + } + .w-md-270px, + .size-md-270px { + width: 270px; + } + .w-md-280px, + .size-md-280px { + width: 280px; + } + .w-md-290px, + .size-md-290px { + width: 290px; + } + .w-md-300px, + .size-md-300px { + width: 300px; + } + .w-md-310px, + .size-md-310px { + width: 310px; + } + .w-md-320px, + .size-md-320px { + width: 320px; + } + .w-md-330px, + .size-md-330px { + width: 330px; + } + .w-md-340px, + .size-md-340px { + width: 340px; + } + .w-md-350px, + .size-md-350px { + width: 350px; + } + .w-md-360px, + .size-md-360px { + width: 360px; + } + .w-md-370px, + .size-md-370px { + width: 370px; + } + .w-md-380px, + .size-md-380px { + width: 380px; + } + .w-md-390px, + .size-md-390px { + width: 390px; + } + .w-md-400px, + .size-md-400px { + width: 400px; + } + .w-md-410px, + .size-md-410px { + width: 410px; + } + .w-md-420px, + .size-md-420px { + width: 420px; + } + .w-md-450px, + .size-md-450px { + width: 450px; + } + .w-md-500px, + .size-md-500px { + width: 500px; + } + .w-md-640px, + .size-md-640px { + width: 640px; + } + + .h-md-auto { + height: auto; + } + .h-md-5px, + .size-md-5px { + height: 5px; + } + .h-md-10px, + .size-md-10px { + height: 10px; + } + .h-md-15px, + .size-md-15px { + height: 15px; + } + .h-md-20px, + .size-md-20px { + height: 20px; + } + .h-md-25px, + .size-md-25px { + height: 25px; + } + .h-md-30px, + .size-md-30px { + height: 30px; + } + .h-md-35px, + .size-md-35px { + height: 35px; + } + .h-md-40px, + .size-md-40px { + height: 40px; + } + .h-md-45px, + .size-md-45px { + height: 45px; + } + .h-md-48px, + .size-md-48px { + height: 48px; + } + .h-md-50px, + .size-md-50px { + height: 50px; + } + .h-md-60px, + .size-md-60px { + height: 60px; + } + .h-md-64px, + .size-md-64px { + height: 64px; + } + .h-md-70px, + .size-md-70px { + height: 70px; + } + .h-md-80px, + .size-md-80px { + height: 80px; + } + .h-md-90px, + .size-md-90px { + height: 90px; + } + .h-md-100px, + .size-md-100px { + height: 100px; + } + .h-md-110px, + .size-md-110px { + height: 110px; + } + .h-md-120px, + .size-md-120px { + height: 120px; + } + .h-md-130px, + .size-md-130px { + height: 130px; + } + .h-md-140px, + .size-md-140px { + height: 140px; + } + .h-md-150px, + .size-md-150px { + height: 150px; + } + .h-md-160px, + .size-md-160px { + height: 160px; + } + .h-md-170px, + .size-md-170px { + height: 170px; + } + .h-md-180px, + .size-md-180px { + height: 180px; + } + .h-md-190px, + .size-md-190px { + height: 190px; + } + .h-md-200px, + .size-md-200px { + height: 200px; + } + .h-md-210px, + .size-md-210px { + height: 210px; + } + .h-md-220px, + .size-md-220px { + height: 220px; + } + .h-md-230px, + .size-md-230px { + height: 230px; + } + .h-md-240px, + .size-md-240px { + height: 240px; + } + .h-md-250px, + .size-md-250px { + height: 250px; + } + .h-md-260px, + .size-md-260px { + height: 260px; + } + .h-md-270px, + .size-md-270px { + height: 270px; + } + .h-md-280px, + .size-md-280px { + height: 280px; + } + .h-md-290px, + .size-md-290px { + height: 290px; + } + .h-md-300px, + .size-md-300px { + height: 300px; + } + .h-md-310px, + .size-md-310px { + height: 310px; + } + .h-md-320px, + .size-md-320px { + height: 320px; + } + .h-md-330px, + .size-md-330px { + height: 330px; + } + .h-md-340px, + .size-md-340px { + height: 340px; + } + .h-md-350px, + .size-md-350px { + height: 350px; + } + .h-md-360px, + .size-md-360px { + height: 360px; + } + .h-md-370px, + .size-md-370px { + height: 370px; + } + .h-md-380px, + .size-md-380px { + height: 380px; + } + .h-md-390px, + .size-md-390px { + height: 390px; + } + .h-md-400px, + .size-md-400px { + height: 400px; + } + .h-md-410px, + .size-md-410px { + height: 410px; + } + .h-md-420px, + .size-md-420px { + height: 420px; + } + .h-md-450px, + .size-md-450px { + height: 450px; + } + .h-md-460px, + .size-md-460px { + height: 460px; + } + .h-md-475px, + .size-md-475px { + height: 475px; + } + .h-md-485px, + .size-md-485px { + height: 485px; + } + .h-md-500px, + .size-md-500px { + height: 500px; + } + .h-md-570px { + height: 570px; + } + .h-md-640px, + .size-md-640px { + height: 640px; + } + + .md-no-gutters { + margin-right: -0px; + margin-left: -0px; + } + .md-no-gutters > .col, + .md-no-gutters > [class*="col-"] { + padding-right: 0px; + padding-left: 0px; + } + .md-gutters-5 { + margin-right: -5px; + margin-left: -5px; + } + .md-gutters-5 > .col, + .md-gutters-5 > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; + } + .md-gutters-10 { + margin-right: -10px; + margin-left: -10px; + } + .md-gutters-10 > .col, + .md-gutters-10 > [class*="col-"] { + padding-right: 10px; + padding-left: 10px; + } + .md-gutters-15 { + margin-right: -15px; + margin-left: -15px; + } + .md-gutters-15 > .col, + .md-gutters-15 > [class*="col-"] { + padding-right: 15px; + padding-left: 15px; + } + .md-gutters-16 { + margin-right: -16px; + margin-left: -16px; + } + .md-gutters-16 > .col, + .md-gutters-16 > [class*="col-"] { + padding-right: 16px; + padding-left: 16px; + } + .md-gutters-17 { + margin-right: -17px; + margin-left: -17px; + } + .md-gutters-17 > .col, + .md-gutters-17 > [class*="col-"] { + padding-right: 17px; + padding-left: 17px; + } + .md-gutters-20 { + margin-right: -20px; + margin-left: -20px; + } + .md-gutters-20 > .col, + .md-gutters-20 > [class*="col-"] { + padding-right: 20px; + padding-left: 20px; + } + .md-gutters-25 { + margin-right: -25px; + margin-left: -25px; + } + .md-gutters-25 > .col, + .md-gutters-25 > [class*="col-"] { + padding-right: 25px; + padding-left: 25px; + } + .md-gutters-30 { + margin-right: -30px; + margin-left: -30px; + } + .md-gutters-30 > .col, + .md-gutters-30 > [class*="col-"] { + padding-right: 30px; + padding-left: 30px; + } + + .flex-grow-md-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-grow-md-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + + [dir="rtl"] .row-cols-md-1 > * { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + [dir="rtl"] .row-cols-md-2 > * { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + [dir="rtl"] .row-cols-md-3 > * { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + [dir="rtl"] .row-cols-md-4 > * { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + [dir="rtl"] .row-cols-md-5 > * { + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; + } + [dir="rtl"] .row-cols-md-6 > * { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .absolute-md-top-right{ + position: absolute; + top: 0; + right: 0; + bottom: inherit; + left: inherit; + } +} +/* lg */ +@media (min-width: 992px) { + .border-lg { + border: 1px solid #dfdfe6 !important; + } + .border-lg-top { + border-top: 1px solid #dfdfe6 !important; + } + .border-lg-right { + border-right: 1px solid #dfdfe6 !important; + } + .border-lg-bottom { + border-bottom: 1px solid #dfdfe6 !important; + } + .border-lg-left { + border-left: 1px solid #dfdfe6 !important; + } + .border-lg-0 { + border: 0 !important; + } + .border-lg-top-0 { + border-top: 0 !important; + } + .border-lg-right-0 { + border-right: 0 !important; + } + .border-lg-bottom-0 { + border-bottom: 0 !important; + } + .border-lg-left-0 { + border-left: 0 !important; + } + + .w-lg-25 { + width: 25% !important; + } + .w-lg-50 { + width: 50% !important; + } + .w-lg-75 { + width: 75% !important; + } + .w-lg-100 { + width: 100% !important; + } + .w-lg-auto { + width: auto !important; + } + + .pl-lg-6, + .px-lg-6, + .p-lg-6 { + padding-left: 4rem; + } + .pl-lg-7, + .px-lg-7, + .p-lg-7 { + padding-left: 5rem; + } + .pl-lg-8, + .px-lg-8, + .p-lg-8 { + padding-left: 6rem; + } + .pl-lg-9, + .px-lg-9, + .p-lg-9 { + padding-left: 8rem; + } + .pl-lg-10, + .px-lg-10, + .p-lg-10 { + padding-left: 10rem; + } + .pl-lg-11, + .px-lg-11, + .p-lg-11 { + padding-left: 12rem; + } + .pl-lg-12, + .px-lg-12, + .p-lg-12 { + padding-left: 16rem; + } + + .pr-lg-6, + .px-lg-6, + .p-lg-6 { + padding-right: 4rem; + } + .pr-lg-7, + .px-lg-7, + .p-lg-7 { + padding-right: 5rem; + } + .pr-lg-8, + .px-lg-8, + .p-lg-8 { + padding-right: 6rem; + } + .pr-lg-9, + .px-lg-9, + .p-lg-9 { + padding-right: 8rem; + } + .pr-lg-10, + .px-lg-10, + .p-lg-10 { + padding-right: 10rem; + } + .pr-lg-11, + .px-lg-11, + .p-lg-11 { + padding-right: 12rem; + } + .pr-lg-12, + .px-lg-12, + .p-lg-12 { + padding-right: 16rem; + } + + .pt-lg-6, + .py-lg-6, + .p-lg-6 { + padding-top: 4rem; + } + .pt-lg-7, + .py-lg-7, + .p-lg-7 { + padding-top: 5rem; + } + .pt-lg-8, + .py-lg-8, + .p-lg-8 { + padding-top: 6rem; + } + .pt-lg-9, + .py-lg-9, + .p-lg-9 { + padding-top: 8rem; + } + .pt-lg-10, + .py-lg-10, + .p-lg-10 { + padding-top: 10rem; + } + .pt-lg-11, + .py-lg-11, + .p-lg-11 { + padding-top: 12rem; + } + .pt-lg-12, + .py-lg-12, + .p-lg-12 { + padding-top: 16rem; + } + + .pb-lg-6, + .py-lg-6, + .p-lg-6 { + padding-bottom: 4rem; + } + .pb-lg-7, + .py-lg-7, + .p-lg-7 { + padding-bottom: 5rem; + } + .pb-lg-8, + .py-lg-8, + .p-lg-8 { + padding-bottom: 6rem; + } + .pb-lg-9, + .py-lg-9, + .p-lg-9 { + padding-bottom: 8rem; + } + .pb-lg-10, + .py-lg-10, + .p-lg-10 { + padding-bottom: 10rem; + } + .pb-lg-11, + .py-lg-11, + .p-lg-11 { + padding-bottom: 12rem; + } + .pb-lg-12, + .py-lg-12, + .p-lg-12 { + padding-bottom: 16rem; + } + + .pl-lg-5px, + .px-lg-5px, + .p-lg-5px { + padding-left: 5px; + } + .pl-lg-10px, + .px-lg-10px, + .p-lg-10px { + padding-left: 10px; + } + .pl-lg-14px, + .px-lg-14px, + .p-lg-14px { + padding-left: 14px; + } + .pl-lg-15px, + .px-lg-15px, + .p-lg-15px { + padding-left: 15px; + } + .pl-lg-20px, + .px-lg-20px, + .p-lg-20px { + padding-left: 20px; + } + .pl-lg-25px, + .px-lg-25px, + .p-lg-25px { + padding-left: 25px; + } + .pl-lg-30px, + .px-lg-30px, + .p-lg-30px { + padding-left: 30px; + } + + .pr-lg-5px, + .px-lg-5px, + .p-lg-5px { + padding-right: 5px; + } + .pr-lg-10px, + .px-lg-10px, + .p-lg-10px { + padding-right: 10px; + } + .pr-lg-14px, + .px-lg-14px, + .p-lg-14px { + padding-right: 14px; + } + .pr-lg-15px, + .px-lg-15px, + .p-lg-15px { + padding-right: 15px; + } + .pr-lg-20px, + .px-lg-20px, + .p-lg-20px { + padding-right: 20px; + } + .pr-lg-25px, + .px-lg-25px, + .p-lg-25px { + padding-right: 25px; + } + .pr-lg-30px, + .px-lg-30px, + .p-lg-30px { + padding-right: 30px; + } + + .pt-lg-5px, + .py-lg-5px, + .p-lg-5px { + padding-top: 5px; + } + .pt-lg-10px, + .py-lg-10px, + .p-lg-10px { + padding-top: 10px; + } + .pt-lg-14px, + .py-lg-14px, + .p-lg-14px { + padding-top: 14px; + } + .pt-lg-15px, + .py-lg-15px, + .p-lg-15px { + padding-top: 15px; + } + .pt-lg-20px, + .py-lg-20px, + .p-lg-20px { + padding-top: 20px; + } + .pt-lg-25px, + .py-lg-25px, + .p-lg-25px { + padding-top: 25px; + } + .pt-lg-30px, + .py-lg-30px, + .p-lg-30px { + padding-top: 30px; + } + + .pb-lg-5px, + .py-lg-5px, + .p-lg-5px { + padding-bottom: 5px; + } + .pb-lg-10px, + .py-lg-10px, + .p-lg-10px { + padding-bottom: 10px; + } + .pb-lg-14px, + .py-lg-14px, + .p-lg-14px { + padding-bottom: 14px; + } + .pb-lg-15px, + .py-lg-15px, + .p-lg-15px { + padding-bottom: 15px; + } + .pb-lg-20px, + .py-lg-20px, + .p-lg-20px { + padding-bottom: 20px; + } + .pb-lg-25px, + .py-lg-25px, + .p-lg-25px { + padding-bottom: 25px; + } + .pb-lg-30px, + .py-lg-30px, + .p-lg-30px { + padding-bottom: 30px; + } + + .w-lg-auto { + width: auto; + } + .w-lg-5px, + .size-lg-5px { + width: 5px; + } + .w-lg-10px, + .size-lg-10px { + width: 10px; + } + .w-lg-15px, + .size-lg-15px { + width: 15px; + } + .w-lg-20px, + .size-lg-20px { + width: 20px; + } + .w-lg-25px, + .size-lg-25px { + width: 25px; + } + .w-lg-30px, + .size-lg-30px { + width: 30px; + } + .w-lg-35px, + .size-lg-35px { + width: 35px; + } + .w-lg-40px, + .size-lg-40px { + width: 40px; + } + .w-lg-45px, + .size-lg-45px { + width: 45px; + } + .w-lg-48px, + .size-lg-48px { + width: 48px; + } + .w-lg-50px, + .size-lg-50px { + width: 50px; + } + .w-lg-60px, + .size-lg-60px { + width: 60px; + } + .w-lg-64px, + .size-lg-64px { + width: 64px; + } + .w-lg-70px, + .size-lg-70px { + width: 70px; + } + .w-lg-80px, + .size-lg-80px { + width: 80px; + } + .w-lg-90px, + .size-lg-90px { + width: 90px; + } + .w-lg-100px, + .size-lg-100px { + width: 100px; + } + .w-lg-110px, + .size-lg-110px { + width: 110px; + } + .w-lg-120px, + .size-lg-120px { + width: 120px; + } + .w-lg-130px, + .size-lg-130px { + width: 130px; + } + .w-lg-140px, + .size-lg-140px { + width: 140px; + } + .w-lg-150px, + .size-lg-150px { + width: 150px; + } + .w-lg-160px, + .size-lg-160px { + width: 160px; + } + .w-lg-170px, + .size-lg-170px { + width: 170px; + } + .w-lg-180px, + .size-lg-180px { + width: 180px; + } + .w-lg-190px, + .size-lg-190px { + width: 190px; + } + .w-lg-200px, + .size-lg-200px { + width: 200px; + } + .w-lg-210px, + .size-lg-210px { + width: 210px; + } + .w-lg-220px, + .size-lg-220px { + width: 220px; + } + .w-lg-230px, + .size-lg-230px { + width: 230px; + } + .w-lg-240px, + .size-lg-240px { + width: 240px; + } + .w-lg-250px, + .size-lg-250px { + width: 250px; + } + .w-lg-260px, + .size-lg-260px { + width: 260px; + } + .w-lg-270px, + .size-lg-270px { + width: 270px; + } + .w-lg-280px, + .size-lg-280px { + width: 280px; + } + .w-lg-290px, + .size-lg-290px { + width: 290px; + } + .w-lg-300px, + .size-lg-300px { + width: 300px; + } + .w-lg-310px, + .size-lg-310px { + width: 310px; + } + .w-lg-320px, + .size-lg-320px { + width: 320px; + } + .w-lg-330px, + .size-lg-330px { + width: 330px; + } + .w-lg-340px, + .size-lg-340px { + width: 340px; + } + .w-lg-350px, + .size-lg-350px { + width: 350px; + } + .w-lg-360px, + .size-lg-360px { + width: 360px; + } + .w-lg-370px, + .size-lg-370px { + width: 370px; + } + .w-lg-380px, + .size-lg-380px { + width: 380px; + } + .w-lg-390px, + .size-lg-390px { + width: 390px; + } + .w-lg-400px, + .size-lg-400px { + width: 400px; + } + .w-lg-410px, + .size-lg-410px { + width: 410px; + } + .w-lg-420px, + .size-lg-420px { + width: 420px; + } + .w-lg-450px, + .size-lg-450px { + width: 450px; + } + .w-lg-500px, + .size-lg-500px { + width: 500px; + } + .w-lg-640px, + .size-lg-640px { + width: 640px; + } + + .h-lg-auto { + height: auto; + } + .h-lg-5px, + .size-lg-5px { + height: 5px; + } + .h-lg-10px, + .size-lg-10px { + height: 10px; + } + .h-lg-15px, + .size-lg-15px { + height: 15px; + } + .h-lg-20px, + .size-lg-20px { + height: 20px; + } + .h-lg-25px, + .size-lg-25px { + height: 25px; + } + .h-lg-30px, + .size-lg-30px { + height: 30px; + } + .h-lg-35px, + .size-lg-35px { + height: 35px; + } + .h-lg-40px, + .size-lg-40px { + height: 40px; + } + .h-lg-45px, + .size-lg-45px { + height: 45px; + } + .h-lg-48px, + .size-lg-48px { + height: 48px; + } + .h-lg-50px, + .size-lg-50px { + height: 50px; + } + .h-lg-60px, + .size-lg-60px { + height: 60px; + } + .h-lg-64px, + .size-lg-64px { + height: 64px; + } + .h-lg-70px, + .size-lg-70px { + height: 70px; + } + .h-lg-80px, + .size-lg-80px { + height: 80px; + } + .h-lg-90px, + .size-lg-90px { + height: 90px; + } + .h-lg-100px, + .size-lg-100px { + height: 100px; + } + .h-lg-110px, + .size-lg-110px { + height: 110px; + } + .h-lg-120px, + .size-lg-120px { + height: 120px; + } + .h-lg-130px, + .size-lg-130px { + height: 130px; + } + .h-lg-140px, + .size-lg-140px { + height: 140px; + } + .h-lg-150px, + .size-lg-150px { + height: 150px; + } + .h-lg-160px, + .size-lg-160px { + height: 160px; + } + .h-lg-170px, + .size-lg-170px { + height: 170px; + } + .h-lg-180px, + .size-lg-180px { + height: 180px; + } + .h-lg-190px, + .size-lg-190px { + height: 190px; + } + .h-lg-200px, + .size-lg-200px { + height: 200px; + } + .h-lg-210px, + .size-lg-210px { + height: 210px; + } + .h-lg-220px, + .size-lg-220px { + height: 220px; + } + .h-lg-230px, + .size-lg-230px { + height: 230px; + } + .h-lg-240px, + .size-lg-240px { + height: 240px; + } + .h-lg-250px, + .size-lg-250px { + height: 250px; + } + .h-lg-260px, + .size-lg-260px { + height: 260px; + } + .h-lg-270px, + .size-lg-270px { + height: 270px; + } + .h-lg-280px, + .size-lg-280px { + height: 280px; + } + .h-lg-290px, + .size-lg-290px { + height: 290px; + } + .h-lg-300px, + .size-lg-300px { + height: 300px; + } + .h-lg-310px, + .size-lg-310px { + height: 310px; + } + .h-lg-320px, + .size-lg-320px { + height: 320px; + } + .h-lg-330px, + .size-lg-330px { + height: 330px; + } + .h-lg-340px, + .size-lg-340px { + height: 340px; + } + .h-lg-350px, + .size-lg-350px { + height: 350px; + } + .h-lg-360px, + .size-lg-360px { + height: 360px; + } + .h-lg-370px, + .size-lg-370px { + height: 370px; + } + .h-lg-380px, + .size-lg-380px { + height: 380px; + } + .h-lg-390px, + .size-lg-390px { + height: 390px; + } + .h-lg-400px, + .size-lg-400px { + height: 400px; + } + .h-lg-410px, + .size-lg-410px { + height: 410px; + } + .h-lg-420px, + .size-lg-420px { + height: 420px; + } + .h-lg-450px, + .size-lg-450px { + height: 450px; + } + .h-lg-460px, + .size-lg-460px { + height: 460px; + } + .h-lg-475px, + .size-lg-475px { + height: 475px; + } + .h-lg-485px, + .size-lg-485px { + height: 485px; + } + .h-lg-500px, + .size-lg-500px { + height: 500px; + } + .h-lg-640px, + .size-lg-640px { + height: 640px; + } + + .lg-no-gutters { + margin-right: -0px; + margin-left: -0px; + } + .lg-no-gutters > .col, + .lg-no-gutters > [class*="col-"] { + padding-right: 0px; + padding-left: 0px; + } + .lg-gutters-5 { + margin-right: -5px; + margin-left: -5px; + } + .lg-gutters-5 > .col, + .lg-gutters-5 > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; + } + .lg-gutters-10 { + margin-right: -10px; + margin-left: -10px; + } + .lg-gutters-10 > .col, + .lg-gutters-10 > [class*="col-"] { + padding-right: 10px; + padding-left: 10px; + } + .lg-gutters-15 { + margin-right: -15px; + margin-left: -15px; + } + .lg-gutters-15 > .col, + .lg-gutters-15 > [class*="col-"] { + padding-right: 15px; + padding-left: 15px; + } + .lg-gutters-16 { + margin-right: -16px; + margin-left: -16px; + } + .lg-gutters-16 > .col, + .lg-gutters-16 > [class*="col-"] { + padding-right: 16px; + padding-left: 16px; + } + .lg-gutters-17 { + margin-right: -17px; + margin-left: -17px; + } + .lg-gutters-17 > .col, + .lg-gutters-17 > [class*="col-"] { + padding-right: 17px; + padding-left: 17px; + } + .lg-gutters-20 { + margin-right: -20px; + margin-left: -20px; + } + .lg-gutters-20 > .col, + .lg-gutters-20 > [class*="col-"] { + padding-right: 20px; + padding-left: 20px; + } + .lg-gutters-25 { + margin-right: -25px; + margin-left: -25px; + } + .lg-gutters-25 > .col, + .lg-gutters-25 > [class*="col-"] { + padding-right: 25px; + padding-left: 25px; + } + .lg-gutters-30 { + margin-right: -30px; + margin-left: -30px; + } + .lg-gutters-30 > .col, + .lg-gutters-30 > [class*="col-"] { + padding-right: 30px; + padding-left: 30px; + } + + .flex-grow-lg-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-grow-lg-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + [dir="rtl"] .row-cols-lg-1 > * { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + [dir="rtl"] .row-cols-lg-2 > * { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + [dir="rtl"] .row-cols-lg-3 > * { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + [dir="rtl"] .row-cols-lg-4 > * { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + [dir="rtl"] .row-cols-lg-5 > * { + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; + } + [dir="rtl"] .row-cols-lg-6 > * { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } +} +/* xl */ +@media (min-width: 1200px) { + .border-xl { + border: 1px solid #dfdfe6 !important; + } + .border-xl-top { + border-top: 1px solid #dfdfe6 !important; + } + .border-xl-right { + border-right: 1px solid #dfdfe6 !important; + } + .border-xl-bottom { + border-bottom: 1px solid #dfdfe6 !important; + } + .border-xl-left { + border-left: 1px solid #dfdfe6 !important; + } + .border-xl-0 { + border: 0 !important; + } + .border-xl-top-0 { + border-top: 0 !important; + } + .border-xl-right-0 { + border-right: 0 !important; + } + .border-xl-bottom-0 { + border-bottom: 0 !important; + } + .border-xl-left-0 { + border-left: 0 !important; + } + + .w-xl-25 { + width: 25% !important; + } + .w-xl-50 { + width: 50% !important; + } + .w-xl-75 { + width: 75% !important; + } + .w-xl-100 { + width: 100% !important; + } + .w-xl-auto { + width: auto !important; + } + + .pl-xl-6, + .px-xl-6, + .p-xl-6 { + padding-left: 4rem; + } + .pl-xl-7, + .px-xl-7, + .p-xl-7 { + padding-left: 5rem; + } + .pl-xl-8, + .px-xl-8, + .p-xl-8 { + padding-left: 6rem; + } + .pl-xl-9, + .px-xl-9, + .p-xl-9 { + padding-left: 8rem; + } + .pl-xl-10, + .px-xl-10, + .p-xl-10 { + padding-left: 10rem; + } + .pl-xl-11, + .px-xl-11, + .p-xl-11 { + padding-left: 12rem; + } + .pl-xl-12, + .px-xl-12, + .p-xl-12 { + padding-left: 16rem; + } + + .pr-xl-6, + .px-xl-6, + .p-xl-6 { + padding-right: 4rem; + } + .pr-xl-7, + .px-xl-7, + .p-xl-7 { + padding-right: 5rem; + } + .pr-xl-8, + .px-xl-8, + .p-xl-8 { + padding-right: 6rem; + } + .pr-xl-9, + .px-xl-9, + .p-xl-9 { + padding-right: 8rem; + } + .pr-xl-10, + .px-xl-10, + .p-xl-10 { + padding-right: 10rem; + } + .pr-xl-11, + .px-xl-11, + .p-xl-11 { + padding-right: 12rem; + } + .pr-xl-12, + .px-xl-12, + .p-xl-12 { + padding-right: 16rem; + } + + .pt-xl-6, + .py-xl-6, + .p-xl-6 { + padding-top: 4rem; + } + .pt-xl-7, + .py-xl-7, + .p-xl-7 { + padding-top: 5rem; + } + .pt-xl-8, + .py-xl-8, + .p-xl-8 { + padding-top: 6rem; + } + .pt-xl-9, + .py-xl-9, + .p-xl-9 { + padding-top: 8rem; + } + .pt-xl-10, + .py-xl-10, + .p-xl-10 { + padding-top: 10rem; + } + .pt-xl-11, + .py-xl-11, + .p-xl-11 { + padding-top: 12rem; + } + .pt-xl-12, + .py-xl-12, + .p-xl-12 { + padding-top: 16rem; + } + + .pb-xl-6, + .py-xl-6, + .p-xl-6 { + padding-bottom: 4rem; + } + .pb-xl-7, + .py-xl-7, + .p-xl-7 { + padding-bottom: 5rem; + } + .pb-xl-8, + .py-xl-8, + .p-xl-8 { + padding-bottom: 6rem; + } + .pb-xl-9, + .py-xl-9, + .p-xl-9 { + padding-bottom: 8rem; + } + .pb-xl-10, + .py-xl-10, + .p-xl-10 { + padding-bottom: 10rem; + } + .pb-xl-11, + .py-xl-11, + .p-xl-11 { + padding-bottom: 12rem; + } + .pb-xl-12, + .py-xl-12, + .p-xl-12 { + padding-bottom: 16rem; + } + + .pl-xl-5px, + .px-xl-5px, + .p-xl-5px { + padding-left: 5px; + } + .pl-xl-10px, + .px-xl-10px, + .p-xl-10px { + padding-left: 10px; + } + .pl-xl-14px, + .px-xl-14px, + .p-xl-14px { + padding-left: 14px; + } + .pl-xl-15px, + .px-xl-15px, + .p-xl-15px { + padding-left: 15px; + } + .pl-xl-20px, + .px-xl-20px, + .p-xl-20px { + padding-left: 20px; + } + .pl-xl-25px, + .px-xl-25px, + .p-xl-25px { + padding-left: 25px; + } + .pl-xl-30px, + .px-xl-30px, + .p-xl-30px { + padding-left: 30px; + } + + .pr-xl-5px, + .px-xl-5px, + .p-xl-5px { + padding-right: 5px; + } + .pr-xl-10px, + .px-xl-10px, + .p-xl-10px { + padding-right: 10px; + } + .pr-xl-14px, + .px-xl-14px, + .p-xl-14px { + padding-right: 14px; + } + .pr-xl-15px, + .px-xl-15px, + .p-xl-15px { + padding-right: 15px; + } + .pr-xl-20px, + .px-xl-20px, + .p-xl-20px { + padding-right: 20px; + } + .pr-xl-25px, + .px-xl-25px, + .p-xl-25px { + padding-right: 25px; + } + .pr-xl-30px, + .px-xl-30px, + .p-xl-30px { + padding-right: 30px; + } + + .pt-xl-5px, + .py-xl-5px, + .p-xl-5px { + padding-top: 5px; + } + .pt-xl-10px, + .py-xl-10px, + .p-xl-10px { + padding-top: 10px; + } + .pt-xl-14px, + .py-xl-14px, + .p-xl-14px { + padding-top: 14px; + } + .pt-xl-15px, + .py-xl-15px, + .p-xl-15px { + padding-top: 15px; + } + .pt-xl-20px, + .py-xl-20px, + .p-xl-20px { + padding-top: 20px; + } + .pt-xl-25px, + .py-xl-25px, + .p-xl-25px { + padding-top: 25px; + } + .pt-xl-30px, + .py-xl-30px, + .p-xl-30px { + padding-top: 30px; + } + + .pb-xl-5px, + .py-xl-5px, + .p-xl-5px { + padding-bottom: 5px; + } + .pb-xl-10px, + .py-xl-10px, + .p-xl-10px { + padding-bottom: 10px; + } + .pb-xl-14px, + .py-xl-14px, + .p-xl-14px { + padding-bottom: 14px; + } + .pb-xl-15px, + .py-xl-15px, + .p-xl-15px { + padding-bottom: 15px; + } + .pb-xl-20px, + .py-xl-20px, + .p-xl-20px { + padding-bottom: 20px; + } + .pb-xl-25px, + .py-xl-25px, + .p-xl-25px { + padding-bottom: 25px; + } + .pb-xl-30px, + .py-xl-30px, + .p-xl-30px { + padding-bottom: 30px; + } + + .w-xl-auto { + width: auto; + } + .w-xl-5px, + .size-xl-5px { + width: 5px; + } + .w-xl-10px, + .size-xl-10px { + width: 10px; + } + .w-xl-15px, + .size-xl-15px { + width: 15px; + } + .w-xl-20px, + .size-xl-20px { + width: 20px; + } + .w-xl-25px, + .size-xl-25px { + width: 25px; + } + .w-xl-30px, + .size-xl-30px { + width: 30px; + } + .w-xl-35px, + .size-xl-35px { + width: 35px; + } + .w-xl-40px, + .size-xl-40px { + width: 40px; + } + .w-xl-45px, + .size-xl-45px { + width: 45px; + } + .w-xl-48px, + .size-xl-48px { + width: 48px; + } + .w-xl-50px, + .size-xl-50px { + width: 50px; + } + .w-xl-60px, + .size-xl-60px { + width: 60px; + } + .w-xl-64px, + .size-xl-64px { + width: 64px; + } + .w-xl-70px, + .size-xl-70px { + width: 70px; + } + .w-xl-80px, + .size-xl-80px { + width: 80px; + } + .w-xl-90px, + .size-xl-90px { + width: 90px; + } + .w-xl-100px, + .size-xl-100px { + width: 100px; + } + .w-xl-110px, + .size-xl-110px { + width: 110px; + } + .w-xl-120px, + .size-xl-120px { + width: 120px; + } + .w-xl-130px, + .size-xl-130px { + width: 130px; + } + .w-xl-140px, + .size-xl-140px { + width: 140px; + } + .w-xl-150px, + .size-xl-150px { + width: 150px; + } + .w-xl-160px, + .size-xl-160px { + width: 160px; + } + .w-xl-170px, + .size-xl-170px { + width: 170px; + } + .w-xl-180px, + .size-xl-180px { + width: 180px; + } + .w-xl-190px, + .size-xl-190px { + width: 190px; + } + .w-xl-200px, + .size-xl-200px { + width: 200px; + } + .w-xl-210px, + .size-xl-210px { + width: 210px; + } + .w-xl-220px, + .size-xl-220px { + width: 220px; + } + .w-xl-230px, + .size-xl-230px { + width: 230px; + } + .w-xl-240px, + .size-xl-240px { + width: 240px; + } + .w-xl-250px, + .size-xl-250px { + width: 250px; + } + .w-xl-260px, + .size-xl-260px { + width: 260px; + } + .w-xl-270px, + .size-xl-270px { + width: 270px; + } + .w-xl-280px, + .size-xl-280px { + width: 280px; + } + .w-xl-290px, + .size-xl-290px { + width: 290px; + } + .w-xl-300px, + .size-xl-300px { + width: 300px; + } + .w-xl-310px, + .size-xl-310px { + width: 310px; + } + .w-xl-320px, + .size-xl-320px { + width: 320px; + } + .w-xl-330px, + .size-xl-330px { + width: 330px; + } + .w-xl-340px, + .size-xl-340px { + width: 340px; + } + .w-xl-350px, + .size-xl-350px { + width: 350px; + } + .w-xl-360px, + .size-xl-360px { + width: 360px; + } + .w-xl-370px, + .size-xl-370px { + width: 370px; + } + .w-xl-380px, + .size-xl-380px { + width: 380px; + } + .w-xl-390px, + .size-xl-390px { + width: 390px; + } + .w-xl-400px, + .size-xl-400px { + width: 400px; + } + .w-xl-410px, + .size-xl-410px { + width: 410px; + } + .w-xl-420px, + .size-xl-420px { + width: 420px; + } + .w-xl-450px, + .size-xl-450px { + width: 450px; + } + .w-xl-500px, + .size-xl-500px { + width: 500px; + } + .w-xl-640px, + .size-xl-640px { + width: 640px; + } + + .h-xl-auto { + height: auto; + } + .h-xl-5px, + .size-xl-5px { + height: 5px; + } + .h-xl-10px, + .size-xl-10px { + height: 10px; + } + .h-xl-15px, + .size-xl-15px { + height: 15px; + } + .h-xl-20px, + .size-xl-20px { + height: 20px; + } + .h-xl-25px, + .size-xl-25px { + height: 25px; + } + .h-xl-30px, + .size-xl-30px { + height: 30px; + } + .h-xl-35px, + .size-xl-35px { + height: 35px; + } + .h-xl-40px, + .size-xl-40px { + height: 40px; + } + .h-xl-45px, + .size-xl-45px { + height: 45px; + } + .h-xl-48px, + .size-xl-48px { + height: 48px; + } + .h-xl-50px, + .size-xl-50px { + height: 50px; + } + .h-xl-60px, + .size-xl-60px { + height: 60px; + } + .h-xl-64px, + .size-xl-64px { + height: 64px; + } + .h-xl-70px, + .size-xl-70px { + height: 70px; + } + .h-xl-80px, + .size-xl-80px { + height: 80px; + } + .h-xl-90px, + .size-xl-90px { + height: 90px; + } + .h-xl-100px, + .size-xl-100px { + height: 100px; + } + .h-xl-110px, + .size-xl-110px { + height: 110px; + } + .h-xl-120px, + .size-xl-120px { + height: 120px; + } + .h-xl-130px, + .size-xl-130px { + height: 130px; + } + .h-xl-140px, + .size-xl-140px { + height: 140px; + } + .h-xl-150px, + .size-xl-150px { + height: 150px; + } + .h-xl-160px, + .size-xl-160px { + height: 160px; + } + .h-xl-170px, + .size-xl-170px { + height: 170px; + } + .h-xl-180px, + .size-xl-180px { + height: 180px; + } + .h-xl-190px, + .size-xl-190px { + height: 190px; + } + .h-xl-200px, + .size-xl-200px { + height: 200px; + } + .h-xl-210px, + .size-xl-210px { + height: 210px; + } + .h-xl-220px, + .size-xl-220px { + height: 220px; + } + .h-xl-230px, + .size-xl-230px { + height: 230px; + } + .h-xl-240px, + .size-xl-240px { + height: 240px; + } + .h-xl-250px, + .size-xl-250px { + height: 250px; + } + .h-xl-260px, + .size-xl-260px { + height: 260px; + } + .h-xl-270px, + .size-xl-270px { + height: 270px; + } + .h-xl-280px, + .size-xl-280px { + height: 280px; + } + .h-xl-290px, + .size-xl-290px { + height: 290px; + } + .h-xl-300px, + .size-xl-300px { + height: 300px; + } + .h-xl-310px, + .size-xl-310px { + height: 310px; + } + .h-xl-320px, + .size-xl-320px { + height: 320px; + } + .h-xl-330px, + .size-xl-330px { + height: 330px; + } + .h-xl-340px, + .size-xl-340px { + height: 340px; + } + .h-xl-350px, + .size-xl-350px { + height: 350px; + } + .h-xl-360px, + .size-xl-360px { + height: 360px; + } + .h-xl-370px, + .size-xl-370px { + height: 370px; + } + .h-xl-380px, + .size-xl-380px { + height: 380px; + } + .h-xl-390px, + .size-xl-390px { + height: 390px; + } + .h-xl-400px, + .size-xl-400px { + height: 400px; + } + .h-xl-410px, + .size-xl-410px { + height: 410px; + } + .h-xl-420px, + .size-xl-420px { + height: 420px; + } + .h-xl-450px, + .size-xl-450px { + height: 450px; + } + .h-xl-460px, + .size-xl-460px { + height: 460px; + } + .h-xl-475px, + .size-xl-475px { + height: 475px; + } + .h-xl-485px, + .size-xl-485px { + height: 485px; + } + .h-xl-500px, + .size-xl-500px { + height: 500px; + } + .h-xl-640px, + .size-xl-640px { + height: 640px; + } + + .xl-no-gutters { + margin-right: -0px; + margin-left: -0px; + } + .xl-no-gutters > .col, + .xl-no-gutters > [class*="col-"] { + padding-right: 0px; + padding-left: 0px; + } + .xl-gutters-5 { + margin-right: -5px; + margin-left: -5px; + } + .xl-gutters-5 > .col, + .xl-gutters-5 > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; + } + .xl-gutters-10 { + margin-right: -10px; + margin-left: -10px; + } + .xl-gutters-10 > .col, + .xl-gutters-10 > [class*="col-"] { + padding-right: 10px; + padding-left: 10px; + } + .xl-gutters-15 { + margin-right: -15px; + margin-left: -15px; + } + .xl-gutters-15 > .col, + .xl-gutters-15 > [class*="col-"] { + padding-right: 15px; + padding-left: 15px; + } + .xl-gutters-16 { + margin-right: -16px; + margin-left: -16px; + } + .xl-gutters-16 > .col, + .xl-gutters-16 > [class*="col-"] { + padding-right: 16px; + padding-left: 16px; + } + .xl-gutters-17 { + margin-right: -17px; + margin-left: -17px; + } + .xl-gutters-17 > .col, + .xl-gutters-17 > [class*="col-"] { + padding-right: 17px; + padding-left: 17px; + } + .xl-gutters-20 { + margin-right: -20px; + margin-left: -20px; + } + .xl-gutters-20 > .col, + .xl-gutters-20 > [class*="col-"] { + padding-right: 20px; + padding-left: 20px; + } + .xl-gutters-25 { + margin-right: -25px; + margin-left: -25px; + } + .xl-gutters-25 > .col, + .xl-gutters-25 > [class*="col-"] { + padding-right: 25px; + padding-left: 25px; + } + .xl-gutters-30 { + margin-right: -30px; + margin-left: -30px; + } + .xl-gutters-30 > .col, + .xl-gutters-30 > [class*="col-"] { + padding-right: 30px; + padding-left: 30px; + } + + .flex-grow-xl-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-grow-xl-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } + + [dir="rtl"] .row-cols-xl-1 > * { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + [dir="rtl"] .row-cols-xl-2 > * { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + [dir="rtl"] .row-cols-xl-3 > * { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + [dir="rtl"] .row-cols-xl-4 > * { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + [dir="rtl"] .row-cols-xl-5 > * { + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; + } + [dir="rtl"] .row-cols-xl-6 > * { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } +} + +/* xxl */ +@media (min-width: 1500px) { + .border-xxl { + border: 1px solid #dfdfe6 !important; + } + .border-xxl-top { + border-top: 1px solid #dfdfe6 !important; + } + .border-xxl-right { + border-right: 1px solid #dfdfe6 !important; + } + .border-xxl-bottom { + border-bottom: 1px solid #dfdfe6 !important; + } + .border-xxl-left { + border-left: 1px solid #dfdfe6 !important; + } + .border-xxl-0 { + border: 0 !important; + } + .border-xxl-top-0 { + border-top: 0 !important; + } + .border-xxl-right-0 { + border-right: 0 !important; + } + .border-xxl-bottom-0 { + border-bottom: 0 !important; + } + .border-xxl-left-0 { + border-left: 0 !important; + } + + .w-xxl-25 { + width: 25% !important; + } + .w-xxl-50 { + width: 50% !important; + } + .w-xxl-75 { + width: 75% !important; + } + .w-xxl-100 { + width: 100% !important; + } + .w-xxl-auto { + width: auto !important; + } + + .container , + .container-xxl { + max-width: 1400px; + } + .col-xxl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; + } + .row-cols-xxl-1 > * { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .row-cols-xxl-2 > * { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .row-cols-xxl-3 > * { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .row-cols-xxl-4 > * { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .row-cols-xxl-5 > * { + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; + } + .row-cols-xxl-6 > * { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-xxl-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100; + } + .col-xxl-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333%; + } + .col-xxl-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + .col-xxl-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + .col-xxl-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + .col-xxl-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667%; + } + .col-xxl-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + .col-xxl-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333%; + } + .col-xxl-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667%; + } + .col-xxl-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; + } + .col-xxl-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333%; + } + .col-xxl-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667%; + } + .col-xxl-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + .offset-xxl-0 { + margin-left: 0; + } + .offset-xxl-1 { + margin-left: 8.333333%; + } + .offset-xxl-2 { + margin-left: 16.666667%; + } + .offset-xxl-3 { + margin-left: 25%; + } + .offset-xxl-4 { + margin-left: 33.333333%; + } + .offset-xxl-5 { + margin-left: 41.666667%; + } + .offset-xxl-6 { + margin-left: 50%; + } + .offset-xxl-7 { + margin-left: 58.333333%; + } + .offset-xxl-8 { + margin-left: 66.666667%; + } + .offset-xxl-9 { + margin-left: 75%; + } + .offset-xxl-10 { + margin-left: 83.333333%; + } + .offset-xxl-11 { + margin-left: 91.666667%; + } + + .pl-xxl-6, + .px-xxl-6, + .p-xxl-6 { + padding-left: 4rem; + } + .pl-xxl-7, + .px-xxl-7, + .p-xxl-7 { + padding-left: 5rem; + } + .pl-xxl-8, + .px-xxl-8, + .p-xxl-8 { + padding-left: 6rem; + } + .pl-xxl-9, + .px-xxl-9, + .p-xxl-9 { + padding-left: 8rem; + } + .pl-xxl-10, + .px-xxl-10, + .p-xxl-10 { + padding-left: 10rem; + } + .pl-xxl-11, + .px-xxl-11, + .p-xxl-11 { + padding-left: 12rem; + } + .pl-xxl-12, + .px-xxl-12, + .p-xxl-12 { + padding-left: 16rem; + } + + .pr-xxl-6, + .px-xxl-6, + .p-xxl-6 { + padding-right: 4rem; + } + .pr-xxl-7, + .px-xxl-7, + .p-xxl-7 { + padding-right: 5rem; + } + .pr-xxl-8, + .px-xxl-8, + .p-xxl-8 { + padding-right: 6rem; + } + .pr-xxl-9, + .px-xxl-9, + .p-xxl-9 { + padding-right: 8rem; + } + .pr-xxl-10, + .px-xxl-10, + .p-xxl-10 { + padding-right: 10rem; + } + .pr-xxl-11, + .px-xxl-11, + .p-xxl-11 { + padding-right: 12rem; + } + .pr-xxl-12, + .px-xxl-12, + .p-xxl-12 { + padding-right: 16rem; + } + + .pt-xxl-6, + .py-xxl-6, + .p-xxl-6 { + padding-top: 4rem; + } + .pt-xxl-7, + .py-xxl-7, + .p-xxl-7 { + padding-top: 5rem; + } + .pt-xxl-8, + .py-xxl-8, + .p-xxl-8 { + padding-top: 6rem; + } + .pt-xxl-9, + .py-xxl-9, + .p-xxl-9 { + padding-top: 8rem; + } + .pt-xxl-10, + .py-xxl-10, + .p-xxl-10 { + padding-top: 10rem; + } + .pt-xxl-11, + .py-xxl-11, + .p-xxl-11 { + padding-top: 12rem; + } + .pt-xxl-12, + .py-xxl-12, + .p-xxl-12 { + padding-top: 16rem; + } + + .pb-xxl-6, + .py-xxl-6, + .p-xxl-6 { + padding-bottom: 4rem; + } + .pb-xxl-7, + .py-xxl-7, + .p-xxl-7 { + padding-bottom: 5rem; + } + .pb-xxl-8, + .py-xxl-8, + .p-xxl-8 { + padding-bottom: 6rem; + } + .pb-xxl-9, + .py-xxl-9, + .p-xxl-9 { + padding-bottom: 8rem; + } + .pb-xxl-10, + .py-xxl-10, + .p-xxl-10 { + padding-bottom: 10rem; + } + .pb-xxl-11, + .py-xxl-11, + .p-xxl-11 { + padding-bottom: 12rem; + } + .pb-xxl-12, + .py-xxl-12, + .p-xxl-12 { + padding-bottom: 16rem; + } + + .pl-xxl-5px, + .px-xxl-5px, + .p-xxl-5px { + padding-left: 5px; + } + .pl-xxl-10px, + .px-xxl-10px, + .p-xxl-10px { + padding-left: 10px; + } + .pl-xxl-14px, + .px-xxl-14px, + .p-xxl-14px { + padding-left: 14px; + } + .pl-xxl-15px, + .px-xxl-15px, + .p-xxl-15px { + padding-left: 15px; + } + .pl-xxl-20px, + .px-xxl-20px, + .p-xxl-20px { + padding-left: 20px; + } + .pl-xxl-25px, + .px-xxl-25px, + .p-xxl-25px { + padding-left: 25px; + } + .pl-xxl-30px, + .px-xxl-30px, + .p-xxl-30px { + padding-left: 30px; + } + + .pr-xxl-5px, + .px-xxl-5px, + .p-xxl-5px { + padding-right: 5px; + } + .pr-xxl-10px, + .px-xxl-10px, + .p-xxl-10px { + padding-right: 10px; + } + .pr-xxl-14px, + .px-xxl-14px, + .p-xxl-14px { + padding-right: 14px; + } + .pr-xxl-15px, + .px-xxl-15px, + .p-xxl-15px { + padding-right: 15px; + } + .pr-xxl-20px, + .px-xxl-20px, + .p-xxl-20px { + padding-right: 20px; + } + .pr-xxl-25px, + .px-xxl-25px, + .p-xxl-25px { + padding-right: 25px; + } + .pr-xxl-30px, + .px-xxl-30px, + .p-xxl-30px { + padding-right: 30px; + } + + .pt-xxl-5px, + .py-xxl-5px, + .p-xxl-5px { + padding-top: 5px; + } + .pt-xxl-10px, + .py-xxl-10px, + .p-xxl-10px { + padding-top: 10px; + } + .pt-xxl-14px, + .py-xxl-14px, + .p-xxl-14px { + padding-top: 14px; + } + .pt-xxl-15px, + .py-xxl-15px, + .p-xxl-15px { + padding-top: 15px; + } + .pt-xxl-20px, + .py-xxl-20px, + .p-xxl-20px { + padding-top: 20px; + } + .pt-xxl-25px, + .py-xxl-25px, + .p-xxl-25px { + padding-top: 25px; + } + .pt-xxl-30px, + .py-xxl-30px, + .p-xxl-30px { + padding-top: 30px; + } + + .pb-xxl-5px, + .py-xxl-5px, + .p-xxl-5px { + padding-bottom: 5px; + } + .pb-xxl-10px, + .py-xxl-10px, + .p-xxl-10px { + padding-bottom: 10px; + } + .pb-xxl-14px, + .py-xxl-14px, + .p-xxl-14px { + padding-bottom: 14px; + } + .pb-xxl-15px, + .py-xxl-15px, + .p-xxl-15px { + padding-bottom: 15px; + } + .pb-xxl-20px, + .py-xxl-20px, + .p-xxl-20px { + padding-bottom: 20px; + } + .pb-xxl-25px, + .py-xxl-25px, + .p-xxl-25px { + padding-bottom: 25px; + } + .pb-xxl-30px, + .py-xxl-30px, + .p-xxl-30px { + padding-bottom: 30px; + } + + .w-xxl-auto { + width: auto; + } + .w-xxl-5px, + .size-xxl-5px { + width: 5px; + } + .w-xxl-10px, + .size-xxl-10px { + width: 10px; + } + .w-xxl-15px, + .size-xxl-15px { + width: 15px; + } + .w-xxl-20px, + .size-xxl-20px { + width: 20px; + } + .w-xxl-25px, + .size-xxl-25px { + width: 25px; + } + .w-xxl-30px, + .size-xxl-30px { + width: 30px; + } + .w-xxl-35px, + .size-xxl-35px { + width: 35px; + } + .w-xxl-40px, + .size-xxl-40px { + width: 40px; + } + .w-xxl-45px, + .size-xxl-45px { + width: 45px; + } + .w-xxl-48px, + .size-xxl-48px { + width: 48px; + } + .w-xxl-50px, + .size-xxl-50px { + width: 50px; + } + .w-xxl-60px, + .size-xxl-60px { + width: 60px; + } + .w-xxl-64px, + .size-xxl-64px { + width: 64px; + } + .w-xxl-70px, + .size-xxl-70px { + width: 70px; + } + .w-xxl-80px, + .size-xxl-80px { + width: 80px; + } + .w-xxl-90px, + .size-xxl-90px { + width: 90px; + } + .w-xxl-100px, + .size-xxl-100px { + width: 100px; + } + .w-xxl-110px, + .size-xxl-110px { + width: 110px; + } + .w-xxl-120px, + .size-xxl-120px { + width: 120px; + } + .w-xxl-130px, + .size-xxl-130px { + width: 130px; + } + .w-xxl-140px, + .size-xxl-140px { + width: 140px; + } + .w-xxl-150px, + .size-xxl-150px { + width: 150px; + } + .w-xxl-160px, + .size-xxl-160px { + width: 160px; + } + .w-xxl-170px, + .size-xxl-170px { + width: 170px; + } + .w-xxl-180px, + .size-xxl-180px { + width: 180px; + } + .w-xxl-190px, + .size-xxl-190px { + width: 190px; + } + .w-xxl-200px, + .size-xxl-200px { + width: 200px; + } + .w-xxl-210px, + .size-xxl-210px { + width: 210px; + } + .w-xxl-220px, + .size-xxl-220px { + width: 220px; + } + .w-xxl-230px, + .size-xxl-230px { + width: 230px; + } + .w-xxl-240px, + .size-xxl-240px { + width: 240px; + } + .w-xxl-250px, + .size-xxl-250px { + width: 250px; + } + .w-xxl-260px, + .size-xxl-260px { + width: 260px; + } + .w-xxl-270px, + .size-xxl-270px { + width: 270px; + } + .w-xxl-280px, + .size-xxl-280px { + width: 280px; + } + .w-xxl-290px, + .size-xxl-290px { + width: 290px; + } + .w-xxl-300px, + .size-xxl-300px { + width: 300px; + } + .w-xxl-310px, + .size-xxl-310px { + width: 310px; + } + .w-xxl-320px, + .size-xxl-320px { + width: 320px; + } + .w-xxl-330px, + .size-xxl-330px { + width: 330px; + } + .w-xxl-340px, + .size-xxl-340px { + width: 340px; + } + .w-xxl-350px, + .size-xxl-350px { + width: 350px; + } + .w-xxl-360px, + .size-xxl-360px { + width: 360px; + } + .w-xxl-370px, + .size-xxl-370px { + width: 370px; + } + .w-xxl-380px, + .size-xxl-380px { + width: 380px; + } + .w-xxl-390px, + .size-xxl-390px { + width: 390px; + } + .w-xxl-400px, + .size-xxl-400px { + width: 400px; + } + .w-xxl-410px, + .size-xxl-410px { + width: 410px; + } + .w-xxl-420px, + .size-xxl-420px { + width: 420px; + } + .w-xxl-450px, + .size-xxl-450px { + width: 450px; + } + .w-xxl-500px, + .size-xxl-500px { + width: 500px; + } + .w-xxl-640px, + .size-xxl-640px { + width: 640px; + } + + .h-xxl-auto { + height: auto; + } + .h-xxl-5px, + .size-xxl-5px { + height: 5px; + } + .h-xxl-10px, + .size-xxl-10px { + height: 10px; + } + .h-xxl-15px, + .size-xxl-15px { + height: 15px; + } + .h-xxl-20px, + .size-xxl-20px { + height: 20px; + } + .h-xxl-25px, + .size-xxl-25px { + height: 25px; + } + .h-xxl-30px, + .size-xxl-30px { + height: 30px; + } + .h-xxl-35px, + .size-xxl-35px { + height: 35px; + } + .h-xxl-40px, + .size-xxl-40px { + height: 40px; + } + .h-xxl-45px, + .size-xxl-45px { + height: 45px; + } + .h-xxl-48px, + .size-xxl-48px { + height: 48px; + } + .h-xxl-50px, + .size-xxl-50px { + height: 50px; + } + .h-xxl-60px, + .size-xxl-60px { + height: 60px; + } + .h-xxl-64px, + .size-xxl-64px { + height: 64px; + } + .h-xxl-70px, + .size-xxl-70px { + height: 70px; + } + .h-xxl-80px, + .size-xxl-80px { + height: 80px; + } + .h-xxl-90px, + .size-xxl-90px { + height: 90px; + } + .h-xxl-100px, + .size-xxl-100px { + height: 100px; + } + .h-xxl-110px, + .size-xxl-110px { + height: 110px; + } + .h-xxl-120px, + .size-xxl-120px { + height: 120px; + } + .h-xxl-130px, + .size-xxl-130px { + height: 130px; + } + .h-xxl-140px, + .size-xxl-140px { + height: 140px; + } + .h-xxl-150px, + .size-xxl-150px { + height: 150px; + } + .h-xxl-160px, + .size-xxl-160px { + height: 160px; + } + .h-xxl-170px, + .size-xxl-170px { + height: 170px; + } + .h-xxl-180px, + .size-xxl-180px { + height: 180px; + } + .h-xxl-190px, + .size-xxl-190px { + height: 190px; + } + .h-xxl-200px, + .size-xxl-200px { + height: 200px; + } + .h-xxl-210px, + .size-xxl-210px { + height: 210px; + } + .h-xxl-220px, + .size-xxl-220px { + height: 220px; + } + .h-xxl-230px, + .size-xxl-230px { + height: 230px; + } + .h-xxl-240px, + .size-xxl-240px { + height: 240px; + } + .h-xxl-250px, + .size-xxl-250px { + height: 250px; + } + .h-xxl-260px, + .size-xxl-260px { + height: 260px; + } + .h-xxl-270px, + .size-xxl-270px { + height: 270px; + } + .h-xxl-280px, + .size-xxl-280px { + height: 280px; + } + .h-xxl-290px, + .size-xxl-290px { + height: 290px; + } + .h-xxl-300px, + .size-xxl-300px { + height: 300px; + } + .h-xxl-310px, + .size-xxl-310px { + height: 310px; + } + .h-xxl-320px, + .size-xxl-320px { + height: 320px; + } + .h-xxl-330px, + .size-xxl-330px { + height: 330px; + } + .h-xxl-340px, + .size-xxl-340px { + height: 340px; + } + .h-xxl-350px, + .size-xxl-350px { + height: 350px; + } + .h-xxl-360px, + .size-xxl-360px { + height: 360px; + } + .h-xxl-370px, + .size-xxl-370px { + height: 370px; + } + .h-xxl-380px, + .size-xxl-380px { + height: 380px; + } + .h-xxl-390px, + .size-xxl-390px { + height: 390px; + } + .h-xxl-400px, + .size-xxl-400px { + height: 400px; + } + .h-xxl-410px, + .size-xxl-410px { + height: 410px; + } + .h-xxl-420px, + .size-xxl-420px { + height: 420px; + } + .h-xxl-450px, + .size-xxl-450px { + height: 450px; + } + .h-xxl-460px, + .size-xxl-460px { + height: 460px; + } + .h-xxl-475px, + .size-xxl-475px { + height: 475px; + } + .h-xxl-485px, + .size-xxl-485px { + height: 485px; + } + .h-xxl-500px, + .size-xxl-500px { + height: 500px; + } + .h-xxl-640px, + .size-xxl-640px { + height: 640px; + } + + .xxl-no-gutters { + margin-right: -0px; + margin-left: -0px; + } + .xxl-no-gutters > .col, + .xxl-no-gutters > [class*="col-"] { + padding-right: 0px; + padding-left: 0px; + } + .xxl-gutters-5 { + margin-right: -5px; + margin-left: -5px; + } + .xxl-gutters-5 > .col, + .xxl-gutters-5 > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; + } + .xxl-gutters-10 { + margin-right: -10px; + margin-left: -10px; + } + .xxl-gutters-10 > .col, + .xxl-gutters-10 > [class*="col-"] { + padding-right: 10px; + padding-left: 10px; + } + .xxl-gutters-15 { + margin-right: -15px; + margin-left: -15px; + } + .xxl-gutters-15 > .col, + .xxl-gutters-15 > [class*="col-"] { + padding-right: 15px; + padding-left: 15px; + } + .xxl-gutters-16 { + margin-right: -16px; + margin-left: -16px; + } + .xxl-gutters-16 > .col, + .xxl-gutters-16 > [class*="col-"] { + padding-right: 16px; + padding-left: 16px; + } + .xxl-gutters-17 { + margin-right: -17px; + margin-left: -17px; + } + .xxl-gutters-17 > .col, + .xxl-gutters-17 > [class*="col-"] { + padding-right: 17px; + padding-left: 17px; + } + .xxl-gutters-20 { + margin-right: -20px; + margin-left: -20px; + } + .xxl-gutters-20 > .col, + .xxl-gutters-20 > [class*="col-"] { + padding-right: 20px; + padding-left: 20px; + } + .xxl-gutters-25 { + margin-right: -25px; + margin-left: -25px; + } + .xxl-gutters-25 > .col, + .xxl-gutters-25 > [class*="col-"] { + padding-right: 25px; + padding-left: 25px; + } + .xxl-gutters-30 { + margin-right: -30px; + margin-left: -30px; + } + .xxl-gutters-30 > .col, + .xxl-gutters-30 > [class*="col-"] { + padding-right: 30px; + padding-left: 30px; + } + + [dir="rtl"] .row-cols-xxl-1 > * { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; + } + [dir="rtl"] .row-cols-xxl-2 > * { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; + } + [dir="rtl"] .row-cols-xxl-3 > * { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333%; + } + [dir="rtl"] .row-cols-xxl-4 > * { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; + } + [dir="rtl"] .row-cols-xxl-5 > * { + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; + } + [dir="rtl"] .row-cols-xxl-6 > * { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667%; + } + + .flex-grow-xxl-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; + } + .flex-grow-xxl-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; + } +} + +/*bootstrap, global reset*/ +body { + margin: 0; + font-family: Poppins, Helvetica, sans-serif; + font-size: 13px; + font-weight: 400; + line-height: 1.5; + color: #1b1b28; + background-color: #fff; + max-width: 100vw; + overflow-x: hidden; +} +a, +button, +input, +textarea, +.btn, +.has-transition { + -webkit-transition: all 0.5s ease; + transition: all 0.5s ease; +} +a { + color: var(--primary); +} +a:hover { + text-decoration: none; + color: var(--hov-primary); +} +:focus, +a:focus, +button:focus, +.page-link:focus, +.custom-file-input:focus ~ .custom-file-label { + box-shadow: none; + outline: none; +} +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-results-button, +input[type="search"]::-webkit-search-results-decoration { + display: none; +} +input[type="number"]::-webkit-outer-spin-button, +input[type="number"]::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + -webkit-appearance: none; + margin: 0; +} +input[type="number"] { + -moz-appearance: textfield; +} + +/*mobile toggler*/ +.aiz-mobile-toggler { + position: relative; + overflow: hidden; + margin: 0; + padding: 0; + font-size: 0; + text-indent: -9999px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-box-shadow: none; + box-shadow: none; + border-radius: none; + border: none; + cursor: pointer; + background: 0 0; + outline: 0 !important; + width: 24px; + height: 24px; + -webkit-transition: all 0.4s ease; + transition: all 0.4s ease; +} + +.aiz-mobile-toggler span { + display: block; + position: absolute; + top: 11px; + height: 2px; + min-height: 2px; + width: 100%; + border-radius: 2px; + -webkit-transition: all 0.4s ease; + transition: all 0.4s ease; + background: #484f66; +} + +.aiz-mobile-toggler span:before, +.aiz-mobile-toggler span:after { + position: absolute; + display: block; + left: 0; + width: 100%; + height: 2px; + min-height: 2px; + content: ""; + border-radius: 2px; + -webkit-transition: all 0.4s ease; + transition: all 0.4s ease; + background: #484f66; +} +.aiz-mobile-toggler.light span, +.aiz-mobile-toggler.light span:before, +.aiz-mobile-toggler.light span:after { + background: #fff; +} +.aiz-mobile-toggler span:before { + -webkit-transition: all 0.4s ease; + transition: all 0.4s ease; + left: auto; + left: 0; + width: 50%; + top: -8px; +} + +.aiz-mobile-toggler span:after { + -webkit-transition: all 0.4s ease; + transition: all 0.4s ease; + left: auto; + left: 0; + width: 75%; + bottom: -9px; +} +[dir="rtl"] .aiz-mobile-toggler span, +[dir="rtl"] .aiz-mobile-toggler span:before, +[dir="rtl"] .aiz-mobile-toggler span:after { + left: auto; + right: 0; +} + +/*aiz styles*/ +.aiz-main-wrapper { + min-height: 100vh; + max-width: 100vw; + background-color: var(--light); +} + +.aiz-titlebar h1, +.aiz-titlebar .title { + font-size: 1rem; + font-weight: 500; +} + +.aiz-content-wrapper { + padding-left: 0; + padding-top: 75px; + height: 100%; + min-height: 100vh; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + transition: all 0.3s; + -webkit-transition: all 0.3s; +} +.aiz-main-content { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-positive: 1; + flex-grow: 1; +} +/* lg */ +@media (min-width: 992px) { + .aiz-content-wrapper { + padding-top: 85px; + } +} +/* xl */ +@media (min-width: 1200px) { + .aiz-content-wrapper { + padding-left: 265px; + } + [dir="rtl"] .aiz-content-wrapper { + padding-left: 0; + padding-right: 265px; + } + .side-menu-closed .aiz-content-wrapper { + padding-left: 0; + } + [dir="rtl"] .side-menu-closed .aiz-content-wrapper { + padding-left: 0; + padding-right: 0; + } +} + +/*topbar*/ +.aiz-topbar { + position: fixed; + top: 0; + width: 100%; + height: 55px; + left: 0; + z-index: 97; + background-color: #fff; + -webkit-box-shadow: 0 10px 30px 0 rgba(121, 121, 162, 0.1); + box-shadow: 0 10px 30px 0 rgba(121, 121, 162, 0.1); + transition: all 0.3s; + -webkit-transition: all 0.3s; +} +.aiz-topbar-logo-wrap img { + height: 30px; +} +.aiz-topbar-user, +.aiz-topbar-user:hover { + color: var(--gray-dark); +} +.aiz-topbar-item { + display: -ms-flexbox; + display: flex; + -ms-flex-pack: distribute; + justify-content: space-around; + -ms-flex-align: stretch; + align-items: stretch; +} +/* lg */ +@media (min-width: 992px) { + .aiz-topbar { + height: 65px; + } +} +/* xl */ +@media (min-width: 1200px) { + .aiz-topbar { + width: calc(100% - 265px); + left: 265px; + } + [dir="rtl"] .aiz-topbar { + left: auto; + right: 265px; + } + .side-menu-closed .aiz-topbar { + left: 0; + width: 100%; + } + [dir="rtl"] .side-menu-closed .aiz-topbar { + left: auto; + right: 0; + width: 100%; + } +} + +/*siebar nav*/ +.aiz-sidebar-overlay { + cursor: pointer; + position: fixed; + left: 0; + right: 0; + bottom: 0; + top: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.3); + z-index: 98; + visibility: hidden; + opacity: 0; + -webkit-transition: visibility 0.3s ease, opacity 0.3s ease; + transition: visibility 0.3s ease, opacity 0.3s ease; +} +@media (max-width: 1199.98px) { + .side-menu-open .aiz-sidebar-overlay { + visibility: visible; + opacity: 1; + } +} +.aiz-sidebar.left { + position: fixed; + top: 0; + bottom: 0; + left: -265px; + height: 100vh; + overflow-y: auto; + z-index: 99; + background-color: #141423; + width: 265px; + -webkit-transition: left 0.3s ease; + transition: left 0.3s ease; +} +[dir="rtl"] .aiz-sidebar.left { + left: auto; + right: -265px; + -webkit-transition: right 0.3s ease; + transition: right 0.3s ease; +} +.side-menu-open .aiz-sidebar-wrap .left { + left: 0px; +} +[dir="rtl"] .side-menu-open .aiz-sidebar-wrap .left { + right: 0; +} +.aiz-side-nav-logo-wrap a { + padding: 17px 25px; +} + +.aiz-side-nav-logo-wrap img { + height: 31px; +} +.aiz-side-nav-logo-wrap { + background-color: #1a1a27; +} + +.aiz-side-nav-wrap { + padding: 15px 0; +} +.aiz-side-nav-list { + list-style: none; + padding: 0; + margin: 0; +} +.aiz-side-nav-list .level-2:not(.mm-show):not(.mm-collapsing), +.aiz-side-nav-list .level-3:not(.mm-show):not(.mm-collapsing) { + visibility: hidden; + height: 0; +} +.aiz-side-nav-list .aiz-side-nav-link { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + padding: 10px 25px; + font-size: 0.875rem; + font-weight: 400; + color: #a2a3b7; +} +.aiz-side-nav-list .aiz-side-nav-icon { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + color: #7a7c9e; + margin-right: 6px; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +[dir="rtl"] .aiz-side-nav-list .aiz-side-nav-icon { + margin-right: 0px; + margin-left: 6px; +} +.aiz-side-nav-list .aiz-side-nav-text { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; +} +.aiz-side-nav-list .aiz-side-nav-arrow { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + font-size: 80%; +} +.aiz-side-nav-list .aiz-side-nav-link:hover .aiz-side-nav-icon { + color: #9191a0; +} +.aiz-side-nav-list .aiz-side-nav-arrow::after { + content: "\f105"; + font-family: "Line Awesome Free"; + font-weight: 900; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +[dir="rtl"] .aiz-side-nav-list .aiz-side-nav-arrow::after { + content: "\f104"; +} +.aiz-side-nav-list [aria-expanded="true"] .aiz-side-nav-arrow::after { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} +[dir="rtl"] + .aiz-side-nav-list + [aria-expanded="true"] + .aiz-side-nav-arrow::after { + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); +} +.aiz-side-nav-list .level-2 .aiz-side-nav-link { + padding: 10px 25px 10px 54px; + position: relative; + font-size: 0.8125rem; +} +[dir="rtl"] .aiz-side-nav-list .level-2 .aiz-side-nav-link { + padding: 10px 54px 10px 25px; +} +.aiz-side-nav-list .level-3 .aiz-side-nav-link { + padding-left: 68px; +} + +.aiz-side-nav-list .level-2 .aiz-side-nav-link:after { + position: absolute; + content: ""; + height: 6px; + width: 6px; + border: 1px solid #575979; + border-radius: 50%; + top: calc(50% - 3px); + left: 40px; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +.aiz-side-nav-list .level-3 .aiz-side-nav-link:after { + left: 54px; +} +[dir="rtl"] .aiz-side-nav-list .level-2 .aiz-side-nav-link:after { + left: 0px; + right: 40px; +} +[dir="rtl"] .aiz-side-nav-list .level-3 .aiz-side-nav-link:after { + right: 54px; +} + +.aiz-side-nav-list .aiz-side-nav-link:hover, +.aiz-side-nav-list .aiz-side-nav-link.level-2-active, +.aiz-side-nav-list .aiz-side-nav-link.level-3-active, +.aiz-side-nav-list .aiz-side-nav-link.active { + color: #fff; + background-color: #181827; +} +.aiz-side-nav-list .level-2 .aiz-side-nav-link:hover:after, +.aiz-side-nav-list .level-2 .aiz-side-nav-link.active:after { + background: #575979; +} + +/* xl */ +@media (min-width: 1200px) { + .aiz-sidebar.left { + left: 0px; + } + [dir="rtl"] .aiz-sidebar.left { + left: auto; + right: 0; + } + .side-menu-closed .aiz-sidebar.left { + left: -265px; + } + [dir="rtl"] .side-menu-closed .aiz-sidebar.left { + left: auto; + right: -265px; + } +} + +/*dropdown*/ +.dropdown-toggle { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; +} +.dropdown-toggle::after { + border: 0; + content: "\f107"; + font-family: "Line Awesome Free"; + font-weight: 900; + font-size: 80%; + margin-left: 0.3rem; +} +.dropup .dropdown-toggle::after { + border: 0; + content: "\f106"; +} +.dropdown-toggle.no-arrow::after { + content: none; +} +.dropdown-menu { + border-color: #dfdfe6; + margin: 0; + border-radius: 0; + min-width: 14rem; + font-size: inherit; + padding: 0; + -webkit-box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15); + box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15); + padding: 0.5rem 0; + border-radius: 4px; + max-width: 100%; +} +.dropdown-menu-animated { + display: block; + visibility: hidden; + opacity: 0; + -webkit-transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s; + transition: margin-top 0.3s, visibility 0.3s, opacity 0.3s; + margin-top: 20px !important; +} +.show.dropdown-menu { + visibility: visible; + opacity: 1; + margin-top: 0 !important; +} +.dropdown-menu.dropdown-menu-xs { + width: 160px; + min-width: 160px; +} +.dropdown-menu.dropdown-menu-sm { + width: 240px; + min-width: 240px; +} +.dropdown-menu.dropdown-menu-md { + width: 260px; + min-width: 260px; +} +.dropdown-menu.dropdown-menu-lg { + width: 320px; + min-width: 320px; +} +.dropdown-menu.dropdown-menu-xl { + width: 380px; + min-width: 380px; +} +.dropdown-item { + display: block; + width: 100%; + padding: 0.5rem 1.5rem; + clear: both; + font-weight: 400; + color: #74788d; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.dropdown-item.active, +.dropdown-item:hover, +.dropdown-item:active { + color: #fff !important; + background-color: var(--primary); +} + +.notifications .nav-link{ + border: 0px; + border-bottom: 2px solid transparent; +} +.notifications .nav-link.active{ + border-bottom-color: #d43533; +} + +/*card elements*/ +.card { + -webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); + box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); + background-color: #fff; + margin-bottom: 20px; + border-color: #ebedf2; +} +.card .card-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + position: relative; + padding: 12px 25px; + border-bottom: 1px solid #ebedf2; + min-height: 50px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + background-color: transparent; +} +.card .card-body { + padding: 20px 25px; + border-radius: 4px; +} +.card .card-footer { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-top: 1px solid #ebedf2; + background-color: transparent; + padding: 12px 25px; +} +.card-bordered { + border: 1px solid #ebedf2; +} +.aiz-p-hov-icon a { + display: block; + height: 36px; + width: 36px; + line-height: 36px; + text-align: center; + background: #fff; + margin-top: 5px; + margin-right: 5px; + color: #333; + font-size: 16px; + box-shadow: 0px 2px 10px rgb(0 0 0 / 15%); + transform: translateX(calc(100% + 15px)); + -webkit-transform: translateX(calc(100% + 15px)); +} +[dir="rtl"] .aiz-p-hov-icon a { + transform: translateX(calc(-100% - 15px)); + -webkit-transform: translateX(calc(-100% - 15px)); + margin-left: 5px; +} +.aiz-p-hov-icon a:hover { + background: var(--primary); + color: #fff; +} +.aiz-p-hov-icon a:nth-child(2) { + transition-delay: 0.05s; + -webkit-transition-delay: 0.05s; +} +.aiz-p-hov-icon a:nth-child(3) { + transition-delay: 0.1s; + -webkit-transition-delay: 0.1s; +} +.aiz-card-box { + overflow: hidden; +} +.aiz-card-box:hover .aiz-p-hov-icon a { + transform: translateX(0); + -webkit-transform: translateX(0); +} +.aiz-card-box .disc-amount{ + margin-right: -37%; + opacity: 0 !important; +} +.aiz-card-box:hover .disc-amount{ + margin-right: 0; + opacity: 1 !important; +} + +.carousel-box .aiz-card-box { + overflow: hidden; + margin-top: 2px; + margin-bottom: 2px; +} + +.cart-btn{ + background: #000; + opacity: 0.7; + transform: translateY(100%); + transition: 0.3s; + overflow: hidden; +} +.cart-btn:hover, +.cart-btn.active{ + opacity: 1; +} +.cart-btn .cart-btn-text{ + margin-top: 48px; + transition: 0.4s; +} +.cart-btn:hover .cart-btn-text{ + margin-top: -40px; +} +.aiz-card-box:hover .cart-btn{ + transform: translateY(0); +} + +/*tabs*/ +.aiz-nav-tabs a.active { + border-bottom: 2px solid var(--primary); +} + +/*aiz steps*/ +.aiz-steps .icon { + height: 40px; + width: 40px; + line-height: 40px; + margin-left: auto; + margin-right: auto; + background: var(--secondary); + font-size: 20px; + border-radius: 50%; + color: #fff; + margin-bottom: 10px; + position: relative; + z-index: 1; +} +.aiz-steps > * { + opacity: 0.4; +} +.aiz-steps > *:not(:first-of-type):before { + position: absolute; + width: calc(100% - 20px); + height: 4px; + background: var(--secondary); + content: ""; + right: calc(50% + 20px); + top: 18px; + z-index: 0; + opacity: 0.4; +} +[dir="rtl"] .aiz-steps > *:not(:first-of-type):before { + left: calc(50% + 20px); + right: auto; +} +.aiz-steps .title { + font-size: 15px; + font-weight: 600; +} +.aiz-steps .done .icon, +.aiz-steps .done:before { + background: var(--primary) !important; +} +.aiz-steps .done, +.aiz-steps .active, +.aiz-steps .done:before, +.aiz-steps .active:before { + opacity: 1 !important; +} +.aiz-steps .active .icon { + background: var(--success); +} +.aiz-steps.arrow-divider > *:not(:first-of-type) { + position: relative; +} +.aiz-steps.arrow-divider > *:not(:first-of-type):before { + position: absolute; + content: "\f105"; + font-family: "Line Awesome Free"; + font-weight: 900; + top: 5px; + left: -13px; + font-size: 22px; + opacity: 0.2 !important; + height: auto; + width: auto; + background-color: transparent !important; +} +[dir="rtl"] .aiz-steps.arrow-divider > *:not(:first-of-type):before { + left: auto; + right: -12px; + content: "\f104"; +} + +/*countdown*/ +.aiz-count-down { + display: flex; + direction: ltr; +} +.aiz-count-down .countdown-item { + padding: 4px 6px; + background: var(--primary); + color: #fff; + border-radius: 3px; + margin: 0 3px; +} +.aiz-count-down-lg .countdown-item { + padding: 6px 10px; + font-size: 16px; +} + +/* Countdown Circle */ +.aiz-count-down-circle{ + display: flex; + justify-content: center; + min-height: 100%; + background: #fff; + padding: 1rem; + box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.16); +} +.aiz-count-down-circle #time{ + display: flex; +} +.aiz-count-down-circle #time .circle{ + position: relative; + width: 70px; + height: 70px; + display: flex; + justify-content: center; + align-items: center; +} +.aiz-count-down-circle #time .circle svg{ + position: relative; + width: 70px; + height: 70px; + transform: rotate(270deg); +} +.aiz-count-down-circle #time .circle svg circle{ + width: 100%; + height: 100%; + fill: transparent; + stroke-width: 1; + stroke: #f7f2f2; + stroke-linecap: round; + transform: translate(5px, 5px); +} +.aiz-count-down-circle #time .circle svg circle:nth-child(2){ + stroke: var(--primary); + stroke-width: 2; + stroke-dasharray: 190; + stroke-dashoffset: 190; +} +.aiz-count-down-circle #time div{ + position: absolute; + text-align: center; + font-weight: 700; + color: #1b1b28; + font-size: 14px; +} +.aiz-count-down-circle #time div span{ + position: absolute; + transform: translateX(-50%) translateY(-10%); + font-size: 8px; + font-weight: 400; + letter-spacing: 0.2em; + text-transform: uppercase; +} +[dir="rtl"] .aiz-count-down-circle #time div span{ + transform: translateX(50%) translateY(-10%); +} + +/*form elements*/ + +.form-control { + padding: 0.6rem 1rem; + font-size: 0.875rem; + height: calc(1.3125rem + 1.2rem + 2px); + border: 1px solid #dfdfe6; + color: #898b92; +} +.form-control-sm { + height: calc(1.5rem + 0.8rem + 2px); + padding: 0.4rem 0.7rem; + font-size: 0.8125rem; + line-height: 1.5; + border-radius: 0.25rem; +} +.form-control-lg { + height: calc(1.5rem + 1.5rem + 2px); + padding: 0.75rem 1rem; + font-size: 1rem; + line-height: 1.5; + border-radius: 0.3rem; +} +.form-control:focus { + border-color: var(--primary); + box-shadow: none; +} +.form-control::-webkit-input-placeholder { + color: #898b92; +} +.form-control:-ms-input-placeholder { + color: #898b92; +} +.form-control::placeholder { + color: #898b92; +} +.form-control:disabled, +.form-control[readonly] { + background-color: #f7f8fa; + opacity: 1; + border-color: #dfdfe6; +} +.resize-off { + resize: none; +} +.custom-file-input:focus ~ .custom-file-label { + border-color: #dfdfe6; +} +.custom-file { + height: calc(1.3125rem + 1.2rem + 2px); + overflow: hidden; +} +.custom-file-input { + height: 0; + width: 0; + opacity: 0; + position: absolute; +} +.custom-file-name { + white-space: nowrap; +} +.custom-file-label, +.custom-file-label::after { + padding: 0.6rem 1rem; + font-size: 0.875rem; + height: calc(1.3125rem + 1.2rem + 2px); + border: 1px solid #dfdfe6; + color: #898b92; +} +.custom-file-label::after { + height: calc(1.3125rem + 1.2rem); +} +.custom-file-sm { + height: calc(1.5rem + 0.8rem + 2px); +} +.custom-file-sm .custom-file-label, +.custom-file-sm .custom-file-label::after { + height: calc(1.5rem + 0.8rem + 2px); + padding: 0.4rem 0.7rem; + font-size: 0.8125rem; + line-height: 1.5; +} +.custom-file-sm .custom-file-label::after { + height: calc(1.5rem + 0.8rem); +} + +.custom-file-lg { + height: calc(1.5rem + 1.5rem + 2px); +} +.custom-file-lg .custom-file-label, +.custom-file-lg .custom-file-label::after { + height: calc(1.5rem + 1.5rem + 2px); + padding: 0.75rem 1rem; + font-size: 1rem; + line-height: 1.5; +} +.custom-file-lg .custom-file-label::after { + height: calc(1.5rem + 1.5rem); +} + +/*custom checkbox, radio*/ +.aiz-checkbox-list { + padding: 0 0; +} +.aiz-checkbox, +.aiz-radio { + display: inline-block; + position: relative; + padding-left: 28px; + margin-bottom: 10px; + cursor: pointer; + font-size: 0.875rem; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +[dir="rtl"] .aiz-checkbox, +[dir="rtl"] .aiz-radio { + padding-right: 28px; + padding-left: 0; +} +.aiz-checkbox-list .aiz-checkbox, +.aiz-radio-list .aiz-radio { + display: block; +} +.aiz-checkbox.aiz-checkbox-disabled, +.aiz-radio.aiz-radio-disabled { + opacity: 0.8; + cursor: not-allowed; +} +.aiz-checkbox-inline .aiz-checkbox, +.aiz-radio-inline .aiz-radio { + display: inline-block; + margin-right: 15px; + margin-bottom: 5px; +} +.aiz-checkbox-inline .aiz-checkbox:last-child, +.aiz-radio-inline .aiz-radio:last-child { + margin-right: 0; +} +.aiz-checkbox > input, +.aiz-radio > input { + position: absolute; + z-index: -1; + opacity: 0; +} +.aiz-square-check, +.aiz-rounded-check { + background: 0 0; + position: relative; + height: 16px; + width: 16px; + border: 1px solid #d1d7e2; +} + +.aiz-checkbox .aiz-square-check, +.aiz-checkbox .aiz-rounded-check, +.aiz-radio .aiz-square-check, +.aiz-radio .aiz-rounded-check { + position: absolute; + top: 2px; + left: 0; +} +[dir="rtl"] .aiz-checkbox .aiz-square-check, +[dir="rtl"] .aiz-checkbox .aiz-rounded-check, +[dir="rtl"] .aiz-radio .aiz-square-check, +[dir="rtl"] .aiz-radio .aiz-rounded-check { + left: auto; + right: 0; +} +.aiz-square-check { + border-radius: 3px; +} +.aiz-rounded-check { + border-radius: 50%; +} +.aiz-square-check:after, +.aiz-rounded-check:after { + content: ""; + position: absolute; + visibility: hidden; + opacity: 0; + top: 50%; + left: 50%; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +.aiz-square-check:after { + margin-left: -2px; + margin-top: -6px; + width: 5px; + height: 10px; + border-width: 0 2px 2px 0 !important; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + border: solid var(--primary); +} +.aiz-rounded-check:after { + margin-left: -5px; + margin-top: -5px; + width: 10px; + height: 10px; + border-radius: 50%; + background: var(--primary); +} +.aiz-checkbox > input:checked ~ .aiz-square-check:after, +.aiz-radio > input:checked ~ .aiz-square-check:after, +.aiz-checkbox > input:checked ~ .aiz-rounded-check:after, +.aiz-radio > input:checked ~ .aiz-rounded-check:after { + visibility: visible; + opacity: 1; +} + +/*aiz megabox*/ +.aiz-megabox { + position: relative; + cursor: pointer; +} +.aiz-megabox input { + position: absolute; + z-index: -1; + opacity: 0; +} +.aiz-megabox .aiz-megabox-elem { + border: 1px solid #dfdfe6; + border-radius: 0.25rem; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + border-radius: 0.25rem; +} +.aiz-megabox > input:checked ~ span .aiz-rounded-check:after, +.aiz-megabox > input:checked ~ span .aiz-square-check:after { + visibility: visible; + opacity: 1; +} + +.aiz-megabox > input:checked ~ .aiz-megabox-elem, +.aiz-megabox > input:checked ~ .aiz-megabox-elem { + border-color: var(--primary); +} + +.aiz-megabox > input:checked ~ .aiz-megabox-elem.border-transparent { + border-color: var(--primary) !important; +} + +/*input group/ form group*/ +.input-group > .input-group-prepend > .form-control { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.input-group-text { + padding: 0.6rem 1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #74788d; + background-color: #f7f8fa; + border: 1px solid #dfdfe6; + border-radius: 4px; +} +.input-group-sm > .custom-select, +.input-group-sm > .form-control:not(textarea) { + height: calc(1.5em + 0.8rem + 2px); +} +.input-group-sm > .custom-select, +.input-group-sm > .form-control, +.input-group-sm > .input-group-append > .btn, +.input-group-sm > .input-group-append > .input-group-text, +.input-group-sm > .input-group-prepend > .btn, +.input-group-sm > .input-group-prepend > .input-group-text { + padding: 0.4rem 0.7rem; + font-size: 0.8125rem; +} + +/*input with icon*/ +.aiz-input-icon { + position: relative; +} +.aiz-input-icon.aiz-input-icon--left .form-control { + padding-left: 2.6rem; +} +.aiz-input-icon.aiz-input-icon--right .form-control { + padding-right: 2.6rem; +} +.aiz-input-icon > .aiz-input-icon__icon { + position: absolute; + height: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + top: 0; + width: 2.6rem; +} +.aiz-input-icon--left > .aiz-input-icon__icon { + left: 0; +} +.aiz-input-icon--right > .aiz-input-icon__icon { + right: 0; +} +/*switch*/ +.aiz-switch input:empty { + height: 0; + width: 0; + overflow: hidden; + position: absolute; + opacity: 0; +} +.aiz-switch input:empty ~ span { + display: inline-block; + position: relative; + text-indent: 0; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + line-height: 24px; + height: 21px; + width: 40px; + border-radius: 12px; +} +.aiz-switch input:empty ~ span:after, +.aiz-switch input:empty ~ span:before { + position: absolute; + display: block; + top: 0; + bottom: 0; + left: 0; + content: " "; + -webkit-transition: all 0.1s ease-in; + transition: all 0.1s ease-in; + width: 40px; + border-radius: 12px; +} +.aiz-switch input:empty ~ span:before { + background-color: #e8ebf1; +} +.aiz-switch input:empty ~ span:after { + height: 17px; + width: 17px; + line-height: 20px; + top: 2px; + bottom: 2px; + margin-left: 2px; + font-size: 0.8em; + text-align: center; + vertical-align: middle; + color: #f8f9fb; + background-color: #fff; +} +.aiz-switch input:checked ~ span:after { + background-color: var(--primary); + margin-left: 20px; +} +.aiz-switch-secondary input:checked ~ span:after { + background-color: var(--secondary); +} +.aiz-switch-success input:checked ~ span:after { + background-color: var(--success); +} +.aiz-switch-info input:checked ~ span:after { + background-color: var(--info); +} +.aiz-switch-warning input:checked ~ span:after { + background-color: var(--warning); +} +.aiz-switch-danger input:checked ~ span:after { + background-color: var(--danger); +} +.aiz-switch-light input:checked ~ span:after { + background-color: var(--light); +} +.aiz-switch-dark input:checked ~ span:after { + background-color: var(--dark); +} + +/*bootstrap select */ +.bootstrap-select .dropdown-toggle:focus, +.bootstrap-select > select.mobile-device:focus + .dropdown-toggle { + outline: none !important; +} +.bootstrap-select .dropdown-toggle { + color: #898b92; + background-color: transparent !important; + border-color: #dfdfe6; +} +.rounded-0 .dropdown-toggle { + border-radius: 0 !important; +} +.bootstrap-select.form-control-sm .dropdown-toggle { + padding: 0.416rem 0.7rem; + height: calc(1.5rem + 0.8rem + 2px); +} +.bootstrap-select.form-control-lg .dropdown-toggle { + height: calc(1.5rem + 1.5rem + 2px); + padding: 0.75rem 1rem; + font-size: 1rem; +} +.bootstrap-select .dropdown-toggle:active, +.bootstrap-select .dropdown-toggle:focus, +.show.bootstrap-select .dropdown-toggle { + border-color: var(--primary) !important; +} +.bootstrap-select .dropdown-menu .selected span.check-mark { + right: 12px; + top: 11px; +} +.bootstrap-select .bs-ok-default:after { + width: 6px; + height: 12px; + border-width: 0 2px 2px 0; + border-color: #6f6f80; +} +.dropdown-item:hover .bs-ok-default:after { + border-color: #fff; +} +.bootstrap-select .no-results { + padding: 8px 10px; + background: #f5f5f5; + margin: 0 8px; + border-radius: 3px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + max-width: 100%; +} +.bootstrap-select .dropdown-menu .notify { + width: calc(100% - 20px); + margin: 0 10px; + min-height: 26px; + padding: 8px 12px; + background: #f2f3f8; + border: 1px solid #e3e3e3; + border-radius: 3px; + -webkit-box-shadow: none; + box-shadow: none; + opacity: 1; +} +.bootstrap-select .notify.fadeOut { + -webkit-animation: bs-notify-fadeOut 2s linear 0.2s; + -o-animation: bs-notify-fadeOut 2s linear 0.2s; + animation: bs-notify-fadeOut 2s linear 0.2s; +} +.bootstrap-select .bs-actionsbox .btn-group button:first-child { + border-right: 1px solid #fff; +} + +.bootstrap-select .bs-actionsbox .btn-group button:last-child { + border-left: 1px solid #fff; +} + +.bootstrap-select .bs-actionsbox .btn-group button { + padding: 0.6rem 0.5rem; + line-height: 1; +} +.bootstrap-select .dropdown-menu li, +.bootstrap-select .dropdown-toggle .filter-option-inner-inner { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.bootstrap-select .dropdown-menu li a span.text { + max-width: 100%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + margin-right: 0; + vertical-align: bottom; +} +[dir="rtl"] .bootstrap-select .dropdown-toggle .filter-option { + float: right; + text-align: right; +} + +/*tagify tag input*/ +.aiz-tag-input { + height: auto; + padding: 0.465rem 1rem 0.2rem; +} +.aiz-tag-input .tagify__input { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.aiz-tag-input .tagify__input:before { + line-height: 1; + position: static; +} +.aiz-tag-input .tagify__tag, +.aiz-tag-input .tagify__input { + margin: 0px 5px 5px 0px; +} +.aiz-tag-input .tagify__tag__removeBtn { + font: 12px Serif; + line-height: 1.5; +} +.aiz-tag-input .tagify__tag__removeBtn:hover + div > span { + opacity: 1; +} + +/*text editor - summernote */ +.note-editor .note-dropzone { + opacity: 0 !important; +} +.note-editor.note-frame { + border: 1px solid #dfdfe6; + box-shadow: none; + background: #f7f8fa; +} +.note-editor.note-frame .panel-heading.note-toolbar { + background: #f7f8fa; +} +.note-editor .card-header.note-toolbar { + padding: 5px 10px 10px 10px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + display: block; + min-height: auto; +} +.note-editor.note-frame .note-statusbar { + border-color: #dfdfe6; + background-color: #f7f8fa; +} +.note-editor.note-airframe .note-statusbar .note-resizebar .note-icon-bar, +.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar { + border-color: #afafb9; +} +.note-toolbar .note-btn { + border-color: #dfdfe6; +} +.note-popover + .popover-content + .note-color + .note-dropdown-menu + .note-palette + .note-color-reset:hover, +.note-popover + .popover-content + .note-color + .note-dropdown-menu + .note-palette + .note-color-select:hover, +.note-toolbar + .note-color + .note-dropdown-menu + .note-palette + .note-color-reset:hover, +.note-toolbar + .note-color + .note-dropdown-menu + .note-palette + .note-color-select:hover { + background-color: var(--primary); + color: var(--white); +} +.note-popover .popover-content .note-btn-group .note-table, +.note-toolbar .note-btn-group .note-table, +.note-editor .note-toolbar .dropdown-menu { + min-width: 190px; +} +.note-popover .popover-content .note-color-all .note-dropdown-menu, +.note-toolbar .note-color-all .note-dropdown-menu { + min-width: 340px; +} +.note-dropdown-menu .dropdown-item > * { + padding: 0 !important; +} +.note-dropdown-menu .dropdown-item h1 { + font-size: 2rem; +} +.note-dropdown-menu .dropdown-item h2 { + font-size: 1.75rem; +} +.note-dropdown-menu .dropdown-item h3 { + font-size: 1.5rem; +} +.note-dropdown-menu .dropdown-item h4 { + font-size: 1.25rem; +} +.note-dropdown-menu .dropdown-item h5 { + font-size: 1rem; +} +.note-dropdown-menu .dropdown-item h6 { + font-size: 0.875rem; +} +.note-modal .note-group-select-from-files { + display: none !important; +} +@media (max-width: 575px) { + .note-video-clip { + max-width: 100%; + height: auto; + } + .aiz-card-box .disc-amount{ + margin-right: -60%; + opacity: 0 !important; + } + .px-xs-0{ + padding-left: 0 !important; + padding-right: 0 !important; + } +} +.aiz-editor-data img { + max-width: 100% !important; + height: auto !important; +} + +/*ecom pos ui*/ +.aiz-pos-product-list { + overflow-y: auto; + max-height: calc(100vh - 220px); + height: calc(100vh - 220px); + overflow-x: hidden; +} +.aiz-pos-cart-list { + overflow-y: auto; + max-height: calc(100vh - 490px); + height: calc(100vh - 490px); + overflow-x: hidden; +} + +/*Aiz Uploader*/ +.uppy-Root *:focus { + outline: none !important; +} +.uppy-size--md .uppy-DashboardItem-progressIndicator, +.uppy-DashboardContent-bar .uppy-DashboardContent-back { + visibility: hidden; + opacity: 0; +} +.uppy-Dashboard-inner { + width: 100% !important; + height: 100% !important; +} +.uppy-Root { + height: 100% !important; +} +.uppy-DashboardContent-addMore svg { + margin-bottom: 0; +} +.card-file { + padding: 8px; + position: relative; + border-color: rgb(223, 224, 228); + transition: all 0.2s ease-in-out; + margin-bottom: 20px; +} + +.card-file .card-body h6 { + font-size: 0.8rem; + margin-bottom: 0; +} + +.card-file .card-body p { + margin-bottom: 0; + font-size: 9px; + color: #8392a5; +} +.card-file .card-file-thumb { + height: 120px; + background-color: #f5f6fa; + display: flex; + align-items: center; + justify-content: center; +} + +.card-file .card-body { + padding: 10px 0 0; +} + +.card-file .card-file-thumb i { + font-size: 50px; + color: #b3becc; +} + +.aiz-uploader-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: rgba(0, 0, 0, 0.2); +} +[data-toggle="aizuploader"] { + cursor: pointer; +} +.aiz-uploader-all { + margin-left: -10px; + margin-right: -10px; + overflow-y: auto; + height: calc(100vh - 303px); +} +.uppy-Dashboard-files { + max-height: calc(100vh - 363px); +} +.aiz-file-box-wrap { + padding: 0 10px; + width: 50%; + float: left; +} +.aiz-file-box-wrap[aria-hidden="true"] { + display: none; +} +.aiz-file-box { + position: relative; +} +.aiz-file-box:before { + content: ""; + display: block; + padding-top: 100%; +} +.aiz-file-box .dropdown-file { + position: absolute; + top: 8px; + right: 9px; + z-index: 1; +} +.aiz-file-box .dropdown-file > a { + color: #5a5a5a; + font-size: 22px; + background: #f5f6fa; + cursor: pointer; +} +.aiz-file-box .card-file { + cursor: pointer; + overflow: hidden; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + opacity: 1; +} +.aiz-file-box .card-file .card-file-thumb { + position: absolute; + width: calc(100% - 16px); + top: 8px; + left: 8px; + height: calc(100% - 55px); +} + +.aiz-file-box .select-box { + position: absolute; + top: 0px; + left: 9px; + z-index: 1; +} + +.aiz-file-box .card-file .card-body { + position: absolute; + width: calc(100% - 16px); + bottom: 5px; + left: 8px; +} +[data-selected="true"] .aiz-uploader-select { + border-color: #007bff; + background: rgba(0, 123, 255, 0.05); +} +.modal-adaptive { + height: calc(100vh - 60px); + margin: 30px auto !important; +} + +/*File preview + remove*/ +.file-preview-item h6 { + font-size: 13px; + margin-bottom: 0; +} + +.file-preview-item { + padding: 8px; + border: 1px solid #ebedf2; + border-radius: 0.25rem; +} + +.file-preview-item p { + font-size: 10px; + margin-bottom: 0; + color: var(--secondary); +} +.file-preview-item .thumb { + -ms-flex: 0 0 50px; + flex: 0 0 50px; + max-width: 50px; + height: 45px; + width: 50px; + text-align: center; + background: #f1f2f4; + font-size: 20px; + color: #92969b; + border-radius: 0.25rem; + overflow: hidden; +} +.file-preview-item .remove { + -ms-flex: 0 0 52px; + flex: 0 0 52px; + max-width: 52px; + width: 52px; +} +.file-preview-item .body { + min-width: 0; +} + +.file-preview.box a { + color: inherit; +} +.file-preview.box:after { + content: ""; + clear: both; + display: table; +} +.file-preview.box .file-preview-item { + width: 160px; + float: left; + margin-right: 0.5rem; + padding: 0; + display: block !important; + position: relative; +} +.file-preview.box .thumb { + width: 100%; + max-width: 100%; + display: flex; + justify-content: center; + align-items: center; + height: 120px; + border-radius: 0; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} +.file-preview.box.sm .file-preview-item { + width: 100px; +} +.file-preview.box.sm .thumb { + height: 52px; +} + +.file-preview.box .body { + padding: 0; + padding: 8px 8px 2px; +} +.file-preview.box .remove { + position: absolute; + top: -6px; + right: -6px; + width: auto; + max-width: 100%; +} +.file-preview.box .remove .btn { + padding: 0; + width: 26px; + height: 26px; + border-radius: 50%; + background: #eaeaea; +} + +@media (min-width: 576px) { + /*sm*/ + .modal-adaptive { + max-width: 540px; + } + .aiz-file-box-wrap { + width: 33.3333%; + } +} +@media (min-width: 768px) { + /*md*/ + .modal-adaptive { + max-width: 720px; + } + .aiz-file-box-wrap { + width: 25%; + } + .modal-md { + max-width: 600px; + } +} +@media (min-width: 992px) { + /*lg*/ + .modal-adaptive { + max-width: 960px; + } + .aiz-file-box-wrap { + width: 20%; + } +} +@media (min-width: 1200px) { + /*xl*/ + .modal-adaptive { + max-width: 1140px; + } + .aiz-file-box-wrap { + width: 16.66666%; + } +} +@media (min-width: 1500px) { + /*xxl*/ + .modal-adaptive { + max-width: 1400px; + } +} +@media (max-width: 767px) { + .aiz-uploader-search i { + font-size: 23px; + cursor: pointer; + padding: 4px; + margin-right: 5px; + position: relative; + z-index: 2; + top: 3px; + } + + .aiz-uploader-search input { + position: absolute; + z-index: 1; + top: 0; + right: 5px; + left: 5px; + width: calc(100% - 10px); + height: 100%; + visibility: hidden; + opacity: 0; + transition: all 0.3s; + -webkit-transition: all 0.3s; + } + + .aiz-uploader-search.open input { + visibility: visible; + opacity: 1; + } + + .aiz-count-down-circle { + box-shadow: 0px 3px 20px rgb(0 0 0 / 16%); + } + + .aiz-accordion-panel ul li{ + border-bottom: 1px solid #292933; + padding-left: 1rem; + } + .aiz-accordion-panel ul li:last-child{ + border-bottom: none; + } + .aiz-accordion-panel ul li .text-sm-secondary{ + color: var(--secondary) !important; + } + .aiz-accordion-panel ul li.active .text-sm-secondary, + .aiz-accordion-panel ul li .text-sm-secondary:hover{ + color: var(--white) !important; + } + .aiz-accordion-panel ul li .animate-underline-white::after{ + position: relative !important; + } +} + +.search-icon { + position: relative; + display: inline-block; + width: 32px; + height: 32px; + overflow: hidden; + white-space: nowrap; + color: transparent; + z-index: 3; +} +.search-icon:hover { + color: transparent; +} +.search-icon::before, +.search-icon::after { + content: ""; + position: absolute; + -webkit-transition: opacity 0.3s; + -moz-transition: opacity 0.3s; + transition: opacity 0.3s; + -webkit-transform: translateZ(0); + -moz-transform: translateZ(0); + -ms-transform: translateZ(0); + -o-transform: translateZ(0); + transform: translateZ(0); + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.search-icon::before { + top: 7px; + left: 7px; + width: 14px; + height: 14px; + border-radius: 50%; + border: 2px solid #686f7a; +} +.search-icon::after { + height: 2px; + width: 8px; + background: #686f7a; + bottom: 10px; + right: 7px; + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} +.search-icon span { + position: absolute; + height: 100%; + width: 100%; + top: 0; + left: 0; +} +.search-icon span::before, +.search-icon span::after { + content: ""; + position: absolute; + display: inline-block; + height: 2px; + width: 18px; + top: 50%; + margin-top: -1px; + left: 50%; + margin-left: -8px; + background: #686f7a; + opacity: 0; + -webkit-transform: translateZ(0); + -moz-transform: translateZ(0); + -ms-transform: translateZ(0); + -o-transform: translateZ(0); + transform: translateZ(0); + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; + -moz-transition: opacity 0.3s, -moz-transform 0.3s; + transition: opacity 0.3s, transform 0.3s; +} +.search-icon span::before { + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} +.search-icon span::after { + -webkit-transform: rotate(-45deg); + -moz-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + -o-transform: rotate(-45deg); + transform: rotate(-45deg); +} +.open .search-icon::before, +.open .search-icon::after { + opacity: 0; +} +.open .search-icon span::before, +.open .search-icon span::after { + opacity: 1; +} +.open .search-icon span::before { + -webkit-transform: rotate(135deg); + -moz-transform: rotate(135deg); + -ms-transform: rotate(135deg); + -o-transform: rotate(135deg); + transform: rotate(135deg); +} +.open .search-icon span::after { + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} +.mobile-search.is-visible { + opacity: 1; + visibility: visible; + -webkit-transition: opacity 0.3s 0s, visibility 0s 0s; + -moz-transition: opacity 0.3s 0s, visibility 0s 0s; + transition: opacity 0.3s 0s, visibility 0s 0s; +} + +/*date range*/ +.daterangepicker { + border-color: #dfdfe6; + -webkit-box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15); + box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15); + font-family: inherit; +} +.daterangepicker:before { + border-bottom-color: #dfdfe6; +} +.daterangepicker th { + font-weight: 600; +} +.daterangepicker .calendar-table .next span, +.daterangepicker .calendar-table .prev span { + border-width: 0 1px 1px 0; + border-color: var(--dark); +} +.daterangepicker .calendar-table .next span { + margin-left: -5px; +} +.daterangepicker td.available:hover, +.daterangepicker th.available:hover, +.daterangepicker .ranges li:hover { + background-color: var(--light); +} +.daterangepicker .calendar-table td, +.daterangepicker .calendar-table th { + min-width: 30px; + width: 30px; + height: 30px; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +.daterangepicker td.in-range { + background-color: var(--soft-primary); +} +.daterangepicker td.active, +.daterangepicker td.active:hover, +.daterangepicker .ranges li.active { + background-color: var(--primary); +} +.daterangepicker .drp-buttons .btn { + font-weight: 500; +} +.daterangepicker select.monthselect, +.daterangepicker select.yearselect { + border-color: var(--light); + padding: 3px; +} +.daterangepicker .calendar-time { + padding-right: 8px; + display: -ms-flexbox; + display: flex; +} + +.daterangepicker select.ampmselect, +.daterangepicker select.hourselect, +.daterangepicker select.minuteselect, +.daterangepicker select.secondselect { + background-color: transparent; + border-color: var(--light); +} + +/*time picker*/ +.bootstrap-timepicker-widget.timepicker-orient-top { + margin-top: 6px; +} +.bootstrap-timepicker-widget.timepicker-orient-bottom { + margin-top: -2px; +} +.bootstrap-timepicker-widget.timepicker-orient-top:before { + border-bottom-color: #dfdfe6; +} +.bootstrap-timepicker-widget.timepicker-orient-bottom:before { + border-top-color: #dfdfe6; +} + +.bootstrap-timepicker-widget table td a:hover { + background-color: var(--light); + border-color: var(--light); +} +.bootstrap-timepicker-widget table td input { + border: 0; +} + +/*button element*/ +.btn.focus, +.btn:focus:not(.btn-shadow) { + box-shadow: none !important; + outline: none; +} +.btn { + padding: 0.6rem 1.2rem; + font-size: 0.875rem; + color: #2a3242; + font-weight: inherit; +} +.btn-shadow:hover { + -webkit-transform: translateY(-1px); + transform: translateY(-1px); + box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05), 0px 8px 8px rgba(0, 0, 0, 0.05), + 0px 16px 16px rgba(0, 0, 0, 0.05), 0px 32px 32px rgba(0, 0, 0, 0.05); +} +.btn-circle { + border-radius: 50em; +} +.btn-icon { + font-size: 1rem; + line-height: 1.4; + padding: 0.6rem; + width: calc(2.5125rem + 2px); + height: calc(2.5125rem + 2px); +} +.btn-xs { + padding: 0.25rem 0.75rem; + font-size: 0.75rem; +} +.btn-sm { + padding: 0.416rem 1rem; + font-size: 0.8125rem; +} +.btn-sm.btn-icon { + padding: 0.416rem; + width: calc(2.02rem + 2px); + height: calc(2.02rem + 2px); +} +.btn-lg { + padding: 0.75rem 1.5rem; + font-size: 1rem; +} +.btn-lg.btn-icon { + padding: 0.75rem; + font-size: 1.2rem; + width: calc(3rem + 2px); + height: calc(3rem + 2px); +} +.btn-primary:hover, +.btn-primary:focus, +.btn-primary:active, +.btn-primary.disabled, +.btn-primary:disabled, +.btn-primary:not(:disabled):not(.disabled).active, +.btn-primary:not(:disabled):not(.disabled):active, +.show > .btn-primary.dropdown-toggle, +.btn-outline-primary:not(:disabled):not(.disabled).active, +.btn-outline-primary:not(:disabled):not(.disabled):active, +.show > .btn-outline-primary.dropdown-toggle { + background-color: var(--hov-primary); + border-color: var(--hov-primary); +} +.btn-primary, +.btn-soft-primary:hover, +.btn-outline-primary:hover { + background-color: var(--primary); + border-color: var(--primary); + color: var(--white); +} +.btn-secondary, +.btn-soft-secondary:hover, +.btn-outline-secondary:hover { + background-color: var(--secondary); + border-color: var(--secondary); + color: var(--white); +} +.btn-success, +.btn-soft-success:hover, +.btn-outline-success:hover { + background-color: var(--success); + border-color: var(--success); + color: var(--white); +} +.btn-danger, +.btn-soft-danger:hover, +.btn-outline-danger:hover { + background-color: var(--danger); + border-color: var(--danger); + color: var(--white); +} +.btn-warning, +.btn-soft-warning:hover, +.btn-outline-warning:hover { + background-color: var(--warning); + border-color: var(--warning); +} +.btn-info, +.btn-soft-info:hover, +.btn-outline-info:hover { + background-color: var(--info); + border-color: var(--info); + color: var(--white); +} +.btn-light, +.btn-outline-light:hover { + background-color: var(--light); + border-color: var(--light); +} +.btn-dark, +.btn-soft-dark:hover, +.btn-outline-dark:hover { + background-color: var(--dark); + border-color: var(--dark); + color: var(--white); +} +.btn-link { + color: var(--primary); +} +.btn-link:hover { + color: var(--hov-primary); +} +.btn-clean:hover { + background-color: var(--light); + border-color: var(--light); +} + +/*soft buttons*/ +.btn-soft-primary { + background-color: var(--soft-primary); + color: var(--primary); +} +.btn-soft-secondary { + background-color: var(--soft-secondary); + color: var(--dark); +} +.btn-soft-success { + background-color: var(--soft-success); + color: var(--success); +} +.btn-soft-danger { + background-color: var(--soft-danger); + color: var(--danger); +} +.btn-soft-warning { + background-color: var(--soft-warning); + color: var(--warning); +} +.btn-soft-info { + background-color: var(--soft-info); + color: var(--info); +} +.btn-soft-dark { + background-color: var(--soft-dark); + color: var(--dark); +} +.btn-soft-white { + background-color: var(--soft-white); + color: var(--white); +} +.btn-soft-white:hover { + background-color: var(--gray); + color: var(--white); +} + +/*outline buttons*/ +.btn-outline-primary { + border-color: var(--primary); + color: var(--primary); +} +.btn-outline-secondary { + border-color: var(--secondary); + color: var(--dark); +} +.btn-outline-success { + border-color: var(--success); + color: var(--success); +} +.btn-outline-danger { + border-color: var(--danger); + color: var(--danger); +} +.btn-outline-warning { + border-color: var(--warning); + color: var(--warning); +} +.btn-outline-info { + border-color: var(--info); + color: var(--info); +} +.btn-outline-light { + border-color: var(--light); + color: var(--dark); +} +.btn-outline-dark { + border-color: var(--dark); + color: var(--dark); +} + +/*footable*/ +.aiz-table { + opacity: 0; + height: 0; +} +div.footable-loader { + height: 220px; +} +.aiz-table.footable, +.aiz-table.footable-details { + opacity: 1; + height: auto; +} +div.footable-loader > span.fooicon { + border: 4px solid #1e1e2d; + border-right-color: transparent; + border-radius: 50%; +} +div.footable-loader > span.fooicon:before, +div.footable-loader > span.fooicon:after { + content: none; +} +.aiz-table thead th { + border-top: 0; + border-bottom: 1px solid #eceff7; +} +.aiz-table th { + font-weight: 600; +} +.aiz-table td, +.aiz-table th { + border-top: 1px solid #eceff7; +} +.aiz-table td, +.aiz-table th { + padding: 1rem 0.75rem; +} +.aiz-table.table-bordered td, +.aiz-table.table-bordered th { + border: 1px solid #eceff7; +} +.aiz-table .footable-detail-row > td { + padding: 0; +} +.aiz-table .footable-toggle { + height: 16px; + width: 16px; + line-height: 16px; + font-size: 16px; + border-radius: 4px; + text-align: center; + opacity: 1; + color: var(--primary); + background-color: var(--soft-primary); + margin-right: 10px; +} +.aiz-table .footable-toggle.fooicon-minus { + color: var(--white); + background-color: var(--primary); +} +.aiz-table.footable > tbody > tr.footable-empty > td { + font-size: 20px; + position: relative; + padding-top: 100px; +} + +.aiz-table.footable > tbody > tr.footable-empty > td:before { + content: "\f119"; + font-family: "Line Awesome Free"; + font-weight: 900; + position: absolute; + left: 50%; + top: 20px; + font-size: 60px; + opacity: 0.5; + transform: translate(-50%, 0px); +} +.aiz-table .footable-pagination-wrapper { + display: -ms-flexbox; + display: flex; + -ms-flex-pack: space-between; + justify-content: space-between; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-top: 1rem; +} + +.aiz-table .footable-page-link, +.aiz-table .footable-page.disabled .footable-page-link { + min-width: 36px; + min-height: 36px; + line-height: 36px; + text-align: center; + padding: 0; + border: 0; + font-size: 0.875rem; + border-radius: 50% !important; + color: var(--dark); + display: inline-block; +} + +.aiz-table .footable-page { + margin: 0 2px; +} + +.aiz-table .active .footable-page-link, +.aiz-table .footable-page-link:hover { + background-color: var(--primary); + color: #fff; +} + +/*notify*/ +.aiz-notify { + min-width: 350px; + max-width: 350px; + padding-right: 50px; + border-radius: 0.25rem; + overflow: hidden; + border: 0; + color: var(--white); + box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2); + -webkit-box-shadow: 0 5px 20px 0 rgba(38, 45, 58, 0.2); + padding: 1.25rem 1.25rem; + font-size: 0.875rem; + z-index: 1060 !important; +} +[dir="rtl"] .aiz-notify { + text-align: right !important; +} +.aiz-notify .close { + top: 50% !important; + height: 20px; + width: 20px; + margin-top: -10px; + font-size: 20px; + line-height: 20px; + color: var(--white); + opacity: 0.7; + right: 15px !important; + text-shadow: none; +} +[dir="rtl"] .aiz-notify .close { + right: auto !important; + left: 15px !important; +} +.aiz-notify .close:before { + content: ""; + position: absolute; + border-radius: 50%; + background-color: #fff; + width: 100%; + height: 100%; + top: 0; + left: 0; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + z-index: -1; + opacity: 0; +} +.aiz-notify .close:hover { + color: var(--dark); + opacity: 1; +} +.aiz-notify .close:hover:before { + opacity: 1; + background-color: #fff; + width: 170%; + height: 170%; + top: -35%; + left: -35%; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +.aiz-notify .progress { + height: 3px; + position: absolute; + bottom: 0; + left: 0; + right: 0; + width: 100%; + border-radius: 0; + background-color: transparent; +} +.aiz-notify .progress-bar { + background-color: var(--white); +} +.aiz-notify.alert-success { + background-color: var(--success); +} +.aiz-notify.alert-danger { + background-color: var(--danger); +} +.aiz-notify.alert-primary { + background-color: var(--primary); +} +.aiz-notify.alert-warning { + background-color: var(--warning); +} +.aiz-notify.alert-info { + background-color: var(--info); +} +.aiz-notify.alert-dark { + background-color: var(--dark); +} +.aiz-notify.alert-secondary { + background-color: var(--secondary); +} +.aiz-notify.alert-light, +.aiz-notify.alert-light .close { + background-color: var(--light); + color: var(--dark); +} +.aiz-notify.alert-light .progress-bar { + background-color: var(--primary); +} +@media (max-width: 575px) { + .aiz-notify { + width: calc(100% - 40px); + min-width: auto; + } + .h-sm-auto { + height: auto; + } +} + +/*pagination*/ +.aiz-pagination-center .pagination { + -ms-flex-pack: center; + justify-content: center; +} +.aiz-pagination-right .pagination { + -ms-flex-pack: end; + justify-content: flex-end; +} +.aiz-pagination .pagination { + margin-bottom: 0; + -ms-flex-wrap: wrap; + flex-wrap: wrap; +} + +.pagination .page-link, +.page-item.disabled .page-link { + min-width: 36px; + min-height: 36px; + line-height: 36px; + text-align: center; + padding: 0; + border: 0; + font-size: 0.875rem; + border-radius: 50% !important; + color: var(--dark); +} + +.pagination .page-item { + margin: 0 10px 0 0; +} + +.pagination .active .page-link { + background-color: var(--primary); + border-color: var(--primary); +} +.pagination .page-link:hover { + background-color: var(--primary); + color: #fff; +} + +/*modal*/ +.modal.website-popup { + display: block; +} +.modal-open .modal { + overflow-x: hidden; + overflow-y: hidden; +} +.modal-backdrop { + background-color: #11151d; +} +.modal-content { + border: 1px solid rgba(20, 20, 35, 0.2); +} +.modal-content .modal-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + position: relative; + padding: 12px 25px; + border-bottom: 1px solid #ebedf2; + min-height: 60px; + background-color: transparent; +} +.modal-header .close { + font-size: 0; +} +.modal-header .close:before { + font-family: "Line Awesome Free"; + font-weight: 900; + content: "\f00d"; + font-size: 20px; +} +.modal-content .modal-body { + padding: 20px 25px; + overflow-y: auto; + max-height: 70vh; +} +@media (min-width: 768px) { + .modal-content .modal-body { + max-height: 80vh; + } +} +.modal-content .modal-footer { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + position: relative; + padding: 10px 25px; + border-top: 1px solid #ebedf2; + min-height: 60px; + background-color: transparent; +} +.modal.fade .modal-dialog.modal-dialog-zoom { + -webkit-transform: translate(0, 0) scale(0.8); + transform: translate(0, 0) scale(0.8); + transition: -webkit-transform 0.3s ease-out; + transition: transform 0.3s ease-out; + transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; +} +.modal.show .modal-dialog.modal-dialog-zoom { + -webkit-transform: translate(0, 0) scale(1); + transform: translate(0, 0) scale(1); +} +.modal.modal-static .modal-dialog.modal-dialog-zoom { + -webkit-transform: scale(1.02); + transform: scale(1.02); +} + +.modal.fade .modal-dialog-right { + position: absolute; + right: 0; + top: 0; + bottom: 0; + height: 100%; + margin: 0; + width: 400px; + max-width: 80vw; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-flow: column nowrap; + flex-flow: column nowrap; + background-color: #fff; + -ms-flex-line-pack: center; + align-content: center; + -webkit-transform: translate(50px, 0); + transform: translate(50px, 0); +} +.modal.show .modal-dialog-right { + -webkit-transform: translate(0px, 0); + transform: translate(0px, 0); +} +.modal-dialog-right .modal-content { + height: 100%; + border: 0; + border-radius: 0; +} +.modal-dialog-right .modal-body { + max-height: 86vh; +} + +/*badges*/ +.badge { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 18px; + width: 18px; + font-size: 0.65rem; + font-weight: 500; + line-height: unset; +} +.badge-circle { + border-radius: 50%; +} +.badge-sm { + height: 14px; + width: 14px; + font-size: 0.55rem; +} +.badge-md { + height: 24px; + width: 24px; + font-size: 0.75rem; +} +.badge-lg { + height: 28px; + width: 28px; + font-size: 0.85rem; +} +.badge.badge-dot { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + height: 8px; + width: 8px; +} +.badge-dot.badge-md { + height: 10px; + width: 10px; +} +.badge-dot.badge-lg { + height: 12px; + width: 12px; +} +.badge-inline { + width: auto; +} +.badge-status { + position: absolute; + top: calc(15% - 4px); + right: calc(15% - 4px); + font-size: 1px; +} +.badge-status:before { + position: absolute; + width: calc(100% + 6px); + height: calc(100% + 6px); + border: 3px solid #fff; + top: -3px; + left: -3px; + content: ""; + border-radius: 50%; +} +.badge-md.badge-status { + top: calc(15% - 5px); + right: calc(15% - 5px); +} +.badge-lg.badge-status { + top: calc(15% - 6px); + right: calc(15% - 6px); +} +.badge-primary { + background-color: var(--primary); +} +.badge-secondary { + background-color: var(--secondary); +} +.badge-success { + background-color: var(--success); +} +.badge-danger { + background-color: var(--danger); +} +.badge-warning { + background-color: var(--warning); +} +.badge-info { + background-color: var(--info); +} +.badge-light { + background-color: var(--light); +} +.badge-dark { + background-color: var(--dark); +} +.badge-gray { + background-color: var(--gray); + color: var(--white); +} +.badge-soft-primary { + background-color: var(--soft-primary); + color: var(--primary); +} +.badge-soft-secondary { + background-color: var(--soft-secondary); + color: var(--secondary); +} +.badge-soft-success { + background-color: var(--soft-success); + color: var(--success); +} +.badge-soft-danger { + background-color: var(--soft-danger); + color: var(--danger); +} +.badge-soft-warning { + background-color: var(--soft-warning); + color: var(--warning); +} +.badge-soft-info { + background-color: var(--soft-info); + color: var(--info); +} +.badge-soft-light { + background-color: var(--soft-light); +} +.badge-soft-dark { + background-color: var(--soft-dark); + color: var(--dark); +} + +.list-group-item { + border-color: #ebedf2; +} +.list-group-raw .list-group-item { + border: 0; +} + +/*slick carousel*/ +.aiz-carousel > * { + display: none; +} +.slick-initialized.aiz-carousel > *, +.aiz-carousel > *:first-child { + display: block; +} +.aiz-carousel.gutters-5 { + width: calc(100% + 10px); +} +.aiz-carousel.gutters-5 .carousel-box { + padding-left: 5px; + padding-right: 5px; +} +.aiz-carousel.gutters-10 { + width: calc(100% + 20px); +} +.aiz-carousel.gutters-10 .carousel-box { + padding-left: 10px; + padding-right: 10px; +} +.aiz-carousel.gutters-15 { + width: calc(100% + 30px); +} +.aiz-carousel.gutters-15 .carousel-box { + padding-left: 15px; + padding-right: 15px; +} +.aiz-carousel.gutters-16{ + width: calc(100% + 32px); +} +.aiz-carousel.gutters-16 .carousel-box { + padding-left: 16px; + padding-right: 16px; +} +.aiz-carousel-full * { + height: 100%; +} +.aiz-carousel .slick-arrow { + position: absolute; + top: 50%; + z-index: 2; + transform: translateY(-50%); + -webkit-transform: translateY(-50%); + width: 40px; + height: 40px; + background: #fff; + border-radius: 50em; + border: 0; + box-shadow: 0 0 1px 1px rgba(20, 23, 28, 0.1), + 0 3px 1px 0 rgba(20, 23, 28, 0.1); + font-size: 15px; + line-height: 40px; + padding: 0; + text-align: center; +} +.aiz-carousel .slick-prev:hover, +.aiz-carousel .slick-next:hover { + box-shadow: 0 2px 10px rgba(20, 23, 28, 0.13) !important; +} +.aiz-carousel .slick-prev { + left: 10px; +} +.aiz-carousel.hide-disabled .slick-disabled { + display: none !important; +} + +.aiz-carousel .slick-next { + right: 10px; +} +.aiz-carousel.arrow-dark .slick-arrow { + width: 25px; + height: 60px; + background: rgb(177 174 174 / 30%) !important; + border-radius: 0; + color: #fff; + box-shadow: none; +} +.aiz-carousel.arrow-x-0 .slick-prev { + left: 0 !important; +} +.aiz-carousel.arrow-x-0 .slick-next { + right: 0 !important; +} +.aiz-carousel.arrow-x-15 .slick-prev { + left: 15px !important; +} +.aiz-carousel.arrow-x-15 .slick-next { + right: 15px !important; +} +.todays-deal.aiz-carousel .slick-arrow { + background: transparent; + box-shadow: none; + top: 40%; + color: var(--white); + font-size: 20px; + transition: 0.4s; +} +.todays-deal.aiz-carousel .slick-arrow:hover { + color: var(--warning); +} +.todays-deal.aiz-carousel .slick-prev { + left: -30px; +} +.todays-deal.aiz-carousel .slick-next { + right: -30px; +} +.aiz-carousel .slick-dots { + list-style: none; + display: flex; + justify-content: center; + margin-top: 10px; + margin-bottom: 0; + padding-left: 0; +} +.aiz-carousel .slick-dots button { + height: 11px; + width: 11px; + padding: 0px; + color: transparent; + border: 0; + background: #ddd; + border-radius: 50%; + margin: 0 3px; +} +.aiz-carousel .slick-dots .slick-active button { + background: var(--primary); +} +.aiz-carousel.dots-inside-bottom .slick-dots { + position: absolute; + bottom: 10px; + left: 50%; + transform: translateX(-50%); + -webkit-transform: translateX(-50%); +} +.half-outside-arrow .slick-prev { + left: -10px; +} +.half-outside-arrow .slick-next { + right: -10px; +} +.arrow-none .slick-arrow { + display: none !important; +} +.arrow-inactive-none .slick-arrow.slick-disabled { + display: none !important; +} +.arrow-inactive-transparent .slick-arrow.slick-disabled { + opacity: 0.35 !important; +} +.slick-vertical .slick-arrow { + top: auto; + left: 50%; + right: auto; + transform: translateX(-50%) rotate(90deg); + -webkit-transform: translateX(-50%) rotate(90deg); +} +.slick-vertical .slick-prev { + top: -10px; +} +.slick-vertical .slick-next { + bottom: -10px; +} +[data-vertical="true"] .slick-current .carousel-box { + border-color: var(--primary) !important; + border-width: 2px !important; +} +[data-vertical="false"] .slick-current .carousel-box img{ + border-color: var(--primary) !important; + border-width: 2px !important; +} + +/*range slider - no ui slider*/ +.aiz-range-slider .noUi-connect { + background: var(--primary); +} +.aiz-range-slider .noUi-target { + border-color: var(--soft-secondary); +} + +/*iti mobile number select*/ +.iti { + display: block; + width: 100%; +} +.iti--allow-dropdown input { + padding-left: 95px !important; +} +.iti--separate-dial-code .iti__selected-flag, +.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag { + background: #fff; + margin-left: 2px; + border-right: 1px solid #dfdfe6; +} + +/*avatar*/ +.avatar { + width: 80px; + height: 80px; + border-radius: 50%; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + font-weight: 600; + font-size: 1.7em; + position: relative; +} +.avatar img { + object-fit: cover; + max-width: 100%; + width: 100%; + border-radius: 50%; + height: 100%; +} +.avatar-xxs { + width: 20px; + height: 20px; + font-size: 0.7em; +} +.avatar-xs { + width: 32px; + height: 32px; + font-size: 0.8em; +} +.avatar-sm { + width: 48px; + height: 48px; + font-size: 1.1em; +} +.avatar-md { + width: 64px; + height: 64px; + font-size: 1.4em; +} +.avatar-lg { + width: 100px; + height: 100px; + font-size: 2em; +} +.avatar-xl { + width: 120px; + height: 120px; + font-size: 2.3em; +} +.avatar-xxl { + width: 150px; + height: 150px; + font-size: 2.6em; +} +.avatar-rounded, +.avatar-rounded img { + border-radius: 0.3em; +} +.avatar-square, +.avatar-square img { + border-radius: 0; +} + +/*rating*/ +.rating i { + color: #c3c3c5; + font-size: 1rem; + letter-spacing: -1px; + -webkit-transition: all 0.3s; + transition: all 0.3s; +} +.rating i.hover, +.rating i.active, +.text-rating { + color: #ffa707; +} +.bg-rating { + background-color: #ffa707; +} +.rating i.half { + position: relative; +} +.rating-space i { + margin-left: 6px; +} +.rating i.half:after { + position: absolute; + content: "\f089"; + top: 0; + left: 0; + font-size: inherit; + color: #ffa707; + z-index: 1; +} +[dir="rtl"] .rating i.half { + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.rating-sm i { + font-size: 0.8125rem; +} +.rating-lg i { + font-size: 1.125rem; +} +.rating-input label { + cursor: pointer; +} +.rating-input input { + display: none; +} +.rating-mr-1 i { + margin-right: 0.5rem; +} + +/*chat*/ +.aiz-chat { + overflow: hidden; + -webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); + box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); + background: #fff; + border-radius: 4px; + border: 1px solid #ebedf2; +} +.aiz-chat .chat-user-list { + height: calc(80vh - 44px); + max-height: calc(80vh - 44px); + overflow-y: auto; +} +.chat-user-list-wrap .overlay { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + opacity: 0; + visibility: hidden; +} + +.aiz-chat .chat-list-wrap { + height: calc(80vh - 160px); + max-height: calc(80vh - 160px); + overflow-y: auto; +} +.aiz-chat .chat-list { + min-height: 100%; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-pack: end; + justify-content: flex-end; +} + +.chat-box-wrap { + position: relative; + padding: 80px 0; +} + +.chat-coversation { + max-width: 450px; + margin: 10px 0; +} +.chat-coversation .avatar { + margin-right: 15px; + margin-bottom: 12px; +} +.chat-coversation .media { + -ms-flex-align: end; + align-items: flex-end; +} +.chat-coversation .media-body .text { + background: var(--light); + padding: 10px 20px; + line-height: 1.7; + border-radius: 4px; +} +.chat-coversation .media-body .time { + font-size: 10px; + opacity: 0.5; + display: block; +} + +.chat-coversation.right { + margin-left: auto; +} +.chat-coversation.right .avatar { + margin-right: 0px; + margin-left: 15px; +} +.chat-coversation.right .time { + text-align: right; +} +.chat-coversation.right .media-body .text { + background: var(--primary); + color: #fff; +} + +.chat-footer .input-group { + background: var(--light); + border: 1px solid #dfdfe6; + border-radius: 50em; +} + +.chat-footer .form-control { + background: transparent; + border-color: transparent; +} + +.chat-footer .input-group > .input-group-append > .btn { + border-radius: 50em; +} + +.chat-header .active .la-info-circle:before { + content: "\f00d"; +} +.chat-info-wrap { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: absolute; + width: 100%; + height: calc(80vh - 154px); + top: 77px; + right: 0; + z-index: 2; + opacity: 0; + visibility: hidden; +} +.chat-info-wrap .overlay { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + opacity: 0; + visibility: hidden; +} +.chat-info-wrap .chat-info { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + -webkit-transform: translateX(100%); + transform: translateX(100%); + position: absolute; + height: 100%; + width: 400px; + max-width: 100%; + right: 0; + top: 0; + bottom: 0; + background: #fff; + opacity: 0; + visibility: hidden; + overflow-y: auto; +} +.chat-info-wrap.active, +.chat-info-wrap.active .overlay, +.chat-info-wrap.active .chat-info { + opacity: 1; + visibility: visible; +} +.chat-info-wrap.active .chat-info { + -webkit-transform: translateX(0%); + transform: translateX(0%); +} +@media (max-width: 991px) { + .chat-user-list-wrap { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + width: 100%; + height: 100%; + top: 0; + right: 0; + z-index: 9; + opacity: 0; + visibility: hidden; + } + .chat-user-list-wrap .chat-user-list-header { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + -webkit-transform: translateX(100%); + transform: translateX(100%); + position: absolute; + width: 340px; + max-width: 100%; + right: 0; + top: 0; + background: #fff; + opacity: 0; + visibility: hidden; + z-index: 1; + } + .chat-user-list-wrap .chat-user-list { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + -webkit-transform: translateX(100%); + transform: translateX(100%); + position: absolute; + height: calc(100% - 44px); + max-height: none; + width: 340px; + max-width: 100%; + right: 0; + top: 44px; + bottom: 0; + background: #fff; + opacity: 0; + visibility: hidden; + overflow-y: auto; + z-index: 1; + } + .chat-user-list-wrap.active, + .chat-user-list-wrap.active .overlay, + .chat-user-list-wrap.active .chat-user-list-header, + .chat-user-list-wrap.active .chat-user-list { + opacity: 1; + visibility: visible; + } + .chat-user-list-wrap.active .chat-user-list-header, + .chat-user-list-wrap.active .chat-user-list { + -webkit-transform: translateX(0%); + transform: translateX(0%); + } + + .home-banner-area .container{ + min-width: 100%; + padding-left: 0 !important; + padding-right: 0 !important; + } +} + +/*social icon colored*/ +ul.social a { + display: inline-block; + width: 36px; + height: 36px; + border-radius: 50em; + line-height: 43px; + text-align: center; + font-size: 18px; + background-color: #d5d5df; +} +ul.social-md a { + display: inline-block; + width: 20px; + height: 20px; + border-radius: 50em; + line-height: 22px; + text-align: center; + font-size: 13px; + background-color: #d5d5df; +} +ul.social a:hover { + -webkit-transform: translateY(-3px); + transform: translateY(-3px); +} +ul.social i { + color: #171727; + font-size: 24px; + font-weight: 700; +} +ul.social a:hover i{ + color: #fff; +} + +ul.social.colored i { + color: #fff; +} +ul.social [class*="facebook"]:hover, +ul.social.colored [class*="facebook"] { + background-color: #3b5998; +} +ul.social [class*="twitter"]:hover, +ul.social.colored [class*="twitter"] { + background-color: #1da1f2; +} +ul.social [class*="google"]:hover, +ul.social.colored [class*="google"] { + background-color: #e62833; +} +ul.social.colored [class*="apple"] { + background-color: #141414; +} +ul.social [class*="youtube"]:hover, +ul.social.colored [class*="youtube"] { + background-color: #ff0000; +} +ul.social [class*="instagram"]:hover, +ul.social.colored [class*="instagram"] { + background-color: #bd32a2; +} +ul.social [class*="tripadvisor"]:hover, +ul.social.colored [class*="tripadvisor"] { + background-color: #32da9d; +} +ul.social [class*="linkedin"]:hover, +ul.social.colored [class*="linkedin"] { + background-color: #0070ac; +} + +ul.colored-light [class*="facebook"] { + background-color: #c2d9fd; +} +ul.colored-light [class*="twitter"] { + background-color: #ace5f3; +} +ul.colored-light [class*="google"] { + background-color: #ffcbcc; +} +ul.colored-light [class*="youtube"] { + background-color: #ffcbcc; +} +ul.colored-light [class*="instagram"] { + background-color: #f7e2f3; +} + +ul.colored-light [class*="facebook"]:hover { + background-color: #3b5998; +} +ul.colored-light [class*="twitter"]:hover { + background-color: #1da1f2; +} +ul.colored-light [class*="google"]:hover { + background-color: #ff0000; +} +ul.colored-light [class*="youtube"]:hover { + background-color: #ff0000; +} +ul.colored-light [class*="instagram"]:hover { + background-color: #bd32a2; +} + +ul.colored-light [class*="facebook"] i { + color: #3b5998; +} +ul.colored-light [class*="twitter"] i { + color: #1da1f2; +} +ul.colored-light [class*="google"] i { + color: #ff0000; +} +ul.colored-light [class*="youtube"] i { + color: #ff0000; +} +ul.colored-light [class*="instagram"] i { + color: #bd32a2; +} +ul.colored-light a:hover i{ + color: #ffffff; +} + +/*apps icon*/ +ul.apps a { + display: inline-block; + width: 36px; + height: 36px; + border-radius: 50em; + line-height: 40px; + text-align: center; + font-size: 18px; + border: 1px solid #b5b5bf; +} +ul.apps a:hover > svg * { + fill: #171727 !important; +} +ul.apps a:hover { + background-color: #b5b5bf; +} +ul.apps i { + color: #b5b5bf; + font-size: 23px; +} +ul.apps a:hover i{ + color: #171727; +} + +.aiz-cookie-alert { + position: fixed; + bottom: 20px; + left: 20px; + right: 20px; + max-width: 300px; + z-index: 1070; + display: none; +} +.aiz-cookie-alert.show { + display: block; +} + +/*messnger icon mobile*/ +.fb_dialog_mobile iframe { + bottom: 70px !important; +} + +/*pages*/ +.aiz-auth-form { + max-width: 480px; +} + +/*front pages*/ + +/*user panel*/ +.aiz-user-sidenav-wrap { + -ms-flex: 0 0 315px; + flex: 0 0 315px; + max-width: 315px; + /* -webkit-box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); */ + /* box-shadow: 0 0 13px 0 rgba(82, 63, 105, 0.05); */ + background: #fff; + border-radius: 4px; + border: 1px solid #ebedf2; +} + +.aiz-user-panel { + -ms-flex-positive: 1; + flex-grow: 1; + padding-left: 30px; +} +[dir="rtl"] .aiz-user-panel { + padding-right: 30px; + padding-left: 0; +} +.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-link { + color: #292933; + font-weight: 500; + font-size: 0.875rem; + border-radius: 25px; + padding: 12px 20px 12px 20px; + margin-bottom: 3px; + display: flex; + align-items: center; +} +.aiz-user-sidenav .aiz-side-nav-list .level-2 .aiz-side-nav-link { + padding: 10px 25px 10px 54px; +} +.aiz-user-sidenav .aiz-side-nav-list .aiz-side-nav-icon { + width: 28px; + font-size: 16px; +} +.aiz-user-sidenav .aiz-side-nav-link.level-2-active, +.aiz-user-sidenav .aiz-side-nav-link.level-3-active { + background-color: transparent; + color: var(--dark); +} +.aiz-user-sidenav .level-2-active .aiz-side-nav-icon, +.aiz-user-sidenav .level-3-active .aiz-side-nav-icon { + color: var(--dark); +} +.aiz-user-sidenav .aiz-side-nav-link.active, +.aiz-user-sidenav .aiz-side-nav-link:hover { + background-color: var(--soft-warning); +} +.aiz-user-sidenav .level-2 .aiz-side-nav-link:hover:after, +.aiz-user-sidenav .level-2 .aiz-side-nav-link.active:after { + background: var(--dark); +} +.aiz-user-sidenav .active .aiz-side-nav-icon { + color: var(--dark); +} +.aiz-user-sidenav .aiz-side-nav-link > svg *{ + transition: 0.3s; +} +.aiz-user-sidenav .aiz-side-nav-link.active > svg *, +.aiz-user-sidenav .aiz-side-nav-link:hover > svg *, +.aiz-user-sidenav .level-2-active > svg *, +.aiz-user-sidenav .level-3-active > svg *{ + fill: var(--dark); +} + +@media (max-width: 1199px) { + .aiz-user-sidenav-wrap { + display: none; + height: 100vh; + } + .aiz-user-panel { + padding-left: 0px; + } + .aiz-user-sidenav { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + } + [dir="rtl"] .aiz-user-panel { + padding-right: 0px; + } +} +.aiz-mobile-side-nav .aiz-user-sidenav-wrap { + display: block; + max-width: initial; + border: 0; +} +.sidebar-cart .cart-toggler { + position: fixed; + right: 0; + top: 50%; + transform: translateY(-50%); + border: 0; + background: var(--primary); + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 10px; + color: #fff; + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); +} + +.sidebar-cart .cart-toggler .price { + background: #fff; + color: var(--primary); + border-radius: 3px; + margin-top: 10px; + font-weight: 500; + padding: 5px; +} +.cart-item:not(:last-of-type) { + margin-bottom: 10px; + padding-bottom: 10px; + border-bottom: 1px solid var(--light); +} + +/*hover category menu*/ +.aiz-category-menu .sub-cat-menu { + /* display: none; */ + position: absolute; + width: calc(100% - 270px); + left: calc(270px); + /* height: calc(100% + 20px); */ + height: 460px; + overflow: hidden; + top: 0; + z-index: -1; + background-color: #fff; + overflow-y: auto; + transition: 0.5s; + opacity: 0; +} +[dir="rtl"] .aiz-category-menu .sub-cat-menu { + left: auto; + right: calc(25% - 10px); +} +.aiz-category-menu .category-nav-element:hover .sub-cat-menu { + z-index: 9; + opacity: 1; +} +.aiz-user-top-menu .user-top-nav-element > a { + padding-top: 14px; + padding-bottom: 14px; +} +.aiz-category-menu .category-nav-element > a { + padding-top: 12px; + padding-bottom: 12px; +} +.aiz-user-top-menu .user-top-nav-element:hover > a , +.aiz-category-menu .category-nav-element:hover > a { + position: relative; + z-index: 10; + background: var(--soft-warning); +} +.aiz-user-top-menu .user-top-nav-element:hover > .user-top-menu-name, +.aiz-category-menu .category-nav-element:hover > a .cat-name{ + margin-left: 5px; +} +.hover-category-menu .all-category::before { + position: absolute; + content: ""; + width: 50px; + height: 20px; + bottom: 100%; + right: 0; +} +.hover-category-menu .all-category::before { + position: absolute; + content: ""; + height: 12px; + width: 12px; + border-top: 0; + border-right: 12px solid transparent; + border-bottom: 12px solid var(--soft-primary); + border-left: 12px solid transparent; + top: -12px; + right: 20px; +} +[dir="rtl"] .hover-category-menu .all-category::before { + left: 20px; + right: auto; +} + +#category-menu-bar-icon.show{ + transform: rotate(180deg); +} + +.hover-user-top-menu{ + display: none; +} +.hover-user-top-menu.active{ + display: block; + animation: toggle_show 0.5s +} + +@keyframes toggle_show { + 0% { + opacity: 0; + transform: translateY(0) + } + 100% { + opacity: 1; + transform: translateY(100) + } +} + +/*front widgets (footer)*/ + +/*footer widgets*/ +.aiz-front-widget .title { + font-size: 12px; + text-transform: uppercase; + letter-spacing: 0.1em; + margin-bottom: 20px; +} +.aiz-front-widget .menu { + list-style: none; + padding: 0; + margin: 0; +} + +.aiz-front-widget .menu a { + display: inline-block; + color: inherit; + padding: 5px 0; +} + +.aiz-front-widget .menu a:hover { + transform: translateX(5px); + -webkit-transform: translateX(5px); +} + +/*header*/ +.aiz-header { + box-shadow: 0 10px 30px rgba(34, 44, 62, 0.05); + border-bottom: 1px solid #edf0f5; +} + +/*subheader*/ +.aiz-subheader { + border-bottom: 1px solid #edf0f5; +} + +.aiz-subheader a { + color: #6f6f6f; +} + +.aiz-subheader a:hover { + color: var(--primary); +} + +/*navbar*/ +.aiz-navbar .search .input-group > select, +.aiz-navbar .search .bootstrap-select { + min-width: 160px; +} + +.aiz-navbar .search .input-group-prepend { + min-width: 280px; +} + +.aiz-navbar .menu a { + color: #505050; + font-weight: 500; + font-size: 13px; +} +.aiz-navbar .menu a.btn-primary { + color: #fff; +} +@media (max-width: 991px) { + .front-header-search { + position: absolute; + z-index: 1; + width: 100%; + height: 100%; + top: 0; + right: 0; + left: 0; + opacity: 0; + transform: translateY(-100%); + -webkit-transform: translateY(-100%); + transition: all 0.3s; + -webkit-transition: all 0.3s; + } + .front-header-search.active { + transform: translateY(0%); + -webkit-transform: translateY(0%); + opacity: 1; + } +} + +/*slider mobile auto height*/ +@media (max-width: 767.98px) { + .mobile-img-auto-height img { + height: auto; + } +} + +/*footer*/ +.aiz-footer { + background: #151c29; + padding-top: 70px; +} + +.policy-file a > svg *{ + transition: 0.3s; +} +.policy-file:hover a > svg *{ + fill: var(--primary) !important; +} + +.aiz-front-widget .title { + color: #717b8c; +} +.aiz-footer .menu a { + color: #cfd3da; +} +.aiz-footer p { + color: #cbcdd2; +} + +/*copyright*/ +.aiz-footer-copyright { + border-top: 1px solid #283244; +} + +[dir="rtl"] .la-angle-right { + transform: rotate(180deg); + -webkit-transform: rotate(180deg); +} + +[dir="rtl"] .slick-arrow .la-angle-right { + transform: rotate(0deg); + -webkit-transform: rotate(0deg); +} + +[dir="rtl"] .la-angle-left { + transform: rotate(180deg); + -webkit-transform: rotate(180deg); +} + +[dir="rtl"] .slick-arrow .la-angle-left { + transform: rotate(0deg); + -webkit-transform: rotate(0deg); +} + +.category-filter li { + font-weight: 400; +} + +.category-filter a { + color: inherit; + display: block; + padding: 5px 0; +} + +.category-filter .go-back { + font-weight: 500; +} +.category-filter .go-back ~ li:not(.go-back) { + margin-left: 20px; +} +.category-filter .go-back a:before { + content: "\f104"; + font-family: "Line Awesome Free"; + font-weight: 900; + text-rendering: optimizeLegibility; + text-transform: none; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + opacity: 0.7; + font-size: 90%; + margin-right: 5px; +} + +.category-filter .child a { + padding-left: 17px; +} + +/*workdesk*/ +.card-project { + border-left: 3px solid transparent; +} + +.card-project:not(:last-of-type) { + border-bottom: 1px solid #ebedf2; +} + +.card-project:hover { + border-left-color: var(--primary); + box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08), 0 2px 4px 0 rgba(0, 0, 0, 0.12); +} + +/* collapse side bar*/ + +.collapse-sidebar-wrap .overlay { + opacity: 0; + visibility: hidden; +} + +.collapse-sidebar-wrap .overlay { + opacity: 0; + visibility: hidden; +} +.sidebar-all { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + height: 100%; + width: 100%; + top: 0; + left: 0; + z-index: 1; +} +.sidebar-all .collapse-sidebar { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + width: 340px; + max-width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 2; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + overflow-y: auto; +} +.sidebar-all.sidebar-right .collapse-sidebar { + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; +} +.sidebar-all.sidebar-auto .collapse-sidebar { + width: auto; + max-width: 100%; + height: auto; + -webkit-transform: translate(-50%, -100px); + transform: translate(-50%, -100px); + left: 50%; + top: 0; +} +.sidebar-all.sidebar-full .collapse-sidebar { + width: 100%; + max-width: 100%; + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; +} +.sidebar-all, +.sidebar-all .collapse-sidebar, +.sidebar-all .overlay { + opacity: 0; + visibility: hidden; +} +@media (max-width: 575.98px) { + .sidebar-sm { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + height: 100%; + width: 100%; + top: 0; + left: 0; + z-index: 1; + } + .sidebar-sm .collapse-sidebar { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + width: 340px; + max-width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 2; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + overflow-y: auto; + } + .sidebar-sm.sidebar-right .collapse-sidebar { + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; + } + .sidebar-sm.sidebar-auto .collapse-sidebar { + width: auto; + max-width: 100%; + height: auto; + -webkit-transform: translate(-50%, -100px); + transform: translate(-50%, -100px); + left: 50%; + top: 0; + } + .sidebar-sm.sidebar-full .collapse-sidebar { + width: 100%; + max-width: 100%; + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; + } + .sidebar-sm, + .sidebar-sm .collapse-sidebar, + .sidebar-sm .overlay { + opacity: 0; + visibility: hidden; + } + .aiz-filter-sidebar .collapse-sidebar { + overflow-y: auto; + } +} +@media (max-width: 767.98px) { + .sidebar-md { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + height: 100%; + width: 100%; + top: 0; + left: 0; + z-index: 1; + } + .sidebar-md .collapse-sidebar { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + width: 400px; + max-width: 320px; + height: 100%; + top: 0; + left: 0; + z-index: 2; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + overflow-y: auto; + } + .sidebar-md.sidebar-right .collapse-sidebar { + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; + } + .sidebar-md.sidebar-auto .collapse-sidebar { + width: auto; + max-width: 100%; + height: auto; + -webkit-transform: translate(-50%, -100px); + transform: translate(-50%, -100px); + left: 50%; + top: 0; + } + .sidebar-md.sidebar-full .collapse-sidebar { + width: 100%; + max-width: 100%; + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; + } + .sidebar-md, + .sidebar-md .collapse-sidebar, + .sidebar-md .overlay { + opacity: 0; + visibility: hidden; + } +} + +@media (max-width: 991.98px) { + .sidebar-lg { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + height: 100%; + width: 100%; + top: 0; + left: 0; + z-index: 1; + } + .sidebar-lg .collapse-sidebar { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + width: 400px; + max-width: 320px; + height: 100%; + top: 0; + left: 0; + z-index: 2; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + overflow-y: auto; + } + .sidebar-lg.sidebar-right .collapse-sidebar { + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; + } + .sidebar-lg.sidebar-auto .collapse-sidebar { + width: auto; + max-width: 100%; + height: auto; + -webkit-transform: translate(-50%, -100px); + transform: translate(-50%, -100px); + left: 50%; + top: 0; + } + .sidebar-lg.sidebar-full .collapse-sidebar { + width: 100%; + max-width: 100%; + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; + } + .sidebar-lg, + .sidebar-lg .collapse-sidebar, + .sidebar-lg .overlay { + opacity: 0; + visibility: hidden; + } +} + +@media (max-width: 1199.98px) { + .sidebar-xl { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + height: 100%; + width: 100%; + top: 0; + left: 0; + z-index: 1; + } + .sidebar-xl .collapse-sidebar { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; + position: fixed; + width: 400px; + max-width: 320px; + height: 100%; + top: 0; + left: 0; + z-index: 2; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + /* overflow-y: auto; */ + } + .sidebar-xl.sidebar-right .collapse-sidebar { + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; + } + .sidebar-xl.sidebar-auto .collapse-sidebar { + width: auto; + max-width: 100%; + height: auto; + -webkit-transform: translate(-50%, -100px); + transform: translate(-50%, -100px); + left: 50%; + top: 0; + } + .sidebar-xl.sidebar-full .collapse-sidebar { + width: 100%; + max-width: 100%; + -webkit-transform: translateX(100%); + transform: translateX(100%); + left: auto; + right: 0; + } + .sidebar-xl, + .sidebar-xl .collapse-sidebar, + .sidebar-xl .overlay { + opacity: 0; + visibility: hidden; + } +} + +.collapse-sidebar-wrap.active, +.collapse-sidebar-wrap.active .collapse-sidebar, +.collapse-sidebar-wrap.active .overlay { + opacity: 1; + visibility: visible; +} +.collapse-sidebar-wrap.active .collapse-sidebar { + -webkit-transform: translate(0%, 0%); + transform: translate(0%, 0%); + background-color: #fff; +} +.collapse-sidebar-wrap.active .sidebar-auto { + -webkit-transform: translate(-50%, 0px); + transform: translate(-50%, 0px); +} + +.dropdown-toggle.filter-section[data-toggle].collapsed:after { + content: "\f107"; + font-family: "Line Awesome Free"; + color: #b5b5bf; + font-size: 16px; +} + +.dropdown-toggle.filter-section[data-toggle]:not(.collapsed):after { + font-family: "Line Awesome Free"; + content: "\f106"; + color: #b5b5bf; + font-size: 16px; +} + +.iqty-btns { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + border-radius: 0.25rem; +} + +.iqty-btns.vertical { + -ms-flex-direction: column; + flex-direction: column; +} + +.iqty-btns .form-control { + border: 0; + background: transparent; +} + +.iqty-btns .form-control, +.iqty-btns .btn { + width: 30px; + height: 30px; + padding: 0; + text-align: center; + line-height: 30px; +} + +.badge-custom { + display: inline-block; + padding: 3px; + font-size: 11px; + border-radius: 0 50em 50em 0; + color: #ff0000; + font-weight: 600; + line-height: 26px; + position: absolute; + background: #fff; + z-index: 1; + top: 20px; + box-shadow: 2px 1px 6px 2px rgba(0, 0, 0, 0.1), + 0 4px 4px 0px rgba(0, 0, 0, 0.06) !important; +} + +.badge-custom .box { + height: 26px; + width: 26px; + background: #ff0000; + color: #fff; + display: inline-block; + border-radius: 50%; + text-align: center; +} +[dir="rtl"] .badge-custom { + border-radius: 50em 0 0 50em; +} + +.noUi-horizontal { + height: 10px; +} +.noUi-handle { + width: 20px !important; + height: 20px !important; + border-radius: 50%; + background: var(--warning); + cursor: pointer; + box-shadow: none !important; +} +.noUi-handle:after, .noUi-handle:before { + content: ""; + display: block; + position: absolute; + height: 0; + width: 0; + background: #E8E7E6; + left: 14px; + top: 6px; +} + +/* ---- Nav User Info ---- */ +.nav-user-info{ + cursor: pointer; +} +.nav-user-info .nav-user-img{ + transition: all 0.5s; +} +.nav-user-info:hover .nav-user-img{ + border-color: var(--primary) !important; + box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.16); +} +.nav-user-info .nav-user-img > svg *{ + transition: all 0.5s; +} +.nav-user-info:hover .nav-user-img > svg *{ + fill: var(--primary); +} + +/* ---- particles ---- */ +#particles-js{ + width: 100%; + height: 100%; + background-color: #ffffff; + background-image: url(''); + background-size: cover; + background-position: 50% 50%; + background-repeat: no-repeat; +} +#particles-js canvas{ + display:block; +} + +/* search input box */ +.search-input-box{ + position: relative; + width: 100%; + } +.search-input-box > input{ + border-radius: 21px; + overflow:hidden; + height: 40px; +} +.search-input-box > svg { + position: absolute; + right: 20px; + top: 10px; +} +[dir="rtl"] .search-input-box > svg { + right: auto; + left: 20px; +} +.search-input-box .form-control:focus { + border-width: 2px !important; + border-color: var(--primary) !important; +} + +/* animate underline */ +.animate-underline-gradient, +.animate-underline-primary, +.animate-underline-blue, +.animate-underline-white{ + position: relative; +} +.animate-underline-gradient::after, +.animate-underline-primary::after, +.animate-underline-blue::after, +.animate-underline-white:after{ + content: ''; + position: absolute; + left: 0; + right: 0; + height: 1px; + border-radius: 2px; + transform-origin: right; + transform: scaleX(0); + transition: transform .5s cubic-bezier(0,0,.2,1),-webkit-transform .5s cubic-bezier(0,0,.2,1); +} +.animate-underline-gradient::after{ + bottom: -6px; + background: linear-gradient(144deg, rgba(167,46,184,1) 20%, rgba(247,81,81,1) 82%); +} +.animate-underline-white:after{ + bottom: -5px; + background: #fff; +} +.animate-underline-primary:after{ + bottom: -3px; + background: var(--primary); +} +.animate-underline-blue:after{ + bottom: -3px; + background: var(--blue); + height: 2px; +} +.animate-underline-gradient:hover::after, +.animate-underline-primary:hover::after, +.animate-underline-blue:hover::after, +.animate-underline-white:hover::after{ + transform: scaleX(1); + transform-origin: left; +} + +/* animate outline */ +.hov-animate-outline{ + position: relative;; +} +.hov-animate-outline::before, +.hov-animate-outline::after{ + box-sizing: inherit; + content: ''; + position: absolute; + z-index: -1 !important; + width: 0; + height: 0; + transition: color 0.3s; + border: 2px solid transparent; +} +.hov-animate-outline::before { + top: 0; + left: 0; +} +[dir="rtl"] .hov-animate-outline::before { + left: auto; + right: 0; +} +.hov-animate-outline::after { + top: 0; + bottom: 0; + left: 0; + right: 0; +} +.hov-animate-outline:hover::before, +.hov-animate-outline:hover::after { + width: 100%; + height: 100%; +} +.hov-animate-outline:hover::before { + border-top-color: var(--primary); + border-right-color: var(--primary); + transition: + width 0.3s ease-out, + height 0.3s ease-out 0.3s; +} +[dir="rtl"] .hov-animate-outline:hover::before { + border-left-color: var(--primary); + border-right-color: transparent; +} +.hov-animate-outline:hover::after { + border-bottom-color: var(--primary); + border-left-color: var(--primary); + transition: + height 0.3s ease-out, + width 0.3s ease-out 0.3s; +} +[dir="rtl"] .hov-animate-outline:hover::after { + border-right-color: var(--primary); + border-left-color: transparent; +} + +/* Visit Button */ +.btn-visit { + position: relative; + display: inline-block; + cursor: pointer; + outline: none; + border: 0; + vertical-align: middle; + text-decoration: none; + background: transparent; + padding: 0; + font-size: inherit; + font-family: inherit; +} +.btn-visit { + width: 12rem; + height: auto; +} +.btn-visit .circle { + transition: all 0.8s cubic-bezier(0.65,0,.076,1); + position: relative; + display: block; + margin: 0; + width: 2.5rem; + height: 2.5rem; + background: #fdefd8; + border-radius: 1.625rem; +} +.btn-visit .circle .icon { + transition: all 0.5s cubic-bezier(0.65,0,.076,1); + position: absolute; + top: 0; + bottom: 0; + margin: auto; + background: var(--primary); +} +.btn-visit .circle .icon.arrow { + transition: all 0.5s cubic-bezier(0.65,0,.076,1); + left: 0.4rem; + width: 1.125rem; + height: 0.125rem; + background: none; +} +[dir="rtl"] .btn-visit .circle .icon.arrow { + left: 0.5rem; +} +.btn-visit .circle .icon.arrow::before { + position: absolute; + content: ''; + top: -0.25rem; + right: 0.0625rem; + width: 0.625rem; + height: 0.625rem; + border-top: 0.125rem solid var(--primary); + border-right: 0.125rem solid var(--primary); + transform: rotate(45deg); +} +[dir="rtl"] .btn-visit .circle .icon.arrow::before { + transform: rotate(225deg); +} +.btn-visit .button-text { + transition: all 0.5s cubic-bezier(0.65,0,.076,1); + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding: 0.65rem 0; + margin: 0 0 0 1.85rem; + color: var(--dark); + font-weight: 700; + line-height: 1.6; + text-align: center; + text-transform: uppercase; +} +[dir="rtl"] .btn-visit .button-text { + margin: 0 0.5rem 0 0; +} +.btn-visit:hover .circle { + width: 100%; +} +.btn-visit:hover .circle .icon.arrow { + background: var(--primary); + transform: translate(1rem, 0); +} +[dir="rtl"] .btn-visit:hover .circle .icon.arrow { + left: 0; +} +[dir="rtl"] .btn-visit:hover .circle .icon.arrow::before { + right: auto; +} +.btn-visit:hover .button-text { + color: var(--primary); +} + +/* Slide Button */ +.btn-slide{ + background: none; + border: 2px solid; + font: inherit; + line-height: 1; + padding: 1em 2em; + color: var(--dark); + border-color: var(--dark); + transition: 0.5s; +} +.btn-slide:hover, +.btn-slide:focus{ + color: #fff !important; + box-shadow: inset 25em 0 0 0 var(--dark); +} +.btn-slide-primary{ + color: var(--primary) !important; + border-color: var(--primary) !important; +} +.btn-slide-primary:hover, +.btn-slide-primary:focus{ + box-shadow: inset 25em 0 0 0 var(--primary) !important; +} +.btn-slide-secondary{ + color: var(--secondary) !important; + border-color: var(--secondary) !important; +} +.btn-slide-secondary:hover, +.btn-slide-secondary:focus{ + box-shadow: inset 25em 0 0 0 var(--secondary) !important; +} +.btn-slide-warning{ + color: var(--warning) !important; + border-color: var(--warning) !important; +} +.btn-slide-warning:hover, +.btn-slide-warning:focus{ + box-shadow: inset 25em 0 0 0 var(--warning) !important; + color: var(--white) !important; +} + +/* Top menu sidebar for mobile */ +.aiz-top-menu-sidebar{ + opacity: 0; + visibility: hidden; +} +.aiz-top-menu-sidebar.active{ + opacity: 1; + visibility: visible; +} +.aiz-top-menu-sidebar .collapse-sidebar{ + overflow-y: auto; + transform: translateX(-100%); + left: 0; + right: auto; + transition: all 0.5s; +} +.aiz-top-menu-sidebar.active .collapse-sidebar{ + transform: translate(0%, 0%); +} +.aiz-top-menu-sidebar ul li{ + list-style-type: none; +} + +/* Accordion */ +.aiz-accordion-wrap{ + margin-bottom: 2px; +} +.aiz-accordion-heading .aiz-accordion { + background-color: #eee; + color: #444; + cursor: pointer; + padding: 18px 0; + width: 100%; + border: none; + text-align: left; + outline: none; + font-size: 15px; + transition: 0.4s; +} +.aiz-accordion-heading.active, .aiz-accordion-heading:hover { + background-color: #ccc; +} +.aiz-accordion-heading .aiz-accordion:after { + content: '\002B'; + color: #777; + font-weight: bold; + float: right; + margin-left: 5px; + font-size: 18px; +} +.aiz-accordion-heading.active .aiz-accordion:after { + content: "\2212"; +} +.aiz-accordion-panel { + background-color: white; + max-height: 0; + overflow: hidden; + transition: max-height 0.2s ease-out; +} + +/* Custom */ +.home-slider { + width: 100% !important; + max-width: 100% !important; +} +.hov-svg-white > svg *, +.hov-svg-dark > svg *{ + transition: 0.5s; +} +.hov-svg-white:hover > svg *{ + fill: var(--white); +} +.hov-svg-dark:hover > svg *{ + fill: var(--dark); +} +.rounded-content{ + border-radius: 50%; +} +.rounded-1{ + border-radius: 0.25rem !important; +} +.rounded-2{ + border-radius: 0.5rem !important; +} +.rounded-3{ + border-radius: 1rem !important; +} +.rounded-4{ + border-radius: 1.5rem !important; +} + +.flash-deal-item:hover .flash-deal-price{ + padding-top: 0 !important; +} + +.hov-pl-1:hover{ + padding-left: 0.25rem !important; +} +.hov-pl-2:hover{ + padding-left: 0.5rem !important; +} +.hov-pl-3:hover{ + padding-left: 1rem !important; +} +.hov-column-gap-1{ + transition: all 0.5s; + column-gap: 0; +} +.hov-column-gap-1:hover{ + column-gap: 0.25rem !important; +} +.hov-icon-opacity-100:hover i{ + opacity: 1 !important; +} +.link-disable{ + pointer-events: none; + opacity: 0.3; +} +.card-columns{ + column-gap: 2rem; +} +.header_menu_links.active{ + background-color: rgb(0 0 0 / 10%) !important; +} +#spotlight { + position: fixed; + top: -1px; + bottom: -1px; + width: 100%; + z-index: 99999; + color: #fff; + background-color: rgb(0 0 0 / 80%); +} + +.home-category-name i{ + transition: all 0.5s; + opacity: 0; +} +.home-category-name:hover i{ + opacity: 1; +} + +.min-w-150px{ + min-width: 150px; +} + +.ls-1, +.hov-ls-1:hover{ + letter-spacing: 1px; +} + +.less{ + max-height: 140px !important; + overflow: hidden; +} +.svg-active svg *{ + fill: var(--primary) !important; +} + +.aiz-carousel.product-gallery-thumb .slick-track { + transform: translate3d(0, 0, 0) !important; +} +@media (min-width: 576px){ + .aiz-mobile-bottom-nav{ + width: 463px !important; + height: 72px; + border-radius: 36px; + } + .card-columns { + column-count: 2 !important; + } +} +@media (min-width: 768px){ + .fs-md-12 { + font-size: 12px !important; + } + .fs-md-13 { + font-size: 13px !important; + } + .fs-md-14 { + font-size: 14px !important; + } + .fs-md-20 { + font-size: 20px !important; + } + .fs-md-24 { + font-size: 24px !important; + } + .gutters-md-16 { + margin-right: -16px; + margin-left: -16px; + } + .gutters-md-16 > .col, + .gutters-md-16 > [class*="col-"] { + padding-right: 16px; + padding-left: 16px; + } +} +@media (min-width: 992px){ + .card-columns { + column-count: 3 !important; + } + .arrow-lg-none .slick-arrow { + display: none !important; + } + .sticky-top-flash-deal{ + position: -webkit-sticky; + position: sticky; + top: 140px; + } +} +@media (min-width: 1200px){ + .home-slider { + max-width: calc(100% - 270px) !important; + } + .h-xl-100{ + height: 100% !important; + } +} diff --git a/desarrollo/public/assets/css/bootstrap-rtl.min.css b/desarrollo/public/assets/css/bootstrap-rtl.min.css index 4eb9c8f4..6405d9d9 100644 --- a/desarrollo/public/assets/css/bootstrap-rtl.min.css +++ b/desarrollo/public/assets/css/bootstrap-rtl.min.css @@ -3,5 +3,10976 @@ * Copyright 2011-2018 The Bootstrap Authors * Copyright 2011-2018 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:right;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:right;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-right:0;list-style:none}.list-inline{padding-right:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-left:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-left:15px;padding-right:15px;margin-left:auto;margin-right:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-left:15px;padding-right:15px;margin-left:auto;margin-right:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-left:15px;padding-right:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-right:8.333333%}.offset-2{margin-right:16.666667%}.offset-3{margin-right:25%}.offset-4{margin-right:33.333333%}.offset-5{margin-right:41.666667%}.offset-6{margin-right:50%}.offset-7{margin-right:58.333333%}.offset-8{margin-right:66.666667%}.offset-9{margin-right:75%}.offset-10{margin-right:83.333333%}.offset-11{margin-right:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-right:0}.offset-sm-1{margin-right:8.333333%}.offset-sm-2{margin-right:16.666667%}.offset-sm-3{margin-right:25%}.offset-sm-4{margin-right:33.333333%}.offset-sm-5{margin-right:41.666667%}.offset-sm-6{margin-right:50%}.offset-sm-7{margin-right:58.333333%}.offset-sm-8{margin-right:66.666667%}.offset-sm-9{margin-right:75%}.offset-sm-10{margin-right:83.333333%}.offset-sm-11{margin-right:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-right:0}.offset-md-1{margin-right:8.333333%}.offset-md-2{margin-right:16.666667%}.offset-md-3{margin-right:25%}.offset-md-4{margin-right:33.333333%}.offset-md-5{margin-right:41.666667%}.offset-md-6{margin-right:50%}.offset-md-7{margin-right:58.333333%}.offset-md-8{margin-right:66.666667%}.offset-md-9{margin-right:75%}.offset-md-10{margin-right:83.333333%}.offset-md-11{margin-right:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-right:0}.offset-lg-1{margin-right:8.333333%}.offset-lg-2{margin-right:16.666667%}.offset-lg-3{margin-right:25%}.offset-lg-4{margin-right:33.333333%}.offset-lg-5{margin-right:41.666667%}.offset-lg-6{margin-right:50%}.offset-lg-7{margin-right:58.333333%}.offset-lg-8{margin-right:66.666667%}.offset-lg-9{margin-right:75%}.offset-lg-10{margin-right:83.333333%}.offset-lg-11{margin-right:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-right:0}.offset-xl-1{margin-right:8.333333%}.offset-xl-2{margin-right:16.666667%}.offset-xl-3{margin-right:25%}.offset-xl-4{margin-right:33.333333%}.offset-xl-5{margin-right:41.666667%}.offset-xl-6{margin-right:50%}.offset-xl-7{margin-right:58.333333%}.offset-xl-8{margin-right:66.666667%}.offset-xl-9{margin-right:75%}.offset-xl-10{margin-right:83.333333%}.offset-xl-11{margin-right:91.666667%}}.table{width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(2.25rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-left:0;padding-right:0}.form-control-sm{height:calc(1.8125rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(2.875rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:-5px;margin-right:-5px}.form-row>.col,.form-row>[class*=col-]{padding-left:5px;padding-right:5px}.form-check{position:relative;display:block;padding-right:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-right:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-right:0;margin-left:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-left:.3125rem;margin-right:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-left:2.25rem;background-repeat:no-repeat;background-position:center left calc(2.25rem / 4);background-size:calc(2.25rem / 2) calc(2.25rem / 2);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e")}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-left:2.25rem;background-position:top calc(2.25rem / 4) left calc(2.25rem / 4)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-left:3.4375rem;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") no-repeat center right 1.75rem/1.125rem 1.125rem}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-left:2.25rem;background-repeat:no-repeat;background-position:center left calc(2.25rem / 4);background-size:calc(2.25rem / 2) calc(2.25rem / 2);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E")}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-left:2.25rem;background-position:top calc(2.25rem / 4) left calc(2.25rem / 4)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-left:3.4375rem;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") no-repeat center right 1.75rem/1.125rem 1.125rem}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-right:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-left:.25rem;margin-right:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media screen and (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media screen and (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-left:.3em solid transparent;border-bottom:0;border-right:.3em solid transparent}.dropdown-toggle:empty::after{margin-right:0}.dropdown-menu{position:absolute;top:100%;left:auto;z-index:1000;display:none;float:right;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-right{left:0;right:auto}@media (min-width:576px){.dropdown-menu-sm-right{left:0;right:auto}}@media (min-width:768px){.dropdown-menu-md-right{left:0;right:auto}}@media (min-width:992px){.dropdown-menu-lg-right{left:0;right:auto}}@media (min-width:1200px){.dropdown-menu-xl-right{left:0;right:auto}}.dropdown-menu-left{left:auto;right:0}@media (min-width:576px){.dropdown-menu-sm-left{left:auto;right:0}}@media (min-width:768px){.dropdown-menu-md-left{left:auto;right:0}}@media (min-width:992px){.dropdown-menu-lg-left{left:auto;right:0}}@media (min-width:1200px){.dropdown-menu-xl-left{left:auto;right:0}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:0;border-left:.3em solid transparent;border-bottom:.3em solid;border-right:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-right:0}.dropright .dropdown-menu{top:0;left:auto;right:100%;margin-top:0;margin-right:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:0;border-bottom:.3em solid transparent;border-right:.3em solid}.dropright .dropdown-toggle:empty::after{margin-right:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;left:100%;right:auto;margin-top:0;margin-left:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-right:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-left:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-right:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{left:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:first-child{border-top-right-radius:calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px)}.dropdown-item:last-child{border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-right:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.dropdown-toggle-split{padding-left:.5625rem;padding-right:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-right:0}.dropleft .dropdown-toggle-split::before{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-left:.375rem;padding-right:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-left:.75rem;padding-right:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-right-radius:0;border-top-left-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-right:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-right:-1px}.input-group-prepend{margin-left:-1px}.input-group-append{margin-right:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(2.875rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.8125rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-left:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-right:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-left:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;right:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;right:-1.5rem;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-right:2.25rem}.custom-switch .custom-control-label::before{right:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);right:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(-.75rem);transform:translateX(-.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem .75rem .375rem 1.75rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-left:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-right:.5rem;font-size:.875rem}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-right:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;left:0;right:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;left:0;bottom:0;z-index:3;display:block;height:2.25rem;padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-right:inherit;border-radius:.25rem 0 0 .25rem}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-left:.2rem;margin-right:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media screen and (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-left:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-right-radius:.25rem;border-top-left-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-left:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-right:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-left:0;padding-right:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-left:0;padding-right:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-left:0;padding-right:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-left:0;padding-right:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-left:0;padding-right:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-left:0;padding-right:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-left:.5rem;padding-right:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.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:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-left:0;margin-right:0}.card>.list-group:first-child .list-group-item:first-child{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-right:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;color:inherit;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-left:-.625rem;margin-bottom:-.75rem;margin-right:-.625rem;border-bottom:0}.card-header-pills{margin-left:-.625rem;margin-right:-.625rem}.card-img-overlay{position:absolute;top:0;left:0;bottom:0;right:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-right-radius:calc(.25rem - 1px);border-top-left-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-left-radius:calc(.25rem - 1px);border-bottom-right-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-left:-15px;margin-right:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-left:15px;margin-bottom:0;margin-right:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-right:0;border-right:0}.card-group>.card:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-left-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-right-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion .card{overflow:hidden}.accordion .card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion .card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion .card:first-of-type{border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.accordion .card:last-of-type{border-top-right-radius:0;border-top-left-radius:0}.accordion .card .card-header{margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-right:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-left:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-right:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-right:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item:last-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-left:.6em;padding-right:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-left:0;padding-right:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-left:4rem}.alert-dismissible .close{position:absolute;top:0;left:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media screen and (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-right:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-right-radius:.25rem;border-top-left-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-left:0;border-right:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:left;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled){cursor:pointer}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);border-radius:.25rem;box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;right:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media screen and (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-dialog-centered::before{display:block;height:calc(100vh - (.5rem * 2));content:""}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #e9ecef;border-top-right-radius:.3rem;border-top-left-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem auto -1rem -1rem}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef;border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.modal-footer>:not(:first-child){margin-right:.25rem}.modal-footer>:not(:last-child){margin-left:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-dialog-centered::before{height:calc(100vh - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:right;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;right:50%;display:block;width:1rem;margin-right:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-right-radius:calc(.3rem - 1px);border-top-left-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:right;width:100%;margin-left:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media screen and (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media screen and (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media screen and (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{right:0}.carousel-control-next{left:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;left:0;bottom:0;right:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-right:0;margin-left:15%;margin-right:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-left:3px;margin-right:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media screen and (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;left:15%;bottom:20px;right:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-left-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-left:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-right:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-left:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-right:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-right-radius:.25rem!important;border-top-left-radius:.25rem!important}.rounded-right{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-bottom{border-bottom-left-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-left{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;right:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-3by4::before{padding-top:133.333333%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:right!important}.float-right{float:left!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:right!important}.float-sm-right{float:left!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:right!important}.float-md-right{float:left!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:right!important}.float-lg-right{float:left!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:right!important}.float-xl-right{float:left!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;left:0;right:0;z-index:1030}.fixed-bottom{position:fixed;left:0;bottom:0;right:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-left:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-right:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-left:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-right:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-left:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-right:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-left:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-right:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-left:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-right:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-left:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-right:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-left:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-right:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-left:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-right:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-left:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-right:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-left:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-right:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-left:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-right:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-left:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-right:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-left:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-right:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-left:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-right:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-left:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-right:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-left:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-right:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-left:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-right:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-left:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-right:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-left:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-right:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-left:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-right:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-left:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-right:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-left:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-right:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-left:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-right:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-left:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-right:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-left:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-right:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-left:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-right:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-left:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-right:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-left:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-right:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-left:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-right:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-left:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-right:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-left:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-right:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-left:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-right:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-left:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-right:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-left:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-right:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-left:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-right:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-left:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-right:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-left:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-right:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-left:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-right:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-left:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-right:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-left:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-right:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-left:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-right:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-left:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-right:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-left:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-right:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-left:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-right:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-left:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-right:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-left:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-right:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-left:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-right:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-left:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-right:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-left:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-right:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-left:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-right:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-left:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-right:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-left:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-right:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-left:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-right:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-left:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-right:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-left:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-right:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-left:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-right:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-left:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-right:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-left:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-right:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-left:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-right:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-left:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-right:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-left:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-right:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-left:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-right:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-left:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-right:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-left:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-right:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-left:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-right:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-left:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-right:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-left:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-right:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-left:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-right:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-left:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-right:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-left:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-right:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-left:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-right:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-left:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-right:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-left:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-right:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-left:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-right:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:right!important}.text-right{text-align:left!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:right!important}.text-sm-right{text-align:left!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:right!important}.text-md-right{text-align:left!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:right!important}.text-lg-right{text-align:left!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:right!important}.text-xl-right{text-align:left!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} + */ +:root { + --blue: #007bff; + --indigo: #6610f2; + --purple: #6f42c1; + --pink: #e83e8c; + --red: #dc3545; + --orange: #fd7e14; + --yellow: #ffc107; + --green: #28a745; + --teal: #20c997; + --cyan: #17a2b8; + --white: #fff; + --gray: #6c757d; + --gray-dark: #343a40; + --primary: #007bff; + --secondary: #6c757d; + --success: #28a745; + --info: #17a2b8; + --warning: #ffc107; + --danger: #dc3545; + --light: #f8f9fa; + --dark: #343a40; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace +} + +*, +::after, +::before { + box-sizing: border-box +} + +html { + font-family: sans-serif; + line-height: 1.15; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent +} + +article, +aside, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section { + display: block +} + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: right; + background-color: #fff +} + +[tabindex="-1"]:focus { + outline: 0 !important +} + +hr { + box-sizing: content-box; + height: 0; + overflow: visible +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + margin-bottom: .5rem +} + +p { + margin-top: 0; + margin-bottom: 1rem +} + +abbr[data-original-title], +abbr[title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none +} + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit +} + +dl, +ol, +ul { + margin-top: 0; + margin-bottom: 1rem +} + +ol ol, +ol ul, +ul ol, +ul ul { + margin-bottom: 0 +} + +dt { + font-weight: 700 +} + +dd { + margin-bottom: .5rem; + margin-right: 0 +} + +blockquote { + margin: 0 0 1rem +} + +b, +strong { + font-weight: bolder +} + +small { + font-size: 80% +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline +} + +sub { + bottom: -.25em +} + +sup { + top: -.5em +} + +a { + color: #007bff; + text-decoration: none; + background-color: transparent +} + +a:hover { + color: #0056b3; + text-decoration: underline +} + +a:not([href]):not([tabindex]) { + color: inherit; + text-decoration: none +} + +a:not([href]):not([tabindex]):focus, +a:not([href]):not([tabindex]):hover { + color: inherit; + text-decoration: none +} + +a:not([href]):not([tabindex]):focus { + outline: 0 +} + +code, +kbd, +pre, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; + direction: ltr; + unicode-bidi: bidi-override +} + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto +} + +figure { + margin: 0 0 1rem +} + +img { + vertical-align: middle; + border-style: none +} + +svg { + overflow: hidden; + vertical-align: middle +} + +table { + border-collapse: collapse +} + +caption { + padding-top: .75rem; + padding-bottom: .75rem; + color: #6c757d; + text-align: right; + caption-side: bottom +} + +th { + text-align: inherit +} + +label { + display: inline-block; + margin-bottom: .5rem +} + +button { + border-radius: 0 +} + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color +} + +button, +input, +optgroup, +select, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit +} + +button, +input { + overflow: visible +} + +button, +select { + text-transform: none +} + +[type=button], +[type=reset], +[type=submit], +button { + -webkit-appearance: button +} + +[type=button]::-moz-focus-inner, +[type=reset]::-moz-focus-inner, +[type=submit]::-moz-focus-inner, +button::-moz-focus-inner { + padding: 0; + border-style: none +} + +input[type=checkbox], +input[type=radio] { + box-sizing: border-box; + padding: 0 +} + +input[type=date], +input[type=datetime-local], +input[type=month], +input[type=time] { + -webkit-appearance: listbox +} + +textarea { + overflow: auto; + resize: vertical +} + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0 +} + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal +} + +progress { + vertical-align: baseline +} + +[type=number]::-webkit-inner-spin-button, +[type=number]::-webkit-outer-spin-button { + height: auto +} + +[type=search] { + outline-offset: -2px; + -webkit-appearance: none +} + +[type=search]::-webkit-search-decoration { + -webkit-appearance: none +} + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button +} + +output { + display: inline-block +} + +summary { + display: list-item; + cursor: pointer +} + +template { + display: none +} + +[hidden] { + display: none !important +} + +.h1, +.h2, +.h3, +.h4, +.h5, +.h6, +h1, +h2, +h3, +h4, +h5, +h6 { + margin-bottom: .5rem; + font-family: inherit; + font-weight: 500; + line-height: 1.2; + color: inherit +} + +.h1, +h1 { + font-size: 2.5rem +} + +.h2, +h2 { + font-size: 2rem +} + +.h3, +h3 { + font-size: 1.75rem +} + +.h4, +h4 { + font-size: 1.5rem +} + +.h5, +h5 { + font-size: 1.25rem +} + +.h6, +h6 { + font-size: 1rem +} + +.lead { + font-size: 1.25rem; + font-weight: 300 +} + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2 +} + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2 +} + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2 +} + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2 +} + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, .1) +} + +.small, +small { + font-size: 80%; + font-weight: 400 +} + +.mark, +mark { + padding: .2em; + background-color: #fcf8e3 +} + +.list-unstyled { + padding-right: 0; + list-style: none +} + +.list-inline { + padding-right: 0; + list-style: none +} + +.list-inline-item { + display: inline-block +} + +.list-inline-item:not(:last-child) { + margin-left: .5rem +} + +.initialism { + font-size: 90%; + text-transform: uppercase +} + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem +} + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d +} + +.blockquote-footer::before { + content: "\2014\00A0" +} + +.img-fluid { + max-width: 100%; + height: auto +} + +.img-thumbnail { + padding: .25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: .25rem; + max-width: 100%; + height: auto +} + +.figure { + display: inline-block +} + +.figure-img { + margin-bottom: .5rem; + line-height: 1 +} + +.figure-caption { + font-size: 90%; + color: #6c757d +} + +code { + font-size: 87.5%; + color: #e83e8c; + word-break: break-word +} + +a>code { + color: inherit +} + +kbd { + padding: .2rem .4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: .2rem +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700 +} + +pre { + display: block; + font-size: 87.5%; + color: #212529 +} + +pre code { + font-size: inherit; + color: inherit; + word-break: normal +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll +} + +.container { + width: 100%; + padding-left: 15px; + padding-right: 15px; + margin-left: auto; + margin-right: auto +} + +@media (min-width:576px) { + .container { + max-width: 540px + } +} + +@media (min-width:768px) { + .container { + max-width: 720px + } +} + +@media (min-width:992px) { + .container { + max-width: 960px + } +} + +@media (min-width:1200px) { + .container { + max-width: 1140px + } +} + +.container-fluid { + width: 100%; + padding-left: 15px; + padding-right: 15px; + margin-left: auto; + margin-right: auto +} + +.row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -15px; + margin-right: -15px +} + +.no-gutters { + margin-left: 0; + margin-right: 0 +} + +.no-gutters>.col, +.no-gutters>[class*=col-] { + padding-left: 0; + padding-right: 0 +} + +.col, +.col-1, +.col-10, +.col-11, +.col-12, +.col-2, +.col-3, +.col-4, +.col-5, +.col-6, +.col-7, +.col-8, +.col-9, +.col-auto, +.col-lg, +.col-lg-1, +.col-lg-10, +.col-lg-11, +.col-lg-12, +.col-lg-2, +.col-lg-3, +.col-lg-4, +.col-lg-5, +.col-lg-6, +.col-lg-7, +.col-lg-8, +.col-lg-9, +.col-lg-auto, +.col-md, +.col-md-1, +.col-md-10, +.col-md-11, +.col-md-12, +.col-md-2, +.col-md-3, +.col-md-4, +.col-md-5, +.col-md-6, +.col-md-7, +.col-md-8, +.col-md-9, +.col-md-auto, +.col-sm, +.col-sm-1, +.col-sm-10, +.col-sm-11, +.col-sm-12, +.col-sm-2, +.col-sm-3, +.col-sm-4, +.col-sm-5, +.col-sm-6, +.col-sm-7, +.col-sm-8, +.col-sm-9, +.col-sm-auto, +.col-xl, +.col-xl-1, +.col-xl-10, +.col-xl-11, +.col-xl-12, +.col-xl-2, +.col-xl-3, +.col-xl-4, +.col-xl-5, +.col-xl-6, +.col-xl-7, +.col-xl-8, +.col-xl-9, +.col-xl-auto { + position: relative; + width: 100%; + padding-left: 15px; + padding-right: 15px +} + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% +} + +.col-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100% +} + +.col-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% +} + +.col-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% +} + +.col-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% +} + +.col-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% +} + +.col-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% +} + +.col-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% +} + +.col-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% +} + +.col-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% +} + +.col-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% +} + +.col-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% +} + +.col-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% +} + +.col-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% +} + +.order-first { + -ms-flex-order: -1; + order: -1 +} + +.order-last { + -ms-flex-order: 13; + order: 13 +} + +.order-0 { + -ms-flex-order: 0; + order: 0 +} + +.order-1 { + -ms-flex-order: 1; + order: 1 +} + +.order-2 { + -ms-flex-order: 2; + order: 2 +} + +.order-3 { + -ms-flex-order: 3; + order: 3 +} + +.order-4 { + -ms-flex-order: 4; + order: 4 +} + +.order-5 { + -ms-flex-order: 5; + order: 5 +} + +.order-6 { + -ms-flex-order: 6; + order: 6 +} + +.order-7 { + -ms-flex-order: 7; + order: 7 +} + +.order-8 { + -ms-flex-order: 8; + order: 8 +} + +.order-9 { + -ms-flex-order: 9; + order: 9 +} + +.order-10 { + -ms-flex-order: 10; + order: 10 +} + +.order-11 { + -ms-flex-order: 11; + order: 11 +} + +.order-12 { + -ms-flex-order: 12; + order: 12 +} + +.offset-1 { + margin-right: 8.333333% +} + +.offset-2 { + margin-right: 16.666667% +} + +.offset-3 { + margin-right: 25% +} + +.offset-4 { + margin-right: 33.333333% +} + +.offset-5 { + margin-right: 41.666667% +} + +.offset-6 { + margin-right: 50% +} + +.offset-7 { + margin-right: 58.333333% +} + +.offset-8 { + margin-right: 66.666667% +} + +.offset-9 { + margin-right: 75% +} + +.offset-10 { + margin-right: 83.333333% +} + +.offset-11 { + margin-right: 91.666667% +} + +@media (min-width:576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% + } + + .col-sm-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100% + } + + .col-sm-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% + } + + .col-sm-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% + } + + .col-sm-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% + } + + .col-sm-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% + } + + .col-sm-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% + } + + .col-sm-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% + } + + .col-sm-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% + } + + .col-sm-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% + } + + .col-sm-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% + } + + .col-sm-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% + } + + .col-sm-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% + } + + .col-sm-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% + } + + .order-sm-first { + -ms-flex-order: -1; + order: -1 + } + + .order-sm-last { + -ms-flex-order: 13; + order: 13 + } + + .order-sm-0 { + -ms-flex-order: 0; + order: 0 + } + + .order-sm-1 { + -ms-flex-order: 1; + order: 1 + } + + .order-sm-2 { + -ms-flex-order: 2; + order: 2 + } + + .order-sm-3 { + -ms-flex-order: 3; + order: 3 + } + + .order-sm-4 { + -ms-flex-order: 4; + order: 4 + } + + .order-sm-5 { + -ms-flex-order: 5; + order: 5 + } + + .order-sm-6 { + -ms-flex-order: 6; + order: 6 + } + + .order-sm-7 { + -ms-flex-order: 7; + order: 7 + } + + .order-sm-8 { + -ms-flex-order: 8; + order: 8 + } + + .order-sm-9 { + -ms-flex-order: 9; + order: 9 + } + + .order-sm-10 { + -ms-flex-order: 10; + order: 10 + } + + .order-sm-11 { + -ms-flex-order: 11; + order: 11 + } + + .order-sm-12 { + -ms-flex-order: 12; + order: 12 + } + + .offset-sm-0 { + margin-right: 0 + } + + .offset-sm-1 { + margin-right: 8.333333% + } + + .offset-sm-2 { + margin-right: 16.666667% + } + + .offset-sm-3 { + margin-right: 25% + } + + .offset-sm-4 { + margin-right: 33.333333% + } + + .offset-sm-5 { + margin-right: 41.666667% + } + + .offset-sm-6 { + margin-right: 50% + } + + .offset-sm-7 { + margin-right: 58.333333% + } + + .offset-sm-8 { + margin-right: 66.666667% + } + + .offset-sm-9 { + margin-right: 75% + } + + .offset-sm-10 { + margin-right: 83.333333% + } + + .offset-sm-11 { + margin-right: 91.666667% + } +} + +@media (min-width:768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% + } + + .col-md-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100% + } + + .col-md-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% + } + + .col-md-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% + } + + .col-md-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% + } + + .col-md-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% + } + + .col-md-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% + } + + .col-md-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% + } + + .col-md-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% + } + + .col-md-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% + } + + .col-md-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% + } + + .col-md-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% + } + + .col-md-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% + } + + .col-md-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% + } + + .order-md-first { + -ms-flex-order: -1; + order: -1 + } + + .order-md-last { + -ms-flex-order: 13; + order: 13 + } + + .order-md-0 { + -ms-flex-order: 0; + order: 0 + } + + .order-md-1 { + -ms-flex-order: 1; + order: 1 + } + + .order-md-2 { + -ms-flex-order: 2; + order: 2 + } + + .order-md-3 { + -ms-flex-order: 3; + order: 3 + } + + .order-md-4 { + -ms-flex-order: 4; + order: 4 + } + + .order-md-5 { + -ms-flex-order: 5; + order: 5 + } + + .order-md-6 { + -ms-flex-order: 6; + order: 6 + } + + .order-md-7 { + -ms-flex-order: 7; + order: 7 + } + + .order-md-8 { + -ms-flex-order: 8; + order: 8 + } + + .order-md-9 { + -ms-flex-order: 9; + order: 9 + } + + .order-md-10 { + -ms-flex-order: 10; + order: 10 + } + + .order-md-11 { + -ms-flex-order: 11; + order: 11 + } + + .order-md-12 { + -ms-flex-order: 12; + order: 12 + } + + .offset-md-0 { + margin-right: 0 + } + + .offset-md-1 { + margin-right: 8.333333% + } + + .offset-md-2 { + margin-right: 16.666667% + } + + .offset-md-3 { + margin-right: 25% + } + + .offset-md-4 { + margin-right: 33.333333% + } + + .offset-md-5 { + margin-right: 41.666667% + } + + .offset-md-6 { + margin-right: 50% + } + + .offset-md-7 { + margin-right: 58.333333% + } + + .offset-md-8 { + margin-right: 66.666667% + } + + .offset-md-9 { + margin-right: 75% + } + + .offset-md-10 { + margin-right: 83.333333% + } + + .offset-md-11 { + margin-right: 91.666667% + } +} + +@media (min-width:992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% + } + + .col-lg-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100% + } + + .col-lg-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% + } + + .col-lg-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% + } + + .col-lg-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% + } + + .col-lg-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% + } + + .col-lg-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% + } + + .col-lg-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% + } + + .col-lg-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% + } + + .col-lg-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% + } + + .col-lg-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% + } + + .col-lg-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% + } + + .col-lg-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% + } + + .col-lg-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% + } + + .order-lg-first { + -ms-flex-order: -1; + order: -1 + } + + .order-lg-last { + -ms-flex-order: 13; + order: 13 + } + + .order-lg-0 { + -ms-flex-order: 0; + order: 0 + } + + .order-lg-1 { + -ms-flex-order: 1; + order: 1 + } + + .order-lg-2 { + -ms-flex-order: 2; + order: 2 + } + + .order-lg-3 { + -ms-flex-order: 3; + order: 3 + } + + .order-lg-4 { + -ms-flex-order: 4; + order: 4 + } + + .order-lg-5 { + -ms-flex-order: 5; + order: 5 + } + + .order-lg-6 { + -ms-flex-order: 6; + order: 6 + } + + .order-lg-7 { + -ms-flex-order: 7; + order: 7 + } + + .order-lg-8 { + -ms-flex-order: 8; + order: 8 + } + + .order-lg-9 { + -ms-flex-order: 9; + order: 9 + } + + .order-lg-10 { + -ms-flex-order: 10; + order: 10 + } + + .order-lg-11 { + -ms-flex-order: 11; + order: 11 + } + + .order-lg-12 { + -ms-flex-order: 12; + order: 12 + } + + .offset-lg-0 { + margin-right: 0 + } + + .offset-lg-1 { + margin-right: 8.333333% + } + + .offset-lg-2 { + margin-right: 16.666667% + } + + .offset-lg-3 { + margin-right: 25% + } + + .offset-lg-4 { + margin-right: 33.333333% + } + + .offset-lg-5 { + margin-right: 41.666667% + } + + .offset-lg-6 { + margin-right: 50% + } + + .offset-lg-7 { + margin-right: 58.333333% + } + + .offset-lg-8 { + margin-right: 66.666667% + } + + .offset-lg-9 { + margin-right: 75% + } + + .offset-lg-10 { + margin-right: 83.333333% + } + + .offset-lg-11 { + margin-right: 91.666667% + } +} + +@media (min-width:1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100% + } + + .col-xl-auto { + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100% + } + + .col-xl-1 { + -ms-flex: 0 0 8.333333%; + flex: 0 0 8.333333%; + max-width: 8.333333% + } + + .col-xl-2 { + -ms-flex: 0 0 16.666667%; + flex: 0 0 16.666667%; + max-width: 16.666667% + } + + .col-xl-3 { + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25% + } + + .col-xl-4 { + -ms-flex: 0 0 33.333333%; + flex: 0 0 33.333333%; + max-width: 33.333333% + } + + .col-xl-5 { + -ms-flex: 0 0 41.666667%; + flex: 0 0 41.666667%; + max-width: 41.666667% + } + + .col-xl-6 { + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50% + } + + .col-xl-7 { + -ms-flex: 0 0 58.333333%; + flex: 0 0 58.333333%; + max-width: 58.333333% + } + + .col-xl-8 { + -ms-flex: 0 0 66.666667%; + flex: 0 0 66.666667%; + max-width: 66.666667% + } + + .col-xl-9 { + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75% + } + + .col-xl-10 { + -ms-flex: 0 0 83.333333%; + flex: 0 0 83.333333%; + max-width: 83.333333% + } + + .col-xl-11 { + -ms-flex: 0 0 91.666667%; + flex: 0 0 91.666667%; + max-width: 91.666667% + } + + .col-xl-12 { + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100% + } + + .order-xl-first { + -ms-flex-order: -1; + order: -1 + } + + .order-xl-last { + -ms-flex-order: 13; + order: 13 + } + + .order-xl-0 { + -ms-flex-order: 0; + order: 0 + } + + .order-xl-1 { + -ms-flex-order: 1; + order: 1 + } + + .order-xl-2 { + -ms-flex-order: 2; + order: 2 + } + + .order-xl-3 { + -ms-flex-order: 3; + order: 3 + } + + .order-xl-4 { + -ms-flex-order: 4; + order: 4 + } + + .order-xl-5 { + -ms-flex-order: 5; + order: 5 + } + + .order-xl-6 { + -ms-flex-order: 6; + order: 6 + } + + .order-xl-7 { + -ms-flex-order: 7; + order: 7 + } + + .order-xl-8 { + -ms-flex-order: 8; + order: 8 + } + + .order-xl-9 { + -ms-flex-order: 9; + order: 9 + } + + .order-xl-10 { + -ms-flex-order: 10; + order: 10 + } + + .order-xl-11 { + -ms-flex-order: 11; + order: 11 + } + + .order-xl-12 { + -ms-flex-order: 12; + order: 12 + } + + .offset-xl-0 { + margin-right: 0 + } + + .offset-xl-1 { + margin-right: 8.333333% + } + + .offset-xl-2 { + margin-right: 16.666667% + } + + .offset-xl-3 { + margin-right: 25% + } + + .offset-xl-4 { + margin-right: 33.333333% + } + + .offset-xl-5 { + margin-right: 41.666667% + } + + .offset-xl-6 { + margin-right: 50% + } + + .offset-xl-7 { + margin-right: 58.333333% + } + + .offset-xl-8 { + margin-right: 66.666667% + } + + .offset-xl-9 { + margin-right: 75% + } + + .offset-xl-10 { + margin-right: 83.333333% + } + + .offset-xl-11 { + margin-right: 91.666667% + } +} + +.table { + width: 100%; + margin-bottom: 1rem; + background-color: transparent +} + +.table td, +.table th { + padding: .75rem; + vertical-align: top; + border-top: 1px solid #dee2e6 +} + +.table thead th { + vertical-align: bottom; + border-bottom: 2px solid #dee2e6 +} + +.table tbody+tbody { + border-top: 2px solid #dee2e6 +} + +.table .table { + background-color: #fff +} + +.table-sm td, +.table-sm th { + padding: .3rem +} + +.table-bordered { + border: 1px solid #dee2e6 +} + +.table-bordered td, +.table-bordered th { + border: 1px solid #dee2e6 +} + +.table-bordered thead td, +.table-bordered thead th { + border-bottom-width: 2px +} + +.table-borderless tbody+tbody, +.table-borderless td, +.table-borderless th, +.table-borderless thead th { + border: 0 +} + +.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(0, 0, 0, .05) +} + +.table-hover tbody tr:hover { + background-color: rgba(0, 0, 0, .075) +} + +.table-primary, +.table-primary>td, +.table-primary>th { + background-color: #b8daff +} + +.table-primary tbody+tbody, +.table-primary td, +.table-primary th, +.table-primary thead th { + border-color: #7abaff +} + +.table-hover .table-primary:hover { + background-color: #9fcdff +} + +.table-hover .table-primary:hover>td, +.table-hover .table-primary:hover>th { + background-color: #9fcdff +} + +.table-secondary, +.table-secondary>td, +.table-secondary>th { + background-color: #d6d8db +} + +.table-secondary tbody+tbody, +.table-secondary td, +.table-secondary th, +.table-secondary thead th { + border-color: #b3b7bb +} + +.table-hover .table-secondary:hover { + background-color: #c8cbcf +} + +.table-hover .table-secondary:hover>td, +.table-hover .table-secondary:hover>th { + background-color: #c8cbcf +} + +.table-success, +.table-success>td, +.table-success>th { + background-color: #c3e6cb +} + +.table-success tbody+tbody, +.table-success td, +.table-success th, +.table-success thead th { + border-color: #8fd19e +} + +.table-hover .table-success:hover { + background-color: #b1dfbb +} + +.table-hover .table-success:hover>td, +.table-hover .table-success:hover>th { + background-color: #b1dfbb +} + +.table-info, +.table-info>td, +.table-info>th { + background-color: #bee5eb +} + +.table-info tbody+tbody, +.table-info td, +.table-info th, +.table-info thead th { + border-color: #86cfda +} + +.table-hover .table-info:hover { + background-color: #abdde5 +} + +.table-hover .table-info:hover>td, +.table-hover .table-info:hover>th { + background-color: #abdde5 +} + +.table-warning, +.table-warning>td, +.table-warning>th { + background-color: #ffeeba +} + +.table-warning tbody+tbody, +.table-warning td, +.table-warning th, +.table-warning thead th { + border-color: #ffdf7e +} + +.table-hover .table-warning:hover { + background-color: #ffe8a1 +} + +.table-hover .table-warning:hover>td, +.table-hover .table-warning:hover>th { + background-color: #ffe8a1 +} + +.table-danger, +.table-danger>td, +.table-danger>th { + background-color: #f5c6cb +} + +.table-danger tbody+tbody, +.table-danger td, +.table-danger th, +.table-danger thead th { + border-color: #ed969e +} + +.table-hover .table-danger:hover { + background-color: #f1b0b7 +} + +.table-hover .table-danger:hover>td, +.table-hover .table-danger:hover>th { + background-color: #f1b0b7 +} + +.table-light, +.table-light>td, +.table-light>th { + background-color: #fdfdfe +} + +.table-light tbody+tbody, +.table-light td, +.table-light th, +.table-light thead th { + border-color: #fbfcfc +} + +.table-hover .table-light:hover { + background-color: #ececf6 +} + +.table-hover .table-light:hover>td, +.table-hover .table-light:hover>th { + background-color: #ececf6 +} + +.table-dark, +.table-dark>td, +.table-dark>th { + background-color: #c6c8ca +} + +.table-dark tbody+tbody, +.table-dark td, +.table-dark th, +.table-dark thead th { + border-color: #95999c +} + +.table-hover .table-dark:hover { + background-color: #b9bbbe +} + +.table-hover .table-dark:hover>td, +.table-hover .table-dark:hover>th { + background-color: #b9bbbe +} + +.table-active, +.table-active>td, +.table-active>th { + background-color: rgba(0, 0, 0, .075) +} + +.table-hover .table-active:hover { + background-color: rgba(0, 0, 0, .075) +} + +.table-hover .table-active:hover>td, +.table-hover .table-active:hover>th { + background-color: rgba(0, 0, 0, .075) +} + +.table .thead-dark th { + color: #fff; + background-color: #212529; + border-color: #32383e +} + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #dee2e6 +} + +.table-dark { + color: #fff; + background-color: #212529 +} + +.table-dark td, +.table-dark th, +.table-dark thead th { + border-color: #32383e +} + +.table-dark.table-bordered { + border: 0 +} + +.table-dark.table-striped tbody tr:nth-of-type(odd) { + background-color: rgba(255, 255, 255, .05) +} + +.table-dark.table-hover tbody tr:hover { + background-color: rgba(255, 255, 255, .075) +} + +@media (max-width:575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar + } + + .table-responsive-sm>.table-bordered { + border: 0 + } +} + +@media (max-width:767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar + } + + .table-responsive-md>.table-bordered { + border: 0 + } +} + +@media (max-width:991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar + } + + .table-responsive-lg>.table-bordered { + border: 0 + } +} + +@media (max-width:1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar + } + + .table-responsive-xl>.table-bordered { + border: 0 + } +} + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; + -ms-overflow-style: -ms-autohiding-scrollbar +} + +.table-responsive>.table-bordered { + border: 0 +} + +.form-control { + display: block; + width: 100%; + height: calc(2.25rem + 2px); + padding: .375rem .75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: .25rem; + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out +} + +@media screen and (prefers-reduced-motion:reduce) { + .form-control { + transition: none + } +} + +.form-control::-ms-expand { + background-color: transparent; + border: 0 +} + +.form-control:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.form-control::-webkit-input-placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control:-ms-input-placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control::-ms-input-placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control::placeholder { + color: #6c757d; + opacity: 1 +} + +.form-control:disabled, +.form-control[readonly] { + background-color: #e9ecef; + opacity: 1 +} + +select.form-control:focus::-ms-value { + color: #495057; + background-color: #fff +} + +.form-control-file, +.form-control-range { + display: block; + width: 100% +} + +.col-form-label { + padding-top: calc(.375rem + 1px); + padding-bottom: calc(.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5 +} + +.col-form-label-lg { + padding-top: calc(.5rem + 1px); + padding-bottom: calc(.5rem + 1px); + font-size: 1.25rem; + line-height: 1.5 +} + +.col-form-label-sm { + padding-top: calc(.25rem + 1px); + padding-bottom: calc(.25rem + 1px); + font-size: .875rem; + line-height: 1.5 +} + +.form-control-plaintext { + display: block; + width: 100%; + padding-top: .375rem; + padding-bottom: .375rem; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0 +} + +.form-control-plaintext.form-control-lg, +.form-control-plaintext.form-control-sm { + padding-left: 0; + padding-right: 0 +} + +.form-control-sm { + height: calc(1.8125rem + 2px); + padding: .25rem .5rem; + font-size: .875rem; + line-height: 1.5; + border-radius: .2rem +} + +.form-control-lg { + height: calc(2.875rem + 2px); + padding: .5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: .3rem +} + +select.form-control[multiple], +select.form-control[size] { + height: auto +} + +textarea.form-control { + height: auto +} + +.form-group { + margin-bottom: 1rem +} + +.form-text { + display: block; + margin-top: .25rem +} + +.form-row { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -5px; + margin-right: -5px +} + +.form-row>.col, +.form-row>[class*=col-] { + padding-left: 5px; + padding-right: 5px +} + +.form-check { + position: relative; + display: block; + padding-right: 1.25rem +} + +.form-check-input { + position: absolute; + margin-top: .3rem; + margin-right: -1.25rem +} + +.form-check-input:disabled~.form-check-label { + color: #6c757d +} + +.form-check-label { + margin-bottom: 0 +} + +.form-check-inline { + display: -ms-inline-flexbox; + display: inline-flex; + -ms-flex-align: center; + align-items: center; + padding-right: 0; + margin-left: .75rem +} + +.form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-left: .3125rem; + margin-right: 0 +} + +.valid-feedback { + display: none; + width: 100%; + margin-top: .25rem; + font-size: 80%; + color: #28a745 +} + +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .25rem .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, .9); + border-radius: .25rem +} + +.form-control.is-valid, +.was-validated .form-control:valid { + border-color: #28a745; + padding-left: 2.25rem; + background-repeat: no-repeat; + background-position: center left calc(2.25rem / 4); + background-size: calc(2.25rem / 2) calc(2.25rem / 2); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") +} + +.form-control.is-valid:focus, +.was-validated .form-control:valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) +} + +.form-control.is-valid~.valid-feedback, +.form-control.is-valid~.valid-tooltip, +.was-validated .form-control:valid~.valid-feedback, +.was-validated .form-control:valid~.valid-tooltip { + display: block +} + +.was-validated textarea.form-control:valid, +textarea.form-control.is-valid { + padding-left: 2.25rem; + background-position: top calc(2.25rem / 4) left calc(2.25rem / 4) +} + +.custom-select.is-valid, +.was-validated .custom-select:valid { + border-color: #28a745; + padding-left: 3.4375rem; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left .75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") no-repeat center right 1.75rem/1.125rem 1.125rem +} + +.custom-select.is-valid:focus, +.was-validated .custom-select:valid:focus { + border-color: #28a745; + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) +} + +.custom-select.is-valid~.valid-feedback, +.custom-select.is-valid~.valid-tooltip, +.was-validated .custom-select:valid~.valid-feedback, +.was-validated .custom-select:valid~.valid-tooltip { + display: block +} + +.form-control-file.is-valid~.valid-feedback, +.form-control-file.is-valid~.valid-tooltip, +.was-validated .form-control-file:valid~.valid-feedback, +.was-validated .form-control-file:valid~.valid-tooltip { + display: block +} + +.form-check-input.is-valid~.form-check-label, +.was-validated .form-check-input:valid~.form-check-label { + color: #28a745 +} + +.form-check-input.is-valid~.valid-feedback, +.form-check-input.is-valid~.valid-tooltip, +.was-validated .form-check-input:valid~.valid-feedback, +.was-validated .form-check-input:valid~.valid-tooltip { + display: block +} + +.custom-control-input.is-valid~.custom-control-label, +.was-validated .custom-control-input:valid~.custom-control-label { + color: #28a745 +} + +.custom-control-input.is-valid~.custom-control-label::before, +.was-validated .custom-control-input:valid~.custom-control-label::before { + border-color: #28a745 +} + +.custom-control-input.is-valid~.valid-feedback, +.custom-control-input.is-valid~.valid-tooltip, +.was-validated .custom-control-input:valid~.valid-feedback, +.was-validated .custom-control-input:valid~.valid-tooltip { + display: block +} + +.custom-control-input.is-valid:checked~.custom-control-label::before, +.was-validated .custom-control-input:valid:checked~.custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57 +} + +.custom-control-input.is-valid:focus~.custom-control-label::before, +.was-validated .custom-control-input:valid:focus~.custom-control-label::before { + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) +} + +.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before, +.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before { + border-color: #28a745 +} + +.custom-file-input.is-valid~.custom-file-label, +.was-validated .custom-file-input:valid~.custom-file-label { + border-color: #28a745 +} + +.custom-file-input.is-valid~.valid-feedback, +.custom-file-input.is-valid~.valid-tooltip, +.was-validated .custom-file-input:valid~.valid-feedback, +.was-validated .custom-file-input:valid~.valid-tooltip { + display: block +} + +.custom-file-input.is-valid:focus~.custom-file-label, +.was-validated .custom-file-input:valid:focus~.custom-file-label { + border-color: #28a745; + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25) +} + +.invalid-feedback { + display: none; + width: 100%; + margin-top: .25rem; + font-size: 80%; + color: #dc3545 +} + +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: .25rem .5rem; + margin-top: .1rem; + font-size: .875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, .9); + border-radius: .25rem +} + +.form-control.is-invalid, +.was-validated .form-control:invalid { + border-color: #dc3545; + padding-left: 2.25rem; + background-repeat: no-repeat; + background-position: center left calc(2.25rem / 4); + background-size: calc(2.25rem / 2) calc(2.25rem / 2); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") +} + +.form-control.is-invalid:focus, +.was-validated .form-control:invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) +} + +.form-control.is-invalid~.invalid-feedback, +.form-control.is-invalid~.invalid-tooltip, +.was-validated .form-control:invalid~.invalid-feedback, +.was-validated .form-control:invalid~.invalid-tooltip { + display: block +} + +.was-validated textarea.form-control:invalid, +textarea.form-control.is-invalid { + padding-left: 2.25rem; + background-position: top calc(2.25rem / 4) left calc(2.25rem / 4) +} + +.custom-select.is-invalid, +.was-validated .custom-select:invalid { + border-color: #dc3545; + padding-left: 3.4375rem; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left .75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") no-repeat center right 1.75rem/1.125rem 1.125rem +} + +.custom-select.is-invalid:focus, +.was-validated .custom-select:invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) +} + +.custom-select.is-invalid~.invalid-feedback, +.custom-select.is-invalid~.invalid-tooltip, +.was-validated .custom-select:invalid~.invalid-feedback, +.was-validated .custom-select:invalid~.invalid-tooltip { + display: block +} + +.form-control-file.is-invalid~.invalid-feedback, +.form-control-file.is-invalid~.invalid-tooltip, +.was-validated .form-control-file:invalid~.invalid-feedback, +.was-validated .form-control-file:invalid~.invalid-tooltip { + display: block +} + +.form-check-input.is-invalid~.form-check-label, +.was-validated .form-check-input:invalid~.form-check-label { + color: #dc3545 +} + +.form-check-input.is-invalid~.invalid-feedback, +.form-check-input.is-invalid~.invalid-tooltip, +.was-validated .form-check-input:invalid~.invalid-feedback, +.was-validated .form-check-input:invalid~.invalid-tooltip { + display: block +} + +.custom-control-input.is-invalid~.custom-control-label, +.was-validated .custom-control-input:invalid~.custom-control-label { + color: #dc3545 +} + +.custom-control-input.is-invalid~.custom-control-label::before, +.was-validated .custom-control-input:invalid~.custom-control-label::before { + border-color: #dc3545 +} + +.custom-control-input.is-invalid~.invalid-feedback, +.custom-control-input.is-invalid~.invalid-tooltip, +.was-validated .custom-control-input:invalid~.invalid-feedback, +.was-validated .custom-control-input:invalid~.invalid-tooltip { + display: block +} + +.custom-control-input.is-invalid:checked~.custom-control-label::before, +.was-validated .custom-control-input:invalid:checked~.custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d +} + +.custom-control-input.is-invalid:focus~.custom-control-label::before, +.was-validated .custom-control-input:invalid:focus~.custom-control-label::before { + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) +} + +.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before, +.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before { + border-color: #dc3545 +} + +.custom-file-input.is-invalid~.custom-file-label, +.was-validated .custom-file-input:invalid~.custom-file-label { + border-color: #dc3545 +} + +.custom-file-input.is-invalid~.invalid-feedback, +.custom-file-input.is-invalid~.invalid-tooltip, +.was-validated .custom-file-input:invalid~.invalid-feedback, +.was-validated .custom-file-input:invalid~.invalid-tooltip { + display: block +} + +.custom-file-input.is-invalid:focus~.custom-file-label, +.was-validated .custom-file-input:invalid:focus~.custom-file-label { + border-color: #dc3545; + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25) +} + +.form-inline { + display: -ms-flexbox; + display: flex; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center +} + +.form-inline .form-check { + width: 100% +} + +@media (min-width:576px) { + .form-inline label { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0 + } + + .form-inline .form-group { + display: -ms-flexbox; + display: flex; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0 + } + + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } + + .form-inline .form-control-plaintext { + display: inline-block + } + + .form-inline .custom-select, + .form-inline .input-group { + width: auto + } + + .form-inline .form-check { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-right: 0 + } + + .form-inline .form-check-input { + position: relative; + margin-top: 0; + margin-left: .25rem; + margin-right: 0 + } + + .form-inline .custom-control { + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center + } + + .form-inline .custom-control-label { + margin-bottom: 0 + } +} + +.btn { + display: inline-block; + font-weight: 400; + color: #212529; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: .375rem .75rem; + font-size: 1rem; + line-height: 1.5; + border-radius: .25rem; + transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out +} + +@media screen and (prefers-reduced-motion:reduce) { + .btn { + transition: none + } +} + +.btn:hover { + color: #212529; + text-decoration: none +} + +.btn.focus, +.btn:focus { + outline: 0; + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.btn.disabled, +.btn:disabled { + opacity: .65 +} + +.btn:not(:disabled):not(.disabled) { + cursor: pointer +} + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none +} + +.btn-primary { + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.btn-primary:hover { + color: #fff; + background-color: #0069d9; + border-color: #0062cc +} + +.btn-primary.focus, +.btn-primary:focus { + box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) +} + +.btn-primary.disabled, +.btn-primary:disabled { + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.btn-primary:not(:disabled):not(.disabled).active, +.btn-primary:not(:disabled):not(.disabled):active, +.show>.btn-primary.dropdown-toggle { + color: #fff; + background-color: #0062cc; + border-color: #005cbf +} + +.btn-primary:not(:disabled):not(.disabled).active:focus, +.btn-primary:not(:disabled):not(.disabled):active:focus, +.show>.btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5) +} + +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d +} + +.btn-secondary:hover { + color: #fff; + background-color: #5a6268; + border-color: #545b62 +} + +.btn-secondary.focus, +.btn-secondary:focus { + box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5) +} + +.btn-secondary.disabled, +.btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d +} + +.btn-secondary:not(:disabled):not(.disabled).active, +.btn-secondary:not(:disabled):not(.disabled):active, +.show>.btn-secondary.dropdown-toggle { + color: #fff; + background-color: #545b62; + border-color: #4e555b +} + +.btn-secondary:not(:disabled):not(.disabled).active:focus, +.btn-secondary:not(:disabled):not(.disabled):active:focus, +.show>.btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5) +} + +.btn-success { + color: #fff; + background-color: #28a745; + border-color: #28a745 +} + +.btn-success:hover { + color: #fff; + background-color: #218838; + border-color: #1e7e34 +} + +.btn-success.focus, +.btn-success:focus { + box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5) +} + +.btn-success.disabled, +.btn-success:disabled { + color: #fff; + background-color: #28a745; + border-color: #28a745 +} + +.btn-success:not(:disabled):not(.disabled).active, +.btn-success:not(:disabled):not(.disabled):active, +.show>.btn-success.dropdown-toggle { + color: #fff; + background-color: #1e7e34; + border-color: #1c7430 +} + +.btn-success:not(:disabled):not(.disabled).active:focus, +.btn-success:not(:disabled):not(.disabled):active:focus, +.show>.btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5) +} + +.btn-info { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8 +} + +.btn-info:hover { + color: #fff; + background-color: #138496; + border-color: #117a8b +} + +.btn-info.focus, +.btn-info:focus { + box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) +} + +.btn-info.disabled, +.btn-info:disabled { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8 +} + +.btn-info:not(:disabled):not(.disabled).active, +.btn-info:not(:disabled):not(.disabled):active, +.show>.btn-info.dropdown-toggle { + color: #fff; + background-color: #117a8b; + border-color: #10707f +} + +.btn-info:not(:disabled):not(.disabled).active:focus, +.btn-info:not(:disabled):not(.disabled):active:focus, +.show>.btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5) +} + +.btn-warning { + color: #212529; + background-color: #ffc107; + border-color: #ffc107 +} + +.btn-warning:hover { + color: #212529; + background-color: #e0a800; + border-color: #d39e00 +} + +.btn-warning.focus, +.btn-warning:focus { + box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) +} + +.btn-warning.disabled, +.btn-warning:disabled { + color: #212529; + background-color: #ffc107; + border-color: #ffc107 +} + +.btn-warning:not(:disabled):not(.disabled).active, +.btn-warning:not(:disabled):not(.disabled):active, +.show>.btn-warning.dropdown-toggle { + color: #212529; + background-color: #d39e00; + border-color: #c69500 +} + +.btn-warning:not(:disabled):not(.disabled).active:focus, +.btn-warning:not(:disabled):not(.disabled):active:focus, +.show>.btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5) +} + +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545 +} + +.btn-danger:hover { + color: #fff; + background-color: #c82333; + border-color: #bd2130 +} + +.btn-danger.focus, +.btn-danger:focus { + box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5) +} + +.btn-danger.disabled, +.btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545 +} + +.btn-danger:not(:disabled):not(.disabled).active, +.btn-danger:not(:disabled):not(.disabled):active, +.show>.btn-danger.dropdown-toggle { + color: #fff; + background-color: #bd2130; + border-color: #b21f2d +} + +.btn-danger:not(:disabled):not(.disabled).active:focus, +.btn-danger:not(:disabled):not(.disabled):active:focus, +.show>.btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5) +} + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5 +} + +.btn-light.focus, +.btn-light:focus { + box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) +} + +.btn-light.disabled, +.btn-light:disabled { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-light:not(:disabled):not(.disabled).active, +.btn-light:not(:disabled):not(.disabled):active, +.show>.btn-light.dropdown-toggle { + color: #212529; + background-color: #dae0e5; + border-color: #d3d9df +} + +.btn-light:not(:disabled):not(.disabled).active:focus, +.btn-light:not(:disabled):not(.disabled):active:focus, +.show>.btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5) +} + +.btn-dark { + color: #fff; + background-color: #343a40; + border-color: #343a40 +} + +.btn-dark:hover { + color: #fff; + background-color: #23272b; + border-color: #1d2124 +} + +.btn-dark.focus, +.btn-dark:focus { + box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5) +} + +.btn-dark.disabled, +.btn-dark:disabled { + color: #fff; + background-color: #343a40; + border-color: #343a40 +} + +.btn-dark:not(:disabled):not(.disabled).active, +.btn-dark:not(:disabled):not(.disabled):active, +.show>.btn-dark.dropdown-toggle { + color: #fff; + background-color: #1d2124; + border-color: #171a1d +} + +.btn-dark:not(:disabled):not(.disabled).active:focus, +.btn-dark:not(:disabled):not(.disabled):active:focus, +.show>.btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5) +} + +.btn-outline-primary { + color: #007bff; + border-color: #007bff +} + +.btn-outline-primary:hover { + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.btn-outline-primary.focus, +.btn-outline-primary:focus { + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) +} + +.btn-outline-primary.disabled, +.btn-outline-primary:disabled { + color: #007bff; + background-color: transparent +} + +.btn-outline-primary:not(:disabled):not(.disabled).active, +.btn-outline-primary:not(:disabled):not(.disabled):active, +.show>.btn-outline-primary.dropdown-toggle { + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.btn-outline-primary:not(:disabled):not(.disabled).active:focus, +.btn-outline-primary:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5) +} + +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d +} + +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d +} + +.btn-outline-secondary.focus, +.btn-outline-secondary:focus { + box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) +} + +.btn-outline-secondary.disabled, +.btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent +} + +.btn-outline-secondary:not(:disabled):not(.disabled).active, +.btn-outline-secondary:not(:disabled):not(.disabled):active, +.show>.btn-outline-secondary.dropdown-toggle { + color: #fff; + background-color: #6c757d; + border-color: #6c757d +} + +.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, +.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5) +} + +.btn-outline-success { + color: #28a745; + border-color: #28a745 +} + +.btn-outline-success:hover { + color: #fff; + background-color: #28a745; + border-color: #28a745 +} + +.btn-outline-success.focus, +.btn-outline-success:focus { + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) +} + +.btn-outline-success.disabled, +.btn-outline-success:disabled { + color: #28a745; + background-color: transparent +} + +.btn-outline-success:not(:disabled):not(.disabled).active, +.btn-outline-success:not(:disabled):not(.disabled):active, +.show>.btn-outline-success.dropdown-toggle { + color: #fff; + background-color: #28a745; + border-color: #28a745 +} + +.btn-outline-success:not(:disabled):not(.disabled).active:focus, +.btn-outline-success:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-success.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5) +} + +.btn-outline-info { + color: #17a2b8; + border-color: #17a2b8 +} + +.btn-outline-info:hover { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8 +} + +.btn-outline-info.focus, +.btn-outline-info:focus { + box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) +} + +.btn-outline-info.disabled, +.btn-outline-info:disabled { + color: #17a2b8; + background-color: transparent +} + +.btn-outline-info:not(:disabled):not(.disabled).active, +.btn-outline-info:not(:disabled):not(.disabled):active, +.show>.btn-outline-info.dropdown-toggle { + color: #fff; + background-color: #17a2b8; + border-color: #17a2b8 +} + +.btn-outline-info:not(:disabled):not(.disabled).active:focus, +.btn-outline-info:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-info.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5) +} + +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107 +} + +.btn-outline-warning:hover { + color: #212529; + background-color: #ffc107; + border-color: #ffc107 +} + +.btn-outline-warning.focus, +.btn-outline-warning:focus { + box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) +} + +.btn-outline-warning.disabled, +.btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent +} + +.btn-outline-warning:not(:disabled):not(.disabled).active, +.btn-outline-warning:not(:disabled):not(.disabled):active, +.show>.btn-outline-warning.dropdown-toggle { + color: #212529; + background-color: #ffc107; + border-color: #ffc107 +} + +.btn-outline-warning:not(:disabled):not(.disabled).active:focus, +.btn-outline-warning:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5) +} + +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545 +} + +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545 +} + +.btn-outline-danger.focus, +.btn-outline-danger:focus { + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) +} + +.btn-outline-danger.disabled, +.btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent +} + +.btn-outline-danger:not(:disabled):not(.disabled).active, +.btn-outline-danger:not(:disabled):not(.disabled):active, +.show>.btn-outline-danger.dropdown-toggle { + color: #fff; + background-color: #dc3545; + border-color: #dc3545 +} + +.btn-outline-danger:not(:disabled):not(.disabled).active:focus, +.btn-outline-danger:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5) +} + +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-outline-light.focus, +.btn-outline-light:focus { + box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) +} + +.btn-outline-light.disabled, +.btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent +} + +.btn-outline-light:not(:disabled):not(.disabled).active, +.btn-outline-light:not(:disabled):not(.disabled):active, +.show>.btn-outline-light.dropdown-toggle { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa +} + +.btn-outline-light:not(:disabled):not(.disabled).active:focus, +.btn-outline-light:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-light.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5) +} + +.btn-outline-dark { + color: #343a40; + border-color: #343a40 +} + +.btn-outline-dark:hover { + color: #fff; + background-color: #343a40; + border-color: #343a40 +} + +.btn-outline-dark.focus, +.btn-outline-dark:focus { + box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) +} + +.btn-outline-dark.disabled, +.btn-outline-dark:disabled { + color: #343a40; + background-color: transparent +} + +.btn-outline-dark:not(:disabled):not(.disabled).active, +.btn-outline-dark:not(:disabled):not(.disabled):active, +.show>.btn-outline-dark.dropdown-toggle { + color: #fff; + background-color: #343a40; + border-color: #343a40 +} + +.btn-outline-dark:not(:disabled):not(.disabled).active:focus, +.btn-outline-dark:not(:disabled):not(.disabled):active:focus, +.show>.btn-outline-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5) +} + +.btn-link { + font-weight: 400; + color: #007bff +} + +.btn-link:hover { + color: #0056b3; + text-decoration: underline +} + +.btn-link.focus, +.btn-link:focus { + text-decoration: underline; + box-shadow: none +} + +.btn-link.disabled, +.btn-link:disabled { + color: #6c757d; + pointer-events: none +} + +.btn-group-lg>.btn, +.btn-lg { + padding: .5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: .3rem +} + +.btn-group-sm>.btn, +.btn-sm { + padding: .25rem .5rem; + font-size: .875rem; + line-height: 1.5; + border-radius: .2rem +} + +.btn-block { + display: block; + width: 100% +} + +.btn-block+.btn-block { + margin-top: .5rem +} + +input[type=button].btn-block, +input[type=reset].btn-block, +input[type=submit].btn-block { + width: 100% +} + +.fade { + transition: opacity .15s linear +} + +@media screen and (prefers-reduced-motion:reduce) { + .fade { + transition: none + } +} + +.fade:not(.show) { + opacity: 0 +} + +.collapse:not(.show) { + display: none +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + transition: height .35s ease +} + +@media screen and (prefers-reduced-motion:reduce) { + .collapsing { + transition: none + } +} + +.dropdown, +.dropleft, +.dropright, +.dropup { + position: relative +} + +.dropdown-toggle::after { + display: inline-block; + margin-right: .255em; + vertical-align: .255em; + content: ""; + border-top: .3em solid; + border-left: .3em solid transparent; + border-bottom: 0; + border-right: .3em solid transparent +} + +.dropdown-toggle:empty::after { + margin-right: 0 +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: auto; + z-index: 1000; + display: none; + float: right; + min-width: 10rem; + padding: .5rem 0; + margin: .125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: right; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, .15); + border-radius: .25rem +} + +.dropdown-menu-right { + left: 0; + right: auto +} + +@media (min-width:576px) { + .dropdown-menu-sm-right { + left: 0; + right: auto + } +} + +@media (min-width:768px) { + .dropdown-menu-md-right { + left: 0; + right: auto + } +} + +@media (min-width:992px) { + .dropdown-menu-lg-right { + left: 0; + right: auto + } +} + +@media (min-width:1200px) { + .dropdown-menu-xl-right { + left: 0; + right: auto + } +} + +.dropdown-menu-left { + left: auto; + right: 0 +} + +@media (min-width:576px) { + .dropdown-menu-sm-left { + left: auto; + right: 0 + } +} + +@media (min-width:768px) { + .dropdown-menu-md-left { + left: auto; + right: 0 + } +} + +@media (min-width:992px) { + .dropdown-menu-lg-left { + left: auto; + right: 0 + } +} + +@media (min-width:1200px) { + .dropdown-menu-xl-left { + left: auto; + right: 0 + } +} + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: .125rem +} + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-right: .255em; + vertical-align: .255em; + content: ""; + border-top: 0; + border-left: .3em solid transparent; + border-bottom: .3em solid; + border-right: .3em solid transparent +} + +.dropup .dropdown-toggle:empty::after { + margin-right: 0 +} + +.dropright .dropdown-menu { + top: 0; + left: auto; + right: 100%; + margin-top: 0; + margin-right: .125rem +} + +.dropright .dropdown-toggle::after { + display: inline-block; + margin-right: .255em; + vertical-align: .255em; + content: ""; + border-top: .3em solid transparent; + border-left: 0; + border-bottom: .3em solid transparent; + border-right: .3em solid +} + +.dropright .dropdown-toggle:empty::after { + margin-right: 0 +} + +.dropright .dropdown-toggle::after { + vertical-align: 0 +} + +.dropleft .dropdown-menu { + top: 0; + left: 100%; + right: auto; + margin-top: 0; + margin-left: .125rem +} + +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-right: .255em; + vertical-align: .255em; + content: "" +} + +.dropleft .dropdown-toggle::after { + display: none +} + +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-left: .255em; + vertical-align: .255em; + content: ""; + border-top: .3em solid transparent; + border-left: .3em solid; + border-bottom: .3em solid transparent +} + +.dropleft .dropdown-toggle:empty::after { + margin-right: 0 +} + +.dropleft .dropdown-toggle::before { + vertical-align: 0 +} + +.dropdown-menu[x-placement^=bottom], +.dropdown-menu[x-placement^=left], +.dropdown-menu[x-placement^=right], +.dropdown-menu[x-placement^=top] { + left: auto; + bottom: auto +} + +.dropdown-divider { + height: 0; + margin: .5rem 0; + overflow: hidden; + border-top: 1px solid #e9ecef +} + +.dropdown-item { + display: block; + width: 100%; + padding: .25rem 1.5rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0 +} + +.dropdown-item:first-child { + border-top-right-radius: calc(.25rem - 1px); + border-top-left-radius: calc(.25rem - 1px) +} + +.dropdown-item:last-child { + border-bottom-left-radius: calc(.25rem - 1px); + border-bottom-right-radius: calc(.25rem - 1px) +} + +.dropdown-item:focus, +.dropdown-item:hover { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa +} + +.dropdown-item.active, +.dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff +} + +.dropdown-item.disabled, +.dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent +} + +.dropdown-menu.show { + display: block +} + +.dropdown-header { + display: block; + padding: .5rem 1.5rem; + margin-bottom: 0; + font-size: .875rem; + color: #6c757d; + white-space: nowrap +} + +.dropdown-item-text { + display: block; + padding: .25rem 1.5rem; + color: #212529 +} + +.btn-group, +.btn-group-vertical { + position: relative; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle +} + +.btn-group-vertical>.btn, +.btn-group>.btn { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto +} + +.btn-group-vertical>.btn:hover, +.btn-group>.btn:hover { + z-index: 1 +} + +.btn-group-vertical>.btn.active, +.btn-group-vertical>.btn:active, +.btn-group-vertical>.btn:focus, +.btn-group>.btn.active, +.btn-group>.btn:active, +.btn-group>.btn:focus { + z-index: 1 +} + +.btn-toolbar { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-pack: start; + justify-content: flex-start +} + +.btn-toolbar .input-group { + width: auto +} + +.btn-group>.btn-group:not(:first-child), +.btn-group>.btn:not(:first-child) { + margin-right: -1px +} + +.btn-group>.btn-group:not(:last-child)>.btn, +.btn-group>.btn:not(:last-child):not(.dropdown-toggle) { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group>.btn-group:not(:first-child)>.btn, +.btn-group>.btn:not(:first-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.dropdown-toggle-split { + padding-left: .5625rem; + padding-right: .5625rem +} + +.dropdown-toggle-split::after, +.dropright .dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after { + margin-right: 0 +} + +.dropleft .dropdown-toggle-split::before { + margin-left: 0 +} + +.btn-group-sm>.btn+.dropdown-toggle-split, +.btn-sm+.dropdown-toggle-split { + padding-left: .375rem; + padding-right: .375rem +} + +.btn-group-lg>.btn+.dropdown-toggle-split, +.btn-lg+.dropdown-toggle-split { + padding-left: .75rem; + padding-right: .75rem +} + +.btn-group-vertical { + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: center; + justify-content: center +} + +.btn-group-vertical>.btn, +.btn-group-vertical>.btn-group { + width: 100% +} + +.btn-group-vertical>.btn-group:not(:first-child), +.btn-group-vertical>.btn:not(:first-child) { + margin-top: -1px +} + +.btn-group-vertical>.btn-group:not(:last-child)>.btn, +.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0 +} + +.btn-group-vertical>.btn-group:not(:first-child)>.btn, +.btn-group-vertical>.btn:not(:first-child) { + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.btn-group-toggle>.btn, +.btn-group-toggle>.btn-group>.btn { + margin-bottom: 0 +} + +.btn-group-toggle>.btn input[type=checkbox], +.btn-group-toggle>.btn input[type=radio], +.btn-group-toggle>.btn-group>.btn input[type=checkbox], +.btn-group-toggle>.btn-group>.btn input[type=radio] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none +} + +.input-group { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: stretch; + align-items: stretch; + width: 100% +} + +.input-group>.custom-file, +.input-group>.custom-select, +.input-group>.form-control, +.input-group>.form-control-plaintext { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + margin-bottom: 0 +} + +.input-group>.custom-file+.custom-file, +.input-group>.custom-file+.custom-select, +.input-group>.custom-file+.form-control, +.input-group>.custom-select+.custom-file, +.input-group>.custom-select+.custom-select, +.input-group>.custom-select+.form-control, +.input-group>.form-control+.custom-file, +.input-group>.form-control+.custom-select, +.input-group>.form-control+.form-control, +.input-group>.form-control-plaintext+.custom-file, +.input-group>.form-control-plaintext+.custom-select, +.input-group>.form-control-plaintext+.form-control { + margin-right: -1px +} + +.input-group>.custom-file .custom-file-input:focus~.custom-file-label, +.input-group>.custom-select:focus, +.input-group>.form-control:focus { + z-index: 3 +} + +.input-group>.custom-file .custom-file-input:focus { + z-index: 4 +} + +.input-group>.custom-select:not(:last-child), +.input-group>.form-control:not(:last-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.input-group>.custom-select:not(:first-child), +.input-group>.form-control:not(:first-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.input-group>.custom-file { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center +} + +.input-group>.custom-file:not(:last-child) .custom-file-label, +.input-group>.custom-file:not(:last-child) .custom-file-label::after { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.input-group>.custom-file:not(:first-child) .custom-file-label { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.input-group-append, +.input-group-prepend { + display: -ms-flexbox; + display: flex +} + +.input-group-append .btn, +.input-group-prepend .btn { + position: relative; + z-index: 2 +} + +.input-group-append .btn:focus, +.input-group-prepend .btn:focus { + z-index: 3 +} + +.input-group-append .btn+.btn, +.input-group-append .btn+.input-group-text, +.input-group-append .input-group-text+.btn, +.input-group-append .input-group-text+.input-group-text, +.input-group-prepend .btn+.btn, +.input-group-prepend .btn+.input-group-text, +.input-group-prepend .input-group-text+.btn, +.input-group-prepend .input-group-text+.input-group-text { + margin-right: -1px +} + +.input-group-prepend { + margin-left: -1px +} + +.input-group-append { + margin-right: -1px +} + +.input-group-text { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: .375rem .75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: .25rem +} + +.input-group-text input[type=checkbox], +.input-group-text input[type=radio] { + margin-top: 0 +} + +.input-group-lg>.custom-select, +.input-group-lg>.form-control:not(textarea) { + height: calc(2.875rem + 2px) +} + +.input-group-lg>.custom-select, +.input-group-lg>.form-control, +.input-group-lg>.input-group-append>.btn, +.input-group-lg>.input-group-append>.input-group-text, +.input-group-lg>.input-group-prepend>.btn, +.input-group-lg>.input-group-prepend>.input-group-text { + padding: .5rem 1rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: .3rem +} + +.input-group-sm>.custom-select, +.input-group-sm>.form-control:not(textarea) { + height: calc(1.8125rem + 2px) +} + +.input-group-sm>.custom-select, +.input-group-sm>.form-control, +.input-group-sm>.input-group-append>.btn, +.input-group-sm>.input-group-append>.input-group-text, +.input-group-sm>.input-group-prepend>.btn, +.input-group-sm>.input-group-prepend>.input-group-text { + padding: .25rem .5rem; + font-size: .875rem; + line-height: 1.5; + border-radius: .2rem +} + +.input-group-lg>.custom-select, +.input-group-sm>.custom-select { + padding-left: 1.75rem +} + +.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), +.input-group>.input-group-append:last-child>.input-group-text:not(:last-child), +.input-group>.input-group-append:not(:last-child)>.btn, +.input-group>.input-group-append:not(:last-child)>.input-group-text, +.input-group>.input-group-prepend>.btn, +.input-group>.input-group-prepend>.input-group-text { + border-top-left-radius: 0; + border-bottom-left-radius: 0 +} + +.input-group>.input-group-append>.btn, +.input-group>.input-group-append>.input-group-text, +.input-group>.input-group-prepend:first-child>.btn:not(:first-child), +.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), +.input-group>.input-group-prepend:not(:first-child)>.btn, +.input-group>.input-group-prepend:not(:first-child)>.input-group-text { + border-top-right-radius: 0; + border-bottom-right-radius: 0 +} + +.custom-control { + position: relative; + display: block; + min-height: 1.5rem; + padding-right: 1.5rem +} + +.custom-control-inline { + display: -ms-inline-flexbox; + display: inline-flex; + margin-left: 1rem +} + +.custom-control-input { + position: absolute; + z-index: -1; + opacity: 0 +} + +.custom-control-input:checked~.custom-control-label::before { + color: #fff; + border-color: #007bff; + background-color: #007bff +} + +.custom-control-input:focus~.custom-control-label::before { + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-control-input:focus:not(:checked)~.custom-control-label::before { + border-color: #80bdff +} + +.custom-control-input:not(:disabled):active~.custom-control-label::before { + color: #fff; + background-color: #b3d7ff; + border-color: #b3d7ff +} + +.custom-control-input:disabled~.custom-control-label { + color: #6c757d +} + +.custom-control-input:disabled~.custom-control-label::before { + background-color: #e9ecef +} + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top +} + +.custom-control-label::before { + position: absolute; + top: .25rem; + right: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px +} + +.custom-control-label::after { + position: absolute; + top: .25rem; + right: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background-repeat: no-repeat; + background-position: center center; + background-size: 50% 50% +} + +.custom-checkbox .custom-control-label::before { + border-radius: .25rem +} + +.custom-checkbox .custom-control-input:checked~.custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e") +} + +.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before { + border-color: #007bff; + background-color: #007bff +} + +.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e") +} + +.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before { + background-color: rgba(0, 123, 255, .5) +} + +.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before { + background-color: rgba(0, 123, 255, .5) +} + +.custom-radio .custom-control-label::before { + border-radius: 50% +} + +.custom-radio .custom-control-input:checked~.custom-control-label::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") +} + +.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before { + background-color: rgba(0, 123, 255, .5) +} + +.custom-switch { + padding-right: 2.25rem +} + +.custom-switch .custom-control-label::before { + right: -2.25rem; + width: 1.75rem; + pointer-events: all; + border-radius: .5rem +} + +.custom-switch .custom-control-label::after { + top: calc(.25rem + 2px); + right: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: .5rem; + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out; + transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out +} + +@media screen and (prefers-reduced-motion:reduce) { + .custom-switch .custom-control-label::after { + transition: none + } +} + +.custom-switch .custom-control-input:checked~.custom-control-label::after { + background-color: #fff; + -webkit-transform: translateX(-.75rem); + transform: translateX(-.75rem) +} + +.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before { + background-color: rgba(0, 123, 255, .5) +} + +.custom-select { + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + padding: .375rem .75rem .375rem 1.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left .75rem center/8px 10px; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: .25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none +} + +.custom-select:focus { + border-color: #80bdff; + outline: 0; + box-shadow: 0 0 0 .2rem rgba(128, 189, 255, .5) +} + +.custom-select:focus::-ms-value { + color: #495057; + background-color: #fff +} + +.custom-select[multiple], +.custom-select[size]:not([size="1"]) { + height: auto; + padding-left: .75rem; + background-image: none +} + +.custom-select:disabled { + color: #6c757d; + background-color: #e9ecef +} + +.custom-select::-ms-expand { + opacity: 0 +} + +.custom-select-sm { + height: calc(1.8125rem + 2px); + padding-top: .25rem; + padding-bottom: .25rem; + padding-right: .5rem; + font-size: .875rem +} + +.custom-select-lg { + height: calc(2.875rem + 2px); + padding-top: .5rem; + padding-bottom: .5rem; + padding-right: 1rem; + font-size: 1.25rem +} + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(2.25rem + 2px); + margin-bottom: 0 +} + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(2.25rem + 2px); + margin: 0; + opacity: 0 +} + +.custom-file-input:focus~.custom-file-label { + border-color: #80bdff; + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-file-input:disabled~.custom-file-label { + background-color: #e9ecef +} + +.custom-file-input:lang(en)~.custom-file-label::after { + content: "Browse" +} + +.custom-file-input~.custom-file-label[data-browse]::after { + content: attr(data-browse) +} + +.custom-file-label { + position: absolute; + top: 0; + left: 0; + right: 0; + z-index: 1; + height: calc(2.25rem + 2px); + padding: .375rem .75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: .25rem +} + +.custom-file-label::after { + position: absolute; + top: 0; + left: 0; + bottom: 0; + z-index: 3; + display: block; + height: 2.25rem; + padding: .375rem .75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-right: inherit; + border-radius: .25rem 0 0 .25rem +} + +.custom-range { + width: 100%; + height: calc(1rem + .4rem); + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none +} + +.custom-range:focus { + outline: 0 +} + +.custom-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.custom-range::-moz-focus-outer { + border: 0 +} + +.custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + -webkit-appearance: none; + appearance: none +} + +@media screen and (prefers-reduced-motion:reduce) { + .custom-range::-webkit-slider-thumb { + transition: none + } +} + +.custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff +} + +.custom-range::-webkit-slider-runnable-track { + width: 100%; + height: .5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem +} + +.custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + -moz-appearance: none; + appearance: none +} + +@media screen and (prefers-reduced-motion:reduce) { + .custom-range::-moz-range-thumb { + transition: none + } +} + +.custom-range::-moz-range-thumb:active { + background-color: #b3d7ff +} + +.custom-range::-moz-range-track { + width: 100%; + height: .5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem +} + +.custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-left: .2rem; + margin-right: .2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + appearance: none +} + +@media screen and (prefers-reduced-motion:reduce) { + .custom-range::-ms-thumb { + transition: none + } +} + +.custom-range::-ms-thumb:active { + background-color: #b3d7ff +} + +.custom-range::-ms-track { + width: 100%; + height: .5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: .5rem +} + +.custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem +} + +.custom-range::-ms-fill-upper { + margin-left: 15px; + background-color: #dee2e6; + border-radius: 1rem +} + +.custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd +} + +.custom-range:disabled::-webkit-slider-runnable-track { + cursor: default +} + +.custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd +} + +.custom-range:disabled::-moz-range-track { + cursor: default +} + +.custom-range:disabled::-ms-thumb { + background-color: #adb5bd +} + +.custom-control-label::before, +.custom-file-label, +.custom-select { + transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out +} + +@media screen and (prefers-reduced-motion:reduce) { + + .custom-control-label::before, + .custom-file-label, + .custom-select { + transition: none + } +} + +.nav { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-right: 0; + margin-bottom: 0; + list-style: none +} + +.nav-link { + display: block; + padding: .5rem 1rem +} + +.nav-link:focus, +.nav-link:hover { + text-decoration: none +} + +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default +} + +.nav-tabs { + border-bottom: 1px solid #dee2e6 +} + +.nav-tabs .nav-item { + margin-bottom: -1px +} + +.nav-tabs .nav-link { + border: 1px solid transparent; + border-top-right-radius: .25rem; + border-top-left-radius: .25rem +} + +.nav-tabs .nav-link:focus, +.nav-tabs .nav-link:hover { + border-color: #e9ecef #e9ecef #dee2e6 +} + +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent +} + +.nav-tabs .nav-item.show .nav-link, +.nav-tabs .nav-link.active { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.nav-pills .nav-link { + border-radius: .25rem +} + +.nav-pills .nav-link.active, +.nav-pills .show>.nav-link { + color: #fff; + background-color: #007bff +} + +.nav-fill .nav-item { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center +} + +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center +} + +.tab-content>.tab-pane { + display: none +} + +.tab-content>.active { + display: block +} + +.navbar { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between; + padding: .5rem 1rem +} + +.navbar>.container, +.navbar>.container-fluid { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: justify; + justify-content: space-between +} + +.navbar-brand { + display: inline-block; + padding-top: .3125rem; + padding-bottom: .3125rem; + margin-left: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap +} + +.navbar-brand:focus, +.navbar-brand:hover { + text-decoration: none +} + +.navbar-nav { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-right: 0; + margin-bottom: 0; + list-style: none +} + +.navbar-nav .nav-link { + padding-left: 0; + padding-right: 0 +} + +.navbar-nav .dropdown-menu { + position: static; + float: none +} + +.navbar-text { + display: inline-block; + padding-top: .5rem; + padding-bottom: .5rem +} + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -ms-flex-positive: 1; + flex-grow: 1; + -ms-flex-align: center; + align-items: center +} + +.navbar-toggler { + padding: .25rem .75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: .25rem +} + +.navbar-toggler:focus, +.navbar-toggler:hover { + text-decoration: none +} + +.navbar-toggler:not(:disabled):not(.disabled) { + cursor: pointer +} + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + background: no-repeat center center; + background-size: 100% 100% +} + +@media (max-width:575.98px) { + + .navbar-expand-sm>.container, + .navbar-expand-sm>.container-fluid { + padding-left: 0; + padding-right: 0 + } +} + +@media (min-width:576px) { + .navbar-expand-sm { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start + } + + .navbar-expand-sm .navbar-nav { + -ms-flex-direction: row; + flex-direction: row + } + + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute + } + + .navbar-expand-sm .navbar-nav .nav-link { + padding-left: .5rem; + padding-right: .5rem + } + + .navbar-expand-sm>.container, + .navbar-expand-sm>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap + } + + .navbar-expand-sm .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto + } + + .navbar-expand-sm .navbar-toggler { + display: none + } +} + +@media (max-width:767.98px) { + + .navbar-expand-md>.container, + .navbar-expand-md>.container-fluid { + padding-left: 0; + padding-right: 0 + } +} + +@media (min-width:768px) { + .navbar-expand-md { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start + } + + .navbar-expand-md .navbar-nav { + -ms-flex-direction: row; + flex-direction: row + } + + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute + } + + .navbar-expand-md .navbar-nav .nav-link { + padding-left: .5rem; + padding-right: .5rem + } + + .navbar-expand-md>.container, + .navbar-expand-md>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap + } + + .navbar-expand-md .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto + } + + .navbar-expand-md .navbar-toggler { + display: none + } +} + +@media (max-width:991.98px) { + + .navbar-expand-lg>.container, + .navbar-expand-lg>.container-fluid { + padding-left: 0; + padding-right: 0 + } +} + +@media (min-width:992px) { + .navbar-expand-lg { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start + } + + .navbar-expand-lg .navbar-nav { + -ms-flex-direction: row; + flex-direction: row + } + + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute + } + + .navbar-expand-lg .navbar-nav .nav-link { + padding-left: .5rem; + padding-right: .5rem + } + + .navbar-expand-lg>.container, + .navbar-expand-lg>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap + } + + .navbar-expand-lg .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto + } + + .navbar-expand-lg .navbar-toggler { + display: none + } +} + +@media (max-width:1199.98px) { + + .navbar-expand-xl>.container, + .navbar-expand-xl>.container-fluid { + padding-left: 0; + padding-right: 0 + } +} + +@media (min-width:1200px) { + .navbar-expand-xl { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start + } + + .navbar-expand-xl .navbar-nav { + -ms-flex-direction: row; + flex-direction: row + } + + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute + } + + .navbar-expand-xl .navbar-nav .nav-link { + padding-left: .5rem; + padding-right: .5rem + } + + .navbar-expand-xl>.container, + .navbar-expand-xl>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap + } + + .navbar-expand-xl .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto + } + + .navbar-expand-xl .navbar-toggler { + display: none + } +} + +.navbar-expand { + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -ms-flex-pack: start; + justify-content: flex-start +} + +.navbar-expand>.container, +.navbar-expand>.container-fluid { + padding-left: 0; + padding-right: 0 +} + +.navbar-expand .navbar-nav { + -ms-flex-direction: row; + flex-direction: row +} + +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute +} + +.navbar-expand .navbar-nav .nav-link { + padding-left: .5rem; + padding-right: .5rem +} + +.navbar-expand>.container, +.navbar-expand>.container-fluid { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap +} + +.navbar-expand .navbar-collapse { + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto +} + +.navbar-expand .navbar-toggler { + display: none +} + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-brand:focus, +.navbar-light .navbar-brand:hover { + color: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, .5) +} + +.navbar-light .navbar-nav .nav-link:focus, +.navbar-light .navbar-nav .nav-link:hover { + color: rgba(0, 0, 0, .7) +} + +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, .3) +} + +.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: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, .5); + border-color: rgba(0, 0, 0, .1) +} + +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") +} + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, .5) +} + +.navbar-light .navbar-text a { + color: rgba(0, 0, 0, .9) +} + +.navbar-light .navbar-text a:focus, +.navbar-light .navbar-text a:hover { + color: rgba(0, 0, 0, .9) +} + +.navbar-dark .navbar-brand { + color: #fff +} + +.navbar-dark .navbar-brand:focus, +.navbar-dark .navbar-brand:hover { + color: #fff +} + +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, .5) +} + +.navbar-dark .navbar-nav .nav-link:focus, +.navbar-dark .navbar-nav .nav-link:hover { + color: rgba(255, 255, 255, .75) +} + +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, .25) +} + +.navbar-dark .navbar-nav .active>.nav-link, +.navbar-dark .navbar-nav .nav-link.active, +.navbar-dark .navbar-nav .nav-link.show, +.navbar-dark .navbar-nav .show>.nav-link { + color: #fff +} + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, .5); + border-color: rgba(255, 255, 255, .1) +} + +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") +} + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, .5) +} + +.navbar-dark .navbar-text a { + color: #fff +} + +.navbar-dark .navbar-text a:focus, +.navbar-dark .navbar-text a:hover { + color: #fff +} + +.card { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, .125); + border-radius: .25rem +} + +.card>hr { + margin-left: 0; + margin-right: 0 +} + +.card>.list-group:first-child .list-group-item:first-child { + border-top-right-radius: .25rem; + border-top-left-radius: .25rem +} + +.card>.list-group:last-child .list-group-item:last-child { + border-bottom-left-radius: .25rem; + border-bottom-right-radius: .25rem +} + +.card-body { + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1.25rem +} + +.card-title { + margin-bottom: .75rem +} + +.card-subtitle { + margin-top: -.375rem; + margin-bottom: 0 +} + +.card-text:last-child { + margin-bottom: 0 +} + +.card-link:hover { + text-decoration: none +} + +.card-link+.card-link { + margin-right: 1.25rem +} + +.card-header { + padding: .75rem 1.25rem; + margin-bottom: 0; + color: inherit; + background-color: rgba(0, 0, 0, .03); + border-bottom: 1px solid rgba(0, 0, 0, .125) +} + +.card-header:first-child { + border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0 +} + +.card-header+.list-group .list-group-item:first-child { + border-top: 0 +} + +.card-footer { + padding: .75rem 1.25rem; + background-color: rgba(0, 0, 0, .03); + border-top: 1px solid rgba(0, 0, 0, .125) +} + +.card-footer:last-child { + border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px) +} + +.card-header-tabs { + margin-left: -.625rem; + margin-bottom: -.75rem; + margin-right: -.625rem; + border-bottom: 0 +} + +.card-header-pills { + margin-left: -.625rem; + margin-right: -.625rem +} + +.card-img-overlay { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + padding: 1.25rem +} + +.card-img { + width: 100%; + border-radius: calc(.25rem - 1px) +} + +.card-img-top { + width: 100%; + border-top-right-radius: calc(.25rem - 1px); + border-top-left-radius: calc(.25rem - 1px) +} + +.card-img-bottom { + width: 100%; + border-bottom-left-radius: calc(.25rem - 1px); + border-bottom-right-radius: calc(.25rem - 1px) +} + +.card-deck { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column +} + +.card-deck .card { + margin-bottom: 15px +} + +@media (min-width:576px) { + .card-deck { + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-left: -15px; + margin-right: -15px + } + + .card-deck .card { + display: -ms-flexbox; + display: flex; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + -ms-flex-direction: column; + flex-direction: column; + margin-left: 15px; + margin-bottom: 0; + margin-right: 15px + } +} + +.card-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column +} + +.card-group>.card { + margin-bottom: 15px +} + +@media (min-width:576px) { + .card-group { + -ms-flex-flow: row wrap; + flex-flow: row wrap + } + + .card-group>.card { + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0 + } + + .card-group>.card+.card { + margin-right: 0; + border-right: 0 + } + + .card-group>.card:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0 + } + + .card-group>.card:first-child .card-header, + .card-group>.card:first-child .card-img-top { + border-top-left-radius: 0 + } + + .card-group>.card:first-child .card-footer, + .card-group>.card:first-child .card-img-bottom { + border-bottom-left-radius: 0 + } + + .card-group>.card:last-child { + border-top-right-radius: 0; + border-bottom-right-radius: 0 + } + + .card-group>.card:last-child .card-header, + .card-group>.card:last-child .card-img-top { + border-top-right-radius: 0 + } + + .card-group>.card:last-child .card-footer, + .card-group>.card:last-child .card-img-bottom { + border-bottom-right-radius: 0 + } + + .card-group>.card:only-child { + border-radius: .25rem + } + + .card-group>.card:only-child .card-header, + .card-group>.card:only-child .card-img-top { + border-top-right-radius: .25rem; + border-top-left-radius: .25rem + } + + .card-group>.card:only-child .card-footer, + .card-group>.card:only-child .card-img-bottom { + border-bottom-left-radius: .25rem; + border-bottom-right-radius: .25rem + } + + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) { + border-radius: 0 + } + + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer, + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header, + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, + .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top { + border-radius: 0 + } +} + +.card-columns .card { + margin-bottom: .75rem +} + +@media (min-width:576px) { + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1 + } + + .card-columns .card { + display: inline-block; + width: 100% + } +} + +.accordion .card { + overflow: hidden +} + +.accordion .card:not(:first-of-type) .card-header:first-child { + border-radius: 0 +} + +.accordion .card:not(:first-of-type):not(:last-of-type) { + border-bottom: 0; + border-radius: 0 +} + +.accordion .card:first-of-type { + border-bottom: 0; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0 +} + +.accordion .card:last-of-type { + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.accordion .card .card-header { + margin-bottom: -1px +} + +.breadcrumb { + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: .75rem 1rem; + margin-bottom: 1rem; + list-style: none; + background-color: #e9ecef; + border-radius: .25rem +} + +.breadcrumb-item+.breadcrumb-item { + padding-right: .5rem +} + +.breadcrumb-item+.breadcrumb-item::before { + display: inline-block; + padding-left: .5rem; + color: #6c757d; + content: "/" +} + +.breadcrumb-item+.breadcrumb-item:hover::before { + text-decoration: underline +} + +.breadcrumb-item+.breadcrumb-item:hover::before { + text-decoration: none +} + +.breadcrumb-item.active { + color: #6c757d +} + +.pagination { + display: -ms-flexbox; + display: flex; + padding-right: 0; + list-style: none; + border-radius: .25rem +} + +.page-link { + position: relative; + display: block; + padding: .5rem .75rem; + margin-right: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6 +} + +.page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6 +} + +.page-link:focus { + z-index: 2; + outline: 0; + box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25) +} + +.page-link:not(:disabled):not(.disabled) { + cursor: pointer +} + +.page-item:first-child .page-link { + margin-right: 0; + border-top-right-radius: .25rem; + border-bottom-right-radius: .25rem +} + +.page-item:last-child .page-link { + border-top-left-radius: .25rem; + border-bottom-left-radius: .25rem +} + +.page-item.active .page-link { + z-index: 1; + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6 +} + +.pagination-lg .page-link { + padding: .75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5 +} + +.pagination-lg .page-item:first-child .page-link { + border-top-right-radius: .3rem; + border-bottom-right-radius: .3rem +} + +.pagination-lg .page-item:last-child .page-link { + border-top-left-radius: .3rem; + border-bottom-left-radius: .3rem +} + +.pagination-sm .page-link { + padding: .25rem .5rem; + font-size: .875rem; + line-height: 1.5 +} + +.pagination-sm .page-item:first-child .page-link { + border-top-right-radius: .2rem; + border-bottom-right-radius: .2rem +} + +.pagination-sm .page-item:last-child .page-link { + border-top-left-radius: .2rem; + border-bottom-left-radius: .2rem +} + +.badge { + display: inline-block; + padding: .25em .4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25rem +} + +a.badge:focus, +a.badge:hover { + text-decoration: none +} + +.badge:empty { + display: none +} + +.btn .badge { + position: relative; + top: -1px +} + +.badge-pill { + padding-left: .6em; + padding-right: .6em; + border-radius: 10rem +} + +.badge-primary { + color: #fff; + background-color: #007bff +} + +a.badge-primary:focus, +a.badge-primary:hover { + color: #fff; + background-color: #0062cc +} + +.badge-secondary { + color: #fff; + background-color: #6c757d +} + +a.badge-secondary:focus, +a.badge-secondary:hover { + color: #fff; + background-color: #545b62 +} + +.badge-success { + color: #fff; + background-color: #28a745 +} + +a.badge-success:focus, +a.badge-success:hover { + color: #fff; + background-color: #1e7e34 +} + +.badge-info { + color: #fff; + background-color: #17a2b8 +} + +a.badge-info:focus, +a.badge-info:hover { + color: #fff; + background-color: #117a8b +} + +.badge-warning { + color: #212529; + background-color: #ffc107 +} + +a.badge-warning:focus, +a.badge-warning:hover { + color: #212529; + background-color: #d39e00 +} + +.badge-danger { + color: #fff; + background-color: #dc3545 +} + +a.badge-danger:focus, +a.badge-danger:hover { + color: #fff; + background-color: #bd2130 +} + +.badge-light { + color: #212529; + background-color: #f8f9fa +} + +a.badge-light:focus, +a.badge-light:hover { + color: #212529; + background-color: #dae0e5 +} + +.badge-dark { + color: #fff; + background-color: #343a40 +} + +a.badge-dark:focus, +a.badge-dark:hover { + color: #fff; + background-color: #1d2124 +} + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: .3rem +} + +@media (min-width:576px) { + .jumbotron { + padding: 4rem 2rem + } +} + +.jumbotron-fluid { + padding-left: 0; + padding-right: 0; + border-radius: 0 +} + +.alert { + position: relative; + padding: .75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: .25rem +} + +.alert-heading { + color: inherit +} + +.alert-link { + font-weight: 700 +} + +.alert-dismissible { + padding-left: 4rem +} + +.alert-dismissible .close { + position: absolute; + top: 0; + left: 0; + padding: .75rem 1.25rem; + color: inherit +} + +.alert-primary { + color: #004085; + background-color: #cce5ff; + border-color: #b8daff +} + +.alert-primary hr { + border-top-color: #9fcdff +} + +.alert-primary .alert-link { + color: #002752 +} + +.alert-secondary { + color: #383d41; + background-color: #e2e3e5; + border-color: #d6d8db +} + +.alert-secondary hr { + border-top-color: #c8cbcf +} + +.alert-secondary .alert-link { + color: #202326 +} + +.alert-success { + color: #155724; + background-color: #d4edda; + border-color: #c3e6cb +} + +.alert-success hr { + border-top-color: #b1dfbb +} + +.alert-success .alert-link { + color: #0b2e13 +} + +.alert-info { + color: #0c5460; + background-color: #d1ecf1; + border-color: #bee5eb +} + +.alert-info hr { + border-top-color: #abdde5 +} + +.alert-info .alert-link { + color: #062c33 +} + +.alert-warning { + color: #856404; + background-color: #fff3cd; + border-color: #ffeeba +} + +.alert-warning hr { + border-top-color: #ffe8a1 +} + +.alert-warning .alert-link { + color: #533f03 +} + +.alert-danger { + color: #721c24; + background-color: #f8d7da; + border-color: #f5c6cb +} + +.alert-danger hr { + border-top-color: #f1b0b7 +} + +.alert-danger .alert-link { + color: #491217 +} + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe +} + +.alert-light hr { + border-top-color: #ececf6 +} + +.alert-light .alert-link { + color: #686868 +} + +.alert-dark { + color: #1b1e21; + background-color: #d6d8d9; + border-color: #c6c8ca +} + +.alert-dark hr { + border-top-color: #b9bbbe +} + +.alert-dark .alert-link { + color: #040505 +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 1rem 0 + } + + to { + background-position: 0 0 + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 1rem 0 + } + + to { + background-position: 0 0 + } +} + +.progress { + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + font-size: .75rem; + background-color: #e9ecef; + border-radius: .25rem +} + +.progress-bar { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-pack: center; + justify-content: center; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + transition: width .6s ease +} + +@media screen and (prefers-reduced-motion:reduce) { + .progress-bar { + transition: none + } +} + +.progress-bar-striped { + background-image: linear-gradient(-45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-size: 1rem 1rem +} + +.progress-bar-animated { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite +} + +.media { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start +} + +.media-body { + -ms-flex: 1; + flex: 1 +} + +.list-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + padding-right: 0; + margin-bottom: 0 +} + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit +} + +.list-group-item-action:focus, +.list-group-item-action:hover { + color: #495057; + text-decoration: none; + background-color: #f8f9fa +} + +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef +} + +.list-group-item { + position: relative; + display: block; + padding: .75rem 1.25rem; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, .125) +} + +.list-group-item:first-child { + border-top-right-radius: .25rem; + border-top-left-radius: .25rem +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-left-radius: .25rem; + border-bottom-right-radius: .25rem +} + +.list-group-item:focus, +.list-group-item:hover { + z-index: 1; + text-decoration: none +} + +.list-group-item.disabled, +.list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff +} + +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff +} + +.list-group-flush .list-group-item { + border-left: 0; + border-right: 0; + border-radius: 0 +} + +.list-group-flush .list-group-item:last-child { + margin-bottom: -1px +} + +.list-group-flush:first-child .list-group-item:first-child { + border-top: 0 +} + +.list-group-flush:last-child .list-group-item:last-child { + margin-bottom: 0; + border-bottom: 0 +} + +.list-group-item-primary { + color: #004085; + background-color: #b8daff +} + +.list-group-item-primary.list-group-item-action:focus, +.list-group-item-primary.list-group-item-action:hover { + color: #004085; + background-color: #9fcdff +} + +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #004085; + border-color: #004085 +} + +.list-group-item-secondary { + color: #383d41; + background-color: #d6d8db +} + +.list-group-item-secondary.list-group-item-action:focus, +.list-group-item-secondary.list-group-item-action:hover { + color: #383d41; + background-color: #c8cbcf +} + +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #383d41; + border-color: #383d41 +} + +.list-group-item-success { + color: #155724; + background-color: #c3e6cb +} + +.list-group-item-success.list-group-item-action:focus, +.list-group-item-success.list-group-item-action:hover { + color: #155724; + background-color: #b1dfbb +} + +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #155724; + border-color: #155724 +} + +.list-group-item-info { + color: #0c5460; + background-color: #bee5eb +} + +.list-group-item-info.list-group-item-action:focus, +.list-group-item-info.list-group-item-action:hover { + color: #0c5460; + background-color: #abdde5 +} + +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #0c5460; + border-color: #0c5460 +} + +.list-group-item-warning { + color: #856404; + background-color: #ffeeba +} + +.list-group-item-warning.list-group-item-action:focus, +.list-group-item-warning.list-group-item-action:hover { + color: #856404; + background-color: #ffe8a1 +} + +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #856404; + border-color: #856404 +} + +.list-group-item-danger { + color: #721c24; + background-color: #f5c6cb +} + +.list-group-item-danger.list-group-item-action:focus, +.list-group-item-danger.list-group-item-action:hover { + color: #721c24; + background-color: #f1b0b7 +} + +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #721c24; + border-color: #721c24 +} + +.list-group-item-light { + color: #818182; + background-color: #fdfdfe +} + +.list-group-item-light.list-group-item-action:focus, +.list-group-item-light.list-group-item-action:hover { + color: #818182; + background-color: #ececf6 +} + +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #818182; + border-color: #818182 +} + +.list-group-item-dark { + color: #1b1e21; + background-color: #c6c8ca +} + +.list-group-item-dark.list-group-item-action:focus, +.list-group-item-dark.list-group-item-action:hover { + color: #1b1e21; + background-color: #b9bbbe +} + +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #1b1e21; + border-color: #1b1e21 +} + +.close { + float: left; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5 +} + +.close:hover { + color: #000; + text-decoration: none +} + +.close:not(:disabled):not(.disabled) { + cursor: pointer +} + +.close:not(:disabled):not(.disabled):focus, +.close:not(:disabled):not(.disabled):hover { + opacity: .75 +} + +button.close { + padding: 0; + background-color: transparent; + border: 0; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none +} + +a.close.disabled { + pointer-events: none +} + +.toast { + max-width: 350px; + overflow: hidden; + font-size: .875rem; + background-color: rgba(255, 255, 255, .85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, .1); + border-radius: .25rem; + box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1); + -webkit-backdrop-filter: blur(10px); + backdrop-filter: blur(10px); + opacity: 0 +} + +.toast:not(:last-child) { + margin-bottom: .75rem +} + +.toast.showing { + opacity: 1 +} + +.toast.show { + display: block; + opacity: 1 +} + +.toast.hide { + display: none +} + +.toast-header { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: .25rem .75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, .85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, .05) +} + +.toast-body { + padding: .75rem +} + +.modal-open { + overflow: hidden +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto +} + +.modal { + position: fixed; + top: 0; + right: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0 +} + +.modal-dialog { + position: relative; + width: auto; + margin: .5rem; + pointer-events: none +} + +.modal.fade .modal-dialog { + transition: -webkit-transform .3s ease-out; + transition: transform .3s ease-out; + transition: transform .3s ease-out, -webkit-transform .3s ease-out; + -webkit-transform: translate(0, -50px); + transform: translate(0, -50px) +} + +@media screen and (prefers-reduced-motion:reduce) { + .modal.fade .modal-dialog { + transition: none + } +} + +.modal.show .modal-dialog { + -webkit-transform: none; + transform: none +} + +.modal-dialog-centered { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - (.5rem * 2)) +} + +.modal-dialog-centered::before { + display: block; + height: calc(100vh - (.5rem * 2)); + content: "" +} + +.modal-content { + position: relative; + display: -ms-flexbox; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 15px !important; + outline: 0 +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000 +} + +.modal-backdrop.fade { + opacity: 0 +} + +.modal-backdrop.show { + opacity: .5 +} + +.modal-header { + display: -ms-flexbox; + display: flex; + -ms-flex-align: start; + align-items: flex-start; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #e9ecef; + border-top-right-radius: .3rem; + border-top-left-radius: .3rem +} + +.modal-header .close { + padding: 1rem 1rem; + margin: -1rem auto -1rem -1rem +} + +.modal-title { + margin-bottom: 0; + line-height: 1.5 +} + +.modal-body { + position: relative; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 1rem +} + +.modal-footer { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 1rem; + border-top: 1px solid #e9ecef; + border-bottom-left-radius: .3rem; + border-bottom-right-radius: .3rem +} + +.modal-footer>:not(:first-child) { + margin-right: .25rem +} + +.modal-footer>:not(:last-child) { + margin-left: .25rem +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll +} + +@media (min-width:576px) { + .modal-dialog { + max-width: 500px; + margin: 1.75rem auto + } + + .modal-dialog-centered { + min-height: calc(100% - (1.75rem * 2)) + } + + .modal-dialog-centered::before { + height: calc(100vh - (1.75rem * 2)) + } + + .modal-sm { + max-width: 300px + } +} + +@media (min-width:992px) { + + .modal-lg, + .modal-xl { + max-width: 800px + } +} + +@media (min-width:1200px) { + .modal-xl { + max-width: 1140px + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: right; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: .875rem; + word-wrap: break-word; + opacity: 0 +} + +.tooltip.show { + opacity: .9 +} + +.tooltip .arrow { + position: absolute; + display: block; + width: .8rem; + height: .4rem +} + +.tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid +} + +.bs-tooltip-auto[x-placement^=top], +.bs-tooltip-top { + padding: .4rem 0 +} + +.bs-tooltip-auto[x-placement^=top] .arrow, +.bs-tooltip-top .arrow { + bottom: 0 +} + +.bs-tooltip-auto[x-placement^=top] .arrow::before, +.bs-tooltip-top .arrow::before { + top: 0; + border-width: .4rem .4rem 0; + border-top-color: #000 +} + +.bs-tooltip-auto[x-placement^=right], +.bs-tooltip-right { + padding: 0 .4rem +} + +.bs-tooltip-auto[x-placement^=right] .arrow, +.bs-tooltip-right .arrow { + left: 0; + width: .4rem; + height: .8rem +} + +.bs-tooltip-auto[x-placement^=right] .arrow::before, +.bs-tooltip-right .arrow::before { + right: 0; + border-width: .4rem .4rem .4rem 0; + border-right-color: #000 +} + +.bs-tooltip-auto[x-placement^=bottom], +.bs-tooltip-bottom { + padding: .4rem 0 +} + +.bs-tooltip-auto[x-placement^=bottom] .arrow, +.bs-tooltip-bottom .arrow { + top: 0 +} + +.bs-tooltip-auto[x-placement^=bottom] .arrow::before, +.bs-tooltip-bottom .arrow::before { + bottom: 0; + border-width: 0 .4rem .4rem; + border-bottom-color: #000 +} + +.bs-tooltip-auto[x-placement^=left], +.bs-tooltip-left { + padding: 0 .4rem +} + +.bs-tooltip-auto[x-placement^=left] .arrow, +.bs-tooltip-left .arrow { + right: 0; + width: .4rem; + height: .8rem +} + +.bs-tooltip-auto[x-placement^=left] .arrow::before, +.bs-tooltip-left .arrow::before { + left: 0; + border-width: .4rem 0 .4rem .4rem; + border-left-color: #000 +} + +.tooltip-inner { + max-width: 200px; + padding: .25rem .5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: .25rem +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: right; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: .875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: .3rem +} + +.popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: .5rem; + margin: 0 .3rem +} + +.popover .arrow::after, +.popover .arrow::before { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid +} + +.bs-popover-auto[x-placement^=top], +.bs-popover-top { + margin-bottom: .5rem +} + +.bs-popover-auto[x-placement^=top] .arrow, +.bs-popover-top .arrow { + bottom: calc((.5rem + 1px) * -1) +} + +.bs-popover-auto[x-placement^=top] .arrow::after, +.bs-popover-auto[x-placement^=top] .arrow::before, +.bs-popover-top .arrow::after, +.bs-popover-top .arrow::before { + border-width: .5rem .5rem 0 +} + +.bs-popover-auto[x-placement^=top] .arrow::before, +.bs-popover-top .arrow::before { + bottom: 0; + border-top-color: rgba(0, 0, 0, .25) +} + +.bs-popover-auto[x-placement^=top] .arrow::after, +.bs-popover-top .arrow::after { + bottom: 1px; + border-top-color: #fff +} + +.bs-popover-auto[x-placement^=right], +.bs-popover-right { + margin-left: .5rem +} + +.bs-popover-auto[x-placement^=right] .arrow, +.bs-popover-right .arrow { + left: calc((.5rem + 1px) * -1); + width: .5rem; + height: 1rem; + margin: .3rem 0 +} + +.bs-popover-auto[x-placement^=right] .arrow::after, +.bs-popover-auto[x-placement^=right] .arrow::before, +.bs-popover-right .arrow::after, +.bs-popover-right .arrow::before { + border-width: .5rem .5rem .5rem 0 +} + +.bs-popover-auto[x-placement^=right] .arrow::before, +.bs-popover-right .arrow::before { + left: 0; + border-right-color: rgba(0, 0, 0, .25) +} + +.bs-popover-auto[x-placement^=right] .arrow::after, +.bs-popover-right .arrow::after { + left: 1px; + border-right-color: #fff +} + +.bs-popover-auto[x-placement^=bottom], +.bs-popover-bottom { + margin-top: .5rem +} + +.bs-popover-auto[x-placement^=bottom] .arrow, +.bs-popover-bottom .arrow { + top: calc((.5rem + 1px) * -1) +} + +.bs-popover-auto[x-placement^=bottom] .arrow::after, +.bs-popover-auto[x-placement^=bottom] .arrow::before, +.bs-popover-bottom .arrow::after, +.bs-popover-bottom .arrow::before { + border-width: 0 .5rem .5rem .5rem +} + +.bs-popover-auto[x-placement^=bottom] .arrow::before, +.bs-popover-bottom .arrow::before { + top: 0; + border-bottom-color: rgba(0, 0, 0, .25) +} + +.bs-popover-auto[x-placement^=bottom] .arrow::after, +.bs-popover-bottom .arrow::after { + top: 1px; + border-bottom-color: #fff +} + +.bs-popover-auto[x-placement^=bottom] .popover-header::before, +.bs-popover-bottom .popover-header::before { + position: absolute; + top: 0; + right: 50%; + display: block; + width: 1rem; + margin-right: -.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7 +} + +.bs-popover-auto[x-placement^=left], +.bs-popover-left { + margin-right: .5rem +} + +.bs-popover-auto[x-placement^=left] .arrow, +.bs-popover-left .arrow { + right: calc((.5rem + 1px) * -1); + width: .5rem; + height: 1rem; + margin: .3rem 0 +} + +.bs-popover-auto[x-placement^=left] .arrow::after, +.bs-popover-auto[x-placement^=left] .arrow::before, +.bs-popover-left .arrow::after, +.bs-popover-left .arrow::before { + border-width: .5rem 0 .5rem .5rem +} + +.bs-popover-auto[x-placement^=left] .arrow::before, +.bs-popover-left .arrow::before { + right: 0; + border-left-color: rgba(0, 0, 0, .25) +} + +.bs-popover-auto[x-placement^=left] .arrow::after, +.bs-popover-left .arrow::after { + right: 1px; + border-left-color: #fff +} + +.popover-header { + padding: .5rem .75rem; + margin-bottom: 0; + font-size: 1rem; + color: inherit; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-right-radius: calc(.3rem - 1px); + border-top-left-radius: calc(.3rem - 1px) +} + +.popover-header:empty { + display: none +} + +.popover-body { + padding: .5rem .75rem; + color: #212529 +} + +.carousel { + position: relative +} + +.carousel.pointer-event { + -ms-touch-action: pan-y; + touch-action: pan-y +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden +} + +.carousel-inner::after { + display: block; + clear: both; + content: "" +} + +.carousel-item { + position: relative; + display: none; + float: right; + width: 100%; + margin-left: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + transition: -webkit-transform .6s ease-in-out; + transition: transform .6s ease-in-out; + transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out +} + +@media screen and (prefers-reduced-motion:reduce) { + .carousel-item { + transition: none + } +} + +.carousel-item-next, +.carousel-item-prev, +.carousel-item.active { + display: block +} + +.active.carousel-item-right, +.carousel-item-next:not(.carousel-item-left) { + -webkit-transform: translateX(-100%); + transform: translateX(-100%) +} + +.active.carousel-item-left, +.carousel-item-prev:not(.carousel-item-right) { + -webkit-transform: translateX(100%); + transform: translateX(100%) +} + +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + -webkit-transform: none; + transform: none +} + +.carousel-fade .carousel-item-next.carousel-item-left, +.carousel-fade .carousel-item-prev.carousel-item-right, +.carousel-fade .carousel-item.active { + z-index: 1; + opacity: 1 +} + +.carousel-fade .active.carousel-item-left, +.carousel-fade .active.carousel-item-right { + z-index: 0; + opacity: 0; + transition: 0s .6s opacity +} + +@media screen and (prefers-reduced-motion:reduce) { + + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + transition: none + } +} + +.carousel-control-next, +.carousel-control-prev { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: .5; + transition: opacity .15s ease +} + +@media screen and (prefers-reduced-motion:reduce) { + + .carousel-control-next, + .carousel-control-prev { + transition: none + } +} + +.carousel-control-next:focus, +.carousel-control-next:hover, +.carousel-control-prev:focus, +.carousel-control-prev:hover { + color: #fff; + text-decoration: none; + outline: 0; + opacity: .9 +} + +.carousel-control-prev { + right: 0 +} + +.carousel-control-next { + left: 0 +} + +.carousel-control-next-icon, +.carousel-control-prev-icon { + display: inline-block; + width: 20px; + height: 20px; + background: transparent no-repeat center center; + background-size: 100% 100% +} + +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e") +} + +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e") +} + +.carousel-indicators { + position: absolute; + left: 0; + bottom: 0; + right: 0; + z-index: 15; + display: -ms-flexbox; + display: flex; + -ms-flex-pack: center; + justify-content: center; + padding-right: 0; + margin-left: 15%; + margin-right: 15%; + list-style: none +} + +.carousel-indicators li { + box-sizing: content-box; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-left: 3px; + margin-right: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + transition: opacity .6s ease +} + +@media screen and (prefers-reduced-motion:reduce) { + .carousel-indicators li { + transition: none + } +} + +.carousel-indicators .active { + opacity: 1 +} + +.carousel-caption { + position: absolute; + left: 15%; + bottom: 20px; + right: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center +} + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg) + } +} + +@keyframes spinner-border { + to { + -webkit-transform: rotate(-360deg); + transform: rotate(-360deg) + } +} + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: .25em solid currentColor; + border-left-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border .75s linear infinite; + animation: spinner-border .75s linear infinite +} + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: .2em +} + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0) + } + + 50% { + opacity: 1 + } +} + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0) + } + + 50% { + opacity: 1 + } +} + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow .75s linear infinite; + animation: spinner-grow .75s linear infinite +} + +.spinner-grow-sm { + width: 1rem; + height: 1rem +} + +.align-baseline { + vertical-align: baseline !important +} + +.align-top { + vertical-align: top !important +} + +.align-middle { + vertical-align: middle !important +} + +.align-bottom { + vertical-align: bottom !important +} + +.align-text-bottom { + vertical-align: text-bottom !important +} + +.align-text-top { + vertical-align: text-top !important +} + +.bg-primary { + background-color: #007bff !important +} + +a.bg-primary:focus, +a.bg-primary:hover, +button.bg-primary:focus, +button.bg-primary:hover { + background-color: #0062cc !important +} + +.bg-secondary { + background-color: #6c757d !important +} + +a.bg-secondary:focus, +a.bg-secondary:hover, +button.bg-secondary:focus, +button.bg-secondary:hover { + background-color: #545b62 !important +} + +.bg-success { + background-color: #28a745 !important +} + +a.bg-success:focus, +a.bg-success:hover, +button.bg-success:focus, +button.bg-success:hover { + background-color: #1e7e34 !important +} + +.bg-info { + background-color: #17a2b8 !important +} + +a.bg-info:focus, +a.bg-info:hover, +button.bg-info:focus, +button.bg-info:hover { + background-color: #117a8b !important +} + +.bg-warning { + background-color: #ffc107 !important +} + +a.bg-warning:focus, +a.bg-warning:hover, +button.bg-warning:focus, +button.bg-warning:hover { + background-color: #d39e00 !important +} + +.bg-danger { + background-color: #dc3545 !important +} + +a.bg-danger:focus, +a.bg-danger:hover, +button.bg-danger:focus, +button.bg-danger:hover { + background-color: #bd2130 !important +} + +.bg-light { + background-color: #f8f9fa !important +} + +a.bg-light:focus, +a.bg-light:hover, +button.bg-light:focus, +button.bg-light:hover { + background-color: #dae0e5 !important +} + +.bg-dark { + background-color: #343a40 !important +} + +a.bg-dark:focus, +a.bg-dark:hover, +button.bg-dark:focus, +button.bg-dark:hover { + background-color: #1d2124 !important +} + +.bg-white { + background-color: #fff !important +} + +.bg-transparent { + background-color: transparent !important +} + +.border { + border: 1px solid #dee2e6 !important +} + +.border-top { + border-top: 1px solid #dee2e6 !important +} + +.border-right { + border-left: 1px solid #dee2e6 !important +} + +.border-bottom { + border-bottom: 1px solid #dee2e6 !important +} + +.border-left { + border-right: 1px solid #dee2e6 !important +} + +.border-0 { + border: 0 !important +} + +.border-top-0 { + border-top: 0 !important +} + +.border-right-0 { + border-left: 0 !important +} + +.border-bottom-0 { + border-bottom: 0 !important +} + +.border-left-0 { + border-right: 0 !important +} + +.border-primary { + border-color: #007bff !important +} + +.border-secondary { + border-color: #6c757d !important +} + +.border-success { + border-color: #28a745 !important +} + +.border-info { + border-color: #17a2b8 !important +} + +.border-warning { + border-color: #ffc107 !important +} + +.border-danger { + border-color: #dc3545 !important +} + +.border-light { + border-color: #f8f9fa !important +} + +.border-dark { + border-color: #343a40 !important +} + +.border-white { + border-color: #fff !important +} + +.rounded { + border-radius: .25rem !important +} + +.rounded-top { + border-top-right-radius: .25rem !important; + border-top-left-radius: .25rem !important +} + +.rounded-right { + border-top-left-radius: .25rem !important; + border-bottom-left-radius: .25rem !important +} + +.rounded-bottom { + border-bottom-left-radius: .25rem !important; + border-bottom-right-radius: .25rem !important +} + +.rounded-left { + border-top-right-radius: .25rem !important; + border-bottom-right-radius: .25rem !important +} + +.rounded-circle { + border-radius: 50% !important +} + +.rounded-pill { + border-radius: 50rem !important +} + +.rounded-0 { + border-radius: 0 !important +} + +.clearfix::after { + display: block; + clear: both; + content: "" +} + +.d-none { + display: none !important +} + +.d-inline { + display: inline !important +} + +.d-inline-block { + display: inline-block !important +} + +.d-block { + display: block !important +} + +.d-table { + display: table !important +} + +.d-table-row { + display: table-row !important +} + +.d-table-cell { + display: table-cell !important +} + +.d-flex { + display: -ms-flexbox !important; + display: flex !important +} + +.d-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important +} + +@media (min-width:576px) { + .d-sm-none { + display: none !important + } + + .d-sm-inline { + display: inline !important + } + + .d-sm-inline-block { + display: inline-block !important + } + + .d-sm-block { + display: block !important + } + + .d-sm-table { + display: table !important + } + + .d-sm-table-row { + display: table-row !important + } + + .d-sm-table-cell { + display: table-cell !important + } + + .d-sm-flex { + display: -ms-flexbox !important; + display: flex !important + } + + .d-sm-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important + } +} + +@media (min-width:768px) { + .d-md-none { + display: none !important + } + + .d-md-inline { + display: inline !important + } + + .d-md-inline-block { + display: inline-block !important + } + + .d-md-block { + display: block !important + } + + .d-md-table { + display: table !important + } + + .d-md-table-row { + display: table-row !important + } + + .d-md-table-cell { + display: table-cell !important + } + + .d-md-flex { + display: -ms-flexbox !important; + display: flex !important + } + + .d-md-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important + } +} + +@media (min-width:992px) { + .d-lg-none { + display: none !important + } + + .d-lg-inline { + display: inline !important + } + + .d-lg-inline-block { + display: inline-block !important + } + + .d-lg-block { + display: block !important + } + + .d-lg-table { + display: table !important + } + + .d-lg-table-row { + display: table-row !important + } + + .d-lg-table-cell { + display: table-cell !important + } + + .d-lg-flex { + display: -ms-flexbox !important; + display: flex !important + } + + .d-lg-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important + } +} + +@media (min-width:1200px) { + .d-xl-none { + display: none !important + } + + .d-xl-inline { + display: inline !important + } + + .d-xl-inline-block { + display: inline-block !important + } + + .d-xl-block { + display: block !important + } + + .d-xl-table { + display: table !important + } + + .d-xl-table-row { + display: table-row !important + } + + .d-xl-table-cell { + display: table-cell !important + } + + .d-xl-flex { + display: -ms-flexbox !important; + display: flex !important + } + + .d-xl-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important + } +} + +@media print { + .d-print-none { + display: none !important + } + + .d-print-inline { + display: inline !important + } + + .d-print-inline-block { + display: inline-block !important + } + + .d-print-block { + display: block !important + } + + .d-print-table { + display: table !important + } + + .d-print-table-row { + display: table-row !important + } + + .d-print-table-cell { + display: table-cell !important + } + + .d-print-flex { + display: -ms-flexbox !important; + display: flex !important + } + + .d-print-inline-flex { + display: -ms-inline-flexbox !important; + display: inline-flex !important + } +} + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden +} + +.embed-responsive::before { + display: block; + content: "" +} + +.embed-responsive .embed-responsive-item, +.embed-responsive embed, +.embed-responsive iframe, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + right: 0; + width: 100%; + height: 100%; + border: 0 +} + +.embed-responsive-21by9::before { + padding-top: 42.857143% +} + +.embed-responsive-16by9::before { + padding-top: 56.25% +} + +.embed-responsive-3by4::before { + padding-top: 133.333333% +} + +.embed-responsive-1by1::before { + padding-top: 100% +} + +.flex-row { + -ms-flex-direction: row !important; + flex-direction: row !important +} + +.flex-column { + -ms-flex-direction: column !important; + flex-direction: column !important +} + +.flex-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important +} + +.flex-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important +} + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important +} + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important +} + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important +} + +.flex-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important +} + +.flex-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important +} + +.flex-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important +} + +.flex-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important +} + +.flex-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important +} + +.justify-content-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important +} + +.justify-content-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important +} + +.justify-content-center { + -ms-flex-pack: center !important; + justify-content: center !important +} + +.justify-content-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important +} + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important +} + +.align-items-start { + -ms-flex-align: start !important; + align-items: flex-start !important +} + +.align-items-end { + -ms-flex-align: end !important; + align-items: flex-end !important +} + +.align-items-center { + -ms-flex-align: center !important; + align-items: center !important +} + +.align-items-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important +} + +.align-items-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important +} + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important +} + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important +} + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important +} + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important +} + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important +} + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important +} + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important +} + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important +} + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important +} + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important +} + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important +} + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important +} + +@media (min-width:576px) { + .flex-sm-row { + -ms-flex-direction: row !important; + flex-direction: row !important + } + + .flex-sm-column { + -ms-flex-direction: column !important; + flex-direction: column !important + } + + .flex-sm-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important + } + + .flex-sm-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important + } + + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important + } + + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important + } + + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important + } + + .flex-sm-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important + } + + .flex-sm-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important + } + + .flex-sm-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important + } + + .flex-sm-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important + } + + .flex-sm-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important + } + + .justify-content-sm-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important + } + + .justify-content-sm-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important + } + + .justify-content-sm-center { + -ms-flex-pack: center !important; + justify-content: center !important + } + + .justify-content-sm-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important + } + + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important + } + + .align-items-sm-start { + -ms-flex-align: start !important; + align-items: flex-start !important + } + + .align-items-sm-end { + -ms-flex-align: end !important; + align-items: flex-end !important + } + + .align-items-sm-center { + -ms-flex-align: center !important; + align-items: center !important + } + + .align-items-sm-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important + } + + .align-items-sm-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important + } + + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important + } + + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important + } + + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important + } + + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important + } + + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important + } + + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important + } + + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important + } + + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important + } + + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important + } + + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important + } + + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important + } + + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important + } +} + +@media (min-width:768px) { + .flex-md-row { + -ms-flex-direction: row !important; + flex-direction: row !important + } + + .flex-md-column { + -ms-flex-direction: column !important; + flex-direction: column !important + } + + .flex-md-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important + } + + .flex-md-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important + } + + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important + } + + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important + } + + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important + } + + .flex-md-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important + } + + .flex-md-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important + } + + .flex-md-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important + } + + .flex-md-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important + } + + .flex-md-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important + } + + .justify-content-md-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important + } + + .justify-content-md-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important + } + + .justify-content-md-center { + -ms-flex-pack: center !important; + justify-content: center !important + } + + .justify-content-md-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important + } + + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important + } + + .align-items-md-start { + -ms-flex-align: start !important; + align-items: flex-start !important + } + + .align-items-md-end { + -ms-flex-align: end !important; + align-items: flex-end !important + } + + .align-items-md-center { + -ms-flex-align: center !important; + align-items: center !important + } + + .align-items-md-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important + } + + .align-items-md-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important + } + + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important + } + + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important + } + + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important + } + + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important + } + + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important + } + + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important + } + + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important + } + + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important + } + + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important + } + + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important + } + + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important + } + + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important + } +} + +@media (min-width:992px) { + .flex-lg-row { + -ms-flex-direction: row !important; + flex-direction: row !important + } + + .flex-lg-column { + -ms-flex-direction: column !important; + flex-direction: column !important + } + + .flex-lg-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important + } + + .flex-lg-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important + } + + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important + } + + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important + } + + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important + } + + .flex-lg-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important + } + + .flex-lg-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important + } + + .flex-lg-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important + } + + .flex-lg-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important + } + + .flex-lg-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important + } + + .justify-content-lg-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important + } + + .justify-content-lg-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important + } + + .justify-content-lg-center { + -ms-flex-pack: center !important; + justify-content: center !important + } + + .justify-content-lg-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important + } + + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important + } + + .align-items-lg-start { + -ms-flex-align: start !important; + align-items: flex-start !important + } + + .align-items-lg-end { + -ms-flex-align: end !important; + align-items: flex-end !important + } + + .align-items-lg-center { + -ms-flex-align: center !important; + align-items: center !important + } + + .align-items-lg-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important + } + + .align-items-lg-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important + } + + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important + } + + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important + } + + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important + } + + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important + } + + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important + } + + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important + } + + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important + } + + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important + } + + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important + } + + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important + } + + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important + } + + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important + } +} + +@media (min-width:1200px) { + .flex-xl-row { + -ms-flex-direction: row !important; + flex-direction: row !important + } + + .flex-xl-column { + -ms-flex-direction: column !important; + flex-direction: column !important + } + + .flex-xl-row-reverse { + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important + } + + .flex-xl-column-reverse { + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important + } + + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important + } + + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important + } + + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important + } + + .flex-xl-fill { + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important + } + + .flex-xl-grow-0 { + -ms-flex-positive: 0 !important; + flex-grow: 0 !important + } + + .flex-xl-grow-1 { + -ms-flex-positive: 1 !important; + flex-grow: 1 !important + } + + .flex-xl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important + } + + .flex-xl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important + } + + .justify-content-xl-start { + -ms-flex-pack: start !important; + justify-content: flex-start !important + } + + .justify-content-xl-end { + -ms-flex-pack: end !important; + justify-content: flex-end !important + } + + .justify-content-xl-center { + -ms-flex-pack: center !important; + justify-content: center !important + } + + .justify-content-xl-between { + -ms-flex-pack: justify !important; + justify-content: space-between !important + } + + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important + } + + .align-items-xl-start { + -ms-flex-align: start !important; + align-items: flex-start !important + } + + .align-items-xl-end { + -ms-flex-align: end !important; + align-items: flex-end !important + } + + .align-items-xl-center { + -ms-flex-align: center !important; + align-items: center !important + } + + .align-items-xl-baseline { + -ms-flex-align: baseline !important; + align-items: baseline !important + } + + .align-items-xl-stretch { + -ms-flex-align: stretch !important; + align-items: stretch !important + } + + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important + } + + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important + } + + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important + } + + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important + } + + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important + } + + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important + } + + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important + } + + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important + } + + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important + } + + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important + } + + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important + } + + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important + } +} + +.float-left { + float: right !important +} + +.float-right { + float: left !important +} + +.float-right-lapieza { + float: left !important +} + + +.float-none { + float: none !important +} + +@media (min-width:576px) { + .float-sm-left { + float: right !important + } + + .float-sm-right { + float: left !important + } + + .float-sm-none { + float: none !important + } +} + +@media (min-width:768px) { + .float-md-left { + float: right !important + } + + .float-md-right { + float: left !important + } + + .float-md-none { + float: none !important + } +} + +@media (min-width:992px) { + .float-lg-left { + float: right !important + } + + .float-lg-right { + float: left !important + } + + .float-lg-none { + float: none !important + } +} + +@media (min-width:1200px) { + .float-xl-left { + float: right !important + } + + .float-xl-right { + float: left !important + } + + .float-xl-none { + float: none !important + } +} + +.overflow-auto { + overflow: auto !important +} + +.overflow-hidden { + overflow: hidden !important +} + +.position-static { + position: static !important +} + +.position-relative { + position: relative !important +} + +.position-absolute { + position: absolute !important +} + +.position-fixed { + position: fixed !important +} + +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important +} + +.fixed-top { + position: fixed; + top: 0; + left: 0; + right: 0; + z-index: 1030 +} + +.fixed-bottom { + position: fixed; + left: 0; + bottom: 0; + right: 0; + z-index: 1030 +} + +@supports ((position:-webkit-sticky) or (position:sticky)) { + .sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020 + } +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0 +} + +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal +} + +.shadow-sm { + box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important +} + +.shadow { + box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important +} + +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important +} + +.shadow-none { + box-shadow: none !important +} + +.w-25 { + width: 25% !important +} + +.w-50 { + width: 50% !important +} + +.w-75 { + width: 75% !important +} + +.w-100 { + width: 100% !important +} + +.w-auto { + width: auto !important +} + +.h-25 { + height: 25% !important +} + +.h-50 { + height: 50% !important +} + +.h-75 { + height: 75% !important +} + +.h-100 { + height: 100% !important +} + +.h-auto { + height: auto !important +} + +.mw-100 { + max-width: 100% !important +} + +.mh-100 { + max-height: 100% !important +} + +.min-vw-100 { + min-width: 100vw !important +} + +.min-vh-100 { + min-height: 100vh !important +} + +.vw-100 { + width: 100vw !important +} + +.vh-100 { + height: 100vh !important +} + +.m-0 { + margin: 0 !important +} + +.mt-0, +.my-0 { + margin-top: 0 !important +} + +.mr-0, +.mx-0 { + margin-left: 0 !important +} + +.mb-0, +.my-0 { + margin-bottom: 0 !important +} + +.ml-0, +.mx-0 { + margin-right: 0 !important +} + +.m-1 { + margin: .25rem !important +} + +.mt-1, +.my-1 { + margin-top: .25rem !important +} + +.mr-1, +.mx-1 { + margin-left: .25rem !important +} + +.mb-1, +.my-1 { + margin-bottom: .25rem !important +} + +.ml-1, +.mx-1 { + margin-right: .25rem !important +} + +.m-2 { + margin: .5rem !important +} + +.mt-2, +.my-2 { + margin-top: .5rem !important +} + +.mr-2, +.mx-2 { + margin-left: .5rem !important +} + +.mb-2, +.my-2 { + margin-bottom: .5rem !important +} + +.ml-2, +.mx-2 { + margin-right: .5rem !important +} + +.m-3 { + margin: 1rem !important +} + +.mt-3, +.my-3 { + margin-top: 1rem !important +} + +.mr-3, +.mx-3 { + margin-left: 1rem !important +} + +.mb-3, +.my-3 { + margin-bottom: 1rem !important +} + +.ml-3, +.mx-3 { + margin-right: 1rem !important +} + +.m-4 { + margin: 1.5rem !important +} + +.mt-4, +.my-4 { + margin-top: 1.5rem !important +} + +.mr-4, +.mx-4 { + margin-left: 1.5rem !important +} + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important +} + +.ml-4, +.mx-4 { + margin-right: 1.5rem !important +} + +.m-5 { + margin: 3rem !important +} + +.mt-5, +.my-5 { + margin-top: 3rem !important +} + +.mr-5, +.mx-5 { + margin-left: 3rem !important +} + +.mb-5, +.my-5 { + margin-bottom: 3rem !important +} + +.ml-5, +.mx-5 { + margin-right: 3rem !important +} + +.p-0 { + padding: 0 !important +} + +.pt-0, +.py-0 { + padding-top: 0 !important +} + +.pr-0, +.px-0 { + padding-left: 0 !important +} + +.pb-0, +.py-0 { + padding-bottom: 0 !important +} + +.pl-0, +.px-0 { + padding-right: 0 !important +} + +.p-1 { + padding: .25rem !important +} + +.pt-1, +.py-1 { + padding-top: .25rem !important +} + +.pr-1, +.px-1 { + padding-left: .25rem !important +} + +.pb-1, +.py-1 { + padding-bottom: .25rem !important +} + +.pl-1, +.px-1 { + padding-right: .25rem !important +} + +.p-2 { + padding: .5rem !important +} + +.pt-2, +.py-2 { + padding-top: .5rem !important +} + +.pr-2, +.px-2 { + padding-left: .5rem !important +} + +.pb-2, +.py-2 { + padding-bottom: .5rem !important +} + +.pl-2, +.px-2 { + padding-right: .5rem !important +} + +.p-3 { + padding: 1rem !important +} + +.pt-3, +.py-3 { + padding-top: 1rem !important +} + +.pr-3, +.px-3 { + padding-left: 1rem !important +} + +.pb-3, +.py-3 { + padding-bottom: 1rem !important +} + +.pl-3, +.px-3 { + padding-right: 1rem !important +} + +.p-4 { + padding: 1.5rem !important +} + +.pt-4, +.py-4 { + padding-top: 1.5rem !important +} + +.pr-4, +.px-4 { + padding-left: 1.5rem !important +} + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important +} + +.pl-4, +.px-4 { + padding-right: 1.5rem !important +} + +.p-5 { + padding: 3rem !important +} + +.pt-5, +.py-5 { + padding-top: 3rem !important +} + +.pr-5, +.px-5 { + padding-left: 3rem !important +} + +.pb-5, +.py-5 { + padding-bottom: 3rem !important +} + +.pl-5, +.px-5 { + padding-right: 3rem !important +} + +.m-n1 { + margin: -.25rem !important +} + +.mt-n1, +.my-n1 { + margin-top: -.25rem !important +} + +.mr-n1, +.mx-n1 { + margin-left: -.25rem !important +} + +.mb-n1, +.my-n1 { + margin-bottom: -.25rem !important +} + +.ml-n1, +.mx-n1 { + margin-right: -.25rem !important +} + +.m-n2 { + margin: -.5rem !important +} + +.mt-n2, +.my-n2 { + margin-top: -.5rem !important +} + +.mr-n2, +.mx-n2 { + margin-left: -.5rem !important +} + +.mb-n2, +.my-n2 { + margin-bottom: -.5rem !important +} + +.ml-n2, +.mx-n2 { + margin-right: -.5rem !important +} + +.m-n3 { + margin: -1rem !important +} + +.mt-n3, +.my-n3 { + margin-top: -1rem !important +} + +.mr-n3, +.mx-n3 { + margin-left: -1rem !important +} + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important +} + +.ml-n3, +.mx-n3 { + margin-right: -1rem !important +} + +.m-n4 { + margin: -1.5rem !important +} + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important +} + +.mr-n4, +.mx-n4 { + margin-left: -1.5rem !important +} + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important +} + +.ml-n4, +.mx-n4 { + margin-right: -1.5rem !important +} + +.m-n5 { + margin: -3rem !important +} + +.mt-n5, +.my-n5 { + margin-top: -3rem !important +} + +.mr-n5, +.mx-n5 { + margin-left: -3rem !important +} + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important +} + +.ml-n5, +.mx-n5 { + margin-right: -3rem !important +} + +.m-auto { + margin: auto !important +} + +.mt-auto, +.my-auto { + margin-top: auto !important +} + +.mr-auto, +.mx-auto { + margin-left: auto !important +} + +.mb-auto, +.my-auto { + margin-bottom: auto !important +} + +.ml-auto, +.mx-auto { + margin-right: auto !important +} + +@media (min-width:576px) { + .m-sm-0 { + margin: 0 !important + } + + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important + } + + .mr-sm-0, + .mx-sm-0 { + margin-left: 0 !important + } + + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important + } + + .ml-sm-0, + .mx-sm-0 { + margin-right: 0 !important + } + + .m-sm-1 { + margin: .25rem !important + } + + .mt-sm-1, + .my-sm-1 { + margin-top: .25rem !important + } + + .mr-sm-1, + .mx-sm-1 { + margin-left: .25rem !important + } + + .mb-sm-1, + .my-sm-1 { + margin-bottom: .25rem !important + } + + .ml-sm-1, + .mx-sm-1 { + margin-right: .25rem !important + } + + .m-sm-2 { + margin: .5rem !important + } + + .mt-sm-2, + .my-sm-2 { + margin-top: .5rem !important + } + + .mr-sm-2, + .mx-sm-2 { + margin-left: .5rem !important + } + + .mb-sm-2, + .my-sm-2 { + margin-bottom: .5rem !important + } + + .ml-sm-2, + .mx-sm-2 { + margin-right: .5rem !important + } + + .m-sm-3 { + margin: 1rem !important + } + + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important + } + + .mr-sm-3, + .mx-sm-3 { + margin-left: 1rem !important + } + + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important + } + + .ml-sm-3, + .mx-sm-3 { + margin-right: 1rem !important + } + + .m-sm-4 { + margin: 1.5rem !important + } + + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important + } + + .mr-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important + } + + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important + } + + .ml-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important + } + + .m-sm-5 { + margin: 3rem !important + } + + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important + } + + .mr-sm-5, + .mx-sm-5 { + margin-left: 3rem !important + } + + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important + } + + .ml-sm-5, + .mx-sm-5 { + margin-right: 3rem !important + } + + .p-sm-0 { + padding: 0 !important + } + + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important + } + + .pr-sm-0, + .px-sm-0 { + padding-left: 0 !important + } + + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important + } + + .pl-sm-0, + .px-sm-0 { + padding-right: 0 !important + } + + .p-sm-1 { + padding: .25rem !important + } + + .pt-sm-1, + .py-sm-1 { + padding-top: .25rem !important + } + + .pr-sm-1, + .px-sm-1 { + padding-left: .25rem !important + } + + .pb-sm-1, + .py-sm-1 { + padding-bottom: .25rem !important + } + + .pl-sm-1, + .px-sm-1 { + padding-right: .25rem !important + } + + .p-sm-2 { + padding: .5rem !important + } + + .pt-sm-2, + .py-sm-2 { + padding-top: .5rem !important + } + + .pr-sm-2, + .px-sm-2 { + padding-left: .5rem !important + } + + .pb-sm-2, + .py-sm-2 { + padding-bottom: .5rem !important + } + + .pl-sm-2, + .px-sm-2 { + padding-right: .5rem !important + } + + .p-sm-3 { + padding: 1rem !important + } + + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important + } + + .pr-sm-3, + .px-sm-3 { + padding-left: 1rem !important + } + + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important + } + + .pl-sm-3, + .px-sm-3 { + padding-right: 1rem !important + } + + .p-sm-4 { + padding: 1.5rem !important + } + + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important + } + + .pr-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important + } + + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important + } + + .pl-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important + } + + .p-sm-5 { + padding: 3rem !important + } + + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important + } + + .pr-sm-5, + .px-sm-5 { + padding-left: 3rem !important + } + + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important + } + + .pl-sm-5, + .px-sm-5 { + padding-right: 3rem !important + } + + .m-sm-n1 { + margin: -.25rem !important + } + + .mt-sm-n1, + .my-sm-n1 { + margin-top: -.25rem !important + } + + .mr-sm-n1, + .mx-sm-n1 { + margin-left: -.25rem !important + } + + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -.25rem !important + } + + .ml-sm-n1, + .mx-sm-n1 { + margin-right: -.25rem !important + } + + .m-sm-n2 { + margin: -.5rem !important + } + + .mt-sm-n2, + .my-sm-n2 { + margin-top: -.5rem !important + } + + .mr-sm-n2, + .mx-sm-n2 { + margin-left: -.5rem !important + } + + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -.5rem !important + } + + .ml-sm-n2, + .mx-sm-n2 { + margin-right: -.5rem !important + } + + .m-sm-n3 { + margin: -1rem !important + } + + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important + } + + .mr-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important + } + + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important + } + + .ml-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important + } + + .m-sm-n4 { + margin: -1.5rem !important + } + + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important + } + + .mr-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important + } + + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important + } + + .ml-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important + } + + .m-sm-n5 { + margin: -3rem !important + } + + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important + } + + .mr-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important + } + + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important + } + + .ml-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important + } + + .m-sm-auto { + margin: auto !important + } + + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important + } + + .mr-sm-auto, + .mx-sm-auto { + margin-left: auto !important + } + + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important + } + + .ml-sm-auto, + .mx-sm-auto { + margin-right: auto !important + } +} + +@media (min-width:768px) { + .m-md-0 { + margin: 0 !important + } + + .mt-md-0, + .my-md-0 { + margin-top: 0 !important + } + + .mr-md-0, + .mx-md-0 { + margin-left: 0 !important + } + + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important + } + + .ml-md-0, + .mx-md-0 { + margin-right: 0 !important + } + + .m-md-1 { + margin: .25rem !important + } + + .mt-md-1, + .my-md-1 { + margin-top: .25rem !important + } + + .mr-md-1, + .mx-md-1 { + margin-left: .25rem !important + } + + .mb-md-1, + .my-md-1 { + margin-bottom: .25rem !important + } + + .ml-md-1, + .mx-md-1 { + margin-right: .25rem !important + } + + .m-md-2 { + margin: .5rem !important + } + + .mt-md-2, + .my-md-2 { + margin-top: .5rem !important + } + + .mr-md-2, + .mx-md-2 { + margin-left: .5rem !important + } + + .mb-md-2, + .my-md-2 { + margin-bottom: .5rem !important + } + + .ml-md-2, + .mx-md-2 { + margin-right: .5rem !important + } + + .m-md-3 { + margin: 1rem !important + } + + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important + } + + .mr-md-3, + .mx-md-3 { + margin-left: 1rem !important + } + + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important + } + + .ml-md-3, + .mx-md-3 { + margin-right: 1rem !important + } + + .m-md-4 { + margin: 1.5rem !important + } + + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important + } + + .mr-md-4, + .mx-md-4 { + margin-left: 1.5rem !important + } + + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important + } + + .ml-md-4, + .mx-md-4 { + margin-right: 1.5rem !important + } + + .m-md-5 { + margin: 3rem !important + } + + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important + } + + .mr-md-5, + .mx-md-5 { + margin-left: 3rem !important + } + + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important + } + + .ml-md-5, + .mx-md-5 { + margin-right: 3rem !important + } + + .p-md-0 { + padding: 0 !important + } + + .pt-md-0, + .py-md-0 { + padding-top: 0 !important + } + + .pr-md-0, + .px-md-0 { + padding-left: 0 !important + } + + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important + } + + .pl-md-0, + .px-md-0 { + padding-right: 0 !important + } + + .p-md-1 { + padding: .25rem !important + } + + .pt-md-1, + .py-md-1 { + padding-top: .25rem !important + } + + .pr-md-1, + .px-md-1 { + padding-left: .25rem !important + } + + .pb-md-1, + .py-md-1 { + padding-bottom: .25rem !important + } + + .pl-md-1, + .px-md-1 { + padding-right: .25rem !important + } + + .p-md-2 { + padding: .5rem !important + } + + .pt-md-2, + .py-md-2 { + padding-top: .5rem !important + } + + .pr-md-2, + .px-md-2 { + padding-left: .5rem !important + } + + .pb-md-2, + .py-md-2 { + padding-bottom: .5rem !important + } + + .pl-md-2, + .px-md-2 { + padding-right: .5rem !important + } + + .p-md-3 { + padding: 1rem !important + } + + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important + } + + .pr-md-3, + .px-md-3 { + padding-left: 1rem !important + } + + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important + } + + .pl-md-3, + .px-md-3 { + padding-right: 1rem !important + } + + .p-md-4 { + padding: 1.5rem !important + } + + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important + } + + .pr-md-4, + .px-md-4 { + padding-left: 1.5rem !important + } + + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important + } + + .pl-md-4, + .px-md-4 { + padding-right: 1.5rem !important + } + + .p-md-5 { + padding: 3rem !important + } + + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important + } + + .pr-md-5, + .px-md-5 { + padding-left: 3rem !important + } + + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important + } + + .pl-md-5, + .px-md-5 { + padding-right: 3rem !important + } + + .m-md-n1 { + margin: -.25rem !important + } + + .mt-md-n1, + .my-md-n1 { + margin-top: -.25rem !important + } + + .mr-md-n1, + .mx-md-n1 { + margin-left: -.25rem !important + } + + .mb-md-n1, + .my-md-n1 { + margin-bottom: -.25rem !important + } + + .ml-md-n1, + .mx-md-n1 { + margin-right: -.25rem !important + } + + .m-md-n2 { + margin: -.5rem !important + } + + .mt-md-n2, + .my-md-n2 { + margin-top: -.5rem !important + } + + .mr-md-n2, + .mx-md-n2 { + margin-left: -.5rem !important + } + + .mb-md-n2, + .my-md-n2 { + margin-bottom: -.5rem !important + } + + .ml-md-n2, + .mx-md-n2 { + margin-right: -.5rem !important + } + + .m-md-n3 { + margin: -1rem !important + } + + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important + } + + .mr-md-n3, + .mx-md-n3 { + margin-left: -1rem !important + } + + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important + } + + .ml-md-n3, + .mx-md-n3 { + margin-right: -1rem !important + } + + .m-md-n4 { + margin: -1.5rem !important + } + + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important + } + + .mr-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important + } + + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important + } + + .ml-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important + } + + .m-md-n5 { + margin: -3rem !important + } + + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important + } + + .mr-md-n5, + .mx-md-n5 { + margin-left: -3rem !important + } + + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important + } + + .ml-md-n5, + .mx-md-n5 { + margin-right: -3rem !important + } + + .m-md-auto { + margin: auto !important + } + + .mt-md-auto, + .my-md-auto { + margin-top: auto !important + } + + .mr-md-auto, + .mx-md-auto { + margin-left: auto !important + } + + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important + } + + .ml-md-auto, + .mx-md-auto { + margin-right: auto !important + } +} + +@media (min-width:992px) { + .m-lg-0 { + margin: 0 !important + } + + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important + } + + .mr-lg-0, + .mx-lg-0 { + margin-left: 0 !important + } + + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important + } + + .ml-lg-0, + .mx-lg-0 { + margin-right: 0 !important + } + + .m-lg-1 { + margin: .25rem !important + } + + .mt-lg-1, + .my-lg-1 { + margin-top: .25rem !important + } + + .mr-lg-1, + .mx-lg-1 { + margin-left: .25rem !important + } + + .mb-lg-1, + .my-lg-1 { + margin-bottom: .25rem !important + } + + .ml-lg-1, + .mx-lg-1 { + margin-right: .25rem !important + } + + .m-lg-2 { + margin: .5rem !important + } + + .mt-lg-2, + .my-lg-2 { + margin-top: .5rem !important + } + + .mr-lg-2, + .mx-lg-2 { + margin-left: .5rem !important + } + + .mb-lg-2, + .my-lg-2 { + margin-bottom: .5rem !important + } + + .ml-lg-2, + .mx-lg-2 { + margin-right: .5rem !important + } + + .m-lg-3 { + margin: 1rem !important + } + + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important + } + + .mr-lg-3, + .mx-lg-3 { + margin-left: 1rem !important + } + + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important + } + + .ml-lg-3, + .mx-lg-3 { + margin-right: 1rem !important + } + + .m-lg-4 { + margin: 1.5rem !important + } + + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important + } + + .mr-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important + } + + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important + } + + .ml-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important + } + + .m-lg-5 { + margin: 3rem !important + } + + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important + } + + .mr-lg-5, + .mx-lg-5 { + margin-left: 3rem !important + } + + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important + } + + .ml-lg-5, + .mx-lg-5 { + margin-right: 3rem !important + } + + .p-lg-0 { + padding: 0 !important + } + + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important + } + + .pr-lg-0, + .px-lg-0 { + padding-left: 0 !important + } + + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important + } + + .pl-lg-0, + .px-lg-0 { + padding-right: 0 !important + } + + .p-lg-1 { + padding: .25rem !important + } + + .pt-lg-1, + .py-lg-1 { + padding-top: .25rem !important + } + + .pr-lg-1, + .px-lg-1 { + padding-left: .25rem !important + } + + .pb-lg-1, + .py-lg-1 { + padding-bottom: .25rem !important + } + + .pl-lg-1, + .px-lg-1 { + padding-right: .25rem !important + } + + .p-lg-2 { + padding: .5rem !important + } + + .pt-lg-2, + .py-lg-2 { + padding-top: .5rem !important + } + + .pr-lg-2, + .px-lg-2 { + padding-left: .5rem !important + } + + .pb-lg-2, + .py-lg-2 { + padding-bottom: .5rem !important + } + + .pl-lg-2, + .px-lg-2 { + padding-right: .5rem !important + } + + .p-lg-3 { + padding: 1rem !important + } + + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important + } + + .pr-lg-3, + .px-lg-3 { + padding-left: 1rem !important + } + + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important + } + + .pl-lg-3, + .px-lg-3 { + padding-right: 1rem !important + } + + .p-lg-4 { + padding: 1.5rem !important + } + + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important + } + + .pr-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important + } + + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important + } + + .pl-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important + } + + .p-lg-5 { + padding: 3rem !important + } + + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important + } + + .pr-lg-5, + .px-lg-5 { + padding-left: 3rem !important + } + + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important + } + + .pl-lg-5, + .px-lg-5 { + padding-right: 3rem !important + } + + .m-lg-n1 { + margin: -.25rem !important + } + + .mt-lg-n1, + .my-lg-n1 { + margin-top: -.25rem !important + } + + .mr-lg-n1, + .mx-lg-n1 { + margin-left: -.25rem !important + } + + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -.25rem !important + } + + .ml-lg-n1, + .mx-lg-n1 { + margin-right: -.25rem !important + } + + .m-lg-n2 { + margin: -.5rem !important + } + + .mt-lg-n2, + .my-lg-n2 { + margin-top: -.5rem !important + } + + .mr-lg-n2, + .mx-lg-n2 { + margin-left: -.5rem !important + } + + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -.5rem !important + } + + .ml-lg-n2, + .mx-lg-n2 { + margin-right: -.5rem !important + } + + .m-lg-n3 { + margin: -1rem !important + } + + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important + } + + .mr-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important + } + + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important + } + + .ml-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important + } + + .m-lg-n4 { + margin: -1.5rem !important + } + + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important + } + + .mr-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important + } + + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important + } + + .ml-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important + } + + .m-lg-n5 { + margin: -3rem !important + } + + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important + } + + .mr-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important + } + + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important + } + + .ml-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important + } + + .m-lg-auto { + margin: auto !important + } + + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important + } + + .mr-lg-auto, + .mx-lg-auto { + margin-left: auto !important + } + + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important + } + + .ml-lg-auto, + .mx-lg-auto { + margin-right: auto !important + } +} + +@media (min-width:1200px) { + .m-xl-0 { + margin: 0 !important + } + + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important + } + + .mr-xl-0, + .mx-xl-0 { + margin-left: 0 !important + } + + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important + } + + .ml-xl-0, + .mx-xl-0 { + margin-right: 0 !important + } + + .m-xl-1 { + margin: .25rem !important + } + + .mt-xl-1, + .my-xl-1 { + margin-top: .25rem !important + } + + .mr-xl-1, + .mx-xl-1 { + margin-left: .25rem !important + } + + .mb-xl-1, + .my-xl-1 { + margin-bottom: .25rem !important + } + + .ml-xl-1, + .mx-xl-1 { + margin-right: .25rem !important + } + + .m-xl-2 { + margin: .5rem !important + } + + .mt-xl-2, + .my-xl-2 { + margin-top: .5rem !important + } + + .mr-xl-2, + .mx-xl-2 { + margin-left: .5rem !important + } + + .mb-xl-2, + .my-xl-2 { + margin-bottom: .5rem !important + } + + .ml-xl-2, + .mx-xl-2 { + margin-right: .5rem !important + } + + .m-xl-3 { + margin: 1rem !important + } + + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important + } + + .mr-xl-3, + .mx-xl-3 { + margin-left: 1rem !important + } + + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important + } + + .ml-xl-3, + .mx-xl-3 { + margin-right: 1rem !important + } + + .m-xl-4 { + margin: 1.5rem !important + } + + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important + } + + .mr-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important + } + + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important + } + + .ml-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important + } + + .m-xl-5 { + margin: 3rem !important + } + + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important + } + + .mr-xl-5, + .mx-xl-5 { + margin-left: 3rem !important + } + + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important + } + + .ml-xl-5, + .mx-xl-5 { + margin-right: 3rem !important + } + + .p-xl-0 { + padding: 0 !important + } + + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important + } + + .pr-xl-0, + .px-xl-0 { + padding-left: 0 !important + } + + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important + } + + .pl-xl-0, + .px-xl-0 { + padding-right: 0 !important + } + + .p-xl-1 { + padding: .25rem !important + } + + .pt-xl-1, + .py-xl-1 { + padding-top: .25rem !important + } + + .pr-xl-1, + .px-xl-1 { + padding-left: .25rem !important + } + + .pb-xl-1, + .py-xl-1 { + padding-bottom: .25rem !important + } + + .pl-xl-1, + .px-xl-1 { + padding-right: .25rem !important + } + + .p-xl-2 { + padding: .5rem !important + } + + .pt-xl-2, + .py-xl-2 { + padding-top: .5rem !important + } + + .pr-xl-2, + .px-xl-2 { + padding-left: .5rem !important + } + + .pb-xl-2, + .py-xl-2 { + padding-bottom: .5rem !important + } + + .pl-xl-2, + .px-xl-2 { + padding-right: .5rem !important + } + + .p-xl-3 { + padding: 1rem !important + } + + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important + } + + .pr-xl-3, + .px-xl-3 { + padding-left: 1rem !important + } + + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important + } + + .pl-xl-3, + .px-xl-3 { + padding-right: 1rem !important + } + + .p-xl-4 { + padding: 1.5rem !important + } + + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important + } + + .pr-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important + } + + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important + } + + .pl-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important + } + + .p-xl-5 { + padding: 3rem !important + } + + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important + } + + .pr-xl-5, + .px-xl-5 { + padding-left: 3rem !important + } + + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important + } + + .pl-xl-5, + .px-xl-5 { + padding-right: 3rem !important + } + + .m-xl-n1 { + margin: -.25rem !important + } + + .mt-xl-n1, + .my-xl-n1 { + margin-top: -.25rem !important + } + + .mr-xl-n1, + .mx-xl-n1 { + margin-left: -.25rem !important + } + + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -.25rem !important + } + + .ml-xl-n1, + .mx-xl-n1 { + margin-right: -.25rem !important + } + + .m-xl-n2 { + margin: -.5rem !important + } + + .mt-xl-n2, + .my-xl-n2 { + margin-top: -.5rem !important + } + + .mr-xl-n2, + .mx-xl-n2 { + margin-left: -.5rem !important + } + + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -.5rem !important + } + + .ml-xl-n2, + .mx-xl-n2 { + margin-right: -.5rem !important + } + + .m-xl-n3 { + margin: -1rem !important + } + + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important + } + + .mr-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important + } + + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important + } + + .ml-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important + } + + .m-xl-n4 { + margin: -1.5rem !important + } + + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important + } + + .mr-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important + } + + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important + } + + .ml-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important + } + + .m-xl-n5 { + margin: -3rem !important + } + + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important + } + + .mr-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important + } + + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important + } + + .ml-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important + } + + .m-xl-auto { + margin: auto !important + } + + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important + } + + .mr-xl-auto, + .mx-xl-auto { + margin-left: auto !important + } + + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important + } + + .ml-xl-auto, + .mx-xl-auto { + margin-right: auto !important + } +} + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace +} + +.text-justify { + text-align: justify !important +} + +.text-wrap { + white-space: normal !important +} + +.text-nowrap { + white-space: nowrap !important +} + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap +} + +.text-left { + text-align: right !important +} + +.text-right { + text-align: left !important +} + +.text-center { + text-align: center !important +} + +@media (min-width:576px) { + .text-sm-left { + text-align: right !important + } + + .text-sm-right { + text-align: left !important + } + + .text-sm-center { + text-align: center !important + } +} + +@media (min-width:768px) { + .text-md-left { + text-align: right !important + } + + .text-md-right { + text-align: left !important + } + + .text-md-center { + text-align: center !important + } +} + +@media (min-width:992px) { + .text-lg-left { + text-align: right !important + } + + .text-lg-right { + text-align: left !important + } + + .text-lg-center { + text-align: center !important + } +} + +@media (min-width:1200px) { + .text-xl-left { + text-align: right !important + } + + .text-xl-right { + text-align: left !important + } + + .text-xl-center { + text-align: center !important + } +} + +.text-lowercase { + text-transform: lowercase !important +} + +.text-uppercase { + text-transform: uppercase !important +} + +.text-capitalize { + text-transform: capitalize !important +} + +.font-weight-light { + font-weight: 300 !important +} + +.font-weight-lighter { + font-weight: lighter !important +} + +.font-weight-normal { + font-weight: 400 !important +} + +.font-weight-bold { + font-weight: 700 !important +} + +.font-weight-bolder { + font-weight: bolder !important +} + +.font-italic { + font-style: italic !important +} + +.text-white { + color: #fff !important +} + +.text-primary { + color: #007bff !important +} + +a.text-primary:focus, +a.text-primary:hover { + color: #0056b3 !important +} + +.text-secondary { + color: #6c757d !important +} + +a.text-secondary:focus, +a.text-secondary:hover { + color: #494f54 !important +} + +.text-success { + color: #28a745 !important +} + +a.text-success:focus, +a.text-success:hover { + color: #19692c !important +} + +.text-info { + color: #17a2b8 !important +} + +a.text-info:focus, +a.text-info:hover { + color: #0f6674 !important +} + +.text-warning { + color: #ffc107 !important +} + +a.text-warning:focus, +a.text-warning:hover { + color: #ba8b00 !important +} + +.text-danger { + color: #dc3545 !important +} + +a.text-danger:focus, +a.text-danger:hover { + color: #a71d2a !important +} + +.text-light { + color: #f8f9fa !important +} + +a.text-light:focus, +a.text-light:hover { + color: #cbd3da !important +} + +.text-dark { + color: #343a40 !important +} + +a.text-dark:focus, +a.text-dark:hover { + color: #121416 !important +} + +.text-body { + color: #212529 !important +} + +.text-muted { + color: #6c757d !important +} + +.text-black-50 { + color: rgba(0, 0, 0, .5) !important +} + +.text-white-50 { + color: rgba(255, 255, 255, .5) !important +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0 +} + +.text-decoration-none { + text-decoration: none !important +} + +.text-reset { + color: inherit !important +} + +.visible { + visibility: visible !important +} + +.invisible { + visibility: hidden !important +} + +@media print { + + *, + ::after, + ::before { + text-shadow: none !important; + box-shadow: none !important + } + + a:not(.btn) { + text-decoration: underline + } + + abbr[title]::after { + content: " (" attr(title) ")" + } + + pre { + white-space: pre-wrap !important + } + + blockquote, + pre { + border: 1px solid #adb5bd; + page-break-inside: avoid + } + + thead { + display: table-header-group + } + + img, + tr { + page-break-inside: avoid + } + + h2, + h3, + p { + orphans: 3; + widows: 3 + } + + h2, + h3 { + page-break-after: avoid + } + + @page { + size: a3 + } + + body { + min-width: 992px !important + } + + .container { + min-width: 992px !important + } + + .navbar { + display: none + } + + .badge { + border: 1px solid #000 + } + + .table { + border-collapse: collapse !important + } + + .table td, + .table th { + background-color: #fff !important + } + + .table-bordered td, + .table-bordered th { + border: 1px solid #dee2e6 !important + } + + .table-dark { + color: inherit + } + + .table-dark tbody+tbody, + .table-dark td, + .table-dark th, + .table-dark thead th { + border-color: #dee2e6 + } + + .table .thead-dark th { + color: inherit; + border-color: #dee2e6 + } +} + /*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/desarrollo/public/assets/css/custom-style.css b/desarrollo/public/assets/css/custom-style.css index a3a742bc..dfa05c8b 100644 --- a/desarrollo/public/assets/css/custom-style.css +++ b/desarrollo/public/assets/css/custom-style.css @@ -1 +1,140 @@ -/*your custom css goes here*/ \ No newline at end of file +/*your custom css goes here*/ + +.botoncito { + width: 100%; + height: 60px; + display: flex; + align-items: center; + justify-content: right; + background: transparent; +} + +.car { + position: absolute; + bottom: calc(100% - 5px); + left: 0; + opacity: 0; +} + +.svgImagen { + width: 72px; +} + +.btn-order { + width: 200px; + height: 50px; + background: #20274a; + border: none; + border-radius: 25px; + position: relative; + color: #fff; + font-weight: 500; + cursor: pointer; + font-size: 16px; +} + +.btn-order:focus { + outline: none; +} + +.light { + position: absolute; + opacity: 0; + width: 3px; + height: 3px; + right: 0; + top: 20px; + background: yellow; +} + +.light:before { + content: ''; + position: absolute; + width: 15px; + height: 5px; + top: 4px; + left: 0; + background: linear-gradient(to right, #ffeb00, #ffeb003d); + clip-path: polygon(0 50%, 100% 0, 100% 100%); + transform: rotate(45deg); +} + +.complited { + position: absolute; + top: 13px; + width: 100%; + display: flex; + justify-content: center; + align-items: center; + left: 0; + opacity: 0; +} + +.complited svg { + width: 12px; + height: 10px; + fill: none; + margin: 0 0 0 4px; + stroke: #16BF78; + stroke-width: 2; + stroke-linecap: round; + stroke-linejoin: round; + stroke-dasharray: 16px; + stroke-dashoffset: 16px; +} + +.st0 { + fill: #40596B; +} + +.st1 { + fill: #334A5E; +} + +.st2 { + fill: #BABAB9; +} + +.st3 { + fill: #AAAAAA; +} + +.st4 { + fill: #FF7058; +} + +.st5 { + fill: #84DBFF; +} + +.st6 { + fill: #CDD6E0; +} + +.st7 { + fill: #F2F2F2; +} + +.st8 { + fill: #FFD15C; +} + +.st9 { + fill: #E2C78C; +} + +.st10 { + fill: #B59B68; +} + +.st11 { + fill: #D8D8D6; +} + +.st12 { + fill: #ACB3BA; +} + +.align-right-lapieza { + align-content: right; +} \ No newline at end of file diff --git a/desarrollo/public/assets/css/custom-style_old.css b/desarrollo/public/assets/css/custom-style_old.css new file mode 100644 index 00000000..a3a742bc --- /dev/null +++ b/desarrollo/public/assets/css/custom-style_old.css @@ -0,0 +1 @@ +/*your custom css goes here*/ \ No newline at end of file diff --git a/desarrollo/public/assets/css/vendors.css b/desarrollo/public/assets/css/vendors.css index b140f113..c65841c0 100644 --- a/desarrollo/public/assets/css/vendors.css +++ b/desarrollo/public/assets/css/vendors.css @@ -6655,7 +6655,7 @@ a.close.disabled { background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, .2); - border-radius: .3rem; + border-radius: 15px !important; outline: 0 } @@ -7498,6 +7498,7 @@ button.bg-dark:hover { .border-bottom { border-bottom: 1px solid #dee2e6 !important } + .border-bottom-lapieza { border-bottom: 1px solid #003b73 !important } @@ -7615,7 +7616,7 @@ button.bg-dark:hover { border-radius: 15px 0px 0px 15px; } -.padding-all{ +.padding-all { padding-bottom: 25px !important; padding-top: 25px !important; } @@ -8788,6 +8789,10 @@ align-items-right { float: right !important } +.float-right-lapieza { + float: right !important +} + .float-none { float: none !important } @@ -9044,12 +9049,12 @@ align-items-right { margin-bottom: 0 !important } -.m-menu-mobile{ +.m-menu-mobile { margin-left: 10% !important; } -.m-top-5{ - margin-top: 5px !important; +.m-top-5 { + margin-top: 5px !important; } .ml-0, @@ -32605,22 +32610,23 @@ img.jssocials-share-logo { background-size: 30px 30px } - + } -.br-banner{ +.br-banner { border-radius: 15px; } -@media (max-width: 890px){ - .hideIdioma{ - display:none !important; +@media (max-width: 890px) { + .hideIdioma { + display: none !important; } } + .hide-scrollbars { overflow: hidden !important } -.br-best-selling{ +.br-best-selling { border-radius: 15px; } \ No newline at end of file diff --git a/desarrollo/public/assets/css/vendors_old.css b/desarrollo/public/assets/css/vendors_old.css new file mode 100644 index 00000000..cfb70793 --- /dev/null +++ b/desarrollo/public/assets/css/vendors_old.css @@ -0,0 +1,124 @@ +/* + +Don't modify this file. +use custom-style.css + +*/ + + +/*! + * Bootstrap v4.5.0 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]){color:inherit;text-decoration:none}a:not([href]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.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:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item{display:-ms-flexbox;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} +/*# sourceMappingURL=bootstrap.min.css.map */ + +/*line Awesome 1.3.0*/ +.la,.lab,.lad,.lal,.lar,.las{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.la-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.la-xs{font-size:.75em}.la-sm{font-size:.875em}.la-1x{font-size:1em}.la-2x{font-size:2em}.la-3x{font-size:3em}.la-4x{font-size:4em}.la-5x{font-size:5em}.la-6x{font-size:6em}.la-7x{font-size:7em}.la-8x{font-size:8em}.la-9x{font-size:9em}.la-10x{font-size:10em}.la-fw{text-align:center;width:1.25em}.la-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.la-ul>li{position:relative}.la-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.la-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.la-pull-left{float:left}.la-pull-right{float:right}.la.la-pull-left,.lab.la-pull-left,.lal.la-pull-left,.lar.la-pull-left,.las.la-pull-left{margin-right:.3em}.la.la-pull-right,.lab.la-pull-right,.lal.la-pull-right,.lar.la-pull-right,.las.la-pull-right{margin-left:.3em}.la-spin{-webkit-animation:la-spin 2s infinite linear;animation:la-spin 2s infinite linear}.la-pulse{-webkit-animation:la-spin 1s infinite steps(8);animation:la-spin 1s infinite steps(8)}@-webkit-keyframes la-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes la-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.la-rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.la-rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.la-rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.la-flip-horizontal{-webkit-transform:scale(-1,1);transform:scale(-1,1)}.la-flip-vertical{-webkit-transform:scale(1,-1);transform:scale(1,-1)}.la-flip-both,.la-flip-horizontal.la-flip-vertical{-webkit-transform:scale(-1,-1);transform:scale(-1,-1)}:root .la-flip-both,:root .la-flip-horizontal,:root .la-flip-vertical,:root .la-rotate-180,:root .la-rotate-270,:root .la-rotate-90{-webkit-filter:none;filter:none}.la-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.la-stack-1x,.la-stack-2x{left:0;position:absolute;text-align:center;width:100%}.la-stack-1x{line-height:inherit}.la-stack-2x{font-size:2em}.la-inverse{color:#fff}.la-500px:before{content:"\f26e"}.la-accessible-icon:before{content:"\f368"}.la-accusoft:before{content:"\f369"}.la-acquisitions-incorporated:before{content:"\f6af"}.la-ad:before{content:"\f641"}.la-address-book:before{content:"\f2b9"}.la-address-card:before{content:"\f2bb"}.la-adjust:before{content:"\f042"}.la-adn:before{content:"\f170"}.la-adobe:before{content:"\f778"}.la-adversal:before{content:"\f36a"}.la-affiliatetheme:before{content:"\f36b"}.la-air-freshener:before{content:"\f5d0"}.la-airbnb:before{content:"\f834"}.la-algolia:before{content:"\f36c"}.la-align-center:before{content:"\f037"}.la-align-justify:before{content:"\f039"}.la-align-left:before{content:"\f036"}.la-align-right:before{content:"\f038"}.la-alipay:before{content:"\f642"}.la-allergies:before{content:"\f461"}.la-amazon:before{content:"\f270"}.la-amazon-pay:before{content:"\f42c"}.la-ambulance:before{content:"\f0f9"}.la-american-sign-language-interpreting:before{content:"\f2a3"}.la-amilia:before{content:"\f36d"}.la-anchor:before{content:"\f13d"}.la-android:before{content:"\f17b"}.la-angellist:before{content:"\f209"}.la-angle-double-down:before{content:"\f103"}.la-angle-double-left:before{content:"\f100"}.la-angle-double-right:before{content:"\f101"}.la-angle-double-up:before{content:"\f102"}.la-angle-down:before{content:"\f107"}.la-angle-left:before{content:"\f104"}.la-angle-right:before{content:"\f105"}.la-angle-up:before{content:"\f106"}.la-angry:before{content:"\f556"}.la-angrycreative:before{content:"\f36e"}.la-angular:before{content:"\f420"}.la-ankh:before{content:"\f644"}.la-app-store:before{content:"\f36f"}.la-app-store-ios:before{content:"\f370"}.la-apper:before{content:"\f371"}.la-apple:before{content:"\f179"}.la-apple-alt:before{content:"\f5d1"}.la-apple-pay:before{content:"\f415"}.la-archive:before{content:"\f187"}.la-archway:before{content:"\f557"}.la-arrow-alt-circle-down:before{content:"\f358"}.la-arrow-alt-circle-left:before{content:"\f359"}.la-arrow-alt-circle-right:before{content:"\f35a"}.la-arrow-alt-circle-up:before{content:"\f35b"}.la-arrow-circle-down:before{content:"\f0ab"}.la-arrow-circle-left:before{content:"\f0a8"}.la-arrow-circle-right:before{content:"\f0a9"}.la-arrow-circle-up:before{content:"\f0aa"}.la-arrow-down:before{content:"\f063"}.la-arrow-left:before{content:"\f060"}.la-arrow-right:before{content:"\f061"}.la-arrow-up:before{content:"\f062"}.la-arrows-alt:before{content:"\f0b2"}.la-arrows-alt-h:before{content:"\f337"}.la-arrows-alt-v:before{content:"\f338"}.la-artstation:before{content:"\f77a"}.la-assistive-listening-systems:before{content:"\f2a2"}.la-asterisk:before{content:"\f069"}.la-asymmetrik:before{content:"\f372"}.la-at:before{content:"\f1fa"}.la-atlas:before{content:"\f558"}.la-atlassian:before{content:"\f77b"}.la-atom:before{content:"\f5d2"}.la-audible:before{content:"\f373"}.la-audio-description:before{content:"\f29e"}.la-autoprefixer:before{content:"\f41c"}.la-avianex:before{content:"\f374"}.la-aviato:before{content:"\f421"}.la-award:before{content:"\f559"}.la-aws:before{content:"\f375"}.la-baby:before{content:"\f77c"}.la-baby-carriage:before{content:"\f77d"}.la-backspace:before{content:"\f55a"}.la-backward:before{content:"\f04a"}.la-bacon:before{content:"\f7e5"}.la-balance-scale:before{content:"\f24e"}.la-balance-scale-left:before{content:"\f515"}.la-balance-scale-right:before{content:"\f516"}.la-ban:before{content:"\f05e"}.la-band-aid:before{content:"\f462"}.la-bandcamp:before{content:"\f2d5"}.la-barcode:before{content:"\f02a"}.la-bars:before{content:"\f0c9"}.la-baseball-ball:before{content:"\f433"}.la-basketball-ball:before{content:"\f434"}.la-bath:before{content:"\f2cd"}.la-battery-empty:before{content:"\f244"}.la-battery-full:before{content:"\f240"}.la-battery-half:before{content:"\f242"}.la-battery-quarter:before{content:"\f243"}.la-battery-three-quarters:before{content:"\f241"}.la-battle-net:before{content:"\f835"}.la-bed:before{content:"\f236"}.la-beer:before{content:"\f0fc"}.la-behance:before{content:"\f1b4"}.la-behance-square:before{content:"\f1b5"}.la-bell:before{content:"\f0f3"}.la-bell-slash:before{content:"\f1f6"}.la-bezier-curve:before{content:"\f55b"}.la-bible:before{content:"\f647"}.la-bicycle:before{content:"\f206"}.la-biking:before{content:"\f84a"}.la-bimobject:before{content:"\f378"}.la-binoculars:before{content:"\f1e5"}.la-biohazard:before{content:"\f780"}.la-birthday-cake:before{content:"\f1fd"}.la-bitbucket:before{content:"\f171"}.la-bitcoin:before{content:"\f379"}.la-bity:before{content:"\f37a"}.la-black-tie:before{content:"\f27e"}.la-blackberry:before{content:"\f37b"}.la-blender:before{content:"\f517"}.la-blender-phone:before{content:"\f6b6"}.la-blind:before{content:"\f29d"}.la-blog:before{content:"\f781"}.la-blogger:before{content:"\f37c"}.la-blogger-b:before{content:"\f37d"}.la-bluetooth:before{content:"\f293"}.la-bluetooth-b:before{content:"\f294"}.la-bold:before{content:"\f032"}.la-bolt:before{content:"\f0e7"}.la-bomb:before{content:"\f1e2"}.la-bone:before{content:"\f5d7"}.la-bong:before{content:"\f55c"}.la-book:before{content:"\f02d"}.la-book-dead:before{content:"\f6b7"}.la-book-medical:before{content:"\f7e6"}.la-book-open:before{content:"\f518"}.la-book-reader:before{content:"\f5da"}.la-bookmark:before{content:"\f02e"}.la-bootstrap:before{content:"\f836"}.la-border-all:before{content:"\f84c"}.la-border-none:before{content:"\f850"}.la-border-style:before{content:"\f853"}.la-bowling-ball:before{content:"\f436"}.la-box:before{content:"\f466"}.la-box-open:before{content:"\f49e"}.la-boxes:before{content:"\f468"}.la-braille:before{content:"\f2a1"}.la-brain:before{content:"\f5dc"}.la-bread-slice:before{content:"\f7ec"}.la-briefcase:before{content:"\f0b1"}.la-briefcase-medical:before{content:"\f469"}.la-broadcast-tower:before{content:"\f519"}.la-broom:before{content:"\f51a"}.la-brush:before{content:"\f55d"}.la-btc:before{content:"\f15a"}.la-buffer:before{content:"\f837"}.la-bug:before{content:"\f188"}.la-building:before{content:"\f1ad"}.la-bullhorn:before{content:"\f0a1"}.la-bullseye:before{content:"\f140"}.la-burn:before{content:"\f46a"}.la-buromobelexperte:before{content:"\f37f"}.la-bus:before{content:"\f207"}.la-bus-alt:before{content:"\f55e"}.la-business-time:before{content:"\f64a"}.la-buy-n-large:before{content:"\f8a6"}.la-buysellads:before{content:"\f20d"}.la-calculator:before{content:"\f1ec"}.la-calendar:before{content:"\f133"}.la-calendar-alt:before{content:"\f073"}.la-calendar-check:before{content:"\f274"}.la-calendar-day:before{content:"\f783"}.la-calendar-minus:before{content:"\f272"}.la-calendar-plus:before{content:"\f271"}.la-calendar-times:before{content:"\f273"}.la-calendar-week:before{content:"\f784"}.la-camera:before{content:"\f030"}.la-camera-retro:before{content:"\f083"}.la-campground:before{content:"\f6bb"}.la-canadian-maple-leaf:before{content:"\f785"}.la-candy-cane:before{content:"\f786"}.la-cannabis:before{content:"\f55f"}.la-capsules:before{content:"\f46b"}.la-car:before{content:"\f1b9"}.la-car-alt:before{content:"\f5de"}.la-car-battery:before{content:"\f5df"}.la-car-crash:before{content:"\f5e1"}.la-car-side:before{content:"\f5e4"}.la-caret-down:before{content:"\f0d7"}.la-caret-left:before{content:"\f0d9"}.la-caret-right:before{content:"\f0da"}.la-caret-square-down:before{content:"\f150"}.la-caret-square-left:before{content:"\f191"}.la-caret-square-right:before{content:"\f152"}.la-caret-square-up:before{content:"\f151"}.la-caret-up:before{content:"\f0d8"}.la-carrot:before{content:"\f787"}.la-cart-arrow-down:before{content:"\f218"}.la-cart-plus:before{content:"\f217"}.la-cash-register:before{content:"\f788"}.la-cat:before{content:"\f6be"}.la-cc-amazon-pay:before{content:"\f42d"}.la-cc-amex:before{content:"\f1f3"}.la-cc-apple-pay:before{content:"\f416"}.la-cc-diners-club:before{content:"\f24c"}.la-cc-discover:before{content:"\f1f2"}.la-cc-jcb:before{content:"\f24b"}.la-cc-mastercard:before{content:"\f1f1"}.la-cc-paypal:before{content:"\f1f4"}.la-cc-stripe:before{content:"\f1f5"}.la-cc-visa:before{content:"\f1f0"}.la-centercode:before{content:"\f380"}.la-centos:before{content:"\f789"}.la-certificate:before{content:"\f0a3"}.la-chair:before{content:"\f6c0"}.la-chalkboard:before{content:"\f51b"}.la-chalkboard-teacher:before{content:"\f51c"}.la-charging-station:before{content:"\f5e7"}.la-chart-area:before{content:"\f1fe"}.la-chart-bar:before{content:"\f080"}.la-chart-line:before{content:"\f201"}.la-chart-pie:before{content:"\f200"}.la-check:before{content:"\f00c"}.la-check-circle:before{content:"\f058"}.la-check-double:before{content:"\f560"}.la-check-square:before{content:"\f14a"}.la-cheese:before{content:"\f7ef"}.la-chess:before{content:"\f439"}.la-chess-bishop:before{content:"\f43a"}.la-chess-board:before{content:"\f43c"}.la-chess-king:before{content:"\f43f"}.la-chess-knight:before{content:"\f441"}.la-chess-pawn:before{content:"\f443"}.la-chess-queen:before{content:"\f445"}.la-chess-rook:before{content:"\f447"}.la-chevron-circle-down:before{content:"\f13a"}.la-chevron-circle-left:before{content:"\f137"}.la-chevron-circle-right:before{content:"\f138"}.la-chevron-circle-up:before{content:"\f139"}.la-chevron-down:before{content:"\f078"}.la-chevron-left:before{content:"\f053"}.la-chevron-right:before{content:"\f054"}.la-chevron-up:before{content:"\f077"}.la-child:before{content:"\f1ae"}.la-chrome:before{content:"\f268"}.la-chromecast:before{content:"\f838"}.la-church:before{content:"\f51d"}.la-circle:before{content:"\f111"}.la-circle-notch:before{content:"\f1ce"}.la-city:before{content:"\f64f"}.la-clinic-medical:before{content:"\f7f2"}.la-clipboard:before{content:"\f328"}.la-clipboard-check:before{content:"\f46c"}.la-clipboard-list:before{content:"\f46d"}.la-clock:before{content:"\f017"}.la-clone:before{content:"\f24d"}.la-closed-captioning:before{content:"\f20a"}.la-cloud:before{content:"\f0c2"}.la-cloud-download-alt:before{content:"\f381"}.la-cloud-meatball:before{content:"\f73b"}.la-cloud-moon:before{content:"\f6c3"}.la-cloud-moon-rain:before{content:"\f73c"}.la-cloud-rain:before{content:"\f73d"}.la-cloud-showers-heavy:before{content:"\f740"}.la-cloud-sun:before{content:"\f6c4"}.la-cloud-sun-rain:before{content:"\f743"}.la-cloud-upload-alt:before{content:"\f382"}.la-cloudscale:before{content:"\f383"}.la-cloudsmith:before{content:"\f384"}.la-cloudversify:before{content:"\f385"}.la-cocktail:before{content:"\f561"}.la-code:before{content:"\f121"}.la-code-branch:before{content:"\f126"}.la-codepen:before{content:"\f1cb"}.la-codiepie:before{content:"\f284"}.la-coffee:before{content:"\f0f4"}.la-cog:before{content:"\f013"}.la-cogs:before{content:"\f085"}.la-coins:before{content:"\f51e"}.la-columns:before{content:"\f0db"}.la-comment:before{content:"\f075"}.la-comment-alt:before{content:"\f27a"}.la-comment-dollar:before{content:"\f651"}.la-comment-dots:before{content:"\f4ad"}.la-comment-medical:before{content:"\f7f5"}.la-comment-slash:before{content:"\f4b3"}.la-comments:before{content:"\f086"}.la-comments-dollar:before{content:"\f653"}.la-compact-disc:before{content:"\f51f"}.la-compass:before{content:"\f14e"}.la-compress:before{content:"\f066"}.la-compress-arrows-alt:before{content:"\f78c"}.la-concierge-bell:before{content:"\f562"}.la-confluence:before{content:"\f78d"}.la-connectdevelop:before{content:"\f20e"}.la-contao:before{content:"\f26d"}.la-cookie:before{content:"\f563"}.la-cookie-bite:before{content:"\f564"}.la-copy:before{content:"\f0c5"}.la-copyright:before{content:"\f1f9"}.la-cotton-bureau:before{content:"\f89e"}.la-couch:before{content:"\f4b8"}.la-cpanel:before{content:"\f388"}.la-creative-commons:before{content:"\f25e"}.la-creative-commons-by:before{content:"\f4e7"}.la-creative-commons-nc:before{content:"\f4e8"}.la-creative-commons-nc-eu:before{content:"\f4e9"}.la-creative-commons-nc-jp:before{content:"\f4ea"}.la-creative-commons-nd:before{content:"\f4eb"}.la-creative-commons-pd:before{content:"\f4ec"}.la-creative-commons-pd-alt:before{content:"\f4ed"}.la-creative-commons-remix:before{content:"\f4ee"}.la-creative-commons-sa:before{content:"\f4ef"}.la-creative-commons-sampling:before{content:"\f4f0"}.la-creative-commons-sampling-plus:before{content:"\f4f1"}.la-creative-commons-share:before{content:"\f4f2"}.la-creative-commons-zero:before{content:"\f4f3"}.la-credit-card:before{content:"\f09d"}.la-critical-role:before{content:"\f6c9"}.la-crop:before{content:"\f125"}.la-crop-alt:before{content:"\f565"}.la-cross:before{content:"\f654"}.la-crosshairs:before{content:"\f05b"}.la-crow:before{content:"\f520"}.la-crown:before{content:"\f521"}.la-crutch:before{content:"\f7f7"}.la-css3:before{content:"\f13c"}.la-css3-alt:before{content:"\f38b"}.la-cube:before{content:"\f1b2"}.la-cubes:before{content:"\f1b3"}.la-cut:before{content:"\f0c4"}.la-cuttlefish:before{content:"\f38c"}.la-d-and-d:before{content:"\f38d"}.la-d-and-d-beyond:before{content:"\f6ca"}.la-dashcube:before{content:"\f210"}.la-database:before{content:"\f1c0"}.la-deaf:before{content:"\f2a4"}.la-delicious:before{content:"\f1a5"}.la-democrat:before{content:"\f747"}.la-deploydog:before{content:"\f38e"}.la-deskpro:before{content:"\f38f"}.la-desktop:before{content:"\f108"}.la-dev:before{content:"\f6cc"}.la-deviantart:before{content:"\f1bd"}.la-dharmachakra:before{content:"\f655"}.la-dhl:before{content:"\f790"}.la-diagnoses:before{content:"\f470"}.la-diaspora:before{content:"\f791"}.la-dice:before{content:"\f522"}.la-dice-d20:before{content:"\f6cf"}.la-dice-d6:before{content:"\f6d1"}.la-dice-five:before{content:"\f523"}.la-dice-four:before{content:"\f524"}.la-dice-one:before{content:"\f525"}.la-dice-six:before{content:"\f526"}.la-dice-three:before{content:"\f527"}.la-dice-two:before{content:"\f528"}.la-digg:before{content:"\f1a6"}.la-digital-ocean:before{content:"\f391"}.la-digital-tachograph:before{content:"\f566"}.la-directions:before{content:"\f5eb"}.la-discord:before{content:"\f392"}.la-discourse:before{content:"\f393"}.la-divide:before{content:"\f529"}.la-dizzy:before{content:"\f567"}.la-dna:before{content:"\f471"}.la-dochub:before{content:"\f394"}.la-docker:before{content:"\f395"}.la-dog:before{content:"\f6d3"}.la-dollar-sign:before{content:"\f155"}.la-dolly:before{content:"\f472"}.la-dolly-flatbed:before{content:"\f474"}.la-donate:before{content:"\f4b9"}.la-door-closed:before{content:"\f52a"}.la-door-open:before{content:"\f52b"}.la-dot-circle:before{content:"\f192"}.la-dove:before{content:"\f4ba"}.la-download:before{content:"\f019"}.la-draft2digital:before{content:"\f396"}.la-drafting-compass:before{content:"\f568"}.la-dragon:before{content:"\f6d5"}.la-draw-polygon:before{content:"\f5ee"}.la-dribbble:before{content:"\f17d"}.la-dribbble-square:before{content:"\f397"}.la-dropbox:before{content:"\f16b"}.la-drum:before{content:"\f569"}.la-drum-steelpan:before{content:"\f56a"}.la-drumstick-bite:before{content:"\f6d7"}.la-drupal:before{content:"\f1a9"}.la-dumbbell:before{content:"\f44b"}.la-dumpster:before{content:"\f793"}.la-dumpster-fire:before{content:"\f794"}.la-dungeon:before{content:"\f6d9"}.la-dyalog:before{content:"\f399"}.la-earlybirds:before{content:"\f39a"}.la-ebay:before{content:"\f4f4"}.la-edge:before{content:"\f282"}.la-edit:before{content:"\f044"}.la-egg:before{content:"\f7fb"}.la-eject:before{content:"\f052"}.la-elementor:before{content:"\f430"}.la-ellipsis-h:before{content:"\f141"}.la-ellipsis-v:before{content:"\f142"}.la-ello:before{content:"\f5f1"}.la-ember:before{content:"\f423"}.la-empire:before{content:"\f1d1"}.la-envelope:before{content:"\f0e0"}.la-envelope-open:before{content:"\f2b6"}.la-envelope-open-text:before{content:"\f658"}.la-envelope-square:before{content:"\f199"}.la-envira:before{content:"\f299"}.la-equals:before{content:"\f52c"}.la-eraser:before{content:"\f12d"}.la-erlang:before{content:"\f39d"}.la-ethereum:before{content:"\f42e"}.la-ethernet:before{content:"\f796"}.la-etsy:before{content:"\f2d7"}.la-euro-sign:before{content:"\f153"}.la-evernote:before{content:"\f839"}.la-exchange-alt:before{content:"\f362"}.la-exclamation:before{content:"\f12a"}.la-exclamation-circle:before{content:"\f06a"}.la-exclamation-triangle:before{content:"\f071"}.la-expand:before{content:"\f065"}.la-expand-arrows-alt:before{content:"\f31e"}.la-expeditedssl:before{content:"\f23e"}.la-external-link-alt:before{content:"\f35d"}.la-external-link-square-alt:before{content:"\f360"}.la-eye:before{content:"\f06e"}.la-eye-dropper:before{content:"\f1fb"}.la-eye-slash:before{content:"\f070"}.la-facebook:before{content:"\f09a"}.la-facebook-f:before{content:"\f39e"}.la-facebook-messenger:before{content:"\f39f"}.la-facebook-square:before{content:"\f082"}.la-fan:before{content:"\f863"}.la-fantasy-flight-games:before{content:"\f6dc"}.la-fast-backward:before{content:"\f049"}.la-fast-forward:before{content:"\f050"}.la-fax:before{content:"\f1ac"}.la-feather:before{content:"\f52d"}.la-feather-alt:before{content:"\f56b"}.la-fedex:before{content:"\f797"}.la-fedora:before{content:"\f798"}.la-female:before{content:"\f182"}.la-fighter-jet:before{content:"\f0fb"}.la-figma:before{content:"\f799"}.la-file:before{content:"\f15b"}.la-file-alt:before{content:"\f15c"}.la-file-archive:before{content:"\f1c6"}.la-file-audio:before{content:"\f1c7"}.la-file-code:before{content:"\f1c9"}.la-file-contract:before{content:"\f56c"}.la-file-csv:before{content:"\f6dd"}.la-file-download:before{content:"\f56d"}.la-file-excel:before{content:"\f1c3"}.la-file-export:before{content:"\f56e"}.la-file-image:before{content:"\f1c5"}.la-file-import:before{content:"\f56f"}.la-file-invoice:before{content:"\f570"}.la-file-invoice-dollar:before{content:"\f571"}.la-file-medical:before{content:"\f477"}.la-file-medical-alt:before{content:"\f478"}.la-file-pdf:before{content:"\f1c1"}.la-file-powerpoint:before{content:"\f1c4"}.la-file-prescription:before{content:"\f572"}.la-file-signature:before{content:"\f573"}.la-file-upload:before{content:"\f574"}.la-file-video:before{content:"\f1c8"}.la-file-word:before{content:"\f1c2"}.la-fill:before{content:"\f575"}.la-fill-drip:before{content:"\f576"}.la-film:before{content:"\f008"}.la-filter:before{content:"\f0b0"}.la-fingerprint:before{content:"\f577"}.la-fire:before{content:"\f06d"}.la-fire-alt:before{content:"\f7e4"}.la-fire-extinguisher:before{content:"\f134"}.la-firefox:before{content:"\f269"}.la-first-aid:before{content:"\f479"}.la-first-order:before{content:"\f2b0"}.la-first-order-alt:before{content:"\f50a"}.la-firstdraft:before{content:"\f3a1"}.la-fish:before{content:"\f578"}.la-fist-raised:before{content:"\f6de"}.la-flag:before{content:"\f024"}.la-flag-checkered:before{content:"\f11e"}.la-flag-usa:before{content:"\f74d"}.la-flask:before{content:"\f0c3"}.la-flickr:before{content:"\f16e"}.la-flipboard:before{content:"\f44d"}.la-flushed:before{content:"\f579"}.la-fly:before{content:"\f417"}.la-folder:before{content:"\f07b"}.la-folder-minus:before{content:"\f65d"}.la-folder-open:before{content:"\f07c"}.la-folder-plus:before{content:"\f65e"}.la-font:before{content:"\f031"}.la-font-awesome:before{content:"\f2b4"}.la-font-awesome-alt:before{content:"\f35c"}.la-font-awesome-flag:before{content:"\f425"}.la-font-awesome-logo-full:before{content:"\f4e6"}.la-fonticons:before{content:"\f280"}.la-fonticons-fi:before{content:"\f3a2"}.la-football-ball:before{content:"\f44e"}.la-fort-awesome:before{content:"\f286"}.la-fort-awesome-alt:before{content:"\f3a3"}.la-forumbee:before{content:"\f211"}.la-forward:before{content:"\f04e"}.la-foursquare:before{content:"\f180"}.la-free-code-camp:before{content:"\f2c5"}.la-freebsd:before{content:"\f3a4"}.la-frog:before{content:"\f52e"}.la-frown:before{content:"\f119"}.la-frown-open:before{content:"\f57a"}.la-fulcrum:before{content:"\f50b"}.la-funnel-dollar:before{content:"\f662"}.la-futbol:before{content:"\f1e3"}.la-galactic-republic:before{content:"\f50c"}.la-galactic-senate:before{content:"\f50d"}.la-gamepad:before{content:"\f11b"}.la-gas-pump:before{content:"\f52f"}.la-gavel:before{content:"\f0e3"}.la-gem:before{content:"\f3a5"}.la-genderless:before{content:"\f22d"}.la-get-pocket:before{content:"\f265"}.la-gg:before{content:"\f260"}.la-gg-circle:before{content:"\f261"}.la-ghost:before{content:"\f6e2"}.la-gift:before{content:"\f06b"}.la-gifts:before{content:"\f79c"}.la-git:before{content:"\f1d3"}.la-git-alt:before{content:"\f841"}.la-git-square:before{content:"\f1d2"}.la-github:before{content:"\f09b"}.la-github-alt:before{content:"\f113"}.la-github-square:before{content:"\f092"}.la-gitkraken:before{content:"\f3a6"}.la-gitlab:before{content:"\f296"}.la-gitter:before{content:"\f426"}.la-glass-cheers:before{content:"\f79f"}.la-glass-martini:before{content:"\f000"}.la-glass-martini-alt:before{content:"\f57b"}.la-glass-whiskey:before{content:"\f7a0"}.la-glasses:before{content:"\f530"}.la-glide:before{content:"\f2a5"}.la-glide-g:before{content:"\f2a6"}.la-globe:before{content:"\f0ac"}.la-globe-africa:before{content:"\f57c"}.la-globe-americas:before{content:"\f57d"}.la-globe-asia:before{content:"\f57e"}.la-globe-europe:before{content:"\f7a2"}.la-gofore:before{content:"\f3a7"}.la-golf-ball:before{content:"\f450"}.la-goodreads:before{content:"\f3a8"}.la-goodreads-g:before{content:"\f3a9"}.la-google:before{content:"\f1a0"}.la-google-drive:before{content:"\f3aa"}.la-google-play:before{content:"\f3ab"}.la-google-plus:before{content:"\f2b3"}.la-google-plus-g:before{content:"\f0d5"}.la-google-plus-square:before{content:"\f0d4"}.la-google-wallet:before{content:"\f1ee"}.la-gopuram:before{content:"\f664"}.la-graduation-cap:before{content:"\f19d"}.la-gratipay:before{content:"\f184"}.la-grav:before{content:"\f2d6"}.la-greater-than:before{content:"\f531"}.la-greater-than-equal:before{content:"\f532"}.la-grimace:before{content:"\f57f"}.la-grin:before{content:"\f580"}.la-grin-alt:before{content:"\f581"}.la-grin-beam:before{content:"\f582"}.la-grin-beam-sweat:before{content:"\f583"}.la-grin-hearts:before{content:"\f584"}.la-grin-squint:before{content:"\f585"}.la-grin-squint-tears:before{content:"\f586"}.la-grin-stars:before{content:"\f587"}.la-grin-tears:before{content:"\f588"}.la-grin-tongue:before{content:"\f589"}.la-grin-tongue-squint:before{content:"\f58a"}.la-grin-tongue-wink:before{content:"\f58b"}.la-grin-wink:before{content:"\f58c"}.la-grip-horizontal:before{content:"\f58d"}.la-grip-lines:before{content:"\f7a4"}.la-grip-lines-vertical:before{content:"\f7a5"}.la-grip-vertical:before{content:"\f58e"}.la-gripfire:before{content:"\f3ac"}.la-grunt:before{content:"\f3ad"}.la-guitar:before{content:"\f7a6"}.la-gulp:before{content:"\f3ae"}.la-h-square:before{content:"\f0fd"}.la-hacker-news:before{content:"\f1d4"}.la-hacker-news-square:before{content:"\f3af"}.la-hackerrank:before{content:"\f5f7"}.la-hamburger:before{content:"\f805"}.la-hammer:before{content:"\f6e3"}.la-hamsa:before{content:"\f665"}.la-hand-holding:before{content:"\f4bd"}.la-hand-holding-heart:before{content:"\f4be"}.la-hand-holding-usd:before{content:"\f4c0"}.la-hand-lizard:before{content:"\f258"}.la-hand-middle-finger:before{content:"\f806"}.la-hand-paper:before{content:"\f256"}.la-hand-peace:before{content:"\f25b"}.la-hand-point-down:before{content:"\f0a7"}.la-hand-point-left:before{content:"\f0a5"}.la-hand-point-right:before{content:"\f0a4"}.la-hand-point-up:before{content:"\f0a6"}.la-hand-pointer:before{content:"\f25a"}.la-hand-rock:before{content:"\f255"}.la-hand-scissors:before{content:"\f257"}.la-hand-spock:before{content:"\f259"}.la-hands:before{content:"\f4c2"}.la-hands-helping:before{content:"\f4c4"}.la-handshake:before{content:"\f2b5"}.la-hanukiah:before{content:"\f6e6"}.la-hard-hat:before{content:"\f807"}.la-hashtag:before{content:"\f292"}.la-hat-cowboy:before{content:"\f8c0"}.la-hat-cowboy-side:before{content:"\f8c1"}.la-hat-wizard:before{content:"\f6e8"}.la-haykal:before{content:"\f666"}.la-hdd:before{content:"\f0a0"}.la-heading:before{content:"\f1dc"}.la-headphones:before{content:"\f025"}.la-headphones-alt:before{content:"\f58f"}.la-headset:before{content:"\f590"}.la-heart:before{content:"\f004"}.la-heart-broken:before{content:"\f7a9"}.la-heartbeat:before{content:"\f21e"}.la-helicopter:before{content:"\f533"}.la-highlighter:before{content:"\f591"}.la-hiking:before{content:"\f6ec"}.la-hippo:before{content:"\f6ed"}.la-hips:before{content:"\f452"}.la-hire-a-helper:before{content:"\f3b0"}.la-history:before{content:"\f1da"}.la-hockey-puck:before{content:"\f453"}.la-holly-berry:before{content:"\f7aa"}.la-home:before{content:"\f015"}.la-hooli:before{content:"\f427"}.la-hornbill:before{content:"\f592"}.la-horse:before{content:"\f6f0"}.la-horse-head:before{content:"\f7ab"}.la-hospital:before{content:"\f0f8"}.la-hospital-alt:before{content:"\f47d"}.la-hospital-symbol:before{content:"\f47e"}.la-hot-tub:before{content:"\f593"}.la-hotdog:before{content:"\f80f"}.la-hotel:before{content:"\f594"}.la-hotjar:before{content:"\f3b1"}.la-hourglass:before{content:"\f254"}.la-hourglass-end:before{content:"\f253"}.la-hourglass-half:before{content:"\f252"}.la-hourglass-start:before{content:"\f251"}.la-house-damage:before{content:"\f6f1"}.la-houzz:before{content:"\f27c"}.la-hryvnia:before{content:"\f6f2"}.la-html5:before{content:"\f13b"}.la-hubspot:before{content:"\f3b2"}.la-i-cursor:before{content:"\f246"}.la-ice-cream:before{content:"\f810"}.la-icicles:before{content:"\f7ad"}.la-icons:before{content:"\f86d"}.la-id-badge:before{content:"\f2c1"}.la-id-card:before{content:"\f2c2"}.la-id-card-alt:before{content:"\f47f"}.la-igloo:before{content:"\f7ae"}.la-image:before{content:"\f03e"}.la-images:before{content:"\f302"}.la-imdb:before{content:"\f2d8"}.la-inbox:before{content:"\f01c"}.la-indent:before{content:"\f03c"}.la-industry:before{content:"\f275"}.la-infinity:before{content:"\f534"}.la-info:before{content:"\f129"}.la-info-circle:before{content:"\f05a"}.la-instagram:before{content:"\f16d"}.la-intercom:before{content:"\f7af"}.la-internet-explorer:before{content:"\f26b"}.la-invision:before{content:"\f7b0"}.la-ioxhost:before{content:"\f208"}.la-italic:before{content:"\f033"}.la-itch-io:before{content:"\f83a"}.la-itunes:before{content:"\f3b4"}.la-itunes-note:before{content:"\f3b5"}.la-java:before{content:"\f4e4"}.la-jedi:before{content:"\f669"}.la-jedi-order:before{content:"\f50e"}.la-jenkins:before{content:"\f3b6"}.la-jira:before{content:"\f7b1"}.la-joget:before{content:"\f3b7"}.la-joint:before{content:"\f595"}.la-joomla:before{content:"\f1aa"}.la-journal-whills:before{content:"\f66a"}.la-js:before{content:"\f3b8"}.la-js-square:before{content:"\f3b9"}.la-jsfiddle:before{content:"\f1cc"}.la-kaaba:before{content:"\f66b"}.la-kaggle:before{content:"\f5fa"}.la-key:before{content:"\f084"}.la-keybase:before{content:"\f4f5"}.la-keyboard:before{content:"\f11c"}.la-keycdn:before{content:"\f3ba"}.la-khanda:before{content:"\f66d"}.la-kickstarter:before{content:"\f3bb"}.la-kickstarter-k:before{content:"\f3bc"}.la-kiss:before{content:"\f596"}.la-kiss-beam:before{content:"\f597"}.la-kiss-wink-heart:before{content:"\f598"}.la-kiwi-bird:before{content:"\f535"}.la-korvue:before{content:"\f42f"}.la-landmark:before{content:"\f66f"}.la-language:before{content:"\f1ab"}.la-laptop:before{content:"\f109"}.la-laptop-code:before{content:"\f5fc"}.la-laptop-medical:before{content:"\f812"}.la-laravel:before{content:"\f3bd"}.la-lastfm:before{content:"\f202"}.la-lastfm-square:before{content:"\f203"}.la-laugh:before{content:"\f599"}.la-laugh-beam:before{content:"\f59a"}.la-laugh-squint:before{content:"\f59b"}.la-laugh-wink:before{content:"\f59c"}.la-layer-group:before{content:"\f5fd"}.la-leaf:before{content:"\f06c"}.la-leanpub:before{content:"\f212"}.la-lemon:before{content:"\f094"}.la-less:before{content:"\f41d"}.la-less-than:before{content:"\f536"}.la-less-than-equal:before{content:"\f537"}.la-level-down-alt:before{content:"\f3be"}.la-level-up-alt:before{content:"\f3bf"}.la-life-ring:before{content:"\f1cd"}.la-lightbulb:before{content:"\f0eb"}.la-line:before{content:"\f3c0"}.la-link:before{content:"\f0c1"}.la-linkedin:before{content:"\f08c"}.la-linkedin-in:before{content:"\f0e1"}.la-linode:before{content:"\f2b8"}.la-linux:before{content:"\f17c"}.la-lira-sign:before{content:"\f195"}.la-list:before{content:"\f03a"}.la-list-alt:before{content:"\f022"}.la-list-ol:before{content:"\f0cb"}.la-list-ul:before{content:"\f0ca"}.la-location-arrow:before{content:"\f124"}.la-lock:before{content:"\f023"}.la-lock-open:before{content:"\f3c1"}.la-long-arrow-alt-down:before{content:"\f309"}.la-long-arrow-alt-left:before{content:"\f30a"}.la-long-arrow-alt-right:before{content:"\f30b"}.la-long-arrow-alt-up:before{content:"\f30c"}.la-low-vision:before{content:"\f2a8"}.la-luggage-cart:before{content:"\f59d"}.la-lyft:before{content:"\f3c3"}.la-magento:before{content:"\f3c4"}.la-magic:before{content:"\f0d0"}.la-magnet:before{content:"\f076"}.la-mail-bulk:before{content:"\f674"}.la-mailchimp:before{content:"\f59e"}.la-male:before{content:"\f183"}.la-mandalorian:before{content:"\f50f"}.la-map:before{content:"\f279"}.la-map-marked:before{content:"\f59f"}.la-map-marked-alt:before{content:"\f5a0"}.la-map-marker:before{content:"\f041"}.la-map-marker-alt:before{content:"\f3c5"}.la-map-pin:before{content:"\f276"}.la-map-signs:before{content:"\f277"}.la-markdown:before{content:"\f60f"}.la-marker:before{content:"\f5a1"}.la-mars:before{content:"\f222"}.la-mars-double:before{content:"\f227"}.la-mars-stroke:before{content:"\f229"}.la-mars-stroke-h:before{content:"\f22b"}.la-mars-stroke-v:before{content:"\f22a"}.la-mask:before{content:"\f6fa"}.la-mastodon:before{content:"\f4f6"}.la-maxcdn:before{content:"\f136"}.la-mdb:before{content:"\f8ca"}.la-medal:before{content:"\f5a2"}.la-medapps:before{content:"\f3c6"}.la-medium:before{content:"\f23a"}.la-medium-m:before{content:"\f3c7"}.la-medkit:before{content:"\f0fa"}.la-medrt:before{content:"\f3c8"}.la-meetup:before{content:"\f2e0"}.la-megaport:before{content:"\f5a3"}.la-meh:before{content:"\f11a"}.la-meh-blank:before{content:"\f5a4"}.la-meh-rolling-eyes:before{content:"\f5a5"}.la-memory:before{content:"\f538"}.la-mendeley:before{content:"\f7b3"}.la-menorah:before{content:"\f676"}.la-mercury:before{content:"\f223"}.la-meteor:before{content:"\f753"}.la-microchip:before{content:"\f2db"}.la-microphone:before{content:"\f130"}.la-microphone-alt:before{content:"\f3c9"}.la-microphone-alt-slash:before{content:"\f539"}.la-microphone-slash:before{content:"\f131"}.la-microscope:before{content:"\f610"}.la-microsoft:before{content:"\f3ca"}.la-minus:before{content:"\f068"}.la-minus-circle:before{content:"\f056"}.la-minus-square:before{content:"\f146"}.la-mitten:before{content:"\f7b5"}.la-mix:before{content:"\f3cb"}.la-mixcloud:before{content:"\f289"}.la-mizuni:before{content:"\f3cc"}.la-mobile:before{content:"\f10b"}.la-mobile-alt:before{content:"\f3cd"}.la-modx:before{content:"\f285"}.la-monero:before{content:"\f3d0"}.la-money-bill:before{content:"\f0d6"}.la-money-bill-alt:before{content:"\f3d1"}.la-money-bill-wave:before{content:"\f53a"}.la-money-bill-wave-alt:before{content:"\f53b"}.la-money-check:before{content:"\f53c"}.la-money-check-alt:before{content:"\f53d"}.la-monument:before{content:"\f5a6"}.la-moon:before{content:"\f186"}.la-mortar-pestle:before{content:"\f5a7"}.la-mosque:before{content:"\f678"}.la-motorcycle:before{content:"\f21c"}.la-mountain:before{content:"\f6fc"}.la-mouse:before{content:"\f8cc"}.la-mouse-pointer:before{content:"\f245"}.la-mug-hot:before{content:"\f7b6"}.la-music:before{content:"\f001"}.la-napster:before{content:"\f3d2"}.la-neos:before{content:"\f612"}.la-network-wired:before{content:"\f6ff"}.la-neuter:before{content:"\f22c"}.la-newspaper:before{content:"\f1ea"}.la-nimblr:before{content:"\f5a8"}.la-node:before{content:"\f419"}.la-node-js:before{content:"\f3d3"}.la-not-equal:before{content:"\f53e"}.la-notes-medical:before{content:"\f481"}.la-npm:before{content:"\f3d4"}.la-ns8:before{content:"\f3d5"}.la-nutritionix:before{content:"\f3d6"}.la-object-group:before{content:"\f247"}.la-object-ungroup:before{content:"\f248"}.la-odnoklassniki:before{content:"\f263"}.la-odnoklassniki-square:before{content:"\f264"}.la-oil-can:before{content:"\f613"}.la-old-republic:before{content:"\f510"}.la-om:before{content:"\f679"}.la-opencart:before{content:"\f23d"}.la-openid:before{content:"\f19b"}.la-opera:before{content:"\f26a"}.la-optin-monster:before{content:"\f23c"}.la-orcid:before{content:"\f8d2"}.la-osi:before{content:"\f41a"}.la-otter:before{content:"\f700"}.la-outdent:before{content:"\f03b"}.la-page4:before{content:"\f3d7"}.la-pagelines:before{content:"\f18c"}.la-pager:before{content:"\f815"}.la-paint-brush:before{content:"\f1fc"}.la-paint-roller:before{content:"\f5aa"}.la-palette:before{content:"\f53f"}.la-palfed:before{content:"\f3d8"}.la-pallet:before{content:"\f482"}.la-paper-plane:before{content:"\f1d8"}.la-paperclip:before{content:"\f0c6"}.la-parachute-box:before{content:"\f4cd"}.la-paragraph:before{content:"\f1dd"}.la-parking:before{content:"\f540"}.la-passport:before{content:"\f5ab"}.la-pastafarianism:before{content:"\f67b"}.la-paste:before{content:"\f0ea"}.la-patreon:before{content:"\f3d9"}.la-pause:before{content:"\f04c"}.la-pause-circle:before{content:"\f28b"}.la-paw:before{content:"\f1b0"}.la-paypal:before{content:"\f1ed"}.la-peace:before{content:"\f67c"}.la-pen:before{content:"\f304"}.la-pen-alt:before{content:"\f305"}.la-pen-fancy:before{content:"\f5ac"}.la-pen-nib:before{content:"\f5ad"}.la-pen-square:before{content:"\f14b"}.la-pencil-alt:before{content:"\f303"}.la-pencil-ruler:before{content:"\f5ae"}.la-penny-arcade:before{content:"\f704"}.la-people-carry:before{content:"\f4ce"}.la-pepper-hot:before{content:"\f816"}.la-percent:before{content:"\f295"}.la-percentage:before{content:"\f541"}.la-periscope:before{content:"\f3da"}.la-person-booth:before{content:"\f756"}.la-phabricator:before{content:"\f3db"}.la-phoenix-framework:before{content:"\f3dc"}.la-phoenix-squadron:before{content:"\f511"}.la-phone:before{content:"\f095"}.la-phone-alt:before{content:"\f879"}.la-phone-slash:before{content:"\f3dd"}.la-phone-square:before{content:"\f098"}.la-phone-square-alt:before{content:"\f87b"}.la-phone-volume:before{content:"\f2a0"}.la-photo-video:before{content:"\f87c"}.la-php:before{content:"\f457"}.la-pied-piper:before{content:"\f2ae"}.la-pied-piper-alt:before{content:"\f1a8"}.la-pied-piper-hat:before{content:"\f4e5"}.la-pied-piper-pp:before{content:"\f1a7"}.la-piggy-bank:before{content:"\f4d3"}.la-pills:before{content:"\f484"}.la-pinterest:before{content:"\f0d2"}.la-pinterest-p:before{content:"\f231"}.la-pinterest-square:before{content:"\f0d3"}.la-pizza-slice:before{content:"\f818"}.la-place-of-worship:before{content:"\f67f"}.la-plane:before{content:"\f072"}.la-plane-arrival:before{content:"\f5af"}.la-plane-departure:before{content:"\f5b0"}.la-play:before{content:"\f04b"}.la-play-circle:before{content:"\f144"}.la-playstation:before{content:"\f3df"}.la-plug:before{content:"\f1e6"}.la-plus:before{content:"\f067"}.la-plus-circle:before{content:"\f055"}.la-plus-square:before{content:"\f0fe"}.la-podcast:before{content:"\f2ce"}.la-poll:before{content:"\f681"}.la-poll-h:before{content:"\f682"}.la-poo:before{content:"\f2fe"}.la-poo-storm:before{content:"\f75a"}.la-poop:before{content:"\f619"}.la-portrait:before{content:"\f3e0"}.la-pound-sign:before{content:"\f154"}.la-power-off:before{content:"\f011"}.la-pray:before{content:"\f683"}.la-praying-hands:before{content:"\f684"}.la-prescription:before{content:"\f5b1"}.la-prescription-bottle:before{content:"\f485"}.la-prescription-bottle-alt:before{content:"\f486"}.la-print:before{content:"\f02f"}.la-procedures:before{content:"\f487"}.la-product-hunt:before{content:"\f288"}.la-project-diagram:before{content:"\f542"}.la-pushed:before{content:"\f3e1"}.la-puzzle-piece:before{content:"\f12e"}.la-python:before{content:"\f3e2"}.la-qq:before{content:"\f1d6"}.la-qrcode:before{content:"\f029"}.la-question:before{content:"\f128"}.la-question-circle:before{content:"\f059"}.la-quidditch:before{content:"\f458"}.la-quinscape:before{content:"\f459"}.la-quora:before{content:"\f2c4"}.la-quote-left:before{content:"\f10d"}.la-quote-right:before{content:"\f10e"}.la-quran:before{content:"\f687"}.la-r-project:before{content:"\f4f7"}.la-radiation:before{content:"\f7b9"}.la-radiation-alt:before{content:"\f7ba"}.la-rainbow:before{content:"\f75b"}.la-random:before{content:"\f074"}.la-raspberry-pi:before{content:"\f7bb"}.la-ravelry:before{content:"\f2d9"}.la-react:before{content:"\f41b"}.la-reacteurope:before{content:"\f75d"}.la-readme:before{content:"\f4d5"}.la-rebel:before{content:"\f1d0"}.la-receipt:before{content:"\f543"}.la-record-vinyl:before{content:"\f8d9"}.la-recycle:before{content:"\f1b8"}.la-red-river:before{content:"\f3e3"}.la-reddit:before{content:"\f1a1"}.la-reddit-alien:before{content:"\f281"}.la-reddit-square:before{content:"\f1a2"}.la-redhat:before{content:"\f7bc"}.la-redo:before{content:"\f01e"}.la-redo-alt:before{content:"\f2f9"}.la-registered:before{content:"\f25d"}.la-remove-format:before{content:"\f87d"}.la-renren:before{content:"\f18b"}.la-reply:before{content:"\f3e5"}.la-reply-all:before{content:"\f122"}.la-replyd:before{content:"\f3e6"}.la-republican:before{content:"\f75e"}.la-researchgate:before{content:"\f4f8"}.la-resolving:before{content:"\f3e7"}.la-restroom:before{content:"\f7bd"}.la-retweet:before{content:"\f079"}.la-rev:before{content:"\f5b2"}.la-ribbon:before{content:"\f4d6"}.la-ring:before{content:"\f70b"}.la-road:before{content:"\f018"}.la-robot:before{content:"\f544"}.la-rocket:before{content:"\f135"}.la-rocketchat:before{content:"\f3e8"}.la-rockrms:before{content:"\f3e9"}.la-route:before{content:"\f4d7"}.la-rss:before{content:"\f09e"}.la-rss-square:before{content:"\f143"}.la-ruble-sign:before{content:"\f158"}.la-ruler:before{content:"\f545"}.la-ruler-combined:before{content:"\f546"}.la-ruler-horizontal:before{content:"\f547"}.la-ruler-vertical:before{content:"\f548"}.la-running:before{content:"\f70c"}.la-rupee-sign:before{content:"\f156"}.la-sad-cry:before{content:"\f5b3"}.la-sad-tear:before{content:"\f5b4"}.la-safari:before{content:"\f267"}.la-salesforce:before{content:"\f83b"}.la-sass:before{content:"\f41e"}.la-satellite:before{content:"\f7bf"}.la-satellite-dish:before{content:"\f7c0"}.la-save:before{content:"\f0c7"}.la-schlix:before{content:"\f3ea"}.la-school:before{content:"\f549"}.la-screwdriver:before{content:"\f54a"}.la-scribd:before{content:"\f28a"}.la-scroll:before{content:"\f70e"}.la-sd-card:before{content:"\f7c2"}.la-search:before{content:"\f002"}.la-search-dollar:before{content:"\f688"}.la-search-location:before{content:"\f689"}.la-search-minus:before{content:"\f010"}.la-search-plus:before{content:"\f00e"}.la-searchengin:before{content:"\f3eb"}.la-seedling:before{content:"\f4d8"}.la-sellcast:before{content:"\f2da"}.la-sellsy:before{content:"\f213"}.la-server:before{content:"\f233"}.la-servicestack:before{content:"\f3ec"}.la-shapes:before{content:"\f61f"}.la-share:before{content:"\f064"}.la-share-alt:before{content:"\f1e0"}.la-share-alt-square:before{content:"\f1e1"}.la-share-square:before{content:"\f14d"}.la-shekel-sign:before{content:"\f20b"}.la-shield-alt:before{content:"\f3ed"}.la-ship:before{content:"\f21a"}.la-shipping-fast:before{content:"\f48b"}.la-shirtsinbulk:before{content:"\f214"}.la-shoe-prints:before{content:"\f54b"}.la-shopping-bag:before{content:"\f290"}.la-shopping-basket:before{content:"\f291"}.la-shopping-cart:before{content:"\f07a"}.la-shopware:before{content:"\f5b5"}.la-shower:before{content:"\f2cc"}.la-shuttle-van:before{content:"\f5b6"}.la-sign:before{content:"\f4d9"}.la-sign-in-alt:before{content:"\f2f6"}.la-sign-language:before{content:"\f2a7"}.la-sign-out-alt:before{content:"\f2f5"}.la-signal:before{content:"\f012"}.la-signature:before{content:"\f5b7"}.la-sim-card:before{content:"\f7c4"}.la-simplybuilt:before{content:"\f215"}.la-sistrix:before{content:"\f3ee"}.la-sitemap:before{content:"\f0e8"}.la-sith:before{content:"\f512"}.la-skating:before{content:"\f7c5"}.la-sketch:before{content:"\f7c6"}.la-skiing:before{content:"\f7c9"}.la-skiing-nordic:before{content:"\f7ca"}.la-skull:before{content:"\f54c"}.la-skull-crossbones:before{content:"\f714"}.la-skyatlas:before{content:"\f216"}.la-skype:before{content:"\f17e"}.la-slack:before{content:"\f198"}.la-slack-hash:before{content:"\f3ef"}.la-slash:before{content:"\f715"}.la-sleigh:before{content:"\f7cc"}.la-sliders-h:before{content:"\f1de"}.la-slideshare:before{content:"\f1e7"}.la-smile:before{content:"\f118"}.la-smile-beam:before{content:"\f5b8"}.la-smile-wink:before{content:"\f4da"}.la-smog:before{content:"\f75f"}.la-smoking:before{content:"\f48d"}.la-smoking-ban:before{content:"\f54d"}.la-sms:before{content:"\f7cd"}.la-snapchat:before{content:"\f2ab"}.la-snapchat-ghost:before{content:"\f2ac"}.la-snapchat-square:before{content:"\f2ad"}.la-snowboarding:before{content:"\f7ce"}.la-snowflake:before{content:"\f2dc"}.la-snowman:before{content:"\f7d0"}.la-snowplow:before{content:"\f7d2"}.la-socks:before{content:"\f696"}.la-solar-panel:before{content:"\f5ba"}.la-sort:before{content:"\f0dc"}.la-sort-alpha-down:before{content:"\f15d"}.la-sort-alpha-down-alt:before{content:"\f881"}.la-sort-alpha-up:before{content:"\f15e"}.la-sort-alpha-up-alt:before{content:"\f882"}.la-sort-amount-down:before{content:"\f160"}.la-sort-amount-down-alt:before{content:"\f884"}.la-sort-amount-up:before{content:"\f161"}.la-sort-amount-up-alt:before{content:"\f885"}.la-sort-down:before{content:"\f0dd"}.la-sort-numeric-down:before{content:"\f162"}.la-sort-numeric-down-alt:before{content:"\f886"}.la-sort-numeric-up:before{content:"\f163"}.la-sort-numeric-up-alt:before{content:"\f887"}.la-sort-up:before{content:"\f0de"}.la-soundcloud:before{content:"\f1be"}.la-sourcetree:before{content:"\f7d3"}.la-spa:before{content:"\f5bb"}.la-space-shuttle:before{content:"\f197"}.la-speakap:before{content:"\f3f3"}.la-speaker-deck:before{content:"\f83c"}.la-spell-check:before{content:"\f891"}.la-spider:before{content:"\f717"}.la-spinner:before{content:"\f110"}.la-splotch:before{content:"\f5bc"}.la-spotify:before{content:"\f1bc"}.la-spray-can:before{content:"\f5bd"}.la-square:before{content:"\f0c8"}.la-square-full:before{content:"\f45c"}.la-square-root-alt:before{content:"\f698"}.la-squarespace:before{content:"\f5be"}.la-stack-exchange:before{content:"\f18d"}.la-stack-overflow:before{content:"\f16c"}.la-stackpath:before{content:"\f842"}.la-stamp:before{content:"\f5bf"}.la-star:before{content:"\f005"}.la-star-and-crescent:before{content:"\f699"}.la-star-half:before{content:"\f089"}.la-star-half-alt:before{content:"\f5c0"}.la-star-of-david:before{content:"\f69a"}.la-star-of-life:before{content:"\f621"}.la-staylinked:before{content:"\f3f5"}.la-steam:before{content:"\f1b6"}.la-steam-square:before{content:"\f1b7"}.la-steam-symbol:before{content:"\f3f6"}.la-step-backward:before{content:"\f048"}.la-step-forward:before{content:"\f051"}.la-stethoscope:before{content:"\f0f1"}.la-sticker-mule:before{content:"\f3f7"}.la-sticky-note:before{content:"\f249"}.la-stop:before{content:"\f04d"}.la-stop-circle:before{content:"\f28d"}.la-stopwatch:before{content:"\f2f2"}.la-store:before{content:"\f54e"}.la-store-alt:before{content:"\f54f"}.la-strava:before{content:"\f428"}.la-stream:before{content:"\f550"}.la-street-view:before{content:"\f21d"}.la-strikethrough:before{content:"\f0cc"}.la-stripe:before{content:"\f429"}.la-stripe-s:before{content:"\f42a"}.la-stroopwafel:before{content:"\f551"}.la-studiovinari:before{content:"\f3f8"}.la-stumbleupon:before{content:"\f1a4"}.la-stumbleupon-circle:before{content:"\f1a3"}.la-subscript:before{content:"\f12c"}.la-subway:before{content:"\f239"}.la-suitcase:before{content:"\f0f2"}.la-suitcase-rolling:before{content:"\f5c1"}.la-sun:before{content:"\f185"}.la-superpowers:before{content:"\f2dd"}.la-superscript:before{content:"\f12b"}.la-supple:before{content:"\f3f9"}.la-surprise:before{content:"\f5c2"}.la-suse:before{content:"\f7d6"}.la-swatchbook:before{content:"\f5c3"}.la-swift:before{content:"\f8e1"}.la-swimmer:before{content:"\f5c4"}.la-swimming-pool:before{content:"\f5c5"}.la-symfony:before{content:"\f83d"}.la-synagogue:before{content:"\f69b"}.la-sync:before{content:"\f021"}.la-sync-alt:before{content:"\f2f1"}.la-syringe:before{content:"\f48e"}.la-table:before{content:"\f0ce"}.la-table-tennis:before{content:"\f45d"}.la-tablet:before{content:"\f10a"}.la-tablet-alt:before{content:"\f3fa"}.la-tablets:before{content:"\f490"}.la-tachometer-alt:before{content:"\f3fd"}.la-tag:before{content:"\f02b"}.la-tags:before{content:"\f02c"}.la-tape:before{content:"\f4db"}.la-tasks:before{content:"\f0ae"}.la-taxi:before{content:"\f1ba"}.la-teamspeak:before{content:"\f4f9"}.la-teeth:before{content:"\f62e"}.la-teeth-open:before{content:"\f62f"}.la-telegram:before{content:"\f2c6"}.la-telegram-plane:before{content:"\f3fe"}.la-temperature-high:before{content:"\f769"}.la-temperature-low:before{content:"\f76b"}.la-tencent-weibo:before{content:"\f1d5"}.la-tenge:before{content:"\f7d7"}.la-terminal:before{content:"\f120"}.la-text-height:before{content:"\f034"}.la-text-width:before{content:"\f035"}.la-th:before{content:"\f00a"}.la-th-large:before{content:"\f009"}.la-th-list:before{content:"\f00b"}.la-the-red-yeti:before{content:"\f69d"}.la-theater-masks:before{content:"\f630"}.la-themeco:before{content:"\f5c6"}.la-themeisle:before{content:"\f2b2"}.la-thermometer:before{content:"\f491"}.la-thermometer-empty:before{content:"\f2cb"}.la-thermometer-full:before{content:"\f2c7"}.la-thermometer-half:before{content:"\f2c9"}.la-thermometer-quarter:before{content:"\f2ca"}.la-thermometer-three-quarters:before{content:"\f2c8"}.la-think-peaks:before{content:"\f731"}.la-thumbs-down:before{content:"\f165"}.la-thumbs-up:before{content:"\f164"}.la-thumbtack:before{content:"\f08d"}.la-ticket-alt:before{content:"\f3ff"}.la-times:before{content:"\f00d"}.la-times-circle:before{content:"\f057"}.la-tint:before{content:"\f043"}.la-tint-slash:before{content:"\f5c7"}.la-tired:before{content:"\f5c8"}.la-toggle-off:before{content:"\f204"}.la-toggle-on:before{content:"\f205"}.la-toilet:before{content:"\f7d8"}.la-toilet-paper:before{content:"\f71e"}.la-toolbox:before{content:"\f552"}.la-tools:before{content:"\f7d9"}.la-tooth:before{content:"\f5c9"}.la-torah:before{content:"\f6a0"}.la-torii-gate:before{content:"\f6a1"}.la-tractor:before{content:"\f722"}.la-trade-federation:before{content:"\f513"}.la-trademark:before{content:"\f25c"}.la-traffic-light:before{content:"\f637"}.la-train:before{content:"\f238"}.la-tram:before{content:"\f7da"}.la-transgender:before{content:"\f224"}.la-transgender-alt:before{content:"\f225"}.la-trash:before{content:"\f1f8"}.la-trash-alt:before{content:"\f2ed"}.la-trash-restore:before{content:"\f829"}.la-trash-restore-alt:before{content:"\f82a"}.la-tree:before{content:"\f1bb"}.la-trello:before{content:"\f181"}.la-tripadvisor:before{content:"\f262"}.la-trophy:before{content:"\f091"}.la-truck:before{content:"\f0d1"}.la-truck-loading:before{content:"\f4de"}.la-truck-monster:before{content:"\f63b"}.la-truck-moving:before{content:"\f4df"}.la-truck-pickup:before{content:"\f63c"}.la-tshirt:before{content:"\f553"}.la-tty:before{content:"\f1e4"}.la-tumblr:before{content:"\f173"}.la-tumblr-square:before{content:"\f174"}.la-tv:before{content:"\f26c"}.la-twitch:before{content:"\f1e8"}.la-twitter:before{content:"\f099"}.la-twitter-square:before{content:"\f081"}.la-typo3:before{content:"\f42b"}.la-uber:before{content:"\f402"}.la-ubuntu:before{content:"\f7df"}.la-uikit:before{content:"\f403"}.la-umbraco:before{content:"\f8e8"}.la-umbrella:before{content:"\f0e9"}.la-umbrella-beach:before{content:"\f5ca"}.la-underline:before{content:"\f0cd"}.la-undo:before{content:"\f0e2"}.la-undo-alt:before{content:"\f2ea"}.la-uniregistry:before{content:"\f404"}.la-universal-access:before{content:"\f29a"}.la-university:before{content:"\f19c"}.la-unlink:before{content:"\f127"}.la-unlock:before{content:"\f09c"}.la-unlock-alt:before{content:"\f13e"}.la-untappd:before{content:"\f405"}.la-upload:before{content:"\f093"}.la-ups:before{content:"\f7e0"}.la-usb:before{content:"\f287"}.la-user:before{content:"\f007"}.la-user-alt:before{content:"\f406"}.la-user-alt-slash:before{content:"\f4fa"}.la-user-astronaut:before{content:"\f4fb"}.la-user-check:before{content:"\f4fc"}.la-user-circle:before{content:"\f2bd"}.la-user-clock:before{content:"\f4fd"}.la-user-cog:before{content:"\f4fe"}.la-user-edit:before{content:"\f4ff"}.la-user-friends:before{content:"\f500"}.la-user-graduate:before{content:"\f501"}.la-user-injured:before{content:"\f728"}.la-user-lock:before{content:"\f502"}.la-user-md:before{content:"\f0f0"}.la-user-minus:before{content:"\f503"}.la-user-ninja:before{content:"\f504"}.la-user-nurse:before{content:"\f82f"}.la-user-plus:before{content:"\f234"}.la-user-secret:before{content:"\f21b"}.la-user-shield:before{content:"\f505"}.la-user-slash:before{content:"\f506"}.la-user-tag:before{content:"\f507"}.la-user-tie:before{content:"\f508"}.la-user-times:before{content:"\f235"}.la-users:before{content:"\f0c0"}.la-users-cog:before{content:"\f509"}.la-usps:before{content:"\f7e1"}.la-ussunnah:before{content:"\f407"}.la-utensil-spoon:before{content:"\f2e5"}.la-utensils:before{content:"\f2e7"}.la-vaadin:before{content:"\f408"}.la-vector-square:before{content:"\f5cb"}.la-venus:before{content:"\f221"}.la-venus-double:before{content:"\f226"}.la-venus-mars:before{content:"\f228"}.la-viacoin:before{content:"\f237"}.la-viadeo:before{content:"\f2a9"}.la-viadeo-square:before{content:"\f2aa"}.la-vial:before{content:"\f492"}.la-vials:before{content:"\f493"}.la-viber:before{content:"\f409"}.la-video:before{content:"\f03d"}.la-video-slash:before{content:"\f4e2"}.la-vihara:before{content:"\f6a7"}.la-vimeo:before{content:"\f40a"}.la-vimeo-square:before{content:"\f194"}.la-vimeo-v:before{content:"\f27d"}.la-vine:before{content:"\f1ca"}.la-vk:before{content:"\f189"}.la-vnv:before{content:"\f40b"}.la-voicemail:before{content:"\f897"}.la-volleyball-ball:before{content:"\f45f"}.la-volume-down:before{content:"\f027"}.la-volume-mute:before{content:"\f6a9"}.la-volume-off:before{content:"\f026"}.la-volume-up:before{content:"\f028"}.la-vote-yea:before{content:"\f772"}.la-vr-cardboard:before{content:"\f729"}.la-vuejs:before{content:"\f41f"}.la-walking:before{content:"\f554"}.la-wallet:before{content:"\f555"}.la-warehouse:before{content:"\f494"}.la-water:before{content:"\f773"}.la-wave-square:before{content:"\f83e"}.la-waze:before{content:"\f83f"}.la-weebly:before{content:"\f5cc"}.la-weibo:before{content:"\f18a"}.la-weight:before{content:"\f496"}.la-weight-hanging:before{content:"\f5cd"}.la-weixin:before{content:"\f1d7"}.la-whatsapp:before{content:"\f232"}.la-whatsapp-square:before{content:"\f40c"}.la-wheelchair:before{content:"\f193"}.la-whmcs:before{content:"\f40d"}.la-wifi:before{content:"\f1eb"}.la-wikipedia-w:before{content:"\f266"}.la-wind:before{content:"\f72e"}.la-window-close:before{content:"\f410"}.la-window-maximize:before{content:"\f2d0"}.la-window-minimize:before{content:"\f2d1"}.la-window-restore:before{content:"\f2d2"}.la-windows:before{content:"\f17a"}.la-wine-bottle:before{content:"\f72f"}.la-wine-glass:before{content:"\f4e3"}.la-wine-glass-alt:before{content:"\f5ce"}.la-wix:before{content:"\f5cf"}.la-wizards-of-the-coast:before{content:"\f730"}.la-wolf-pack-battalion:before{content:"\f514"}.la-won-sign:before{content:"\f159"}.la-wordpress:before{content:"\f19a"}.la-wordpress-simple:before{content:"\f411"}.la-wpbeginner:before{content:"\f297"}.la-wpexplorer:before{content:"\f2de"}.la-wpforms:before{content:"\f298"}.la-wpressr:before{content:"\f3e4"}.la-wrench:before{content:"\f0ad"}.la-x-ray:before{content:"\f497"}.la-xbox:before{content:"\f412"}.la-xing:before{content:"\f168"}.la-xing-square:before{content:"\f169"}.la-y-combinator:before{content:"\f23b"}.la-yahoo:before{content:"\f19e"}.la-yammer:before{content:"\f840"}.la-yandex:before{content:"\f413"}.la-yandex-international:before{content:"\f414"}.la-yarn:before{content:"\f7e3"}.la-yelp:before{content:"\f1e9"}.la-yen-sign:before{content:"\f157"}.la-yin-yang:before{content:"\f6ad"}.la-yoast:before{content:"\f2b1"}.la-youtube:before{content:"\f167"}.la-youtube-square:before{content:"\f431"}.la-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:'Line Awesome Brands';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/la-brands-400.eot);src:url(../fonts/la-brands-400.eot?#iefix) format("embedded-opentype"),url(../fonts/la-brands-400.woff2) format("woff2"),url(../fonts/la-brands-400.woff) format("woff"),url(../fonts/la-brands-400.ttf) format("truetype"),url(../fonts/la-brands-400.svg#lineawesome) format("svg")}.lab{font-family:'Line Awesome Brands'}@font-face{font-family:'Line Awesome Free';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/la-regular-400.eot);src:url(../fonts/la-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/la-regular-400.woff2) format("woff2"),url(../fonts/la-regular-400.woff) format("woff"),url(../fonts/la-regular-400.ttf) format("truetype"),url(../fonts/la-regular-400.svg#lineawesome) format("svg")}.lar{font-family:'Line Awesome Free';font-weight:400}@font-face{font-family:'Line Awesome Free';font-style:normal;font-weight:900;font-display:swap;src:url(../fonts/la-solid-900.eot);src:url(../fonts/la-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/la-solid-900.woff2) format("woff2"),url(../fonts/la-solid-900.woff) format("woff"),url(../fonts/la-solid-900.ttf) format("truetype"),url(../fonts/la-solid-900.svg#lineawesome) format("svg")}.la,.las{font-family:'Line Awesome Free';font-weight:900}.la.la-glass:before{content:"\f000"}.la.la-meetup{font-family:'Line Awesome Brands';font-weight:400}.la.la-star-o{font-family:'Line Awesome Free';font-weight:400}.la.la-star-o:before{content:"\f005"}.la.la-remove:before{content:"\f00d"}.la.la-close:before{content:"\f00d"}.la.la-gear:before{content:"\f013"}.la.la-trash-o{font-family:'Line Awesome Free';font-weight:400}.la.la-trash-o:before{content:"\f2ed"}.la.la-file-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-o:before{content:"\f15b"}.la.la-clock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-clock-o:before{content:"\f017"}.la.la-arrow-circle-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-down:before{content:"\f358"}.la.la-arrow-circle-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-up:before{content:"\f35b"}.la.la-play-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-play-circle-o:before{content:"\f144"}.la.la-repeat:before{content:"\f01e"}.la.la-rotate-right:before{content:"\f01e"}.la.la-refresh:before{content:"\f021"}.la.la-list-alt{font-family:'Line Awesome Free';font-weight:400}.la.la-dedent:before{content:"\f03b"}.la.la-video-camera:before{content:"\f03d"}.la.la-picture-o{font-family:'Line Awesome Free';font-weight:400}.la.la-picture-o:before{content:"\f03e"}.la.la-photo{font-family:'Line Awesome Free';font-weight:400}.la.la-photo:before{content:"\f03e"}.la.la-image{font-family:'Line Awesome Free';font-weight:400}.la.la-image:before{content:"\f03e"}.la.la-pencil:before{content:"\f303"}.la.la-map-marker:before{content:"\f3c5"}.la.la-pencil-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-pencil-square-o:before{content:"\f044"}.la.la-share-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-share-square-o:before{content:"\f14d"}.la.la-check-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-check-square-o:before{content:"\f14a"}.la.la-arrows:before{content:"\f0b2"}.la.la-times-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-times-circle-o:before{content:"\f057"}.la.la-check-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-check-circle-o:before{content:"\f058"}.la.la-mail-forward:before{content:"\f064"}.la.la-eye{font-family:'Line Awesome Free';font-weight:400}.la.la-eye-slash{font-family:'Line Awesome Free';font-weight:400}.la.la-warning:before{content:"\f071"}.la.la-calendar:before{content:"\f073"}.la.la-arrows-v:before{content:"\f338"}.la.la-arrows-h:before{content:"\f337"}.la.la-bar-chart{font-family:'Line Awesome Free';font-weight:400}.la.la-bar-chart:before{content:"\f080"}.la.la-bar-chart-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bar-chart-o:before{content:"\f080"}.la.la-twitter-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-gears:before{content:"\f085"}.la.la-thumbs-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-thumbs-o-up:before{content:"\f164"}.la.la-thumbs-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-thumbs-o-down:before{content:"\f165"}.la.la-heart-o{font-family:'Line Awesome Free';font-weight:400}.la.la-heart-o:before{content:"\f004"}.la.la-sign-out:before{content:"\f2f5"}.la.la-linkedin-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-linkedin-square:before{content:"\f08c"}.la.la-thumb-tack:before{content:"\f08d"}.la.la-external-link:before{content:"\f35d"}.la.la-sign-in:before{content:"\f2f6"}.la.la-github-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-lemon-o{font-family:'Line Awesome Free';font-weight:400}.la.la-lemon-o:before{content:"\f094"}.la.la-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-square-o:before{content:"\f0c8"}.la.la-bookmark-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bookmark-o:before{content:"\f02e"}.la.la-twitter{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook:before{content:"\f39e"}.la.la-facebook-f{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-f:before{content:"\f39e"}.la.la-github{font-family:'Line Awesome Brands';font-weight:400}.la.la-credit-card{font-family:'Line Awesome Free';font-weight:400}.la.la-feed:before{content:"\f09e"}.la.la-hdd-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hdd-o:before{content:"\f0a0"}.la.la-hand-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-right:before{content:"\f0a4"}.la.la-hand-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-left:before{content:"\f0a5"}.la.la-hand-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-up:before{content:"\f0a6"}.la.la-hand-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-o-down:before{content:"\f0a7"}.la.la-arrows-alt:before{content:"\f31e"}.la.la-group:before{content:"\f0c0"}.la.la-chain:before{content:"\f0c1"}.la.la-scissors:before{content:"\f0c4"}.la.la-files-o{font-family:'Line Awesome Free';font-weight:400}.la.la-files-o:before{content:"\f0c5"}.la.la-floppy-o{font-family:'Line Awesome Free';font-weight:400}.la.la-floppy-o:before{content:"\f0c7"}.la.la-navicon:before{content:"\f0c9"}.la.la-reorder:before{content:"\f0c9"}.la.la-pinterest{font-family:'Line Awesome Brands';font-weight:400}.la.la-pinterest-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus:before{content:"\f0d5"}.la.la-money{font-family:'Line Awesome Free';font-weight:400}.la.la-money:before{content:"\f3d1"}.la.la-unsorted:before{content:"\f0dc"}.la.la-sort-desc:before{content:"\f0dd"}.la.la-sort-asc:before{content:"\f0de"}.la.la-linkedin{font-family:'Line Awesome Brands';font-weight:400}.la.la-linkedin:before{content:"\f0e1"}.la.la-rotate-left:before{content:"\f0e2"}.la.la-legal:before{content:"\f0e3"}.la.la-tachometer:before{content:"\f3fd"}.la.la-dashboard:before{content:"\f3fd"}.la.la-comment-o{font-family:'Line Awesome Free';font-weight:400}.la.la-comment-o:before{content:"\f075"}.la.la-comments-o{font-family:'Line Awesome Free';font-weight:400}.la.la-comments-o:before{content:"\f086"}.la.la-flash:before{content:"\f0e7"}.la.la-clipboard{font-family:'Line Awesome Free';font-weight:400}.la.la-paste{font-family:'Line Awesome Free';font-weight:400}.la.la-paste:before{content:"\f328"}.la.la-lightbulb-o{font-family:'Line Awesome Free';font-weight:400}.la.la-lightbulb-o:before{content:"\f0eb"}.la.la-exchange:before{content:"\f362"}.la.la-cloud-download:before{content:"\f381"}.la.la-cloud-upload:before{content:"\f382"}.la.la-bell-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bell-o:before{content:"\f0f3"}.la.la-cutlery:before{content:"\f2e7"}.la.la-file-text-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-text-o:before{content:"\f15c"}.la.la-building-o{font-family:'Line Awesome Free';font-weight:400}.la.la-building-o:before{content:"\f1ad"}.la.la-hospital-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hospital-o:before{content:"\f0f8"}.la.la-tablet:before{content:"\f3fa"}.la.la-mobile:before{content:"\f3cd"}.la.la-mobile-phone:before{content:"\f3cd"}.la.la-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-circle-o:before{content:"\f111"}.la.la-mail-reply:before{content:"\f3e5"}.la.la-github-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-folder-o{font-family:'Line Awesome Free';font-weight:400}.la.la-folder-o:before{content:"\f07b"}.la.la-folder-open-o{font-family:'Line Awesome Free';font-weight:400}.la.la-folder-open-o:before{content:"\f07c"}.la.la-smile-o{font-family:'Line Awesome Free';font-weight:400}.la.la-smile-o:before{content:"\f118"}.la.la-frown-o{font-family:'Line Awesome Free';font-weight:400}.la.la-frown-o:before{content:"\f119"}.la.la-meh-o{font-family:'Line Awesome Free';font-weight:400}.la.la-meh-o:before{content:"\f11a"}.la.la-keyboard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-keyboard-o:before{content:"\f11c"}.la.la-flag-o{font-family:'Line Awesome Free';font-weight:400}.la.la-flag-o:before{content:"\f024"}.la.la-mail-reply-all:before{content:"\f122"}.la.la-star-half-o{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-o:before{content:"\f089"}.la.la-star-half-empty{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-empty:before{content:"\f089"}.la.la-star-half-full{font-family:'Line Awesome Free';font-weight:400}.la.la-star-half-full:before{content:"\f089"}.la.la-code-fork:before{content:"\f126"}.la.la-chain-broken:before{content:"\f127"}.la.la-shield:before{content:"\f3ed"}.la.la-calendar-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-o:before{content:"\f133"}.la.la-maxcdn{font-family:'Line Awesome Brands';font-weight:400}.la.la-html5{font-family:'Line Awesome Brands';font-weight:400}.la.la-css3{font-family:'Line Awesome Brands';font-weight:400}.la.la-ticket:before{content:"\f3ff"}.la.la-minus-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-minus-square-o:before{content:"\f146"}.la.la-level-up:before{content:"\f3bf"}.la.la-level-down:before{content:"\f3be"}.la.la-pencil-square:before{content:"\f14b"}.la.la-external-link-square:before{content:"\f360"}.la.la-compass{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-down{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-down:before{content:"\f150"}.la.la-toggle-down{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-down:before{content:"\f150"}.la.la-caret-square-o-up{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-up:before{content:"\f151"}.la.la-toggle-up{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-up:before{content:"\f151"}.la.la-caret-square-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-right:before{content:"\f152"}.la.la-toggle-right{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-right:before{content:"\f152"}.la.la-eur:before{content:"\f153"}.la.la-euro:before{content:"\f153"}.la.la-gbp:before{content:"\f154"}.la.la-usd:before{content:"\f155"}.la.la-dollar:before{content:"\f155"}.la.la-inr:before{content:"\f156"}.la.la-rupee:before{content:"\f156"}.la.la-jpy:before{content:"\f157"}.la.la-cny:before{content:"\f157"}.la.la-rmb:before{content:"\f157"}.la.la-yen:before{content:"\f157"}.la.la-rub:before{content:"\f158"}.la.la-ruble:before{content:"\f158"}.la.la-rouble:before{content:"\f158"}.la.la-krw:before{content:"\f159"}.la.la-won:before{content:"\f159"}.la.la-btc{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitcoin{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitcoin:before{content:"\f15a"}.la.la-file-text:before{content:"\f15c"}.la.la-sort-alpha-asc:before{content:"\f15d"}.la.la-sort-alpha-desc:before{content:"\f881"}.la.la-sort-amount-asc:before{content:"\f160"}.la.la-sort-amount-desc:before{content:"\f884"}.la.la-sort-numeric-asc:before{content:"\f162"}.la.la-sort-numeric-desc:before{content:"\f886"}.la.la-youtube-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube{font-family:'Line Awesome Brands';font-weight:400}.la.la-xing{font-family:'Line Awesome Brands';font-weight:400}.la.la-xing-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube-play{font-family:'Line Awesome Brands';font-weight:400}.la.la-youtube-play:before{content:"\f167"}.la.la-dropbox{font-family:'Line Awesome Brands';font-weight:400}.la.la-stack-overflow{font-family:'Line Awesome Brands';font-weight:400}.la.la-instagram{font-family:'Line Awesome Brands';font-weight:400}.la.la-flickr{font-family:'Line Awesome Brands';font-weight:400}.la.la-adn{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-bitbucket-square:before{content:"\f171"}.la.la-tumblr{font-family:'Line Awesome Brands';font-weight:400}.la.la-tumblr-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-long-arrow-down:before{content:"\f309"}.la.la-long-arrow-up:before{content:"\f30c"}.la.la-long-arrow-left:before{content:"\f30a"}.la.la-long-arrow-right:before{content:"\f30b"}.la.la-apple{font-family:'Line Awesome Brands';font-weight:400}.la.la-windows{font-family:'Line Awesome Brands';font-weight:400}.la.la-android{font-family:'Line Awesome Brands';font-weight:400}.la.la-linux{font-family:'Line Awesome Brands';font-weight:400}.la.la-dribbble{font-family:'Line Awesome Brands';font-weight:400}.la.la-skype{font-family:'Line Awesome Brands';font-weight:400}.la.la-foursquare{font-family:'Line Awesome Brands';font-weight:400}.la.la-trello{font-family:'Line Awesome Brands';font-weight:400}.la.la-gratipay{font-family:'Line Awesome Brands';font-weight:400}.la.la-gittip{font-family:'Line Awesome Brands';font-weight:400}.la.la-gittip:before{content:"\f184"}.la.la-sun-o{font-family:'Line Awesome Free';font-weight:400}.la.la-sun-o:before{content:"\f185"}.la.la-moon-o{font-family:'Line Awesome Free';font-weight:400}.la.la-moon-o:before{content:"\f186"}.la.la-vk{font-family:'Line Awesome Brands';font-weight:400}.la.la-weibo{font-family:'Line Awesome Brands';font-weight:400}.la.la-renren{font-family:'Line Awesome Brands';font-weight:400}.la.la-pagelines{font-family:'Line Awesome Brands';font-weight:400}.la.la-stack-exchange{font-family:'Line Awesome Brands';font-weight:400}.la.la-arrow-circle-o-right{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-right:before{content:"\f35a"}.la.la-arrow-circle-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-arrow-circle-o-left:before{content:"\f359"}.la.la-caret-square-o-left{font-family:'Line Awesome Free';font-weight:400}.la.la-caret-square-o-left:before{content:"\f191"}.la.la-toggle-left{font-family:'Line Awesome Free';font-weight:400}.la.la-toggle-left:before{content:"\f191"}.la.la-dot-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-dot-circle-o:before{content:"\f192"}.la.la-vimeo-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-try:before{content:"\f195"}.la.la-turkish-lira:before{content:"\f195"}.la.la-plus-square-o{font-family:'Line Awesome Free';font-weight:400}.la.la-plus-square-o:before{content:"\f0fe"}.la.la-slack{font-family:'Line Awesome Brands';font-weight:400}.la.la-wordpress{font-family:'Line Awesome Brands';font-weight:400}.la.la-openid{font-family:'Line Awesome Brands';font-weight:400}.la.la-institution:before{content:"\f19c"}.la.la-bank:before{content:"\f19c"}.la.la-mortar-board:before{content:"\f19d"}.la.la-yahoo{font-family:'Line Awesome Brands';font-weight:400}.la.la-google{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-stumbleupon-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-stumbleupon{font-family:'Line Awesome Brands';font-weight:400}.la.la-delicious{font-family:'Line Awesome Brands';font-weight:400}.la.la-digg{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper-pp{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-drupal{font-family:'Line Awesome Brands';font-weight:400}.la.la-joomla{font-family:'Line Awesome Brands';font-weight:400}.la.la-spoon:before{content:"\f2e5"}.la.la-behance{font-family:'Line Awesome Brands';font-weight:400}.la.la-behance-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-steam{font-family:'Line Awesome Brands';font-weight:400}.la.la-steam-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-automobile:before{content:"\f1b9"}.la.la-cab:before{content:"\f1ba"}.la.la-envelope-o{font-family:'Line Awesome Free';font-weight:400}.la.la-envelope-o:before{content:"\f0e0"}.la.la-deviantart{font-family:'Line Awesome Brands';font-weight:400}.la.la-soundcloud{font-family:'Line Awesome Brands';font-weight:400}.la.la-file-pdf-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-pdf-o:before{content:"\f1c1"}.la.la-file-word-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-word-o:before{content:"\f1c2"}.la.la-file-excel-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-excel-o:before{content:"\f1c3"}.la.la-file-powerpoint-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-powerpoint-o:before{content:"\f1c4"}.la.la-file-image-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-image-o:before{content:"\f1c5"}.la.la-file-photo-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-photo-o:before{content:"\f1c5"}.la.la-file-picture-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-picture-o:before{content:"\f1c5"}.la.la-file-archive-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-archive-o:before{content:"\f1c6"}.la.la-file-zip-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-zip-o:before{content:"\f1c6"}.la.la-file-audio-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-audio-o:before{content:"\f1c7"}.la.la-file-sound-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-sound-o:before{content:"\f1c7"}.la.la-file-video-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-video-o:before{content:"\f1c8"}.la.la-file-movie-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-movie-o:before{content:"\f1c8"}.la.la-file-code-o{font-family:'Line Awesome Free';font-weight:400}.la.la-file-code-o:before{content:"\f1c9"}.la.la-vine{font-family:'Line Awesome Brands';font-weight:400}.la.la-codepen{font-family:'Line Awesome Brands';font-weight:400}.la.la-jsfiddle{font-family:'Line Awesome Brands';font-weight:400}.la.la-life-ring{font-family:'Line Awesome Free';font-weight:400}.la.la-life-bouy{font-family:'Line Awesome Free';font-weight:400}.la.la-life-bouy:before{content:"\f1cd"}.la.la-life-buoy{font-family:'Line Awesome Free';font-weight:400}.la.la-life-buoy:before{content:"\f1cd"}.la.la-life-saver{font-family:'Line Awesome Free';font-weight:400}.la.la-life-saver:before{content:"\f1cd"}.la.la-support{font-family:'Line Awesome Free';font-weight:400}.la.la-support:before{content:"\f1cd"}.la.la-circle-o-notch:before{content:"\f1ce"}.la.la-rebel{font-family:'Line Awesome Brands';font-weight:400}.la.la-ra{font-family:'Line Awesome Brands';font-weight:400}.la.la-ra:before{content:"\f1d0"}.la.la-resistance{font-family:'Line Awesome Brands';font-weight:400}.la.la-resistance:before{content:"\f1d0"}.la.la-empire{font-family:'Line Awesome Brands';font-weight:400}.la.la-ge{font-family:'Line Awesome Brands';font-weight:400}.la.la-ge:before{content:"\f1d1"}.la.la-git-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-git{font-family:'Line Awesome Brands';font-weight:400}.la.la-hacker-news{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator-square:before{content:"\f1d4"}.la.la-yc-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc-square:before{content:"\f1d4"}.la.la-tencent-weibo{font-family:'Line Awesome Brands';font-weight:400}.la.la-qq{font-family:'Line Awesome Brands';font-weight:400}.la.la-weixin{font-family:'Line Awesome Brands';font-weight:400}.la.la-wechat{font-family:'Line Awesome Brands';font-weight:400}.la.la-wechat:before{content:"\f1d7"}.la.la-send:before{content:"\f1d8"}.la.la-paper-plane-o{font-family:'Line Awesome Free';font-weight:400}.la.la-paper-plane-o:before{content:"\f1d8"}.la.la-send-o{font-family:'Line Awesome Free';font-weight:400}.la.la-send-o:before{content:"\f1d8"}.la.la-circle-thin{font-family:'Line Awesome Free';font-weight:400}.la.la-circle-thin:before{content:"\f111"}.la.la-header:before{content:"\f1dc"}.la.la-sliders:before{content:"\f1de"}.la.la-futbol-o{font-family:'Line Awesome Free';font-weight:400}.la.la-futbol-o:before{content:"\f1e3"}.la.la-soccer-ball-o{font-family:'Line Awesome Free';font-weight:400}.la.la-soccer-ball-o:before{content:"\f1e3"}.la.la-slideshare{font-family:'Line Awesome Brands';font-weight:400}.la.la-twitch{font-family:'Line Awesome Brands';font-weight:400}.la.la-yelp{font-family:'Line Awesome Brands';font-weight:400}.la.la-newspaper-o{font-family:'Line Awesome Free';font-weight:400}.la.la-newspaper-o:before{content:"\f1ea"}.la.la-paypal{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-wallet{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-visa{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-mastercard{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-discover{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-amex{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-paypal{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-stripe{font-family:'Line Awesome Brands';font-weight:400}.la.la-bell-slash-o{font-family:'Line Awesome Free';font-weight:400}.la.la-bell-slash-o:before{content:"\f1f6"}.la.la-trash:before{content:"\f2ed"}.la.la-copyright{font-family:'Line Awesome Free';font-weight:400}.la.la-eyedropper:before{content:"\f1fb"}.la.la-area-chart:before{content:"\f1fe"}.la.la-pie-chart:before{content:"\f200"}.la.la-line-chart:before{content:"\f201"}.la.la-lastfm{font-family:'Line Awesome Brands';font-weight:400}.la.la-lastfm-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-ioxhost{font-family:'Line Awesome Brands';font-weight:400}.la.la-angellist{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc{font-family:'Line Awesome Free';font-weight:400}.la.la-cc:before{content:"\f20a"}.la.la-ils:before{content:"\f20b"}.la.la-shekel:before{content:"\f20b"}.la.la-sheqel:before{content:"\f20b"}.la.la-meanpath{font-family:'Line Awesome Brands';font-weight:400}.la.la-meanpath:before{content:"\f2b4"}.la.la-buysellads{font-family:'Line Awesome Brands';font-weight:400}.la.la-connectdevelop{font-family:'Line Awesome Brands';font-weight:400}.la.la-dashcube{font-family:'Line Awesome Brands';font-weight:400}.la.la-forumbee{font-family:'Line Awesome Brands';font-weight:400}.la.la-leanpub{font-family:'Line Awesome Brands';font-weight:400}.la.la-sellsy{font-family:'Line Awesome Brands';font-weight:400}.la.la-shirtsinbulk{font-family:'Line Awesome Brands';font-weight:400}.la.la-simplybuilt{font-family:'Line Awesome Brands';font-weight:400}.la.la-skyatlas{font-family:'Line Awesome Brands';font-weight:400}.la.la-diamond{font-family:'Line Awesome Free';font-weight:400}.la.la-diamond:before{content:"\f3a5"}.la.la-intersex:before{content:"\f224"}.la.la-facebook-official{font-family:'Line Awesome Brands';font-weight:400}.la.la-facebook-official:before{content:"\f09a"}.la.la-pinterest-p{font-family:'Line Awesome Brands';font-weight:400}.la.la-whatsapp{font-family:'Line Awesome Brands';font-weight:400}.la.la-hotel:before{content:"\f236"}.la.la-viacoin{font-family:'Line Awesome Brands';font-weight:400}.la.la-medium{font-family:'Line Awesome Brands';font-weight:400}.la.la-y-combinator{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc{font-family:'Line Awesome Brands';font-weight:400}.la.la-yc:before{content:"\f23b"}.la.la-optin-monster{font-family:'Line Awesome Brands';font-weight:400}.la.la-opencart{font-family:'Line Awesome Brands';font-weight:400}.la.la-expeditedssl{font-family:'Line Awesome Brands';font-weight:400}.la.la-battery-4:before{content:"\f240"}.la.la-battery:before{content:"\f240"}.la.la-battery-3:before{content:"\f241"}.la.la-battery-2:before{content:"\f242"}.la.la-battery-1:before{content:"\f243"}.la.la-battery-0:before{content:"\f244"}.la.la-object-group{font-family:'Line Awesome Free';font-weight:400}.la.la-object-ungroup{font-family:'Line Awesome Free';font-weight:400}.la.la-sticky-note-o{font-family:'Line Awesome Free';font-weight:400}.la.la-sticky-note-o:before{content:"\f249"}.la.la-cc-jcb{font-family:'Line Awesome Brands';font-weight:400}.la.la-cc-diners-club{font-family:'Line Awesome Brands';font-weight:400}.la.la-clone{font-family:'Line Awesome Free';font-weight:400}.la.la-hourglass-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hourglass-o:before{content:"\f254"}.la.la-hourglass-1:before{content:"\f251"}.la.la-hourglass-2:before{content:"\f252"}.la.la-hourglass-3:before{content:"\f253"}.la.la-hand-rock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-rock-o:before{content:"\f255"}.la.la-hand-grab-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-grab-o:before{content:"\f255"}.la.la-hand-paper-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-paper-o:before{content:"\f256"}.la.la-hand-stop-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-stop-o:before{content:"\f256"}.la.la-hand-scissors-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-scissors-o:before{content:"\f257"}.la.la-hand-lizard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-lizard-o:before{content:"\f258"}.la.la-hand-spock-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-spock-o:before{content:"\f259"}.la.la-hand-pointer-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-pointer-o:before{content:"\f25a"}.la.la-hand-peace-o{font-family:'Line Awesome Free';font-weight:400}.la.la-hand-peace-o:before{content:"\f25b"}.la.la-registered{font-family:'Line Awesome Free';font-weight:400}.la.la-creative-commons{font-family:'Line Awesome Brands';font-weight:400}.la.la-gg{font-family:'Line Awesome Brands';font-weight:400}.la.la-gg-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-tripadvisor{font-family:'Line Awesome Brands';font-weight:400}.la.la-odnoklassniki{font-family:'Line Awesome Brands';font-weight:400}.la.la-odnoklassniki-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-get-pocket{font-family:'Line Awesome Brands';font-weight:400}.la.la-wikipedia-w{font-family:'Line Awesome Brands';font-weight:400}.la.la-safari{font-family:'Line Awesome Brands';font-weight:400}.la.la-chrome{font-family:'Line Awesome Brands';font-weight:400}.la.la-firefox{font-family:'Line Awesome Brands';font-weight:400}.la.la-opera{font-family:'Line Awesome Brands';font-weight:400}.la.la-internet-explorer{font-family:'Line Awesome Brands';font-weight:400}.la.la-television:before{content:"\f26c"}.la.la-contao{font-family:'Line Awesome Brands';font-weight:400}.la.la-500px{font-family:'Line Awesome Brands';font-weight:400}.la.la-amazon{font-family:'Line Awesome Brands';font-weight:400}.la.la-calendar-plus-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-plus-o:before{content:"\f271"}.la.la-calendar-minus-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-minus-o:before{content:"\f272"}.la.la-calendar-times-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-times-o:before{content:"\f273"}.la.la-calendar-check-o{font-family:'Line Awesome Free';font-weight:400}.la.la-calendar-check-o:before{content:"\f274"}.la.la-map-o{font-family:'Line Awesome Free';font-weight:400}.la.la-map-o:before{content:"\f279"}.la.la-commenting:before{content:"\f4ad"}.la.la-commenting-o{font-family:'Line Awesome Free';font-weight:400}.la.la-commenting-o:before{content:"\f4ad"}.la.la-houzz{font-family:'Line Awesome Brands';font-weight:400}.la.la-vimeo{font-family:'Line Awesome Brands';font-weight:400}.la.la-vimeo:before{content:"\f27d"}.la.la-black-tie{font-family:'Line Awesome Brands';font-weight:400}.la.la-fonticons{font-family:'Line Awesome Brands';font-weight:400}.la.la-reddit-alien{font-family:'Line Awesome Brands';font-weight:400}.la.la-edge{font-family:'Line Awesome Brands';font-weight:400}.la.la-credit-card-alt:before{content:"\f09d"}.la.la-codiepie{font-family:'Line Awesome Brands';font-weight:400}.la.la-modx{font-family:'Line Awesome Brands';font-weight:400}.la.la-fort-awesome{font-family:'Line Awesome Brands';font-weight:400}.la.la-usb{font-family:'Line Awesome Brands';font-weight:400}.la.la-product-hunt{font-family:'Line Awesome Brands';font-weight:400}.la.la-mixcloud{font-family:'Line Awesome Brands';font-weight:400}.la.la-scribd{font-family:'Line Awesome Brands';font-weight:400}.la.la-pause-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-pause-circle-o:before{content:"\f28b"}.la.la-stop-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-stop-circle-o:before{content:"\f28d"}.la.la-bluetooth{font-family:'Line Awesome Brands';font-weight:400}.la.la-bluetooth-b{font-family:'Line Awesome Brands';font-weight:400}.la.la-gitlab{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpbeginner{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpforms{font-family:'Line Awesome Brands';font-weight:400}.la.la-envira{font-family:'Line Awesome Brands';font-weight:400}.la.la-wheelchair-alt{font-family:'Line Awesome Brands';font-weight:400}.la.la-wheelchair-alt:before{content:"\f368"}.la.la-question-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-question-circle-o:before{content:"\f059"}.la.la-volume-control-phone:before{content:"\f2a0"}.la.la-asl-interpreting:before{content:"\f2a3"}.la.la-deafness:before{content:"\f2a4"}.la.la-hard-of-hearing:before{content:"\f2a4"}.la.la-glide{font-family:'Line Awesome Brands';font-weight:400}.la.la-glide-g{font-family:'Line Awesome Brands';font-weight:400}.la.la-signing:before{content:"\f2a7"}.la.la-viadeo{font-family:'Line Awesome Brands';font-weight:400}.la.la-viadeo-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat-ghost{font-family:'Line Awesome Brands';font-weight:400}.la.la-snapchat-square{font-family:'Line Awesome Brands';font-weight:400}.la.la-pied-piper{font-family:'Line Awesome Brands';font-weight:400}.la.la-first-order{font-family:'Line Awesome Brands';font-weight:400}.la.la-yoast{font-family:'Line Awesome Brands';font-weight:400}.la.la-themeisle{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-official{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-official:before{content:"\f2b3"}.la.la-google-plus-circle{font-family:'Line Awesome Brands';font-weight:400}.la.la-google-plus-circle:before{content:"\f2b3"}.la.la-font-awesome{font-family:'Line Awesome Brands';font-weight:400}.la.la-fa{font-family:'Line Awesome Brands';font-weight:400}.la.la-fa:before{content:"\f2b4"}.la.la-handshake-o{font-family:'Line Awesome Free';font-weight:400}.la.la-handshake-o:before{content:"\f2b5"}.la.la-envelope-open-o{font-family:'Line Awesome Free';font-weight:400}.la.la-envelope-open-o:before{content:"\f2b6"}.la.la-linode{font-family:'Line Awesome Brands';font-weight:400}.la.la-address-book-o{font-family:'Line Awesome Free';font-weight:400}.la.la-address-book-o:before{content:"\f2b9"}.la.la-vcard:before{content:"\f2bb"}.la.la-address-card-o{font-family:'Line Awesome Free';font-weight:400}.la.la-address-card-o:before{content:"\f2bb"}.la.la-vcard-o{font-family:'Line Awesome Free';font-weight:400}.la.la-vcard-o:before{content:"\f2bb"}.la.la-user-circle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-user-circle-o:before{content:"\f2bd"}.la.la-user-o{font-family:'Line Awesome Free';font-weight:400}.la.la-user-o:before{content:"\f007"}.la.la-id-badge{font-family:'Line Awesome Free';font-weight:400}.la.la-drivers-license:before{content:"\f2c2"}.la.la-id-card-o{font-family:'Line Awesome Free';font-weight:400}.la.la-id-card-o:before{content:"\f2c2"}.la.la-drivers-license-o{font-family:'Line Awesome Free';font-weight:400}.la.la-drivers-license-o:before{content:"\f2c2"}.la.la-quora{font-family:'Line Awesome Brands';font-weight:400}.la.la-free-code-camp{font-family:'Line Awesome Brands';font-weight:400}.la.la-telegram{font-family:'Line Awesome Brands';font-weight:400}.la.la-thermometer-4:before{content:"\f2c7"}.la.la-thermometer:before{content:"\f2c7"}.la.la-thermometer-3:before{content:"\f2c8"}.la.la-thermometer-2:before{content:"\f2c9"}.la.la-thermometer-1:before{content:"\f2ca"}.la.la-thermometer-0:before{content:"\f2cb"}.la.la-bathtub:before{content:"\f2cd"}.la.la-s15:before{content:"\f2cd"}.la.la-window-maximize{font-family:'Line Awesome Free';font-weight:400}.la.la-window-restore{font-family:'Line Awesome Free';font-weight:400}.la.la-times-rectangle:before{content:"\f410"}.la.la-window-close-o{font-family:'Line Awesome Free';font-weight:400}.la.la-window-close-o:before{content:"\f410"}.la.la-times-rectangle-o{font-family:'Line Awesome Free';font-weight:400}.la.la-times-rectangle-o:before{content:"\f410"}.la.la-bandcamp{font-family:'Line Awesome Brands';font-weight:400}.la.la-grav{font-family:'Line Awesome Brands';font-weight:400}.la.la-etsy{font-family:'Line Awesome Brands';font-weight:400}.la.la-imdb{font-family:'Line Awesome Brands';font-weight:400}.la.la-ravelry{font-family:'Line Awesome Brands';font-weight:400}.la.la-eercast{font-family:'Line Awesome Brands';font-weight:400}.la.la-eercast:before{content:"\f2da"}.la.la-snowflake-o{font-family:'Line Awesome Free';font-weight:400}.la.la-snowflake-o:before{content:"\f2dc"}.la.la-superpowers{font-family:'Line Awesome Brands';font-weight:400}.la.la-wpexplorer{font-family:'Line Awesome Brands';font-weight:400}.la.la-spotify{font-family:'Line Awesome Brands';font-weight:400} + +/*! +* metismenu https://github.com/onokumus/metismenu#readme +* A jQuery menu plugin +* @version 3.0.5 +* @author Osman Nuri Okumus (https://github.com/onokumus) +* @license: MIT +*/.metismenu .arrow{float:right;line-height:1.42857}[dir=rtl] .metismenu .arrow{float:left}.metismenu .glyphicon.arrow:before{content:"\e079"}.metismenu .mm-active>a>.glyphicon.arrow:before{content:"\e114"}.metismenu .fa.arrow:before{content:"\f104"}.metismenu .mm-active>a>.fa.arrow:before{content:"\f107"}.metismenu .ion.arrow:before{content:"\f3d2"}.metismenu .mm-active>a>.ion.arrow:before{content:"\f3d0"}.metismenu .plus-times{float:right}[dir=rtl] .metismenu .plus-times{float:left}.metismenu .fa.plus-times:before{content:"\f067"}.metismenu .mm-active>a>.fa.plus-times{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.metismenu .plus-minus{float:right}[dir=rtl] .metismenu .plus-minus{float:left}.metismenu .fa.plus-minus:before{content:"\f067"}.metismenu .mm-active>a>.fa.plus-minus:before{content:"\f068"}.metismenu .mm-collapse:not(.mm-show){display:none}.metismenu .mm-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;transition-property:height,visibility}.metismenu .has-arrow{position:relative}.metismenu .has-arrow:after{position:absolute;content:"";width:.5em;height:.5em;border-style:solid;border-width:1px 0 0 1px;border-color:initial;right:1em;-webkit-transform:rotate(-45deg) translateY(-50%);transform:rotate(-45deg) translateY(-50%);-webkit-transform-origin:top;transform-origin:top;top:50%;-webkit-transition:all .3s ease-out;transition:all .3s ease-out}[dir=rtl] .metismenu .has-arrow:after{right:auto;left:1em;-webkit-transform:rotate(135deg) translateY(-50%);transform:rotate(135deg) translateY(-50%)}.metismenu .has-arrow[aria-expanded=true]:after,.metismenu .mm-active>.has-arrow:after{-webkit-transform:rotate(-135deg) translateY(-50%);transform:rotate(-135deg) translateY(-50%)}[dir=rtl] .metismenu .has-arrow[aria-expanded=true]:after,[dir=rtl] .metismenu .mm-active>.has-arrow:after{-webkit-transform:rotate(225deg) translateY(-50%);transform:rotate(225deg) translateY(-50%)} +/*# sourceMappingURL=metisMenu.min.css.map */ + +/*! + * Bootstrap-select v1.13.12 (https://developer.snapappointments.com/bootstrap-select) + * + * Copyright 2012-2019 SnapAppointments, LLC + * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE) + */@-webkit-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@-o-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\0;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{-webkit-animation:.3s linear 750ms forwards bs-notify-fadeOut;-o-animation:.3s linear 750ms forwards bs-notify-fadeOut;animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:'\00a0'}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:'';display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none} + +/** + * Tagify (v 3.4.0)- tags input component + * By Yair Even-Or + * Don't sell this code. (c) + * https://github.com/yairEO/tagify + */ +:root{--tagify-dd-color-primary:rgb(53,149,246);--tagify-dd-bg-color:white}.tagify{--tags-border-color:#DDD;--tag-bg:#E5E5E5;--tag-hover:#D3E2E2;--tag-text-color:black;--tag-text-color--edit:black;--tag-pad:0.3em 0.5em;--tag-inset-shadow-size:1.1em;--tag-invalid-color:#D39494;--tag-invalid-bg:rgba(211, 148, 148, 0.5);--tag-remove-bg:rgba(211, 148, 148, 0.3);--tag-remove-btn-bg:none;--tag-remove-btn-bg--hover:#c77777;--tag--min-width:1ch;--tag--max-width:auto;--tag-hide-transition:.3s;--loader-size:.8em;display:flex;align-items:flex-start;flex-wrap:wrap;border:1px solid #ddd;border:1px solid var(--tags-border-color);padding:0;line-height:1.1;cursor:text;outline:0;position:relative;transition:.1s}@keyframes tags--bump{30%{transform:scale(1.2)}}@keyframes rotateLoader{to{transform:rotate(1turn)}}.tagify:hover{border-color:#ccc}.tagify.tagify--focus{transition:0s;border-color:#3595f6}.tagify[readonly]{cursor:default}.tagify[readonly]>.tagify__input{visibility:hidden;width:0;margin:5px 0}.tagify[readonly] .tagify__tag__removeBtn{display:none}.tagify[readonly] .tagify__tag>div{padding:.3em .5em;padding:var(--tag-pad)}.tagify[readonly] .tagify__tag>div::before{background:linear-gradient(45deg,var(--tag-bg) 25%,transparent 25%,transparent 50%,var(--tag-bg) 50%,var(--tag-bg) 75%,transparent 75%,transparent) 0/5px 5px;box-shadow:none;filter:brightness(.95)}.tagify--loading .tagify__input::before{content:none}.tagify--loading .tagify__input::after{content:'';vertical-align:middle;margin:-2px 0 -2px .5em;opacity:1;width:.7em;height:.7em;width:var(--loader-size);height:var(--loader-size);border:3px solid;border-color:#eee #bbb #888 transparent;border-radius:50%;animation:rotateLoader .4s infinite linear}.tagify--loading .tagify__input:empty::after{margin-left:0}.tagify+input,.tagify+textarea{display:none!important}.tagify__tag{display:inline-flex;align-items:center;margin:5px 0 5px 5px;position:relative;z-index:1;outline:0;cursor:default;transition:.13s ease-out}.tagify__tag>div{vertical-align:top;box-sizing:border-box;max-width:100%;padding:.3em .5em;padding:var(--tag-pad);color:#000;color:var(--tag-text-color);line-height:inherit;border-radius:3px;-webkit-user-select:none;user-select:none;transition:.13s ease-out}.tagify__tag>div>*{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:inline-block;vertical-align:top;min-width:var(--tag--min-width);max-width:var(--tag--max-width);transition:.8s ease,.1s color}.tagify__tag>div>[contenteditable]{outline:0;-webkit-user-select:text;user-select:text;cursor:text;margin:-2px;padding:2px;max-width:350px}.tagify__tag>div::before{content:'';position:absolute;border-radius:inherit;left:0;top:0;right:0;bottom:0;z-index:-1;pointer-events:none;transition:120ms ease;animation:tags--bump .3s ease-out 1;box-shadow:0 0 0 1.1em #e5e5e5 inset;box-shadow:0 0 0 calc(var(--tag-inset-shadow-size)) var(--tag-bg) inset}.tagify__tag:hover:not([readonly]) div::before{top:-2px;right:-2px;bottom:-2px;left:-2px;box-shadow:0 0 0 1.1em #d3e2e2 inset;box-shadow:0 0 0 var(--tag-inset-shadow-size) var(--tag-hover) inset}.tagify__tag.tagify--noAnim>div::before{animation:none}.tagify__tag.tagify--hide{width:0!important;padding-left:0;padding-right:0;margin-left:0;margin-right:0;opacity:0;transform:scale(0);transition:.3s;transition:var(--tag-hide-transition);pointer-events:none}.tagify__tag.tagify--mark div::before{animation:none}.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div>span{opacity:.5}.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div::before{box-shadow:0 0 0 1.1em rgba(211,148,148,.5) inset!important;box-shadow:0 0 0 var(--tag-inset-shadow-size) var(--tag-invalid-bg) inset!important;transition:.2s}.tagify__tag[readonly] .tagify__tag__removeBtn{display:none}.tagify__tag[readonly]>div::before{background:linear-gradient(45deg,var(--tag-bg) 25%,transparent 25%,transparent 50%,var(--tag-bg) 50%,var(--tag-bg) 75%,transparent 75%,transparent) 0/5px 5px;box-shadow:none;filter:brightness(.95)}.tagify__tag--editable>div{color:#000;color:var(--tag-text-color--edit)}.tagify__tag--editable>div::before{box-shadow:0 0 0 2px #d3e2e2 inset!important;box-shadow:0 0 0 2px var(--tag-hover) inset!important}.tagify__tag--editable.tagify--invalid>div::before{box-shadow:0 0 0 2px #d39494 inset!important;box-shadow:0 0 0 2px var(--tag-invalid-color) inset!important}.tagify__tag__removeBtn{order:5;display:inline-flex;align-items:center;justify-content:center;border-radius:50px;cursor:pointer;font:14px Serif;background:0 0;background:var(--tag-remove-btn-bg);color:#000;color:var(--tag-text-color);width:14px;height:14px;margin-right:4.66667px;margin-left:-4.66667px;transition:.2s ease-out}.tagify__tag__removeBtn::after{content:"\00D7"}.tagify__tag__removeBtn:hover{color:#fff;background:#c77777;background:var(--tag-remove-btn-bg--hover)}.tagify__tag__removeBtn:hover+div>span{opacity:.5}.tagify__tag__removeBtn:hover+div::before{box-shadow:0 0 0 1.1em rgba(211,148,148,.3) inset!important;box-shadow:0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg) inset!important;transition:.2s}.tagify:not(.tagify--mix) .tagify__input br{display:none}.tagify:not(.tagify--mix) .tagify__input *{display:inline;white-space:nowrap}.tagify__input{display:block;min-width:110px;margin:5px;padding:.3em .5em;padding:var(--tag-pad,.3em .5em);line-height:inherit;position:relative;white-space:pre-line}.tagify__input::before{display:inline-block;width:0}.tagify__input:empty{display:flex}.tagify__input:empty::before{transition:.2s ease-out;opacity:.5;transform:none;width:auto}.tagify__input:focus{outline:0}.tagify__input:focus::before{transition:.2s ease-out;opacity:0;transform:translatex(6px)}@supports (-moz-appearance:none){.tagify__input:focus::before{display:none}}.tagify__input:focus:empty::before{transition:.2s ease-out;opacity:.3;transform:none}@supports (-moz-appearance:none){.tagify__input:focus:empty::before{display:inline-block}}.tagify__input::before{content:attr(data-placeholder);line-height:1.8;position:absolute;top:0;z-index:1;color:#000;white-space:nowrap;pointer-events:none;opacity:0}.tagify--mix .tagify__input::before{position:static;line-height:inherit}@supports (-moz-appearance:none){.tagify__input::before{line-height:inherit;position:relative}}.tagify__input::after{content:attr(data-suggest);display:inline-block;white-space:pre;color:#000;opacity:.3;pointer-events:none;max-width:100px}.tagify__input .tagify__tag{margin:0}.tagify__input .tagify__tag>div{padding-top:0;padding-bottom:0}.tagify--mix{line-height:1.7}.tagify--mix .tagify__input{padding:5px;margin:0;width:100%;height:100%;line-height:inherit}.tagify--mix .tagify__input::after{content:none}.tagify--select::after{content:'>';opacity:.5;position:absolute;top:50%;right:0;bottom:0;font:16px monospace;line-height:8px;height:8px;pointer-events:none;transform:translate(-150%,-50%) scaleX(1.2) rotate(90deg);transition:.2s ease-in-out}.tagify--select[aria-expanded=true]::after{transform:translate(-150%,-50%) rotate(270deg) scaleY(1.2)}.tagify--select .tagify__tag{position:absolute;top:0;right:1.8em;bottom:0}.tagify--select .tagify__tag div{display:none}.tagify--select .tagify__input{width:100%}.tagify--invalid{--tags-border-color:#D39494}.tagify__dropdown{position:absolute;z-index:9999;transform:translateY(1px);overflow:hidden}.tagify__dropdown[placement=top]{margin-top:0;transform:translateY(-2px)}.tagify__dropdown[placement=top] .tagify__dropdown__wrapper{border-top-width:1px;border-bottom-width:0}.tagify__dropdown--text{box-shadow:0 0 0 3px rgba(var(--tagify-dd-color-primary),.1);font-size:.9em}.tagify__dropdown--text .tagify__dropdown__wrapper{border-width:1px}.tagify__dropdown__wrapper{max-height:300px;overflow:hidden;background:#fff;background:var(--tagify-dd-bg-color);border:1px solid #3595f6;border-color:var(--tagify-dd-color-primary);border-top-width:0;box-shadow:0 2px 4px -2px rgba(0,0,0,.2);transition:.25s cubic-bezier(0,1,.5,1)}.tagify__dropdown__wrapper:hover{overflow:auto}.tagify__dropdown--initial .tagify__dropdown__wrapper{max-height:20px;transform:translateY(-1em)}.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper{transform:translateY(2em)}.tagify__dropdown__item{box-sizing:inherit;padding:.3em .5em;margin:1px;cursor:pointer;border-radius:2px;position:relative;outline:0}.tagify__dropdown__item--active{background:#3595f6;background:var(--tagify-dd-color-primary);color:#fff}.tagify__dropdown__item:active{filter:brightness(105%)}.tagify__dropdown__createTagBtn{width:100%;background:#3595f6;background:var(--tagify-dd-color-primary);color:#fff;color:var(--tagify-dd-bg-color);border:none} + +/*summernote*/ +@font-face{font-family:summernote;font-style:normal;font-weight:400;font-display:swap;src:url(font/summernote.eot);src:url(font/summernote.eot?#iefix) format("embedded-opentype"),url(font/summernote.woff2) format("woff2"),url(font/summernote.woff) format("woff"),url(font/summernote.ttf) format("truetype")}[class*=" note-icon"]:before,[class^=note-icon]:before{display:inline-block;font-family:summernote;font-style:normal;font-size:inherit;text-decoration:inherit;text-rendering:auto;text-transform:none;vertical-align:middle;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;speak:none}.note-icon-fw{text-align:center;width:1.25em}.note-icon-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.note-icon-pull-left{float:left}.note-icon-pull-right{float:right}.note-icon.note-icon-pull-left{margin-right:.3em}.note-icon.note-icon-pull-right{margin-left:.3em}.note-icon-align:before{content:"\ea01"}.note-icon-align-center:before{content:"\ea02"}.note-icon-align-indent:before{content:"\ea03"}.note-icon-align-justify:before{content:"\ea04"}.note-icon-align-left:before{content:"\ea05"}.note-icon-align-outdent:before{content:"\ea06"}.note-icon-align-right:before{content:"\ea07"}.note-icon-arrow-circle-down:before{content:"\ea08"}.note-icon-arrow-circle-left:before{content:"\ea09"}.note-icon-arrow-circle-right:before{content:"\ea0a"}.note-icon-arrow-circle-up:before{content:"\ea0b"}.note-icon-arrows-alt:before{content:"\ea0c"}.note-icon-arrows-h:before{content:"\ea0d"}.note-icon-arrows-v:before{content:"\ea0e"}.note-icon-bold:before{content:"\ea0f"}.note-icon-caret:before{content:"\ea10"}.note-icon-chain-broken:before{content:"\ea11"}.note-icon-circle:before{content:"\ea12"}.note-icon-close:before{content:"\ea13"}.note-icon-code:before{content:"\ea14"}.note-icon-col-after:before{content:"\ea15"}.note-icon-col-before:before{content:"\ea16"}.note-icon-col-remove:before{content:"\ea17"}.note-icon-eraser:before{content:"\ea18"}.note-icon-float-left:before{content:"\ea19"}.note-icon-float-none:before{content:"\ea1a"}.note-icon-float-right:before{content:"\ea1b"}.note-icon-font:before{content:"\ea1c"}.note-icon-frame:before{content:"\ea1d"}.note-icon-italic:before{content:"\ea1e"}.note-icon-link:before{content:"\ea1f"}.note-icon-magic:before{content:"\ea20"}.note-icon-menu-check:before{content:"\ea21"}.note-icon-minus:before{content:"\ea22"}.note-icon-orderedlist:before{content:"\ea23"}.note-icon-pencil:before{content:"\ea24"}.note-icon-picture:before{content:"\ea25"}.note-icon-question:before{content:"\ea26"}.note-icon-redo:before{content:"\ea27"}.note-icon-rollback:before{content:"\ea28"}.note-icon-row-above:before{content:"\ea29"}.note-icon-row-below:before{content:"\ea2a"}.note-icon-row-remove:before{content:"\ea2b"}.note-icon-special-character:before{content:"\ea2c"}.note-icon-square:before{content:"\ea2d"}.note-icon-strikethrough:before{content:"\ea2e"}.note-icon-subscript:before{content:"\ea2f"}.note-icon-summernote:before{content:"\ea30"}.note-icon-superscript:before{content:"\ea31"}.note-icon-table:before{content:"\ea32"}.note-icon-text-height:before{content:"\ea33"}.note-icon-trash:before{content:"\ea34"}.note-icon-underline:before{content:"\ea35"}.note-icon-undo:before{content:"\ea36"}.note-icon-unorderedlist:before{content:"\ea37"}.note-icon-video:before{content:"\ea38"}.note-editor{position:relative}.note-editor .note-dropzone{position:absolute;display:none;z-index:100;color:#87cefa;background-color:#fff;opacity:.95}.note-editor .note-dropzone .note-dropzone-message{display:table-cell;vertical-align:middle;text-align:center;font-size:28px;font-weight:700}.note-editor .note-dropzone.hover{color:#098ddf}.note-editor.dragover .note-dropzone{display:table}.note-editor .note-editing-area{position:relative}.note-editor .note-editing-area .note-editable{outline:none}.note-editor .note-editing-area .note-editable sup{vertical-align:super}.note-editor .note-editing-area .note-editable sub{vertical-align:sub}.note-editor .note-editing-area .note-editable img.note-float-left{margin-right:10px}.note-editor .note-editing-area .note-editable img.note-float-right{margin-left:10px}.note-editor.note-airframe,.note-editor.note-frame{border:1px solid #a9a9a9}.note-editor.note-airframe.codeview .note-editing-area .note-editable,.note-editor.note-frame.codeview .note-editing-area .note-editable{display:none}.note-editor.note-airframe.codeview .note-editing-area .note-codable,.note-editor.note-frame.codeview .note-editing-area .note-codable{display:block}.note-editor.note-airframe .note-editing-area,.note-editor.note-frame .note-editing-area{overflow:hidden}.note-editor.note-airframe .note-editing-area .note-editable,.note-editor.note-frame .note-editing-area .note-editable{background-color:#fff;color:#000;padding:10px;overflow:auto;word-wrap:break-word}.note-editor.note-airframe .note-editing-area .note-editable[contenteditable=false],.note-editor.note-frame .note-editing-area .note-editable[contenteditable=false]{background-color:#e5e5e5}.note-editor.note-airframe .note-editing-area .note-codable,.note-editor.note-frame .note-editing-area .note-codable{display:none;width:100%;padding:10px;border:none;box-shadow:none;font-family:Menlo,Monaco,monospace,sans-serif;font-size:14px;color:#ccc;background-color:#222;resize:none;outline:none;-ms-box-sizing:border-box;box-sizing:border-box;border-radius:0;margin-bottom:0}.note-editor.note-airframe.fullscreen,.note-editor.note-frame.fullscreen{position:fixed;top:0;left:0;width:100%!important;z-index:1050}.note-editor.note-airframe.fullscreen .note-editable,.note-editor.note-frame.fullscreen .note-editable{background-color:#fff}.note-editor.note-airframe.fullscreen .note-resizebar,.note-editor.note-frame.fullscreen .note-resizebar{display:none}.note-editor.note-airframe .note-status-output,.note-editor.note-frame .note-status-output{display:block;width:100%;font-size:14px;line-height:1.42857143;height:20px;margin-bottom:0;color:#000;border:0;border-top:1px solid #e2e2e2}.note-editor.note-airframe .note-status-output:empty,.note-editor.note-frame .note-status-output:empty{height:0;border-top:0 solid transparent}.note-editor.note-airframe .note-status-output .pull-right,.note-editor.note-frame .note-status-output .pull-right{float:right!important}.note-editor.note-airframe .note-status-output .text-muted,.note-editor.note-frame .note-status-output .text-muted{color:#777}.note-editor.note-airframe .note-status-output .text-primary,.note-editor.note-frame .note-status-output .text-primary{color:#286090}.note-editor.note-airframe .note-status-output .text-success,.note-editor.note-frame .note-status-output .text-success{color:#3c763d}.note-editor.note-airframe .note-status-output .text-info,.note-editor.note-frame .note-status-output .text-info{color:#31708f}.note-editor.note-airframe .note-status-output .text-warning,.note-editor.note-frame .note-status-output .text-warning{color:#8a6d3b}.note-editor.note-airframe .note-status-output .text-danger,.note-editor.note-frame .note-status-output .text-danger{color:#a94442}.note-editor.note-airframe .note-status-output .alert,.note-editor.note-frame .note-status-output .alert{margin:-7px 0 0;padding:7px 10px 2px;border-radius:0;color:#000;background-color:#f5f5f5}.note-editor.note-airframe .note-status-output .alert .note-icon,.note-editor.note-frame .note-status-output .alert .note-icon{margin-right:5px}.note-editor.note-airframe .note-status-output .alert-success,.note-editor.note-frame .note-status-output .alert-success{color:#3c763d!important;background-color:#dff0d8!important}.note-editor.note-airframe .note-status-output .alert-info,.note-editor.note-frame .note-status-output .alert-info{color:#31708f!important;background-color:#d9edf7!important}.note-editor.note-airframe .note-status-output .alert-warning,.note-editor.note-frame .note-status-output .alert-warning{color:#8a6d3b!important;background-color:#fcf8e3!important}.note-editor.note-airframe .note-status-output .alert-danger,.note-editor.note-frame .note-status-output .alert-danger{color:#a94442!important;background-color:#f2dede!important}.note-editor.note-airframe .note-statusbar,.note-editor.note-frame .note-statusbar{background-color:#f5f5f5;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-top:1px solid #ddd}.note-editor.note-airframe .note-statusbar .note-resizebar,.note-editor.note-frame .note-statusbar .note-resizebar{padding-top:1px;height:9px;width:100%;cursor:ns-resize}.note-editor.note-airframe .note-statusbar .note-resizebar .note-icon-bar,.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar{width:20px;margin:1px auto;border-top:1px solid #a9a9a9}.note-editor.note-airframe .note-statusbar.locked .note-resizebar,.note-editor.note-frame .note-statusbar.locked .note-resizebar{cursor:default}.note-editor.note-airframe .note-statusbar.locked .note-resizebar .note-icon-bar,.note-editor.note-frame .note-statusbar.locked .note-resizebar .note-icon-bar{display:none}.note-editor.note-airframe .note-placeholder,.note-editor.note-frame .note-placeholder{padding:10px}.note-editor.note-airframe{border:0}.note-editor.note-airframe .note-editing-area .note-editable{padding:0}.note-popover.popover{display:none;max-width:none}.note-popover.popover .popover-content a{display:inline-block;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle}.note-popover.popover .arrow{left:20px!important}.note-toolbar{position:relative}.note-popover .popover-content,.note-toolbar{margin:0;padding:0 0 5px 5px}.note-popover .popover-content>.note-btn-group,.note-toolbar>.note-btn-group{margin-top:5px;margin-left:0;margin-right:5px}.note-popover .popover-content .note-btn-group .note-table,.note-toolbar .note-btn-group .note-table{min-width:0;padding:5px}.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker,.note-toolbar .note-btn-group .note-table .note-dimension-picker{font-size:18px}.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher,.note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher{position:absolute!important;z-index:3;width:10em;height:10em;cursor:pointer}.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted,.note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted{position:relative!important;z-index:1;width:5em;height:5em;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat}.note-popover .popover-content .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted,.note-toolbar .note-btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted{position:absolute!important;z-index:2;width:1em;height:1em;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC") repeat}.note-popover .popover-content .note-style .dropdown-style blockquote,.note-popover .popover-content .note-style .dropdown-style pre,.note-toolbar .note-style .dropdown-style blockquote,.note-toolbar .note-style .dropdown-style pre{margin:0;padding:5px 10px}.note-popover .popover-content .note-style .dropdown-style h1,.note-popover .popover-content .note-style .dropdown-style h2,.note-popover .popover-content .note-style .dropdown-style h3,.note-popover .popover-content .note-style .dropdown-style h4,.note-popover .popover-content .note-style .dropdown-style h5,.note-popover .popover-content .note-style .dropdown-style h6,.note-popover .popover-content .note-style .dropdown-style p,.note-toolbar .note-style .dropdown-style h1,.note-toolbar .note-style .dropdown-style h2,.note-toolbar .note-style .dropdown-style h3,.note-toolbar .note-style .dropdown-style h4,.note-toolbar .note-style .dropdown-style h5,.note-toolbar .note-style .dropdown-style h6,.note-toolbar .note-style .dropdown-style p{margin:0;padding:0}.note-popover .popover-content .note-color-all .note-dropdown-menu,.note-toolbar .note-color-all .note-dropdown-menu{min-width:337px}.note-popover .popover-content .note-color .dropdown-toggle,.note-toolbar .note-color .dropdown-toggle{width:20px;padding-left:5px}.note-popover .popover-content .note-color .note-dropdown-menu .note-palette,.note-toolbar .note-color .note-dropdown-menu .note-palette{display:inline-block;margin:0;width:160px}.note-popover .popover-content .note-color .note-dropdown-menu .note-palette:first-child,.note-toolbar .note-color .note-dropdown-menu .note-palette:first-child{margin:0 5px}.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-palette-title,.note-toolbar .note-color .note-dropdown-menu .note-palette .note-palette-title{font-size:12px;margin:2px 7px;text-align:center;border-bottom:1px solid #eee}.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset,.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select,.note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset,.note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select{font-size:11px;margin:3px;padding:0 3px;cursor:pointer;width:100%;border-radius:5px}.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-reset:hover,.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select:hover,.note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-reset:hover,.note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select:hover{background:#eee}.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-row,.note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-row{height:20px}.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-color-select-btn,.note-toolbar .note-color .note-dropdown-menu .note-palette .note-color-select-btn{display:none}.note-popover .popover-content .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn,.note-toolbar .note-color .note-dropdown-menu .note-palette .note-holder-custom .note-color-btn{border:1px solid #eee}.note-popover .popover-content .note-para .note-dropdown-menu,.note-toolbar .note-para .note-dropdown-menu{min-width:216px;padding:5px}.note-popover .popover-content .note-para .note-dropdown-menu>div:first-child,.note-toolbar .note-para .note-dropdown-menu>div:first-child{margin-right:5px}.note-popover .popover-content .note-dropdown-menu,.note-toolbar .note-dropdown-menu{min-width:160px}.note-popover .popover-content .note-dropdown-menu.right,.note-toolbar .note-dropdown-menu.right{right:0;left:auto}.note-popover .popover-content .note-dropdown-menu.right:before,.note-toolbar .note-dropdown-menu.right:before{right:9px;left:auto!important}.note-popover .popover-content .note-dropdown-menu.right:after,.note-toolbar .note-dropdown-menu.right:after{right:10px;left:auto!important}.note-popover .popover-content .note-dropdown-menu.note-check a i,.note-toolbar .note-dropdown-menu.note-check a i{color:#00bfff;visibility:hidden}.note-popover .popover-content .note-dropdown-menu.note-check a.checked i,.note-toolbar .note-dropdown-menu.note-check a.checked i{visibility:visible}.note-popover .popover-content .note-fontsize-10,.note-toolbar .note-fontsize-10{font-size:10px}.note-popover .popover-content .note-color-palette,.note-toolbar .note-color-palette{line-height:1}.note-popover .popover-content .note-color-palette div .note-color-btn,.note-toolbar .note-color-palette div .note-color-btn{width:20px;height:20px;padding:0;margin:0;border:1px solid #fff}.note-popover .popover-content .note-color-palette div .note-color-btn:hover,.note-toolbar .note-color-palette div .note-color-btn:hover{border:1px solid #000}.note-modal .modal-dialog{outline:0;border-radius:5px;box-shadow:0 3px 9px rgba(0,0,0,.5)}.note-modal .form-group{margin-left:0;margin-right:0}.note-modal .note-modal-form{margin:0}.note-modal .note-image-dialog .note-dropzone{min-height:100px;font-size:30px;line-height:4;color:#d3d3d3;text-align:center;border:4px dashed #d3d3d3;margin-bottom:10px}@-moz-document url-prefix(){.note-modal .note-image-input{height:auto}}.note-placeholder{position:absolute;display:none;color:grey}.note-handle .note-control-selection{position:absolute;display:none;border:1px solid #000}.note-handle .note-control-selection>div{position:absolute}.note-handle .note-control-selection .note-control-selection-bg{width:100%;height:100%;background-color:#000;-webkit-opacity:.3;-khtml-opacity:.3;-moz-opacity:.3;opacity:.3;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);filter:alpha(opacity=30)}.note-handle .note-control-selection .note-control-handle,.note-handle .note-control-selection .note-control-holder,.note-handle .note-control-selection .note-control-sizing{width:7px;height:7px;border:1px solid #000}.note-handle .note-control-selection .note-control-sizing{background-color:#000}.note-handle .note-control-selection .note-control-nw{top:-5px;left:-5px;border-right:none;border-bottom:none}.note-handle .note-control-selection .note-control-ne{top:-5px;right:-5px;border-bottom:none;border-left:none}.note-handle .note-control-selection .note-control-sw{bottom:-5px;left:-5px;border-top:none;border-right:none}.note-handle .note-control-selection .note-control-se{right:-5px;bottom:-5px;cursor:se-resize}.note-handle .note-control-selection .note-control-se.note-control-holder{cursor:default;border-top:none;border-left:none}.note-handle .note-control-selection .note-control-selection-info{right:0;bottom:0;padding:5px;margin:5px;color:#fff;background-color:#000;font-size:12px;border-radius:5px;-webkit-opacity:.7;-khtml-opacity:.7;-moz-opacity:.7;opacity:.7;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);filter:alpha(opacity=70)}.note-hint-popover{min-width:100px;padding:2px}.note-hint-popover .popover-content{padding:3px;max-height:150px;overflow:auto}.note-hint-popover .popover-content .note-hint-group .note-hint-item{display:block!important;padding:3px}.note-hint-popover .popover-content .note-hint-group .note-hint-item.active,.note-hint-popover .popover-content .note-hint-group .note-hint-item:hover{display:block;clear:both;font-weight:400;line-height:1.4;color:#fff;white-space:nowrap;text-decoration:none;background-color:#428bca;outline:0;cursor:pointer}.note-toolbar .note-btn{background:#fff;border-color:#dae0e5;padding:.28rem .65rem;font-size:13px} + +/** + * Minified by jsDelivr using clean-css v4.2.1. + * Original file: /npm/daterangepicker@3.0.5/daterangepicker.css + * + * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files + */ +.daterangepicker{position:absolute;color:inherit;background-color:#fff;border-radius:4px;border:1px solid #ddd;width:278px;max-width:none;padding:0;margin-top:7px;top:100px;left:20px;z-index:3001;display:none;font-family:arial;font-size:15px;line-height:1em}.daterangepicker:after,.daterangepicker:before{position:absolute;display:inline-block;border-bottom-color:rgba(0,0,0,.2);content:''}.daterangepicker:before{top:-7px;border-right:7px solid transparent;border-left:7px solid transparent;border-bottom:7px solid #ccc}.daterangepicker:after{top:-6px;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent}.daterangepicker.opensleft:before{right:9px}.daterangepicker.opensleft:after{right:10px}.daterangepicker.openscenter:before{left:0;right:0;width:0;margin-left:auto;margin-right:auto}.daterangepicker.openscenter:after{left:0;right:0;width:0;margin-left:auto;margin-right:auto}.daterangepicker.opensright:before{left:9px}.daterangepicker.opensright:after{left:10px}.daterangepicker.drop-up{margin-top:-7px}.daterangepicker.drop-up:before{top:initial;bottom:-7px;border-bottom:initial;border-top:7px solid #ccc}.daterangepicker.drop-up:after{top:initial;bottom:-6px;border-bottom:initial;border-top:6px solid #fff}.daterangepicker.single .daterangepicker .ranges,.daterangepicker.single .drp-calendar{float:none}.daterangepicker.single .drp-selected{display:none}.daterangepicker.show-calendar .drp-calendar{display:block}.daterangepicker.show-calendar .drp-buttons{display:block}.daterangepicker.auto-apply .drp-buttons{display:none}.daterangepicker .drp-calendar{display:none;max-width:270px}.daterangepicker .drp-calendar.left{padding:8px 0 8px 8px}.daterangepicker .drp-calendar.right{padding:8px}.daterangepicker .drp-calendar.single .calendar-table{border:none}.daterangepicker .calendar-table .next span,.daterangepicker .calendar-table .prev span{color:#fff;border:solid #000;border-width:0 2px 2px 0;border-radius:0;display:inline-block;padding:3px}.daterangepicker .calendar-table .next span{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}.daterangepicker .calendar-table .prev span{transform:rotate(135deg);-webkit-transform:rotate(135deg)}.daterangepicker .calendar-table td,.daterangepicker .calendar-table th{white-space:nowrap;text-align:center;vertical-align:middle;min-width:32px;width:32px;height:24px;line-height:24px;font-size:12px;border-radius:4px;border:1px solid transparent;white-space:nowrap;cursor:pointer}.daterangepicker .calendar-table{border:1px solid #fff;border-radius:4px;background-color:#fff}.daterangepicker .calendar-table table{width:100%;margin:0;border-spacing:0;border-collapse:collapse}.daterangepicker td.available:hover,.daterangepicker th.available:hover{background-color:#eee;border-color:transparent;color:inherit}.daterangepicker td.week,.daterangepicker th.week{font-size:80%;color:#ccc}.daterangepicker td.off,.daterangepicker td.off.end-date,.daterangepicker td.off.in-range,.daterangepicker td.off.start-date{background-color:#fff;border-color:transparent;color:#999}.daterangepicker td.in-range{background-color:#ebf4f8;border-color:transparent;color:#000;border-radius:0}.daterangepicker td.start-date{border-radius:4px 0 0 4px}.daterangepicker td.end-date{border-radius:0 4px 4px 0}.daterangepicker td.start-date.end-date{border-radius:4px}.daterangepicker td.active,.daterangepicker td.active:hover{background-color:#357ebd;border-color:transparent;color:#fff}.daterangepicker th.month{width:auto}.daterangepicker option.disabled,.daterangepicker td.disabled{color:#999;cursor:not-allowed;text-decoration:line-through}.daterangepicker select.monthselect,.daterangepicker select.yearselect{font-size:12px;padding:1px;height:auto;margin:0;cursor:default}.daterangepicker select.monthselect{margin-right:2%;width:56%}.daterangepicker select.yearselect{width:40%}.daterangepicker select.ampmselect,.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect{width:50px;margin:0 auto;background:#eee;border:1px solid #eee;padding:2px;outline:0;font-size:12px}.daterangepicker .calendar-time{text-align:center;margin:4px auto 0 auto;line-height:30px;position:relative}.daterangepicker .calendar-time select.disabled{color:#ccc;cursor:not-allowed}.daterangepicker .drp-buttons{clear:both;text-align:right;padding:8px;border-top:1px solid #ddd;display:none;line-height:12px;vertical-align:middle}.daterangepicker .drp-selected{display:inline-block;font-size:12px;padding-right:8px}.daterangepicker .drp-buttons .btn{margin-left:8px;font-size:12px;font-weight:700;padding:4px 8px}.daterangepicker.show-ranges.single.rtl .drp-calendar.left{border-right:1px solid #ddd}.daterangepicker.show-ranges.single.ltr .drp-calendar.left{border-left:1px solid #ddd}.daterangepicker.show-ranges.rtl .drp-calendar.right{border-right:1px solid #ddd}.daterangepicker.show-ranges.ltr .drp-calendar.left{border-left:1px solid #ddd}.daterangepicker .ranges{float:none;text-align:left;margin:0}.daterangepicker.show-calendar .ranges{margin-top:8px}.daterangepicker .ranges ul{list-style:none;margin:0 auto;padding:0;width:100%}.daterangepicker .ranges li{font-size:12px;padding:8px 12px;cursor:pointer}.daterangepicker .ranges li:hover{background-color:#eee}.daterangepicker .ranges li.active{background-color:#08c;color:#fff}@media (min-width:564px){.daterangepicker{width:auto}.daterangepicker .ranges ul{width:140px}.daterangepicker.single .ranges ul{width:100%}.daterangepicker.single .drp-calendar.left{clear:none}.daterangepicker.single .drp-calendar,.daterangepicker.single .ranges{float:left}.daterangepicker{direction:ltr;text-align:left}.daterangepicker .drp-calendar.left{clear:left;margin-right:0}.daterangepicker .drp-calendar.left .calendar-table{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.daterangepicker .drp-calendar.right{margin-left:0}.daterangepicker .drp-calendar.right .calendar-table{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.daterangepicker .drp-calendar.left .calendar-table{padding-right:8px}.daterangepicker .drp-calendar,.daterangepicker .ranges{float:left}}@media (min-width:730px){.daterangepicker .ranges{width:auto}.daterangepicker .ranges{float:left}.daterangepicker.rtl .ranges{float:right}.daterangepicker .drp-calendar.left{clear:none!important}} +/*# sourceMappingURL=/sm/977d76daee7276d0fb7eb98d2d7dcb01c5e058f63c51d94902d4394e65335f6e.map */ + +/*uppy*/ +.uppy-Root{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:left;position:relative;color:#333}.uppy-Root *,.uppy-Root :after,.uppy-Root :before{box-sizing:inherit}.uppy-Root [hidden]{display:none}.UppyIcon{max-width:100%;max-height:100%;fill:currentColor;display:inline-block;overflow:hidden}.UppyIcon--svg-baseline{bottom:-.125em;position:relative}.uppy-u-reset{-webkit-appearance:none;line-height:1;padding:0;color:inherit;-webkit-backface-visibility:visible;backface-visibility:visible;background:none;border:none;border-collapse:separate;border-image:none;border-radius:0;border-spacing:0;box-shadow:none;clear:none;cursor:auto;display:inline;empty-cells:show;float:none;font-family:inherit;font-size:inherit;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;left:auto;letter-spacing:normal;list-style:none;margin:0;max-height:none;max-width:none;min-height:0;min-width:0;opacity:1;outline:medium none invert;overflow:visible;overflow-x:visible;overflow-y:visible;text-align:left;text-decoration:none;text-indent:0;text-shadow:none;text-transform:none;top:auto;transform:none;transform-origin:50% 50% 0;transform-style:flat;transition:none 0s ease 0s;unicode-bidi:normal;vertical-align:baseline;visibility:visible;white-space:normal;z-index:auto}.uppy-c-textInput{border:1px solid #ddd;border-radius:4px;font-size:14px;line-height:1.5;padding:6px 8px;background-color:#fff}.uppy-size--md .uppy-c-textInput{padding:8px 10px}.uppy-c-textInput:focus{border-color:rgba(34,117,215,.6);outline:none;box-shadow:0 0 0 3px rgba(34,117,215,.15)}.uppy-c-btn{display:inline-block;text-align:center;white-space:nowrap;vertical-align:middle;font-family:inherit;font-size:16px;line-height:1;font-weight:500;transition:background-color .3s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.uppy-c-btn:not(:disabled):not(.disabled){cursor:pointer}.uppy-c-btn::-moz-focus-inner{border:0}.uppy-c-btn-primary{font-size:14px;padding:10px 18px;border-radius:4px;background-color:#2275d7;color:#fff}.uppy-size--md .uppy-c-btn-primary{padding:13px 22px}.uppy-c-btn-primary:hover{background-color:#1b5dab}.uppy-c-btn-primary:focus{outline:none;box-shadow:0 0 0 3px rgba(34,117,215,.4)}.uppy-c-btn-link{font-size:14px;line-height:1;padding:10px 15px;border-radius:4px;background-color:transparent;color:#525252}.uppy-size--md .uppy-c-btn-link{padding:13px 18px}.uppy-c-btn-link:hover{color:#333}.uppy-c-btn-link:focus{outline:none;box-shadow:0 0 0 3px rgba(34,117,215,.25)}.uppy-c-btn--small{font-size:.9em;padding:7px 16px;border-radius:2px}.uppy-size--md .uppy-c-btn--small{padding:8px 10px;border-radius:2px}.uppy-Informer{position:absolute;bottom:60px;left:0;right:0;text-align:center;opacity:1;transform:none;transition:all .25s ease-in;z-index:1005}.uppy-Informer[aria-hidden=true]{opacity:0;transform:translateY(350%);transition:all .3s ease-in;z-index:-1000}.uppy-Informer p{display:inline-block;margin:0;font-size:12px;line-height:1.4;font-weight:400;padding:6px 15px;background-color:#757575;color:#fff;border-radius:18px;max-width:90%}.uppy-size--md .uppy-Informer p{font-size:14px;line-height:1.3;max-width:500px;padding:10px 20px}.uppy-Informer span{line-height:12px;width:13px;height:13px;display:inline-block;vertical-align:middle;color:#525252;background-color:#fff;border-radius:50%;position:relative;top:-1px;left:3px;font-size:10px;margin-left:-1px}.uppy-Informer span:hover{cursor:help}.uppy-Informer span:after{line-height:1.3;word-wrap:break-word}.uppy-Root [aria-label][role~=tooltip]{position:relative}.uppy-Root [aria-label][role~=tooltip]:after,.uppy-Root [aria-label][role~=tooltip]:before{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;will-change:transform;opacity:0;pointer-events:none;transition:all var(--microtip-transition-duration,.18s) var(--microtip-transition-easing,ease-in-out) var(--microtip-transition-delay,0s);position:absolute;box-sizing:border-box;z-index:10;transform-origin:top}.uppy-Root [aria-label][role~=tooltip]:before{background-size:100% auto!important;content:""}.uppy-Root [aria-label][role~=tooltip]:after{background:rgba(17,17,17,.9);border-radius:4px;color:#fff;content:attr(aria-label);font-size:var(--microtip-font-size,13px);font-weight:var(--microtip-font-weight,normal);text-transform:var(--microtip-text-transform,none);padding:.5em 1em;white-space:nowrap;box-sizing:content-box}.uppy-Root [aria-label][role~=tooltip]:focus:after,.uppy-Root [aria-label][role~=tooltip]:focus:before,.uppy-Root [aria-label][role~=tooltip]:hover:after,.uppy-Root [aria-label][role~=tooltip]:hover:before{opacity:1;pointer-events:auto}.uppy-Root [role~=tooltip][data-microtip-position|=top]:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M2.658 0h32.004c-6 0-11.627 12.002-16.002 12.002C14.285 12.002 8.594 0 2.658 0z'/%3E%3C/svg%3E") no-repeat;height:6px;width:18px;margin-bottom:5px}.uppy-Root [role~=tooltip][data-microtip-position|=top]:after{margin-bottom:11px}.uppy-Root [role~=tooltip][data-microtip-position|=top]:before{transform:translate3d(-50%,0,0);bottom:100%;left:50%}.uppy-Root [role~=tooltip][data-microtip-position|=top]:hover:before{transform:translate3d(-50%,-5px,0)}.uppy-Root [role~=tooltip][data-microtip-position|=top]:after{transform:translate3d(-50%,0,0);bottom:100%;left:50%}.uppy-Root [role~=tooltip][data-microtip-position=top]:hover:after{transform:translate3d(-50%,-5px,0)}.uppy-Root [role~=tooltip][data-microtip-position=top-left]:after{transform:translate3d(calc(-100% + 16px),0,0);bottom:100%}.uppy-Root [role~=tooltip][data-microtip-position=top-left]:hover:after{transform:translate3d(calc(-100% + 16px),-5px,0)}.uppy-Root [role~=tooltip][data-microtip-position=top-right]:after{transform:translate3d(-16px,0,0);bottom:100%}.uppy-Root [role~=tooltip][data-microtip-position=top-right]:hover:after{transform:translate3d(-16px,-5px,0)}.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M33.342 12H1.338c6 0 11.627-12.002 16.002-12.002C21.715-.002 27.406 12 33.342 12z'/%3E%3C/svg%3E") no-repeat;height:6px;width:18px;margin-top:5px;margin-bottom:0}.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:after{margin-top:11px}.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:before{transform:translate3d(-50%,-10px,0);bottom:auto;left:50%;top:100%}.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:hover:before{transform:translate3d(-50%,0,0)}.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:after{transform:translate3d(-50%,-10px,0);top:100%;left:50%}.uppy-Root [role~=tooltip][data-microtip-position=bottom]:hover:after{transform:translate3d(-50%,0,0)}.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:after{transform:translate3d(calc(-100% + 16px),-10px,0);top:100%}.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:hover:after{transform:translate3d(calc(-100% + 16px),0,0)}.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:after{transform:translate3d(-16px,-10px,0);top:100%}.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:hover:after{transform:translate3d(-16px,0,0)}.uppy-Root [role~=tooltip][data-microtip-position=left]:after,.uppy-Root [role~=tooltip][data-microtip-position=left]:before{bottom:auto;left:auto;right:100%;top:50%;transform:translate3d(10px,-50%,0)}.uppy-Root [role~=tooltip][data-microtip-position=left]:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M0 33.342V1.338c0 6 12.002 11.627 12.002 16.002C12.002 21.715 0 27.406 0 33.342z'/%3E%3C/svg%3E") no-repeat;height:18px;width:6px;margin-right:5px;margin-bottom:0}.uppy-Root [role~=tooltip][data-microtip-position=left]:after{margin-right:11px}.uppy-Root [role~=tooltip][data-microtip-position=left]:hover:after,.uppy-Root [role~=tooltip][data-microtip-position=left]:hover:before{transform:translate3d(0,-50%,0)}.uppy-Root [role~=tooltip][data-microtip-position=right]:after,.uppy-Root [role~=tooltip][data-microtip-position=right]:before{bottom:auto;left:100%;top:50%;transform:translate3d(-10px,-50%,0)}.uppy-Root [role~=tooltip][data-microtip-position=right]:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M12 2.658v32.004c0-6-12.002-11.627-12.002-16.002C-.002 14.285 12 8.594 12 2.658z'/%3E%3C/svg%3E") no-repeat;height:18px;width:6px;margin-bottom:0;margin-left:5px}.uppy-Root [role~=tooltip][data-microtip-position=right]:after{margin-left:11px}.uppy-Root [role~=tooltip][data-microtip-position=right]:hover:after,.uppy-Root [role~=tooltip][data-microtip-position=right]:hover:before{transform:translate3d(0,-50%,0)}.uppy-Root [role~=tooltip][data-microtip-size=small]:after{white-space:normal;width:80px}.uppy-Root [role~=tooltip][data-microtip-size=medium]:after{white-space:normal;width:150px}.uppy-Root [role~=tooltip][data-microtip-size=large]:after{white-space:normal;width:260px}.uppy-StatusBar{display:-ms-flexbox;display:flex;position:relative;height:40px;line-height:40px;font-size:12px;font-weight:400;color:#fff;background-color:#fff;z-index:1001;transition:height .2s}.uppy-size--md .uppy-StatusBar{height:46px}.uppy-StatusBar:before{content:"";position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:2px;background-color:#eaeaea}.uppy-StatusBar[aria-hidden=true]{overflow-y:hidden;height:0}.uppy-StatusBar.is-complete .uppy-StatusBar-progress{background-color:#1bb240}.uppy-StatusBar.is-error .uppy-StatusBar-progress{background-color:#e32437}.uppy-StatusBar.is-complete .uppy-StatusBar-statusIndicator{color:#1bb240}.uppy-StatusBar.is-error .uppy-StatusBar-statusIndicator{color:#e32437}.uppy-StatusBar:not([aria-hidden=true]).is-waiting{background-color:#fff;height:65px;border-top:1px solid #eaeaea}.uppy-StatusBar-progress{background-color:#2275d7;height:2px;position:absolute;z-index:1001;transition:background-color,width .3s ease-out}.uppy-StatusBar-progress.is-indeterminate{background-size:64px 64px;background-image:linear-gradient(45deg,rgba(0,0,0,.3) 25%,transparent 0,transparent 50%,rgba(0,0,0,.3) 0,rgba(0,0,0,.3) 75%,transparent 0,transparent);animation:uppy-StatusBar-ProgressStripes 1s linear infinite}@keyframes uppy-StatusBar-ProgressStripes{0%{background-position:0 0}to{background-position:64px 0}}.uppy-StatusBar.is-postprocessing .uppy-StatusBar-progress,.uppy-StatusBar.is-preprocessing .uppy-StatusBar-progress{background-color:#f6a623}.uppy-StatusBar.is-waiting .uppy-StatusBar-progress{display:none}.uppy-StatusBar-content{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;position:relative;z-index:1002;padding-left:10px;white-space:nowrap;text-overflow:ellipsis;color:#333;height:100%}.uppy-size--md .uppy-StatusBar-content{padding-left:15px}.uppy-StatusBar-status{line-height:1.4;font-weight:400;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;padding-right:.3em}.uppy-Root:not(.uppy-size--md) .uppy-StatusBar-additionalInfo{display:none}.uppy-StatusBar-statusPrimary{font-weight:500}.uppy-StatusBar-statusSecondary{margin-top:1px;font-size:11px;line-height:1.2;display:inline-block;color:#757575;white-space:nowrap}.uppy-StatusBar-statusSecondaryHint{display:inline-block;vertical-align:middle;margin-right:5px;line-height:1}.uppy-size--md .uppy-StatusBar-statusSecondaryHint{margin-right:8px}.uppy-StatusBar-statusIndicator{position:relative;top:1px;color:#525252;margin-right:7px}.uppy-StatusBar-statusIndicator svg{vertical-align:text-bottom}.uppy-StatusBar-actions{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;position:absolute;top:0;bottom:0;right:10px;z-index:1004}.uppy-StatusBar.is-waiting .uppy-StatusBar-actions{width:100%;position:static;padding:0 15px;background-color:#fafafa}.uppy-StatusBar-actionCircleBtn{line-height:1;cursor:pointer;margin:3px;opacity:.9}.uppy-StatusBar-actionCircleBtn:focus{outline:none}.uppy-StatusBar-actionCircleBtn::-moz-focus-inner{border:0}.uppy-StatusBar-actionCircleBtn:focus{box-shadow:0 0 0 3px rgba(34,117,215,.5)}.uppy-StatusBar-actionCircleBtn:hover{opacity:1}.uppy-StatusBar-actionCircleBtn:focus{border-radius:50%}.uppy-StatusBar-actionCircleBtn svg{vertical-align:bottom}.uppy-StatusBar-actionBtn{display:inline-block;vertical-align:middle;font-size:10px;line-height:inherit;color:#2275d7}.uppy-size--md .uppy-StatusBar-actionBtn{font-size:11px}.uppy-StatusBar-actionBtn--retry{height:16px;border-radius:8px;margin-right:6px;background-color:#ff4b23;line-height:1;color:#fff;padding:1px 6px 3px 18px;position:relative}.uppy-StatusBar-actionBtn--retry:focus{outline:none}.uppy-StatusBar-actionBtn--retry::-moz-focus-inner{border:0}.uppy-StatusBar-actionBtn--retry:focus{box-shadow:0 0 0 3px rgba(34,117,215,.5)}.uppy-StatusBar-actionBtn--retry:hover{background-color:#f92d00}.uppy-StatusBar-actionBtn--retry svg{position:absolute;top:3px;left:6px}.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload{font-size:14px;width:100%;padding:15px 10px;color:#fff;background-color:#1bb240;line-height:1}.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover{background-color:#148630}.uppy-size--md .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload{padding:13px 22px;width:auto}.uppy-StatusBar:not(.is-waiting) .uppy-StatusBar-actionBtn--upload{background-color:transparent;color:#2275d7}.uppy-StatusBar-actionBtn--uploadNewlyAdded{padding-right:3px;padding-left:3px;padding-bottom:1px;border-radius:3px}.uppy-StatusBar-actionBtn--uploadNewlyAdded:focus{outline:none}.uppy-StatusBar-actionBtn--uploadNewlyAdded::-moz-focus-inner{border:0}.uppy-StatusBar-actionBtn--uploadNewlyAdded:focus{box-shadow:0 0 0 3px rgba(34,117,215,.5)}.uppy-StatusBar-details{line-height:12px;width:13px;height:13px;display:inline-block;vertical-align:middle;color:#fff;background-color:#939393;border-radius:50%;position:relative;top:0;left:2px;font-size:10px;font-weight:600;text-align:center;cursor:help}.uppy-StatusBar-details:after{line-height:1.3;word-wrap:break-word}.uppy-StatusBar-spinner{animation-name:uppy-StatusBar-spinnerAnimation;animation-duration:1s;animation-iteration-count:infinite;animation-timing-function:linear;margin-right:10px;fill:#2275d7}.uppy-StatusBar.is-postprocessing .uppy-StatusBar-spinner,.uppy-StatusBar.is-preprocessing .uppy-StatusBar-spinner{fill:#f6a623}@keyframes uppy-StatusBar-spinnerAnimation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.uppy-ProviderBrowser-viewType--grid ul.uppy-ProviderBrowser-list{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:start;align-items:flex-start;padding:6px}.uppy-ProviderBrowser-viewType--grid ul.uppy-ProviderBrowser-list:after{content:"";-ms-flex:auto;flex:auto}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem{width:50%;position:relative;margin:0}.uppy-size--md .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem{width:33.3333%}.uppy-size--lg .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem{width:25%}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem:before{content:"";padding-top:100%;display:block}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--selected img,.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--selected svg{opacity:.85}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner{background-color:hsla(0,0%,57.6%,.3)}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview svg{fill:rgba(0,0,0,.7);width:30%;height:30%}.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner{border-radius:4px;overflow:hidden;position:absolute;top:7px;left:7px;right:7px;bottom:7px;text-align:center;width:calc(100% - 14px);height:calc(100% - 14px)}.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner:focus{outline:none;box-shadow:0 0 0 3px rgba(34,117,215,.9)}.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner img,.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner svg{width:100%;height:100%;object-fit:cover;border-radius:4px}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox{position:absolute;top:16px;right:16px;width:26px;height:26px;background-color:#2275d7;border-radius:50%;z-index:1002;opacity:0}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox:after{width:12px;height:7px;left:7px;top:8px}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox--is-checked{opacity:1}.uppy-ProviderBrowser-viewType--list{background-color:#fff}.uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:7px 15px;margin:0}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox{margin-right:15px;height:17px;width:17px;border-radius:3px;background-color:#fff;border:1px solid #cfcfcf}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox:focus{border:1px solid #2275d7;box-shadow:0 0 0 3px rgba(34,117,215,.25);outline:none}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox:after{opacity:0;height:5px;width:9px;left:3px;top:4px}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox--is-checked{background-color:#2275d7;border-color:#2275d7}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox--is-checked:after{opacity:1}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:2px}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner:focus{outline:none;text-decoration:underline}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img,.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner svg{margin-right:8px;max-width:20px;max-height:20px}.uppy-ProviderBrowserItem-fakeCheckbox{position:relative;cursor:pointer;-ms-flex-negative:0;flex-shrink:0}.uppy-ProviderBrowserItem-fakeCheckbox:after{content:"";position:absolute;cursor:pointer;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg)}.uppy-DashboardContent-panelBody{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex:1;flex:1}.uppy-Provider-auth,.uppy-Provider-empty,.uppy-Provider-error,.uppy-Provider-loading{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-flow:column wrap;flex-flow:column wrap;-ms-flex:1;flex:1;color:#939393}.uppy-Provider-empty{color:#939393}.uppy-Provider-authIcon svg{width:100px;height:75px;margin-bottom:15px}.uppy-Provider-authTitle{font-size:17px;line-height:1.4;font-weight:400;margin-bottom:30px;padding:0 15px;max-width:500px;text-align:center;color:#757575}.uppy-size--md .uppy-Provider-authTitle{font-size:20px}.uppy-Provider-breadcrumbs{-ms-flex:1;flex:1;color:#525252;font-size:12px;margin-bottom:10px;text-align:left}.uppy-size--md .uppy-Provider-breadcrumbs{margin-bottom:0}.uppy-Provider-breadcrumbsIcon{display:inline-block;color:#525252;vertical-align:middle;margin-right:4px;line-height:1}.uppy-Provider-breadcrumbsIcon svg{width:13px;height:13px;fill:#525252}.uppy-Provider-breadcrumbs button{display:inline-block;line-height:inherit;padding:4px;border-radius:3px}.uppy-Provider-breadcrumbs button:focus{outline:none}.uppy-Provider-breadcrumbs button::-moz-focus-inner{border:0}.uppy-Provider-breadcrumbs button:hover{color:#1b5dab}.uppy-Provider-breadcrumbs button:focus{background-color:#eceef2}.uppy-Provider-breadcrumbs button:hover{text-decoration:underline;cursor:pointer}.uppy-ProviderBrowser{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex:1;flex:1;font-size:14px;font-weight:400;height:100%}.uppy-ProviderBrowser-user{margin:0 8px 0 0;font-weight:500;color:#333}.uppy-ProviderBrowser-user:after{content:"\00B7";position:relative;left:4px;color:#939393;font-weight:400}.uppy-ProviderBrowser-header{z-index:1001;border-bottom:1px solid #eaeaea;position:relative}.uppy-ProviderBrowser-headerBar{padding:7px 15px;background-color:#fafafa;z-index:1001;color:#757575;line-height:1.4;font-size:12px}.uppy-size--md .uppy-ProviderBrowser-headerBar{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.uppy-ProviderBrowser-headerBar--simple{text-align:center;display:block;-ms-flex-pack:center;justify-content:center}.uppy-ProviderBrowser-headerBar--simple .uppy-Provider-breadcrumbsWrap{-ms-flex:none;flex:none;display:inline-block;vertical-align:middle}.uppy-ProviderBrowser-search{width:100%;background-color:#fff;position:relative;height:30px;margin-top:10px;margin-bottom:5px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.uppy-ProviderBrowser-searchIcon{position:absolute;width:12px;height:12px;left:16px;z-index:1002;color:#bbb}.uppy-ProviderBrowser-searchInput{width:100%;height:30px;background-color:transparent;outline:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:12px;line-height:1.4;border:0;margin:0 8px;padding-left:27px;z-index:1001;border-radius:4px}.uppy-ProviderBrowser-searchInput:focus{outline:0;background-color:#f4f4f4}.uppy-ProviderBrowser-searchClose{position:absolute;width:22px;height:22px;padding:6px;right:12px;top:4px;z-index:1002;color:#939393;cursor:pointer}.uppy-ProviderBrowser-searchClose:hover{color:#757575}.uppy-ProviderBrowser-searchClose svg{vertical-align:text-top}.uppy-ProviderBrowser-searchInput:-ms-input-placeholder{color:#939393;opacity:1}.uppy-ProviderBrowser-searchInput::-ms-input-placeholder{color:#939393;opacity:1}.uppy-ProviderBrowser-searchInput::placeholder{color:#939393;opacity:1}.uppy-ProviderBrowser-userLogout{cursor:pointer;line-height:inherit;color:#2275d7;padding:4px;border-radius:3px}.uppy-ProviderBrowser-userLogout:focus{outline:none}.uppy-ProviderBrowser-userLogout::-moz-focus-inner{border:0}.uppy-ProviderBrowser-userLogout:hover{color:#1b5dab}.uppy-ProviderBrowser-userLogout:focus{background-color:#eceef2}.uppy-ProviderBrowser-userLogout:hover{text-decoration:underline}.uppy-ProviderBrowser-body{-ms-flex:1;flex:1;position:relative}.uppy-ProviderBrowser-list{-ms-flex:1;flex:1;position:relative;display:block;width:100%;height:100%;background-color:#fff;border-spacing:0;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;position:absolute;top:0;bottom:0;left:0;right:0;list-style:none;margin:0;padding:0}.uppy-ProviderBrowserItem-inner{cursor:pointer;font-weight:500;font-size:13px}.uppy-ProviderBrowser-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;background:#fff;height:65px;border-top:1px solid #eaeaea;padding:0 15px}.uppy-ProviderBrowser-footer button{margin-right:8px}.uppy-DashboardItem-previewInnerWrap{width:100%;height:100%;overflow:hidden;position:relative;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex-direction:column;flex-direction:column;box-shadow:0 0 2px 0 rgba(0,0,0,.4);border-radius:3px}.uppy-size--md .uppy-DashboardItem-previewInnerWrap{box-shadow:0 1px 2px rgba(0,0,0,.15)}.uppy-DashboardItem-previewInnerWrap:after{content:"";position:absolute;left:0;right:0;top:0;bottom:0;background-color:rgba(0,0,0,.65);display:none;z-index:1001}.uppy-DashboardItem-previewLink{position:absolute;left:0;right:0;top:0;bottom:0;z-index:1002}.uppy-DashboardItem-previewLink:focus{box-shadow:inset 0 0 0 3px #76abe9}.uppy-DashboardItem-preview img.uppy-DashboardItem-previewImg{width:100%;height:100%;object-fit:cover;transform:translateZ(0);border-radius:3px}.uppy-DashboardItem-progress{display:none;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:1002;color:#fff;text-align:center;width:120px;transition:all .35 ease}.uppy-DashboardItem-progressIndicator{display:inline-block;width:38px;height:38px;opacity:.9;cursor:pointer}.uppy-DashboardItem-progressIndicator:focus{outline:none}.uppy-DashboardItem-progressIndicator::-moz-focus-inner{border:0}.uppy-DashboardItem-progressIndicator:focus svg.retry,.uppy-DashboardItem-progressIndicator:focus svg.UppyIcon-progressCircle .bg{fill:#76abe9}svg.UppyIcon-progressCircle{width:100%;height:100%}svg.UppyIcon-progressCircle .bg{stroke:hsla(0,0%,100%,.4);opacity:0}svg.UppyIcon-progressCircle .progress{stroke:#fff;transition:stroke-dashoffset .5s ease-out;opacity:0}svg.UppyIcon-progressCircle .play{stroke:#fff;display:none}svg.UppyIcon-progressCircle .cancel,svg.UppyIcon-progressCircle .pause,svg.UppyIcon-progressCircle .play{fill:#fff;opacity:0;transition:all .2s}svg.UppyIcon-progressCircle .pause{stroke:#fff;display:none}svg.UppyIcon-progressCircle .check{opacity:0;fill:#fff;transition:all .2s}svg.UppyIcon.retry{fill:#fff}.uppy-DashboardItem.is-complete .uppy-DashboardItem-progress{transform:none;top:-9px;right:-8px;left:auto;width:auto}.uppy-DashboardItem.is-complete .uppy-DashboardItem-progress,.uppy-DashboardItem.is-error .uppy-DashboardItem-progress,.uppy-DashboardItem.is-inprogress .uppy-DashboardItem-progress{display:block}.uppy-DashboardItem.is-error .uppy-DashboardItem-progressIndicator{width:18px;height:18px}.uppy-size--md .uppy-DashboardItem.is-error .uppy-DashboardItem-progressIndicator{width:28px;height:28px}.uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator{width:18px;height:18px;opacity:1}.uppy-size--md .uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator{width:22px;height:22px}.uppy-DashboardItem.is-paused svg.UppyIcon-progressCircle .pause{opacity:0}.uppy-DashboardItem.is-paused svg.UppyIcon-progressCircle .play{opacity:1}.uppy-DashboardItem.is-noIndividualCancellation .uppy-DashboardItem-progressIndicator{cursor:default}.uppy-DashboardItem.is-noIndividualCancellation .cancel{display:none}.uppy-DashboardItem.is-processing .uppy-DashboardItem-progress{opacity:0}.uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator{cursor:default}.uppy-DashboardItem.is-complete .progress{stroke:#1bb240;fill:#1bb240;opacity:1}.uppy-DashboardItem.is-complete .check{opacity:1}.uppy-size--md .uppy-DashboardItem-progressIndicator{width:55px;height:55px}.uppy-DashboardItem.is-resumable .pause,.uppy-DashboardItem.is-resumable .play{display:block}.uppy-DashboardItem.is-resumable .cancel{display:none}.uppy-DashboardItem.is-inprogress .bg,.uppy-DashboardItem.is-inprogress .cancel,.uppy-DashboardItem.is-inprogress .pause,.uppy-DashboardItem.is-inprogress .progress{opacity:1}.uppy-DashboardItem-fileInfo{padding-right:5px}.uppy-DashboardItem-name{font-size:12px;line-height:1.3;font-weight:500;margin-bottom:4px;word-break:break-all;word-wrap:anywhere}.uppy-DashboardItem-status{font-size:11px;line-height:1.3;font-weight:400;color:#757575}.uppy-DashboardItem-statusSize{display:inline-block;vertical-align:bottom;text-transform:uppercase}.uppy-DashboardItem-sourceIcon{display:none;vertical-align:bottom;color:#bbb}.uppy-DashboardItem-sourceIcon:not(:first-child){position:relative;margin-left:14px}.uppy-DashboardItem-sourceIcon svg,.uppy-DashboardItem-sourceIcon svg *{max-width:100%;max-height:100%;display:inline-block;vertical-align:text-bottom;overflow:hidden;fill:currentColor;width:11px;height:12px}.uppy-DashboardItem-action{cursor:pointer;color:#939393}.uppy-DashboardItem-action:focus{outline:none}.uppy-DashboardItem-action::-moz-focus-inner{border:0}.uppy-DashboardItem-action:focus{box-shadow:0 0 0 3px rgba(34,117,215,.5)}.uppy-DashboardItem-action:hover{opacity:1;color:#1f1f1f}.uppy-DashboardItem-action--remove{color:#1f1f1f;opacity:.95}.uppy-Dashboard:not(.uppy-size--md) .uppy-DashboardItem-actionWrapper{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.uppy-Dashboard:not(.uppy-size--md) .uppy-DashboardItem-action{width:22px;height:22px;padding:3px;margin-left:3px}.uppy-Dashboard:not(.uppy-size--md) .uppy-DashboardItem-action:focus{border-radius:3px}.uppy-size--md .uppy-DashboardItem-action--copyLink,.uppy-size--md .uppy-DashboardItem-action--edit{width:16px;height:16px;padding:0}.uppy-size--md .uppy-DashboardItem-action--copyLink:focus,.uppy-size--md .uppy-DashboardItem-action--edit:focus{border-radius:3px}.uppy-size--md .uppy-DashboardItem-action--remove{z-index:1002;position:absolute;top:-8px;right:-8px;width:18px;height:18px;padding:0}.uppy-size--md .uppy-DashboardItem-action--remove:focus{border-radius:50%}.uppy-Dashboard:not(.uppy-size--md) .uppy-DashboardItem{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;border-bottom:1px solid #eaeaea;padding:10px 0 10px 10px}.uppy-size--md .uppy-DashboardItem{position:relative;display:block;float:left;margin:5px 15px;width:calc(33.333% - 30px);height:215px}.uppy-size--lg .uppy-DashboardItem{margin:5px 15px;width:calc(25% - 30px);height:190px}.uppy-size--xl .uppy-DashboardItem{width:calc(20% - 30px);height:210px}.uppy-DashboardItem-preview{position:relative}.uppy-Dashboard:not(.uppy-size--md) .uppy-DashboardItem-preview{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0;width:50px;height:50px}.uppy-size--md .uppy-DashboardItem-preview{width:100%;height:140px}.uppy-size--lg .uppy-DashboardItem-preview{height:120px}.uppy-size--xl .uppy-DashboardItem-preview{height:140px}.uppy-DashboardItem-fileInfoAndButtons{-ms-flex-positive:1;flex-grow:1;padding-right:8px;padding-left:12px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.uppy-size--md .uppy-DashboardItem-fileInfoAndButtons{-ms-flex-align:start;align-items:flex-start;width:100%;padding:9px 0 0}.uppy-DashboardItem-fileInfo{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1}.uppy-DashboardItem-actionWrapper{-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.uppy-DashboardItem.is-error .uppy-DashboardItem-previewInnerWrap:after,.uppy-DashboardItem.is-inprogress .uppy-DashboardItem-previewInnerWrap:after{display:block}.uppy-DashboardItem.is-inprogress:not(.is-resumable) .uppy-DashboardItem-action--remove{display:none}.uppy-Dashboard-FileCard{width:100%;height:100%;position:absolute;top:0;left:0;right:0;bottom:0;z-index:1005;box-shadow:0 0 10px 4px rgba(0,0,0,.1);background-color:#fff;border-radius:5px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.uppy-Dashboard-FileCard .uppy-DashboardContent-bar{border-top-left-radius:5px;border-top-right-radius:5px}.uppy-Dashboard-FileCard .uppy-Dashboard-FileCard-actions{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.uppy-Dashboard-FileCard-inner{height:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-direction:column;flex-direction:column}.uppy-Dashboard-FileCard-inner,.uppy-Dashboard-FileCard-preview{-ms-flex-negative:1;flex-shrink:1;min-height:0;display:-ms-flexbox;display:flex}.uppy-Dashboard-FileCard-preview{height:60%;-ms-flex-positive:0;flex-grow:0;border-bottom:1px solid #eaeaea;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.uppy-Dashboard-FileCard-preview img.uppy-DashboardItem-previewImg{max-width:90%;max-height:90%;object-fit:cover;-ms-flex:0 0 auto;flex:0 0 auto;border-radius:3px;box-shadow:0 3px 20px rgba(0,0,0,.15)}.uppy-Dashboard-FileCard-info{height:40%;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;padding:30px 20px 20px;overflow-y:auto;-webkit-overflow-scrolling:touch}.uppy-Dashboard-FileCard-fieldset{font-size:0;border:0;padding:0;max-width:640px;margin:auto auto 12px}.uppy-Dashboard-FileCard-label{display:inline-block;vertical-align:middle;width:22%;font-size:12px;color:#525252}.uppy-size--md .uppy-Dashboard-FileCard-label{font-size:14px}.uppy-Dashboard-FileCard-input{display:inline-block;vertical-align:middle;width:78%}.uppy-Dashboard-FileCard-actions{height:55px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0;border-top:1px solid #eaeaea;padding:0 15px;background-color:#fafafa;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.uppy-size--md .uppy-Dashboard-FileCard-actions{height:65px}.uppy-Dashboard-FileCard-actionsBtn{margin-right:10px}.uppy-transition-slideDownUp-enter{opacity:.01;transform:translate3d(0,-105%,0);transition:transform .25s ease-in-out,opacity .25s ease-in-out}.uppy-transition-slideDownUp-enter.uppy-transition-slideDownUp-enter-active{opacity:1;transform:translateZ(0)}.uppy-transition-slideDownUp-leave{opacity:1;transform:translateZ(0);transition:transform .25s ease-in-out,opacity .25s ease-in-out}.uppy-transition-slideDownUp-leave.uppy-transition-slideDownUp-leave-active{opacity:.01;transform:translate3d(0,-105%,0)}.uppy-Dashboard--modal{z-index:1001}.uppy-Dashboard--modal[aria-hidden=true]{display:none}@keyframes uppy-Dashboard-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes uppy-Dashboard-fadeOut{0%{opacity:1}to{opacity:0}}@keyframes uppy-Dashboard-slideDownAndFadeIn{0%{transform:translate3d(-50%,-70%,0);opacity:0}to{transform:translate3d(-50%,-50%,0);opacity:1}}@keyframes uppy-Dashboard-slideDownAndFadeIn--small{0%{transform:translate3d(0,-20%,0);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes uppy-Dashboard-slideUpFadeOut{0%{transform:translate3d(-50%,-50%,0);opacity:1}to{transform:translate3d(-50%,-70%,0);opacity:0}}@keyframes uppy-Dashboard-slideUpFadeOut--small{0%{transform:translateZ(0);opacity:1}to{transform:translate3d(0,-20%,0);opacity:0}}.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose>.uppy-Dashboard-inner{animation:uppy-Dashboard-slideDownAndFadeIn--small .3s cubic-bezier(0,0,.2,1)}@media only screen and (min-width:820px){.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose>.uppy-Dashboard-inner{animation:uppy-Dashboard-slideDownAndFadeIn .3s cubic-bezier(0,0,.2,1)}}.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose>.uppy-Dashboard-overlay{animation:uppy-Dashboard-fadeIn .3s cubic-bezier(0,0,.2,1)}.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing>.uppy-Dashboard-inner{animation:uppy-Dashboard-slideUpFadeOut--small .3s cubic-bezier(0,0,.2,1)}@media only screen and (min-width:820px){.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing>.uppy-Dashboard-inner{animation:uppy-Dashboard-slideUpFadeOut .3s cubic-bezier(0,0,.2,1)}}.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing>.uppy-Dashboard-overlay{animation:uppy-Dashboard-fadeOut .3s cubic-bezier(0,0,.2,1)}.uppy-Dashboard-isFixed{overflow:hidden;height:100vh}.uppy-Dashboard--modal .uppy-Dashboard-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);z-index:1001}.uppy-Dashboard-inner{position:relative;background-color:#fafafa;max-width:100%;max-height:100%;min-height:450px;outline:none;border:1px solid #eaeaea;border-radius:5px}.uppy-size--md .uppy-Dashboard-inner{min-height:auto}@media only screen and (min-width:820px){.uppy-Dashboard-inner{width:750px;height:550px}}.uppy-Dashboard--modal .uppy-Dashboard-inner{z-index:1002}.uppy-Dashboard-innerWrap{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;overflow:hidden;position:relative;border-radius:5px;opacity:0}.uppy-Dashboard--isInnerWrapVisible .uppy-Dashboard-innerWrap{opacity:1}.uppy-Dashboard--modal .uppy-Dashboard-inner{position:fixed;top:35px;left:15px;right:15px;bottom:15px;border:none}@media only screen and (min-width:820px){.uppy-Dashboard--modal .uppy-Dashboard-inner{top:50%;left:50%;transform:translate(-50%,-50%);box-shadow:0 5px 15px 4px rgba(0,0,0,.15)}}.uppy-Dashboard-close{display:block;position:absolute;top:-33px;right:-2px;cursor:pointer;color:hsla(0,0%,100%,.9);font-size:27px;z-index:1005}.uppy-Dashboard-close:focus{outline:none}.uppy-Dashboard-close::-moz-focus-inner{border:0}.uppy-Dashboard-close:focus{color:#8cb8ed}@media only screen and (min-width:820px){.uppy-Dashboard-close{font-size:35px;top:-10px;right:-35px}}.uppy-DashboardAddFiles{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex-direction:column;flex-direction:column;height:100%;position:relative;text-align:center;-ms-flex:1;flex:1}.uppy-size--md .uppy-DashboardAddFiles{margin:7px;border-radius:3px;border:1px dashed #dfdfdf}.uppy-Dashboard-AddFilesPanel .uppy-DashboardAddFiles{border:none}.uppy-Dashboard--modal .uppy-DashboardAddFiles{border-color:#cfcfcf}.uppy-DashboardTabs{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;width:100%}.uppy-size--md .uppy-DashboardTabs{-ms-flex-align:center;align-items:center}.uppy-DashboardTabs-title{font-size:14px;line-height:30px;font-weight:400;margin:0;padding:0;text-align:center;color:#525252}.uppy-size--md .uppy-DashboardTabs-title{font-size:16px;line-height:40px}.uppy-DashboardAddFiles-info{padding-top:15px;padding-bottom:15px}.uppy-size--md .uppy-DashboardAddFiles-info{position:absolute;bottom:30px;left:0;right:0;padding-top:30px;padding-bottom:0}.uppy-Dashboard-browse{cursor:pointer;color:rgba(34,117,215,.9)}.uppy-Dashboard-browse:focus{outline:none}.uppy-Dashboard-browse::-moz-focus-inner{border:0}.uppy-Dashboard-browse:focus,.uppy-Dashboard-browse:hover{border-bottom:2px solid #2275d7}.uppy-DashboardTabs-list{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;max-height:300px;overflow-x:auto;-webkit-overflow-scrolling:touch;margin-top:10px;padding:2px 0}.uppy-size--md .uppy-DashboardTabs-list{-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;max-width:600px;overflow-x:initial;margin-top:15px;padding-top:0}.uppy-DashboardTab{width:100%;display:inline-block;text-align:center;border-bottom:1px solid #eaeaea;padding:0 2px}.uppy-size--md .uppy-DashboardTab{width:auto;margin-bottom:20px;border-bottom:none;padding:0}.uppy-DashboardTab-btn{width:100%;height:100%;cursor:pointer;border:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none;color:#525252;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:12px 15px;line-height:1;text-align:center}.uppy-size--md .uppy-DashboardTab-btn{width:86px;margin-right:1px;-ms-flex-direction:column;flex-direction:column;padding:10px 3px;border-radius:5px}.uppy-DashboardTab-btn::-moz-focus-inner{border:0}.uppy-DashboardTab-btn:hover{background-color:#f1f3f6}.uppy-DashboardTab-btn:active,.uppy-DashboardTab-btn:focus{background-color:#eceef2;outline:none}.uppy-DashboardTab-btn svg{margin-right:10px}.uppy-size--md .uppy-DashboardTab-btn svg{margin-right:0}.uppy-DashboardTab-btn svg{max-width:100%;max-height:100%;display:inline-block;vertical-align:text-top;overflow:hidden;transition:transform .15s ease-in-out}.uppy-DashboardTab-name{font-size:14px;font-weight:500}.uppy-size--md .uppy-DashboardTab-name{font-size:11px;line-height:14px;margin-top:8px;margin-bottom:0}.uppy-DashboardTab svg{width:18px;height:18px;vertical-align:middle}.uppy-size--md .uppy-DashboardTab svg{width:27px;height:27px}.uppy-Dashboard-input{width:.1px;height:.1px;opacity:0;overflow:hidden;position:absolute;z-index:-1}.uppy-DashboardContent-bar{-ms-flex-negative:0;flex-shrink:0;height:40px;width:100%;padding:0 10px;z-index:1004;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;position:relative;border-bottom:1px solid #eaeaea;background-color:#fafafa}.uppy-size--md .uppy-DashboardContent-bar{height:50px;padding:0 15px}.uppy-DashboardContent-title{position:absolute;top:0;left:0;right:0;text-align:center;font-size:12px;line-height:40px;font-weight:500;width:100%;max-width:170px;text-overflow:ellipsis;white-space:nowrap;overflow-x:hidden;margin:auto}.uppy-size--md .uppy-DashboardContent-title{font-size:14px;line-height:50px;max-width:300px}.uppy-DashboardContent-back{background:none;-webkit-appearance:none;font-family:inherit;font-size:inherit;line-height:1;border:0;color:inherit;border-radius:3px;font-size:12px;font-weight:400;cursor:pointer;color:#2275d7;padding:7px 6px;margin:0 0 0 -6px}.uppy-DashboardContent-back:focus{outline:none}.uppy-DashboardContent-back::-moz-focus-inner{border:0}.uppy-DashboardContent-back:hover{color:#1b5dab}.uppy-DashboardContent-back:focus{background-color:#eceef2}.uppy-size--md .uppy-DashboardContent-back{font-size:14px}.uppy-DashboardContent-addMore{background:none;-webkit-appearance:none;font-family:inherit;font-size:inherit;line-height:1;border:0;color:inherit;border-radius:3px;font-weight:500;cursor:pointer;color:#2275d7;width:29px;height:29px;padding:7px 8px;margin:0 -5px 0 0}.uppy-DashboardContent-addMore:focus{outline:none}.uppy-DashboardContent-addMore::-moz-focus-inner{border:0}.uppy-DashboardContent-addMore:hover{color:#1b5dab}.uppy-DashboardContent-addMore:focus{background-color:#eceef2}.uppy-size--md .uppy-DashboardContent-addMore{font-size:14px;width:auto;height:auto;margin-right:-8px}.uppy-DashboardContent-addMore svg{vertical-align:baseline;margin-right:4px}.uppy-size--md .uppy-DashboardContent-addMore svg{width:11px;height:11px}.uppy-DashboardContent-addMoreCaption{display:none}.uppy-size--md .uppy-DashboardContent-addMoreCaption{display:inline}.uppy-DashboardContent-panel{background-color:#f5f5f5;-ms-flex-direction:column;flex-direction:column;-ms-flex:1;flex:1}.uppy-Dashboard-AddFilesPanel,.uppy-DashboardContent-panel{position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden;z-index:1005;border-radius:5px;display:-ms-flexbox;display:flex}.uppy-Dashboard-AddFilesPanel{background:#fafafa;background:linear-gradient(0deg,#fafafa 35%,hsla(0,0%,98%,.85));box-shadow:0 0 10px 5px rgba(0,0,0,.15);-ms-flex-direction:column;flex-direction:column}.uppy-Dashboard--isAddFilesPanelVisible .uppy-Dashboard-files{filter:blur(2px)}.uppy-Dashboard-progress{position:absolute;bottom:0;left:0;width:100%;height:12%}.uppy-Dashboard-progressBarContainer.is-active{z-index:1004;position:absolute;top:0;left:0;width:100%;height:100%}.uppy-Dashboard-filesContainer{position:relative;overflow-y:hidden;margin:0;-ms-flex:1;flex:1}.uppy-Dashboard-filesContainer:after{content:"";display:table;clear:both}.uppy-Dashboard-files{margin:0;padding:0 0 10px;overflow-y:auto;-webkit-overflow-scrolling:touch;-ms-flex:1;flex:1}.uppy-size--md .uppy-Dashboard-files{padding-top:10px}.uppy-Dashboard-dropFilesHereHint{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;visibility:hidden;position:absolute;top:7px;right:7px;bottom:7px;left:7px;padding-top:90px;border:1px dashed #2275d7;border-radius:3px;z-index:2000;text-align:center;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 11-1.414 1.414L25 16.414V34a1 1 0 11-2 0V16.414l-5.293 5.293a.999.999 0 11-1.414-1.414l7-7a.999.999 0 011.414 0l7 7z' fill='%232275D7'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;color:#707070;font-size:16px}.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-dropFilesHereHint{visibility:visible}.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-files,.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-progressindicators,.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-DashboardContent-bar{opacity:.15}.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-DashboardAddFiles{opacity:.03}.uppy-Dashboard-dropFilesTitle{max-width:300px;text-align:center;font-size:16px;line-height:1.35;font-weight:400;color:#525252;margin:auto;padding:0 15px}.uppy-size--md .uppy-Dashboard-dropFilesTitle{max-width:470px;font-size:27px}.uppy-Dashboard-note{font-size:14px;line-height:1.25;text-align:center;color:#757575;max-width:350px;margin:auto;padding:0 15px}.uppy-size--md .uppy-Dashboard-note{font-size:16px;line-height:1.35;max-width:600px}a.uppy-Dashboard-poweredBy{display:inline-block;text-align:center;font-size:11px;color:#939393;text-decoration:none;margin-top:8px}.uppy-Dashboard-poweredByIcon{stroke:#939393;fill:none;margin-left:1px;margin-right:1px;position:relative;top:1px;opacity:.9;vertical-align:text-top}.uppy-DashboardItem-previewIcon{width:25px;height:25px;z-index:100;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.uppy-size--md .uppy-DashboardItem-previewIcon{width:38px;height:38px}.uppy-DashboardItem-previewIcon svg{width:100%;height:100%}.uppy-DashboardItem-previewIconWrap{height:76px;max-height:75%;position:relative}.uppy-DashboardItem-previewIconBg{width:100%;height:100%;filter:drop-shadow(rgba(0,0,0,.1) 0 1px 1px)}.uppy-Dashboard-upload{position:relative;width:50px;height:50px}.uppy-size--md .uppy-Dashboard-upload{width:60px;height:60px}.uppy-Dashboard-upload .UppyIcon{position:relative;top:1px;width:50%}.uppy-Dashboard-uploadCount{position:absolute;top:-12px;right:-12px;background-color:#1bb240;color:#fff;border-radius:50%;width:16px;height:16px;line-height:16px;font-size:8px}.uppy-size--md .uppy-Dashboard-uploadCount{width:18px;height:18px;line-height:18px;font-size:9px}.uppy-DragDrop-container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;border-radius:7px;background-color:#fff;cursor:pointer;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;max-width:100%}.uppy-DragDrop-container:focus{outline:none;box-shadow:0 0 0 3px rgba(34,117,215,.4)}.uppy-DragDrop-container::-moz-focus-inner{border:0}.uppy-DragDrop-inner{margin:0;text-align:center;padding:80px 20px;line-height:1.4}.uppy-DragDrop-input{width:.1px;height:.1px;opacity:0;overflow:hidden;position:absolute;z-index:-1}.uppy-DragDrop-arrow{width:60px;height:60px;fill:#e0e0e0;margin-bottom:17px}.uppy-DragDrop--is-dragdrop-supported{border:2px dashed #adadad}.uppy-DragDrop--isDraggingOver{border:2px dashed #2275d7;background:#eaeaea}.uppy-DragDrop--isDraggingOver .uppy-DragDrop-arrow{fill:#939393}.uppy-DragDrop-label{display:block;cursor:pointer;font-size:1.15em;margin-bottom:5px}.uppy-DragDrop-note{font-size:1em;color:#adadad}.uppy-DragDrop-browse{color:#2275d7}.uppy-FileInput-container{margin-bottom:15px}.uppy-FileInput-btn{background:none;-webkit-appearance:none;font-family:inherit;font-size:inherit;line-height:1;margin:0;color:inherit;font-family:sans-serif;font-size:.85em;padding:10px 15px;color:#14457f;border:1px solid #14457f;border-radius:8px;cursor:pointer}.uppy-FileInput-btn:hover{background-color:#14457f;color:#fff}.uppy-ProgressBar{position:absolute;top:0;left:0;width:100%;height:3px;z-index:10000;transition:height .2s}.uppy-ProgressBar[aria-hidden=true]{height:0}.uppy-ProgressBar-inner{background-color:#2275d7;box-shadow:0 0 10px rgba(34,117,215,.7);height:100%;width:0;transition:width .4s ease}.uppy-ProgressBar-percentage{display:none;text-align:center;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff}.uppy-Url{width:100%;height:100%;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex:1;flex:1}.uppy-Url-input{width:90%;max-width:650px;margin-bottom:15px}.uppy-size--md .uppy-Url-input{margin-bottom:20px}.uppy-Url-importButton{padding:13px 25px}.uppy-size--md .uppy-Url-importButton{padding:13px 30px}.uppy-Webcam-container{width:100%;height:100%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex-direction:column;flex-direction:column}.uppy-Webcam-videoContainer{width:100%;-ms-flex:1;flex:1;-ms-flex-positive:1;flex-grow:1;overflow:hidden;background-color:#333;text-align:center;position:relative}.uppy-Webcam-video{max-width:100%;max-height:100%;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto}.uppy-Webcam-video--mirrored{transform:scaleX(-1)}.uppy-Webcam-buttonContainer{width:100%;height:75px;border-top:1px solid #eaeaea;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding:0 20px}.uppy-Webcam-button{width:45px;height:45px;border-radius:50%;background-color:#e32437;color:#fff;cursor:pointer;transition:all .3s}.uppy-Webcam-button svg{width:30px;height:30px;max-width:100%;max-height:100%;display:inline-block;vertical-align:text-top;overflow:hidden;fill:currentColor}.uppy-size--md .uppy-Webcam-button{width:60px;height:60px}.uppy-Webcam-button:hover{background-color:#d31b2d}.uppy-Webcam-button:focus{outline:none;box-shadow:0 0 0 .2rem rgba(34,117,215,.5)}.uppy-Webcam-button--picture{margin-right:12px}.uppy-Webcam-permissons{padding:15px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;-ms-flex-flow:column wrap;flex-flow:column wrap;height:100%;-ms-flex:1;flex:1}.uppy-Webcam-permissons p{max-width:450px;line-height:1.3}.uppy-Webcam-title{font-size:22px;line-height:1.35;font-weight:400;margin:0 0 5px;padding:0 15px;max-width:500px;text-align:center;color:#333}.uppy-Webcam-permissons p{text-align:center;line-height:1.45;color:#939393;margin:0}.uppy-Webcam-permissonsIcon svg{width:100px;height:75px;color:#bbb;margin-bottom:30px} + +/* +* FooTable v3 - FooTable is a jQuery plugin that aims to make HTML tables on smaller devices look awesome. +* @version 3.1.5 +* @link http://fooplugins.com +* @copyright Steven Usher & Brad Vincent 2015 +* @license Released under the GPLv3 license. +*/ +table.footable-details,table.footable>thead>tr.footable-filtering>th div.form-group{margin-bottom:0}table.footable,table.footable-details{position:relative;width:100%;border-spacing:0;border-collapse:collapse}table.footable-hide-fouc{display:none}table>tbody>tr>td>span.footable-toggle{margin-right:8px;opacity:.3}table>tbody>tr>td>span.footable-toggle.last-column{margin-left:8px;float:right}table.table-condensed>tbody>tr>td>span.footable-toggle{margin-right:5px}table.footable-details>tbody>tr>th:nth-child(1){min-width:40px;width:120px}table.footable-details>tbody>tr>td:nth-child(2){word-break:break-all}table.footable-details>tbody>tr:first-child>td,table.footable-details>tbody>tr:first-child>th,table.footable-details>tfoot>tr:first-child>td,table.footable-details>tfoot>tr:first-child>th,table.footable-details>thead>tr:first-child>td,table.footable-details>thead>tr:first-child>th{border-top-width:0}table.footable-details.table-bordered>tbody>tr:first-child>td,table.footable-details.table-bordered>tbody>tr:first-child>th,table.footable-details.table-bordered>tfoot>tr:first-child>td,table.footable-details.table-bordered>tfoot>tr:first-child>th,table.footable-details.table-bordered>thead>tr:first-child>td,table.footable-details.table-bordered>thead>tr:first-child>th{border-top-width:1px}div.footable-loader{vertical-align:middle;text-align:center;height:300px;position:relative}div.footable-loader>span.fooicon{display:inline-block;opacity:.3;font-size:30px;line-height:32px;width:32px;height:32px;margin-top:-16px;margin-left:-16px;position:absolute;top:50%;left:50%;-webkit-animation:fooicon-spin-r 2s infinite linear;animation:fooicon-spin-r 2s infinite linear}table.footable>tbody>tr.footable-empty>td{vertical-align:middle;text-align:center;font-size:30px}table.footable>tbody>tr>td,table.footable>tbody>tr>th{display:none}table.footable>tbody>tr.footable-detail-row>td,table.footable>tbody>tr.footable-detail-row>th,table.footable>tbody>tr.footable-empty>td,table.footable>tbody>tr.footable-empty>th{display:table-cell}@-webkit-keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fooicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings'!important;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fooicon:after,.fooicon:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fooicon-loader:before{content:"\e030"}.fooicon-plus:before{content:"\2b"}.fooicon-minus:before{content:"\2212"}.fooicon-search:before{content:"\e003"}.fooicon-remove:before{content:"\e014"}.fooicon-sort:before{content:"\e150"}.fooicon-sort-asc:before{content:"\e155"}.fooicon-sort-desc:before{content:"\e156"}.fooicon-pencil:before{content:"\270f"}.fooicon-trash:before{content:"\e020"}.fooicon-eye-close:before{content:"\e106"}.fooicon-flash:before{content:"\e162"}.fooicon-cog:before{content:"\e019"}.fooicon-stats:before{content:"\e185"}table.footable>thead>tr.footable-filtering>th{border-bottom-width:1px;font-weight:400}.footable-filtering-external.footable-filtering-right,table.footable.footable-filtering-right>thead>tr.footable-filtering>th,table.footable>thead>tr.footable-filtering>th{text-align:right}.footable-filtering-external.footable-filtering-left,table.footable.footable-filtering-left>thead>tr.footable-filtering>th{text-align:left}.footable-filtering-external.footable-filtering-center,.footable-paging-external.footable-paging-center,table.footable-paging-center>tfoot>tr.footable-paging>td,table.footable.footable-filtering-center>thead>tr.footable-filtering>th,table.footable>tfoot>tr.footable-paging>td{text-align:center}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:5px}table.footable>thead>tr.footable-filtering>th div.input-group{width:100%}.footable-filtering-external ul.dropdown-menu>li>a.checkbox,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox{margin:0;display:block;position:relative}.footable-filtering-external ul.dropdown-menu>li>a.checkbox>label,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox>label{display:block;padding-left:20px}.footable-filtering-external ul.dropdown-menu>li>a.checkbox input[type=checkbox],table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox input[type=checkbox]{position:absolute;margin-left:-20px}@media (min-width:768px){table.footable>thead>tr.footable-filtering>th div.input-group{width:auto}table.footable>thead>tr.footable-filtering>th div.form-group{margin-left:2px;margin-right:2px}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:0}}table.footable>tbody>tr>td.footable-sortable,table.footable>tbody>tr>th.footable-sortable,table.footable>tfoot>tr>td.footable-sortable,table.footable>tfoot>tr>th.footable-sortable,table.footable>thead>tr>td.footable-sortable,table.footable>thead>tr>th.footable-sortable{position:relative;padding-right:30px;cursor:pointer}td.footable-sortable>span.fooicon,th.footable-sortable>span.fooicon{position:absolute;right:6px;top:50%;margin-top:-7px;opacity:0;transition:opacity .3s ease-in}td.footable-sortable.footable-asc>span.fooicon,td.footable-sortable.footable-desc>span.fooicon,td.footable-sortable:hover>span.fooicon,th.footable-sortable.footable-asc>span.fooicon,th.footable-sortable.footable-desc>span.fooicon,th.footable-sortable:hover>span.fooicon{opacity:1}table.footable-sorting-disabled td.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled td.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled td.footable-sortable:hover>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled th.footable-sortable:hover>span.fooicon{opacity:0;visibility:hidden}.footable-paging-external ul.pagination,table.footable>tfoot>tr.footable-paging>td>ul.pagination{margin:10px 0 0}.footable-paging-external span.label,table.footable>tfoot>tr.footable-paging>td>span.label{display:inline-block;margin:0 0 10px;padding:4px 10px}.footable-paging-external.footable-paging-left,table.footable-paging-left>tfoot>tr.footable-paging>td{text-align:left}.footable-paging-external.footable-paging-right,table.footable-editing-right td.footable-editing,table.footable-editing-right tr.footable-editing,table.footable-paging-right>tfoot>tr.footable-paging>td{text-align:right}ul.pagination>li.footable-page{display:none}ul.pagination>li.footable-page.visible{display:inline}td.footable-editing{width:90px;max-width:90px}table.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit td.footable-editing,table.footable-editing-no-view td.footable-editing{width:70px;max-width:70px}table.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit.footable-editing-no-view td.footable-editing{width:50px;max-width:50px}table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view th.footable-editing{width:0;max-width:0;display:none!important}table.footable-editing-left td.footable-editing,table.footable-editing-left tr.footable-editing{text-align:left}table.footable-editing button.footable-add,table.footable-editing button.footable-hide,table.footable-editing-show button.footable-show,table.footable-editing.footable-editing-always-show button.footable-hide,table.footable-editing.footable-editing-always-show button.footable-show,table.footable-editing.footable-editing-always-show.footable-editing-no-add tr.footable-editing{display:none}table.footable-editing.footable-editing-always-show button.footable-add,table.footable-editing.footable-editing-show button.footable-add,table.footable-editing.footable-editing-show button.footable-hide{display:inline-block} + +/*! nouislider - 14.6.2 - 9/16/2020 */ +.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-connect{height:100%;width:100%}.noUi-origin{height:10%;width:10%}.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;top:-17px}.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px} + +/*slick carousel 1.9.0*/ + +.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none} +/*# sourceMappingURL=slick.min.css.map */ + +/*international telephone number select input*/ +.iti{position:relative;display:inline-block}.iti *{box-sizing:border-box;-moz-box-sizing:border-box}.iti__hide{display:none}.iti__v-hide{visibility:hidden}.iti input,.iti input[type=tel],.iti input[type=text]{position:relative;z-index:0;margin-top:0!important;margin-bottom:0!important;padding-right:36px;margin-right:0}.iti__flag-container{position:absolute;top:0;bottom:0;right:0;padding:1px}.iti__selected-flag{z-index:1;position:relative;display:flex;align-items:center;height:100%;padding:0 6px 0 8px}.iti__arrow{margin-left:6px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.iti__arrow--up{border-top:none;border-bottom:4px solid #555}.iti__country-list{position:absolute;z-index:2;list-style:none;text-align:left;padding:0;margin:0 0 0 -1px;box-shadow:1px 1px 4px rgba(0,0,0,.2);background-color:#fff;border:1px solid #ccc;white-space:nowrap;max-height:200px;overflow-y:scroll;-webkit-overflow-scrolling:touch}.iti__country-list--dropup{bottom:100%;margin-bottom:-1px}@media (max-width:500px){.iti__country-list{white-space:normal}}.iti__flag-box{display:inline-block;width:20px}.iti__divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.iti__country{padding:5px 10px;outline:0}.iti__dial-code{color:#999}.iti__country.iti__highlight{background-color:rgba(0,0,0,.05)}.iti__country-name,.iti__dial-code,.iti__flag-box{vertical-align:middle}.iti__country-name,.iti__flag-box{margin-right:6px}.iti--allow-dropdown input,.iti--allow-dropdown input[type=tel],.iti--allow-dropdown input[type=text],.iti--separate-dial-code input,.iti--separate-dial-code input[type=tel],.iti--separate-dial-code input[type=text]{padding-right:6px;padding-left:52px;margin-left:0}.iti--allow-dropdown .iti__flag-container,.iti--separate-dial-code .iti__flag-container{right:auto;left:0}.iti--allow-dropdown .iti__flag-container:hover{cursor:pointer}.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover{cursor:default}.iti--allow-dropdown input[disabled]+.iti__flag-container:hover .iti__selected-flag,.iti--allow-dropdown input[readonly]+.iti__flag-container:hover .iti__selected-flag{background-color:transparent}.iti--separate-dial-code .iti__selected-flag{background-color:rgba(0,0,0,.05)}.iti--separate-dial-code .iti__selected-dial-code{margin-left:6px}.iti--container{position:absolute;top:-1000px;left:-1000px;z-index:1060;padding:1px}.iti--container:hover{cursor:pointer}.iti-mobile .iti--container{top:30px;bottom:30px;left:30px;right:30px;position:fixed}.iti-mobile .iti__country-list{max-height:100%;width:100%}.iti-mobile .iti__country{padding:10px 10px;line-height:1.5em}.iti__flag{width:20px}.iti__flag.iti__be{width:18px}.iti__flag.iti__ch{width:15px}.iti__flag.iti__mc{width:19px}.iti__flag.iti__ne{width:18px}.iti__flag.iti__np{width:13px}.iti__flag.iti__va{width:15px}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-size:5652px 15px}}.iti__flag.iti__ac{height:10px;background-position:0 0}.iti__flag.iti__ad{height:14px;background-position:-22px 0}.iti__flag.iti__ae{height:10px;background-position:-44px 0}.iti__flag.iti__af{height:14px;background-position:-66px 0}.iti__flag.iti__ag{height:14px;background-position:-88px 0}.iti__flag.iti__ai{height:10px;background-position:-110px 0}.iti__flag.iti__al{height:15px;background-position:-132px 0}.iti__flag.iti__am{height:10px;background-position:-154px 0}.iti__flag.iti__ao{height:14px;background-position:-176px 0}.iti__flag.iti__aq{height:14px;background-position:-198px 0}.iti__flag.iti__ar{height:13px;background-position:-220px 0}.iti__flag.iti__as{height:10px;background-position:-242px 0}.iti__flag.iti__at{height:14px;background-position:-264px 0}.iti__flag.iti__au{height:10px;background-position:-286px 0}.iti__flag.iti__aw{height:14px;background-position:-308px 0}.iti__flag.iti__ax{height:13px;background-position:-330px 0}.iti__flag.iti__az{height:10px;background-position:-352px 0}.iti__flag.iti__ba{height:10px;background-position:-374px 0}.iti__flag.iti__bb{height:14px;background-position:-396px 0}.iti__flag.iti__bd{height:12px;background-position:-418px 0}.iti__flag.iti__be{height:15px;background-position:-440px 0}.iti__flag.iti__bf{height:14px;background-position:-460px 0}.iti__flag.iti__bg{height:12px;background-position:-482px 0}.iti__flag.iti__bh{height:12px;background-position:-504px 0}.iti__flag.iti__bi{height:12px;background-position:-526px 0}.iti__flag.iti__bj{height:14px;background-position:-548px 0}.iti__flag.iti__bl{height:14px;background-position:-570px 0}.iti__flag.iti__bm{height:10px;background-position:-592px 0}.iti__flag.iti__bn{height:10px;background-position:-614px 0}.iti__flag.iti__bo{height:14px;background-position:-636px 0}.iti__flag.iti__bq{height:14px;background-position:-658px 0}.iti__flag.iti__br{height:14px;background-position:-680px 0}.iti__flag.iti__bs{height:10px;background-position:-702px 0}.iti__flag.iti__bt{height:14px;background-position:-724px 0}.iti__flag.iti__bv{height:15px;background-position:-746px 0}.iti__flag.iti__bw{height:14px;background-position:-768px 0}.iti__flag.iti__by{height:10px;background-position:-790px 0}.iti__flag.iti__bz{height:14px;background-position:-812px 0}.iti__flag.iti__ca{height:10px;background-position:-834px 0}.iti__flag.iti__cc{height:10px;background-position:-856px 0}.iti__flag.iti__cd{height:15px;background-position:-878px 0}.iti__flag.iti__cf{height:14px;background-position:-900px 0}.iti__flag.iti__cg{height:14px;background-position:-922px 0}.iti__flag.iti__ch{height:15px;background-position:-944px 0}.iti__flag.iti__ci{height:14px;background-position:-961px 0}.iti__flag.iti__ck{height:10px;background-position:-983px 0}.iti__flag.iti__cl{height:14px;background-position:-1005px 0}.iti__flag.iti__cm{height:14px;background-position:-1027px 0}.iti__flag.iti__cn{height:14px;background-position:-1049px 0}.iti__flag.iti__co{height:14px;background-position:-1071px 0}.iti__flag.iti__cp{height:14px;background-position:-1093px 0}.iti__flag.iti__cr{height:12px;background-position:-1115px 0}.iti__flag.iti__cu{height:10px;background-position:-1137px 0}.iti__flag.iti__cv{height:12px;background-position:-1159px 0}.iti__flag.iti__cw{height:14px;background-position:-1181px 0}.iti__flag.iti__cx{height:10px;background-position:-1203px 0}.iti__flag.iti__cy{height:14px;background-position:-1225px 0}.iti__flag.iti__cz{height:14px;background-position:-1247px 0}.iti__flag.iti__de{height:12px;background-position:-1269px 0}.iti__flag.iti__dg{height:10px;background-position:-1291px 0}.iti__flag.iti__dj{height:14px;background-position:-1313px 0}.iti__flag.iti__dk{height:15px;background-position:-1335px 0}.iti__flag.iti__dm{height:10px;background-position:-1357px 0}.iti__flag.iti__do{height:14px;background-position:-1379px 0}.iti__flag.iti__dz{height:14px;background-position:-1401px 0}.iti__flag.iti__ea{height:14px;background-position:-1423px 0}.iti__flag.iti__ec{height:14px;background-position:-1445px 0}.iti__flag.iti__ee{height:13px;background-position:-1467px 0}.iti__flag.iti__eg{height:14px;background-position:-1489px 0}.iti__flag.iti__eh{height:10px;background-position:-1511px 0}.iti__flag.iti__er{height:10px;background-position:-1533px 0}.iti__flag.iti__es{height:14px;background-position:-1555px 0}.iti__flag.iti__et{height:10px;background-position:-1577px 0}.iti__flag.iti__eu{height:14px;background-position:-1599px 0}.iti__flag.iti__fi{height:12px;background-position:-1621px 0}.iti__flag.iti__fj{height:10px;background-position:-1643px 0}.iti__flag.iti__fk{height:10px;background-position:-1665px 0}.iti__flag.iti__fm{height:11px;background-position:-1687px 0}.iti__flag.iti__fo{height:15px;background-position:-1709px 0}.iti__flag.iti__fr{height:14px;background-position:-1731px 0}.iti__flag.iti__ga{height:15px;background-position:-1753px 0}.iti__flag.iti__gb{height:10px;background-position:-1775px 0}.iti__flag.iti__gd{height:12px;background-position:-1797px 0}.iti__flag.iti__ge{height:14px;background-position:-1819px 0}.iti__flag.iti__gf{height:14px;background-position:-1841px 0}.iti__flag.iti__gg{height:14px;background-position:-1863px 0}.iti__flag.iti__gh{height:14px;background-position:-1885px 0}.iti__flag.iti__gi{height:10px;background-position:-1907px 0}.iti__flag.iti__gl{height:14px;background-position:-1929px 0}.iti__flag.iti__gm{height:14px;background-position:-1951px 0}.iti__flag.iti__gn{height:14px;background-position:-1973px 0}.iti__flag.iti__gp{height:14px;background-position:-1995px 0}.iti__flag.iti__gq{height:14px;background-position:-2017px 0}.iti__flag.iti__gr{height:14px;background-position:-2039px 0}.iti__flag.iti__gs{height:10px;background-position:-2061px 0}.iti__flag.iti__gt{height:13px;background-position:-2083px 0}.iti__flag.iti__gu{height:11px;background-position:-2105px 0}.iti__flag.iti__gw{height:10px;background-position:-2127px 0}.iti__flag.iti__gy{height:12px;background-position:-2149px 0}.iti__flag.iti__hk{height:14px;background-position:-2171px 0}.iti__flag.iti__hm{height:10px;background-position:-2193px 0}.iti__flag.iti__hn{height:10px;background-position:-2215px 0}.iti__flag.iti__hr{height:10px;background-position:-2237px 0}.iti__flag.iti__ht{height:12px;background-position:-2259px 0}.iti__flag.iti__hu{height:10px;background-position:-2281px 0}.iti__flag.iti__ic{height:14px;background-position:-2303px 0}.iti__flag.iti__id{height:14px;background-position:-2325px 0}.iti__flag.iti__ie{height:10px;background-position:-2347px 0}.iti__flag.iti__il{height:15px;background-position:-2369px 0}.iti__flag.iti__im{height:10px;background-position:-2391px 0}.iti__flag.iti__in{height:14px;background-position:-2413px 0}.iti__flag.iti__io{height:10px;background-position:-2435px 0}.iti__flag.iti__iq{height:14px;background-position:-2457px 0}.iti__flag.iti__ir{height:12px;background-position:-2479px 0}.iti__flag.iti__is{height:15px;background-position:-2501px 0}.iti__flag.iti__it{height:14px;background-position:-2523px 0}.iti__flag.iti__je{height:12px;background-position:-2545px 0}.iti__flag.iti__jm{height:10px;background-position:-2567px 0}.iti__flag.iti__jo{height:10px;background-position:-2589px 0}.iti__flag.iti__jp{height:14px;background-position:-2611px 0}.iti__flag.iti__ke{height:14px;background-position:-2633px 0}.iti__flag.iti__kg{height:12px;background-position:-2655px 0}.iti__flag.iti__kh{height:13px;background-position:-2677px 0}.iti__flag.iti__ki{height:10px;background-position:-2699px 0}.iti__flag.iti__km{height:12px;background-position:-2721px 0}.iti__flag.iti__kn{height:14px;background-position:-2743px 0}.iti__flag.iti__kp{height:10px;background-position:-2765px 0}.iti__flag.iti__kr{height:14px;background-position:-2787px 0}.iti__flag.iti__kw{height:10px;background-position:-2809px 0}.iti__flag.iti__ky{height:10px;background-position:-2831px 0}.iti__flag.iti__kz{height:10px;background-position:-2853px 0}.iti__flag.iti__la{height:14px;background-position:-2875px 0}.iti__flag.iti__lb{height:14px;background-position:-2897px 0}.iti__flag.iti__lc{height:10px;background-position:-2919px 0}.iti__flag.iti__li{height:12px;background-position:-2941px 0}.iti__flag.iti__lk{height:10px;background-position:-2963px 0}.iti__flag.iti__lr{height:11px;background-position:-2985px 0}.iti__flag.iti__ls{height:14px;background-position:-3007px 0}.iti__flag.iti__lt{height:12px;background-position:-3029px 0}.iti__flag.iti__lu{height:12px;background-position:-3051px 0}.iti__flag.iti__lv{height:10px;background-position:-3073px 0}.iti__flag.iti__ly{height:10px;background-position:-3095px 0}.iti__flag.iti__ma{height:14px;background-position:-3117px 0}.iti__flag.iti__mc{height:15px;background-position:-3139px 0}.iti__flag.iti__md{height:10px;background-position:-3160px 0}.iti__flag.iti__me{height:10px;background-position:-3182px 0}.iti__flag.iti__mf{height:14px;background-position:-3204px 0}.iti__flag.iti__mg{height:14px;background-position:-3226px 0}.iti__flag.iti__mh{height:11px;background-position:-3248px 0}.iti__flag.iti__mk{height:10px;background-position:-3270px 0}.iti__flag.iti__ml{height:14px;background-position:-3292px 0}.iti__flag.iti__mm{height:14px;background-position:-3314px 0}.iti__flag.iti__mn{height:10px;background-position:-3336px 0}.iti__flag.iti__mo{height:14px;background-position:-3358px 0}.iti__flag.iti__mp{height:10px;background-position:-3380px 0}.iti__flag.iti__mq{height:14px;background-position:-3402px 0}.iti__flag.iti__mr{height:14px;background-position:-3424px 0}.iti__flag.iti__ms{height:10px;background-position:-3446px 0}.iti__flag.iti__mt{height:14px;background-position:-3468px 0}.iti__flag.iti__mu{height:14px;background-position:-3490px 0}.iti__flag.iti__mv{height:14px;background-position:-3512px 0}.iti__flag.iti__mw{height:14px;background-position:-3534px 0}.iti__flag.iti__mx{height:12px;background-position:-3556px 0}.iti__flag.iti__my{height:10px;background-position:-3578px 0}.iti__flag.iti__mz{height:14px;background-position:-3600px 0}.iti__flag.iti__na{height:14px;background-position:-3622px 0}.iti__flag.iti__nc{height:10px;background-position:-3644px 0}.iti__flag.iti__ne{height:15px;background-position:-3666px 0}.iti__flag.iti__nf{height:10px;background-position:-3686px 0}.iti__flag.iti__ng{height:10px;background-position:-3708px 0}.iti__flag.iti__ni{height:12px;background-position:-3730px 0}.iti__flag.iti__nl{height:14px;background-position:-3752px 0}.iti__flag.iti__no{height:15px;background-position:-3774px 0}.iti__flag.iti__np{height:15px;background-position:-3796px 0}.iti__flag.iti__nr{height:10px;background-position:-3811px 0}.iti__flag.iti__nu{height:10px;background-position:-3833px 0}.iti__flag.iti__nz{height:10px;background-position:-3855px 0}.iti__flag.iti__om{height:10px;background-position:-3877px 0}.iti__flag.iti__pa{height:14px;background-position:-3899px 0}.iti__flag.iti__pe{height:14px;background-position:-3921px 0}.iti__flag.iti__pf{height:14px;background-position:-3943px 0}.iti__flag.iti__pg{height:15px;background-position:-3965px 0}.iti__flag.iti__ph{height:10px;background-position:-3987px 0}.iti__flag.iti__pk{height:14px;background-position:-4009px 0}.iti__flag.iti__pl{height:13px;background-position:-4031px 0}.iti__flag.iti__pm{height:14px;background-position:-4053px 0}.iti__flag.iti__pn{height:10px;background-position:-4075px 0}.iti__flag.iti__pr{height:14px;background-position:-4097px 0}.iti__flag.iti__ps{height:10px;background-position:-4119px 0}.iti__flag.iti__pt{height:14px;background-position:-4141px 0}.iti__flag.iti__pw{height:13px;background-position:-4163px 0}.iti__flag.iti__py{height:11px;background-position:-4185px 0}.iti__flag.iti__qa{height:8px;background-position:-4207px 0}.iti__flag.iti__re{height:14px;background-position:-4229px 0}.iti__flag.iti__ro{height:14px;background-position:-4251px 0}.iti__flag.iti__rs{height:14px;background-position:-4273px 0}.iti__flag.iti__ru{height:14px;background-position:-4295px 0}.iti__flag.iti__rw{height:14px;background-position:-4317px 0}.iti__flag.iti__sa{height:14px;background-position:-4339px 0}.iti__flag.iti__sb{height:10px;background-position:-4361px 0}.iti__flag.iti__sc{height:10px;background-position:-4383px 0}.iti__flag.iti__sd{height:10px;background-position:-4405px 0}.iti__flag.iti__se{height:13px;background-position:-4427px 0}.iti__flag.iti__sg{height:14px;background-position:-4449px 0}.iti__flag.iti__sh{height:10px;background-position:-4471px 0}.iti__flag.iti__si{height:10px;background-position:-4493px 0}.iti__flag.iti__sj{height:15px;background-position:-4515px 0}.iti__flag.iti__sk{height:14px;background-position:-4537px 0}.iti__flag.iti__sl{height:14px;background-position:-4559px 0}.iti__flag.iti__sm{height:15px;background-position:-4581px 0}.iti__flag.iti__sn{height:14px;background-position:-4603px 0}.iti__flag.iti__so{height:14px;background-position:-4625px 0}.iti__flag.iti__sr{height:14px;background-position:-4647px 0}.iti__flag.iti__ss{height:10px;background-position:-4669px 0}.iti__flag.iti__st{height:10px;background-position:-4691px 0}.iti__flag.iti__sv{height:12px;background-position:-4713px 0}.iti__flag.iti__sx{height:14px;background-position:-4735px 0}.iti__flag.iti__sy{height:14px;background-position:-4757px 0}.iti__flag.iti__sz{height:14px;background-position:-4779px 0}.iti__flag.iti__ta{height:10px;background-position:-4801px 0}.iti__flag.iti__tc{height:10px;background-position:-4823px 0}.iti__flag.iti__td{height:14px;background-position:-4845px 0}.iti__flag.iti__tf{height:14px;background-position:-4867px 0}.iti__flag.iti__tg{height:13px;background-position:-4889px 0}.iti__flag.iti__th{height:14px;background-position:-4911px 0}.iti__flag.iti__tj{height:10px;background-position:-4933px 0}.iti__flag.iti__tk{height:10px;background-position:-4955px 0}.iti__flag.iti__tl{height:10px;background-position:-4977px 0}.iti__flag.iti__tm{height:14px;background-position:-4999px 0}.iti__flag.iti__tn{height:14px;background-position:-5021px 0}.iti__flag.iti__to{height:10px;background-position:-5043px 0}.iti__flag.iti__tr{height:14px;background-position:-5065px 0}.iti__flag.iti__tt{height:12px;background-position:-5087px 0}.iti__flag.iti__tv{height:10px;background-position:-5109px 0}.iti__flag.iti__tw{height:14px;background-position:-5131px 0}.iti__flag.iti__tz{height:14px;background-position:-5153px 0}.iti__flag.iti__ua{height:14px;background-position:-5175px 0}.iti__flag.iti__ug{height:14px;background-position:-5197px 0}.iti__flag.iti__um{height:11px;background-position:-5219px 0}.iti__flag.iti__un{height:14px;background-position:-5241px 0}.iti__flag.iti__us{height:11px;background-position:-5263px 0}.iti__flag.iti__uy{height:14px;background-position:-5285px 0}.iti__flag.iti__uz{height:10px;background-position:-5307px 0}.iti__flag.iti__va{height:15px;background-position:-5329px 0}.iti__flag.iti__vc{height:14px;background-position:-5346px 0}.iti__flag.iti__ve{height:14px;background-position:-5368px 0}.iti__flag.iti__vg{height:10px;background-position:-5390px 0}.iti__flag.iti__vi{height:14px;background-position:-5412px 0}.iti__flag.iti__vn{height:14px;background-position:-5434px 0}.iti__flag.iti__vu{height:12px;background-position:-5456px 0}.iti__flag.iti__wf{height:14px;background-position:-5478px 0}.iti__flag.iti__ws{height:10px;background-position:-5500px 0}.iti__flag.iti__xk{height:15px;background-position:-5522px 0}.iti__flag.iti__ye{height:14px;background-position:-5544px 0}.iti__flag.iti__yt{height:14px;background-position:-5566px 0}.iti__flag.iti__za{height:14px;background-position:-5588px 0}.iti__flag.iti__zm{height:14px;background-position:-5610px 0}.iti__flag.iti__zw{height:10px;background-position:-5632px 0}.iti__flag{height:15px;box-shadow:0 0 1px 0 #888;background-image:url(../img/flags.png);background-repeat:no-repeat;background-color:#dbdbdb;background-position:20px 0}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){.iti__flag{background-image:url(../img/flags@2x.png)}}.iti__flag.iti__np{background-color:transparent} + +/*! + * animate.css -https://daneden.github.io/animate.css/ + * Version - 3.7.2 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * + * Copyright (c) 2019 Daniel Eden + */ + +@-webkit-keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes pulse{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@keyframes swing{20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes wobble{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;-webkit-transform:scale(.1) rotate(30deg);transform:scale(.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}.animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}.animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}.animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}.animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}.animated.fast{-webkit-animation-duration:.8s;animation-duration:.8s}.animated.faster{-webkit-animation-duration:.5s;animation-duration:.5s}.animated.slow{-webkit-animation-duration:2s;animation-duration:2s}.animated.slower{-webkit-animation-duration:3s;animation-duration:3s}@media (prefers-reduced-motion:reduce),(print){.animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}} + +/*js social*/ + +.jssocials-shares{margin:.2em 0}.jssocials-shares *{box-sizing:border-box}.jssocials-share{display:inline-block;vertical-align:top;margin:.3em .6em .3em 0}.jssocials-share:last-child{margin-right:0}.jssocials-share-logo{width:1em;vertical-align:middle;font-size:1.5em}img.jssocials-share-logo{width:auto;height:1em}.jssocials-share-link{display:inline-block;text-align:center;text-decoration:none;line-height:1}.jssocials-share-link.jssocials-share-link-count{padding-top:.2em}.jssocials-share-link.jssocials-share-link-count .jssocials-share-count{display:block;font-size:.6em;margin:0 -.5em -.8em -.5em}.jssocials-share-link.jssocials-share-no-count{padding-top:.5em}.jssocials-share-link.jssocials-share-no-count .jssocials-share-count{height:1em}.jssocials-share-label{padding-left:.3em;vertical-align:middle}.jssocials-share-count-box{display:inline-block;height:1.5em;padding:0 .3em;line-height:1;vertical-align:middle;cursor:default}.jssocials-share-count-box.jssocials-share-no-count{display:none}.jssocials-share-count{line-height:1.5em;vertical-align:middle} +.jssocials-share-twitter .jssocials-share-link{background:#00aced}.jssocials-share-twitter .jssocials-share-link:hover{background:#0087ba}.jssocials-share-facebook .jssocials-share-link{background:#3b5998}.jssocials-share-facebook .jssocials-share-link:hover{background:#2d4373}.jssocials-share-googleplus .jssocials-share-link{background:#dd4b39}.jssocials-share-googleplus .jssocials-share-link:hover{background:#c23321}.jssocials-share-linkedin .jssocials-share-link{background:#007bb6}.jssocials-share-linkedin .jssocials-share-link:hover{background:#005983}.jssocials-share-pinterest .jssocials-share-link{background:#cb2027}.jssocials-share-pinterest .jssocials-share-link:hover{background:#9f191f}.jssocials-share-email .jssocials-share-link{background:#3490f3}.jssocials-share-email .jssocials-share-link:hover{background:#0e76e6}.jssocials-share-stumbleupon .jssocials-share-link{background:#eb4823}.jssocials-share-stumbleupon .jssocials-share-link:hover{background:#c93412}.jssocials-share-whatsapp .jssocials-share-link{background:#29a628}.jssocials-share-whatsapp .jssocials-share-link:hover{background:#1f7d1e}.jssocials-share-telegram .jssocials-share-link{background:#2ca5e0}.jssocials-share-telegram .jssocials-share-link:hover{background:#1c88bd}.jssocials-share-line .jssocials-share-link{background:#25af00}.jssocials-share-line .jssocials-share-link:hover{background:#1a7c00}.jssocials-share-viber .jssocials-share-link{background:#7b519d}.jssocials-share-viber .jssocials-share-link:hover{background:#61407b}.jssocials-share-pocket .jssocials-share-link{background:#ef4056}.jssocials-share-pocket .jssocials-share-link:hover{background:#e9132e}.jssocials-share-messenger .jssocials-share-link{background:#0084ff}.jssocials-share-messenger .jssocials-share-link:hover{background:#006acc}.jssocials-share-vkontakte .jssocials-share-link{background:#45668e}.jssocials-share-vkontakte .jssocials-share-link:hover{background:#344d6c}.jssocials-share-link{padding:.5em .6em;color:#fff;-webkit-transition:background .2s ease-in-out,border-color .2s ease-in-out;transition:background .2s ease-in-out,border-color .2s ease-in-out}.jssocials-share-link:active,.jssocials-share-link:focus,.jssocials-share-link:hover{color:#fff}.jssocials-share-count-box{position:relative;height:2.5em;padding:0 .3em;margin-left:.3em;background:#f5f5f5;-webkit-transition:background .2s ease-in-out,border-color .2s ease-in-out;transition:background .2s ease-in-out,border-color .2s ease-in-out}.jssocials-share-count-box:hover{background:#dcdcdc}.jssocials-share-count-box:hover:after{border-color:transparent #dcdcdc transparent transparent}.jssocials-share-count-box:after{content:"";display:block;position:absolute;top:.85em;left:-.3em;width:0;height:0;border-width:.4em .4em .4em 0;border-style:solid;border-color:transparent #f5f5f5 transparent transparent;-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);-webkit-transition:background .2s ease-in-out,border-color .2s ease-in-out;transition:background .2s ease-in-out,border-color .2s ease-in-out}.jssocials-share-count-box .jssocials-share-count{line-height:2.5em;color:#444} + + +/*! + * Timepicker Component for Twitter Bootstrap + * + * Copyright 2013 Joris de Wit + * + * Contributors https://github.com/jdewit/bootstrap-timepicker/graphs/contributors + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */.bootstrap-timepicker{position:relative}.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu{left:auto;right:0}.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:before{left:auto;right:12px}.bootstrap-timepicker.pull-right .bootstrap-timepicker-widget.dropdown-menu:after{left:auto;right:13px}.bootstrap-timepicker .input-group-addon{cursor:pointer}.bootstrap-timepicker .input-group-addon i{display:inline-block;width:16px;height:16px}.bootstrap-timepicker-widget.dropdown-menu{padding:4px}.bootstrap-timepicker-widget.dropdown-menu.open{display:inline-block}.bootstrap-timepicker-widget.dropdown-menu:before{border-bottom:7px solid rgba(0,0,0,0.2);border-left:7px solid transparent;border-right:7px solid transparent;content:"";display:inline-block;position:absolute}.bootstrap-timepicker-widget.dropdown-menu:after{border-bottom:6px solid #fff;border-left:6px solid transparent;border-right:6px solid transparent;content:"";display:inline-block;position:absolute}.bootstrap-timepicker-widget.timepicker-orient-left:before{left:6px}.bootstrap-timepicker-widget.timepicker-orient-left:after{left:7px}.bootstrap-timepicker-widget.timepicker-orient-right:before{right:6px}.bootstrap-timepicker-widget.timepicker-orient-right:after{right:7px}.bootstrap-timepicker-widget.timepicker-orient-top:before{top:-7px}.bootstrap-timepicker-widget.timepicker-orient-top:after{top:-6px}.bootstrap-timepicker-widget.timepicker-orient-bottom:before{bottom:-7px;border-bottom:0;border-top:7px solid #999}.bootstrap-timepicker-widget.timepicker-orient-bottom:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff}.bootstrap-timepicker-widget a.btn,.bootstrap-timepicker-widget input{border-radius:4px}.bootstrap-timepicker-widget table{width:100%;margin:0}.bootstrap-timepicker-widget table td{text-align:center;height:30px;margin:0;padding:2px}.bootstrap-timepicker-widget table td:not(.separator){min-width:30px}.bootstrap-timepicker-widget table td span{width:100%}.bootstrap-timepicker-widget table td a{border:1px transparent solid;width:100%;display:inline-block;margin:0;padding:8px 0;outline:0;color:#333}.bootstrap-timepicker-widget table td a:hover{text-decoration:none;background-color:#eee;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border-color:#ddd}.bootstrap-timepicker-widget table td a i{margin-top:2px;font-size:18px}.bootstrap-timepicker-widget table td input{width:25px;margin:0;text-align:center}.bootstrap-timepicker-widget .modal-content{padding:4px}@media(min-width:767px){.bootstrap-timepicker-widget.modal{width:200px;margin-left:-100px}}@media(max-width:767px){.bootstrap-timepicker{width:100%}.bootstrap-timepicker .dropdown-menu{width:100%}} + + /*! + * jQuery ClassyCountdown + * www.class.pm + * + * Written by Marius Stanciu - Sergiu + * Licensed under the MIT license www.class.pm/LICENSE-MIT + * Version 1.0.1 + * + */.ClassyCountdown-wrapper>div{display:inline-block;position:relative;width:calc(25% - 20px);margin:10px}.ClassyCountdown-wrapper .ClassyCountdown-value{width:100%;line-height:1em;position:absolute;top:50%;text-align:center;left:0;display:block} + + /** + * Spotlight.js v0.7.8 + * Copyright 2019-2021 Nextapps GmbH + * Author: Thomas Wilkerling + * Licence: Apache-2.0 + * https://github.com/nextapps-de/spotlight + */ + @keyframes pulsate{0%,to{opacity:1}50%{opacity:.2}}#spotlight{position:fixed;top:-1px;bottom:-1px;width:100%;z-index:99999;color:#fff;background-color:#000;opacity:0;overflow:hidden;-webkit-user-select:none;-ms-user-select:none;user-select:none;transition:opacity .2s ease-out;font-family:Arial,sans-serif;font-size:16px;font-weight:400;contain:strict;touch-action:none;pointer-events:none}#spotlight.show{opacity:1;transition:none;pointer-events:auto}#spotlight.white{color:#212529;background-color:#fff}#spotlight.white .spl-next,#spotlight.white .spl-page~*,#spotlight.white .spl-prev,#spotlight.white .spl-spinner{filter:invert(1)}#spotlight.white .spl-progress{background-color:rgba(0,0,0,.35)}#spotlight.white .spl-footer,#spotlight.white .spl-header{background-color:rgba(255,255,255,.65)}#spotlight.white .spl-button{background:#212529;color:#fff}.spl-footer,.spl-header{background-color:rgba(0,0,0,.45)}#spotlight .contain,#spotlight .cover{object-fit:cover;height:100%;width:100%}#spotlight .contain{object-fit:contain}#spotlight .autofit{object-fit:none;width:auto;height:auto;max-height:none;max-width:none;transition:none}.spl-scene,.spl-spinner,.spl-track{width:100%;height:100%;position:absolute}.spl-track{contain:strict}.spl-spinner{background-position:center;background-repeat:no-repeat;background-size:42px;opacity:0}.spl-spinner.spin{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2Utb3BhY2l0eT0iLjY1Ij48Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuMTUiIGN4PSIxOCIgY3k9IjE4IiByPSIxOCIvPjxwYXRoIGQ9Ik0zNiAxOGMwLTkuOTQtOC4wNi0xOC0xOC0xOCI+PGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIGZyb209IjAgMTggMTgiIHRvPSIzNjAgMTggMTgiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+PC9wYXRoPjwvZz48L2c+PC9zdmc+);transition:opacity .2s linear .25s;opacity:1}.spl-spinner.error{background-image:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjMyIiB3aWR0aD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTYsMUExNSwxNSwwLDEsMCwzMSwxNiwxNSwxNSwwLDAsMCwxNiwxWm0wLDJhMTMsMTMsMCwwLDEsOC40NSwzLjE0TDYuMTQsMjQuNDVBMTMsMTMsMCwwLDEsMTYsM1ptMCwyNmExMywxMywwLDAsMS04LjQ1LTMuMTRMMjUuODYsNy41NUExMywxMywwLDAsMSwxNiwyOVoiIGlkPSJiYW5fc2lnbl9jcm9zc2VkX2NpcmNsZSIvPjwvc3ZnPg==);background-size:128px;transition:none;opacity:.5}.spl-scene{transition:transform .65s cubic-bezier(.1,1,.1,1);contain:layout size;will-change:transform}.spl-pane>*{position:absolute;width:auto;height:auto;max-width:100%;max-height:100%;left:50%;top:50%;margin:0;padding:0;border:0;transform:translate(-50%,-50%) scale(1);transition:transform .65s cubic-bezier(.3,1,.3,1),opacity .65s ease;contain:layout style;will-change:transform,opacity;visibility:hidden}.spl-header,.spl-pane,.spl-progress{position:absolute;top:0}.spl-pane{width:100%;height:100%;transition:transform .65s cubic-bezier(.3,1,.3,1);contain:layout size;will-change:transform,contents}.spl-header{width:100%;height:50px;text-align:right;transform:translateY(-100px);transition:transform .35s ease;overflow:hidden;will-change:transform}#spotlight.menu .spl-footer,#spotlight.menu .spl-header,.spl-footer:hover,.spl-header:hover{transform:translateY(0)}.spl-header div{display:inline-block;vertical-align:middle;white-space:nowrap;width:50px;height:50px;opacity:.5}.spl-progress{width:100%;height:3px;background-color:rgba(255,255,255,.45);transform:translateX(-100%);transition:transform linear}.spl-footer,.spl-next,.spl-prev{position:absolute;transition:transform .35s ease;will-change:transform}.spl-footer{left:0;right:0;bottom:0;line-height:20px;padding:20px 20px 0;padding-bottom:env(safe-area-inset-bottom,0);text-align:left;font-size:15px;font-weight:400;transform:translateY(100%)}.spl-title{font-size:22px}.spl-button,.spl-description,.spl-title{margin-bottom:20px}.spl-button{display:inline-block;background:#fff;color:#000;border-radius:5px;padding:10px 20px;cursor:pointer}.spl-next,.spl-page~*,.spl-prev{background-position:center;background-repeat:no-repeat}.spl-page{float:left;width:auto;line-height:50px}.spl-page~*{background-size:21px;float:right}.spl-fullscreen{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyLjUiIHZpZXdCb3g9Ii0xIC0xIDI2IDI2IiB3aWR0aD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTggM0g1YTIgMiAwIDAgMC0yIDJ2M20xOCAwVjVhMiAyIDAgMCAwLTItMmgtM20wIDE4aDNhMiAyIDAgMCAwIDItMnYtM00zIDE2djNhMiAyIDAgMCAwIDIgMmgzIi8+PC9zdmc+)}.spl-fullscreen.on{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyLjUiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik04IDN2M2EyIDIgMCAwIDEtMiAySDNtMTggMGgtM2EyIDIgMCAwIDEtMi0yVjNtMCAxOHYtM2EyIDIgMCAwIDEgMi0yaDNNMyAxNmgzYTIgMiAwIDAgMSAyIDJ2MyIvPjwvc3ZnPg==)}.spl-autofit{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBoZWlnaHQ9Ijk2cHgiIHZpZXdCb3g9IjAgMCA5NiA5NiIgd2lkdGg9Ijk2cHgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggdHJhbnNmb3JtPSJyb3RhdGUoOTAgNTAgNTApIiBmaWxsPSIjZmZmIiBkPSJNNzEuMzExLDgwQzY5LjY3LDg0LjY2LDY1LjIzLDg4LDYwLDg4SDIwYy02LjYzLDAtMTItNS4zNy0xMi0xMlYzNmMwLTUuMjMsMy4zNC05LjY3LDgtMTEuMzExVjc2YzAsMi4yMSwxLjc5LDQsNCw0SDcxLjMxMSAgeiIvPjxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDkwIDUwIDUwKSIgZmlsbD0iI2ZmZiIgZD0iTTc2LDhIMzZjLTYuNjMsMC0xMiw1LjM3LTEyLDEydjQwYzAsNi42Myw1LjM3LDEyLDEyLDEyaDQwYzYuNjMsMCwxMi01LjM3LDEyLTEyVjIwQzg4LDEzLjM3LDgyLjYzLDgsNzYsOHogTTgwLDYwICBjMCwyLjIxLTEuNzksNC00LDRIMzZjLTIuMjEsMC00LTEuNzktNC00VjIwYzAtMi4yMSwxLjc5LTQsNC00aDQwYzIuMjEsMCw0LDEuNzksNCw0VjYweiIvPjwvc3ZnPg==)}.spl-zoom-in,.spl-zoom-out{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMSIgY3k9IjExIiByPSI4Ii8+PGxpbmUgeDE9IjIxIiB4Mj0iMTYuNjUiIHkxPSIyMSIgeTI9IjE2LjY1Ii8+PGxpbmUgeDE9IjgiIHgyPSIxNCIgeTE9IjExIiB5Mj0iMTEiLz48L3N2Zz4=);background-size:22px}.spl-zoom-in{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMSIgY3k9IjExIiByPSI4Ii8+PGxpbmUgeDE9IjIxIiB4Mj0iMTYuNjUiIHkxPSIyMSIgeTI9IjE2LjY1Ii8+PGxpbmUgeDE9IjExIiB4Mj0iMTEiIHkxPSI4IiB5Mj0iMTQiLz48bGluZSB4MT0iOCIgeDI9IjE0IiB5MT0iMTEiIHkyPSIxMSIvPjwvc3ZnPg==)}.spl-download{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxNDEuNzMycHgiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDE0MS43MzIgMTQxLjczMiIgd2lkdGg9IjE0MS43MzJweCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTIwLjY3NCwxMjUuMTM4SDIwLjc5M3YxNi41OTRoOTkuODgxVjEyNS4xMzh6IE0xMTkuMDE5LDU4Ljc3NmMtMi41NjEtMi41NjItNi43MTYtMi41NjItOS4yNzUsMEw3Ny4yMSw5MS4zMTJWNi41NjIgICBDNzcuMjEsMi45MzYsNzQuMjY5LDAsNzAuNjQ4LDBjLTMuNjI0LDAtNi41NiwyLjkzNy02LjU2LDYuNTYzdjg0Ljc1TDMxLjk5Miw1OS4yMThjLTIuNTYyLTIuNTY0LTYuNzE1LTIuNTY0LTkuMjc3LDAgICBjLTIuNTY1LDIuNTYyLTIuNTY1LDYuNzE2LDAsOS4yNzlsNDMuMjk0LDQzLjI5M2MwLjE1LDAuMTU0LDAuMzE0LDAuMjk5LDAuNDgxLDAuNDM4YzAuMDc2LDAuMDYyLDAuMTU1LDAuMTEzLDAuMjM0LDAuMTc2ICAgYzAuMDk0LDAuMDY1LDAuMTg2LDAuMTQyLDAuMjc5LDAuMjA2YzAuMDk3LDAuMDYzLDAuMTkyLDAuMTE0LDAuMjg2LDAuMTc0YzAuMDg4LDAuMDU0LDAuMTc0LDAuMTA1LDAuMjY1LDAuMTUzICAgYzAuMSwwLjA1NiwwLjE5OSwwLjEsMC4yOTgsMC4xNDdjMC4wOTcsMC4wNDUsMC4xOSwwLjA5MSwwLjI4MywwLjEzMmMwLjA5OCwwLjA0LDAuMTk2LDAuMDcyLDAuMjk1LDAuMTA1ICAgYzAuMTA0LDAuMDM4LDAuMjA3LDAuMDc4LDAuMzEyLDAuMTA5YzAuMTAxLDAuMDMsMC4xOTcsMC4wNTIsMC4yOTcsMC4wNzdjMC4xMDgsMC4wMjMsMC4yMTQsMC4wNTgsMC4zMjQsMC4wNzggICBjMC4xMTUsMC4wMjEsMC4yMzEsMC4wMzMsMC4zNDYsMC4wNTRjMC4wOTcsMC4wMTUsMC4xOTIsMC4wMzIsMC4yODksMC4wNDJjMC40MywwLjA0MiwwLjg2NSwwLjA0MiwxLjI5NSwwICAgYzAuMS0wLjAxLDAuMTkxLTAuMDI3LDAuMjg5LTAuMDQyYzAuMTE0LTAuMDIxLDAuMjMzLTAuMDI5LDAuMzQ0LTAuMDU0YzAuMTA5LTAuMDIxLDAuMjE3LTAuMDU1LDAuMzI0LTAuMDc4ICAgYzAuMTAyLTAuMDI1LDAuMTk5LTAuMDQ3LDAuMjk5LTAuMDc3YzAuMTA1LTAuMDMxLDAuMjA3LTAuMDcxLDAuMzEyLTAuMTA5YzAuMTAyLTAuMDMsMC4xOTUtMC4wNjIsMC4yOTUtMC4xMDUgICBjMC4wOTYtMC4wNDEsMC4xOTEtMC4wODcsMC4yODMtMC4xMzJjMC4xLTAuMDQ4LDAuMTk5LTAuMDkyLDAuMjk3LTAuMTQ3YzAuMDkxLTAuMDQ4LDAuMTc3LTAuMTA0LDAuMjY0LTAuMTUzICAgYzAuMDk4LTAuMDYsMC4xOTMtMC4xMSwwLjI4Ny0wLjE3NGMwLjA5Ni0wLjA2NCwwLjE4OS0wLjE0MSwwLjI4MS0wLjIwNmMwLjA3Ni0wLjA2MiwwLjE1Ni0wLjExMywwLjIzMy0wLjE3NiAgIGMwLjI0OS0wLjIwNCwwLjQ3OS0wLjQzNywwLjY5NC0wLjY3YzAuMDc2LTAuMDY3LDAuMTU0LTAuMTMxLDAuMjI5LTAuMjAzbDQzLjI5NC00My4yOTYgICBDMTIxLjU4MSw2NS40OTEsMTIxLjU4MSw2MS4zMzcsMTE5LjAxOSw1OC43NzYiLz48L2c+PC9zdmc+);background-size:20px}.spl-theme{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBoZWlnaHQ9IjI0cHgiIHZlcnNpb249IjEuMiIgdmlld0JveD0iMiAyIDIwIDIwIiB3aWR0aD0iMjRweCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTIsNGMtNC40MTgsMC04LDMuNTgyLTgsOHMzLjU4Miw4LDgsOHM4LTMuNTgyLDgtOFMxNi40MTgsNCwxMiw0eiBNMTIsMThjLTMuMzE0LDAtNi0yLjY4Ni02LTZzMi42ODYtNiw2LTZzNiwyLjY4Niw2LDYgUzE1LjMxNCwxOCwxMiwxOHoiLz48cGF0aCBkPSJNMTIsN3YxMGMyLjc1NywwLDUtMi4yNDMsNS01UzE0Ljc1Nyw3LDEyLDd6Ii8+PC9nPjwvc3ZnPg==)}.spl-play{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiB2aWV3Qm94PSItMC41IC0wLjUgMjUgMjUiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIvPjxwb2x5Z29uIGZpbGw9IiNmZmYiIHBvaW50cz0iMTAgOCAxNiAxMiAxMCAxNiAxMCA4Ii8+PC9zdmc+)}.spl-play.on{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiB2aWV3Qm94PSItMC41IC0wLjUgMjUgMjUiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIvPjxsaW5lIHgxPSIxMCIgeDI9IjEwIiB5MT0iMTUiIHkyPSI5Ii8+PGxpbmUgeDE9IjE0IiB4Mj0iMTQiIHkxPSIxNSIgeTI9IjkiLz48L3N2Zz4=);animation:pulsate 1s ease infinite}.spl-close{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiB2aWV3Qm94PSIyIDIgMjAgMjAiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48bGluZSB4MT0iMTgiIHgyPSI2IiB5MT0iNiIgeTI9IjE4Ii8+PGxpbmUgeDE9IjYiIHgyPSIxOCIgeTE9IjYiIHkyPSIxOCIvPjwvc3ZnPg==)}.spl-next,.spl-prev{top:50%;width:50px;height:50px;opacity:.65;background-color:rgba(0,0,0,.45);border-radius:100%;cursor:pointer;margin-top:-25px;transform:translateX(-100px);background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cG9seWxpbmUgcG9pbnRzPSIxNSAxOCA5IDEyIDE1IDYiLz48L3N2Zz4=);background-size:30px}.spl-prev{left:20px}.spl-next{left:auto;right:20px;transform:translateX(100px) scaleX(-1)}#spotlight.menu .spl-prev{transform:translateX(0)}#spotlight.menu .spl-next{transform:translateX(0) scaleX(-1)}@media (hover:hover){.spl-page~div{cursor:pointer;transition:opacity .2s ease}.spl-next:hover,.spl-page~div:hover,.spl-prev:hover{opacity:1}}@media (max-width:500px){.spl-header div{width:44px}.spl-footer .spl-title{font-size:20px}.spl-footer{font-size:14px}.spl-next,.spl-prev{width:35px;height:35px;margin-top:-17.5px;background-size:15px 15px}.spl-spinner{background-size:30px 30px}}.hide-scrollbars{overflow:hidden!important} \ No newline at end of file diff --git a/desarrollo/public/assets/img/Credit_Card_Safe_light.png b/desarrollo/public/assets/img/Credit_Card_Safe_light.png new file mode 100644 index 00000000..7a186ade Binary files /dev/null and b/desarrollo/public/assets/img/Credit_Card_Safe_light.png differ diff --git a/desarrollo/public/assets/img/digital_tag.png b/desarrollo/public/assets/img/digital_tag.png new file mode 100644 index 00000000..cf7a6e43 Binary files /dev/null and b/desarrollo/public/assets/img/digital_tag.png differ diff --git a/desarrollo/public/assets/img/logo.png b/desarrollo/public/assets/img/logo.png new file mode 100644 index 00000000..6daec337 Binary files /dev/null and b/desarrollo/public/assets/img/logo.png differ diff --git a/desarrollo/diseno/registro-cliente/form/assets/images/logo.png b/desarrollo/public/assets/img/logo2.png similarity index 100% rename from desarrollo/diseno/registro-cliente/form/assets/images/logo.png rename to desarrollo/public/assets/img/logo2.png diff --git a/desarrollo/public/assets/img/pci.png b/desarrollo/public/assets/img/pci.png new file mode 100644 index 00000000..0840db8d Binary files /dev/null and b/desarrollo/public/assets/img/pci.png differ diff --git a/desarrollo/public/assets/img/placeholder.jpg b/desarrollo/public/assets/img/placeholder.jpg index 344a47b6..4a0613cf 100644 Binary files a/desarrollo/public/assets/img/placeholder.jpg and b/desarrollo/public/assets/img/placeholder.jpg differ diff --git a/desarrollo/public/assets/img/ssl.png b/desarrollo/public/assets/img/ssl.png new file mode 100644 index 00000000..4f611c2c Binary files /dev/null and b/desarrollo/public/assets/img/ssl.png differ diff --git a/desarrollo/public/assets/js/aiz-core.js b/desarrollo/public/assets/js/aiz-core.js index eb23d1cc..607b1a33 100644 --- a/desarrollo/public/assets/js/aiz-core.js +++ b/desarrollo/public/assets/js/aiz-core.js @@ -115,7 +115,7 @@ $.fn.toggleAttr = function (attr, attr1, attr2) { AIZ.uploader.updateUploaderSelected(); AIZ.uploader.getAllUploads( AIZ.data.appUrl + - "/aiz-uploader/get_uploaded_files" + "/aiz-uploader/get-uploaded-files" ); AIZ.uploader.data.clickedForDelete = null; $("#aizUploaderDelete").modal("hide"); @@ -275,7 +275,7 @@ $.fn.toggleAttr = function (attr, attr1, attr2) { // ].aria_hidden = false; // } AIZ.uploader.getAllUploads( - AIZ.data.appUrl + "/aiz-uploader/get_uploaded_files" + AIZ.data.appUrl + "/aiz-uploader/get-uploaded-files" ); } AIZ.uploader.updateUploaderFiles(); @@ -285,7 +285,7 @@ $.fn.toggleAttr = function (attr, attr1, attr2) { $('[name="aiz-uploader-search"]').on("keyup", function () { var value = $(this).val(); AIZ.uploader.getAllUploads( - AIZ.data.appUrl + "/aiz-uploader/get_uploaded_files", + AIZ.data.appUrl + "/aiz-uploader/get-uploaded-files", value, $('[name="aiz-uploader-sort"]').val() ); @@ -319,7 +319,7 @@ $.fn.toggleAttr = function (attr, attr1, attr2) { $('[name="aiz-uploader-sort"]').on("change", function () { var value = $(this).val(); AIZ.uploader.getAllUploads( - AIZ.data.appUrl + "/aiz-uploader/get_uploaded_files", + AIZ.data.appUrl + "/aiz-uploader/get-uploaded-files", $('[name="aiz-uploader-search"]').val(), value ); @@ -675,7 +675,7 @@ $.fn.toggleAttr = function (attr, attr1, attr2) { $("#aizUploaderModal").modal("show"); AIZ.plugins.aizUppy(); AIZ.uploader.getAllUploads( - AIZ.data.appUrl + "/aiz-uploader/get_uploaded_files", + AIZ.data.appUrl + "/aiz-uploader/get-uploaded-files", null, $('[name="aiz-uploader-sort"]').val() ); @@ -910,6 +910,7 @@ $.fn.toggleAttr = function (attr, attr1, attr2) { $this.summernote({ toolbar: buttons, placeholder: placeholder, + disableDragAndDrop: true, height: minHeight, callbacks: { onImageUpload: function (data) { @@ -1149,7 +1150,7 @@ $.fn.toggleAttr = function (attr, attr1, attr2) { }); uppy.on("upload-success", function () { AIZ.uploader.getAllUploads( - AIZ.data.appUrl + "/aiz-uploader/get_uploaded_files" + AIZ.data.appUrl + "/aiz-uploader/get-uploaded-files" ); }); } diff --git a/desarrollo/public/assets/js/anime.min.js b/desarrollo/public/assets/js/anime.min.js new file mode 100644 index 00000000..7696a5bc --- /dev/null +++ b/desarrollo/public/assets/js/anime.min.js @@ -0,0 +1,8 @@ +/* + * anime.js v3.2.1 + * (c) 2020 Julian Garnier + * Released under the MIT license + * animejs.com + */ + +!function(n,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):n.anime=e()}(this,function(){"use strict";var n={update:null,begin:null,loopBegin:null,changeBegin:null,change:null,changeComplete:null,loopComplete:null,complete:null,loop:1,direction:"normal",autoplay:!0,timelineOffset:0},e={duration:1e3,delay:0,endDelay:0,easing:"easeOutElastic(1, .5)",round:0},t=["translateX","translateY","translateZ","rotate","rotateX","rotateY","rotateZ","scale","scaleX","scaleY","scaleZ","skew","skewX","skewY","perspective","matrix","matrix3d"],r={CSS:{},springs:{}};function a(n,e,t){return Math.min(Math.max(n,e),t)}function o(n,e){return n.indexOf(e)>-1}function u(n,e){return n.apply(null,e)}var i={arr:function(n){return Array.isArray(n)},obj:function(n){return o(Object.prototype.toString.call(n),"Object")},pth:function(n){return i.obj(n)&&n.hasOwnProperty("totalLength")},svg:function(n){return n instanceof SVGElement},inp:function(n){return n instanceof HTMLInputElement},dom:function(n){return n.nodeType||i.svg(n)},str:function(n){return"string"==typeof n},fnc:function(n){return"function"==typeof n},und:function(n){return void 0===n},nil:function(n){return i.und(n)||null===n},hex:function(n){return/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(n)},rgb:function(n){return/^rgb/.test(n)},hsl:function(n){return/^hsl/.test(n)},col:function(n){return i.hex(n)||i.rgb(n)||i.hsl(n)},key:function(t){return!n.hasOwnProperty(t)&&!e.hasOwnProperty(t)&&"targets"!==t&&"keyframes"!==t}};function c(n){var e=/\(([^)]+)\)/.exec(n);return e?e[1].split(",").map(function(n){return parseFloat(n)}):[]}function s(n,e){var t=c(n),o=a(i.und(t[0])?1:t[0],.1,100),u=a(i.und(t[1])?100:t[1],.1,100),s=a(i.und(t[2])?10:t[2],.1,100),f=a(i.und(t[3])?0:t[3],.1,100),l=Math.sqrt(u/o),d=s/(2*Math.sqrt(u*o)),p=d<1?l*Math.sqrt(1-d*d):0,v=1,h=d<1?(d*l-f)/p:-f+l;function g(n){var t=e?e*n/1e3:n;return t=d<1?Math.exp(-t*d*l)*(v*Math.cos(p*t)+h*Math.sin(p*t)):(v+h*t)*Math.exp(-t*l),0===n||1===n?n:1-t}return e?g:function(){var e=r.springs[n];if(e)return e;for(var t=0,a=0;;)if(1===g(t+=1/6)){if(++a>=16)break}else a=0;var o=t*(1/6)*1e3;return r.springs[n]=o,o}}function f(n){return void 0===n&&(n=10),function(e){return Math.ceil(a(e,1e-6,1)*n)*(1/n)}}var l,d,p=function(){var n=11,e=1/(n-1);function t(n,e){return 1-3*e+3*n}function r(n,e){return 3*e-6*n}function a(n){return 3*n}function o(n,e,o){return((t(e,o)*n+r(e,o))*n+a(e))*n}function u(n,e,o){return 3*t(e,o)*n*n+2*r(e,o)*n+a(e)}return function(t,r,a,i){if(0<=t&&t<=1&&0<=a&&a<=1){var c=new Float32Array(n);if(t!==r||a!==i)for(var s=0;s=.001?function(n,e,t,r){for(var a=0;a<4;++a){var i=u(e,t,r);if(0===i)return e;e-=(o(e,t,r)-n)/i}return e}(r,l,t,a):0===d?l:function(n,e,t,r,a){for(var u,i,c=0;(u=o(i=e+(t-e)/2,r,a)-n)>0?t=i:e=i,Math.abs(u)>1e-7&&++c<10;);return i}(r,i,i+e,t,a)}}}(),v=(l={linear:function(){return function(n){return n}}},d={Sine:function(){return function(n){return 1-Math.cos(n*Math.PI/2)}},Circ:function(){return function(n){return 1-Math.sqrt(1-n*n)}},Back:function(){return function(n){return n*n*(3*n-2)}},Bounce:function(){return function(n){for(var e,t=4;n<((e=Math.pow(2,--t))-1)/11;);return 1/Math.pow(4,3-t)-7.5625*Math.pow((3*e-2)/22-n,2)}},Elastic:function(n,e){void 0===n&&(n=1),void 0===e&&(e=.5);var t=a(n,1,10),r=a(e,.1,2);return function(n){return 0===n||1===n?n:-t*Math.pow(2,10*(n-1))*Math.sin((n-1-r/(2*Math.PI)*Math.asin(1/t))*(2*Math.PI)/r)}}},["Quad","Cubic","Quart","Quint","Expo"].forEach(function(n,e){d[n]=function(){return function(n){return Math.pow(n,e+2)}}}),Object.keys(d).forEach(function(n){var e=d[n];l["easeIn"+n]=e,l["easeOut"+n]=function(n,t){return function(r){return 1-e(n,t)(1-r)}},l["easeInOut"+n]=function(n,t){return function(r){return r<.5?e(n,t)(2*r)/2:1-e(n,t)(-2*r+2)/2}},l["easeOutIn"+n]=function(n,t){return function(r){return r<.5?(1-e(n,t)(1-2*r))/2:(e(n,t)(2*r-1)+1)/2}}}),l);function h(n,e){if(i.fnc(n))return n;var t=n.split("(")[0],r=v[t],a=c(n);switch(t){case"spring":return s(n,e);case"cubicBezier":return u(p,a);case"steps":return u(f,a);default:return u(r,a)}}function g(n){try{return document.querySelectorAll(n)}catch(n){return}}function m(n,e){for(var t=n.length,r=arguments.length>=2?arguments[1]:void 0,a=[],o=0;o1&&(t-=1),t<1/6?n+6*(e-n)*t:t<.5?e:t<2/3?n+(e-n)*(2/3-t)*6:n}if(0==u)e=t=r=i;else{var f=i<.5?i*(1+u):i+u-i*u,l=2*i-f;e=s(l,f,o+1/3),t=s(l,f,o),r=s(l,f,o-1/3)}return"rgba("+255*e+","+255*t+","+255*r+","+c+")"}(n):void 0;var e,t,r,a}function C(n){var e=/[+-]?\d*\.?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?(%|px|pt|em|rem|in|cm|mm|ex|ch|pc|vw|vh|vmin|vmax|deg|rad|turn)?$/.exec(n);if(e)return e[1]}function P(n,e){return i.fnc(n)?n(e.target,e.id,e.total):n}function I(n,e){return n.getAttribute(e)}function D(n,e,t){if(M([t,"deg","rad","turn"],C(e)))return e;var a=r.CSS[e+t];if(!i.und(a))return a;var o=document.createElement(n.tagName),u=n.parentNode&&n.parentNode!==document?n.parentNode:document.body;u.appendChild(o),o.style.position="absolute",o.style.width=100+t;var c=100/o.offsetWidth;u.removeChild(o);var s=c*parseFloat(e);return r.CSS[e+t]=s,s}function B(n,e,t){if(e in n.style){var r=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),a=n.style[e]||getComputedStyle(n).getPropertyValue(r)||"0";return t?D(n,a,t):a}}function T(n,e){return i.dom(n)&&!i.inp(n)&&(!i.nil(I(n,e))||i.svg(n)&&n[e])?"attribute":i.dom(n)&&M(t,e)?"transform":i.dom(n)&&"transform"!==e&&B(n,e)?"css":null!=n[e]?"object":void 0}function E(n){if(i.dom(n)){for(var e,t=n.style.transform||"",r=/(\w+)\(([^)]*)\)/g,a=new Map;e=r.exec(t);)a.set(e[1],e[2]);return a}}function F(n,e,t,r){var a,u=o(e,"scale")?1:0+(o(a=e,"translate")||"perspective"===a?"px":o(a,"rotate")||o(a,"skew")?"deg":void 0),i=E(n).get(e)||u;return t&&(t.transforms.list.set(e,i),t.transforms.last=e),r?D(n,i,r):i}function A(n,e,t,r){switch(T(n,e)){case"transform":return F(n,e,r,t);case"css":return B(n,e,t);case"attribute":return I(n,e);default:return n[e]||0}}function N(n,e){var t=/^(\*=|\+=|-=)/.exec(n);if(!t)return n;var r=C(n)||0,a=parseFloat(e),o=parseFloat(n.replace(t[0],""));switch(t[0][0]){case"+":return a+o+r;case"-":return a-o+r;case"*":return a*o+r}}function S(n,e){if(i.col(n))return O(n);if(/\s/g.test(n))return n;var t=C(n),r=t?n.substr(0,n.length-t.length):n;return e?r+e:r}function L(n,e){return Math.sqrt(Math.pow(e.x-n.x,2)+Math.pow(e.y-n.y,2))}function j(n){for(var e,t=n.points,r=0,a=0;a0&&(r+=L(e,o)),e=o}return r}function q(n){if(n.getTotalLength)return n.getTotalLength();switch(n.tagName.toLowerCase()){case"circle":return o=n,2*Math.PI*I(o,"r");case"rect":return 2*I(a=n,"width")+2*I(a,"height");case"line":return L({x:I(r=n,"x1"),y:I(r,"y1")},{x:I(r,"x2"),y:I(r,"y2")});case"polyline":return j(n);case"polygon":return t=(e=n).points,j(e)+L(t.getItem(t.numberOfItems-1),t.getItem(0))}var e,t,r,a,o}function H(n,e){var t=e||{},r=t.el||function(n){for(var e=n.parentNode;i.svg(e)&&i.svg(e.parentNode);)e=e.parentNode;return e}(n),a=r.getBoundingClientRect(),o=I(r,"viewBox"),u=a.width,c=a.height,s=t.viewBox||(o?o.split(" "):[0,0,u,c]);return{el:r,viewBox:s,x:s[0]/1,y:s[1]/1,w:u,h:c,vW:s[2],vH:s[3]}}function V(n,e,t){function r(t){void 0===t&&(t=0);var r=e+t>=1?e+t:0;return n.el.getPointAtLength(r)}var a=H(n.el,n.svg),o=r(),u=r(-1),i=r(1),c=t?1:a.w/a.vW,s=t?1:a.h/a.vH;switch(n.property){case"x":return(o.x-a.x)*c;case"y":return(o.y-a.y)*s;case"angle":return 180*Math.atan2(i.y-u.y,i.x-u.x)/Math.PI}}function $(n,e){var t=/[+-]?\d*\.?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?/g,r=S(i.pth(n)?n.totalLength:n,e)+"";return{original:r,numbers:r.match(t)?r.match(t).map(Number):[0],strings:i.str(n)||e?r.split(t):[]}}function W(n){return m(n?y(i.arr(n)?n.map(b):b(n)):[],function(n,e,t){return t.indexOf(n)===e})}function X(n){var e=W(n);return e.map(function(n,t){return{target:n,id:t,total:e.length,transforms:{list:E(n)}}})}function Y(n,e){var t=x(e);if(/^spring/.test(t.easing)&&(t.duration=s(t.easing)),i.arr(n)){var r=n.length;2===r&&!i.obj(n[0])?n={value:n}:i.fnc(e.duration)||(t.duration=e.duration/r)}var a=i.arr(n)?n:[n];return a.map(function(n,t){var r=i.obj(n)&&!i.pth(n)?n:{value:n};return i.und(r.delay)&&(r.delay=t?0:e.delay),i.und(r.endDelay)&&(r.endDelay=t===a.length-1?e.endDelay:0),r}).map(function(n){return k(n,t)})}function Z(n,e){var t=[],r=e.keyframes;for(var a in r&&(e=k(function(n){for(var e=m(y(n.map(function(n){return Object.keys(n)})),function(n){return i.key(n)}).reduce(function(n,e){return n.indexOf(e)<0&&n.push(e),n},[]),t={},r=function(r){var a=e[r];t[a]=n.map(function(n){var e={};for(var t in n)i.key(t)?t==a&&(e.value=n[t]):e[t]=n[t];return e})},a=0;a0?requestAnimationFrame(e):void 0}return"undefined"!=typeof document&&document.addEventListener("visibilitychange",function(){en.suspendWhenDocumentHidden&&(nn()?n=cancelAnimationFrame(n):(K.forEach(function(n){return n._onDocumentVisibility()}),U()))}),function(){n||nn()&&en.suspendWhenDocumentHidden||!(K.length>0)||(n=requestAnimationFrame(e))}}();function nn(){return!!document&&document.hidden}function en(t){void 0===t&&(t={});var r,o=0,u=0,i=0,c=0,s=null;function f(n){var e=window.Promise&&new Promise(function(n){return s=n});return n.finished=e,e}var l,d,p,v,h,g,y,b,M=(d=w(n,l=t),p=w(e,l),v=Z(p,l),h=X(l.targets),g=_(h,v),y=R(g,p),b=J,J++,k(d,{id:b,children:[],animatables:h,animations:g,duration:y.duration,delay:y.delay,endDelay:y.endDelay}));f(M);function x(){var n=M.direction;"alternate"!==n&&(M.direction="normal"!==n?"normal":"reverse"),M.reversed=!M.reversed,r.forEach(function(n){return n.reversed=M.reversed})}function O(n){return M.reversed?M.duration-n:n}function C(){o=0,u=O(M.currentTime)*(1/en.speed)}function P(n,e){e&&e.seek(n-e.timelineOffset)}function I(n){for(var e=0,t=M.animations,r=t.length;e2||(b=Math.round(b*p)/p)),v.push(b)}var k=d.length;if(k){g=d[0];for(var O=0;O0&&(M.began=!0,D("begin")),!M.loopBegan&&M.currentTime>0&&(M.loopBegan=!0,D("loopBegin")),d<=t&&0!==M.currentTime&&I(0),(d>=l&&M.currentTime!==e||!e)&&I(e),d>t&&d=e&&(u=0,M.remaining&&!0!==M.remaining&&M.remaining--,M.remaining?(o=i,D("loopComplete"),M.loopBegan=!1,"alternate"===M.direction&&x()):(M.paused=!0,M.completed||(M.completed=!0,D("loopComplete"),D("complete"),!M.passThrough&&"Promise"in window&&(s(),f(M)))))}return M.reset=function(){var n=M.direction;M.passThrough=!1,M.currentTime=0,M.progress=0,M.paused=!0,M.began=!1,M.loopBegan=!1,M.changeBegan=!1,M.completed=!1,M.changeCompleted=!1,M.reversePlayback=!1,M.reversed="reverse"===n,M.remaining=M.loop,r=M.children;for(var e=c=r.length;e--;)M.children[e].reset();(M.reversed&&!0!==M.loop||"alternate"===n&&1===M.loop)&&M.remaining++,I(M.reversed?M.duration:0)},M._onDocumentVisibility=C,M.set=function(n,e){return z(n,e),M},M.tick=function(n){i=n,o||(o=i),B((i+(u-o))*en.speed)},M.seek=function(n){B(O(n))},M.pause=function(){M.paused=!0,C()},M.play=function(){M.paused&&(M.completed&&M.reset(),M.paused=!1,K.push(M),C(),U())},M.reverse=function(){x(),M.completed=!M.reversed,C()},M.restart=function(){M.reset(),M.play()},M.remove=function(n){rn(W(n),M)},M.reset(),M.autoplay&&M.play(),M}function tn(n,e){for(var t=e.length;t--;)M(n,e[t].animatable.target)&&e.splice(t,1)}function rn(n,e){var t=e.animations,r=e.children;tn(n,t);for(var a=r.length;a--;){var o=r[a],u=o.animations;tn(n,u),u.length||o.children.length||r.splice(a,1)}t.length||r.length||e.pause()}return en.version="3.2.1",en.speed=1,en.suspendWhenDocumentHidden=!0,en.running=K,en.remove=function(n){for(var e=W(n),t=K.length;t--;)rn(e,K[t])},en.get=A,en.set=z,en.convertPx=D,en.path=function(n,e){var t=i.str(n)?g(n)[0]:n,r=e||100;return function(n){return{property:n,el:t,svg:H(t),totalLength:q(t)*(r/100)}}},en.setDashoffset=function(n){var e=q(n);return n.setAttribute("stroke-dasharray",e),e},en.stagger=function(n,e){void 0===e&&(e={});var t=e.direction||"normal",r=e.easing?h(e.easing):null,a=e.grid,o=e.axis,u=e.from||0,c="first"===u,s="center"===u,f="last"===u,l=i.arr(n),d=l?parseFloat(n[0]):parseFloat(n),p=l?parseFloat(n[1]):0,v=C(l?n[1]:n)||0,g=e.start||0+(l?d:0),m=[],y=0;return function(n,e,i){if(c&&(u=0),s&&(u=(i-1)/2),f&&(u=i-1),!m.length){for(var h=0;h-1&&K.splice(o,1);for(var s=0;s+~]|" + M + ")" + M + "*"), U = new RegExp(M + "|>"), X = new RegExp(F), V = new RegExp("^" + I + "$"), G = { ID: new RegExp("^#(" + I + ")"), CLASS: new RegExp("^\\.(" + I + ")"), TAG: new RegExp("^(" + I + "|[*])"), ATTR: new RegExp("^" + W), PSEUDO: new RegExp("^" + F), CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + M + "*(even|odd|(([+-]|)(\\d*)n|)" + M + "*(?:([+-]|)" + M + "*(\\d+)|))" + M + "*\\)|)", "i"), bool: new RegExp("^(?:" + R + ")$", "i"), needsContext: new RegExp("^" + M + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + M + "*((?:-\\d)?\\d*)" + M + "*\\)|)(?=[^-]|$)", "i") }, Y = /HTML$/i, Q = /^(?:input|select|textarea|button)$/i, J = /^h\d$/i, K = /^[^{]+\{\s*\[native \w/, Z = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, ee = /[+~]/, te = new RegExp("\\\\[\\da-fA-F]{1,6}" + M + "?|\\\\([^\\r\\n\\f])", "g"), ne = function (e, t) { var n = "0x" + e.slice(1) - 65536; return t || (n < 0 ? String.fromCharCode(n + 65536) : String.fromCharCode(n >> 10 | 55296, 1023 & n | 56320)) }, re = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, ie = function (e, t) { return t ? "\0" === e ? "\ufffd" : e.slice(0, -1) + "\\" + e.charCodeAt(e.length - 1).toString(16) + " " : "\\" + e }, oe = function () { T() }, ae = be(function (e) { return !0 === e.disabled && "fieldset" === e.nodeName.toLowerCase() }, { dir: "parentNode", next: "legend" }); try { H.apply(t = O.call(p.childNodes), p.childNodes), t[p.childNodes.length].nodeType } catch (e) { H = { apply: t.length ? function (e, t) { L.apply(e, O.call(t)) } : function (e, t) { var n = e.length, r = 0; while (e[n++] = t[r++]); e.length = n - 1 } } } function se(t, e, n, r) { var i, o, a, s, u, l, c, f = e && e.ownerDocument, p = e ? e.nodeType : 9; if (n = n || [], "string" != typeof t || !t || 1 !== p && 9 !== p && 11 !== p) return n; if (!r && (T(e), e = e || C, E)) { if (11 !== p && (u = Z.exec(t))) if (i = u[1]) { if (9 === p) { if (!(a = e.getElementById(i))) return n; if (a.id === i) return n.push(a), n } else if (f && (a = f.getElementById(i)) && y(e, a) && a.id === i) return n.push(a), n } else { if (u[2]) return H.apply(n, e.getElementsByTagName(t)), n; if ((i = u[3]) && d.getElementsByClassName && e.getElementsByClassName) return H.apply(n, e.getElementsByClassName(i)), n } if (d.qsa && !N[t + " "] && (!v || !v.test(t)) && (1 !== p || "object" !== e.nodeName.toLowerCase())) { if (c = t, f = e, 1 === p && (U.test(t) || z.test(t))) { (f = ee.test(t) && ye(e.parentNode) || e) === e && d.scope || ((s = e.getAttribute("id")) ? s = s.replace(re, ie) : e.setAttribute("id", s = S)), o = (l = h(t)).length; while (o--) l[o] = (s ? "#" + s : ":scope") + " " + xe(l[o]); c = l.join(",") } try { return H.apply(n, f.querySelectorAll(c)), n } catch (e) { N(t, !0) } finally { s === S && e.removeAttribute("id") } } } return g(t.replace($, "$1"), e, n, r) } function ue() { var r = []; return function e(t, n) { return r.push(t + " ") > b.cacheLength && delete e[r.shift()], e[t + " "] = n } } function le(e) { return e[S] = !0, e } function ce(e) { var t = C.createElement("fieldset"); try { return !!e(t) } catch (e) { return !1 } finally { t.parentNode && t.parentNode.removeChild(t), t = null } } function fe(e, t) { var n = e.split("|"), r = n.length; while (r--) b.attrHandle[n[r]] = t } function pe(e, t) { var n = t && e, r = n && 1 === e.nodeType && 1 === t.nodeType && e.sourceIndex - t.sourceIndex; if (r) return r; if (n) while (n = n.nextSibling) if (n === t) return -1; return e ? 1 : -1 } function de(t) { return function (e) { return "input" === e.nodeName.toLowerCase() && e.type === t } } function he(n) { return function (e) { var t = e.nodeName.toLowerCase(); return ("input" === t || "button" === t) && e.type === n } } function ge(t) { return function (e) { return "form" in e ? e.parentNode && !1 === e.disabled ? "label" in e ? "label" in e.parentNode ? e.parentNode.disabled === t : e.disabled === t : e.isDisabled === t || e.isDisabled !== !t && ae(e) === t : e.disabled === t : "label" in e && e.disabled === t } } function ve(a) { return le(function (o) { return o = +o, le(function (e, t) { var n, r = a([], e.length, o), i = r.length; while (i--) e[n = r[i]] && (e[n] = !(t[n] = e[n])) }) }) } function ye(e) { return e && "undefined" != typeof e.getElementsByTagName && e } for (e in d = se.support = {}, i = se.isXML = function (e) { var t = e && e.namespaceURI, n = e && (e.ownerDocument || e).documentElement; return !Y.test(t || n && n.nodeName || "HTML") }, T = se.setDocument = function (e) { var t, n, r = e ? e.ownerDocument || e : p; return r != C && 9 === r.nodeType && r.documentElement && (a = (C = r).documentElement, E = !i(C), p != C && (n = C.defaultView) && n.top !== n && (n.addEventListener ? n.addEventListener("unload", oe, !1) : n.attachEvent && n.attachEvent("onunload", oe)), d.scope = ce(function (e) { return a.appendChild(e).appendChild(C.createElement("div")), "undefined" != typeof e.querySelectorAll && !e.querySelectorAll(":scope fieldset div").length }), d.attributes = ce(function (e) { return e.className = "i", !e.getAttribute("className") }), d.getElementsByTagName = ce(function (e) { return e.appendChild(C.createComment("")), !e.getElementsByTagName("*").length }), d.getElementsByClassName = K.test(C.getElementsByClassName), d.getById = ce(function (e) { return a.appendChild(e).id = S, !C.getElementsByName || !C.getElementsByName(S).length }), d.getById ? (b.filter.ID = function (e) { var t = e.replace(te, ne); return function (e) { return e.getAttribute("id") === t } }, b.find.ID = function (e, t) { if ("undefined" != typeof t.getElementById && E) { var n = t.getElementById(e); return n ? [n] : [] } }) : (b.filter.ID = function (e) { var n = e.replace(te, ne); return function (e) { var t = "undefined" != typeof e.getAttributeNode && e.getAttributeNode("id"); return t && t.value === n } }, b.find.ID = function (e, t) { if ("undefined" != typeof t.getElementById && E) { var n, r, i, o = t.getElementById(e); if (o) { if ((n = o.getAttributeNode("id")) && n.value === e) return [o]; i = t.getElementsByName(e), r = 0; while (o = i[r++]) if ((n = o.getAttributeNode("id")) && n.value === e) return [o] } return [] } }), b.find.TAG = d.getElementsByTagName ? function (e, t) { return "undefined" != typeof t.getElementsByTagName ? t.getElementsByTagName(e) : d.qsa ? t.querySelectorAll(e) : void 0 } : function (e, t) { var n, r = [], i = 0, o = t.getElementsByTagName(e); if ("*" === e) { while (n = o[i++]) 1 === n.nodeType && r.push(n); return r } return o }, b.find.CLASS = d.getElementsByClassName && function (e, t) { if ("undefined" != typeof t.getElementsByClassName && E) return t.getElementsByClassName(e) }, s = [], v = [], (d.qsa = K.test(C.querySelectorAll)) && (ce(function (e) { var t; a.appendChild(e).innerHTML = "", e.querySelectorAll("[msallowcapture^='']").length && v.push("[*^$]=" + M + "*(?:''|\"\")"), e.querySelectorAll("[selected]").length || v.push("\\[" + M + "*(?:value|" + R + ")"), e.querySelectorAll("[id~=" + S + "-]").length || v.push("~="), (t = C.createElement("input")).setAttribute("name", ""), e.appendChild(t), e.querySelectorAll("[name='']").length || v.push("\\[" + M + "*name" + M + "*=" + M + "*(?:''|\"\")"), e.querySelectorAll(":checked").length || v.push(":checked"), e.querySelectorAll("a#" + S + "+*").length || v.push(".#.+[+~]"), e.querySelectorAll("\\\f"), v.push("[\\r\\n\\f]") }), ce(function (e) { e.innerHTML = ""; var t = C.createElement("input"); t.setAttribute("type", "hidden"), e.appendChild(t).setAttribute("name", "D"), e.querySelectorAll("[name=d]").length && v.push("name" + M + "*[*^$|!~]?="), 2 !== e.querySelectorAll(":enabled").length && v.push(":enabled", ":disabled"), a.appendChild(e).disabled = !0, 2 !== e.querySelectorAll(":disabled").length && v.push(":enabled", ":disabled"), e.querySelectorAll("*,:x"), v.push(",.*:") })), (d.matchesSelector = K.test(c = a.matches || a.webkitMatchesSelector || a.mozMatchesSelector || a.oMatchesSelector || a.msMatchesSelector)) && ce(function (e) { d.disconnectedMatch = c.call(e, "*"), c.call(e, "[s!='']:x"), s.push("!=", F) }), v = v.length && new RegExp(v.join("|")), s = s.length && new RegExp(s.join("|")), t = K.test(a.compareDocumentPosition), y = t || K.test(a.contains) ? function (e, t) { var n = 9 === e.nodeType ? e.documentElement : e, r = t && t.parentNode; return e === r || !(!r || 1 !== r.nodeType || !(n.contains ? n.contains(r) : e.compareDocumentPosition && 16 & e.compareDocumentPosition(r))) } : function (e, t) { if (t) while (t = t.parentNode) if (t === e) return !0; return !1 }, j = t ? function (e, t) { if (e === t) return l = !0, 0; var n = !e.compareDocumentPosition - !t.compareDocumentPosition; return n || (1 & (n = (e.ownerDocument || e) == (t.ownerDocument || t) ? e.compareDocumentPosition(t) : 1) || !d.sortDetached && t.compareDocumentPosition(e) === n ? e == C || e.ownerDocument == p && y(p, e) ? -1 : t == C || t.ownerDocument == p && y(p, t) ? 1 : u ? P(u, e) - P(u, t) : 0 : 4 & n ? -1 : 1) } : function (e, t) { if (e === t) return l = !0, 0; var n, r = 0, i = e.parentNode, o = t.parentNode, a = [e], s = [t]; if (!i || !o) return e == C ? -1 : t == C ? 1 : i ? -1 : o ? 1 : u ? P(u, e) - P(u, t) : 0; if (i === o) return pe(e, t); n = e; while (n = n.parentNode) a.unshift(n); n = t; while (n = n.parentNode) s.unshift(n); while (a[r] === s[r]) r++; return r ? pe(a[r], s[r]) : a[r] == p ? -1 : s[r] == p ? 1 : 0 }), C }, se.matches = function (e, t) { return se(e, null, null, t) }, se.matchesSelector = function (e, t) { if (T(e), d.matchesSelector && E && !N[t + " "] && (!s || !s.test(t)) && (!v || !v.test(t))) try { var n = c.call(e, t); if (n || d.disconnectedMatch || e.document && 11 !== e.document.nodeType) return n } catch (e) { N(t, !0) } return 0 < se(t, C, null, [e]).length }, se.contains = function (e, t) { return (e.ownerDocument || e) != C && T(e), y(e, t) }, se.attr = function (e, t) { (e.ownerDocument || e) != C && T(e); var n = b.attrHandle[t.toLowerCase()], r = n && D.call(b.attrHandle, t.toLowerCase()) ? n(e, t, !E) : void 0; return void 0 !== r ? r : d.attributes || !E ? e.getAttribute(t) : (r = e.getAttributeNode(t)) && r.specified ? r.value : null }, se.escape = function (e) { return (e + "").replace(re, ie) }, se.error = function (e) { throw new Error("Syntax error, unrecognized expression: " + e) }, se.uniqueSort = function (e) { var t, n = [], r = 0, i = 0; if (l = !d.detectDuplicates, u = !d.sortStable && e.slice(0), e.sort(j), l) { while (t = e[i++]) t === e[i] && (r = n.push(i)); while (r--) e.splice(n[r], 1) } return u = null, e }, o = se.getText = function (e) { var t, n = "", r = 0, i = e.nodeType; if (i) { if (1 === i || 9 === i || 11 === i) { if ("string" == typeof e.textContent) return e.textContent; for (e = e.firstChild; e; e = e.nextSibling)n += o(e) } else if (3 === i || 4 === i) return e.nodeValue } else while (t = e[r++]) n += o(t); return n }, (b = se.selectors = { cacheLength: 50, createPseudo: le, match: G, attrHandle: {}, find: {}, relative: { ">": { dir: "parentNode", first: !0 }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: !0 }, "~": { dir: "previousSibling" } }, preFilter: { ATTR: function (e) { return e[1] = e[1].replace(te, ne), e[3] = (e[3] || e[4] || e[5] || "").replace(te, ne), "~=" === e[2] && (e[3] = " " + e[3] + " "), e.slice(0, 4) }, CHILD: function (e) { return e[1] = e[1].toLowerCase(), "nth" === e[1].slice(0, 3) ? (e[3] || se.error(e[0]), e[4] = +(e[4] ? e[5] + (e[6] || 1) : 2 * ("even" === e[3] || "odd" === e[3])), e[5] = +(e[7] + e[8] || "odd" === e[3])) : e[3] && se.error(e[0]), e }, PSEUDO: function (e) { var t, n = !e[6] && e[2]; return G.CHILD.test(e[0]) ? null : (e[3] ? e[2] = e[4] || e[5] || "" : n && X.test(n) && (t = h(n, !0)) && (t = n.indexOf(")", n.length - t) - n.length) && (e[0] = e[0].slice(0, t), e[2] = n.slice(0, t)), e.slice(0, 3)) } }, filter: { TAG: function (e) { var t = e.replace(te, ne).toLowerCase(); return "*" === e ? function () { return !0 } : function (e) { return e.nodeName && e.nodeName.toLowerCase() === t } }, CLASS: function (e) { var t = m[e + " "]; return t || (t = new RegExp("(^|" + M + ")" + e + "(" + M + "|$)")) && m(e, function (e) { return t.test("string" == typeof e.className && e.className || "undefined" != typeof e.getAttribute && e.getAttribute("class") || "") }) }, ATTR: function (n, r, i) { return function (e) { var t = se.attr(e, n); return null == t ? "!=" === r : !r || (t += "", "=" === r ? t === i : "!=" === r ? t !== i : "^=" === r ? i && 0 === t.indexOf(i) : "*=" === r ? i && -1 < t.indexOf(i) : "$=" === r ? i && t.slice(-i.length) === i : "~=" === r ? -1 < (" " + t.replace(B, " ") + " ").indexOf(i) : "|=" === r && (t === i || t.slice(0, i.length + 1) === i + "-")) } }, CHILD: function (h, e, t, g, v) { var y = "nth" !== h.slice(0, 3), m = "last" !== h.slice(-4), x = "of-type" === e; return 1 === g && 0 === v ? function (e) { return !!e.parentNode } : function (e, t, n) { var r, i, o, a, s, u, l = y !== m ? "nextSibling" : "previousSibling", c = e.parentNode, f = x && e.nodeName.toLowerCase(), p = !n && !x, d = !1; if (c) { if (y) { while (l) { a = e; while (a = a[l]) if (x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) return !1; u = l = "only" === h && !u && "nextSibling" } return !0 } if (u = [m ? c.firstChild : c.lastChild], m && p) { d = (s = (r = (i = (o = (a = c)[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]) && r[2], a = s && c.childNodes[s]; while (a = ++s && a && a[l] || (d = s = 0) || u.pop()) if (1 === a.nodeType && ++d && a === e) { i[h] = [k, s, d]; break } } else if (p && (d = s = (r = (i = (o = (a = e)[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]), !1 === d) while (a = ++s && a && a[l] || (d = s = 0) || u.pop()) if ((x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) && ++d && (p && ((i = (o = a[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] = [k, d]), a === e)) break; return (d -= v) === g || d % g == 0 && 0 <= d / g } } }, PSEUDO: function (e, o) { var t, a = b.pseudos[e] || b.setFilters[e.toLowerCase()] || se.error("unsupported pseudo: " + e); return a[S] ? a(o) : 1 < a.length ? (t = [e, e, "", o], b.setFilters.hasOwnProperty(e.toLowerCase()) ? le(function (e, t) { var n, r = a(e, o), i = r.length; while (i--) e[n = P(e, r[i])] = !(t[n] = r[i]) }) : function (e) { return a(e, 0, t) }) : a } }, pseudos: { not: le(function (e) { var r = [], i = [], s = f(e.replace($, "$1")); return s[S] ? le(function (e, t, n, r) { var i, o = s(e, null, r, []), a = e.length; while (a--) (i = o[a]) && (e[a] = !(t[a] = i)) }) : function (e, t, n) { return r[0] = e, s(r, null, n, i), r[0] = null, !i.pop() } }), has: le(function (t) { return function (e) { return 0 < se(t, e).length } }), contains: le(function (t) { return t = t.replace(te, ne), function (e) { return -1 < (e.textContent || o(e)).indexOf(t) } }), lang: le(function (n) { return V.test(n || "") || se.error("unsupported lang: " + n), n = n.replace(te, ne).toLowerCase(), function (e) { var t; do { if (t = E ? e.lang : e.getAttribute("xml:lang") || e.getAttribute("lang")) return (t = t.toLowerCase()) === n || 0 === t.indexOf(n + "-") } while ((e = e.parentNode) && 1 === e.nodeType); return !1 } }), target: function (e) { var t = n.location && n.location.hash; return t && t.slice(1) === e.id }, root: function (e) { return e === a }, focus: function (e) { return e === C.activeElement && (!C.hasFocus || C.hasFocus()) && !!(e.type || e.href || ~e.tabIndex) }, enabled: ge(!1), disabled: ge(!0), checked: function (e) { var t = e.nodeName.toLowerCase(); return "input" === t && !!e.checked || "option" === t && !!e.selected }, selected: function (e) { return e.parentNode && e.parentNode.selectedIndex, !0 === e.selected }, empty: function (e) { for (e = e.firstChild; e; e = e.nextSibling)if (e.nodeType < 6) return !1; return !0 }, parent: function (e) { return !b.pseudos.empty(e) }, header: function (e) { return J.test(e.nodeName) }, input: function (e) { return Q.test(e.nodeName) }, button: function (e) { var t = e.nodeName.toLowerCase(); return "input" === t && "button" === e.type || "button" === t }, text: function (e) { var t; return "input" === e.nodeName.toLowerCase() && "text" === e.type && (null == (t = e.getAttribute("type")) || "text" === t.toLowerCase()) }, first: ve(function () { return [0] }), last: ve(function (e, t) { return [t - 1] }), eq: ve(function (e, t, n) { return [n < 0 ? n + t : n] }), even: ve(function (e, t) { for (var n = 0; n < t; n += 2)e.push(n); return e }), odd: ve(function (e, t) { for (var n = 1; n < t; n += 2)e.push(n); return e }), lt: ve(function (e, t, n) { for (var r = n < 0 ? n + t : t < n ? t : n; 0 <= --r;)e.push(r); return e }), gt: ve(function (e, t, n) { for (var r = n < 0 ? n + t : n; ++r < t;)e.push(r); return e }) } }).pseudos.nth = b.pseudos.eq, { radio: !0, checkbox: !0, file: !0, password: !0, image: !0 }) b.pseudos[e] = de(e); for (e in { submit: !0, reset: !0 }) b.pseudos[e] = he(e); function me() { } function xe(e) { for (var t = 0, n = e.length, r = ""; t < n; t++)r += e[t].value; return r } function be(s, e, t) { var u = e.dir, l = e.next, c = l || u, f = t && "parentNode" === c, p = r++; return e.first ? function (e, t, n) { while (e = e[u]) if (1 === e.nodeType || f) return s(e, t, n); return !1 } : function (e, t, n) { var r, i, o, a = [k, p]; if (n) { while (e = e[u]) if ((1 === e.nodeType || f) && s(e, t, n)) return !0 } else while (e = e[u]) if (1 === e.nodeType || f) if (i = (o = e[S] || (e[S] = {}))[e.uniqueID] || (o[e.uniqueID] = {}), l && l === e.nodeName.toLowerCase()) e = e[u] || e; else { if ((r = i[c]) && r[0] === k && r[1] === p) return a[2] = r[2]; if ((i[c] = a)[2] = s(e, t, n)) return !0 } return !1 } } function we(i) { return 1 < i.length ? function (e, t, n) { var r = i.length; while (r--) if (!i[r](e, t, n)) return !1; return !0 } : i[0] } function Te(e, t, n, r, i) { for (var o, a = [], s = 0, u = e.length, l = null != t; s < u; s++)(o = e[s]) && (n && !n(o, r, i) || (a.push(o), l && t.push(s))); return a } function Ce(d, h, g, v, y, e) { return v && !v[S] && (v = Ce(v)), y && !y[S] && (y = Ce(y, e)), le(function (e, t, n, r) { var i, o, a, s = [], u = [], l = t.length, c = e || function (e, t, n) { for (var r = 0, i = t.length; r < i; r++)se(e, t[r], n); return n }(h || "*", n.nodeType ? [n] : n, []), f = !d || !e && h ? c : Te(c, s, d, n, r), p = g ? y || (e ? d : l || v) ? [] : t : f; if (g && g(f, p, n, r), v) { i = Te(p, u), v(i, [], n, r), o = i.length; while (o--) (a = i[o]) && (p[u[o]] = !(f[u[o]] = a)) } if (e) { if (y || d) { if (y) { i = [], o = p.length; while (o--) (a = p[o]) && i.push(f[o] = a); y(null, p = [], i, r) } o = p.length; while (o--) (a = p[o]) && -1 < (i = y ? P(e, a) : s[o]) && (e[i] = !(t[i] = a)) } } else p = Te(p === t ? p.splice(l, p.length) : p), y ? y(null, t, p, r) : H.apply(t, p) }) } function Ee(e) { for (var i, t, n, r = e.length, o = b.relative[e[0].type], a = o || b.relative[" "], s = o ? 1 : 0, u = be(function (e) { return e === i }, a, !0), l = be(function (e) { return -1 < P(i, e) }, a, !0), c = [function (e, t, n) { var r = !o && (n || t !== w) || ((i = t).nodeType ? u(e, t, n) : l(e, t, n)); return i = null, r }]; s < r; s++)if (t = b.relative[e[s].type]) c = [be(we(c), t)]; else { if ((t = b.filter[e[s].type].apply(null, e[s].matches))[S]) { for (n = ++s; n < r; n++)if (b.relative[e[n].type]) break; return Ce(1 < s && we(c), 1 < s && xe(e.slice(0, s - 1).concat({ value: " " === e[s - 2].type ? "*" : "" })).replace($, "$1"), t, s < n && Ee(e.slice(s, n)), n < r && Ee(e = e.slice(n)), n < r && xe(e)) } c.push(t) } return we(c) } return me.prototype = b.filters = b.pseudos, b.setFilters = new me, h = se.tokenize = function (e, t) { var n, r, i, o, a, s, u, l = x[e + " "]; if (l) return t ? 0 : l.slice(0); a = e, s = [], u = b.preFilter; while (a) { for (o in n && !(r = _.exec(a)) || (r && (a = a.slice(r[0].length) || a), s.push(i = [])), n = !1, (r = z.exec(a)) && (n = r.shift(), i.push({ value: n, type: r[0].replace($, " ") }), a = a.slice(n.length)), b.filter) !(r = G[o].exec(a)) || u[o] && !(r = u[o](r)) || (n = r.shift(), i.push({ value: n, type: o, matches: r }), a = a.slice(n.length)); if (!n) break } return t ? a.length : a ? se.error(e) : x(e, s).slice(0) }, f = se.compile = function (e, t) { var n, v, y, m, x, r, i = [], o = [], a = A[e + " "]; if (!a) { t || (t = h(e)), n = t.length; while (n--) (a = Ee(t[n]))[S] ? i.push(a) : o.push(a); (a = A(e, (v = o, m = 0 < (y = i).length, x = 0 < v.length, r = function (e, t, n, r, i) { var o, a, s, u = 0, l = "0", c = e && [], f = [], p = w, d = e || x && b.find.TAG("*", i), h = k += null == p ? 1 : Math.random() || .1, g = d.length; for (i && (w = t == C || t || i); l !== g && null != (o = d[l]); l++) { if (x && o) { a = 0, t || o.ownerDocument == C || (T(o), n = !E); while (s = v[a++]) if (s(o, t || C, n)) { r.push(o); break } i && (k = h) } m && ((o = !s && o) && u--, e && c.push(o)) } if (u += l, m && l !== u) { a = 0; while (s = y[a++]) s(c, f, t, n); if (e) { if (0 < u) while (l--) c[l] || f[l] || (f[l] = q.call(r)); f = Te(f) } H.apply(r, f), i && !e && 0 < f.length && 1 < u + y.length && se.uniqueSort(r) } return i && (k = h, w = p), c }, m ? le(r) : r))).selector = e } return a }, g = se.select = function (e, t, n, r) { var i, o, a, s, u, l = "function" == typeof e && e, c = !r && h(e = l.selector || e); if (n = n || [], 1 === c.length) { if (2 < (o = c[0] = c[0].slice(0)).length && "ID" === (a = o[0]).type && 9 === t.nodeType && E && b.relative[o[1].type]) { if (!(t = (b.find.ID(a.matches[0].replace(te, ne), t) || [])[0])) return n; l && (t = t.parentNode), e = e.slice(o.shift().value.length) } i = G.needsContext.test(e) ? 0 : o.length; while (i--) { if (a = o[i], b.relative[s = a.type]) break; if ((u = b.find[s]) && (r = u(a.matches[0].replace(te, ne), ee.test(o[0].type) && ye(t.parentNode) || t))) { if (o.splice(i, 1), !(e = r.length && xe(o))) return H.apply(n, r), n; break } } } return (l || f(e, c))(r, t, !E, n, !t || ee.test(e) && ye(t.parentNode) || t), n }, d.sortStable = S.split("").sort(j).join("") === S, d.detectDuplicates = !!l, T(), d.sortDetached = ce(function (e) { return 1 & e.compareDocumentPosition(C.createElement("fieldset")) }), ce(function (e) { return e.innerHTML = "", "#" === e.firstChild.getAttribute("href") }) || fe("type|href|height|width", function (e, t, n) { if (!n) return e.getAttribute(t, "type" === t.toLowerCase() ? 1 : 2) }), d.attributes && ce(function (e) { return e.innerHTML = "", e.firstChild.setAttribute("value", ""), "" === e.firstChild.getAttribute("value") }) || fe("value", function (e, t, n) { if (!n && "input" === e.nodeName.toLowerCase()) return e.defaultValue }), ce(function (e) { return null == e.getAttribute("disabled") }) || fe(R, function (e, t, n) { var r; if (!n) return !0 === e[t] ? t.toLowerCase() : (r = e.getAttributeNode(t)) && r.specified ? r.value : null }), se }(C); S.find = d, S.expr = d.selectors, S.expr[":"] = S.expr.pseudos, S.uniqueSort = S.unique = d.uniqueSort, S.text = d.getText, S.isXMLDoc = d.isXML, S.contains = d.contains, S.escapeSelector = d.escape; var h = function (e, t, n) { var r = [], i = void 0 !== n; while ((e = e[t]) && 9 !== e.nodeType) if (1 === e.nodeType) { if (i && S(e).is(n)) break; r.push(e) } return r }, T = function (e, t) { for (var n = []; e; e = e.nextSibling)1 === e.nodeType && e !== t && n.push(e); return n }, k = S.expr.match.needsContext; function A(e, t) { return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase() } var N = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i; function j(e, n, r) { return m(n) ? S.grep(e, function (e, t) { return !!n.call(e, t, e) !== r }) : n.nodeType ? S.grep(e, function (e) { return e === n !== r }) : "string" != typeof n ? S.grep(e, function (e) { return -1 < i.call(n, e) !== r }) : S.filter(n, e, r) } S.filter = function (e, t, n) { var r = t[0]; return n && (e = ":not(" + e + ")"), 1 === t.length && 1 === r.nodeType ? S.find.matchesSelector(r, e) ? [r] : [] : S.find.matches(e, S.grep(t, function (e) { return 1 === e.nodeType })) }, S.fn.extend({ find: function (e) { var t, n, r = this.length, i = this; if ("string" != typeof e) return this.pushStack(S(e).filter(function () { for (t = 0; t < r; t++)if (S.contains(i[t], this)) return !0 })); for (n = this.pushStack([]), t = 0; t < r; t++)S.find(e, i[t], n); return 1 < r ? S.uniqueSort(n) : n }, filter: function (e) { return this.pushStack(j(this, e || [], !1)) }, not: function (e) { return this.pushStack(j(this, e || [], !0)) }, is: function (e) { return !!j(this, "string" == typeof e && k.test(e) ? S(e) : e || [], !1).length } }); var D, q = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/; (S.fn.init = function (e, t, n) { var r, i; if (!e) return this; if (n = n || D, "string" == typeof e) { if (!(r = "<" === e[0] && ">" === e[e.length - 1] && 3 <= e.length ? [null, e, null] : q.exec(e)) || !r[1] && t) return !t || t.jquery ? (t || n).find(e) : this.constructor(t).find(e); if (r[1]) { if (t = t instanceof S ? t[0] : t, S.merge(this, S.parseHTML(r[1], t && t.nodeType ? t.ownerDocument || t : E, !0)), N.test(r[1]) && S.isPlainObject(t)) for (r in t) m(this[r]) ? this[r](t[r]) : this.attr(r, t[r]); return this } return (i = E.getElementById(r[2])) && (this[0] = i, this.length = 1), this } return e.nodeType ? (this[0] = e, this.length = 1, this) : m(e) ? void 0 !== n.ready ? n.ready(e) : e(S) : S.makeArray(e, this) }).prototype = S.fn, D = S(E); var L = /^(?:parents|prev(?:Until|All))/, H = { children: !0, contents: !0, next: !0, prev: !0 }; function O(e, t) { while ((e = e[t]) && 1 !== e.nodeType); return e } S.fn.extend({ has: function (e) { var t = S(e, this), n = t.length; return this.filter(function () { for (var e = 0; e < n; e++)if (S.contains(this, t[e])) return !0 }) }, closest: function (e, t) { var n, r = 0, i = this.length, o = [], a = "string" != typeof e && S(e); if (!k.test(e)) for (; r < i; r++)for (n = this[r]; n && n !== t; n = n.parentNode)if (n.nodeType < 11 && (a ? -1 < a.index(n) : 1 === n.nodeType && S.find.matchesSelector(n, e))) { o.push(n); break } return this.pushStack(1 < o.length ? S.uniqueSort(o) : o) }, index: function (e) { return e ? "string" == typeof e ? i.call(S(e), this[0]) : i.call(this, e.jquery ? e[0] : e) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1 }, add: function (e, t) { return this.pushStack(S.uniqueSort(S.merge(this.get(), S(e, t)))) }, addBack: function (e) { return this.add(null == e ? this.prevObject : this.prevObject.filter(e)) } }), S.each({ parent: function (e) { var t = e.parentNode; return t && 11 !== t.nodeType ? t : null }, parents: function (e) { return h(e, "parentNode") }, parentsUntil: function (e, t, n) { return h(e, "parentNode", n) }, next: function (e) { return O(e, "nextSibling") }, prev: function (e) { return O(e, "previousSibling") }, nextAll: function (e) { return h(e, "nextSibling") }, prevAll: function (e) { return h(e, "previousSibling") }, nextUntil: function (e, t, n) { return h(e, "nextSibling", n) }, prevUntil: function (e, t, n) { return h(e, "previousSibling", n) }, siblings: function (e) { return T((e.parentNode || {}).firstChild, e) }, children: function (e) { return T(e.firstChild) }, contents: function (e) { return null != e.contentDocument && r(e.contentDocument) ? e.contentDocument : (A(e, "template") && (e = e.content || e), S.merge([], e.childNodes)) } }, function (r, i) { S.fn[r] = function (e, t) { var n = S.map(this, i, e); return "Until" !== r.slice(-5) && (t = e), t && "string" == typeof t && (n = S.filter(t, n)), 1 < this.length && (H[r] || S.uniqueSort(n), L.test(r) && n.reverse()), this.pushStack(n) } }); var P = /[^\x20\t\r\n\f]+/g; function R(e) { return e } function M(e) { throw e } function I(e, t, n, r) { var i; try { e && m(i = e.promise) ? i.call(e).done(t).fail(n) : e && m(i = e.then) ? i.call(e, t, n) : t.apply(void 0, [e].slice(r)) } catch (e) { n.apply(void 0, [e]) } } S.Callbacks = function (r) { var e, n; r = "string" == typeof r ? (e = r, n = {}, S.each(e.match(P) || [], function (e, t) { n[t] = !0 }), n) : S.extend({}, r); var i, t, o, a, s = [], u = [], l = -1, c = function () { for (a = a || r.once, o = i = !0; u.length; l = -1) { t = u.shift(); while (++l < s.length) !1 === s[l].apply(t[0], t[1]) && r.stopOnFalse && (l = s.length, t = !1) } r.memory || (t = !1), i = !1, a && (s = t ? [] : "") }, f = { add: function () { return s && (t && !i && (l = s.length - 1, u.push(t)), function n(e) { S.each(e, function (e, t) { m(t) ? r.unique && f.has(t) || s.push(t) : t && t.length && "string" !== w(t) && n(t) }) }(arguments), t && !i && c()), this }, remove: function () { return S.each(arguments, function (e, t) { var n; while (-1 < (n = S.inArray(t, s, n))) s.splice(n, 1), n <= l && l-- }), this }, has: function (e) { return e ? -1 < S.inArray(e, s) : 0 < s.length }, empty: function () { return s && (s = []), this }, disable: function () { return a = u = [], s = t = "", this }, disabled: function () { return !s }, lock: function () { return a = u = [], t || i || (s = t = ""), this }, locked: function () { return !!a }, fireWith: function (e, t) { return a || (t = [e, (t = t || []).slice ? t.slice() : t], u.push(t), i || c()), this }, fire: function () { return f.fireWith(this, arguments), this }, fired: function () { return !!o } }; return f }, S.extend({ Deferred: function (e) { var o = [["notify", "progress", S.Callbacks("memory"), S.Callbacks("memory"), 2], ["resolve", "done", S.Callbacks("once memory"), S.Callbacks("once memory"), 0, "resolved"], ["reject", "fail", S.Callbacks("once memory"), S.Callbacks("once memory"), 1, "rejected"]], i = "pending", a = { state: function () { return i }, always: function () { return s.done(arguments).fail(arguments), this }, "catch": function (e) { return a.then(null, e) }, pipe: function () { var i = arguments; return S.Deferred(function (r) { S.each(o, function (e, t) { var n = m(i[t[4]]) && i[t[4]]; s[t[1]](function () { var e = n && n.apply(this, arguments); e && m(e.promise) ? e.promise().progress(r.notify).done(r.resolve).fail(r.reject) : r[t[0] + "With"](this, n ? [e] : arguments) }) }), i = null }).promise() }, then: function (t, n, r) { var u = 0; function l(i, o, a, s) { return function () { var n = this, r = arguments, e = function () { var e, t; if (!(i < u)) { if ((e = a.apply(n, r)) === o.promise()) throw new TypeError("Thenable self-resolution"); t = e && ("object" == typeof e || "function" == typeof e) && e.then, m(t) ? s ? t.call(e, l(u, o, R, s), l(u, o, M, s)) : (u++, t.call(e, l(u, o, R, s), l(u, o, M, s), l(u, o, R, o.notifyWith))) : (a !== R && (n = void 0, r = [e]), (s || o.resolveWith)(n, r)) } }, t = s ? e : function () { try { e() } catch (e) { S.Deferred.exceptionHook && S.Deferred.exceptionHook(e, t.stackTrace), u <= i + 1 && (a !== M && (n = void 0, r = [e]), o.rejectWith(n, r)) } }; i ? t() : (S.Deferred.getStackHook && (t.stackTrace = S.Deferred.getStackHook()), C.setTimeout(t)) } } return S.Deferred(function (e) { o[0][3].add(l(0, e, m(r) ? r : R, e.notifyWith)), o[1][3].add(l(0, e, m(t) ? t : R)), o[2][3].add(l(0, e, m(n) ? n : M)) }).promise() }, promise: function (e) { return null != e ? S.extend(e, a) : a } }, s = {}; return S.each(o, function (e, t) { var n = t[2], r = t[5]; a[t[1]] = n.add, r && n.add(function () { i = r }, o[3 - e][2].disable, o[3 - e][3].disable, o[0][2].lock, o[0][3].lock), n.add(t[3].fire), s[t[0]] = function () { return s[t[0] + "With"](this === s ? void 0 : this, arguments), this }, s[t[0] + "With"] = n.fireWith }), a.promise(s), e && e.call(s, s), s }, when: function (e) { var n = arguments.length, t = n, r = Array(t), i = s.call(arguments), o = S.Deferred(), a = function (t) { return function (e) { r[t] = this, i[t] = 1 < arguments.length ? s.call(arguments) : e, --n || o.resolveWith(r, i) } }; if (n <= 1 && (I(e, o.done(a(t)).resolve, o.reject, !n), "pending" === o.state() || m(i[t] && i[t].then))) return o.then(); while (t--) I(i[t], a(t), o.reject); return o.promise() } }); var W = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; S.Deferred.exceptionHook = function (e, t) { C.console && C.console.warn && e && W.test(e.name) && C.console.warn("jQuery.Deferred exception: " + e.message, e.stack, t) }, S.readyException = function (e) { C.setTimeout(function () { throw e }) }; var F = S.Deferred(); function B() { E.removeEventListener("DOMContentLoaded", B), C.removeEventListener("load", B), S.ready() } S.fn.ready = function (e) { return F.then(e)["catch"](function (e) { S.readyException(e) }), this }, S.extend({ isReady: !1, readyWait: 1, ready: function (e) { (!0 === e ? --S.readyWait : S.isReady) || (S.isReady = !0) !== e && 0 < --S.readyWait || F.resolveWith(E, [S]) } }), S.ready.then = F.then, "complete" === E.readyState || "loading" !== E.readyState && !E.documentElement.doScroll ? C.setTimeout(S.ready) : (E.addEventListener("DOMContentLoaded", B), C.addEventListener("load", B)); var $ = function (e, t, n, r, i, o, a) { var s = 0, u = e.length, l = null == n; if ("object" === w(n)) for (s in i = !0, n) $(e, t, s, n[s], !0, o, a); else if (void 0 !== r && (i = !0, m(r) || (a = !0), l && (a ? (t.call(e, r), t = null) : (l = t, t = function (e, t, n) { return l.call(S(e), n) })), t)) for (; s < u; s++)t(e[s], n, a ? r : r.call(e[s], s, t(e[s], n))); return i ? e : l ? t.call(e) : u ? t(e[0], n) : o }, _ = /^-ms-/, z = /-([a-z])/g; function U(e, t) { return t.toUpperCase() } function X(e) { return e.replace(_, "ms-").replace(z, U) } var V = function (e) { return 1 === e.nodeType || 9 === e.nodeType || !+e.nodeType }; function G() { this.expando = S.expando + G.uid++ } G.uid = 1, G.prototype = { cache: function (e) { var t = e[this.expando]; return t || (t = {}, V(e) && (e.nodeType ? e[this.expando] = t : Object.defineProperty(e, this.expando, { value: t, configurable: !0 }))), t }, set: function (e, t, n) { var r, i = this.cache(e); if ("string" == typeof t) i[X(t)] = n; else for (r in t) i[X(r)] = t[r]; return i }, get: function (e, t) { return void 0 === t ? this.cache(e) : e[this.expando] && e[this.expando][X(t)] }, access: function (e, t, n) { return void 0 === t || t && "string" == typeof t && void 0 === n ? this.get(e, t) : (this.set(e, t, n), void 0 !== n ? n : t) }, remove: function (e, t) { var n, r = e[this.expando]; if (void 0 !== r) { if (void 0 !== t) { n = (t = Array.isArray(t) ? t.map(X) : (t = X(t)) in r ? [t] : t.match(P) || []).length; while (n--) delete r[t[n]] } (void 0 === t || S.isEmptyObject(r)) && (e.nodeType ? e[this.expando] = void 0 : delete e[this.expando]) } }, hasData: function (e) { var t = e[this.expando]; return void 0 !== t && !S.isEmptyObject(t) } }; var Y = new G, Q = new G, J = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, K = /[A-Z]/g; function Z(e, t, n) { var r, i; if (void 0 === n && 1 === e.nodeType) if (r = "data-" + t.replace(K, "-$&").toLowerCase(), "string" == typeof (n = e.getAttribute(r))) { try { n = "true" === (i = n) || "false" !== i && ("null" === i ? null : i === +i + "" ? +i : J.test(i) ? JSON.parse(i) : i) } catch (e) { } Q.set(e, t, n) } else n = void 0; return n } S.extend({ hasData: function (e) { return Q.hasData(e) || Y.hasData(e) }, data: function (e, t, n) { return Q.access(e, t, n) }, removeData: function (e, t) { Q.remove(e, t) }, _data: function (e, t, n) { return Y.access(e, t, n) }, _removeData: function (e, t) { Y.remove(e, t) } }), S.fn.extend({ data: function (n, e) { var t, r, i, o = this[0], a = o && o.attributes; if (void 0 === n) { if (this.length && (i = Q.get(o), 1 === o.nodeType && !Y.get(o, "hasDataAttrs"))) { t = a.length; while (t--) a[t] && 0 === (r = a[t].name).indexOf("data-") && (r = X(r.slice(5)), Z(o, r, i[r])); Y.set(o, "hasDataAttrs", !0) } return i } return "object" == typeof n ? this.each(function () { Q.set(this, n) }) : $(this, function (e) { var t; if (o && void 0 === e) return void 0 !== (t = Q.get(o, n)) ? t : void 0 !== (t = Z(o, n)) ? t : void 0; this.each(function () { Q.set(this, n, e) }) }, null, e, 1 < arguments.length, null, !0) }, removeData: function (e) { return this.each(function () { Q.remove(this, e) }) } }), S.extend({ queue: function (e, t, n) { var r; if (e) return t = (t || "fx") + "queue", r = Y.get(e, t), n && (!r || Array.isArray(n) ? r = Y.access(e, t, S.makeArray(n)) : r.push(n)), r || [] }, dequeue: function (e, t) { t = t || "fx"; var n = S.queue(e, t), r = n.length, i = n.shift(), o = S._queueHooks(e, t); "inprogress" === i && (i = n.shift(), r--), i && ("fx" === t && n.unshift("inprogress"), delete o.stop, i.call(e, function () { S.dequeue(e, t) }, o)), !r && o && o.empty.fire() }, _queueHooks: function (e, t) { var n = t + "queueHooks"; return Y.get(e, n) || Y.access(e, n, { empty: S.Callbacks("once memory").add(function () { Y.remove(e, [t + "queue", n]) }) }) } }), S.fn.extend({ queue: function (t, n) { var e = 2; return "string" != typeof t && (n = t, t = "fx", e--), arguments.length < e ? S.queue(this[0], t) : void 0 === n ? this : this.each(function () { var e = S.queue(this, t, n); S._queueHooks(this, t), "fx" === t && "inprogress" !== e[0] && S.dequeue(this, t) }) }, dequeue: function (e) { return this.each(function () { S.dequeue(this, e) }) }, clearQueue: function (e) { return this.queue(e || "fx", []) }, promise: function (e, t) { var n, r = 1, i = S.Deferred(), o = this, a = this.length, s = function () { --r || i.resolveWith(o, [o]) }; "string" != typeof e && (t = e, e = void 0), e = e || "fx"; while (a--) (n = Y.get(o[a], e + "queueHooks")) && n.empty && (r++, n.empty.add(s)); return s(), i.promise(t) } }); var ee = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, te = new RegExp("^(?:([+-])=|)(" + ee + ")([a-z%]*)$", "i"), ne = ["Top", "Right", "Bottom", "Left"], re = E.documentElement, ie = function (e) { return S.contains(e.ownerDocument, e) }, oe = { composed: !0 }; re.getRootNode && (ie = function (e) { return S.contains(e.ownerDocument, e) || e.getRootNode(oe) === e.ownerDocument }); var ae = function (e, t) { return "none" === (e = t || e).style.display || "" === e.style.display && ie(e) && "none" === S.css(e, "display") }; function se(e, t, n, r) { var i, o, a = 20, s = r ? function () { return r.cur() } : function () { return S.css(e, t, "") }, u = s(), l = n && n[3] || (S.cssNumber[t] ? "" : "px"), c = e.nodeType && (S.cssNumber[t] || "px" !== l && +u) && te.exec(S.css(e, t)); if (c && c[3] !== l) { u /= 2, l = l || c[3], c = +u || 1; while (a--) S.style(e, t, c + l), (1 - o) * (1 - (o = s() / u || .5)) <= 0 && (a = 0), c /= o; c *= 2, S.style(e, t, c + l), n = n || [] } return n && (c = +c || +u || 0, i = n[1] ? c + (n[1] + 1) * n[2] : +n[2], r && (r.unit = l, r.start = c, r.end = i)), i } var ue = {}; function le(e, t) { for (var n, r, i, o, a, s, u, l = [], c = 0, f = e.length; c < f; c++)(r = e[c]).style && (n = r.style.display, t ? ("none" === n && (l[c] = Y.get(r, "display") || null, l[c] || (r.style.display = "")), "" === r.style.display && ae(r) && (l[c] = (u = a = o = void 0, a = (i = r).ownerDocument, s = i.nodeName, (u = ue[s]) || (o = a.body.appendChild(a.createElement(s)), u = S.css(o, "display"), o.parentNode.removeChild(o), "none" === u && (u = "block"), ue[s] = u)))) : "none" !== n && (l[c] = "none", Y.set(r, "display", n))); for (c = 0; c < f; c++)null != l[c] && (e[c].style.display = l[c]); return e } S.fn.extend({ show: function () { return le(this, !0) }, hide: function () { return le(this) }, toggle: function (e) { return "boolean" == typeof e ? e ? this.show() : this.hide() : this.each(function () { ae(this) ? S(this).show() : S(this).hide() }) } }); var ce, fe, pe = /^(?:checkbox|radio)$/i, de = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i, he = /^$|^module$|\/(?:java|ecma)script/i; ce = E.createDocumentFragment().appendChild(E.createElement("div")), (fe = E.createElement("input")).setAttribute("type", "radio"), fe.setAttribute("checked", "checked"), fe.setAttribute("name", "t"), ce.appendChild(fe), y.checkClone = ce.cloneNode(!0).cloneNode(!0).lastChild.checked, ce.innerHTML = "", y.noCloneChecked = !!ce.cloneNode(!0).lastChild.defaultValue, ce.innerHTML = "", y.option = !!ce.lastChild; var ge = { thead: [1, "", "
"], col: [2, "", "
"], tr: [2, "", "
"], td: [3, "", "
"], _default: [0, "", ""] }; function ve(e, t) { var n; return n = "undefined" != typeof e.getElementsByTagName ? e.getElementsByTagName(t || "*") : "undefined" != typeof e.querySelectorAll ? e.querySelectorAll(t || "*") : [], void 0 === t || t && A(e, t) ? S.merge([e], n) : n } function ye(e, t) { for (var n = 0, r = e.length; n < r; n++)Y.set(e[n], "globalEval", !t || Y.get(t[n], "globalEval")) } ge.tbody = ge.tfoot = ge.colgroup = ge.caption = ge.thead, ge.th = ge.td, y.option || (ge.optgroup = ge.option = [1, ""]); var me = /<|&#?\w+;/; function xe(e, t, n, r, i) { for (var o, a, s, u, l, c, f = t.createDocumentFragment(), p = [], d = 0, h = e.length; d < h; d++)if ((o = e[d]) || 0 === o) if ("object" === w(o)) S.merge(p, o.nodeType ? [o] : o); else if (me.test(o)) { a = a || f.appendChild(t.createElement("div")), s = (de.exec(o) || ["", ""])[1].toLowerCase(), u = ge[s] || ge._default, a.innerHTML = u[1] + S.htmlPrefilter(o) + u[2], c = u[0]; while (c--) a = a.lastChild; S.merge(p, a.childNodes), (a = f.firstChild).textContent = "" } else p.push(t.createTextNode(o)); f.textContent = "", d = 0; while (o = p[d++]) if (r && -1 < S.inArray(o, r)) i && i.push(o); else if (l = ie(o), a = ve(f.appendChild(o), "script"), l && ye(a), n) { c = 0; while (o = a[c++]) he.test(o.type || "") && n.push(o) } return f } var be = /^([^.]*)(?:\.(.+)|)/; function we() { return !0 } function Te() { return !1 } function Ce(e, t) { return e === function () { try { return E.activeElement } catch (e) { } }() == ("focus" === t) } function Ee(e, t, n, r, i, o) { var a, s; if ("object" == typeof t) { for (s in "string" != typeof n && (r = r || n, n = void 0), t) Ee(e, s, n, r, t[s], o); return e } if (null == r && null == i ? (i = n, r = n = void 0) : null == i && ("string" == typeof n ? (i = r, r = void 0) : (i = r, r = n, n = void 0)), !1 === i) i = Te; else if (!i) return e; return 1 === o && (a = i, (i = function (e) { return S().off(e), a.apply(this, arguments) }).guid = a.guid || (a.guid = S.guid++)), e.each(function () { S.event.add(this, t, i, r, n) }) } function Se(e, i, o) { o ? (Y.set(e, i, !1), S.event.add(e, i, { namespace: !1, handler: function (e) { var t, n, r = Y.get(this, i); if (1 & e.isTrigger && this[i]) { if (r.length) (S.event.special[i] || {}).delegateType && e.stopPropagation(); else if (r = s.call(arguments), Y.set(this, i, r), t = o(this, i), this[i](), r !== (n = Y.get(this, i)) || t ? Y.set(this, i, !1) : n = {}, r !== n) return e.stopImmediatePropagation(), e.preventDefault(), n && n.value } else r.length && (Y.set(this, i, { value: S.event.trigger(S.extend(r[0], S.Event.prototype), r.slice(1), this) }), e.stopImmediatePropagation()) } })) : void 0 === Y.get(e, i) && S.event.add(e, i, we) } S.event = { global: {}, add: function (t, e, n, r, i) { var o, a, s, u, l, c, f, p, d, h, g, v = Y.get(t); if (V(t)) { n.handler && (n = (o = n).handler, i = o.selector), i && S.find.matchesSelector(re, i), n.guid || (n.guid = S.guid++), (u = v.events) || (u = v.events = Object.create(null)), (a = v.handle) || (a = v.handle = function (e) { return "undefined" != typeof S && S.event.triggered !== e.type ? S.event.dispatch.apply(t, arguments) : void 0 }), l = (e = (e || "").match(P) || [""]).length; while (l--) d = g = (s = be.exec(e[l]) || [])[1], h = (s[2] || "").split(".").sort(), d && (f = S.event.special[d] || {}, d = (i ? f.delegateType : f.bindType) || d, f = S.event.special[d] || {}, c = S.extend({ type: d, origType: g, data: r, handler: n, guid: n.guid, selector: i, needsContext: i && S.expr.match.needsContext.test(i), namespace: h.join(".") }, o), (p = u[d]) || ((p = u[d] = []).delegateCount = 0, f.setup && !1 !== f.setup.call(t, r, h, a) || t.addEventListener && t.addEventListener(d, a)), f.add && (f.add.call(t, c), c.handler.guid || (c.handler.guid = n.guid)), i ? p.splice(p.delegateCount++, 0, c) : p.push(c), S.event.global[d] = !0) } }, remove: function (e, t, n, r, i) { var o, a, s, u, l, c, f, p, d, h, g, v = Y.hasData(e) && Y.get(e); if (v && (u = v.events)) { l = (t = (t || "").match(P) || [""]).length; while (l--) if (d = g = (s = be.exec(t[l]) || [])[1], h = (s[2] || "").split(".").sort(), d) { f = S.event.special[d] || {}, p = u[d = (r ? f.delegateType : f.bindType) || d] || [], s = s[2] && new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)"), a = o = p.length; while (o--) c = p[o], !i && g !== c.origType || n && n.guid !== c.guid || s && !s.test(c.namespace) || r && r !== c.selector && ("**" !== r || !c.selector) || (p.splice(o, 1), c.selector && p.delegateCount--, f.remove && f.remove.call(e, c)); a && !p.length && (f.teardown && !1 !== f.teardown.call(e, h, v.handle) || S.removeEvent(e, d, v.handle), delete u[d]) } else for (d in u) S.event.remove(e, d + t[l], n, r, !0); S.isEmptyObject(u) && Y.remove(e, "handle events") } }, dispatch: function (e) { var t, n, r, i, o, a, s = new Array(arguments.length), u = S.event.fix(e), l = (Y.get(this, "events") || Object.create(null))[u.type] || [], c = S.event.special[u.type] || {}; for (s[0] = u, t = 1; t < arguments.length; t++)s[t] = arguments[t]; if (u.delegateTarget = this, !c.preDispatch || !1 !== c.preDispatch.call(this, u)) { a = S.event.handlers.call(this, u, l), t = 0; while ((i = a[t++]) && !u.isPropagationStopped()) { u.currentTarget = i.elem, n = 0; while ((o = i.handlers[n++]) && !u.isImmediatePropagationStopped()) u.rnamespace && !1 !== o.namespace && !u.rnamespace.test(o.namespace) || (u.handleObj = o, u.data = o.data, void 0 !== (r = ((S.event.special[o.origType] || {}).handle || o.handler).apply(i.elem, s)) && !1 === (u.result = r) && (u.preventDefault(), u.stopPropagation())) } return c.postDispatch && c.postDispatch.call(this, u), u.result } }, handlers: function (e, t) { var n, r, i, o, a, s = [], u = t.delegateCount, l = e.target; if (u && l.nodeType && !("click" === e.type && 1 <= e.button)) for (; l !== this; l = l.parentNode || this)if (1 === l.nodeType && ("click" !== e.type || !0 !== l.disabled)) { for (o = [], a = {}, n = 0; n < u; n++)void 0 === a[i = (r = t[n]).selector + " "] && (a[i] = r.needsContext ? -1 < S(i, this).index(l) : S.find(i, this, null, [l]).length), a[i] && o.push(r); o.length && s.push({ elem: l, handlers: o }) } return l = this, u < t.length && s.push({ elem: l, handlers: t.slice(u) }), s }, addProp: function (t, e) { Object.defineProperty(S.Event.prototype, t, { enumerable: !0, configurable: !0, get: m(e) ? function () { if (this.originalEvent) return e(this.originalEvent) } : function () { if (this.originalEvent) return this.originalEvent[t] }, set: function (e) { Object.defineProperty(this, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) } }) }, fix: function (e) { return e[S.expando] ? e : new S.Event(e) }, special: { load: { noBubble: !0 }, click: { setup: function (e) { var t = this || e; return pe.test(t.type) && t.click && A(t, "input") && Se(t, "click", we), !1 }, trigger: function (e) { var t = this || e; return pe.test(t.type) && t.click && A(t, "input") && Se(t, "click"), !0 }, _default: function (e) { var t = e.target; return pe.test(t.type) && t.click && A(t, "input") && Y.get(t, "click") || A(t, "a") } }, beforeunload: { postDispatch: function (e) { void 0 !== e.result && e.originalEvent && (e.originalEvent.returnValue = e.result) } } } }, S.removeEvent = function (e, t, n) { e.removeEventListener && e.removeEventListener(t, n) }, S.Event = function (e, t) { if (!(this instanceof S.Event)) return new S.Event(e, t); e && e.type ? (this.originalEvent = e, this.type = e.type, this.isDefaultPrevented = e.defaultPrevented || void 0 === e.defaultPrevented && !1 === e.returnValue ? we : Te, this.target = e.target && 3 === e.target.nodeType ? e.target.parentNode : e.target, this.currentTarget = e.currentTarget, this.relatedTarget = e.relatedTarget) : this.type = e, t && S.extend(this, t), this.timeStamp = e && e.timeStamp || Date.now(), this[S.expando] = !0 }, S.Event.prototype = { constructor: S.Event, isDefaultPrevented: Te, isPropagationStopped: Te, isImmediatePropagationStopped: Te, isSimulated: !1, preventDefault: function () { var e = this.originalEvent; this.isDefaultPrevented = we, e && !this.isSimulated && e.preventDefault() }, stopPropagation: function () { var e = this.originalEvent; this.isPropagationStopped = we, e && !this.isSimulated && e.stopPropagation() }, stopImmediatePropagation: function () { var e = this.originalEvent; this.isImmediatePropagationStopped = we, e && !this.isSimulated && e.stopImmediatePropagation(), this.stopPropagation() } }, S.each({ altKey: !0, bubbles: !0, cancelable: !0, changedTouches: !0, ctrlKey: !0, detail: !0, eventPhase: !0, metaKey: !0, pageX: !0, pageY: !0, shiftKey: !0, view: !0, "char": !0, code: !0, charCode: !0, key: !0, keyCode: !0, button: !0, buttons: !0, clientX: !0, clientY: !0, offsetX: !0, offsetY: !0, pointerId: !0, pointerType: !0, screenX: !0, screenY: !0, targetTouches: !0, toElement: !0, touches: !0, which: !0 }, S.event.addProp), S.each({ focus: "focusin", blur: "focusout" }, function (e, t) { S.event.special[e] = { setup: function () { return Se(this, e, Ce), !1 }, trigger: function () { return Se(this, e), !0 }, _default: function () { return !0 }, delegateType: t } }), S.each({ mouseenter: "mouseover", mouseleave: "mouseout", pointerenter: "pointerover", pointerleave: "pointerout" }, function (e, i) { S.event.special[e] = { delegateType: i, bindType: i, handle: function (e) { var t, n = e.relatedTarget, r = e.handleObj; return n && (n === this || S.contains(this, n)) || (e.type = r.origType, t = r.handler.apply(this, arguments), e.type = i), t } } }), S.fn.extend({ on: function (e, t, n, r) { return Ee(this, e, t, n, r) }, one: function (e, t, n, r) { return Ee(this, e, t, n, r, 1) }, off: function (e, t, n) { var r, i; if (e && e.preventDefault && e.handleObj) return r = e.handleObj, S(e.delegateTarget).off(r.namespace ? r.origType + "." + r.namespace : r.origType, r.selector, r.handler), this; if ("object" == typeof e) { for (i in e) this.off(i, t, e[i]); return this } return !1 !== t && "function" != typeof t || (n = t, t = void 0), !1 === n && (n = Te), this.each(function () { S.event.remove(this, e, n, t) }) } }); var ke = /\s*$/g; function je(e, t) { return A(e, "table") && A(11 !== t.nodeType ? t : t.firstChild, "tr") && S(e).children("tbody")[0] || e } function De(e) { return e.type = (null !== e.getAttribute("type")) + "/" + e.type, e } function qe(e) { return "true/" === (e.type || "").slice(0, 5) ? e.type = e.type.slice(5) : e.removeAttribute("type"), e } function Le(e, t) { var n, r, i, o, a, s; if (1 === t.nodeType) { if (Y.hasData(e) && (s = Y.get(e).events)) for (i in Y.remove(t, "handle events"), s) for (n = 0, r = s[i].length; n < r; n++)S.event.add(t, i, s[i][n]); Q.hasData(e) && (o = Q.access(e), a = S.extend({}, o), Q.set(t, a)) } } function He(n, r, i, o) { r = g(r); var e, t, a, s, u, l, c = 0, f = n.length, p = f - 1, d = r[0], h = m(d); if (h || 1 < f && "string" == typeof d && !y.checkClone && Ae.test(d)) return n.each(function (e) { var t = n.eq(e); h && (r[0] = d.call(this, e, t.html())), He(t, r, i, o) }); if (f && (t = (e = xe(r, n[0].ownerDocument, !1, n, o)).firstChild, 1 === e.childNodes.length && (e = t), t || o)) { for (s = (a = S.map(ve(e, "script"), De)).length; c < f; c++)u = e, c !== p && (u = S.clone(u, !0, !0), s && S.merge(a, ve(u, "script"))), i.call(n[c], u, c); if (s) for (l = a[a.length - 1].ownerDocument, S.map(a, qe), c = 0; c < s; c++)u = a[c], he.test(u.type || "") && !Y.access(u, "globalEval") && S.contains(l, u) && (u.src && "module" !== (u.type || "").toLowerCase() ? S._evalUrl && !u.noModule && S._evalUrl(u.src, { nonce: u.nonce || u.getAttribute("nonce") }, l) : b(u.textContent.replace(Ne, ""), u, l)) } return n } function Oe(e, t, n) { for (var r, i = t ? S.filter(t, e) : e, o = 0; null != (r = i[o]); o++)n || 1 !== r.nodeType || S.cleanData(ve(r)), r.parentNode && (n && ie(r) && ye(ve(r, "script")), r.parentNode.removeChild(r)); return e } S.extend({ htmlPrefilter: function (e) { return e }, clone: function (e, t, n) { var r, i, o, a, s, u, l, c = e.cloneNode(!0), f = ie(e); if (!(y.noCloneChecked || 1 !== e.nodeType && 11 !== e.nodeType || S.isXMLDoc(e))) for (a = ve(c), r = 0, i = (o = ve(e)).length; r < i; r++)s = o[r], u = a[r], void 0, "input" === (l = u.nodeName.toLowerCase()) && pe.test(s.type) ? u.checked = s.checked : "input" !== l && "textarea" !== l || (u.defaultValue = s.defaultValue); if (t) if (n) for (o = o || ve(e), a = a || ve(c), r = 0, i = o.length; r < i; r++)Le(o[r], a[r]); else Le(e, c); return 0 < (a = ve(c, "script")).length && ye(a, !f && ve(e, "script")), c }, cleanData: function (e) { for (var t, n, r, i = S.event.special, o = 0; void 0 !== (n = e[o]); o++)if (V(n)) { if (t = n[Y.expando]) { if (t.events) for (r in t.events) i[r] ? S.event.remove(n, r) : S.removeEvent(n, r, t.handle); n[Y.expando] = void 0 } n[Q.expando] && (n[Q.expando] = void 0) } } }), S.fn.extend({ detach: function (e) { return Oe(this, e, !0) }, remove: function (e) { return Oe(this, e) }, text: function (e) { return $(this, function (e) { return void 0 === e ? S.text(this) : this.empty().each(function () { 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || (this.textContent = e) }) }, null, e, arguments.length) }, append: function () { return He(this, arguments, function (e) { 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || je(this, e).appendChild(e) }) }, prepend: function () { return He(this, arguments, function (e) { if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) { var t = je(this, e); t.insertBefore(e, t.firstChild) } }) }, before: function () { return He(this, arguments, function (e) { this.parentNode && this.parentNode.insertBefore(e, this) }) }, after: function () { return He(this, arguments, function (e) { this.parentNode && this.parentNode.insertBefore(e, this.nextSibling) }) }, empty: function () { for (var e, t = 0; null != (e = this[t]); t++)1 === e.nodeType && (S.cleanData(ve(e, !1)), e.textContent = ""); return this }, clone: function (e, t) { return e = null != e && e, t = null == t ? e : t, this.map(function () { return S.clone(this, e, t) }) }, html: function (e) { return $(this, function (e) { var t = this[0] || {}, n = 0, r = this.length; if (void 0 === e && 1 === t.nodeType) return t.innerHTML; if ("string" == typeof e && !ke.test(e) && !ge[(de.exec(e) || ["", ""])[1].toLowerCase()]) { e = S.htmlPrefilter(e); try { for (; n < r; n++)1 === (t = this[n] || {}).nodeType && (S.cleanData(ve(t, !1)), t.innerHTML = e); t = 0 } catch (e) { } } t && this.empty().append(e) }, null, e, arguments.length) }, replaceWith: function () { var n = []; return He(this, arguments, function (e) { var t = this.parentNode; S.inArray(this, n) < 0 && (S.cleanData(ve(this)), t && t.replaceChild(e, this)) }, n) } }), S.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function (e, a) { S.fn[e] = function (e) { for (var t, n = [], r = S(e), i = r.length - 1, o = 0; o <= i; o++)t = o === i ? this : this.clone(!0), S(r[o])[a](t), u.apply(n, t.get()); return this.pushStack(n) } }); var Pe = new RegExp("^(" + ee + ")(?!px)[a-z%]+$", "i"), Re = function (e) { var t = e.ownerDocument.defaultView; return t && t.opener || (t = C), t.getComputedStyle(e) }, Me = function (e, t, n) { var r, i, o = {}; for (i in t) o[i] = e.style[i], e.style[i] = t[i]; for (i in r = n.call(e), t) e.style[i] = o[i]; return r }, Ie = new RegExp(ne.join("|"), "i"); function We(e, t, n) { var r, i, o, a, s = e.style; return (n = n || Re(e)) && ("" !== (a = n.getPropertyValue(t) || n[t]) || ie(e) || (a = S.style(e, t)), !y.pixelBoxStyles() && Pe.test(a) && Ie.test(t) && (r = s.width, i = s.minWidth, o = s.maxWidth, s.minWidth = s.maxWidth = s.width = a, a = n.width, s.width = r, s.minWidth = i, s.maxWidth = o)), void 0 !== a ? a + "" : a } function Fe(e, t) { return { get: function () { if (!e()) return (this.get = t).apply(this, arguments); delete this.get } } } !function () { function e() { if (l) { u.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", l.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", re.appendChild(u).appendChild(l); var e = C.getComputedStyle(l); n = "1%" !== e.top, s = 12 === t(e.marginLeft), l.style.right = "60%", o = 36 === t(e.right), r = 36 === t(e.width), l.style.position = "absolute", i = 12 === t(l.offsetWidth / 3), re.removeChild(u), l = null } } function t(e) { return Math.round(parseFloat(e)) } var n, r, i, o, a, s, u = E.createElement("div"), l = E.createElement("div"); l.style && (l.style.backgroundClip = "content-box", l.cloneNode(!0).style.backgroundClip = "", y.clearCloneStyle = "content-box" === l.style.backgroundClip, S.extend(y, { boxSizingReliable: function () { return e(), r }, pixelBoxStyles: function () { return e(), o }, pixelPosition: function () { return e(), n }, reliableMarginLeft: function () { return e(), s }, scrollboxSize: function () { return e(), i }, reliableTrDimensions: function () { var e, t, n, r; return null == a && (e = E.createElement("table"), t = E.createElement("tr"), n = E.createElement("div"), e.style.cssText = "position:absolute;left:-11111px;border-collapse:separate", t.style.cssText = "border:1px solid", t.style.height = "1px", n.style.height = "9px", n.style.display = "block", re.appendChild(e).appendChild(t).appendChild(n), r = C.getComputedStyle(t), a = parseInt(r.height, 10) + parseInt(r.borderTopWidth, 10) + parseInt(r.borderBottomWidth, 10) === t.offsetHeight, re.removeChild(e)), a } })) }(); var Be = ["Webkit", "Moz", "ms"], $e = E.createElement("div").style, _e = {}; function ze(e) { var t = S.cssProps[e] || _e[e]; return t || (e in $e ? e : _e[e] = function (e) { var t = e[0].toUpperCase() + e.slice(1), n = Be.length; while (n--) if ((e = Be[n] + t) in $e) return e }(e) || e) } var Ue = /^(none|table(?!-c[ea]).+)/, Xe = /^--/, Ve = { position: "absolute", visibility: "hidden", display: "block" }, Ge = { letterSpacing: "0", fontWeight: "400" }; function Ye(e, t, n) { var r = te.exec(t); return r ? Math.max(0, r[2] - (n || 0)) + (r[3] || "px") : t } function Qe(e, t, n, r, i, o) { var a = "width" === t ? 1 : 0, s = 0, u = 0; if (n === (r ? "border" : "content")) return 0; for (; a < 4; a += 2)"margin" === n && (u += S.css(e, n + ne[a], !0, i)), r ? ("content" === n && (u -= S.css(e, "padding" + ne[a], !0, i)), "margin" !== n && (u -= S.css(e, "border" + ne[a] + "Width", !0, i))) : (u += S.css(e, "padding" + ne[a], !0, i), "padding" !== n ? u += S.css(e, "border" + ne[a] + "Width", !0, i) : s += S.css(e, "border" + ne[a] + "Width", !0, i)); return !r && 0 <= o && (u += Math.max(0, Math.ceil(e["offset" + t[0].toUpperCase() + t.slice(1)] - o - u - s - .5)) || 0), u } function Je(e, t, n) { var r = Re(e), i = (!y.boxSizingReliable() || n) && "border-box" === S.css(e, "boxSizing", !1, r), o = i, a = We(e, t, r), s = "offset" + t[0].toUpperCase() + t.slice(1); if (Pe.test(a)) { if (!n) return a; a = "auto" } return (!y.boxSizingReliable() && i || !y.reliableTrDimensions() && A(e, "tr") || "auto" === a || !parseFloat(a) && "inline" === S.css(e, "display", !1, r)) && e.getClientRects().length && (i = "border-box" === S.css(e, "boxSizing", !1, r), (o = s in e) && (a = e[s])), (a = parseFloat(a) || 0) + Qe(e, t, n || (i ? "border" : "content"), o, r, a) + "px" } function Ke(e, t, n, r, i) { return new Ke.prototype.init(e, t, n, r, i) } S.extend({ cssHooks: { opacity: { get: function (e, t) { if (t) { var n = We(e, "opacity"); return "" === n ? "1" : n } } } }, cssNumber: { animationIterationCount: !0, columnCount: !0, fillOpacity: !0, flexGrow: !0, flexShrink: !0, fontWeight: !0, gridArea: !0, gridColumn: !0, gridColumnEnd: !0, gridColumnStart: !0, gridRow: !0, gridRowEnd: !0, gridRowStart: !0, lineHeight: !0, opacity: !0, order: !0, orphans: !0, widows: !0, zIndex: !0, zoom: !0 }, cssProps: {}, style: function (e, t, n, r) { if (e && 3 !== e.nodeType && 8 !== e.nodeType && e.style) { var i, o, a, s = X(t), u = Xe.test(t), l = e.style; if (u || (t = ze(s)), a = S.cssHooks[t] || S.cssHooks[s], void 0 === n) return a && "get" in a && void 0 !== (i = a.get(e, !1, r)) ? i : l[t]; "string" === (o = typeof n) && (i = te.exec(n)) && i[1] && (n = se(e, t, i), o = "number"), null != n && n == n && ("number" !== o || u || (n += i && i[3] || (S.cssNumber[s] ? "" : "px")), y.clearCloneStyle || "" !== n || 0 !== t.indexOf("background") || (l[t] = "inherit"), a && "set" in a && void 0 === (n = a.set(e, n, r)) || (u ? l.setProperty(t, n) : l[t] = n)) } }, css: function (e, t, n, r) { var i, o, a, s = X(t); return Xe.test(t) || (t = ze(s)), (a = S.cssHooks[t] || S.cssHooks[s]) && "get" in a && (i = a.get(e, !0, n)), void 0 === i && (i = We(e, t, r)), "normal" === i && t in Ge && (i = Ge[t]), "" === n || n ? (o = parseFloat(i), !0 === n || isFinite(o) ? o || 0 : i) : i } }), S.each(["height", "width"], function (e, u) { S.cssHooks[u] = { get: function (e, t, n) { if (t) return !Ue.test(S.css(e, "display")) || e.getClientRects().length && e.getBoundingClientRect().width ? Je(e, u, n) : Me(e, Ve, function () { return Je(e, u, n) }) }, set: function (e, t, n) { var r, i = Re(e), o = !y.scrollboxSize() && "absolute" === i.position, a = (o || n) && "border-box" === S.css(e, "boxSizing", !1, i), s = n ? Qe(e, u, n, a, i) : 0; return a && o && (s -= Math.ceil(e["offset" + u[0].toUpperCase() + u.slice(1)] - parseFloat(i[u]) - Qe(e, u, "border", !1, i) - .5)), s && (r = te.exec(t)) && "px" !== (r[3] || "px") && (e.style[u] = t, t = S.css(e, u)), Ye(0, t, s) } } }), S.cssHooks.marginLeft = Fe(y.reliableMarginLeft, function (e, t) { if (t) return (parseFloat(We(e, "marginLeft")) || e.getBoundingClientRect().left - Me(e, { marginLeft: 0 }, function () { return e.getBoundingClientRect().left })) + "px" }), S.each({ margin: "", padding: "", border: "Width" }, function (i, o) { S.cssHooks[i + o] = { expand: function (e) { for (var t = 0, n = {}, r = "string" == typeof e ? e.split(" ") : [e]; t < 4; t++)n[i + ne[t] + o] = r[t] || r[t - 2] || r[0]; return n } }, "margin" !== i && (S.cssHooks[i + o].set = Ye) }), S.fn.extend({ css: function (e, t) { return $(this, function (e, t, n) { var r, i, o = {}, a = 0; if (Array.isArray(t)) { for (r = Re(e), i = t.length; a < i; a++)o[t[a]] = S.css(e, t[a], !1, r); return o } return void 0 !== n ? S.style(e, t, n) : S.css(e, t) }, e, t, 1 < arguments.length) } }), ((S.Tween = Ke).prototype = { constructor: Ke, init: function (e, t, n, r, i, o) { this.elem = e, this.prop = n, this.easing = i || S.easing._default, this.options = t, this.start = this.now = this.cur(), this.end = r, this.unit = o || (S.cssNumber[n] ? "" : "px") }, cur: function () { var e = Ke.propHooks[this.prop]; return e && e.get ? e.get(this) : Ke.propHooks._default.get(this) }, run: function (e) { var t, n = Ke.propHooks[this.prop]; return this.options.duration ? this.pos = t = S.easing[this.easing](e, this.options.duration * e, 0, 1, this.options.duration) : this.pos = t = e, this.now = (this.end - this.start) * t + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), n && n.set ? n.set(this) : Ke.propHooks._default.set(this), this } }).init.prototype = Ke.prototype, (Ke.propHooks = { _default: { get: function (e) { var t; return 1 !== e.elem.nodeType || null != e.elem[e.prop] && null == e.elem.style[e.prop] ? e.elem[e.prop] : (t = S.css(e.elem, e.prop, "")) && "auto" !== t ? t : 0 }, set: function (e) { S.fx.step[e.prop] ? S.fx.step[e.prop](e) : 1 !== e.elem.nodeType || !S.cssHooks[e.prop] && null == e.elem.style[ze(e.prop)] ? e.elem[e.prop] = e.now : S.style(e.elem, e.prop, e.now + e.unit) } } }).scrollTop = Ke.propHooks.scrollLeft = { set: function (e) { e.elem.nodeType && e.elem.parentNode && (e.elem[e.prop] = e.now) } }, S.easing = { linear: function (e) { return e }, swing: function (e) { return .5 - Math.cos(e * Math.PI) / 2 }, _default: "swing" }, S.fx = Ke.prototype.init, S.fx.step = {}; var Ze, et, tt, nt, rt = /^(?:toggle|show|hide)$/, it = /queueHooks$/; function ot() { et && (!1 === E.hidden && C.requestAnimationFrame ? C.requestAnimationFrame(ot) : C.setTimeout(ot, S.fx.interval), S.fx.tick()) } function at() { return C.setTimeout(function () { Ze = void 0 }), Ze = Date.now() } function st(e, t) { var n, r = 0, i = { height: e }; for (t = t ? 1 : 0; r < 4; r += 2 - t)i["margin" + (n = ne[r])] = i["padding" + n] = e; return t && (i.opacity = i.width = e), i } function ut(e, t, n) { for (var r, i = (lt.tweeners[t] || []).concat(lt.tweeners["*"]), o = 0, a = i.length; o < a; o++)if (r = i[o].call(n, t, e)) return r } function lt(o, e, t) { var n, a, r = 0, i = lt.prefilters.length, s = S.Deferred().always(function () { delete u.elem }), u = function () { if (a) return !1; for (var e = Ze || at(), t = Math.max(0, l.startTime + l.duration - e), n = 1 - (t / l.duration || 0), r = 0, i = l.tweens.length; r < i; r++)l.tweens[r].run(n); return s.notifyWith(o, [l, n, t]), n < 1 && i ? t : (i || s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l]), !1) }, l = s.promise({ elem: o, props: S.extend({}, e), opts: S.extend(!0, { specialEasing: {}, easing: S.easing._default }, t), originalProperties: e, originalOptions: t, startTime: Ze || at(), duration: t.duration, tweens: [], createTween: function (e, t) { var n = S.Tween(o, l.opts, e, t, l.opts.specialEasing[e] || l.opts.easing); return l.tweens.push(n), n }, stop: function (e) { var t = 0, n = e ? l.tweens.length : 0; if (a) return this; for (a = !0; t < n; t++)l.tweens[t].run(1); return e ? (s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l, e])) : s.rejectWith(o, [l, e]), this } }), c = l.props; for (!function (e, t) { var n, r, i, o, a; for (n in e) if (i = t[r = X(n)], o = e[n], Array.isArray(o) && (i = o[1], o = e[n] = o[0]), n !== r && (e[r] = o, delete e[n]), (a = S.cssHooks[r]) && "expand" in a) for (n in o = a.expand(o), delete e[r], o) n in e || (e[n] = o[n], t[n] = i); else t[r] = i }(c, l.opts.specialEasing); r < i; r++)if (n = lt.prefilters[r].call(l, o, c, l.opts)) return m(n.stop) && (S._queueHooks(l.elem, l.opts.queue).stop = n.stop.bind(n)), n; return S.map(c, ut, l), m(l.opts.start) && l.opts.start.call(o, l), l.progress(l.opts.progress).done(l.opts.done, l.opts.complete).fail(l.opts.fail).always(l.opts.always), S.fx.timer(S.extend(u, { elem: o, anim: l, queue: l.opts.queue })), l } S.Animation = S.extend(lt, { tweeners: { "*": [function (e, t) { var n = this.createTween(e, t); return se(n.elem, e, te.exec(t), n), n }] }, tweener: function (e, t) { m(e) ? (t = e, e = ["*"]) : e = e.match(P); for (var n, r = 0, i = e.length; r < i; r++)n = e[r], lt.tweeners[n] = lt.tweeners[n] || [], lt.tweeners[n].unshift(t) }, prefilters: [function (e, t, n) { var r, i, o, a, s, u, l, c, f = "width" in t || "height" in t, p = this, d = {}, h = e.style, g = e.nodeType && ae(e), v = Y.get(e, "fxshow"); for (r in n.queue || (null == (a = S._queueHooks(e, "fx")).unqueued && (a.unqueued = 0, s = a.empty.fire, a.empty.fire = function () { a.unqueued || s() }), a.unqueued++, p.always(function () { p.always(function () { a.unqueued--, S.queue(e, "fx").length || a.empty.fire() }) })), t) if (i = t[r], rt.test(i)) { if (delete t[r], o = o || "toggle" === i, i === (g ? "hide" : "show")) { if ("show" !== i || !v || void 0 === v[r]) continue; g = !0 } d[r] = v && v[r] || S.style(e, r) } if ((u = !S.isEmptyObject(t)) || !S.isEmptyObject(d)) for (r in f && 1 === e.nodeType && (n.overflow = [h.overflow, h.overflowX, h.overflowY], null == (l = v && v.display) && (l = Y.get(e, "display")), "none" === (c = S.css(e, "display")) && (l ? c = l : (le([e], !0), l = e.style.display || l, c = S.css(e, "display"), le([e]))), ("inline" === c || "inline-block" === c && null != l) && "none" === S.css(e, "float") && (u || (p.done(function () { h.display = l }), null == l && (c = h.display, l = "none" === c ? "" : c)), h.display = "inline-block")), n.overflow && (h.overflow = "hidden", p.always(function () { h.overflow = n.overflow[0], h.overflowX = n.overflow[1], h.overflowY = n.overflow[2] })), u = !1, d) u || (v ? "hidden" in v && (g = v.hidden) : v = Y.access(e, "fxshow", { display: l }), o && (v.hidden = !g), g && le([e], !0), p.done(function () { for (r in g || le([e]), Y.remove(e, "fxshow"), d) S.style(e, r, d[r]) })), u = ut(g ? v[r] : 0, r, p), r in v || (v[r] = u.start, g && (u.end = u.start, u.start = 0)) }], prefilter: function (e, t) { t ? lt.prefilters.unshift(e) : lt.prefilters.push(e) } }), S.speed = function (e, t, n) { var r = e && "object" == typeof e ? S.extend({}, e) : { complete: n || !n && t || m(e) && e, duration: e, easing: n && t || t && !m(t) && t }; return S.fx.off ? r.duration = 0 : "number" != typeof r.duration && (r.duration in S.fx.speeds ? r.duration = S.fx.speeds[r.duration] : r.duration = S.fx.speeds._default), null != r.queue && !0 !== r.queue || (r.queue = "fx"), r.old = r.complete, r.complete = function () { m(r.old) && r.old.call(this), r.queue && S.dequeue(this, r.queue) }, r }, S.fn.extend({ fadeTo: function (e, t, n, r) { return this.filter(ae).css("opacity", 0).show().end().animate({ opacity: t }, e, n, r) }, animate: function (t, e, n, r) { var i = S.isEmptyObject(t), o = S.speed(e, n, r), a = function () { var e = lt(this, S.extend({}, t), o); (i || Y.get(this, "finish")) && e.stop(!0) }; return a.finish = a, i || !1 === o.queue ? this.each(a) : this.queue(o.queue, a) }, stop: function (i, e, o) { var a = function (e) { var t = e.stop; delete e.stop, t(o) }; return "string" != typeof i && (o = e, e = i, i = void 0), e && this.queue(i || "fx", []), this.each(function () { var e = !0, t = null != i && i + "queueHooks", n = S.timers, r = Y.get(this); if (t) r[t] && r[t].stop && a(r[t]); else for (t in r) r[t] && r[t].stop && it.test(t) && a(r[t]); for (t = n.length; t--;)n[t].elem !== this || null != i && n[t].queue !== i || (n[t].anim.stop(o), e = !1, n.splice(t, 1)); !e && o || S.dequeue(this, i) }) }, finish: function (a) { return !1 !== a && (a = a || "fx"), this.each(function () { var e, t = Y.get(this), n = t[a + "queue"], r = t[a + "queueHooks"], i = S.timers, o = n ? n.length : 0; for (t.finish = !0, S.queue(this, a, []), r && r.stop && r.stop.call(this, !0), e = i.length; e--;)i[e].elem === this && i[e].queue === a && (i[e].anim.stop(!0), i.splice(e, 1)); for (e = 0; e < o; e++)n[e] && n[e].finish && n[e].finish.call(this); delete t.finish }) } }), S.each(["toggle", "show", "hide"], function (e, r) { var i = S.fn[r]; S.fn[r] = function (e, t, n) { return null == e || "boolean" == typeof e ? i.apply(this, arguments) : this.animate(st(r, !0), e, t, n) } }), S.each({ slideDown: st("show"), slideUp: st("hide"), slideToggle: st("toggle"), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function (e, r) { S.fn[e] = function (e, t, n) { return this.animate(r, e, t, n) } }), S.timers = [], S.fx.tick = function () { var e, t = 0, n = S.timers; for (Ze = Date.now(); t < n.length; t++)(e = n[t])() || n[t] !== e || n.splice(t--, 1); n.length || S.fx.stop(), Ze = void 0 }, S.fx.timer = function (e) { S.timers.push(e), S.fx.start() }, S.fx.interval = 13, S.fx.start = function () { et || (et = !0, ot()) }, S.fx.stop = function () { et = null }, S.fx.speeds = { slow: 600, fast: 200, _default: 400 }, S.fn.delay = function (r, e) { return r = S.fx && S.fx.speeds[r] || r, e = e || "fx", this.queue(e, function (e, t) { var n = C.setTimeout(e, r); t.stop = function () { C.clearTimeout(n) } }) }, tt = E.createElement("input"), nt = E.createElement("select").appendChild(E.createElement("option")), tt.type = "checkbox", y.checkOn = "" !== tt.value, y.optSelected = nt.selected, (tt = E.createElement("input")).value = "t", tt.type = "radio", y.radioValue = "t" === tt.value; var ct, ft = S.expr.attrHandle; S.fn.extend({ attr: function (e, t) { return $(this, S.attr, e, t, 1 < arguments.length) }, removeAttr: function (e) { return this.each(function () { S.removeAttr(this, e) }) } }), S.extend({ attr: function (e, t, n) { var r, i, o = e.nodeType; if (3 !== o && 8 !== o && 2 !== o) return "undefined" == typeof e.getAttribute ? S.prop(e, t, n) : (1 === o && S.isXMLDoc(e) || (i = S.attrHooks[t.toLowerCase()] || (S.expr.match.bool.test(t) ? ct : void 0)), void 0 !== n ? null === n ? void S.removeAttr(e, t) : i && "set" in i && void 0 !== (r = i.set(e, n, t)) ? r : (e.setAttribute(t, n + ""), n) : i && "get" in i && null !== (r = i.get(e, t)) ? r : null == (r = S.find.attr(e, t)) ? void 0 : r) }, attrHooks: { type: { set: function (e, t) { if (!y.radioValue && "radio" === t && A(e, "input")) { var n = e.value; return e.setAttribute("type", t), n && (e.value = n), t } } } }, removeAttr: function (e, t) { var n, r = 0, i = t && t.match(P); if (i && 1 === e.nodeType) while (n = i[r++]) e.removeAttribute(n) } }), ct = { set: function (e, t, n) { return !1 === t ? S.removeAttr(e, n) : e.setAttribute(n, n), n } }, S.each(S.expr.match.bool.source.match(/\w+/g), function (e, t) { var a = ft[t] || S.find.attr; ft[t] = function (e, t, n) { var r, i, o = t.toLowerCase(); return n || (i = ft[o], ft[o] = r, r = null != a(e, t, n) ? o : null, ft[o] = i), r } }); var pt = /^(?:input|select|textarea|button)$/i, dt = /^(?:a|area)$/i; function ht(e) { return (e.match(P) || []).join(" ") } function gt(e) { return e.getAttribute && e.getAttribute("class") || "" } function vt(e) { return Array.isArray(e) ? e : "string" == typeof e && e.match(P) || [] } S.fn.extend({ prop: function (e, t) { return $(this, S.prop, e, t, 1 < arguments.length) }, removeProp: function (e) { return this.each(function () { delete this[S.propFix[e] || e] }) } }), S.extend({ prop: function (e, t, n) { var r, i, o = e.nodeType; if (3 !== o && 8 !== o && 2 !== o) return 1 === o && S.isXMLDoc(e) || (t = S.propFix[t] || t, i = S.propHooks[t]), void 0 !== n ? i && "set" in i && void 0 !== (r = i.set(e, n, t)) ? r : e[t] = n : i && "get" in i && null !== (r = i.get(e, t)) ? r : e[t] }, propHooks: { tabIndex: { get: function (e) { var t = S.find.attr(e, "tabindex"); return t ? parseInt(t, 10) : pt.test(e.nodeName) || dt.test(e.nodeName) && e.href ? 0 : -1 } } }, propFix: { "for": "htmlFor", "class": "className" } }), y.optSelected || (S.propHooks.selected = { get: function (e) { var t = e.parentNode; return t && t.parentNode && t.parentNode.selectedIndex, null }, set: function (e) { var t = e.parentNode; t && (t.selectedIndex, t.parentNode && t.parentNode.selectedIndex) } }), S.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function () { S.propFix[this.toLowerCase()] = this }), S.fn.extend({ addClass: function (t) { var e, n, r, i, o, a, s, u = 0; if (m(t)) return this.each(function (e) { S(this).addClass(t.call(this, e, gt(this))) }); if ((e = vt(t)).length) while (n = this[u++]) if (i = gt(n), r = 1 === n.nodeType && " " + ht(i) + " ") { a = 0; while (o = e[a++]) r.indexOf(" " + o + " ") < 0 && (r += o + " "); i !== (s = ht(r)) && n.setAttribute("class", s) } return this }, removeClass: function (t) { var e, n, r, i, o, a, s, u = 0; if (m(t)) return this.each(function (e) { S(this).removeClass(t.call(this, e, gt(this))) }); if (!arguments.length) return this.attr("class", ""); if ((e = vt(t)).length) while (n = this[u++]) if (i = gt(n), r = 1 === n.nodeType && " " + ht(i) + " ") { a = 0; while (o = e[a++]) while (-1 < r.indexOf(" " + o + " ")) r = r.replace(" " + o + " ", " "); i !== (s = ht(r)) && n.setAttribute("class", s) } return this }, toggleClass: function (i, t) { var o = typeof i, a = "string" === o || Array.isArray(i); return "boolean" == typeof t && a ? t ? this.addClass(i) : this.removeClass(i) : m(i) ? this.each(function (e) { S(this).toggleClass(i.call(this, e, gt(this), t), t) }) : this.each(function () { var e, t, n, r; if (a) { t = 0, n = S(this), r = vt(i); while (e = r[t++]) n.hasClass(e) ? n.removeClass(e) : n.addClass(e) } else void 0 !== i && "boolean" !== o || ((e = gt(this)) && Y.set(this, "__className__", e), this.setAttribute && this.setAttribute("class", e || !1 === i ? "" : Y.get(this, "__className__") || "")) }) }, hasClass: function (e) { var t, n, r = 0; t = " " + e + " "; while (n = this[r++]) if (1 === n.nodeType && -1 < (" " + ht(gt(n)) + " ").indexOf(t)) return !0; return !1 } }); var yt = /\r/g; S.fn.extend({ val: function (n) { var r, e, i, t = this[0]; return arguments.length ? (i = m(n), this.each(function (e) { var t; 1 === this.nodeType && (null == (t = i ? n.call(this, e, S(this).val()) : n) ? t = "" : "number" == typeof t ? t += "" : Array.isArray(t) && (t = S.map(t, function (e) { return null == e ? "" : e + "" })), (r = S.valHooks[this.type] || S.valHooks[this.nodeName.toLowerCase()]) && "set" in r && void 0 !== r.set(this, t, "value") || (this.value = t)) })) : t ? (r = S.valHooks[t.type] || S.valHooks[t.nodeName.toLowerCase()]) && "get" in r && void 0 !== (e = r.get(t, "value")) ? e : "string" == typeof (e = t.value) ? e.replace(yt, "") : null == e ? "" : e : void 0 } }), S.extend({ valHooks: { option: { get: function (e) { var t = S.find.attr(e, "value"); return null != t ? t : ht(S.text(e)) } }, select: { get: function (e) { var t, n, r, i = e.options, o = e.selectedIndex, a = "select-one" === e.type, s = a ? null : [], u = a ? o + 1 : i.length; for (r = o < 0 ? u : a ? o : 0; r < u; r++)if (((n = i[r]).selected || r === o) && !n.disabled && (!n.parentNode.disabled || !A(n.parentNode, "optgroup"))) { if (t = S(n).val(), a) return t; s.push(t) } return s }, set: function (e, t) { var n, r, i = e.options, o = S.makeArray(t), a = i.length; while (a--) ((r = i[a]).selected = -1 < S.inArray(S.valHooks.option.get(r), o)) && (n = !0); return n || (e.selectedIndex = -1), o } } } }), S.each(["radio", "checkbox"], function () { S.valHooks[this] = { set: function (e, t) { if (Array.isArray(t)) return e.checked = -1 < S.inArray(S(e).val(), t) } }, y.checkOn || (S.valHooks[this].get = function (e) { return null === e.getAttribute("value") ? "on" : e.value }) }), y.focusin = "onfocusin" in C; var mt = /^(?:focusinfocus|focusoutblur)$/, xt = function (e) { e.stopPropagation() }; S.extend(S.event, { trigger: function (e, t, n, r) { var i, o, a, s, u, l, c, f, p = [n || E], d = v.call(e, "type") ? e.type : e, h = v.call(e, "namespace") ? e.namespace.split(".") : []; if (o = f = a = n = n || E, 3 !== n.nodeType && 8 !== n.nodeType && !mt.test(d + S.event.triggered) && (-1 < d.indexOf(".") && (d = (h = d.split(".")).shift(), h.sort()), u = d.indexOf(":") < 0 && "on" + d, (e = e[S.expando] ? e : new S.Event(d, "object" == typeof e && e)).isTrigger = r ? 2 : 3, e.namespace = h.join("."), e.rnamespace = e.namespace ? new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, e.result = void 0, e.target || (e.target = n), t = null == t ? [e] : S.makeArray(t, [e]), c = S.event.special[d] || {}, r || !c.trigger || !1 !== c.trigger.apply(n, t))) { if (!r && !c.noBubble && !x(n)) { for (s = c.delegateType || d, mt.test(s + d) || (o = o.parentNode); o; o = o.parentNode)p.push(o), a = o; a === (n.ownerDocument || E) && p.push(a.defaultView || a.parentWindow || C) } i = 0; while ((o = p[i++]) && !e.isPropagationStopped()) f = o, e.type = 1 < i ? s : c.bindType || d, (l = (Y.get(o, "events") || Object.create(null))[e.type] && Y.get(o, "handle")) && l.apply(o, t), (l = u && o[u]) && l.apply && V(o) && (e.result = l.apply(o, t), !1 === e.result && e.preventDefault()); return e.type = d, r || e.isDefaultPrevented() || c._default && !1 !== c._default.apply(p.pop(), t) || !V(n) || u && m(n[d]) && !x(n) && ((a = n[u]) && (n[u] = null), S.event.triggered = d, e.isPropagationStopped() && f.addEventListener(d, xt), n[d](), e.isPropagationStopped() && f.removeEventListener(d, xt), S.event.triggered = void 0, a && (n[u] = a)), e.result } }, simulate: function (e, t, n) { var r = S.extend(new S.Event, n, { type: e, isSimulated: !0 }); S.event.trigger(r, null, t) } }), S.fn.extend({ trigger: function (e, t) { return this.each(function () { S.event.trigger(e, t, this) }) }, triggerHandler: function (e, t) { var n = this[0]; if (n) return S.event.trigger(e, t, n, !0) } }), y.focusin || S.each({ focus: "focusin", blur: "focusout" }, function (n, r) { var i = function (e) { S.event.simulate(r, e.target, S.event.fix(e)) }; S.event.special[r] = { setup: function () { var e = this.ownerDocument || this.document || this, t = Y.access(e, r); t || e.addEventListener(n, i, !0), Y.access(e, r, (t || 0) + 1) }, teardown: function () { var e = this.ownerDocument || this.document || this, t = Y.access(e, r) - 1; t ? Y.access(e, r, t) : (e.removeEventListener(n, i, !0), Y.remove(e, r)) } } }); var bt = C.location, wt = { guid: Date.now() }, Tt = /\?/; S.parseXML = function (e) { var t, n; if (!e || "string" != typeof e) return null; try { t = (new C.DOMParser).parseFromString(e, "text/xml") } catch (e) { } return n = t && t.getElementsByTagName("parsererror")[0], t && !n || S.error("Invalid XML: " + (n ? S.map(n.childNodes, function (e) { return e.textContent }).join("\n") : e)), t }; var Ct = /\[\]$/, Et = /\r?\n/g, St = /^(?:submit|button|image|reset|file)$/i, kt = /^(?:input|select|textarea|keygen)/i; function At(n, e, r, i) { var t; if (Array.isArray(e)) S.each(e, function (e, t) { r || Ct.test(n) ? i(n, t) : At(n + "[" + ("object" == typeof t && null != t ? e : "") + "]", t, r, i) }); else if (r || "object" !== w(e)) i(n, e); else for (t in e) At(n + "[" + t + "]", e[t], r, i) } S.param = function (e, t) { var n, r = [], i = function (e, t) { var n = m(t) ? t() : t; r[r.length] = encodeURIComponent(e) + "=" + encodeURIComponent(null == n ? "" : n) }; if (null == e) return ""; if (Array.isArray(e) || e.jquery && !S.isPlainObject(e)) S.each(e, function () { i(this.name, this.value) }); else for (n in e) At(n, e[n], t, i); return r.join("&") }, S.fn.extend({ serialize: function () { return S.param(this.serializeArray()) }, serializeArray: function () { return this.map(function () { var e = S.prop(this, "elements"); return e ? S.makeArray(e) : this }).filter(function () { var e = this.type; return this.name && !S(this).is(":disabled") && kt.test(this.nodeName) && !St.test(e) && (this.checked || !pe.test(e)) }).map(function (e, t) { var n = S(this).val(); return null == n ? null : Array.isArray(n) ? S.map(n, function (e) { return { name: t.name, value: e.replace(Et, "\r\n") } }) : { name: t.name, value: n.replace(Et, "\r\n") } }).get() } }); var Nt = /%20/g, jt = /#.*$/, Dt = /([?&])_=[^&]*/, qt = /^(.*?):[ \t]*([^\r\n]*)$/gm, Lt = /^(?:GET|HEAD)$/, Ht = /^\/\//, Ot = {}, Pt = {}, Rt = "*/".concat("*"), Mt = E.createElement("a"); function It(o) { return function (e, t) { "string" != typeof e && (t = e, e = "*"); var n, r = 0, i = e.toLowerCase().match(P) || []; if (m(t)) while (n = i[r++]) "+" === n[0] ? (n = n.slice(1) || "*", (o[n] = o[n] || []).unshift(t)) : (o[n] = o[n] || []).push(t) } } function Wt(t, i, o, a) { var s = {}, u = t === Pt; function l(e) { var r; return s[e] = !0, S.each(t[e] || [], function (e, t) { var n = t(i, o, a); return "string" != typeof n || u || s[n] ? u ? !(r = n) : void 0 : (i.dataTypes.unshift(n), l(n), !1) }), r } return l(i.dataTypes[0]) || !s["*"] && l("*") } function Ft(e, t) { var n, r, i = S.ajaxSettings.flatOptions || {}; for (n in t) void 0 !== t[n] && ((i[n] ? e : r || (r = {}))[n] = t[n]); return r && S.extend(!0, e, r), e } Mt.href = bt.href, S.extend({ active: 0, lastModified: {}, etag: {}, ajaxSettings: { url: bt.href, type: "GET", isLocal: /^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol), global: !0, processData: !0, async: !0, contentType: "application/x-www-form-urlencoded; charset=UTF-8", accepts: { "*": Rt, text: "text/plain", html: "text/html", xml: "application/xml, text/xml", json: "application/json, text/javascript" }, contents: { xml: /\bxml\b/, html: /\bhtml/, json: /\bjson\b/ }, responseFields: { xml: "responseXML", text: "responseText", json: "responseJSON" }, converters: { "* text": String, "text html": !0, "text json": JSON.parse, "text xml": S.parseXML }, flatOptions: { url: !0, context: !0 } }, ajaxSetup: function (e, t) { return t ? Ft(Ft(e, S.ajaxSettings), t) : Ft(S.ajaxSettings, e) }, ajaxPrefilter: It(Ot), ajaxTransport: It(Pt), ajax: function (e, t) { "object" == typeof e && (t = e, e = void 0), t = t || {}; var c, f, p, n, d, r, h, g, i, o, v = S.ajaxSetup({}, t), y = v.context || v, m = v.context && (y.nodeType || y.jquery) ? S(y) : S.event, x = S.Deferred(), b = S.Callbacks("once memory"), w = v.statusCode || {}, a = {}, s = {}, u = "canceled", T = { readyState: 0, getResponseHeader: function (e) { var t; if (h) { if (!n) { n = {}; while (t = qt.exec(p)) n[t[1].toLowerCase() + " "] = (n[t[1].toLowerCase() + " "] || []).concat(t[2]) } t = n[e.toLowerCase() + " "] } return null == t ? null : t.join(", ") }, getAllResponseHeaders: function () { return h ? p : null }, setRequestHeader: function (e, t) { return null == h && (e = s[e.toLowerCase()] = s[e.toLowerCase()] || e, a[e] = t), this }, overrideMimeType: function (e) { return null == h && (v.mimeType = e), this }, statusCode: function (e) { var t; if (e) if (h) T.always(e[T.status]); else for (t in e) w[t] = [w[t], e[t]]; return this }, abort: function (e) { var t = e || u; return c && c.abort(t), l(0, t), this } }; if (x.promise(T), v.url = ((e || v.url || bt.href) + "").replace(Ht, bt.protocol + "//"), v.type = t.method || t.type || v.method || v.type, v.dataTypes = (v.dataType || "*").toLowerCase().match(P) || [""], null == v.crossDomain) { r = E.createElement("a"); try { r.href = v.url, r.href = r.href, v.crossDomain = Mt.protocol + "//" + Mt.host != r.protocol + "//" + r.host } catch (e) { v.crossDomain = !0 } } if (v.data && v.processData && "string" != typeof v.data && (v.data = S.param(v.data, v.traditional)), Wt(Ot, v, t, T), h) return T; for (i in (g = S.event && v.global) && 0 == S.active++ && S.event.trigger("ajaxStart"), v.type = v.type.toUpperCase(), v.hasContent = !Lt.test(v.type), f = v.url.replace(jt, ""), v.hasContent ? v.data && v.processData && 0 === (v.contentType || "").indexOf("application/x-www-form-urlencoded") && (v.data = v.data.replace(Nt, "+")) : (o = v.url.slice(f.length), v.data && (v.processData || "string" == typeof v.data) && (f += (Tt.test(f) ? "&" : "?") + v.data, delete v.data), !1 === v.cache && (f = f.replace(Dt, "$1"), o = (Tt.test(f) ? "&" : "?") + "_=" + wt.guid++ + o), v.url = f + o), v.ifModified && (S.lastModified[f] && T.setRequestHeader("If-Modified-Since", S.lastModified[f]), S.etag[f] && T.setRequestHeader("If-None-Match", S.etag[f])), (v.data && v.hasContent && !1 !== v.contentType || t.contentType) && T.setRequestHeader("Content-Type", v.contentType), T.setRequestHeader("Accept", v.dataTypes[0] && v.accepts[v.dataTypes[0]] ? v.accepts[v.dataTypes[0]] + ("*" !== v.dataTypes[0] ? ", " + Rt + "; q=0.01" : "") : v.accepts["*"]), v.headers) T.setRequestHeader(i, v.headers[i]); if (v.beforeSend && (!1 === v.beforeSend.call(y, T, v) || h)) return T.abort(); if (u = "abort", b.add(v.complete), T.done(v.success), T.fail(v.error), c = Wt(Pt, v, t, T)) { if (T.readyState = 1, g && m.trigger("ajaxSend", [T, v]), h) return T; v.async && 0 < v.timeout && (d = C.setTimeout(function () { T.abort("timeout") }, v.timeout)); try { h = !1, c.send(a, l) } catch (e) { if (h) throw e; l(-1, e) } } else l(-1, "No Transport"); function l(e, t, n, r) { var i, o, a, s, u, l = t; h || (h = !0, d && C.clearTimeout(d), c = void 0, p = r || "", T.readyState = 0 < e ? 4 : 0, i = 200 <= e && e < 300 || 304 === e, n && (s = function (e, t, n) { var r, i, o, a, s = e.contents, u = e.dataTypes; while ("*" === u[0]) u.shift(), void 0 === r && (r = e.mimeType || t.getResponseHeader("Content-Type")); if (r) for (i in s) if (s[i] && s[i].test(r)) { u.unshift(i); break } if (u[0] in n) o = u[0]; else { for (i in n) { if (!u[0] || e.converters[i + " " + u[0]]) { o = i; break } a || (a = i) } o = o || a } if (o) return o !== u[0] && u.unshift(o), n[o] }(v, T, n)), !i && -1 < S.inArray("script", v.dataTypes) && S.inArray("json", v.dataTypes) < 0 && (v.converters["text script"] = function () { }), s = function (e, t, n, r) { var i, o, a, s, u, l = {}, c = e.dataTypes.slice(); if (c[1]) for (a in e.converters) l[a.toLowerCase()] = e.converters[a]; o = c.shift(); while (o) if (e.responseFields[o] && (n[e.responseFields[o]] = t), !u && r && e.dataFilter && (t = e.dataFilter(t, e.dataType)), u = o, o = c.shift()) if ("*" === o) o = u; else if ("*" !== u && u !== o) { if (!(a = l[u + " " + o] || l["* " + o])) for (i in l) if ((s = i.split(" "))[1] === o && (a = l[u + " " + s[0]] || l["* " + s[0]])) { !0 === a ? a = l[i] : !0 !== l[i] && (o = s[0], c.unshift(s[1])); break } if (!0 !== a) if (a && e["throws"]) t = a(t); else try { t = a(t) } catch (e) { return { state: "parsererror", error: a ? e : "No conversion from " + u + " to " + o } } } return { state: "success", data: t } }(v, s, T, i), i ? (v.ifModified && ((u = T.getResponseHeader("Last-Modified")) && (S.lastModified[f] = u), (u = T.getResponseHeader("etag")) && (S.etag[f] = u)), 204 === e || "HEAD" === v.type ? l = "nocontent" : 304 === e ? l = "notmodified" : (l = s.state, o = s.data, i = !(a = s.error))) : (a = l, !e && l || (l = "error", e < 0 && (e = 0))), T.status = e, T.statusText = (t || l) + "", i ? x.resolveWith(y, [o, l, T]) : x.rejectWith(y, [T, l, a]), T.statusCode(w), w = void 0, g && m.trigger(i ? "ajaxSuccess" : "ajaxError", [T, v, i ? o : a]), b.fireWith(y, [T, l]), g && (m.trigger("ajaxComplete", [T, v]), --S.active || S.event.trigger("ajaxStop"))) } return T }, getJSON: function (e, t, n) { return S.get(e, t, n, "json") }, getScript: function (e, t) { return S.get(e, void 0, t, "script") } }), S.each(["get", "post"], function (e, i) { S[i] = function (e, t, n, r) { return m(t) && (r = r || n, n = t, t = void 0), S.ajax(S.extend({ url: e, type: i, dataType: r, data: t, success: n }, S.isPlainObject(e) && e)) } }), S.ajaxPrefilter(function (e) { var t; for (t in e.headers) "content-type" === t.toLowerCase() && (e.contentType = e.headers[t] || "") }), S._evalUrl = function (e, t, n) { return S.ajax({ url: e, type: "GET", dataType: "script", cache: !0, async: !1, global: !1, converters: { "text script": function () { } }, dataFilter: function (e) { S.globalEval(e, t, n) } }) }, S.fn.extend({ wrapAll: function (e) { var t; return this[0] && (m(e) && (e = e.call(this[0])), t = S(e, this[0].ownerDocument).eq(0).clone(!0), this[0].parentNode && t.insertBefore(this[0]), t.map(function () { var e = this; while (e.firstElementChild) e = e.firstElementChild; return e }).append(this)), this }, wrapInner: function (n) { return m(n) ? this.each(function (e) { S(this).wrapInner(n.call(this, e)) }) : this.each(function () { var e = S(this), t = e.contents(); t.length ? t.wrapAll(n) : e.append(n) }) }, wrap: function (t) { var n = m(t); return this.each(function (e) { S(this).wrapAll(n ? t.call(this, e) : t) }) }, unwrap: function (e) { return this.parent(e).not("body").each(function () { S(this).replaceWith(this.childNodes) }), this } }), S.expr.pseudos.hidden = function (e) { return !S.expr.pseudos.visible(e) }, S.expr.pseudos.visible = function (e) { return !!(e.offsetWidth || e.offsetHeight || e.getClientRects().length) }, S.ajaxSettings.xhr = function () { try { return new C.XMLHttpRequest } catch (e) { } }; var Bt = { 0: 200, 1223: 204 }, $t = S.ajaxSettings.xhr(); y.cors = !!$t && "withCredentials" in $t, y.ajax = $t = !!$t, S.ajaxTransport(function (i) { var o, a; if (y.cors || $t && !i.crossDomain) return { send: function (e, t) { var n, r = i.xhr(); if (r.open(i.type, i.url, i.async, i.username, i.password), i.xhrFields) for (n in i.xhrFields) r[n] = i.xhrFields[n]; for (n in i.mimeType && r.overrideMimeType && r.overrideMimeType(i.mimeType), i.crossDomain || e["X-Requested-With"] || (e["X-Requested-With"] = "XMLHttpRequest"), e) r.setRequestHeader(n, e[n]); o = function (e) { return function () { o && (o = a = r.onload = r.onerror = r.onabort = r.ontimeout = r.onreadystatechange = null, "abort" === e ? r.abort() : "error" === e ? "number" != typeof r.status ? t(0, "error") : t(r.status, r.statusText) : t(Bt[r.status] || r.status, r.statusText, "text" !== (r.responseType || "text") || "string" != typeof r.responseText ? { binary: r.response } : { text: r.responseText }, r.getAllResponseHeaders())) } }, r.onload = o(), a = r.onerror = r.ontimeout = o("error"), void 0 !== r.onabort ? r.onabort = a : r.onreadystatechange = function () { 4 === r.readyState && C.setTimeout(function () { o && a() }) }, o = o("abort"); try { r.send(i.hasContent && i.data || null) } catch (e) { if (o) throw e } }, abort: function () { o && o() } } }), S.ajaxPrefilter(function (e) { e.crossDomain && (e.contents.script = !1) }), S.ajaxSetup({ accepts: { script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" }, contents: { script: /\b(?:java|ecma)script\b/ }, converters: { "text script": function (e) { return S.globalEval(e), e } } }), S.ajaxPrefilter("script", function (e) { void 0 === e.cache && (e.cache = !1), e.crossDomain && (e.type = "GET") }), S.ajaxTransport("script", function (n) { var r, i; if (n.crossDomain || n.scriptAttrs) return { send: function (e, t) { r = S(" -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a67ef7e208d8739c867a86ffd68e642ac07623365481104d020523dbee23a510 +size 5414 diff --git a/desarrollo/resources/views/affiliate/configs.blade.php b/desarrollo/resources/views/affiliate/configs.blade.php index 8829a9f5..660cdc1c 100644 --- a/desarrollo/resources/views/affiliate/configs.blade.php +++ b/desarrollo/resources/views/affiliate/configs.blade.php @@ -1,192 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
- -
-
-
{{ translate('Affiliate Registration Form')}}
-
-
-
- @csrf -
-
- @foreach (json_decode(\App\Models\AffiliateConfig::where('type', 'verification_form')->first()->value) as $key => $element) - @if ($element->type == 'text' || $element->type == 'file') -
- -
- -
-
- -
-
-
- @elseif ($element->type == 'select' || $element->type == 'multi_select' || $element->type == 'radio') -
- - -
- -
-
- -
- @if (is_array(json_decode($element->options))) - @foreach (json_decode($element->options) as $value) -
-
- -
-
-
- @endforeach - @endif -
- -
-
-
- @endif - @endforeach -
-
- -
    -
  • {{translate('Text Input')}}
  • -
  • {{translate('Select')}}
  • -
  • {{translate('Multiple Select')}}
  • -
  • {{translate('Radio')}}
  • -
  • {{translate('File')}}
  • -
- -
-
-
- -
-
-
-
- -
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6587a62c6f485ece96c6bff74c2075fcd51578ec3ab7478c447af88219d34eee +size 9364 diff --git a/desarrollo/resources/views/affiliate/frontend/apply_for_affiliate.blade.php b/desarrollo/resources/views/affiliate/frontend/apply_for_affiliate.blade.php index a7f78886..cdaab2ca 100644 --- a/desarrollo/resources/views/affiliate/frontend/apply_for_affiliate.blade.php +++ b/desarrollo/resources/views/affiliate/frontend/apply_for_affiliate.blade.php @@ -1,169 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
-

{{ translate('Affiliate Informations') }}

-
- -
-
-
-
- @csrf - @if (!Auth::check()) -
-
-
{{translate('User Info')}}
-
-
-
-
-
-
- - - - -
-
-
-
- -
-
-
-
- - - - -
-
-
-
- -
-
-
-
- - - - -
-
-
-
- -
-
-
-
- - - - -
-
-
-
-
-
- @endif -
-
-
{{translate('Verification info')}}
-
-
- @php - $verification_form = \App\Models\AffiliateConfig::where('type', 'verification_form')->first()->value; - @endphp - @foreach (json_decode($verification_form) as $key => $element) - @if ($element->type == 'text') -
- -
- -
-
- @elseif($element->type == 'file') -
- -
- - -
-
- @elseif ($element->type == 'select' && is_array(json_decode($element->options))) -
- -
-
- -
-
-
- @elseif ($element->type == 'multi_select' && is_array(json_decode($element->options))) -
- -
-
- -
-
-
- @elseif ($element->type == 'radio') -
- -
-
- @foreach (json_decode($element->options) as $value) -
- - -
- @endforeach -
-
-
- @endif - @endforeach -
-
-
- -
-
-
-
-
-
- - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1d4b86b4e5a8d95511d63ffe26e5c5731ec6d1e6b86f3b0541ffc09bdc599d +size 11886 diff --git a/desarrollo/resources/views/affiliate/frontend/index.blade.php b/desarrollo/resources/views/affiliate/frontend/index.blade.php index fb0f6ba0..621376f1 100644 --- a/desarrollo/resources/views/affiliate/frontend/index.blade.php +++ b/desarrollo/resources/views/affiliate/frontend/index.blade.php @@ -1,294 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') -
-
-
-
-

{{ translate('Affiliate') }}

-
-
-
-
- -
-
- - - -
-
{{ translate('Affiliate Balance') }}
-
{{ single_price(Auth::user()->affiliate_user->balance) }}
-
-
-
- - - -
-
- - - -
{{ translate('Affiliate Withdraw Request') }}
-
-
-
- - - @if (addon_is_activated('affiliate_system') - && \App\Models\AffiliateOption::where('type', 'user_registration_first_purchase')->first()->status) -
- @php - if(Auth::user()->referral_code == null){ - Auth::user()->referral_code = substr(Auth::user()->id.Str::random(), 0, 10); - Auth::user()->save(); - } - $referral_code = Auth::user()->referral_code; - $referral_code_url = URL::to('/users/registration')."?referral_code=$referral_code"; - @endphp -
-
-
-
-
- -
-
- -
-
-
-
-
-
- @endif - - - -
- - -
-
-
{{translate('Affiliate Earning History')}}
-
-
- - - - - - - - - - - - - - @foreach($affiliate_logs as $key => $affiliate_log) - - - - - - - - - - @endforeach - -
#{{ translate('Referral User')}}{{ translate('Amount')}}{{ translate('Order Id')}}{{ translate('Referral Type') }}{{ translate('Product') }}{{ translate('Date') }}
{{ sprintf('%02d', ($key+1) + ($affiliate_logs->currentPage() - 1)*$affiliate_logs->perPage()) }} - @if($affiliate_log->user_id !== null) - {{ $affiliate_log->user->name }} - @else - {{ translate('Guest').' ('. $affiliate_log->guest_id.')' }} - @endif - {{ single_price($affiliate_log->amount) }} - @if($affiliate_log->order_id != null) - {{ $affiliate_log->order->code }} - @else - {{ $affiliate_log->order_detail->order->code }} - @endif - {{ ucwords(str_replace('_',' ', $affiliate_log->affiliate_type)) }} - @if($affiliate_log->order_detail_id != null) - @php - $url = $affiliate_log->order_detail->product->auction_product == 1 ? route('auction-product', $affiliate_log->order_detail->product->slug) : route('product', $affiliate_log->order_detail->product->slug) - @endphp - - {{ $affiliate_log->order_detail->product->name }} - - @endif - {{ $affiliate_log->created_at->format('d-m-Y') }}
-
- {{ $affiliate_logs->links() }} -
-
-
-
-
-
-
-@endsection - -@section('modal') - - -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:82376e6dc97570cd8d51984155a40c16f1a6589434e1264b3c32b79b7f369360 +size 19919 diff --git a/desarrollo/resources/views/affiliate/frontend/payment_history.blade.php b/desarrollo/resources/views/affiliate/frontend/payment_history.blade.php index 6ae3a468..94bc290f 100644 --- a/desarrollo/resources/views/affiliate/frontend/payment_history.blade.php +++ b/desarrollo/resources/views/affiliate/frontend/payment_history.blade.php @@ -1,140 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') -
-
-
-
-

{{ translate('Affiliate') }}

-
-
-
- -
- -
-
- - - -
-
{{ translate('Affiliate Balance') }}
-
{{ single_price(Auth::user()->affiliate_user->balance) }}
-
-
-
- -
-
- - - -
{{ translate('Affiliate Withdraw Request') }}
-
-
-
- - -
-
-
{{ translate('Affiliate payment history')}}
-
-
- - - - - - - - - - - @foreach ($affiliate_payments as $key => $affiliate_payment) - - - - - - - @endforeach - - -
#{{ translate('Date') }}{{translate('Amount')}}{{translate('Payment Method')}}
{{ sprintf('%02d', $key+1) }}{{ date('d-m-Y', strtotime($affiliate_payment->created_at)) }}{{ single_price($affiliate_payment->amount) }}{{ ucfirst(str_replace('_', ' ', $affiliate_payment ->payment_method)) }}
-
- {{ $affiliate_payments->links() }} -
-
-
-
-
-
-
-@endsection - -@section('modal') - - -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:3988c37bb7b9cb9340f2777c2743f763c8b75bd54c707bf9269d12837dfc51a1 +size 8709 diff --git a/desarrollo/resources/views/affiliate/frontend/payment_settings.blade.php b/desarrollo/resources/views/affiliate/frontend/payment_settings.blade.php index 7d6e2a3e..1c611400 100644 --- a/desarrollo/resources/views/affiliate/frontend/payment_settings.blade.php +++ b/desarrollo/resources/views/affiliate/frontend/payment_settings.blade.php @@ -1,47 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') - -
-
-
-
-

{{ translate('Affiliate') }}

-
-
-
- -
-
-
{{ translate('Payment Settings')}}
-
-
-
- @csrf -
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:19aca161c455f7a97273de05c3dd3fcf5dfb6baf8fd36caafe96e1256c824312 +size 2577 diff --git a/desarrollo/resources/views/affiliate/frontend/withdraw_request_history.blade.php b/desarrollo/resources/views/affiliate/frontend/withdraw_request_history.blade.php index 7cd51c2c..f6f6138d 100644 --- a/desarrollo/resources/views/affiliate/frontend/withdraw_request_history.blade.php +++ b/desarrollo/resources/views/affiliate/frontend/withdraw_request_history.blade.php @@ -1,125 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') -
-
-
-
-

{{ translate('Affiliate') }}

-
-
-
- -
- -
-
- - - -
-
{{ translate('Affiliate Balance') }}
-
{{ single_price(Auth::user()->affiliate_user->balance) }}
-
-
-
- -
-
- - - -
{{ translate('Affiliate Withdraw Request') }}
-
-
-
- - -
-
-
{{ translate('Affiliate withdraw request history')}}
-
-
- - - - - - - - - - - @foreach ($affiliate_withdraw_requests as $key => $affiliate_withdraw_request) - - - - - - - @endforeach - -
#{{ translate('Date') }}{{ translate('Amount')}}{{ translate('Status')}}
{{ sprintf('%02d', $key+1) }}{{ date('d-m-Y', strtotime($affiliate_withdraw_request->created_at)) }}{{ single_price($affiliate_withdraw_request->amount) }} - @if($affiliate_withdraw_request->status == 1) - {{translate('Approved')}} - @elseif($affiliate_withdraw_request->status == 2) - {{translate('Rejected')}} - @else - {{translate('Pending')}} - @endif -
-
- {{ $affiliate_withdraw_requests->links() }} -
-
-
- -
-
-
-
-@endsection - -@section('modal') - - -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa79b8c658b379b5552fccd99032baf105842356238c1c512f449ef02fd357c +size 8746 diff --git a/desarrollo/resources/views/affiliate/index.blade.php b/desarrollo/resources/views/affiliate/index.blade.php index 1321c064..46ae934b 100644 --- a/desarrollo/resources/views/affiliate/index.blade.php +++ b/desarrollo/resources/views/affiliate/index.blade.php @@ -1,236 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{ translate('Basic Affiliate')}}
-
-
-
- @csrf -
- -
- -
-
- @php - if(\App\Models\AffiliateOption::where('type', 'user_registration_first_purchase')->first() != null){ - $percentage = \App\Models\AffiliateOption::where('type', 'user_registration_first_purchase')->first()->percentage; - $status = \App\Models\AffiliateOption::where('type', 'user_registration_first_purchase')->first()->status; - } - else { - $percentage = null; - } - @endphp - -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-

{{ translate('Product Sharing Affiliate')}}

-
-
-
- @csrf -
- - -
- @php - if(\App\Models\AffiliateOption::where('type', 'product_sharing')->first() != null && \App\Models\AffiliateOption::where('type', 'product_sharing')->first()->details != null){ - $commission_product_sharing = json_decode(\App\Models\AffiliateOption::where('type', 'product_sharing')->first()->details)->commission; - $commission_type_product_sharing = json_decode(\App\Models\AffiliateOption::where('type', 'product_sharing')->first()->details)->commission_type; - $status = \App\Models\AffiliateOption::where('type', 'product_sharing')->first()->status; - } - else { - $commission_product_sharing = null; - $commission_type_product_sharing = null; - } - @endphp - -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
-
-

{{ translate('Product Sharing Affiliate (Category Wise)')}}

-
-
-
- @csrf - @php - if(\App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first() != null){ - $category_wise_affiliate_status = \App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first()->status; - } - @endphp -
-
- -
-
- -
-
- @if (\App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first() != null) - - @foreach (\App\Models\Category::all() as $key => $category) - @php - $found = false; - @endphp - @if(\App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first()->details != null) - @foreach (json_decode(\App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first()->details) as $key => $data) - @if($data->category_id == $category->id) - @php - $found = true; - $value = $data; - @endphp - @endif - @endforeach - @endif - @if ($found) -
-
- - -
-
- -
-
- -
-
- @else -
-
- - -
-
- -
-
- -
-
- @endif - @endforeach - @endif -
- -
-
-
-
-
-
-
-
-
- {{ translate('N:B: You can not enable Single Product Sharing Affiliate and Category Wise Affiliate at a time.') }} -
-
-
-
-
-
-
-

{{ translate('Affiliate Link Validatin Time (Days)')}}

-
-
-
- @csrf - @php - $validation_time_info = \App\Models\AffiliateConfig::where('type', 'validation_time')->first(); - $validation_time = ''; - if($validation_time_info) { - $validation_time = $validation_time_info->value; - } - @endphp -
-
- - -
-
-
- -
- Days -
-
-
-
- -
- -
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e56585f88d34dc14277050abef4e2744fd01d2a0b163b43d0d5cc857bc4b085f +size 13769 diff --git a/desarrollo/resources/views/affiliate/payment_history.blade.php b/desarrollo/resources/views/affiliate/payment_history.blade.php index 3d13ca48..73e485d6 100644 --- a/desarrollo/resources/views/affiliate/payment_history.blade.php +++ b/desarrollo/resources/views/affiliate/payment_history.blade.php @@ -1,35 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{ translate('Affiliate payments of ').$affiliate_user->user->name }}
-
-
- - - - - - - - - - - @foreach($affiliate_payments as $key => $payment) - - - - - - - @endforeach - -
#{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Payment Method') }}
{{ $key+1 }}{{ $payment->created_at }} - {{ single_price($payment->amount) }} - {{ ucfirst($payment->payment_method) }}
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:696319f3f3c4022b5394c93f29f1a64ef7eddbda868a836ce944d585bd2a6886 +size 1111 diff --git a/desarrollo/resources/views/affiliate/payment_modal.blade.php b/desarrollo/resources/views/affiliate/payment_modal.blade.php index 3b69440c..14287770 100644 --- a/desarrollo/resources/views/affiliate/payment_modal.blade.php +++ b/desarrollo/resources/views/affiliate/payment_modal.blade.php @@ -1,55 +1,3 @@ -
- @csrf - - - -
+version https://git-lfs.github.com/spec/v1 +oid sha256:4cbdad885d130d93f142d09f57f7066eb60569b8bfd98eada921c53e88ca8b52 +size 2440 diff --git a/desarrollo/resources/views/affiliate/refferal_users.blade.php b/desarrollo/resources/views/affiliate/refferal_users.blade.php index 122df487..32b79a59 100644 --- a/desarrollo/resources/views/affiliate/refferal_users.blade.php +++ b/desarrollo/resources/views/affiliate/refferal_users.blade.php @@ -1,43 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
{{ translate('Refferal Users')}}
-
-
- - - - - - - - - - - - @foreach($refferal_users as $key => $refferal_user) - @if ($refferal_user != null) - - - - - - - - @endif - @endforeach - -
#{{ translate('Name')}}{{ translate('Phone')}}{{ translate('Email Address')}}{{ translate('Reffered By')}}
{{ ($key+1) + ($refferal_users->currentPage() - 1)*$refferal_users->perPage() }}{{$refferal_user->name}}{{$refferal_user->phone}}{{$refferal_user->email}} - @if (\App\Models\User::find($refferal_user->referred_by) != null) - {{ \App\Models\User::find($refferal_user->referred_by)->name }} ({{ \App\Models\User::find($refferal_user->referred_by)->email }}) - @endif -
-
- {{ $refferal_users->appends(request()->input())->links() }} -
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:17c8b8c94d5b5ab1735efa5972493fe1f65d1526e9dbb67b35b42d7ae1a07783 +size 1843 diff --git a/desarrollo/resources/views/affiliate/show_verification_request.blade.php b/desarrollo/resources/views/affiliate/show_verification_request.blade.php index d0a96319..5579c45a 100644 --- a/desarrollo/resources/views/affiliate/show_verification_request.blade.php +++ b/desarrollo/resources/views/affiliate/show_verification_request.blade.php @@ -1,59 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{ translate('Affiliate User Verification')}}
-
-
-
-
{{ translate('User Info') }}
-

- {{ translate('Name') }} : - {{ $affiliate_user->user->name }} -

-

- {{translate('Email')}} - {{ $affiliate_user->user->email }} -

-

- {{translate('Address')}} - {{ $affiliate_user->user->address }} -

-

- {{translate('Phone')}} - {{ $affiliate_user->user->phone }} -

-
-
-
{{ translate('Verification Info') }}
- - - @foreach (json_decode($affiliate_user->informations) as $key => $info) - - - @if ($info->type == 'text' || $info->type == 'select' || $info->type == 'radio') - - @elseif ($info->type == 'multi_select') - - @elseif ($info->type == 'file') - - @endif - - @endforeach - -
{{ $info->label }}{{ $info->value }} - {{ implode(json_decode($info->value), ', ') }} - - {{ translate('Click here')}} -
- -
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d1a32be1ea0e49821e02f3fb909c8cb7cdaa66e141097b5320ffb32eccc570 +size 2735 diff --git a/desarrollo/resources/views/affiliate/users.blade.php b/desarrollo/resources/views/affiliate/users.blade.php index 3cd0d168..ab15bd75 100644 --- a/desarrollo/resources/views/affiliate/users.blade.php +++ b/desarrollo/resources/views/affiliate/users.blade.php @@ -1,113 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
{{ translate('Affiliate Users')}}
-
-
- - - - - - - - - - - - - - - @foreach($affiliate_users as $key => $affiliate_user) - @if($affiliate_user->user != null) - - - - - - - - - - - @endif - @endforeach - -
#{{ translate('Name')}}{{ translate('Phone')}}{{ translate('Email Address')}}{{ translate('Verification Info')}}{{ translate('Approval')}}{{ translate('Due Amount') }}{{ translate('Options')}}
{{ ($key+1) + ($affiliate_users->currentPage() - 1)*$affiliate_users->perPage() }}{{$affiliate_user->user->name}}{{$affiliate_user->user->phone}}{{$affiliate_user->user->email}} - @if ($affiliate_user->informations != null) - - {{translate('Show')}} - - @endif - - - - @if ($affiliate_user->balance >= 0) - {{ single_price($affiliate_user->balance) }} - @endif - - @can('pay_to_affiliate_user') - - - - @endcan - @can('affiliate_users_payment_history') - - - - @endcan -
-
- {{ $affiliate_users->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('modals.delete_modal') - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:7685a742e69614bd2e1b2ce89af5740f4bb0c36b211c4b3b00b8b66a36390c17 +size 4909 diff --git a/desarrollo/resources/views/auction/auction_product_orders.blade.php b/desarrollo/resources/views/auction/auction_product_orders.blade.php index 45ba9b12..633e4596 100644 --- a/desarrollo/resources/views/auction/auction_product_orders.blade.php +++ b/desarrollo/resources/views/auction/auction_product_orders.blade.php @@ -1,163 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{ translate('Auction Product Orders') }}
-
-
-
- -
-
-
- -
- -
- -
-
-
- -
-
-
-
- -
-
-
-
- -
- - - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - - @foreach ($orders as $key => $order_id) - @php - $order = \App\Models\Order::find($order_id->id); - @endphp - @if ($order != null) - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - @endif - @endforeach - -
#{{ translate('Order Code') }}{{ translate('Customer') }}{{ translate('Amount') }}{{ translate('Delivery Status') }}{{ translate('Payment Method') }}{{ translate('Payment Status') }}{{ translate('Refund') }}{{ translate('Options') }}
- {{ $key + 1 + ($orders->currentPage() - 1) * $orders->perPage() }} - - {{ $order->code }}@if ($order->viewed == 0) {{ translate('New') }}@endif - - @if ($order->user != null) - {{ $order->user->name }} - @else - Guest ({{ $order->guest_id }}) - @endif - - {{ single_price($order->grand_total) }} - - @php - $status = $order->delivery_status; - @endphp - {{ translate(ucfirst(str_replace('_', ' ', $status))) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }} - - @if ($order->payment_status == 'paid') - {{ translate('Paid') }} - @else - {{ translate('Unpaid') }} - @endif - - @if (count($order->refund_requests) > 0) - {{ count($order->refund_requests) }} {{ translate('Refund') }} - @else - {{ translate('No Refund') }} - @endif - - @can('view_order_details') - - - - @endcan - - - - @can('delete_order') - - - - @endcan -
-
- {{ $orders->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:83c957a0d52ff439034d340531ef0e7a1301c8f77a87fbfc39615cef929f0185 +size 8990 diff --git a/desarrollo/resources/views/auction/auction_products/bids.blade.php b/desarrollo/resources/views/auction/auction_products/bids.blade.php index 06f4fc6e..08dc0a39 100644 --- a/desarrollo/resources/views/auction/auction_products/bids.blade.php +++ b/desarrollo/resources/views/auction/auction_products/bids.blade.php @@ -1,64 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('Bids For').$product->name}}

-
-
-
-
- -
-
-
-
{{ translate('All Bids') }}
-
-
- -
- - - - - - - - - - - - - - @foreach($bids as $key => $bid) - - - - - - - - - - @endforeach - -
#{{translate('Customer Name')}}{{translate('Email')}}{{translate('Phone')}}{{translate('Bid Amount')}}{{translate('Date')}}{{translate('Options')}}
{{ ($key+1) + ($bids->currentPage() - 1)*$bids->perPage() }}{{ $bid->user->name ?? translate('User Deleted') }}{{ $bid->user->email ?? '' }}{{ $bid->user->phone ?? '' }}{{ single_price($bid->amount) }}{{ date('d-m-Y', strtotime($bid->created_at)) }} - @can('delete_auction_product_bids') - - - - @endcan -
-
- {{ $bids->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:208c7b4035d75abbd252d028c48c1e4746b4604973582089f2a25b95358ec8e7 +size 2305 diff --git a/desarrollo/resources/views/auction/auction_products/create.blade.php b/desarrollo/resources/views/auction/auction_products/create.blade.php index d9c3cd17..1cbd9e53 100644 --- a/desarrollo/resources/views/auction/auction_products/create.blade.php +++ b/desarrollo/resources/views/auction/auction_products/create.blade.php @@ -1,388 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{translate('Add New Auction Product')}}
-
-
-
-
-
- @csrf - -
-
-
{{translate('Product Information')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{translate('This is used for search. Input those words by which cutomer can find this product.')}} -
-
-
-
-
-
-
{{translate('Product Images')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('These images are visible in product details page gallery. Use 600x600 sizes images.')}} -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.')}} -
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- - {{translate("Use proper link without extra parameter. Don't use short share link/embeded iframe code.")}} -
-
-
-
-
-
-
{{translate('Product Bidding Price + Date Range')}}
-
-
-
- -
- -
-
- -
- -
- -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
- -
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
- -
- -
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
- -
-
-
-
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2dab44a80ffc51796500d5d43d890209d8bd2991306847526eb038c7ab0b20 +size 22415 diff --git a/desarrollo/resources/views/auction/auction_products/edit.blade.php b/desarrollo/resources/views/auction/auction_products/edit.blade.php index 49732da6..c585f2c6 100644 --- a/desarrollo/resources/views/auction/auction_products/edit.blade.php +++ b/desarrollo/resources/views/auction/auction_products/edit.blade.php @@ -1,424 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-

{{ translate('Edit Auction Product') }}

-
-
-
- - - - @csrf -
-
- -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
-
-
-
{{translate('Product Images')}}
-
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Product Bidding Price + Date Range')}}
-
-
-
- -
- -
-
- - @php - $start_date = date('d-m-Y H:i:s', $product->auction_start_date); - $end_date = date('d-m-Y H:i:s', $product->auction_end_date); - @endphp - -
- -
- -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
-
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
-
-
- -
- -
-
-
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - - @php - $tax_amount = 0; - $tax_type = ''; - foreach($tax->product_taxes as $row) { - if($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
-
- -
-
-
-
-
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c076f07afa07bf63f7d6a07118cf0a56a2a142bfeccd672776a301770d94d6f7 +size 24941 diff --git a/desarrollo/resources/views/auction/auction_products/index.blade.php b/desarrollo/resources/views/auction/auction_products/index.blade.php index 7d1fecb2..ab066c95 100644 --- a/desarrollo/resources/views/auction/auction_products/index.blade.php +++ b/desarrollo/resources/views/auction/auction_products/index.blade.php @@ -1,172 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('Auction products')}}

-
- @can('add_auction_product') - - @endcan -
-
-
- -
-
-
-
-
{{ translate('Auction Product') }}
-
- - @if($type == 'seller') -
- -
- @endif - @if($type == 'all') -
- -
- @endif -
-
- -
-
-
- -
- - - - - - @if($type == 'all' || $type == 'seller') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'seller') - - @endif - - - - - @foreach($products as $key => $product) - - - - @if($type == 'seller' || $type == 'all') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'seller') - - @endif - - - @endforeach - -
#{{translate('Name')}}{{translate('Added By')}}{{translate('Bid Starting Amount')}}{{translate('Auction Start Date')}}{{translate('Auction End Date')}}{{translate('Total Bids')}}{{translate('Approved')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
{{ $product->user->name }}{{ single_price($product->starting_bid) }}{{ date('Y-m-d H:i:s', $product->auction_start_date) }}{{ date('Y-m-d H:i:s', $product->auction_end_date) }}{{ $product->bids->count() }} - - - @if($product->auction_start_date > strtotime("now") && auth()->user()->can('edit_auction_product')) - - - - @endif - - - - - @can('view_auction_product_bids') - - - - @endcan - @can('delete_auction_product') - - - - @endcan -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:935c3a0d291545ad3b9c0e83272c232bbad6a8311c8c000fed566c5eb5d24c9c +size 8592 diff --git a/desarrollo/resources/views/auction/frontend/addToCartAuction.blade.php b/desarrollo/resources/views/auction/frontend/addToCartAuction.blade.php index a48e9f2a..51a9d572 100644 --- a/desarrollo/resources/views/auction/frontend/addToCartAuction.blade.php +++ b/desarrollo/resources/views/auction/frontend/addToCartAuction.blade.php @@ -1,97 +1,3 @@ - +version https://git-lfs.github.com/spec/v1 +oid sha256:8a009cfbb0028fe6a3161abbfbbff2fef99e45b4cfdca9f68f42b2df73ffe2ce +size 5073 diff --git a/desarrollo/resources/views/auction/frontend/all_auction_products.blade.php b/desarrollo/resources/views/auction/frontend/all_auction_products.blade.php index 46907c2e..24fcdb65 100644 --- a/desarrollo/resources/views/auction/frontend/all_auction_products.blade.php +++ b/desarrollo/resources/views/auction/frontend/all_auction_products.blade.php @@ -1,100 +1,3 @@ -@extends('frontend.layouts.app') - -@if (isset($category_id)) - @php - $meta_title = \App\Models\Category::find($category_id)->meta_title; - $meta_description = \App\Models\Category::find($category_id)->meta_description; - @endphp -@elseif (isset($brand_id)) - @php - $meta_title = \App\Models\Brand::find($brand_id)->meta_title; - $meta_description = \App\Models\Brand::find($brand_id)->meta_description; - @endphp -@else - @php - $meta_title = get_setting('meta_title'); - $meta_description = get_setting('meta_description'); - @endphp -@endif - -@section('meta_title'){{ $meta_title }}@stop -@section('meta_description'){{ $meta_description }}@stop - -@section('meta') - - - - - - - - - - - -@endsection - -@section('content') - -
-
-
-
-

{{ translate('All Auction Products') }}

-
-
- -
-
-
-
- - -
-
-
-
- @foreach ($products as $key => $product) -
-
- - {{  $product->getTranslation('name')  }} - -
-
-

- {{ $product->getTranslation('name') }} -

-
- {{ single_price($product->starting_bid) }} -
-
-
- @endforeach -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c03ba7840d5babb76477950d2b6a8f46f87a5639a1df8ba6092d0f43ff2df675 +size 4632 diff --git a/desarrollo/resources/views/auction/frontend/auction_product_details.blade.php b/desarrollo/resources/views/auction/frontend/auction_product_details.blade.php index 4c593bd2..a4e7b76b 100644 --- a/desarrollo/resources/views/auction/frontend/auction_product_details.blade.php +++ b/desarrollo/resources/views/auction/frontend/auction_product_details.blade.php @@ -1,574 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $detailedProduct->meta_title }}@stop - -@section('meta_description'){{ $detailedProduct->meta_description }}@stop - -@section('meta_keywords'){{ $detailedProduct->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
-
-
- @php - $photos = explode(',', $detailedProduct->photos); - @endphp -
- -
-
- -
-
-
- -
-
-

- {{ $detailedProduct->getTranslation('name') }} -

- -
- @if ($detailedProduct->est_shipping_days) -
- {{ translate('Estimate Shipping Time')}}: {{ $detailedProduct->est_shipping_days }} {{ translate('Days') }} -
- @endif -
- -
- -
-
- {{ translate('Sold by')}}:
- @if ($detailedProduct->added_by == 'seller' && get_setting('vendor_system_activation') == 1) - {{ $detailedProduct->user->shop->name }} - @else - {{ translate('Inhouse product') }} - @endif -
- @if (get_setting('conversation_system') == 1) -
- -
- @endif - - @if ($detailedProduct->brand != null) -
- - {{ $detailedProduct->brand->getTranslation('name') }} - -
- @endif -
- -
-
-
-
{{ translate('Auction Will End')}}:
-
-
- @if($detailedProduct->auction_end_date > strtotime("now")) -
- @else -

Ended

- @endif - -
-
-
- -
-
-
{{ translate('Starting Bid')}}:
-
-
- - {{ single_price($detailedProduct->starting_bid) }} - - @if($detailedProduct->unit != null) - /{{ $detailedProduct->getTranslation('unit') }} - @endif -
-
-
- - @if(Auth::check() && Auth::user()->product_bids->where('product_id',$detailedProduct->id)->first() != null) -
-
-
{{ translate('My Bidded Amount')}}:
-
-
- - {{ single_price(Auth::user()->product_bids->where('product_id',$detailedProduct->id)->first()->amount) }} - -
-
-
- @endif - - @php $highest_bid = $detailedProduct->bids->max('amount'); @endphp -
-
-
{{ translate('Highest Bid')}}:
-
-
- - @if($highest_bid != null) - {{ single_price($highest_bid) }} - @endif - -
-
-
- @php $min_bid_amount = $highest_bid != null ? $highest_bid+1 : $detailedProduct->starting_bid; @endphp - @if($detailedProduct->auction_end_date >= strtotime("now")) -
- @if(Auth::check() && $detailedProduct->user_id == Auth::user()->id) - {{ translate('Seller Can Not Place Bid to His Own Product') }} - @else - - @endif -
- @endif - -
-
-
{{ translate('Share')}}:
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - -
-
-
-
- getTranslation('description'); ?> -
-
-
- -
-
-
- @if ($detailedProduct->video_provider == 'youtube' && isset(explode('=', $detailedProduct->video_link)[1])) - - @elseif ($detailedProduct->video_provider == 'dailymotion' && isset(explode('video/', $detailedProduct->video_link)[1])) - - @elseif ($detailedProduct->video_provider == 'vimeo' && isset(explode('vimeo.com/', $detailedProduct->video_link)[1])) - - @endif -
-
-
- -
-
-
    - @foreach ($detailedProduct->reviews as $key => $review) - @if($review->user != null) -
  • - - user->avatar_original !=null) - data-src="{{ uploaded_asset($review->user->avatar_original) }}" - @else - data-src="{{ static_asset('assets/img/placeholder.jpg') }}" - @endif - > - -
    -
    -

    {{ $review->user->name }}

    - - @for ($i=0; $i < $review->rating; $i++) - - @endfor - @for ($i=0; $i < 5-$review->rating; $i++) - - @endfor - -
    -
    {{ date('d-m-Y', strtotime($review->created_at)) }}
    -

    - {{ $review->comment }} -

    -
    -
  • - @endif - @endforeach -
- - @if(count($detailedProduct->reviews) <= 0) -
- {{ translate('There have been no reviews for this product yet.') }} -
- @endif - - @if(Auth::check()) - @php - $commentable = false; - @endphp - @foreach ($detailedProduct->orderDetails as $key => $orderDetail) - @if($orderDetail->order != null && $orderDetail->order->user_id == Auth::user()->id && - $orderDetail->delivery_status == 'delivered' && - \App\Models\Review::where('user_id', Auth::user()->id)->where('product_id', $detailedProduct->id)->first() == null) - @php - $commentable = true; - @endphp - @endif - @endforeach - @if ($commentable) -
-
-

- {{ translate('Write a review')}} -

-
-
- @csrf - -
-
-
- - -
-
-
-
- - -
-
-
-
- -
- - - - - -
-
- -
- - -
- -
- -
-
-
- @endif - @endif -
-
- -
-
-
-
-
-
- -@endsection - -@section('modal') - - - - - - @if($detailedProduct->auction_product == 1) - {{-- Bid Modal --}} - - @endif -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c23726413e6b40249c9a78934fa92b7566f53d0e5979aedb36352271105cc7 +size 37564 diff --git a/desarrollo/resources/views/auction/frontend/auction_products_section.blade.php b/desarrollo/resources/views/auction/frontend/auction_products_section.blade.php index 4a44b61f..42fbdf0a 100644 --- a/desarrollo/resources/views/auction/frontend/auction_products_section.blade.php +++ b/desarrollo/resources/views/auction/frontend/auction_products_section.blade.php @@ -1,138 +1,3 @@ -
-
- -
- -

- {{ translate('Auction Products') }} -

- - -
- -
-
-
- - {{ env('APP_NAME') }} promo - -
-
- @php - $products = \App\Models\Product::latest()->where('published', 1)->where('auction_product', 1); - if(get_setting('seller_auction_product') == 0){ - $products = $products->where('added_by','admin'); - } - $products = $products->where('auction_start_date','<=', strtotime("now"))->where('auction_end_date','>=', strtotime("now"))->limit(6)->get(); - @endphp -
- -
-
-
-
- - \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:60929afa1195f51ed8baf4b0391861656a6d35cf8b64c72cb7db0fa54941a33f +size 7597 diff --git a/desarrollo/resources/views/auction/frontend/my_bidded_products.blade.php b/desarrollo/resources/views/auction/frontend/my_bidded_products.blade.php index ade7d533..f4160314 100644 --- a/desarrollo/resources/views/auction/frontend/my_bidded_products.blade.php +++ b/desarrollo/resources/views/auction/frontend/my_bidded_products.blade.php @@ -1,124 +1,3 @@ -@extends('frontend.layouts.user_panel') - -@section('panel_content') -
-
-
{{ translate('All Bidded Products') }}
-
-
- - - - - - - - - - - - - @foreach ($bids as $key => $bid_id) - @php - $bid = \App\Models\AuctionProductBid::find($bid_id->id); - @endphp - - - - - - - - - @endforeach - -
#{{ translate('Product')}}{{ translate('My Bid')}}{{ translate('Highest Bid')}}{{ translate('End Date')}}{{ translate('Action')}}
{{ sprintf('%02d', ($key+1) + ($bids->currentPage() - 1)*$bids->perPage()) }} - - {{  $bid->product->getTranslation('name')  }} - {{ $bid->product->getTranslation('name') }} - - {{ single_price($bid->amount) }} - @php $highest_bid = $bid->where('product_id',$bid->product_id)->max('amount'); @endphp - - {{ single_price($highest_bid) }} - - - @if($bid->product->auction_end_date < strtotime("now")) - {{ translate('Ended') }} - @else - {{ date('d.m.Y H:i:s', $bid->product->auction_end_date) }} - @endif - - @php - $order = null; - $order_detail = \App\Models\OrderDetail::where('product_id',$bid->product_id)->first(); - if($order_detail != null ){ - $order = \App\Models\Order::where('id',$order_detail->order_id)->where('user_id',Auth::user()->id)->first(); - } - @endphp - @if($bid->product->auction_end_date < strtotime("now") && $bid->amount == $highest_bid && $order == null) - @php - $carts = \App\Models\Cart::where('user_id', Auth::user()->id)->get(); - @endphp - @if(count($carts) > 0 ) - @php - $cart_has_this_product = false; - foreach ($carts as $key => $cart){ - if($cart->product_id == $bid->product_id){ - $cart_has_this_product = true; - break; - } - } - @endphp - @if($cart_has_this_product) - - @else - - @endif - @else - - @endif - @elseif($order != null) - {{ translate('Purchased') }} - @else - N\A - @endif -
-
- {{ $bids->links() }} -
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ae777ffb3fbab4d8b635145ac40727cf338730815634e25e2c8d1698aad14f07 +size 7443 diff --git a/desarrollo/resources/views/auction/frontend/purchase_history.blade.php b/desarrollo/resources/views/auction/frontend/purchase_history.blade.php index 33b43aa7..ff28c076 100644 --- a/desarrollo/resources/views/auction/frontend/purchase_history.blade.php +++ b/desarrollo/resources/views/auction/frontend/purchase_history.blade.php @@ -1,108 +1,3 @@ -@extends('frontend.layouts.user_panel') - -@section('panel_content') -
-
-
{{ translate('Purchase History from Auction') }}
-
-
- - - - - - - - - - - - - @foreach ($orders as $key => $order_id) - @php - $order = \App\Models\Order::find($order_id->id); - @endphp - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $order->code }} - {{ date('d-m-Y', $order->date) }} - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->orderDetails->first()->delivery_status))) }} - @if($order->delivery_viewed == 0) - * - @endif - - @if ($order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($order->payment_status_viewed == 0) - * - @endif - - @if ($order->orderDetails->first()->delivery_status == 'pending' && $order->payment_status == 'unpaid') - - - - - - @endif - - - - - - - - - - - - - - - - - - -
-
- {{ $orders->links() }} -
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') - - -@endsection - -@section('script') - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb35bd7eca0d5736da24d77bb48d714ff0517ab404e13fd3159d75e2b184e91 +size 7807 diff --git a/desarrollo/resources/views/auction/frontend/seller/auction_product_edit.blade.php b/desarrollo/resources/views/auction/frontend/seller/auction_product_edit.blade.php index d088ea8e..3df08d4d 100644 --- a/desarrollo/resources/views/auction/frontend/seller/auction_product_edit.blade.php +++ b/desarrollo/resources/views/auction/frontend/seller/auction_product_edit.blade.php @@ -1,424 +1,3 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
-

{{ translate('Edit Auction Product') }}

-
-
-
- - - - @csrf -
-
- -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
-
-
-
{{translate('Product Images')}}
-
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Product Bidding Price + Date Range')}}
-
-
-
- -
- -
-
- - @php - $start_date = date('d-m-Y H:i:s', $product->auction_start_date); - $end_date = date('d-m-Y H:i:s', $product->auction_end_date); - @endphp - -
- -
- -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
-
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
-
-
- -
- -
-
-
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - - @php - $tax_amount = 0; - $tax_type = ''; - foreach($tax->product_taxes as $row) { - if($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
-
- -
-
-
-
-
- -@endsection - -@section('script') - - - -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:ec5aa2b3e4e4255e5889f8202d1a12456cdcb98fd028dcbebedce022eb0a180c +size 24947 diff --git a/desarrollo/resources/views/auction/frontend/seller/auction_product_list.blade.php b/desarrollo/resources/views/auction/frontend/seller/auction_product_list.blade.php index aba1a1c7..6b46183d 100644 --- a/desarrollo/resources/views/auction/frontend/seller/auction_product_list.blade.php +++ b/desarrollo/resources/views/auction/frontend/seller/auction_product_list.blade.php @@ -1,135 +1,3 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
- @if (addon_is_activated('seller_subscription')) -
-
- - - -
-
- {{ Auth::user()->shop->seller_package != null ? Auth::user()->shop->seller_package->product_upload_limit - Auth::user()->products()->count() : 0 }} -
-
{{ translate('Remaining Uploads') }}
-
-
-
- @endif - - - - @if (addon_is_activated('seller_subscription')) - @php - $seller_package = \App\Models\SellerPackage::find(Auth::user()->shop->seller_package_id); - @endphp - - @endif - -
-
-
-
-
-
{{ translate('All Auction Product') }}
-
- -
-
- -
-
-
- -
- - - - - - - - - - - - - - @foreach($products as $key => $product) - - - - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Bid Starting Amount')}}{{translate('Auction Start Date')}}{{translate('Auction End Date')}}{{translate('Total Bids')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
{{ single_price($product->starting_bid) }}{{ date('Y-m-d H:i:s', $product->auction_start_date) }}{{ date('Y-m-d H:i:s', $product->auction_end_date) }}{{ $product->bids->count() }} - @if($product->auction_start_date > strtotime("now")) - - - - @endif - - - - - - - - - -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a530e8eab61903436bf54af56925835a495ba7ac0b2d3842afef156319bd3388 +size 6902 diff --git a/desarrollo/resources/views/auction/frontend/seller/auction_product_orders.blade.php b/desarrollo/resources/views/auction/frontend/seller/auction_product_orders.blade.php index 7ad79481..0d4224ed 100644 --- a/desarrollo/resources/views/auction/frontend/seller/auction_product_orders.blade.php +++ b/desarrollo/resources/views/auction/frontend/seller/auction_product_orders.blade.php @@ -1,181 +1,3 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
-
-
-
-
{{ translate('Inhouse Orders') }}
-
-
- -
- -
- -
-
-
- -
-
-
-
- -
-
-
-
- -
- - - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - - @foreach ($orders as $key => $order_id) - @php - $order = \App\Models\Order::find($order_id->id); - @endphp - @if ($order != null) - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - @endif - @endforeach - -
#{{ translate('Order Code') }}{{ translate('Customer') }}{{ translate('Amount') }}{{ translate('Delivery Status') }}{{ translate('Payment Method') }}{{ translate('Payment Status') }}{{ translate('Refund') }}{{ translate('Options') }}
- {{ $key + 1 + ($orders->currentPage() - 1) * $orders->perPage() }} - - {{ $order->code }}@if ($order->viewed == 0) {{ translate('New') }}@endif - - @if ($order->user != null) - {{ $order->user->name }} - @else - Guest ({{ $order->guest_id }}) - @endif - - {{ single_price($order->grand_total) }} - - @php - $status = $order->delivery_status; - @endphp - {{ translate(ucfirst(str_replace('_', ' ', $status))) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }} - - @if ($order->payment_status == 'paid') - {{ translate('Paid') }} - @else - {{ translate('Unpaid') }} - @endif - - @if (count($order->refund_requests) > 0) - {{ count($order->refund_requests) }} {{ translate('Refund') }} - @else - {{ translate('No Refund') }} - @endif - - - - - - - -
-
- {{ $orders->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:11ffb43dcc3cc80d7c965c54bcae70bf1bf56a1522b3019e17bbdc15922d97db +size 9100 diff --git a/desarrollo/resources/views/auction/frontend/seller/auction_product_upload.blade.php b/desarrollo/resources/views/auction/frontend/seller/auction_product_upload.blade.php index e3c6a86d..6343d2b7 100644 --- a/desarrollo/resources/views/auction/frontend/seller/auction_product_upload.blade.php +++ b/desarrollo/resources/views/auction/frontend/seller/auction_product_upload.blade.php @@ -1,428 +1,3 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
-
{{ translate('Add New Auction Product') }}
-
-
-
-
-
- @csrf - -
-
-
{{ translate('Product Information') }}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{ translate('This is used for search. Input those words by which cutomer can find this product.') }} -
-
-
-
-
-
-
{{ translate('Product Images') }}
-
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{ translate('These images are visible in product details page gallery. Use 600x600 sizes images.') }} -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{ translate('This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.') }} -
-
-
-
-
-
-
{{ translate('Product Videos') }}
-
-
-
- -
- -
-
-
- -
- - {{ translate("Use proper link without extra parameter. Don't use short share link/embeded iframe code.") }} -
-
-
-
-
-
-
{{ translate('Product Bidding Price + Date Range') }}
-
-
-
- -
- -
-
- -
- -
- -
-
-
-
-
-
-
{{ translate('Product Description') }}
-
-
-
- -
- -
-
-
-
- - -
-
-
{{ translate('PDF Specification') }}
-
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{ translate('SEO Meta Tags') }}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
- -
- -
-
-
- {{ translate('Shipping Configuration') }} -
-
- -
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{ translate('Shipping Configuration') }} - -

- @endif -
-
- -
-
-
{{ translate('Cash On Delivery') }}
-
-
- @if (get_setting('cash_payment') == '1') -
- -
- -
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{ translate('Cash Payment Activation') }} - -

- @endif -
-
- -
-
-
{{ translate('Estimate Shipping Time') }}
-
-
-
- -
- -
- {{ translate('Days') }} -
-
-
-
-
- -
-
-
{{ translate('VAT & Tax') }}
-
-
- @foreach (\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
- -
-
-
-
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:2560040b11ba04e596d85a6e76e8393c62dfc7298dd67f383b740db407bc5ee5 +size 24345 diff --git a/desarrollo/resources/views/auction/frontend/seller/auction_products_bids.blade.php b/desarrollo/resources/views/auction/frontend/seller/auction_products_bids.blade.php index 214d927d..2a33ff60 100644 --- a/desarrollo/resources/views/auction/frontend/seller/auction_products_bids.blade.php +++ b/desarrollo/resources/views/auction/frontend/seller/auction_products_bids.blade.php @@ -1,62 +1,3 @@ -@extends('seller.layouts.app') - -@section('panel_content') - -
-
-
-

{{translate('Bids For').$product->name}}

-
-
-
-
- -
-
-
-
{{ translate('All Bids') }}
-
-
- -
- - - - - - - - - - - - - - @foreach($bids as $key => $bid) - - - - - - - - - - @endforeach - -
#{{translate('Customer Name')}}{{translate('Email')}}{{translate('Phone')}}{{translate('Bid Amount')}}{{translate('Date')}}{{translate('Options')}}
{{ ($key+1) + ($bids->currentPage() - 1)*$bids->perPage() }}{{ $bid->user->name }}{{ $bid->user->email }}{{ $bid->user->phone }}{{ single_price($bid->amount) }}{{ date('d-m-Y', strtotime($bid->created_at)) }} - - - -
-
- {{ $bids->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ce738cf0731ba6d2c9607935455b46732b9f1d6152f59d916e2421b33e35120d +size 2166 diff --git a/desarrollo/resources/views/auth/login.blade.php b/desarrollo/resources/views/auth/login.blade.php index 4f1537a5..ab1a7510 100644 --- a/desarrollo/resources/views/auth/login.blade.php +++ b/desarrollo/resources/views/auth/login.blade.php @@ -1,91 +1,3 @@ -@extends('backend.layouts.layout') - -@section('content') - -
-
-
-
-
-
-
- @if(get_setting('system_logo_black') != null) - - @else - - @endif -

Bienvenido

-

{{ translate('Login to your account.') }}

-
-
- @csrf -
- - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
-
- - @if ($errors->has('password')) - - {{ $errors->first('password') }} - - @endif -
-
-
-
- -
-
- @if(env('MAIL_USERNAME') != null && env('MAIL_PASSWORD') != null) - - @endif -
- - -
- @if (env("DEMO_MODE") == "On") -
- - - - - - - - -
admin@example.com123456
-
- @endif -
-
-
-
-
-
- - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ff07f9668d5737b62cd9b75d9403d98810943f2635bc75ea7b320ce5daba5596 +size 4957 diff --git a/desarrollo/resources/views/auth/passwords/email.blade.php b/desarrollo/resources/views/auth/passwords/email.blade.php index b6c2c8a8..57a9ea24 100644 --- a/desarrollo/resources/views/auth/passwords/email.blade.php +++ b/desarrollo/resources/views/auth/passwords/email.blade.php @@ -1,140 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - -
-
-
-
-
-

{{ translate('Forgot Password?') }}

-

{{ translate('Enter your email address to recover your password.') }} -

-
- @csrf -
- - @if (addon_is_activated('otp_system')) -
- -
- - - - - -
- -
- @else -
- - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
- @endif - - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
-
- -
-
- -
-
-
-
-
- - -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a88a7000194c70046b7cbfbb1e88e3b9e2a88e1dec1076166c05125ea27ca030 +size 6888 diff --git a/desarrollo/resources/views/auth/passwords/reset.blade.php b/desarrollo/resources/views/auth/passwords/reset.blade.php index b504a081..69309995 100644 --- a/desarrollo/resources/views/auth/passwords/reset.blade.php +++ b/desarrollo/resources/views/auth/passwords/reset.blade.php @@ -1,59 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
-
-

{{ translate('Reset Password') }}

-

{{translate('Enter your email address and new password and confirm password.')}}

-
- @csrf - -
- - - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
- -
- - - @if ($errors->has('code')) - - {{ $errors->first('code') }} - - @endif -
- -
- - - @if ($errors->has('password')) - - {{ $errors->first('password') }} - - @endif -
- -
- -
- -
- -
-
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:74c38018a59d6a7923f05566b1fde05a82183231713178f2f5bf50e83407c4b3 +size 3043 diff --git a/desarrollo/resources/views/auth/register.blade.php b/desarrollo/resources/views/auth/register.blade.php index 79fe4b76..2625b01e 100644 --- a/desarrollo/resources/views/auth/register.blade.php +++ b/desarrollo/resources/views/auth/register.blade.php @@ -1,594 +1,3 @@ - - - - - - - - - La Pieza.DO | Todo lo que buscas! - - - - - - - - - - - - - - - - - {{-- --}} - - - - - - - -
- - -
-
-
- - - - - - - - - -
- -
image
- -
-
- - - - -
- -

Lo que hace - de La Pieza.DO
- una opción única!

- -

Maneja tu inventario, recibe pagos, factura y vende en linea
de la manera segura y - efectiva.

-
- - -
-
-
-
-
- image -
-
-

Datos Seguros

-

Contamos con los estándares internacionales de seguridad y SSL.

-
-
-
- -
-
-
- image -
-
-

Automatización de Servicios

-

Simple para vender, simple para ganar, Todo automatizado.

-
-
-
- -
-
-
- image -
-
-

Inteligencia Artificial

-

Para conocer el comportamiento de compra de tus clientes y ofrecerles lo - mejor.

-
-
-
- -
-
-
- image -
-
-

Tu inventario en linea

-

Te ayudamos a organizar tu inventario, ponerlo en línea y a vender!.

-
-
-
-
- -
- -
- -
- -
- - - -
- -
- -
-
- - - -
-
- - - -
-
- -
- -
- - - -
- -
image
- -
- -
-
- -
-
-

Diseño moderno
y pensado para ti!

-

- Nuestra misión es que tengas una herramienta que te permita realizar tus ventas de - forma rápida y segura y súper fácil de usar. -

-
-
    -
  • -

    Fácil Acceso

    -

    Solo tienes que poner tu email, teléfono, facebook o instagram, tu contraseña y - ¡listo!.

    -
  • -
  • -

    Sincronice con su sistema en la computadora

    -

    Cuando estés en línea, todo se sincroniza en tu computadora, para que puedas - acceder a tu negocio desde cualquier lugar.

    -
  • -
  • -

    Tu inventario a la mano

    -

    Tenemos la gestión de inventario para ti desde tu móvil o computadora, todo con - un solo clic.

    -
  • -
-
-
-
- -
-
- image -
- -
- image - image - image -
-
-
-
- -
- -
- - - -
- -
image
- -
-
-
- -

Cómo funciona La Pieza.DO en 3 sencillos pasos

- -

Usar La Pieza.DO es súper - fácil, solo sigue estos pasos.

-
-
- -
    - -
  • -
    -

    Descarga la app

    -
    - - - -
    -

    Descarga la App en Google Play o Play Store

    -
    -
    -

    01

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Registrate y crea una cuenta

    - Totalmente Gratis! -

    Inicia sesión en la aplicación o en tu computadora. Una cuenta para todos los - dispositivos.

    -
    -
    -

    02

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Todo listo disfruta la app!

    - Si tienes alguna pregunta visita FAQs. -

    Obten la experiencia más increíble.
    Explora y comparte la app.

    -
    -
    -

    03

    -
    -
    - image -
    -
  • -
-
-
-
- -
- -
- -
image
- -
- -
- - - -

FAQ - Preguntas Frecuentes

- - - -

Aqui tenemos todas las respuestas a tus preguntas con respecto al uso de La Pieza.DO. Aquí podrás - - encontrar respuestas rápidas para que puedas utilizar la aplicación.

- -
- - - -
- -
- -
- -
- -

- - - -

- -
- -
- -
- -

No, el registro es totalmente grátis y puedes registrarte como Cliente, Negocio, Taller o Delivery.

- -
- -
- -
- -
- -
- -

- - - -

- -
- -
- -
- -

Para vender, regístrate como Negocio, completa los detalles de tu tienda, publíca tus productos y a vender!

-

Para comprar, regístrate como Comprador y ve al buscador, escribe el nombre o código de tu pieza y haz clic a comprar.

- -
- -
- -
- -
- -
- -

- - - -

- -
- -
- -
- -

Piezas de todo tipo, desde piezas de Vehículos hasta Ferretería y muchas más.

- -
- -
- -
- -
- -
- -

- - - -

- -
- -
- -
- -

La Pieza.DO, es una empresa registrada bajo las leyes de República Dominicana y cuenta con profesionales en el área de E-Commerce, con vasta experiencia y confiabilidad. Todas tus compras están protegidas por la plataforma AZUL, una de las plataformas de pagos en línea más seguras del país.

- -
- -
- -
- -
- -
- -
- -
- - -
- -
-
- -
- -
-
-
-

Descargala grátis para Android y Apple

-

Descarga nuestra app y sácale provecho a tu negocio en línea. Registrate y - descubre lo nuevo que tenemos para ti.

-
- -
-
- - -
-
- image - image -
-
-
- -
-
- -
- - - - -
- -
- image -
-
- - - - - -
- -
- - - - - - - - - - - - - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:c57afba5caaf650f41c345da0c00740e5d988de444140ad50c9a2ee9d1ec22a8 +size 3674 diff --git a/desarrollo/resources/views/auth/verify.blade.php b/desarrollo/resources/views/auth/verify.blade.php index f593ce28..133ece86 100644 --- a/desarrollo/resources/views/auth/verify.blade.php +++ b/desarrollo/resources/views/auth/verify.blade.php @@ -1,25 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
-
-

{{ translate('Verify Your Email Address') }}

-

- {{ translate('Before proceeding, please check your email for a verification link.') }} - {{ translate('If you did not receive the email.') }} -

- {{ translate('Click here to request another') }} - @if (session('resent')) - - @endif -
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c5483eed052a20497eb58fe7261d4b7d718d28885943b3f6f70c5e8525f4c6f2 +size 1145 diff --git a/desarrollo/resources/views/backend/addons/create.blade.php b/desarrollo/resources/views/backend/addons/create.blade.php index 0b957d66..7e19795e 100644 --- a/desarrollo/resources/views/backend/addons/create.blade.php +++ b/desarrollo/resources/views/backend/addons/create.blade.php @@ -1,40 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{ translate('Install/Update Addon')}}
-
-
- @csrf -
-
- -
- -
-
-
- -
-
- -
-
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:36ad98bef6e478e3cbb55e00d88722e6ae17a0d5602c0fb69c34dbf1cd2180a4 +size 1852 diff --git a/desarrollo/resources/views/backend/addons/index.blade.php b/desarrollo/resources/views/backend/addons/index.blade.php index 7a3ffd2c..ac2b8d01 100644 --- a/desarrollo/resources/views/backend/addons/index.blade.php +++ b/desarrollo/resources/views/backend/addons/index.blade.php @@ -1,145 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - - -
-
-
-
-
-
-
-
    - @forelse($addons as $key => $addon) -
  • -
    - Image -
    -

    {{ ucfirst($addon->name) }}

    -
    -
    -

    {{ translate('Version')}}: {{ $addon->version }}

    -
    - @if (env('DEMO_MODE') != 'On') -
    -

    {{ translate('Purchase code')}}: {{ $addon->purchase_code }}

    -
    - @endif -
    - -
    -
    -
  • - @empty -
  • -
    - Image -
    {{ translate('No Addon Installed')}}
    -
    -
  • - @endforelse -
-
-
-
-
-
-
-
- -
-
-
- - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:261105c4ed5a97f5721ad1ec8f1a55ca9437c4ae943e137724b30f190407dd7b +size 7934 diff --git a/desarrollo/resources/views/backend/admin_profile/index.blade.php b/desarrollo/resources/views/backend/admin_profile/index.blade.php index 3ca33e19..f3853a9f 100644 --- a/desarrollo/resources/views/backend/admin_profile/index.blade.php +++ b/desarrollo/resources/views/backend/admin_profile/index.blade.php @@ -1,60 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Profile')}}
-
-
-
- - @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a6c3b10a5debb7ccacd6686e4f6b1ced21eb3c2de1681231498647d492338b55 +size 3460 diff --git a/desarrollo/resources/views/backend/blog_system/blog/create.blade.php b/desarrollo/resources/views/backend/blog_system/blog/create.blade.php index 77695ce0..8120a38d 100644 --- a/desarrollo/resources/views/backend/blog_system/blog/create.blade.php +++ b/desarrollo/resources/views/backend/blog_system/blog/create.blade.php @@ -1,151 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Blog Information')}}
-
-
-
- @csrf -
- -
- -
-
-
- -
- -
-
- - -
- -
- -
-
- -
- -
-
-
-
- {{ translate('Browse')}} -
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
- {{ translate('Browse')}} -
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:da185d7433dd9f71f2e107c659d2166d2b63d325e88bfc97a2aae7ee8d66ca82 +size 7400 diff --git a/desarrollo/resources/views/backend/blog_system/blog/edit.blade.php b/desarrollo/resources/views/backend/blog_system/blog/edit.blade.php index 78fc34c5..ffd7a2f6 100644 --- a/desarrollo/resources/views/backend/blog_system/blog/edit.blade.php +++ b/desarrollo/resources/views/backend/blog_system/blog/edit.blade.php @@ -1,160 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Blog Information')}}
-
-
-
- @csrf - @method('PATCH') -
- -
- -
-
-
- -
- -
-
- - -
- -
- -
-
- -
- -
-
-
-
- {{ translate('Browse')}} -
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
- {{ translate('Browse')}} -
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:9743869c8ef6a0fb735e0efe722b2d8b4cadbf136fb1d5df38c813878ed7e0e7 +size 7997 diff --git a/desarrollo/resources/views/backend/blog_system/blog/index.blade.php b/desarrollo/resources/views/backend/blog_system/blog/index.blade.php index 96cb6bdd..3d125ea4 100644 --- a/desarrollo/resources/views/backend/blog_system/blog/index.blade.php +++ b/desarrollo/resources/views/backend/blog_system/blog/index.blade.php @@ -1,125 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Posts')}}

-
- @can('add_blog') - - @endcan -
-
-
- -
-
-
-
-
{{ translate('All blog posts') }}
-
- -
-
- -
-
-
-
-
- - - - - - - - - - - - - @foreach($blogs as $key => $blog) - - - - - - - - - @endforeach - -
#{{translate('Title')}}{{translate('Category')}}{{translate('Short Description')}}{{translate('Status')}}{{translate('Options')}}
- {{ ($key+1) + ($blogs->currentPage() - 1) * $blogs->perPage() }} - - {{ $blog->title }} - - @if($blog->category != null) - {{ $blog->category->category_name }} - @else - -- - @endif - - {{ $blog->short_description }} - - - - @can('edit_blog') - - - - @endcan - @can('delete_blog') - - - - @endcan -
-
- {{ $blogs->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:027662c0a32520414851f3399a849235a740cd149e9a5e6ab8b8f40becae27aa +size 4997 diff --git a/desarrollo/resources/views/backend/blog_system/category/create.blade.php b/desarrollo/resources/views/backend/blog_system/category/create.blade.php index 2b7283f0..7eea67a1 100644 --- a/desarrollo/resources/views/backend/blog_system/category/create.blade.php +++ b/desarrollo/resources/views/backend/blog_system/category/create.blade.php @@ -1,31 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Blog Category Information')}}
-
-
-
- @csrf -
- -
- -
-
- -
- -
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:98b25df97cd5dcf361f13ad5ae5a2d9f49bec923e9973db7d1c6c3c722f61163 +size 1192 diff --git a/desarrollo/resources/views/backend/blog_system/category/edit.blade.php b/desarrollo/resources/views/backend/blog_system/category/edit.blade.php index 2d8356d5..6cd3a349 100644 --- a/desarrollo/resources/views/backend/blog_system/category/edit.blade.php +++ b/desarrollo/resources/views/backend/blog_system/category/edit.blade.php @@ -1,33 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Blog Category Information')}}
-
-
-
- @csrf - @method('PATCH') - -
- -
- -
-
- -
- -
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b152efc905f5fe6b12c45609c0297c9ffe2673d36f59df5cc46d722b25dbe7 +size 1322 diff --git a/desarrollo/resources/views/backend/blog_system/category/index.blade.php b/desarrollo/resources/views/backend/blog_system/category/index.blade.php index 8e9b9ec2..0e754ebf 100644 --- a/desarrollo/resources/views/backend/blog_system/category/index.blade.php +++ b/desarrollo/resources/views/backend/blog_system/category/index.blade.php @@ -1,70 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{translate('All Blog Categories')}}

-
- @can('add_blog_category') - - @endcan -
-
-
-
-
{{ translate('Blog Categories') }}
-
-
-
- -
-
-
-
-
- - - - - - - - - - @foreach($categories as $key => $category) - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Options')}}
{{ ($key+1) + ($categories->currentPage() - 1)*$categories->perPage() }}{{ $category->category_name }} - @can('edit_blog_category') - - - - @endcan - @can('delete_blog_category') - - - - @endcan -
-
- {{ $categories->appends(request()->input())->links() }} -
-
-
-@endsection - - -@section('modal') -@include('modals.delete_modal') -@endsection - +version https://git-lfs.github.com/spec/v1 +oid sha256:481f554db4e9e33eb8bd91df8822d06889abd1dcad995475bc505699b4bdb872 +size 2863 diff --git a/desarrollo/resources/views/backend/customer/classified_products/index.blade.php b/desarrollo/resources/views/backend/customer/classified_products/index.blade.php index 31fe71d3..c9762f88 100644 --- a/desarrollo/resources/views/backend/customer/classified_products/index.blade.php +++ b/desarrollo/resources/views/backend/customer/classified_products/index.blade.php @@ -1,91 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{translate('Classified Products')}}
-
-
- - - - - - - - - - - - - - @foreach($products as $key => $product) - - - - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Image')}}{{translate('Uploaded By')}}{{translate('Customer Status')}}{{translate('Published')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }}{{$product->getTranslation('name')}}{{translate('Product Image')}}{{$product->added_by}} - @if ($product->status == 1) - {{ translate('PUBLISHED') }} - @else - {{ translate('UNPUBLISHED') }} - @endif - - - - - - - @can('delete_classified_product') - - - - @endcan -
-
- {{ $products->links() }} -
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:91a962b4e8715e02f51338e0ace6a8e1ec46ee336eb2d249260a23e36f1d4611 +size 4279 diff --git a/desarrollo/resources/views/backend/customer/customer_packages/create.blade.php b/desarrollo/resources/views/backend/customer/customer_packages/create.blade.php index 7e55b26b..f2b666fb 100644 --- a/desarrollo/resources/views/backend/customer/customer_packages/create.blade.php +++ b/desarrollo/resources/views/backend/customer/customer_packages/create.blade.php @@ -1,54 +1,3 @@ -@extends('backend.layouts.app') -@section('content') - -
-
-
-
-
{{translate('Create New Package')}}
-
-
-
- @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:eafcc812945e76e8296b4fb61774a1a42e390dab8b1cd923c2cf282c6849b024 +size 2931 diff --git a/desarrollo/resources/views/backend/customer/customer_packages/edit.blade.php b/desarrollo/resources/views/backend/customer/customer_packages/edit.blade.php index 086b651c..1879e4b8 100644 --- a/desarrollo/resources/views/backend/customer/customer_packages/edit.blade.php +++ b/desarrollo/resources/views/backend/customer/customer_packages/edit.blade.php @@ -1,69 +1,3 @@ -@extends('backend.layouts.app') -@section('content') - -
-
-

{{translate('Update Package Information')}}

-
-
- -
-
-
-
- -
- - - @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:06fede60873c63491e1040536cbf1f98a1827766b4e13bb7ed033f85ff4c36f3 +size 4106 diff --git a/desarrollo/resources/views/backend/customer/customer_packages/index.blade.php b/desarrollo/resources/views/backend/customer/customer_packages/index.blade.php index 5f595e8c..32e02b86 100644 --- a/desarrollo/resources/views/backend/customer/customer_packages/index.blade.php +++ b/desarrollo/resources/views/backend/customer/customer_packages/index.blade.php @@ -1,47 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{translate('All Classifies Packages')}}

-
- @can('add_classified_package') - - @endcan -
-
- -
- @foreach ($customer_packages as $key => $customer_package) -
-
-
- {{ translate('Package Logo')}} -

{{$customer_package->getTranslation('name')}}

-

{{single_price($customer_package->amount)}}

-

{{translate('Product Upload') }}: - {{$customer_package->product_upload}} -

-
- @can('edit_classified_package') - {{translate('Edit')}} - @endcan - @can('delete_classified_package') - {{translate('Delete')}} - @endcan -
-
-
-
- @endforeach -
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf1ea0f4b44e38a6b2aa0f68eed0d4e15b9612c537fb8e01355a2f54c81f865 +size 2087 diff --git a/desarrollo/resources/views/backend/customer/customers/index.blade.php b/desarrollo/resources/views/backend/customer/customers/index.blade.php index df8427d2..3a4660eb 100644 --- a/desarrollo/resources/views/backend/customer/customers/index.blade.php +++ b/desarrollo/resources/views/backend/customer/customers/index.blade.php @@ -1,214 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('All Customers')}}

-
-
- - -
-
-
-
-
{{translate('Customers')}}
-
- - - -
-
- -
-
-
- -
- - - - - - - - - - - - - - - @foreach($users as $key => $user) - @if ($user != null) - - - - - - - - - - - @endif - @endforeach - -
-
-
- -
-
-
{{translate('Name')}}{{translate('Email Address')}}{{translate('Phone')}}{{translate('Package')}}{{translate('Wallet Balance')}}{{translate('Options')}}
-
-
- -
-
-
@if($user->banned == 1) @endif {{$user->name}}{{$user->email}}{{$user->phone}} - @if ($user->customer_package != null) - {{$user->customer_package->getTranslation('name')}} - @endif - {{single_price($user->balance)}} - @can('login_as_customer') - - - - @endcan - @can('ban_customer') - @if($user->banned != 1) - - - - @else - - - - @endif - @endcan - @can('delete_customer') - - - - @endcan -
-
- {{ $users->appends(request()->input())->links() }} -
-
-
-
- - - - - -@endsection - -@section('modal') - - @include('modals.delete_modal') - - @include('modals.bulk_delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:f85e8b929e891032fe68475b8ed8121a5a08d25485f1c20e3a50eae94b6b88cb +size 9804 diff --git a/desarrollo/resources/views/backend/dashboard.blade.php b/desarrollo/resources/views/backend/dashboard.blade.php index 76c08323..58ad00f4 100644 --- a/desarrollo/resources/views/backend/dashboard.blade.php +++ b/desarrollo/resources/views/backend/dashboard.blade.php @@ -1,390 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -@if(auth()->user()->can('smtp_settings') && env('MAIL_USERNAME') == null && env('MAIL_PASSWORD') == null) -
-
- {{translate('Please Configure SMTP Setting to work all email sending functionality')}}, - {{ translate('Configure Now') }} -
-
-@endif -@can('admin_dashboard') -
-
-
-
-
-
-
- {{ translate('Total') }} - {{ translate('Customer') }} -
-
- {{ \App\Models\User::where('user_type', 'customer')->where('email_verified_at', '!=', null)->count() }} -
-
- - - -
-
-
-
-
-
- {{ translate('Total') }} - {{ translate('Order') }} -
-
{{ \App\Models\Order::count() }}
-
- - - -
-
-
-
-
-
- {{ translate('Total') }} - {{ translate('Product category') }} -
-
{{ \App\Models\Category::count() }}
-
- - - -
-
-
-
-
-
- {{ translate('Total') }} - {{ translate('Product brand') }} -
-
{{ \App\Models\Brand::count() }}
-
- - - -
-
-
-
- -
-
-
-
-
-
{{ translate('Products') }}
-
-
- -
-
-
-
-
-
-
{{ translate('Sellers') }}
-
-
- -
-
-
-
-
-
- -
-
-
-
-
{{ translate('Category wise product sale') }}
-
-
- -
-
-
-
-
-
-
{{ translate('Category wise product stock') }}
-
-
- -
-
-
-
- -
-
-
{{ translate('Top 12 Products') }}
-
-
- -
-
-@endcan - - -@endsection -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffc01cfbd99929bfa808164961527922a68830daf0914f0054c7b8afbb4177d +size 16727 diff --git a/desarrollo/resources/views/backend/delivery_boys/cancel_request_list.blade.php b/desarrollo/resources/views/backend/delivery_boys/cancel_request_list.blade.php index bedb0208..4538a7b5 100644 --- a/desarrollo/resources/views/backend/delivery_boys/cancel_request_list.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/cancel_request_list.blade.php @@ -1,134 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Cancel Request')}}

-
-
-
- - -
-
-
{{translate('Cancel Requests')}}
-
- -
-
-
- - - - - - - - - - - - @foreach($cancel_requests as $key => $cancel_request) - - - - - - - - - - @endforeach - -
#{{translate('Code')}}{{translate('Request By')}}{{translate('Request At')}}{{translate('Options')}}
{{ ($key+1) + ($cancel_requests->currentPage() - 1) * $cancel_requests->perPage() }} - {{ $cancel_request->code }} - - {{ $cancel_request->delivery_boy->name }} - - {{$cancel_request->cancel_request_at}} - - - - - - -
-
- {{ $cancel_requests->appends(request()->input())->links() }} -
-
-
- - - - - -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a2be27729effbe467a8841eb9b7af0d6d7d1bc561cbf89c2052c439511e18f79 +size 4799 diff --git a/desarrollo/resources/views/backend/delivery_boys/create.blade.php b/desarrollo/resources/views/backend/delivery_boys/create.blade.php index 5291d2cf..c86f4301 100644 --- a/desarrollo/resources/views/backend/delivery_boys/create.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/create.blade.php @@ -1,177 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Delivery Boy Information')}}
-
- -
- @csrf -
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
- -
- -
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1e5b9fe48dcabac7f1c32a5b3f387d242bda430bf7de1f0677e58828cb4dae +size 7484 diff --git a/desarrollo/resources/views/backend/delivery_boys/delivery_boy_configure.blade.php b/desarrollo/resources/views/backend/delivery_boys/delivery_boy_configure.blade.php index 1172a842..19cb7f19 100644 --- a/desarrollo/resources/views/backend/delivery_boys/delivery_boy_configure.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/delivery_boy_configure.blade.php @@ -1,357 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - - -
-
-
-
-
{{ translate('Payment Configuration') }}
-
-
-
- @csrf -
- - - -
- -
-
- - -
- -
- -
-
- - -
- -
-
-
-
-
- -
-
-
-
{{ translate('Notification Configuration') }}
-
-
-
- @csrf -
- - - -
- -
-
-
- - - -
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{ translate('Pickup Location For Delivery Boy') }}
-
-
-
- @csrf - @if (get_setting('google_map') == 1) -
- -
-
    -
  • Full Address:
  • -
  • Postal Code:
  • -
  • Country:
  • -
  • Latitude:
  • -
  • Longitude:
  • -
-
-
-
- -
-
- - -
-
-
-
- -
-
- - -
-
- @else -
-
- -
-
- - -
-
-
-
- -
-
- - -
-
- @endif -
- -
-
-
-
-
-
-@endsection - -@section('script') - - - @if (get_setting('google_map') == 1) - - - - @endif -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:710d4265050f66b98dae0303763a24c37f9c726767470148593d3cb41f0ac3ac +size 18635 diff --git a/desarrollo/resources/views/backend/delivery_boys/delivery_boys_collection_list.blade.php b/desarrollo/resources/views/backend/delivery_boys/delivery_boys_collection_list.blade.php index bcfa8f9d..d167d9cf 100644 --- a/desarrollo/resources/views/backend/delivery_boys/delivery_boys_collection_list.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/delivery_boys_collection_list.blade.php @@ -1,61 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Collection List')}}

-
-
-
- - -
-
-
{{translate('Collection List')}}
-
- -
-
-
- - - - - - - - - - - @foreach($delivery_boy_collections as $key => $delivery_boy_collection) - - - - - - - - @endforeach - -
#{{translate('Delivery Boy')}}{{translate('Collected Amount')}}{{translate('Created At')}}
{{ ($key+1) + ($delivery_boy_collections->currentPage() - 1) * $delivery_boy_collections->perPage() }} - {{ $delivery_boy_collection->user->name }} - - {{ $delivery_boy_collection->collection_amount }} - - {{$delivery_boy_collection->created_at}} -
-
- {{ $delivery_boy_collections->appends(request()->input())->links() }} -
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:15987016ea03391bb6555cf3b646fa8e657a2d7999c4660e483e02b019d5daf2 +size 2258 diff --git a/desarrollo/resources/views/backend/delivery_boys/delivery_boys_payment_list.blade.php b/desarrollo/resources/views/backend/delivery_boys/delivery_boys_payment_list.blade.php index 6b570e82..7b4a79d9 100644 --- a/desarrollo/resources/views/backend/delivery_boys/delivery_boys_payment_list.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/delivery_boys_payment_list.blade.php @@ -1,62 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Payment List')}}

-
-
-
- - -
-
-
{{translate('Payment List')}}
-
- -
-
-
- - - - - - - - - - - @foreach($delivery_boy_payments as $key => $delivery_boy_payment) - - - - - - - - @endforeach - -
#{{translate('Delivery Boy')}}{{translate('Payment Amount')}}{{translate('Created At')}}
{{ ($key+1) + ($delivery_boy_payments->currentPage() - 1) * $delivery_boy_payments->perPage() }} - {{ $delivery_boy_payment->user->name }} - - {{ $delivery_boy_payment->payment }} - - {{$delivery_boy_payment->created_at}} -
-
- {{ $delivery_boy_payments->appends(request()->input())->links() }} -
-
-
- -@endsection - +version https://git-lfs.github.com/spec/v1 +oid sha256:4bb96220520dd8bfce3be5b81c1f03356bcd254a202ca8be65bc7ce254bdcf3e +size 2217 diff --git a/desarrollo/resources/views/backend/delivery_boys/delivery_earning_form.blade.php b/desarrollo/resources/views/backend/delivery_boys/delivery_earning_form.blade.php index c9cc2305..6acaadcd 100644 --- a/desarrollo/resources/views/backend/delivery_boys/delivery_earning_form.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/delivery_earning_form.blade.php @@ -1,57 +1,3 @@ - - - -
- - - -
- - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6fc0f0f171cfc51e71237d70d54246f4fdfe1f7a3e66bb7ff4a4f1957a0781 +size 1866 diff --git a/desarrollo/resources/views/backend/delivery_boys/edit.blade.php b/desarrollo/resources/views/backend/delivery_boys/edit.blade.php index 3a837190..5e4a7753 100644 --- a/desarrollo/resources/views/backend/delivery_boys/edit.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/edit.blade.php @@ -1,187 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Delivery Boy Information')}}
-
- -
- @csrf - -
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
- -
- -
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:80ad394b3b0e8aac10426a4051ff0c3950c36a0d761941c28475504b16ccdcdf +size 8190 diff --git a/desarrollo/resources/views/backend/delivery_boys/index.blade.php b/desarrollo/resources/views/backend/delivery_boys/index.blade.php index ba938b71..48b03813 100644 --- a/desarrollo/resources/views/backend/delivery_boys/index.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/index.blade.php @@ -1,212 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Delivery Boys')}}

-
- @can('add_delivery_boy') - - @endcan -
-
- - -
-
-
{{translate('Delivery Boys')}}
-
-
-
-
- -
-
-
-
-
-
- - - - - - - - - - - - - - @foreach($delivery_boys as $key => $delivery_boy) - @if ($delivery_boy->user != null) - - - - - - - - - - @endif - @endforeach - -
#{{translate('Name')}}{{translate('Email Address')}}{{translate('Phone')}}{{translate('Earning')}}{{translate('Collection')}}{{translate('Options')}}
{{ ($key+1) + ($delivery_boys->currentPage() - 1)*$delivery_boys->perPage() }}@if($delivery_boy->user->banned == 1) @endif {{$delivery_boy->user->name}}{{$delivery_boy->user->email}}{{$delivery_boy->user->phone}} - {{ single_price($delivery_boy->total_earning) }} - - {{ single_price($delivery_boy->total_collection) }} - - - -
-
- {{ $delivery_boys->appends(request()->input())->links() }} -
-
-
- - - - - - - - - -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:f74d9ba0009a3ba9db7c9beac18d9d37bd99797883594d28867bf8003d9b4598 +size 8995 diff --git a/desarrollo/resources/views/backend/delivery_boys/order_collection_form.blade.php b/desarrollo/resources/views/backend/delivery_boys/order_collection_form.blade.php index 6e832ea2..4f58076e 100644 --- a/desarrollo/resources/views/backend/delivery_boys/order_collection_form.blade.php +++ b/desarrollo/resources/views/backend/delivery_boys/order_collection_form.blade.php @@ -1,57 +1,3 @@ - - - -
- - - -
- - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:332415bc5c7f8b8e41ccec4069a255854a8ed7907792952b7bca001a3d6d674d +size 1907 diff --git a/desarrollo/resources/views/backend/downloads/brand.blade.php b/desarrollo/resources/views/backend/downloads/brand.blade.php index 4fb655e0..d10036f8 100644 --- a/desarrollo/resources/views/backend/downloads/brand.blade.php +++ b/desarrollo/resources/views/backend/downloads/brand.blade.php @@ -1,96 +1,3 @@ -
- - - @php - $logo = get_setting('header_logo'); - @endphp - -
- - - - -
- @if($logo != null) - - @else - - @endif -
- -
- -
- -
- - - - - - - - - @foreach ($brands as $key => $brand) - - - - - @endforeach - -
{{translate('Brand Name') }}{{translate('ID') }}
{{ $brand->getTranslation('name') }}{{ $brand->id }}
-
- -
+version https://git-lfs.github.com/spec/v1 +oid sha256:b76cb45c7962808b0c0153b40c51f57cfe35c876ad0eabef6b17a00208c63ae9 +size 1824 diff --git a/desarrollo/resources/views/backend/downloads/category.blade.php b/desarrollo/resources/views/backend/downloads/category.blade.php index 94cc0893..db1b2007 100644 --- a/desarrollo/resources/views/backend/downloads/category.blade.php +++ b/desarrollo/resources/views/backend/downloads/category.blade.php @@ -1,95 +1,3 @@ -
- - - @php - $logo = get_setting('header_logo'); - @endphp - -
- - - - -
- @if($logo != null) - - @else - - @endif -
- -
-
- -
- - - - - - - - - @foreach ($categories as $key => $category) - - - - - @endforeach - -
{{translate('Category Name') }}{{translate('ID') }}
{{ $category->getTranslation('name') }}{{ $category->id }}
-
- -
+version https://git-lfs.github.com/spec/v1 +oid sha256:98aa03768d6b7738bf07940869df4ec7a30ac69e338dbf24670edb77560d1a9d +size 1839 diff --git a/desarrollo/resources/views/backend/downloads/user.blade.php b/desarrollo/resources/views/backend/downloads/user.blade.php index 4998dec9..cd935e8e 100644 --- a/desarrollo/resources/views/backend/downloads/user.blade.php +++ b/desarrollo/resources/views/backend/downloads/user.blade.php @@ -1,100 +1,3 @@ -
- - - @php - $logo = get_setting('header_logo'); - @endphp - -
- - - - -
- @if($logo != null) - - @else - - @endif -
- -
- -
- -
- - - - - - - - - - - @foreach ($users as $key => $user) - - - - - - - @endforeach - -
{{translate('Type') }}{{translate('Name') }}{{translate('ID') }}{{translate('Email') }}
{{ $user->user_type }}{{ $user->name }}{{ $user->id }}{{ $user->email }}
-
- -
+version https://git-lfs.github.com/spec/v1 +oid sha256:c8cb60d0f1f025309fbc490d91b3c6529c2359e2c35fd4fa83000db0efb39da7 +size 1967 diff --git a/desarrollo/resources/views/backend/inc/admin_nav.blade.php b/desarrollo/resources/views/backend/inc/admin_nav.blade.php index db0892fe..901fb730 100644 --- a/desarrollo/resources/views/backend/inc/admin_nav.blade.php +++ b/desarrollo/resources/views/backend/inc/admin_nav.blade.php @@ -1,156 +1,3 @@ -
-
-
- -
-
-
-
-
-
-
- - - -
-
-
- @if (addon_is_activated('pos_system') && auth()->user()->can('pos_manager')) -
-
-
- - - -
-
-
- @endif - -
-
- -
- -
- - {{-- language --}} - @php - if(Session::has('locale')){ - $locale = Session::get('locale', Config::get('app.locale')); - } - else{ - $locale = env('DEFAULT_LANGUAGE'); - } - @endphp -
- -
- - -
-
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:a43488a1a3549362550d3a615094bf4857d4bdf4770f4195e33bfc8aa2f076ad +size 9852 diff --git a/desarrollo/resources/views/backend/inc/admin_sidenav.blade.php b/desarrollo/resources/views/backend/inc/admin_sidenav.blade.php index 53536881..c9104c06 100644 --- a/desarrollo/resources/views/backend/inc/admin_sidenav.blade.php +++ b/desarrollo/resources/views/backend/inc/admin_sidenav.blade.php @@ -1,1264 +1,3 @@ -
-
- -
-
- -
-
    -
- -
-
-
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:04cf46e5da7075c1910513c04f02a3ee952754a88a0718b8729556144b3d2988 +size 87121 diff --git a/desarrollo/resources/views/backend/invoices/invoice.blade.php b/desarrollo/resources/views/backend/invoices/invoice.blade.php index fe71c73f..08acd3dc 100644 --- a/desarrollo/resources/views/backend/invoices/invoice.blade.php +++ b/desarrollo/resources/views/backend/invoices/invoice.blade.php @@ -1,223 +1,3 @@ - - - - {{ translate('INVOICE') }} - - - - - -
- - @php - $logo = get_setting('header_logo'); - @endphp - -
- - - - - -
- @if($logo != null) - - @else - - @endif - {{ translate('INVOICE') }}
- - - - - - - - - - - - - - - - - - - - - -
{{ get_setting('site_name') }}
{{ get_setting('contact_address') }}
{{ translate('Email') }}: {{ get_setting('contact_email') }}{{ translate('Order ID') }}: {{ $order->code }}
{{ translate('Phone') }}: {{ get_setting('contact_phone') }}{{ translate('Order Date') }}: {{ date('d-m-Y', $order->date) }}
- - {{ translate('Payment method') }}: - - - {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }} - -
- -
- -
- - @php - $shipping_address = json_decode($order->shipping_address); - @endphp - - - - - -
{{ translate('Bill to') }}:
{{ $shipping_address->name }}
{{ $shipping_address->address }}, {{ $shipping_address->city }}, @if(isset(json_decode($order->shipping_address)->state)) {{ json_decode($order->shipping_address)->state }} - @endif {{ $shipping_address->postal_code }}, {{ $shipping_address->country }}
{{ translate('Email') }}: {{ $shipping_address->email }}
{{ translate('Phone') }}: {{ $shipping_address->phone }}
-
- -
- - - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - @if ($orderDetail->product != null) - - - - - - - - - @endif - @endforeach - -
{{ translate('Product Name') }}{{ translate('Delivery Type') }}{{ translate('Qty') }}{{ translate('Unit Price') }}{{ translate('Tax') }}{{ translate('Total') }}
- {{ $orderDetail->product->name }} - @if($orderDetail->variation != null) ({{ $orderDetail->variation }}) @endif -
- - @php - $product_stock = json_decode($orderDetail->product->stocks->first(), true); - @endphp - {{translate('SKU')}}: {{ $product_stock['sku'] }} - -
- @if ($order->shipping_type != null && $order->shipping_type == 'home_delivery') - {{ translate('Home Delivery') }} - @elseif ($order->shipping_type == 'pickup_point') - @if ($order->pickup_point != null) - {{ $order->pickup_point->getTranslation('name') }} ({{ translate('Pickip Point') }}) - @else - {{ translate('Pickup Point') }} - @endif - @elseif ($order->shipping_type == 'carrier') - @if ($order->carrier != null) - {{ $order->carrier->name }} ({{ translate('Carrier') }}) -
- {{ translate('Transit Time').' - '.$order->carrier->transit_time }} - @else - {{ translate('Carrier') }} - @endif - @endif -
{{ $orderDetail->quantity }}{{ single_price($orderDetail->price/$orderDetail->quantity) }}{{ single_price($orderDetail->tax/$orderDetail->quantity) }}{{ single_price($orderDetail->price+$orderDetail->tax) }}
-
- -
- - - - - - - - - - - - - -
- @php - $removedXML = ''; - @endphp - {!! str_replace($removedXML,"", QrCode::size(100)->generate($order->code)) !!} - - - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Sub Total') }}{{ single_price($order->orderDetails->sum('price')) }}
{{ translate('Shipping Cost') }}{{ single_price($order->orderDetails->sum('shipping_cost')) }}
{{ translate('Total Tax') }}{{ single_price($order->orderDetails->sum('tax')) }}
{{ translate('Coupon Discount') }}{{ single_price($order->coupon_discount) }}
{{ translate('Grand Total') }}{{ single_price($order->grand_total) }}
-
-
- -
- - +version https://git-lfs.github.com/spec/v1 +oid sha256:39a8fa6ff3abf43ff27f8b6a9df7831b370a2fbee0bc89a0d5649ed811afb2b6 +size 8573 diff --git a/desarrollo/resources/views/backend/layouts/app.blade.php b/desarrollo/resources/views/backend/layouts/app.blade.php index 29dc8805..e7532dda 100644 --- a/desarrollo/resources/views/backend/layouts/app.blade.php +++ b/desarrollo/resources/views/backend/layouts/app.blade.php @@ -1,136 +1,3 @@ - -@if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - -@else - -@endif - - - - - - - - - - - - {{ get_setting('website_name').' | '.get_setting('site_motto') }} - - - - - - - @if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - - @endif - - - - - - - - -
- @include('backend.inc.admin_sidenav') -
- @include('backend.inc.admin_nav') -
-
- @yield('content') -
-
-

© {{ get_setting('site_name') }} v{{ get_setting('current_version') }}

-
-
-
-
- - @yield('modal') - - - - - - @yield('script') - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:ced751db9acd031d5b6d3bb3405557c2a4b0c2ec4b1c3ac4ed17395fbce915f8 +size 6314 diff --git a/desarrollo/resources/views/backend/layouts/blank.blade.php b/desarrollo/resources/views/backend/layouts/blank.blade.php index f38c27af..8db5de57 100644 --- a/desarrollo/resources/views/backend/layouts/blank.blade.php +++ b/desarrollo/resources/views/backend/layouts/blank.blade.php @@ -1,156 +1,3 @@ - - - - - - - - - - - - {{ config('app.name', 'eCommerce') }} - - - {{-- --}} - - - - - - - - - - - - - -
- -
- @yield('content') -
- -
- - - - @yield('script') - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d1947bbf6db0ff502d7cfbb35e50c57cd116612033593b8e534619d9841324 +size 4929 diff --git a/desarrollo/resources/views/backend/layouts/layout.blade.php b/desarrollo/resources/views/backend/layouts/layout.blade.php index 4c465b93..7ec4c67d 100644 --- a/desarrollo/resources/views/backend/layouts/layout.blade.php +++ b/desarrollo/resources/views/backend/layouts/layout.blade.php @@ -1,85 +1,3 @@ - -@if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - -@else - -@endif - - - - - - - - - - - - {{ get_setting('website_name').' | '.get_setting('site_motto') }} - - - - - - - @if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - - @endif - - - - - - - - -
-
- @yield('content') -
-
- - @yield('modal') - - - - - - @yield('script') - - - - - \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:664a481d6a82e39effc555c40f78ceb2c511578cdceeafc3dc3ae3ff53a7c260 +size 3345 diff --git a/desarrollo/resources/views/backend/marketing/coupons/create.blade.php b/desarrollo/resources/views/backend/marketing/coupons/create.blade.php index 7ff3bd54..9ebb1252 100644 --- a/desarrollo/resources/views/backend/marketing/coupons/create.blade.php +++ b/desarrollo/resources/views/backend/marketing/coupons/create.blade.php @@ -1,62 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Coupon Information Adding')}}
-
-
-
- @csrf - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- -
- -
-
- -
- -
-
- -
-
-
-
-
- -@endsection -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8e1a214ff03973fbed7d94d969e0395a489c9445d77f1b921d9ba7e4d66904 +size 2324 diff --git a/desarrollo/resources/views/backend/marketing/coupons/edit.blade.php b/desarrollo/resources/views/backend/marketing/coupons/edit.blade.php index b0887a77..849536a4 100644 --- a/desarrollo/resources/views/backend/marketing/coupons/edit.blade.php +++ b/desarrollo/resources/views/backend/marketing/coupons/edit.blade.php @@ -1,69 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('Coupon Information Update')}}

-
-
- - @csrf -
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- -
- -
-
- -
- -
-
- -
-
-
-
-
- - -@endsection -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:0a02751b424530e616f286803aa606fc30325b48bc0f21d10e0f6bd5d71f8e64 +size 2586 diff --git a/desarrollo/resources/views/backend/marketing/coupons/index.blade.php b/desarrollo/resources/views/backend/marketing/coupons/index.blade.php index f10d8297..8da5db49 100644 --- a/desarrollo/resources/views/backend/marketing/coupons/index.blade.php +++ b/desarrollo/resources/views/backend/marketing/coupons/index.blade.php @@ -1,68 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{translate('All Coupons')}}

-
- @can('add_coupon') - - @endcan -
-
- -
-
-
{{translate('Coupon Information')}}
-
-
- - - - - - - - - - - - - @foreach($coupons as $key => $coupon) - - - - - - - - - @endforeach - -
#{{translate('Code')}}{{translate('Type')}}{{translate('Start Date')}}{{translate('End Date')}}{{translate('Options')}}
{{$key+1}}{{$coupon->code}} - {{ translate(Str::headline($coupon->type)) }} - {{ date('d-m-Y', $coupon->start_date) }}{{ date('d-m-Y', $coupon->end_date) }} - @can('edit_coupon') - - - - @endcan - @can('delete_coupon') - - - - @endcan -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4333c83de18fda70c78b8af0236239cb9ae5b6de9a71e401bea66b4c435a9f +size 2676 diff --git a/desarrollo/resources/views/backend/marketing/flash_deals/create.blade.php b/desarrollo/resources/views/backend/marketing/flash_deals/create.blade.php index a5b9d9d6..2467432d 100644 --- a/desarrollo/resources/views/backend/marketing/flash_deals/create.blade.php +++ b/desarrollo/resources/views/backend/marketing/flash_deals/create.blade.php @@ -1,106 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Flash Deal Information')}}
-
-
-
- @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{ translate('This image is shown as cover banner in flash deal details page.') }} -
-
-
- -
- -
-
- -
- -
- -
-
- -
- {{ translate('If any product has discount or exists in another flash deal, the discount will be replaced by this discount & time limit.') }} -
-
- -
- -
- -
- -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:45c997c20c6b433cf9a41beb19b1688fe75f56f2a7fcdf304961946cc837dd00 +size 5787 diff --git a/desarrollo/resources/views/backend/marketing/flash_deals/edit.blade.php b/desarrollo/resources/views/backend/marketing/flash_deals/edit.blade.php index e8339759..3588107d 100644 --- a/desarrollo/resources/views/backend/marketing/flash_deals/edit.blade.php +++ b/desarrollo/resources/views/backend/marketing/flash_deals/edit.blade.php @@ -1,135 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('Flash Deal Information')}}
-
- -
-
-
-
- -
- @csrf - - - -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- - @php - $start_date = date('d-m-Y H:i:s', $flash_deal->start_date); - $end_date = date('d-m-Y H:i:s', $flash_deal->end_date); - @endphp - -
- -
- -
-
- -
- -
- -
-
- -
- {{ translate('If any product has discount or exists in another flash deal, the discount will be replaced by this discount & time limit.') }} -
- -
-
- -
- -
- -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:752a27790c69c16622bf9b99bcdede796f0f3a25d732242aad5da744c2e8f403 +size 7519 diff --git a/desarrollo/resources/views/backend/marketing/flash_deals/flash_deal_discount.blade.php b/desarrollo/resources/views/backend/marketing/flash_deals/flash_deal_discount.blade.php index 2a4af3b3..2149adf3 100644 --- a/desarrollo/resources/views/backend/marketing/flash_deals/flash_deal_discount.blade.php +++ b/desarrollo/resources/views/backend/marketing/flash_deals/flash_deal_discount.blade.php @@ -1,51 +1,3 @@ -@if(count($product_ids) > 0) - - - - - - - - - - - @foreach ($product_ids as $key => $id) - @php - $product = \App\Models\Product::findOrFail($id); - @endphp - - - - - - - @endforeach - -
- {{translate('Product')}} - - {{translate('Base Price')}} - - {{translate('Discount')}} - - {{translate('Discount Type')}} -
-
-
- -
-
- {{ $product->getTranslation('name') }} -
-
-
- {{ $product->unit_price }} - - - - -
-@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:65e2dfdaee9852bcf6438a2e90ac7b46b1f14ff94b194a2ce627967568451de4 +size 1705 diff --git a/desarrollo/resources/views/backend/marketing/flash_deals/flash_deal_discount_edit.blade.php b/desarrollo/resources/views/backend/marketing/flash_deals/flash_deal_discount_edit.blade.php index 4d9b3cfe..3bd4f805 100644 --- a/desarrollo/resources/views/backend/marketing/flash_deals/flash_deal_discount_edit.blade.php +++ b/desarrollo/resources/views/backend/marketing/flash_deals/flash_deal_discount_edit.blade.php @@ -1,52 +1,3 @@ -@if(count($product_ids) > 0) - - - - - - - - - - - @foreach ($product_ids as $key => $id) - @php - $product = \App\Models\Product::findOrFail($id); - $flash_deal_product = \App\Models\FlashDealProduct::where('flash_deal_id', $flash_deal_id)->where('product_id', $product->id)->first(); - @endphp - - - - - - - @endforeach - -
- {{translate('Product')}} - - {{translate('Base Price')}} - - {{translate('Discount')}} - - {{translate('Discount Type')}} -
-
-
- -
-
- {{ $product->getTranslation('name') }} -
-
-
- {{ $product->unit_price }} - - - - -
-@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:4964a0bcc8374cf876582b0238b0148192639d9e09df3a8afd1eb3a0e206b3a7 +size 2156 diff --git a/desarrollo/resources/views/backend/marketing/flash_deals/index.blade.php b/desarrollo/resources/views/backend/marketing/flash_deals/index.blade.php index cf32c182..03496b74 100644 --- a/desarrollo/resources/views/backend/marketing/flash_deals/index.blade.php +++ b/desarrollo/resources/views/backend/marketing/flash_deals/index.blade.php @@ -1,139 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Flash Deals')}}

-
- @can('add_flash_deal') - - @endcan -
-
- -
-
-
{{translate('Flash Deals')}}
-
-
-
-
- -
-
-
-
-
-
- - - - - - - - - - - - - - - - @foreach($flash_deals as $key => $flash_deal) - - - - - - - - - - - - @endforeach - -
#{{translate('Title')}}{{ translate('Banner') }}{{ translate('Start Date') }}{{ translate('End Date') }}{{ translate('Status') }}{{ translate('Featured') }}{{ translate('Page Link') }}{{translate('Options')}}
{{ ($key+1) + ($flash_deals->currentPage() - 1)*$flash_deals->perPage() }}{{ $flash_deal->getTranslation('title') }}banner{{ date('d-m-Y H:i:s', $flash_deal->start_date) }}{{ date('d-m-Y H:i:s', $flash_deal->end_date) }} - - - - {{ url('flash-deal/'.$flash_deal->slug) }} - @can('edit_flash_deal') - - - - @endcan - @can('delete_flash_deal') - - - - @endcan -
-
-
- {{ $flash_deals->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:9aef0763472768064c49b2df4401f19b7b3d785bda9ec5268ed47bda4fee85b1 +size 5973 diff --git a/desarrollo/resources/views/backend/marketing/newsletters/index.blade.php b/desarrollo/resources/views/backend/marketing/newsletters/index.blade.php index 2d197bb7..54da310a 100644 --- a/desarrollo/resources/views/backend/marketing/newsletters/index.blade.php +++ b/desarrollo/resources/views/backend/marketing/newsletters/index.blade.php @@ -1,56 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Send Newsletter')}}
-
- -
-
- @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c06ecc81bb7028c23939a23faa6a9c8e03e72496d3f6619e2f04210cd455392e +size 3046 diff --git a/desarrollo/resources/views/backend/marketing/subscribers/index.blade.php b/desarrollo/resources/views/backend/marketing/subscribers/index.blade.php index f694ee9e..992b28cb 100644 --- a/desarrollo/resources/views/backend/marketing/subscribers/index.blade.php +++ b/desarrollo/resources/views/backend/marketing/subscribers/index.blade.php @@ -1,47 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{translate('All Subscribers')}}
-
-
- - - - - - - - - - - @foreach($subscribers as $key => $subscriber) - - - - - - - @endforeach - -
#{{translate('Email')}}{{translate('Date')}}{{translate('Options')}}
{{ ($key+1) + ($subscribers->currentPage() - 1)*$subscribers->perPage() }}
{{ $subscriber->email }}
{{ date('d-m-Y', strtotime($subscriber->created_at)) }} - @can('delete_subscriber') - - - - @endcan -
-
-
- {{ $subscribers->appends(request()->input())->links() }} -
-
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9edc85318f131e306449f5959bafc112cd95da3e1775112f6a52f87e0cb239 +size 1831 diff --git a/desarrollo/resources/views/backend/notification/index.blade.php b/desarrollo/resources/views/backend/notification/index.blade.php index accd1ac4..276faa90 100644 --- a/desarrollo/resources/views/backend/notification/index.blade.php +++ b/desarrollo/resources/views/backend/notification/index.blade.php @@ -1,58 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('All Notifications')}}

-
-
- - -
-
-
-
-
-
-
{{translate('Notifications')}}
-
-
-
-
    - @forelse($notifications as $notification) - @if($notification->type == 'App\Notifications\OrderNotification') -
  • -
    -
    -

    - {{ translate('Order code: ') }} - - {{$notification->data['order_code']}} - - {{translate(' has been '. ucfirst(str_replace('_', ' ', $notification->data['status'])))}} -

    - - {{ date("F j Y, g:i a", strtotime($notification->created_at)) }} - -
    -
    -
  • - @endif - - @empty -
  • -
    {{ translate('No notification found') }}
    -
  • - @endforelse -
- - {{ $notifications->links() }} -
-
-
-
-
- -@endsection - +version https://git-lfs.github.com/spec/v1 +oid sha256:d4713a6925618ad2b705bdf2e43ec3a33dc737ce017763704ba6cdb1893249cb +size 1104 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/activation.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/activation.blade.php index e1e93da8..1e13f313 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/activation.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/activation.blade.php @@ -1,45 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -

{{translate('Activate OTP')}}

-
- @foreach ($otp_configurations as $otp_configuration) -
-
-
-

- {{translate(Str::replace('_', ' ',Str::title($otp_configuration->type)).' OTP')}} -

-
-
- -
-
-
- @endforeach -
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a2665ae85b7c658ea11c571feaad6b713575e3628dfbbecc843eb4b8c6529fe5 +size 1773 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/index.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/index.blade.php index ae803f54..c542b8f9 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/index.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/index.blade.php @@ -1,28 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
- - @foreach ($otp_configurations as $otp_configuration) - @include('backend.otp_systems.configurations.partials.'.$otp_configuration->type) - @endforeach - -
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:38d51a5f811b958f0693a0493f7e8bcef3d0e2bb457d202c8d924900a7e26148 +size 710 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/fast2sms.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/fast2sms.blade.php index 55925550..293bda2b 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/fast2sms.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/fast2sms.blade.php @@ -1,76 +1,3 @@ -
-
-
-
{{ translate('Fast2SMS Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:860b50271bf8251de59bb0206dcad028908930cec5122d13b63d9a515807ae14 +size 4087 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/mimo.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/mimo.blade.php index 7c83cb9e..b07616cb 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/mimo.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/mimo.blade.php @@ -1,46 +1,3 @@ -
-
-
-
{{ translate('MIMO Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:579683be08c1f8fbd41fa265cfdce459931154825b595747bd48f7df7b67e532 +size 2337 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/mimsms.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/mimsms.blade.php index 6e6e865e..cff89e8b 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/mimsms.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/mimsms.blade.php @@ -1,46 +1,3 @@ -
-
-
-
{{ translate('MIMSMS Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:b63fdc7878c7f0fdc1ec2abf95263aadc3b15622b42a2bf22374ba4699cad8f2 +size 2321 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/msegat.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/msegat.blade.php index 8cd66901..eaf8dda5 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/msegat.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/msegat.blade.php @@ -1,46 +1,3 @@ -
-
-
-
{{ translate('MSEGAT Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe20dccbef70aa72befdd8dd19a36ddcbc9db394aa02818bd850d05273edd9a +size 2376 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/nexmo.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/nexmo.blade.php index a7c466ae..69fd50b4 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/nexmo.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/nexmo.blade.php @@ -1,50 +1,3 @@ -
-
-
-
{{ translate('Nexmo Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- - - {{translate('Please check this URL for')}} - Sender Identity - {{translate('before setting the sender ID')}} - -
-
-
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0672fab7c2a3fdf4142c83212e8a95dc40e331c16af1435a3ef3c481142c85 +size 2646 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/sparrow.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/sparrow.blade.php index 2dade8bb..b6030468 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/sparrow.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/sparrow.blade.php @@ -1,36 +1,3 @@ -
-
-
-
{{ translate('SPARROW Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:01852ec0a52b66e7c9ad3d5440d54b6f40e23df86acb3631f1ddcde57da68f65 +size 1765 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/ssl_wireless.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/ssl_wireless.blade.php index ea9d7901..a67d553c 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/ssl_wireless.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/ssl_wireless.blade.php @@ -1,46 +1,3 @@ -
-
-
-
{{ translate('SSL Wireless Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:7e27669514acf1e4aed4473893b0f3de0f2a895c7c51a0dd54fbbab97d8c216f +size 2339 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/twillo.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/twillo.blade.php index 4c1901f7..cc0a5a3e 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/twillo.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/twillo.blade.php @@ -1,60 +1,3 @@ -
-
-
-
{{ translate('Twilio Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
- -
- -
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:401ea6876ad4f6a63d773ef6322c7a526b0110e12823babe356be29a47f0fd4b +size 3095 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/partials/zender.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/partials/zender.blade.php index 1f7fa7b4..fdafe38f 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/partials/zender.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/partials/zender.blade.php @@ -1,106 +1,3 @@ -
-
-
-
Zender Credential
-
-
-
- - @csrf -
- -
- -
-
- - The site url of your Zender. Do not add ending slash. -
-
-
- -
- -
-
- - Your Zender API key. Please make sure that it is correct and required permissions are - granted: sms_send, wa_send -
-
-
- -
- -
-
- - Select the sending service. Please make sure that the API key has the following - permissions: sms_send, wa_send -
-
-
- -
- -
-
- - For WhatsApp service only. WhatsApp account ID you want to use for sending. -
-
-
- -
- -
-
- - For SMS service only. Linked device unique ID. Please only enter this field if you - are sending using one of your devices. -
-
-
- -
- -
-
- - For SMS service only. Partner device unique ID or gateway ID. Please only enter this - field if you are sending using a partner device or third party gateway. -
-
-
- -
- -
-
- - For SMS service only. Select the sim slot you want to use for sending the messages. - Please only enter this field if you are sending using your device. This is ignored for - partner devices and third party gateways. -
-
-
- -
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:44737a5c456127ce38c69cdc35949b8d40b61734548cbab132677fae584044c6 +size 6256 diff --git a/desarrollo/resources/views/backend/otp_systems/configurations/sms_templates.blade.php b/desarrollo/resources/views/backend/otp_systems/configurations/sms_templates.blade.php index 935fb12e..4447890a 100644 --- a/desarrollo/resources/views/backend/otp_systems/configurations/sms_templates.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/configurations/sms_templates.blade.php @@ -1,73 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{translate('SMS Templates')}}
-
-
-
-
- -
-
-
- @foreach ($sms_templates as $key => $sms_template) -
-
- - @csrf - @if($sms_template->identifier != 'phone_number_verification' && $sms_template->identifier != 'password_reset') -
-
- -
-
- -
-
- @endif - -
- -
- - {{ ('**N.B : Do Not Change The Variables Like [[ ____ ]].**') }} - @error('body') - {{ $message }} - @enderror -
-
-
- -
- - {{ ('**N.B : Template ID is Required Only for Fast2SMS DLT Manual**') }} -
-
-
- -
-
-
- @endforeach -
-
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf4e210298effffaaf39f00308b59ca022f4da52db1fc728cf9043e9427ea45 +size 5267 diff --git a/desarrollo/resources/views/backend/otp_systems/sms/index.blade.php b/desarrollo/resources/views/backend/otp_systems/sms/index.blade.php index c8e43ecd..175be9aa 100644 --- a/desarrollo/resources/views/backend/otp_systems/sms/index.blade.php +++ b/desarrollo/resources/views/backend/otp_systems/sms/index.blade.php @@ -1,48 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-

{{translate('Send Bulk SMS')}}

-
-
- @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{ ('**N.B : Template ID is Required Only for Fast2SMS DLT Manual **') }} -
-
-
- -
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:aa5e44132c3bec75209cee0f03a843628ed913c577fb5bdc7f465941999d8af5 +size 2348 diff --git a/desarrollo/resources/views/backend/pos/cart.blade.php b/desarrollo/resources/views/backend/pos/cart.blade.php index 6ecc2fd7..4f249e9e 100644 --- a/desarrollo/resources/views/backend/pos/cart.blade.php +++ b/desarrollo/resources/views/backend/pos/cart.blade.php @@ -1,79 +1,3 @@ -
- @php - $subtotal = 0; - $tax = 0; - @endphp - @if (Session::has('pos.cart')) -
    - @forelse (Session::get('pos.cart') as $key => $cartItem) - @php - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - $stock = \App\Models\ProductStock::find($cartItem['stock_id']); - @endphp -
  • -
    -
    -
    - - - -
    -
    -
    -
    {{ $stock->product->name }}
    - {{ $cartItem['variant'] }} -
    -
    -
    {{ single_price($cartItem['price']) }} x {{ $cartItem['quantity'] }}
    -
    {{ single_price($cartItem['price']*$cartItem['quantity']) }}
    -
    -
    - -
    -
    -
  • - @empty -
  • -
    - -

    {{ translate('No Product Added') }}

    -
    -
  • - @endforelse -
- @else -
- -

{{ translate('No Product Added') }}

-
- @endif -
-
-
- {{translate('Sub Total')}} - {{ single_price($subtotal) }} -
-
- {{translate('Tax')}} - {{ single_price($tax) }} -
-
- {{translate('Shipping')}} - {{ single_price(Session::get('pos.shipping', 0)) }} -
-
- {{translate('Discount')}} - {{ single_price(Session::get('pos.discount', 0)) }} -
-
- {{translate('Total')}} - {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }} -
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:b6cf33bd9d6719014d15023025a5d1a26fb0811c4623a50941c6641d3dc22774 +size 4089 diff --git a/desarrollo/resources/views/backend/pos/frontend/seller/pos/guest_shipping_address.blade.php b/desarrollo/resources/views/backend/pos/frontend/seller/pos/guest_shipping_address.blade.php index 1f4415c6..1c27e0b5 100644 --- a/desarrollo/resources/views/backend/pos/frontend/seller/pos/guest_shipping_address.blade.php +++ b/desarrollo/resources/views/backend/pos/frontend/seller/pos/guest_shipping_address.blade.php @@ -1,77 +1,3 @@ -
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:4184946597d37a7b1f6ad1eb64b8d57955043b6d915aa765ddad60374f27a2c2 +size 3054 diff --git a/desarrollo/resources/views/backend/pos/frontend/seller/pos/index.blade.php b/desarrollo/resources/views/backend/pos/frontend/seller/pos/index.blade.php index f980227c..fbb0b381 100644 --- a/desarrollo/resources/views/backend/pos/frontend/seller/pos/index.blade.php +++ b/desarrollo/resources/views/backend/pos/frontend/seller/pos/index.blade.php @@ -1,635 +1,3 @@ -@extends('seller.layouts.app') - -@section('panel_content') - -
-
-
- @csrf -
-
-
-
-
- -
-
-
- -
-
- -
-
-
-
- -
-
-
{{ translate('Loading..') }}
-
-
-
-
-
-
-
-
- -
- -
- -
-
- @php - $subtotal = 0; - $tax = 0; - @endphp - @if (Session::has('pos.cart')) -
    - @forelse (Session::get('pos.cart') as $key => $cartItem) - @php - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - $stock = \App\Models\ProductStock::find($cartItem['stock_id']); - @endphp -
  • -
    -
    -
    - - - -
    -
    -
    -
    {{ $stock->product->name }}
    - {{ $cartItem['variant'] }} -
    -
    -
    {{ single_price($cartItem['price']) }} x {{ $cartItem['quantity'] }}
    -
    {{ single_price($cartItem['price']*$cartItem['quantity']) }}
    -
    -
    - -
    -
    -
  • - @empty -
  • -
    - -

    {{ translate('No Product Added') }}

    -
    -
  • - @endforelse -
- @else -
- -

{{ translate('No Product Added') }}

-
- @endif -
-
-
- {{translate('Sub Total')}} - {{ single_price($subtotal) }} -
-
- {{translate('Tax')}} - {{ single_price($tax) }} -
-
- {{translate('Shipping')}} - {{ single_price(Session::get('pos.shipping', 0)) }} -
-
- {{translate('Discount')}} - {{ single_price(Session::get('pos.discount', 0)) }} -
-
- {{translate('Total')}} - {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }} -
-
-
-
-
- -
-
-
-
-
- -@endsection - -@section('modal') - - - - - - - - - {{-- Offline Payment Modal --}} - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:5db2a53ad5c05fe9b8929540d0f0b5c8576981f6bfa5135ffa35321ed7bb59cf +size 35379 diff --git a/desarrollo/resources/views/backend/pos/frontend/seller/pos/shipping_address.blade.php b/desarrollo/resources/views/backend/pos/frontend/seller/pos/shipping_address.blade.php index 43236221..35488bc2 100644 --- a/desarrollo/resources/views/backend/pos/frontend/seller/pos/shipping_address.blade.php +++ b/desarrollo/resources/views/backend/pos/frontend/seller/pos/shipping_address.blade.php @@ -1,39 +1,3 @@ -
- @foreach (\App\Models\Address::where('user_id',$user_id)->get() as $key => $address) - - @endforeach - -
-
- -
{{ translate('Add New Address') }}
-
-
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:8ca48034b1fe4dbb982e230453b45bb36e1ff4272f1c09925587d9b3676d750d +size 1991 diff --git a/desarrollo/resources/views/backend/pos/guest_shipping_address.blade.php b/desarrollo/resources/views/backend/pos/guest_shipping_address.blade.php index 1f4415c6..1c27e0b5 100644 --- a/desarrollo/resources/views/backend/pos/guest_shipping_address.blade.php +++ b/desarrollo/resources/views/backend/pos/guest_shipping_address.blade.php @@ -1,77 +1,3 @@ -
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:4184946597d37a7b1f6ad1eb64b8d57955043b6d915aa765ddad60374f27a2c2 +size 3054 diff --git a/desarrollo/resources/views/backend/pos/index.blade.php b/desarrollo/resources/views/backend/pos/index.blade.php index c71b8fa4..e23f7dab 100644 --- a/desarrollo/resources/views/backend/pos/index.blade.php +++ b/desarrollo/resources/views/backend/pos/index.blade.php @@ -1,637 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
- @csrf -
-
-
-
-
- -
-
-
- -
-
- -
-
-
-
- -
-
-
{{ translate('Loading..') }}
-
-
-
-
-
-
-
-
- -
- -
- -
-
- @php - $subtotal = 0; - $tax = 0; - @endphp - @if (Session::has('pos.cart')) -
    - @forelse (Session::get('pos.cart') as $key => $cartItem) - @php - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - $stock = \App\Models\ProductStock::find($cartItem['stock_id']); - @endphp -
  • -
    -
    -
    - - - -
    -
    -
    -
    {{ $stock->product->name }}
    - {{ $cartItem['variant'] }} -
    -
    -
    {{ single_price($cartItem['price']) }} x {{ $cartItem['quantity'] }}
    -
    {{ single_price($cartItem['price']*$cartItem['quantity']) }}
    -
    -
    - -
    -
    -
  • - @empty -
  • -
    - -

    {{ translate('No Product Added') }}

    -
    -
  • - @endforelse -
- @else -
- -

{{ translate('No Product Added') }}

-
- @endif -
-
-
- {{translate('Sub Total')}} - {{ single_price($subtotal) }} -
-
- {{translate('Tax')}} - {{ single_price($tax) }} -
-
- {{translate('Shipping')}} - {{ single_price(Session::get('pos.shipping', 0)) }} -
-
- {{translate('Discount')}} - {{ single_price(Session::get('pos.discount', 0)) }} -
-
- {{translate('Total')}} - {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }} -
-
-
-
-
- -
-
-
-
- -@endsection - -@section('modal') - - - - - - - - - {{-- Offline Payment Modal --}} - - -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:435122594061694ec62325b7e378d7dfec309237130739358157a8397012fe9c +size 34783 diff --git a/desarrollo/resources/views/backend/pos/order_summary.blade.php b/desarrollo/resources/views/backend/pos/order_summary.blade.php index 7e1348f6..913a6e13 100644 --- a/desarrollo/resources/views/backend/pos/order_summary.blade.php +++ b/desarrollo/resources/views/backend/pos/order_summary.blade.php @@ -1,116 +1,3 @@ -
-
- @php - $subtotal = 0; - $tax = 0; - @endphp - @if (Session::has('pos.cart')) -
    - @forelse (Session::get('pos.cart') as $key => $cartItem) - @php - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - $stock = \App\Models\ProductStock::find($cartItem['stock_id']); - @endphp -
  • -
    -
    -
    - @if($stock->image == null) - - @else - - @endif - -
    {{ $stock->product->name }}
    - {{ $cartItem['variant'] }} -
    -
    -
    -
    -
    {{ single_price($cartItem['price']) }}
    -
    {{ translate('QTY') }}: {{ $cartItem['quantity'] }}
    -
    -
    -
  • - @empty -
  • -
    - -

    {{ translate('No Product Added') }}

    -
    -
  • - @endforelse -
- @else -
- -

{{ translate('No Product Added') }}

-
- @endif -
-
-
-
-
{{ translate('Customer Info') }}
-
- @if(Session::has('pos.shipping_info') && Session::get('pos.shipping_info')['name'] != null) -
- {{translate('Name')}}: - {{ Session::get('pos.shipping_info')['name'] }} -
-
- {{translate('Email')}}: - {{ Session::get('pos.shipping_info')['email'] }} -
-
- {{translate('Phone')}}: - {{ Session::get('pos.shipping_info')['phone'] }} -
-
- {{translate('Address')}}: - {{ Session::get('pos.shipping_info')['address'] }} -
-
- {{translate('Country')}}: - {{ Session::get('pos.shipping_info')['country'] }} -
-
- {{translate('City')}}: - {{ Session::get('pos.shipping_info')['city'] }} -
-
- {{translate('Postal Code')}}: - {{ Session::get('pos.shipping_info')['postal_code'] }} -
- @else -
- {{ translate('No customer information selected.') }} -
- @endif -
-
- -
- {{translate('Total')}} - {{ single_price($subtotal) }} -
-
- {{translate('Tax')}} - {{ single_price($tax) }} -
-
- {{translate('Shipping')}} - {{ single_price(Session::get('pos.shipping', 0)) }} -
-
- {{translate('Discount')}} - {{ single_price(Session::get('pos.discount', 0)) }} -
-
- {{translate('Total')}} - {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }} -
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c6a3259b0a8dbd574559e10bfe86083b2a3cc553a4db8eedfd4070faf9f8d8 +size 5221 diff --git a/desarrollo/resources/views/backend/pos/pos_activation.blade.php b/desarrollo/resources/views/backend/pos/pos_activation.blade.php index 05dca243..e5348cad 100644 --- a/desarrollo/resources/views/backend/pos/pos_activation.blade.php +++ b/desarrollo/resources/views/backend/pos/pos_activation.blade.php @@ -1,68 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -

{{translate('POS Activation for Seller')}}

-
-
-
-
-
{{translate('POS Activation for Seller')}}
-
-
- -
-
-
-
-
-
-
{{ translate('Thermal Printer Size') }}
-
-
-
- @csrf -
- -
- -
- {{ translate('mm') }} -
-
-
-
- -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e03f2a6907393f3b3cb99ff669a60f041c80cb159a5ef52327e1b187b295d21c +size 2810 diff --git a/desarrollo/resources/views/backend/pos/shipping_address.blade.php b/desarrollo/resources/views/backend/pos/shipping_address.blade.php index 317f0460..8b0b6d6d 100644 --- a/desarrollo/resources/views/backend/pos/shipping_address.blade.php +++ b/desarrollo/resources/views/backend/pos/shipping_address.blade.php @@ -1,43 +1,3 @@ -
- @foreach (\App\Models\Address::where('user_id',$user_id)->get() as $key => $address) - - @endforeach - -
-
- -
{{ translate('Add New Address') }}
-
-
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:f9f735ff5a8039350d3f7c541932625a38607c34ebd2c45d540081608c7fa777 +size 2264 diff --git a/desarrollo/resources/views/backend/pos/thermal_invoice.blade.php b/desarrollo/resources/views/backend/pos/thermal_invoice.blade.php index ce8b56f9..e347a98f 100644 --- a/desarrollo/resources/views/backend/pos/thermal_invoice.blade.php +++ b/desarrollo/resources/views/backend/pos/thermal_invoice.blade.php @@ -1,184 +1,3 @@ - - - - {{ translate('INVOICE') }} - - - - - -
- - @php - $logo = get_setting('header_logo'); - @endphp - -
-
- @if($logo != null) - - @else - - @endif -
-
- {{ get_setting('site_name') }}
- {{ get_setting('contact_address') }}
- {{ translate('Email') }}: {{ get_setting('contact_email') }}
- {{ translate('Phone') }}: {{ get_setting('contact_phone') }}
-
-
{{ translate('RETAIL INVOICE') }}
- - - - - - - - - -
- {{ translate('Order ID') }}: {{ $order->code }} - {{ translate('Date') }}: {{ date('d M Y h:i:sa', $order->date) }}
- {{ translate('Payment method') }}: {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }} -
-
- -
-
-
{{ translate('BILL TO') }}
- - @php - $shipping_address = json_decode($order->shipping_address); - @endphp - - - - -
{{ translate('Name') }}: {{ $shipping_address->name }}
{{ translate('Address') }}: {{ $shipping_address->address }}, {{ $shipping_address->city }}, @if(isset(json_decode($order->shipping_address)->state)) {{ json_decode($order->shipping_address)->state }} - @endif {{ $shipping_address->postal_code }}, {{ $shipping_address->country }}
{{ translate('Email') }}: {{ $shipping_address->email }}
{{ translate('Phone') }}: {{ $shipping_address->phone }}
-
-
- -
- - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - @if ($orderDetail->product != null) - - - - - - - - @endif - @endforeach - -
{{ translate('Product Name') }}{{ translate('Qty') }}{{ translate('Unit Price') }}{{ translate('Tax') }}{{ translate('Total') }}
- {{ $orderDetail->product->name }} - @if($orderDetail->variation != null) ({{ $orderDetail->variation }}) @endif -
- - @php - $product_stock = json_decode($orderDetail->product->stocks->first(), true); - @endphp - {{translate('SKU')}}: {{ $product_stock['sku'] }} - -
{{ $orderDetail->quantity }}{{ single_price($orderDetail->price/$orderDetail->quantity) }}{{ single_price($orderDetail->tax/$orderDetail->quantity) }}{{ single_price($orderDetail->price+$orderDetail->tax) }}
-
- -
- - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Sub Total') }}{{ single_price($order->orderDetails->sum('price')) }}
{{ translate('Shipping Cost') }}{{ single_price($order->orderDetails->sum('shipping_cost')) }}
{{ translate('Total Tax') }}{{ single_price($order->orderDetails->sum('tax')) }}
{{ translate('Coupon Discount') }}{{ single_price($order->coupon_discount) }}
{{ translate('Grand Total') }}{{ single_price($order->grand_total) }}
-
- -
- - +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cf7333440dea59072dff93b635bfabf66b8dac40a5d81d1ceb1d49a9783cde +size 7085 diff --git a/desarrollo/resources/views/backend/pos/variants.blade.php b/desarrollo/resources/views/backend/pos/variants.blade.php index 2087156e..2aacc8bc 100644 --- a/desarrollo/resources/views/backend/pos/variants.blade.php +++ b/desarrollo/resources/views/backend/pos/variants.blade.php @@ -1,35 +1,3 @@ - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:3465394d0e8f8ae4eae41ea805f68f06dca3df91a598ecda22d414621167673b +size 1852 diff --git a/desarrollo/resources/views/backend/product/attribute/attribute_value/edit.blade.php b/desarrollo/resources/views/backend/product/attribute/attribute_value/edit.blade.php index 4d9a5c12..4be85dfc 100644 --- a/desarrollo/resources/views/backend/product/attribute/attribute_value/edit.blade.php +++ b/desarrollo/resources/views/backend/product/attribute/attribute_value/edit.blade.php @@ -1,40 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{ translate('Attribute Value Information') }}
-
- -
-
-
- -
- - - @csrf -
- -
- -
-
- {{--
- -
- -
-
--}} -
- -
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:0c345fb4b435c68690b5265b0f970f8bf69de923f17b1a2ece3b05d801dd4cdc +size 1917 diff --git a/desarrollo/resources/views/backend/product/attribute/attribute_value/index.blade.php b/desarrollo/resources/views/backend/product/attribute/attribute_value/index.blade.php index 0bb67ef2..46ec9a9d 100644 --- a/desarrollo/resources/views/backend/product/attribute/attribute_value/index.blade.php +++ b/desarrollo/resources/views/backend/product/attribute/attribute_value/index.blade.php @@ -1,105 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-

{{ translate('Attribute Detail') }}

-
-
- -
- -
-
-
- - {{ $attribute->getTranslation('name') }} - -
- -
- - - - - - - - - - @foreach ($all_attribute_values as $key => $attribute_value) - - - - - - @endforeach - -
#{{ translate('Value') }}{{ translate('Action') }}
{{ $key + 1 }} - {{ $attribute_value->value }} - - @can('edit_product_attribute_value') - - - - @endcan - @can('delete_product_attribute_value') - - - - @endcan -
-
-
- -
- @can('add_product_attribute_values') -
-
-
-
{{ translate('Add New Attribute Value') }}
-
-
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- @csrf -
- - - - -
-
- - -
-
- -
-
-
-
-
- @endcan -
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:aeacfecd9fa82f39b97df71e32eb9edd12bdbc9871c588a840d2616cfee79545 +size 5230 diff --git a/desarrollo/resources/views/backend/product/attribute/edit.blade.php b/desarrollo/resources/views/backend/product/attribute/edit.blade.php index 6eb45c10..d748dfae 100644 --- a/desarrollo/resources/views/backend/product/attribute/edit.blade.php +++ b/desarrollo/resources/views/backend/product/attribute/edit.blade.php @@ -1,43 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{ translate('Attribute Information') }}
-
- -
-
-
- -
- - - @csrf -
- -
- -
-
- -
- -
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:3a392fa052627106d3b97d72f9c5b9677f2ec249b301320dff5006ba1969d979 +size 2288 diff --git a/desarrollo/resources/views/backend/product/attribute/index.blade.php b/desarrollo/resources/views/backend/product/attribute/index.blade.php index 75366011..703102b4 100644 --- a/desarrollo/resources/views/backend/product/attribute/index.blade.php +++ b/desarrollo/resources/views/backend/product/attribute/index.blade.php @@ -1,98 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-

{{ translate('All Attributes') }}

-
-
- -
-
-
-
-
{{ translate('Attributes') }}
-
-
- - - - - - - - - - - @foreach ($attributes as $key => $attribute) - - - - - - - @endforeach - -
#{{ translate('Name') }}{{ translate('Values') }}{{ translate('Options') }}
{{ $key + 1 }}{{ $attribute->getTranslation('name') }} - @foreach ($attribute->attribute_values as $key => $value) - {{ $value->value }} - @endforeach - - @can('view_product_attribute_values') - - - - @endcan - @can('edit_product_attribute') - - - - @endcan - @can('delete_product_attribute') - - - - @endcan -
-
- {{ $attributes->links() }} -
-
-
-
- @can('add_product_attribute') -
-
-
-
{{ translate('Add New Attribute') }}
-
-
-
- @csrf -
- - -
-
- -
-
-
-
-
- @endcan -
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:5fcabc465e845432f13df95604621a5b1534abfce6d534ba913d726ce85a28f3 +size 5088 diff --git a/desarrollo/resources/views/backend/product/brands/edit.blade.php b/desarrollo/resources/views/backend/product/brands/edit.blade.php index 4baa6b08..bc397f90 100644 --- a/desarrollo/resources/views/backend/product/brands/edit.blade.php +++ b/desarrollo/resources/views/backend/product/brands/edit.blade.php @@ -1,72 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('Brand Information')}}
-
- -
-
-
- -
- - - @csrf -
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:864116333c943271f6b56f28ed6dd0b2dfe7832f07e8e6189784d48565b634bc +size 3971 diff --git a/desarrollo/resources/views/backend/product/brands/index.blade.php b/desarrollo/resources/views/backend/product/brands/index.blade.php index ce827e43..18f549ae 100644 --- a/desarrollo/resources/views/backend/product/brands/index.blade.php +++ b/desarrollo/resources/views/backend/product/brands/index.blade.php @@ -1,121 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('All Brands')}}

-
-
- -
-
-
-
-
-
{{ translate('Brands') }}
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - @foreach($brands as $key => $brand) - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Logo')}}{{translate('Options')}}
{{ ($key+1) + ($brands->currentPage() - 1)*$brands->perPage() }}{{ $brand->getTranslation('name') }} - {{translate('Brand')}} - - @can('edit_brand') - - - - @endcan - @can('delete_brand') - - - - @endcan -
-
- {{ $brands->appends(request()->input())->links() }} -
-
-
-
- @can('add_brand') -
-
-
-
{{ translate('Add New Brand') }}
-
-
-
- @csrf -
- - -
-
- -
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- - -
-
- - -
-
- -
-
-
-
-
- @endcan -
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:4e60ecb478bc8bf738d4d13f2519d0f72fe1e7ed4bf0ce35d19f2bbef0811cd5 +size 4523 diff --git a/desarrollo/resources/views/backend/product/bulk_upload/index.blade.php b/desarrollo/resources/views/backend/product/bulk_upload/index.blade.php index b9d02ec1..d60db7da 100644 --- a/desarrollo/resources/views/backend/product/bulk_upload/index.blade.php +++ b/desarrollo/resources/views/backend/product/bulk_upload/index.blade.php @@ -1,59 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{translate('Product Bulk Upload')}}
-
-
-
- {{ translate('Step 1')}}: -

1. {{translate('Download the skeleton file and fill it with proper data')}}.

-

2. {{translate('You can download the example file to understand how the data must be filled')}}.

-

3. {{translate('Once you have downloaded and filled the skeleton file, upload it in the form below and submit')}}.

-

4. {{translate('After uploading products you need to edit them and set product\'s images and choices')}}.

-
-
- -
- {{translate('Step 2')}}: -

1. {{translate('Category and Brand should be in numerical id')}}.

-

2. {{translate('You can download the pdf to get Category and Brand id')}}.

-
-
- -
-
-
- -
-
-
{{translate('Upload Product File')}}
-
-
-
- @csrf -
-
-
- -
-
-
-
- -
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf3b8288e87124e8ed9313ad569ba52d6da33bc2a198fa06e39518d367064f3 +size 2944 diff --git a/desarrollo/resources/views/backend/product/categories/create.blade.php b/desarrollo/resources/views/backend/product/categories/create.blade.php index 24314eab..e62f2376 100644 --- a/desarrollo/resources/views/backend/product/categories/create.blade.php +++ b/desarrollo/resources/views/backend/product/categories/create.blade.php @@ -1,142 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -@php - CoreComponentRepository::instantiateShopRepository(); - CoreComponentRepository::initializeCache(); -@endphp - -
-
-
-
-
{{translate('Category Information')}}
-
-
-
- @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- - {{translate('Higher number has high priority')}} -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
- -
- -
- -
-
- @if (get_setting('category_wise_commission') == 1) -
- -
- -
- % -
-
-
- @endif -
- -
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:f04cd372529eece8880fab0ce793a4db2cc746efaf0eda02785fc76c474cfa0c +size 8617 diff --git a/desarrollo/resources/views/backend/product/categories/edit.blade.php b/desarrollo/resources/views/backend/product/categories/edit.blade.php index 9914c5fc..a3025f8e 100644 --- a/desarrollo/resources/views/backend/product/categories/edit.blade.php +++ b/desarrollo/resources/views/backend/product/categories/edit.blade.php @@ -1,161 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -@php - CoreComponentRepository::instantiateShopRepository(); - CoreComponentRepository::initializeCache(); -@endphp - -
-
{{translate('Category Information')}}
-
- -
-
-
-
- -
- - - @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- - {{translate('Higher number has high priority')}} -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- @if (get_setting('category_wise_commission') == 1) -
- -
- -
- % -
-
-
- @endif -
- -
- -
-
-
- -
-
-
-
-
-
- - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:9b20c68187f845b6d8ea038e65dbb75bac05bb8af63c3a281b5f84a91b3f7c03 +size 10410 diff --git a/desarrollo/resources/views/backend/product/categories/index.blade.php b/desarrollo/resources/views/backend/product/categories/index.blade.php index 99a0e393..de3db164 100644 --- a/desarrollo/resources/views/backend/product/categories/index.blade.php +++ b/desarrollo/resources/views/backend/product/categories/index.blade.php @@ -1,147 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -@php - CoreComponentRepository::instantiateShopRepository(); - CoreComponentRepository::initializeCache(); -@endphp - -
-
-
-

{{translate('All Categories')}}

-
- @can('add_product_category') - - @endcan -
-
-
-
-
{{ translate('Categories') }}
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - @foreach($categories as $key => $category) - - - - - - - - - - - - - - @endforeach - -
#{{translate('Name')}}{{ translate('Parent Category') }}{{ translate('Order Level') }}{{ translate('Level') }}{{translate('Banner')}}{{translate('Icon')}}{{translate('Cover Image')}}{{translate('Featured')}}{{translate('Commission')}}{{translate('Options')}}
{{ ($key+1) + ($categories->currentPage() - 1)*$categories->perPage() }}{{ $category->getTranslation('name') }} - @php - $parent = \App\Models\Category::where('id', $category->parent_id)->first(); - @endphp - @if ($parent != null) - {{ $parent->getTranslation('name') }} - @else - — - @endif - {{ $category->order_level }}{{ $category->level }} - @if($category->banner != null) - {{translate('Banner')}} - @else - — - @endif - - @if($category->icon != null) - - {{translate('icon')}} - - @else - — - @endif - - @if($category->icon != null) - {{translate('Cover Image')}} - @else - — - @endif - - - {{ $category->commision_rate }} % - @can('edit_product_category') - - - - @endcan - @can('delete_product_category') - - - - @endcan -
-
- {{ $categories->appends(request()->input())->links() }} -
-
-
-@endsection - - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8ff3ba4c57bb14fd3e54d11386ed45a1793ccf7f4df8631a78d4d5d74f4663 +size 7001 diff --git a/desarrollo/resources/views/backend/product/color/edit.blade.php b/desarrollo/resources/views/backend/product/color/edit.blade.php index cfe55e86..9c6387cc 100644 --- a/desarrollo/resources/views/backend/product/color/edit.blade.php +++ b/desarrollo/resources/views/backend/product/color/edit.blade.php @@ -1,48 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('Color Information')}}
-
- -
-
-
- @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- - @csrf -
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:87491644601e7e12064b2d96b17d825f6d32d63b8dc202eb25fccfe7890fb5bb +size 1914 diff --git a/desarrollo/resources/views/backend/product/color/index.blade.php b/desarrollo/resources/views/backend/product/color/index.blade.php index b9044c9c..aa6fc2b8 100644 --- a/desarrollo/resources/views/backend/product/color/index.blade.php +++ b/desarrollo/resources/views/backend/product/color/index.blade.php @@ -1,143 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{ translate('All Colors') }}

-
-
- -
-
-
-
-
-
{{ translate('Colors') }}
-
-
- -
-
-
-
- -
- - - - - - - - - - @foreach ($colors as $key => $color) - - - - - - @endforeach - -
#{{ translate('Name') }}{{ translate('Options') }}
{{ ($key+1) + ($colors->currentPage() - 1)*$colors->perPage() }}{{ $color->name }} - @can('edit_color') - - - - @endcan - @can('delete_color') - - - - @endcan -
-
- {{ $colors->appends(request()->input())->links() }} -
-
-
-
- @can('add_color') -
-
-
-
{{ translate('Add New Color') }}
-
-
- @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- @csrf -
- - -
-
- - -
-
- -
-
-
-
-
-
-

{{translate('Color filter activation')}}

-
-
- -
-
-
- @endcan -
- - -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:4d9f3b87a1a3fd9b23dfa4ef7b89984c8e592661374d85a37550ec0d61c46e40 +size 6812 diff --git a/desarrollo/resources/views/backend/product/digital_products/create.blade.php b/desarrollo/resources/views/backend/product/digital_products/create.blade.php index 07bfd119..b1a8e9e6 100644 --- a/desarrollo/resources/views/backend/product/digital_products/create.blade.php +++ b/desarrollo/resources/views/backend/product/digital_products/create.blade.php @@ -1,230 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{ translate('Add New Digital Product') }}
-
-
-
-
- @csrf - -
-
-
{{ translate('General') }}
-
- -
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
-
-
{{ translate('Images') }}
-
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{ translate('Meta Tags') }}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
-
-
{{ translate('Price') }}
-
-
-
- -
- -
-
-
- -
- -
-
- @foreach (\App\Models\Tax::where('tax_status', 1)->get() as $tax) -
- -
- - -
-
- -
-
- @endforeach -
- -
- -
-
-
- -
- -
-
- -
-
-
-
-
-
-
{{ translate('Product Information') }}
-
-
-
- -
- -
-
-
-
-
- -
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:274da23d2cdb886fabec3154700bb7da0cbac4fab6ee83ce6cf87e68c8075eed +size 13882 diff --git a/desarrollo/resources/views/backend/product/digital_products/edit.blade.php b/desarrollo/resources/views/backend/product/digital_products/edit.blade.php index ea4b84f8..3cc7eeb2 100644 --- a/desarrollo/resources/views/backend/product/digital_products/edit.blade.php +++ b/desarrollo/resources/views/backend/product/digital_products/edit.blade.php @@ -1,284 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{ translate('Edit Digital Product') }}
-
-
-
-
- - - - @csrf -
-
- -
-
-
-
-
{{ translate('General') }}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
-
-
{{ translate('Images') }}
-
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{ translate('Meta Tags') }}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
-
-
{{ translate('Price') }}
-
-
-
- -
- -
-
-
- -
- -
-
- - @foreach (\App\Models\Tax::where('tax_status', 1)->get() as $tax) - @php - $tax_amount = 0; - $tax_type = ''; - foreach ($tax->product_taxes as $row) { - if ($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp -
- -
- - -
-
- -
-
- @endforeach - - @php - $start_date = $product->discount_start_date ? date('d-m-Y H:i:s', $product->discount_start_date) : null; - $end_date = $product->discount_end_date ? date('d-m-Y H:i:s', $product->discount_end_date) : null; - @endphp - -
- -
- -
-
- -
- -
- -
-
- -
-
-
-
-
-
-
{{ translate('Description') }}
-
-
-
- -
- -
-
-
-
-
- -
-
- -
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:586b00b0663f488ea074fb4f7c2efdb3e3f83479dd239b212638e0119cdf0ad1 +size 17544 diff --git a/desarrollo/resources/views/backend/product/digital_products/index.blade.php b/desarrollo/resources/views/backend/product/digital_products/index.blade.php index f9712f09..72e8b206 100644 --- a/desarrollo/resources/views/backend/product/digital_products/index.blade.php +++ b/desarrollo/resources/views/backend/product/digital_products/index.blade.php @@ -1,164 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
- @can('add_digital_product') - - @endcan -
- - -
-
-
-
{{ translate('Digital Products') }}
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - - - @foreach($products as $key => $product) - - - - - - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Added By')}}{{translate('Photo')}}{{translate('Base Price')}}{{translate('Todays Deal')}}{{translate('Published')}}{{translate('Featured')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }}{{ $product->getTranslation('name') }}{{ ucfirst($product->added_by) }} - Image - {{ number_format($product->unit_price,2) }} - - - - - - - @can('add_digital_product') - - - - @endcan - @can('add_digital_product') - - - - @endcan - @can('add_digital_product') - - - - @endcan -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
- - -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:9a36adf98ffedfdec727fa7fb19d42be8e4019031b23b0f9e9fd6f4287b785ac +size 9070 diff --git a/desarrollo/resources/views/backend/product/products/create.blade.php b/desarrollo/resources/views/backend/product/products/create.blade.php index a86fe27f..b29173bc 100644 --- a/desarrollo/resources/views/backend/product/products/create.blade.php +++ b/desarrollo/resources/views/backend/product/products/create.blade.php @@ -1,789 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -@php - CoreComponentRepository::instantiateShopRepository(); - CoreComponentRepository::initializeCache(); -@endphp - -
-
{{translate('Add New Product')}}
-
-
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
-
-
- @csrf - -
-
-
{{translate('Product Information')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{translate('This is used for search. Input those words by which cutomer can find this product.')}} -
-
- - @if (addon_is_activated('pos_system')) -
- -
- -
-
- @endif - - @if (addon_is_activated('refund_request')) -
- -
- -
-
- @endif -
-
-
-
-
{{translate('Product Images')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('These images are visible in product details page gallery. Use 600x600 sizes images.')}} -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.')}} -
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- - {{translate("Use proper link without extra parameter. Don't use short share link/embeded iframe code.")}} -
-
-
-
-
-
-
{{translate('Product Variation')}}
-
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-

{{ translate('Choose the attributes of this product and then input values of each attribute') }}

-
-
- -
- -
-
-
-
-
-
{{translate('Product price + stock')}}
-
-
-
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- - @if(addon_is_activated('club_point')) -
- -
- -
-
- @endif - -
-
- -
- -
-
-
- -
- -
-
-
-
- -
- - {{translate('Leave it blank if you do not use external site link')}} -
-
-
- -
- - {{translate('Leave it blank if you do not use external site link')}} -
-
-
-
- -
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
- -
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Low Stock Quantity Warning')}}
-
-
-
- - -
-
-
- -
-
-
- {{translate('Stock Visibility State')}} -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
- -
- -
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Featured')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Todays Deal')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Flash Deal')}}
-
-
-
- - -
- -
- - -
-
- - -
-
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
- -
-
-
-
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:325ddeb37913bfa96281020afc06ff22add1d22f2b2840e4e62d4c79da6c06bf +size 42008 diff --git a/desarrollo/resources/views/backend/product/products/edit.blade.php b/desarrollo/resources/views/backend/product/products/edit.blade.php index 32ce3b19..e3165c27 100644 --- a/desarrollo/resources/views/backend/product/products/edit.blade.php +++ b/desarrollo/resources/views/backend/product/products/edit.blade.php @@ -1,891 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-

{{ translate('Edit Product') }}

-
-
- @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
-
-
- - - - @csrf -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- - @if (addon_is_activated('pos_system')) -
- -
- -
-
- @endif - - @if (addon_is_activated('refund_request')) -
- -
- - -
-
- @endif -
-
-
-
-
{{translate('Product Images')}}
-
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- {{--
- -
-
- @if(is_array(json_decode($product->photos))) - @foreach (json_decode($product->photos) as $key => $photo) -
-
- - - -
-
- @endforeach - @endif -
-
-
--}} - {{--
- -
-
- @if ($product->thumbnail_img != null) -
-
- - - -
-
- @endif -
-
-
--}} -
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
-
-
-
-
{{translate('Product Variation')}}
-
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-

{{ translate('Choose the attributes of this product and then input values of each attribute') }}

-
-
- -
- @foreach (json_decode($product->choice_options) as $key => $choice_option) -
-
- - -
-
- - {{-- --}} -
-
- @endforeach -
-
-
-
-
-
{{translate('Product price + stock')}}
-
-
-
- -
- -
-
- - @php - $start_date = date('d-m-Y H:i:s', $product->discount_start_date); - $end_date = date('d-m-Y H:i:s', $product->discount_end_date); - @endphp - -
- -
- discount_start_date && $product->discount_end_date) value="{{ $start_date.' to '.$end_date }}" @endif name="date_range" placeholder="{{translate('Select Date')}}" data-time-picker="true" data-format="DD-MM-Y HH:mm:ss" data-separator=" to " autocomplete="off"> -
-
- -
- -
- -
-
- -
-
- - @if(addon_is_activated('club_point')) -
- -
- -
-
- @endif - -
-
- -
- -
-
-
- -
- -
-
-
-
- -
- - {{translate('Leave it blank if you do not use external site link')}} -
-
-
- -
- - {{translate('Leave it blank if you do not use external site link')}} -
-
-
-
- -
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
-
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Low Stock Quantity Warning')}}
-
-
-
- - -
-
-
- -
-
-
- {{translate('Stock Visibility State')}} -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
-
-
- -
- -
-
-
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
-
-
-
{{translate('Featured')}}
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
{{translate('Todays Deal')}}
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
{{translate('Flash Deal')}}
-
-
-
- - -
- -
- - -
-
- - -
-
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - - @php - $tax_amount = 0; - $tax_type = ''; - foreach($tax->product_taxes as $row) { - if($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
-
- -
-
-
-
-
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae3637aa640b3185e61c93947206c743de125333edfc92dd928a616339f9e27 +size 50919 diff --git a/desarrollo/resources/views/backend/product/products/index.blade.php b/desarrollo/resources/views/backend/product/products/index.blade.php index 8d7a24b5..f8127d61 100644 --- a/desarrollo/resources/views/backend/product/products/index.blade.php +++ b/desarrollo/resources/views/backend/product/products/index.blade.php @@ -1,360 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -@php - CoreComponentRepository::instantiateShopRepository(); - CoreComponentRepository::initializeCache(); -@endphp - -
-
-
-

{{translate('All products')}}

-
- @if($type != 'Seller' && auth()->user()->can('add_new_product')) - - @endif -
-
-
- -
-
-
-
-
{{ translate('All Product') }}
-
- - @can('product_delete') - - @endcan - - @if($type == 'Seller') -
- -
- @endif - @if($type == 'All') -
- -
- @endif -
- -
-
-
- -
-
-
- -
- - - - @if(auth()->user()->can('product_delete')) - - @else - - @endif - - @if($type == 'Seller' || $type == 'All') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'Seller') - - @endif - - - - - - @foreach($products as $key => $product) - - @if(auth()->user()->can('product_delete')) - - @else - - @endif - - @if($type == 'Seller' || $type == 'All') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'Seller') - - @endif - - - - @endforeach - -
-
-
- -
-
-
#{{translate('Name')}}{{translate('Added By')}}{{translate('Info')}}{{translate('Total Stock')}}{{translate('Todays Deal')}}{{translate('Published')}}{{translate('Approved')}}{{translate('Featured')}}{{translate('Options')}}
-
- -
-
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
{{ optional($product->user)->name }} - {{translate('Num of Sale')}}: {{ $product->num_of_sale }} {{translate('times')}}
- {{translate('Base Price')}}: {{ single_price($product->unit_price) }}
- {{translate('Rating')}}: {{ $product->rating }}
-
- @php - $qty = 0; - if($product->variant_product) { - foreach ($product->stocks as $key => $stock) { - $qty += $stock->qty; - echo $stock->variant.' - '.$stock->qty.'
'; - } - } - else { - //$qty = $product->current_stock; - $qty = optional($product->stocks->first())->qty; - echo $qty; - } - @endphp - @if($qty <= $product->low_stock_quantity) - Low - @endif -
- - - - - - - - - - - - @can('product_edit') - @if ($type == 'Seller') - - - - @else - - - - @endif - @endcan - @can('product_duplicate') - - - - @endcan - @can('product_delete') - - - - @endcan -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - - @include('modals.delete_modal') - - @include('modals.bulk_delete_modal') -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:2107b1c4a91b79b9c3d99350f5e2c73e818174fdf7eb5861af890022f2c63c56 +size 18112 diff --git a/desarrollo/resources/views/backend/product/products/sku_combinations.blade.php b/desarrollo/resources/views/backend/product/products/sku_combinations.blade.php index 4ef13c26..6597e4ce 100644 --- a/desarrollo/resources/views/backend/product/products/sku_combinations.blade.php +++ b/desarrollo/resources/views/backend/product/products/sku_combinations.blade.php @@ -1,78 +1,3 @@ -@if(count($combinations) > 0) - - - - - - - - - - - - @foreach ($combinations as $key => $combination) - @php - $sku = ''; - foreach (explode(' ', $product_name) as $key => $value) { - $sku .= substr($value, 0, 1); - } - - $str = ''; - foreach ($combination as $key => $item){ - if($key > 0 ){ - $str .= '-'.str_replace(' ', '', $item); - $sku .='-'.str_replace(' ', '', $item); - } - else{ - if($colors_active == 1){ - $color_name = \App\Models\Color::where('code', $item)->first()->name; - $str .= $color_name; - $sku .='-'.$color_name; - } - else{ - $str .= str_replace(' ', '', $item); - $sku .='-'.str_replace(' ', '', $item); - } - } - } - @endphp - @if(strlen($str) > 0) - - - - - - - - @endif - @endforeach - -
- {{translate('Variant')}} - - {{translate('Variant Price')}} - - {{translate('SKU')}} - - {{translate('Quantity')}} - - {{translate('Photo')}} -
- - - - - - - - -
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:fef9df2fd2f5860f21a0325852d583aaa1603404f973fe41323539a72b3e88c5 +size 2223 diff --git a/desarrollo/resources/views/backend/product/products/sku_combinations_edit.blade.php b/desarrollo/resources/views/backend/product/products/sku_combinations_edit.blade.php index 8a187c50..4d8261ae 100644 --- a/desarrollo/resources/views/backend/product/products/sku_combinations_edit.blade.php +++ b/desarrollo/resources/views/backend/product/products/sku_combinations_edit.blade.php @@ -1,118 +1,3 @@ -@if(count($combinations) > 0) - - - - - - - - - - - - - @foreach ($combinations as $key => $combination) - @php - $variation_available = false; - $sku = ''; - foreach (explode(' ', $product_name) as $key => $value) { - $sku .= substr($value, 0, 1); - } - - $str = ''; - foreach ($combination as $key => $item){ - if($key > 0 ) { - $str .= '-'.str_replace(' ', '', $item); - $sku .='-'.str_replace(' ', '', $item); - } - else { - if($colors_active == 1) { - $color_name = \App\Models\Color::where('code', $item)->first()->name; - $str .= $color_name; - $sku .='-'.$color_name; - } - else { - $str .= str_replace(' ', '', $item); - $sku .='-'.str_replace(' ', '', $item); - } - } - $stock = $product->stocks->where('variant', $str)->first(); - // if($stock != null) { - // $variation_available = true; - // } - } - @endphp - @if(strlen($str) > 0) - - - - - - - - @endif - @endforeach - - -
- {{translate('Variant')}} - - {{translate('Variant Price')}} - - {{translate('SKU')}} - - {{translate('Quantity')}} - - {{translate('Photo')}} -
- - - - - - - - -
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:026038325e18ae00927239c2d04ead3658bd8e5eb80d177fd93d80897e375a02 +size 4791 diff --git a/desarrollo/resources/views/backend/product/reviews/index.blade.php b/desarrollo/resources/views/backend/product/reviews/index.blade.php index d9e75046..159a2ec0 100644 --- a/desarrollo/resources/views/backend/product/reviews/index.blade.php +++ b/desarrollo/resources/views/backend/product/reviews/index.blade.php @@ -1,105 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('Product Reviews')}}

-
-
- -
-
-
-
-
{{translate('Product Reviews')}}
- -
-
-
-
- -
-
-
-
-
-
- - - - - - - - - - - - - - @foreach($reviews as $key => $review) - @if ($review->product != null && $review->user != null) - - - - - - - - - - @endif - @endforeach - -
#{{translate('Product')}}{{translate('Product Owner')}}{{translate('Customer')}}{{translate('Rating')}}{{translate('Comment')}}{{translate('Published')}}
{{ ($key+1) + ($reviews->currentPage() - 1)*$reviews->perPage() }} - {{ $review->product->getTranslation('name') }} - {{ $review->product->added_by }}{{ $review->user->name }} ({{ $review->user->email }}){{ $review->rating }}{{ $review->comment }} - -
-
- {{ $reviews->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:714e8e4a11520e5703744998d12f16d53d4cab8da0c374a77317be66bbce51d8 +size 4535 diff --git a/desarrollo/resources/views/backend/reports/commission_history_report.blade.php b/desarrollo/resources/views/backend/reports/commission_history_report.blade.php index cc231076..e6db97cb 100644 --- a/desarrollo/resources/views/backend/reports/commission_history_report.blade.php +++ b/desarrollo/resources/views/backend/reports/commission_history_report.blade.php @@ -1,19 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('Commission History report')}}

-
-
- -
-
-
- @include('backend.reports.partials.commission_history_section') -
-
-
- -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ecf55489b3fdf695311d79d4a5739977a52b407b899674e187c25174f0be3d +size 424 diff --git a/desarrollo/resources/views/backend/reports/in_house_sale_report.blade.php b/desarrollo/resources/views/backend/reports/in_house_sale_report.blade.php index 46b81f87..7662f590 100644 --- a/desarrollo/resources/views/backend/reports/in_house_sale_report.blade.php +++ b/desarrollo/resources/views/backend/reports/in_house_sale_report.blade.php @@ -1,58 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('Inhouse Product sale report')}}

-
-
- -
-
-
-
-
-
- -
- -
-
- -
-
-
- - - - - - - - - - - @foreach ($products as $key => $product) - - - - - - @endforeach - -
#{{ translate('Product Name') }}{{ translate('Num of Sale') }}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }}{{ $product->getTranslation('name') }}{{ $product->num_of_sale }}
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:1a08e444b8cef617a7616085919a89ec858a9dbbb1e7578840b2a706f1df171a +size 2522 diff --git a/desarrollo/resources/views/backend/reports/partials/commission_history_section.blade.php b/desarrollo/resources/views/backend/reports/partials/commission_history_section.blade.php index 6dbf4562..2084cdcd 100644 --- a/desarrollo/resources/views/backend/reports/partials/commission_history_section.blade.php +++ b/desarrollo/resources/views/backend/reports/partials/commission_history_section.blade.php @@ -1,65 +1,3 @@ -
-
-
-
{{ translate('Commission History') }}
-
- @if(Auth::user()->user_type != 'seller') -
- -
- @endif -
-
- -
-
-
- -
-
-
-
- - - - - - - - - - - - - @foreach ($commission_history as $key => $history) - - - - - - - - @endforeach - -
#{{ translate('Order Code') }}{{ translate('Admin Commission') }}{{ translate('Seller Earning') }}{{ translate('Created At') }}
{{ ($key+1) }} - @if(isset($history->order)) - {{ $history->order->code }} - @else - - {{ translate('Order Deleted') }} - - @endif - {{ $history->admin_commission }}{{ $history->seller_earning }}{{ $history->created_at }}
-
- {{ $commission_history->appends(request()->input())->links() }} -
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:5add1aff07a768da503776c85b86dc2ce1a7996b0fecda15cfb14ec0524daa82 +size 2711 diff --git a/desarrollo/resources/views/backend/reports/seller_sale_report.blade.php b/desarrollo/resources/views/backend/reports/seller_sale_report.blade.php index 4d613ecc..38692c15 100644 --- a/desarrollo/resources/views/backend/reports/seller_sale_report.blade.php +++ b/desarrollo/resources/views/backend/reports/seller_sale_report.blade.php @@ -1,74 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-

{{translate('Seller Based Selling Report')}}

-
-
- -
-
-
-
-
-
- -
- -
-
- -
-
-
- - - - - - - - - - - - @foreach ($sellers as $key => $seller) - @if($seller != null) - - - @if($seller->shop != null) - - @else - - @endif - - - - @endif - @endforeach - -
{{ translate('Seller Name') }}{{ translate('Shop Name') }}{{ translate('Number of Product Sale') }}{{ translate('Order Amount') }}
{{ $seller->user->name }}{{ $seller->name }}-- - @php - $num_of_sale = 0; - foreach ($seller->user->products as $key => $product) { - $num_of_sale += $product->num_of_sale; - } - @endphp - {{ $num_of_sale }} - - {{ single_price(\App\Models\OrderDetail::where('seller_id', $seller->user->id)->sum('price')) }} -
-
- {{ $sellers->appends(request()->input())->links() }} -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b03048219d5c965e32b7d4de65bc9d459822012ca0175553e184578558461c +size 3561 diff --git a/desarrollo/resources/views/backend/reports/stock_report.blade.php b/desarrollo/resources/views/backend/reports/stock_report.blade.php index 048e48fb..135a23b8 100644 --- a/desarrollo/resources/views/backend/reports/stock_report.blade.php +++ b/desarrollo/resources/views/backend/reports/stock_report.blade.php @@ -1,61 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-

{{translate('Product wise stock report')}}

-
-
- -
-
-
- -
-
-
- -
- -
-
- -
-
-
- - - - - - - - - @foreach ($products as $key => $product) - @php - $qty = 0; - foreach ($product->stocks as $key => $stock) { - $qty += $stock->qty; - } - @endphp - - - - - @endforeach - -
{{ translate('Product Name') }}{{ translate('Stock') }}
{{ $product->getTranslation('name') }}{{ $qty }}
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f69afa5cf692248b5c86f72975d46277f9525bd128a9640c2285b21f93b97c +size 2672 diff --git a/desarrollo/resources/views/backend/reports/user_search_report.blade.php b/desarrollo/resources/views/backend/reports/user_search_report.blade.php index e23f529b..da920a29 100644 --- a/desarrollo/resources/views/backend/reports/user_search_report.blade.php +++ b/desarrollo/resources/views/backend/reports/user_search_report.blade.php @@ -1,38 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-

{{translate('User Search Report')}}

-
-
- - - - - - - - - - @foreach ($searches as $key => $searche) - - - - - - @endforeach - -
#{{ translate('Search By') }}{{ translate('Number searches') }}
{{ ($key+1) + ($searches->currentPage() - 1)*$searches->perPage() }}{{ $searche->query }}{{ $searche->count }}
-
- {{ $searches->links() }} -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a29eae4398680313e9faa79de8526313ec0faca7180f8921ca355419a2401ea1 +size 1308 diff --git a/desarrollo/resources/views/backend/reports/wallet_history_report.blade.php b/desarrollo/resources/views/backend/reports/wallet_history_report.blade.php index e41d6e62..f1dae9c4 100644 --- a/desarrollo/resources/views/backend/reports/wallet_history_report.blade.php +++ b/desarrollo/resources/views/backend/reports/wallet_history_report.blade.php @@ -1,91 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('Wallet Transaction Report')}}

-
-
- -
-
-
-
-
-
-
{{ translate('Wallet Transaction') }}
-
- @if(Auth::user()->user_type != 'seller') -
- -
- @endif -
-
- -
-
-
- -
-
-
-
- - - - - - - - - - - - - - @foreach ($wallets as $key => $wallet) - - - @if ($wallet->user != null) - - @else - - @endif - - - - - - @endforeach - -
#{{ translate('Customer')}}{{ translate('Date') }}{{ translate('Amount')}}{{ translate('Payment Method')}}{{ translate('Approval')}}
{{ $key+1 }}{{ $wallet->user->name }}{{ translate('User Not found') }}{{ date('d-m-Y', strtotime($wallet->created_at)) }}{{ single_price($wallet->amount) }}{{ ucfirst(str_replace('_', ' ', $wallet ->payment_method)) }} - @if ($wallet->offline_payment) - @if ($wallet->approval) - {{translate('Approved')}} - @else - {{translate('Pending')}} - @endif - @else - N/A - @endif -
-
- {{ $wallets->appends(request()->input())->links() }} -
-
-
-
-
- -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:c91bcdb67ac107a855b3a88e45119e1006beba8d3efd1abf4630c3614a497151 +size 4436 diff --git a/desarrollo/resources/views/backend/reports/wish_report.blade.php b/desarrollo/resources/views/backend/reports/wish_report.blade.php index 9afc05cb..9ba653be 100644 --- a/desarrollo/resources/views/backend/reports/wish_report.blade.php +++ b/desarrollo/resources/views/backend/reports/wish_report.blade.php @@ -1,58 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('Product Wish Report')}}

-
-
- -
-
-
-
-
-
- -
- -
-
- -
-
-
- - - - - - - - - - @foreach ($products as $key => $product) - @if($product->wishlists != null) - - - - - @endif - @endforeach - -
{{ translate('Product Name') }}{{ translate('Number of Wish') }}
{{ $product->getTranslation('name') }}{{ $product->wishlists->count() }}
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:873343ba72c30ce42ceaaed73a336d2621a29046fe749a500c7fe08bb90e0ca0 +size 2499 diff --git a/desarrollo/resources/views/backend/sales/index.blade.php b/desarrollo/resources/views/backend/sales/index.blade.php index 83d58c72..cc3f48c2 100644 --- a/desarrollo/resources/views/backend/sales/index.blade.php +++ b/desarrollo/resources/views/backend/sales/index.blade.php @@ -1,291 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{ translate('All Orders') }}
-
- - @can('delete_order') - - @endcan - -
- -
-
- -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
- - - - - @if (auth()->user()->can('delete_order')) - - @else - - @endif - - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - - @foreach ($orders as $key => $order) - - @if (auth()->user()->can('delete_order')) - - @else - - @endif - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - @endforeach - -
-
-
- -
-
-
#{{ translate('Order Code') }}{{ translate('Num. of Products') }}{{ translate('Customer') }}{{ translate('Seller') }}{{ translate('Amount') }}{{ translate('Delivery Status') }}{{ translate('Payment method') }}{{ translate('Payment Status') }}{{ translate('Refund') }}{{ translate('options') }}
-
-
- -
-
-
{{ $key + 1 + ($orders->currentPage() - 1) * $orders->perPage() }} - {{ $order->code }} - @if ($order->viewed == 0) - {{ translate('New') }} - @endif - @if (addon_is_activated('pos_system') && $order->order_from == 'pos') - {{ translate('POS') }} - @endif - - {{ count($order->orderDetails) }} - - @if ($order->user != null) - {{ $order->user->name }} - @else - Guest ({{ $order->guest_id }}) - @endif - - @if ($order->shop) - {{ $order->shop->name }} - @else - {{ translate('Inhouse Order') }} - @endif - - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->delivery_status))) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }} - - @if ($order->payment_status == 'paid') - {{ translate('Paid') }} - @else - {{ translate('Unpaid') }} - @endif - - @if (count($order->refund_requests) > 0) - {{ count($order->refund_requests) }} {{ translate('Refund') }} - @else - {{ translate('No Refund') }} - @endif - - @if (addon_is_activated('pos_system') && $order->order_from == 'pos') - - - - @endif - @can('view_order_details') - @php - $order_detail_route = route('orders.show', encrypt($order->id)); - if (Route::currentRouteName() == 'seller_orders.index') { - $order_detail_route = route('seller_orders.show', encrypt($order->id)); - } elseif (Route::currentRouteName() == 'pick_up_point.index') { - $order_detail_route = route('pick_up_point.order_show', encrypt($order->id)); - } - if (Route::currentRouteName() == 'inhouse_orders.index') { - $order_detail_route = route('inhouse_orders.show', encrypt($order->id)); - } - @endphp - - - - @endcan - - - - @can('delete_order') - - - - @endcan -
- -
- {{ $orders->appends(request()->input())->links() }} -
- -
-
-
-@endsection - -@section('modal') - - @include('modals.delete_modal') - - @include('modals.bulk_delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc78754a0e932c94e569418bfe87bdd0772e78d306794d6772a266b2954b0fe +size 15822 diff --git a/desarrollo/resources/views/backend/sales/show.blade.php b/desarrollo/resources/views/backend/sales/show.blade.php index f9d6c20b..8c106cde 100644 --- a/desarrollo/resources/views/backend/sales/show.blade.php +++ b/desarrollo/resources/views/backend/sales/show.blade.php @@ -1,385 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{ translate('Order Details') }}

-
-
-
-
-
- @php - $delivery_status = $order->delivery_status; - $payment_status = $order->payment_status; - $admin_user_id = App\Models\User::where('user_type', 'admin')->first()->id; - @endphp - - - @if ($order->seller_id == $admin_user_id || get_setting('product_manage_by_admin') == 1) - - @if (addon_is_activated('delivery_boy')) -
- - @if (($delivery_status == 'pending' || $delivery_status == 'confirmed' || $delivery_status == 'picked_up') && auth()->user()->can('assign_delivery_boy_for_orders')) - - @else - - @endif -
- @endif - -
- - @if (auth()->user()->can('update_order_payment_status')) - - @else - - @endif -
-
- - @if (auth()->user()->can('update_order_delivery_status') && $delivery_status != 'delivered' && $delivery_status != 'cancelled') - - @else - - @endif -
-
- - -
- @endif -
-
- @php - $removedXML = ''; - @endphp - {!! str_replace($removedXML, '', QrCode::size(100)->generate($order->code)) !!} -
-
-
- @if(json_decode($order->shipping_address)) -
- - {{ json_decode($order->shipping_address)->name }} -
- {{ json_decode($order->shipping_address)->email }}
- {{ json_decode($order->shipping_address)->phone }}
- {{ json_decode($order->shipping_address)->address }}, {{ json_decode($order->shipping_address)->city }}, @if(isset(json_decode($order->shipping_address)->state)) {{ json_decode($order->shipping_address)->state }} - @endif {{ json_decode($order->shipping_address)->postal_code }}
- {{ json_decode($order->shipping_address)->country }} -
- @else -
- - {{ $order->user->name }} -
- {{ $order->user->email }}
- {{ $order->user->phone }}
-
- @endif - @if ($order->manual_payment && is_array(json_decode($order->manual_payment_data, true))) -
- {{ translate('Payment Information') }}
- {{ translate('Name') }}: {{ json_decode($order->manual_payment_data)->name }}, - {{ translate('Amount') }}: - {{ single_price(json_decode($order->manual_payment_data)->amount) }}, - {{ translate('TRX ID') }}: {{ json_decode($order->manual_payment_data)->trx_id }} -
- - - - @endif -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Order #') }} {{ $order->code }}
{{ translate('Order Status') }} - @if ($delivery_status == 'delivered') - - {{ translate(ucfirst(str_replace('_', ' ', $delivery_status))) }} - - @else - - {{ translate(ucfirst(str_replace('_', ' ', $delivery_status))) }} - - @endif -
{{ translate('Order Date') }} {{ date('d-m-Y h:i A', $order->date) }}
- {{ translate('Total amount') }} - - {{ single_price($order->grand_total) }} -
{{ translate('Payment method') }} - {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }}
{{ translate('Additional Info') }}{{ $order->additional_info }}
-
-
-
-
-
- - - - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - - - - - - - - - - @endforeach - -
#{{ translate('Photo') }}{{ translate('Description') }}{{ translate('Delivery Type') }} - {{ translate('Qty') }} - - {{ translate('Price') }} - {{ translate('Total') }}
{{ $key + 1 }} - @if ($orderDetail->product != null && $orderDetail->product->auction_product == 0) - - - - @elseif ($orderDetail->product != null && $orderDetail->product->auction_product == 1) - - - - @else - {{ translate('N/A') }} - @endif - - @if ($orderDetail->product != null && $orderDetail->product->auction_product == 0) - - - {{ $orderDetail->product->getTranslation('name') }} - - - - {{ $orderDetail->variation }} - -
- - @php - $product_stock = json_decode($orderDetail->product->stocks->first(), true); - @endphp - {{translate('SKU')}}: {{ $product_stock['sku'] }} - - @elseif ($orderDetail->product != null && $orderDetail->product->auction_product == 1) - - - {{ $orderDetail->product->getTranslation('name') }} - - - @else - {{ translate('Product Unavailable') }} - @endif -
- @if ($order->shipping_type != null && $order->shipping_type == 'home_delivery') - {{ translate('Home Delivery') }} - @elseif ($order->shipping_type == 'pickup_point') - @if ($order->pickup_point != null) - {{ $order->pickup_point->getTranslation('name') }} - ({{ translate('Pickup Point') }}) - @else - {{ translate('Pickup Point') }} - @endif - @elseif($order->shipping_type == 'carrier') - @if ($order->carrier != null) - {{ $order->carrier->name }} ({{ translate('Carrier') }}) -
- {{ translate('Transit Time').' - '.$order->carrier->transit_time }} - @else - {{ translate('Carrier') }} - @endif - @endif -
- {{ $orderDetail->quantity }} - - {{ single_price($orderDetail->price / $orderDetail->quantity) }} - - {{ single_price($orderDetail->price) }} -
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - -
- {{ translate('Sub Total') }} : - - {{ single_price($order->orderDetails->sum('price')) }} -
- {{ translate('Tax') }} : - - {{ single_price($order->orderDetails->sum('tax')) }} -
- {{ translate('Shipping') }} : - - {{ single_price($order->orderDetails->sum('shipping_cost')) }} -
- {{ translate('Coupon') }} : - - {{ single_price($order->coupon_discount) }} -
- {{ translate('TOTAL') }} : - - {{ single_price($order->grand_total) }} -
-
- -
-
- -
-
-@endsection - -@section('script') - -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:bdab283bbc97e919b4b85cf8dc59fccce1605854237581fdc24d407cb17c9485 +size 22581 diff --git a/desarrollo/resources/views/backend/sellers/create.blade.php b/desarrollo/resources/views/backend/sellers/create.blade.php index c2ce62a7..11020994 100644 --- a/desarrollo/resources/views/backend/sellers/create.blade.php +++ b/desarrollo/resources/views/backend/sellers/create.blade.php @@ -1,43 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('Add New Seller')}}
-
- -
-
-
-
{{translate('Seller Information')}}
-
-
-
- @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:1806fa67aa4cb11fdd1c73da2da40008d1f7ae29d3e3d987e47b9d06b46703a7 +size 1866 diff --git a/desarrollo/resources/views/backend/sellers/edit.blade.php b/desarrollo/resources/views/backend/sellers/edit.blade.php index d52a42b5..48fb0e17 100644 --- a/desarrollo/resources/views/backend/sellers/edit.blade.php +++ b/desarrollo/resources/views/backend/sellers/edit.blade.php @@ -1,45 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('Edit Seller Information')}}
-
- -
-
-
-
{{translate('Seller Information')}}
-
- -
-
- - @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:991d93f68efa5f6bd09f0a212efae3d078533bea4a969b91f0da52c13a2ccb87 +size 2008 diff --git a/desarrollo/resources/views/backend/sellers/index.blade.php b/desarrollo/resources/views/backend/sellers/index.blade.php index 93a4d58d..76de6418 100644 --- a/desarrollo/resources/views/backend/sellers/index.blade.php +++ b/desarrollo/resources/views/backend/sellers/index.blade.php @@ -1,335 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Sellers')}}

-
-
-
- -
-
-
-
-
{{ translate('Sellers') }}
-
- - @can('delete_seller') - - @endcan - -
- -
-
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - @foreach($shops as $key => $shop) - - - - - - - - - - - - @endforeach - -
- @if(auth()->user()->can('delete_seller')) -
-
- -
-
- @else - # - @endif -
{{translate('Name')}}{{translate('Phone')}}{{translate('Email Address')}}{{translate('Verification Info')}}{{translate('Approval')}}{{ translate('Num. of Products') }}{{ translate('Due to seller') }}{{translate('Options')}}
- @if(auth()->user()->can('delete_seller')) -
-
- -
-
- @else - {{ ($key+1) + ($shops->currentPage() - 1)*$shops->perPage() }} - @endif -
@if($shop->user->banned == 1) @endif {{$shop->name}}{{$shop->user->phone}}{{$shop->user->email}} - @if ($shop->verification_status != 1 && $shop->verification_info != null) - - {{translate('Show')}} - - @endif - - - {{ $shop->user->products->count() }} - @if ($shop->admin_to_pay >= 0) - {{ single_price($shop->admin_to_pay) }} - @else - {{ single_price(abs($shop->admin_to_pay)) }} ({{ translate('Due to Admin') }}) - @endif - - -
-
- {{ $shops->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - - @include('modals.delete_modal') - - @include('modals.bulk_delete_modal') - - - - - - - - - - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e1ab459f343f8b24e57601d3da4869497e246b8a0f5d0b1b01ec687b5eb5b487 +size 15323 diff --git a/desarrollo/resources/views/backend/sellers/payment.blade.php b/desarrollo/resources/views/backend/sellers/payment.blade.php index 84296da0..ff5bda10 100644 --- a/desarrollo/resources/views/backend/sellers/payment.blade.php +++ b/desarrollo/resources/views/backend/sellers/payment.blade.php @@ -1,35 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{ $user->name }} ({{ $user->shop->name }})
-
-
- - - - - - - - - - - @foreach($payments as $key => $payment) - - - - - - - @endforeach - -
#{{translate('Date')}}{{translate('Amount')}}{{ translate('Payment Details') }}
{{ $key+1 }}{{ $payment->created_at }} - {{ single_price($payment->amount) }} - {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }} @if ($payment->txn_code != null) ({{ translate('TRX ID') }} : {{ $payment->txn_code }}) @endif
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:98ce837edd340731a0d3753188eaf8a30584ea8e6a689261b7ead1cec6e1ef32 +size 1231 diff --git a/desarrollo/resources/views/backend/sellers/payment_histories/index.blade.php b/desarrollo/resources/views/backend/sellers/payment_histories/index.blade.php index cfbc1b65..c567cdf0 100644 --- a/desarrollo/resources/views/backend/sellers/payment_histories/index.blade.php +++ b/desarrollo/resources/views/backend/sellers/payment_histories/index.blade.php @@ -1,45 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('Seller Payments')}}

-
-
- - - - - - - - - - - - @foreach($payments as $key => $payment) - @php $user = \App\Models\User::find($payment->seller_id); @endphp - @if ($user && $user->shop) - - - - - - - - @endif - @endforeach - -
#{{translate('Date')}}{{translate('Seller')}}{{translate('Amount')}}{{ translate('Payment Details') }}
{{ $key+1 }}{{ $payment->created_at }} - {{ $user->name }} ({{ $user->shop->name }}) - - {{ single_price($payment->amount) }} - {{ translate(ucfirst(str_replace('_', ' ', $payment->payment_method))) }} @if ($payment->txn_code != null) ({{ translate('TRX ID') }} : {{ $payment->txn_code }}) @endif
-
- {{ $payments->links() }} -
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:0caf685cd9976767c57366f201e43a6cf19f8920c6436e2fc249888a2430fd53 +size 1737 diff --git a/desarrollo/resources/views/backend/sellers/payment_modal.blade.php b/desarrollo/resources/views/backend/sellers/payment_modal.blade.php index 3a8cad64..67d21daf 100644 --- a/desarrollo/resources/views/backend/sellers/payment_modal.blade.php +++ b/desarrollo/resources/views/backend/sellers/payment_modal.blade.php @@ -1,110 +1,3 @@ -
- @csrf - - - - -
- - +version https://git-lfs.github.com/spec/v1 +oid sha256:620387f86000c10c1d387a4f47f3062f9cd30a7c3661d788e45b1bbf67ddc941 +size 4658 diff --git a/desarrollo/resources/views/backend/sellers/profile_modal.blade.php b/desarrollo/resources/views/backend/sellers/profile_modal.blade.php index 40ca657f..7b966566 100644 --- a/desarrollo/resources/views/backend/sellers/profile_modal.blade.php +++ b/desarrollo/resources/views/backend/sellers/profile_modal.blade.php @@ -1,63 +1,3 @@ - +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba174009d914bfa16cf10bac065314159555690a7a8ce6a3829870bb58ae092 +size 2969 diff --git a/desarrollo/resources/views/backend/sellers/seller_commission/index.blade.php b/desarrollo/resources/views/backend/sellers/seller_commission/index.blade.php index dc689bd2..1b1e03a8 100644 --- a/desarrollo/resources/views/backend/sellers/seller_commission/index.blade.php +++ b/desarrollo/resources/views/backend/sellers/seller_commission/index.blade.php @@ -1,129 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-

{{translate('Seller Commission Activatation')}}

-
-
- -
-
-
- -
-
-
-

{{translate('Category Based Commission')}}

-
-
- -
-
-
- -
-
-
-
{{translate('Seller Commission')}}
-
-
-
- @csrf -
- -
- -
- -
- % -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('Note')}}
-
-
-
    -
  • - 1. {{ get_setting('vendor_commission') }}% {{translate('of seller product price will be deducted from seller earnings') }}. -
  • -
  • - 2. {{translate('If Category Based Commission is enbaled, Set seller commission percentage 0.') }}. -
  • -
-
-
-
- -
-
-
-
{{translate('Withdraw Seller Amount')}}
-
-
-
- @csrf -
- -
- -
- -
-
-
-
- -
-
-
-
-
- -
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:84ee3d63b6779294f1c7c79c6825ca6052b3ba35ee399189e450ced6fac0bb33 +size 5999 diff --git a/desarrollo/resources/views/backend/sellers/seller_verification_form/index.blade.php b/desarrollo/resources/views/backend/sellers/seller_verification_form/index.blade.php index 7e4d4174..7e5ab328 100644 --- a/desarrollo/resources/views/backend/sellers/seller_verification_form/index.blade.php +++ b/desarrollo/resources/views/backend/sellers/seller_verification_form/index.blade.php @@ -1,192 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
- -
-
-
{{translate('Seller Verification Form')}}
-
-
-
- @csrf -
-
- @foreach (json_decode(get_setting('verification_form')) as $key => $element) - @if ($element->type == 'text' || $element->type == 'file') -
- -
- -
-
- -
-
-
- @elseif ($element->type == 'select' || $element->type == 'multi_select' || $element->type == 'radio') -
- - -
- -
-
- -
- @if (is_array(json_decode($element->options))) - @foreach (json_decode($element->options) as $value) -
-
- -
-
-
- @endforeach - @endif -
- -
-
-
- @endif - @endforeach -
-
- -
    -
  • {{translate('Text Input')}}
  • -
  • {{translate('Select')}}
  • -
  • {{translate('Multiple Select')}}
  • -
  • {{translate('Radio')}}
  • -
  • {{translate('File')}}
  • -
- -
-
-
- -
-
-
-
- -
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:55c51b3adfb7a027b4423e29f1515b233d769b425a4293bbd50125dea2c9b193 +size 9482 diff --git a/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/index.blade.php b/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/index.blade.php index 43ac0eb1..76c20001 100644 --- a/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/index.blade.php +++ b/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/index.blade.php @@ -1,112 +1,3 @@ -@extends('backend.layouts.app') -@section('content') -
-
-
{{translate('Seller Withdraw Request')}}
-
-
- - - - - - - - - - - - - - - @foreach($seller_withdraw_requests as $key => $seller_withdraw_request) - @php $user = \App\Models\User::find($seller_withdraw_request->user_id); @endphp - @if ($user && $user->shop) - - - - - - - - - - - @endif - @endforeach - -
#{{translate('Date')}}{{translate('Seller')}}{{translate('Total Amount to Pay')}}{{translate('Requested Amount')}}{{ translate('Message') }}{{ translate('Status') }}{{translate('Options')}}
{{ ($key+1) + ($seller_withdraw_requests->currentPage() - 1)*$seller_withdraw_requests->perPage() }}{{ $seller_withdraw_request->created_at }}{{ $user->name }} ({{ $user->shop->name }}){{ single_price($user->shop->admin_to_pay) }}{{ single_price($seller_withdraw_request->amount) }} - {{ $seller_withdraw_request->message }} - - @if ($seller_withdraw_request->status == 1) - {{translate('Paid')}} - @else - {{translate('Pending')}} - @endif - - - - - @can('pay_to_seller') - - - - @endcan - @can('seller_payment_history') - - - - @endcan -
-
- {{ $seller_withdraw_requests->links() }} -
-
-
- -@endsection - -@section('modal') - - - - - - - - -@endsection - - - -@section('script') - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6175ebcb0cc9620aafdaada543769e727966f076bd3df0c49bed15e928618387 +size 5373 diff --git a/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/payment_modal.blade.php b/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/payment_modal.blade.php index b8101933..aa7e6ff6 100644 --- a/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/payment_modal.blade.php +++ b/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/payment_modal.blade.php @@ -1,106 +1,3 @@ -
- @csrf - - - -
- - +version https://git-lfs.github.com/spec/v1 +oid sha256:c21b1d21dbf41eedced2444e4c3489391ef8a69d3386c9700d63fd07bf74f1b4 +size 4759 diff --git a/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/withdraw_message_modal.blade.php b/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/withdraw_message_modal.blade.php index 31c07ee8..f3ee167a 100644 --- a/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/withdraw_message_modal.blade.php +++ b/desarrollo/resources/views/backend/sellers/seller_withdraw_requests/withdraw_message_modal.blade.php @@ -1,18 +1,3 @@ - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:1714f23e7d3d9f5f776100a615314c7b67f97d959cc81b86ff28ff71c38a5fb1 +size 656 diff --git a/desarrollo/resources/views/backend/sellers/verification.blade.php b/desarrollo/resources/views/backend/sellers/verification.blade.php index cda3d667..dde4a754 100644 --- a/desarrollo/resources/views/backend/sellers/verification.blade.php +++ b/desarrollo/resources/views/backend/sellers/verification.blade.php @@ -1,80 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{ translate('Seller Verification') }}
- @if ($shop->verification_status != 1 && $shop->verification_info != null) - - @endif -
-
-
-
{{ translate('User Info') }}
-

- {{ translate('Name') }} : - {{ $shop->user->name }} -

-

- {{translate('Email')}} - {{ $shop->user->email }} -

-

- {{translate('Address')}} - {{ $shop->user->address }} -

-

- {{translate('Phone')}} - {{ $shop->user->phone }} -

-
- -
{{ translate('Shop Info') }}
-

- {{translate('Shop Name')}} - {{ $shop->user->shop->name }} -

-

- {{translate('Address')}} - {{ $shop->address }} -

-
-
-
{{ translate('Verification Info') }}
- @if ($shop->verification_info != null) - - - @foreach (json_decode($shop->verification_info) as $key => $info) - - - @if ($info->type == 'text' || $info->type == 'select' || $info->type == 'radio') - - @elseif ($info->type == 'multi_select') - - @elseif ($info->type == 'file') - - @endif - - @endforeach - -
{{ $info->label }}{{ $info->value }} - {{ implode(', ', json_decode($info->value)) }} - - {{translate('Click here')}} -
- @endif - @if ($shop->verification_status != 1 && $shop->verification_info != null) - - @endif -
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:16a1804444765e7b525ff5df0b4ab1b4193e591e6cf0c2087a850a2f78d20409 +size 3558 diff --git a/desarrollo/resources/views/backend/setup_configurations/activation.blade.php b/desarrollo/resources/views/backend/setup_configurations/activation.blade.php index c1e2f14a..4290a5dc 100644 --- a/desarrollo/resources/views/backend/setup_configurations/activation.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/activation.blade.php @@ -1,676 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -

{{translate('System')}}

-
-
-
-
-
{{translate('HTTPS Activation')}}
-
-
- -
-
-
-
-
-
-

{{translate('Maintenance Mode Activation')}}

-
-
- -
-
-
-
-
-
-

{{translate('Disable image encoding?')}}

-
-
- -
-
-
-
- - -

{{translate('Business Related')}}

-
-
-
-
-

{{translate('Vendor System Activation')}}

-
-
- -
-
-
-
-
-
-

{{translate('Classified Product')}}

-
-
- -
-
-
-
-
-
-

{{translate('Wallet System Activation')}}

-
-
- -
-
-
-
-
-
-

{{translate('Coupon System Activation')}}

-
-
- -
-
-
-
-
-
-

{{translate('Pickup Point Activation')}}

-
-
- -
-
-
-
-
-
-

{{translate('Conversation Activation')}}

-
-
- -
-
-
-
-
-
-

{{translate('Seller Product Manage By Admin')}}

-
-
- -
- {{ translate('After activate this option Cash On Delivery of Seller product will be managed by Admin')}}. -
-
-
-
-
-
-
-

{{translate('Admin Approval On Seller Product')}}

-
-
- -
- {{ translate('After activate this option, Admin approval need to seller product')}}. -
-
-
-
-
-
-
-

{{translate('Email Verification')}}

-
-
- -
- {{ translate('You need to configure SMTP correctly to enable this feature.') }} {{ translate('Configure Now') }} -
-
-
-
-
-
-
-

{{translate('Product Query Activation')}}

-
-
- -
-
-
- @if(addon_is_activated('wholesale')) -
-
-
-

{{translate('Wholesale Product for Seller')}}

-
-
- -
-
-
- @endif - @if(addon_is_activated('auction')) -
-
-
-

{{translate('Auction Product for Seller')}}

-
-
- -
-
-
- @endif -
- -

{{translate('Payment Related')}}

-
-
-
-
-

{{translate('Paypal Payment Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure Paypal correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Stripe Payment Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure Stripe correctly to enable this feature.') }} {{ translate('Configure Now') }} -
-
-
-
- - {{--
-
-
-

{{translate('Mercadopago Payment Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure Mercadopago correctly to enable this feature.') }} {{ translate('Configure Now') }} -
-
-
-
--}} - -
-
-
-

{{translate('SSlCommerz Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure SSlCommerz correctly to enable this feature.') }} {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Instamojo Payment Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure Instamojo Payment correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Razor Pay Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure Razor correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('PayStack Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure PayStack correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('VoguePay Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure VoguePay correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Payhere Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure Payhere correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Ngenius Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure Ngenius correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Iyzico Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure iyzico correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Bkash Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure bkash correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Nagad Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure nagad correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Proxy Pay Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure proxypay correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Amarpay Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure amarpay correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Authorize Net Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure authorize net correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Payku Activation')}}

-
-
-
- - -
-
- {{ translate('You need to configure payku net correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
- -
-
-
-

{{translate('Cash Payment Activation')}}

-
-
-
- - -
-
-
-
-
- -

{{translate('Social Media Login')}}

-
-
-
-
-

{{translate('Facebook login')}}

-
-
- -
- {{ translate('You need to configure Facebook Client correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
-
-
-
-

{{translate('Google login')}}

-
-
- -
- {{ translate('You need to configure Google Client correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
-
-
-
-

{{translate('Twitter login')}}

-
-
- -
- {{ translate('You need to configure Twitter Client correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
-
-
-
-

{{translate('Apple login')}}

-
-
- -
- {{ translate('You need to configure Apple Client correctly to enable this feature') }}. {{ translate('Configure Now') }} -
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:2c908d25cfcda001684dfd61c562a5f0852dc6596936aed36eed9f97d0fc9e67 +size 43677 diff --git a/desarrollo/resources/views/backend/setup_configurations/carriers/create.blade.php b/desarrollo/resources/views/backend/setup_configurations/carriers/create.blade.php index 642934fc..96831a16 100644 --- a/desarrollo/resources/views/backend/setup_configurations/carriers/create.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/carriers/create.blade.php @@ -1,301 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{ translate('Add New Carrier') }}

-
- -
-
- -
-
-
-
-
{{ translate('Carrier Information') }}
-
-
-
- - - - @csrf -
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
- -
- -
-
- - {{-- carrier Price Range form --}} -
-
-

-
-
- - - - - - - - - - - - - - - @foreach ($zones as $zone) - - - - - - @endforeach - - - - - - - - - -
>= -
-
-
-
- -
-
- < -
-
-
-
- -
-
- {{ $zone->name }} - - - -
-
-
$
-
- -
-
- - -
- - -
- -
-
- -
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbb3ecab6c92c80c816a6dac0cff6c5c92e49c4e3d5b131a1e5d11cdeee6937 +size 14796 diff --git a/desarrollo/resources/views/backend/setup_configurations/carriers/edit.blade.php b/desarrollo/resources/views/backend/setup_configurations/carriers/edit.blade.php index ef0593b2..0c4ac50a 100644 --- a/desarrollo/resources/views/backend/setup_configurations/carriers/edit.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/carriers/edit.blade.php @@ -1,339 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{ translate('Carrier Informations') }}

-
- -
-
- -
-
-
-
-
{{ translate('Carrier Information') }}
-
-
-
- - - - @csrf -
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
- -
- -
- -
-
- - {{-- carrier Price Range form --}} -
-
-

-
- - - - - - - - @foreach($carrier->carrier_ranges as $carrier_range) - - @endforeach - @if (count($carrier->carrier_ranges)==0) - - @endif - - - - - @foreach($carrier->carrier_ranges as $carrier_range) - - @endforeach - @if (count($carrier->carrier_ranges)==0) - - @endif - - - @foreach ($zones as $key => $zone) - - - @php - $selected_zones = $carrier->carrier_range_prices->unique('zone_id')->pluck('zone_id')->toArray(); - @endphp - - @foreach($carrier->carrier_ranges as $key => $carrier_range) - @php - $carrier_range_price = $carrier_range->carrier_range_prices->where('zone_id',$zone->id)->first(); - @endphp - - @endforeach - @if (count($carrier->carrier_ranges)==0) - - @endif - - @endforeach - - - - @foreach($carrier->carrier_ranges as $key => $carrier_range) - - @endforeach - - -
>= -
-
-
-
- -
-
-
-
-
-
- -
-
< -
-
-
-
- -
-
-
-
-
-
- -
-
- {{ $zone->name }} - - id, $selected_zones)) checked @endif> - -
-
-
$
-
- id, $selected_zones)) disabled @endif required> -
-
-
-
-
$
-
- -
-
- @if($key == 0) - @continue - @endif - -
- -
- - -
- -
-
- -
-
-
-
-@endsection - -@section('script') - -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c48f886d09de242adfa720b6edfab3f1fec5dc250371fdaf61834c76b150c6 +size 18900 diff --git a/desarrollo/resources/views/backend/setup_configurations/carriers/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/carriers/index.blade.php index 887f2f60..9b6a4d87 100644 --- a/desarrollo/resources/views/backend/setup_configurations/carriers/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/carriers/index.blade.php @@ -1,101 +1,3 @@ -@extends('backend.layouts.app') - - -@section('content') -
-
-
-

{{ translate('All Carriers') }}

-
- -
-
- -
-
-
-
-
-
{{ translate('Carriers') }}
-
-
-
- - - - - - - - - - - - - @foreach ($carriers as $key => $carrier) - - - - - - - - - @endforeach - -
#{{ translate('Logo') }}{{ translate('Name') }}{{ translate('Transit Time') }}{{ translate('Status') }}{{ translate('Options') }}
- {{ $carriers->firstItem() + $key }} - - {{translate('Carrier')}} - {{ $carrier->name }}{{ $carrier->transit_time }} - - - - - - - - -
-
- {{ $carriers->appends(request()->input())->links() }} -
-
-
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:142638a3e94e4d606c2a9e143fe7a8624e6bc9b15626eb62ce49c42ef32fe9c4 +size 4547 diff --git a/desarrollo/resources/views/backend/setup_configurations/cities/edit.blade.php b/desarrollo/resources/views/backend/setup_configurations/cities/edit.blade.php index 15010655..fa48b9f9 100644 --- a/desarrollo/resources/views/backend/setup_configurations/cities/edit.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/cities/edit.blade.php @@ -1,56 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('City Information')}}
-
- -
-
-
-
- -
- - - @csrf -
- - -
- -
- - -
- -
- - -
- - -
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:3d38fd1eefe491e05e88e8fe1ea603cbfe41062982dc094538abf0037154987c +size 2640 diff --git a/desarrollo/resources/views/backend/setup_configurations/cities/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/cities/index.blade.php index 63908315..0e8b71fc 100644 --- a/desarrollo/resources/views/backend/setup_configurations/cities/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/cities/index.blade.php @@ -1,145 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{translate('All cities')}}

-
-
-
-
-
-
-
-
-
-
{{ translate('Cities') }}
-
-
- -
-
- -
-
- -
-
-
-
- - - - - - - - - - - - - @foreach($cities as $key => $city) - - - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('State')}}{{translate('Area Wise Shipping Cost')}}{{translate('Show/Hide')}}{{translate('Options')}}
{{ ($key+1) + ($cities->currentPage() - 1) * $cities->perPage() }}{{ $city->getTranslation('name') }}{{ $city->state->name }}{{ single_price($city->cost) }} - - - - - - - - -
-
- {{ $cities->appends(request()->input())->links() }} -
-
-
-
-
-
-
-
{{ translate('Add New city') }}
-
-
-
- @csrf -
- - -
- -
- - -
- -
- - -
-
- -
-
-
-
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6f60a097b4035298bbdaeb79723a5fe8d7206e13024363f2c6905a9f381436de +size 7026 diff --git a/desarrollo/resources/views/backend/setup_configurations/countries/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/countries/index.blade.php index e5529e45..e0959bc5 100644 --- a/desarrollo/resources/views/backend/setup_configurations/countries/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/countries/index.blade.php @@ -1,73 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{ translate('Countries') }}
-
-
- -
-
- -
-
-
-
- - - - - - - - - - - @foreach($countries as $key => $country) - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Code')}}{{translate('Show/Hide')}}
{{ ($key+1) + ($countries->currentPage() - 1)*$countries->perPage() }}{{ $country->name }}{{ $country->code }} - -
-
- {{ $countries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:84e803faf89174042498d7df4adeb78223081d3c38e846f1b1611b62ee20f599 +size 3022 diff --git a/desarrollo/resources/views/backend/setup_configurations/currencies/create.blade.php b/desarrollo/resources/views/backend/setup_configurations/currencies/create.blade.php index b121fb7a..095a82d2 100644 --- a/desarrollo/resources/views/backend/setup_configurations/currencies/create.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/currencies/create.blade.php @@ -1,38 +1,3 @@ -
- @csrf - - - -
+version https://git-lfs.github.com/spec/v1 +oid sha256:1da4972021969043a0adeb7c1a9085aab297ca6d10ce3e6f8eb4d2d80718b526 +size 1935 diff --git a/desarrollo/resources/views/backend/setup_configurations/currencies/edit.blade.php b/desarrollo/resources/views/backend/setup_configurations/currencies/edit.blade.php index fe2d2018..bd5511bc 100644 --- a/desarrollo/resources/views/backend/setup_configurations/currencies/edit.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/currencies/edit.blade.php @@ -1,39 +1,3 @@ -
- @csrf - - - - -
+version https://git-lfs.github.com/spec/v1 +oid sha256:8400f794517e355d3f73f7fe070cf43e2ef0efc5f8eb70b893248f195922b414 +size 2136 diff --git a/desarrollo/resources/views/backend/setup_configurations/currencies/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/currencies/index.blade.php index 518a7740..a908383c 100644 --- a/desarrollo/resources/views/backend/setup_configurations/currencies/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/currencies/index.blade.php @@ -1,227 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
- -
-
-
-
{{translate('System Default Currency')}}
-
-
-
- @csrf -
-
- -
-
- -
- -
- -
-
-
-
-
-
- -
-
-
-
{{translate('Set Currency Formats')}}
-
-
-
- @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
- -
-
-
-

{{translate('All Currencies')}}

-
- -
-
- -
-
-
-
{{ translate('All Currencies') }}
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - @foreach ($currencies as $key => $currency) - - - - - - - - - - @endforeach - -
#{{translate('Currency name')}}{{translate('Currency symbol')}}{{translate('Currency code')}}{{translate('Exchange rate')}}(1 USD = ?){{translate('Status')}}{{translate('Options')}}
{{ ($key+1) + ($currencies->currentPage() - 1)*$currencies->perPage() }}{{$currency->name}}{{$currency->symbol}}{{$currency->code}}{{$currency->exchange_rate}} - - - - - -
-
- {{ $currencies->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - - - @include('modals.delete_modal') - - - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:47f3c4bb939d4be32783960719a105cc9ad6ff80e3671ba5d5128f94d9c4edc1 +size 10195 diff --git a/desarrollo/resources/views/backend/setup_configurations/facebook_chat.blade.php b/desarrollo/resources/views/backend/setup_configurations/facebook_chat.blade.php index a4983672..f4dc60bf 100644 --- a/desarrollo/resources/views/backend/setup_configurations/facebook_chat.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/facebook_chat.blade.php @@ -1,60 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{translate('Facebook Chat Setting')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{ translate('Please be carefull when you are configuring Facebook chat. For incorrect configuration you will not get messenger icon on your user-end site.') }}
-
-
-
    -
  • 1. {{ translate('Login into your facebook page') }}
  • -
  • 2. {{ translate('Find the About option of your facebook page') }}.
  • -
  • 3. {{ translate('At the very bottom, you can find the “Facebook Page ID”') }}.
  • -
  • 4. {{ translate('Go to Settings of your page and find the option of "Advance Messaging"') }}.
  • -
  • 5. {{ translate('Scroll down that page and you will get "white listed domain"') }}.
  • -
  • 6. {{ translate('Set your website domain name') }}.
  • -
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:419a9cd1c7c065df2a51def9bd7cd25beafe4709c42de304126b1f5bd3548c16 +size 3550 diff --git a/desarrollo/resources/views/backend/setup_configurations/facebook_configuration/facebook_comment.blade.php b/desarrollo/resources/views/backend/setup_configurations/facebook_configuration/facebook_comment.blade.php index 55f0cda1..07623ba5 100644 --- a/desarrollo/resources/views/backend/setup_configurations/facebook_configuration/facebook_comment.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/facebook_configuration/facebook_comment.blade.php @@ -1,67 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{translate('Facebook Comment Setting')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{ translate('Please be carefull when you are configuring Facebook Comment. For incorrect configuration you will not get comment section on your user-end site.') }}
-
-
-
    -
  • - 1. {{ translate('Login into your facebook page') }} -
  • -
  • - 2. {{ translate('After then go to this URL https://developers.facebook.com/apps/') }}. -
  • -
  • - 3. {{ translate('Create Your App') }}. -
  • -
  • - 4. {{ translate('In Dashboard page you will get your App ID') }}. -
  • -
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:8fea42b6ca38d66dc9aab6bc933c3fbe81412107545793634f97a387de2b159f +size 3629 diff --git a/desarrollo/resources/views/backend/setup_configurations/file_system.blade.php b/desarrollo/resources/views/backend/setup_configurations/file_system.blade.php index 6dfae347..2d4eb3cf 100644 --- a/desarrollo/resources/views/backend/setup_configurations/file_system.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/file_system.blade.php @@ -1,195 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-

{{translate('S3 File System Credentials')}}

-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
-
-
-
-
-
-
-
-

{{translate('S3 File System Activation')}}

-
-
- -
-
-
-
- -
-
-
-
-

{{translate('Cache & Session Driver')}}

-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
-
-
-
-
-
-
-
-

{{translate('Redis Configuration (If you use redis as any of the drivers)')}}

-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:b98ec5b3bdc1930a426a4784d0d139212558df0a3d3bf5eb2139c73adbe778c1 +size 16773 diff --git a/desarrollo/resources/views/backend/setup_configurations/general_settings.blade.php b/desarrollo/resources/views/backend/setup_configurations/general_settings.blade.php index 4c5b4f57..1907df68 100644 --- a/desarrollo/resources/views/backend/setup_configurations/general_settings.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/general_settings.blade.php @@ -1,88 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-

{{translate('General Settings')}}

-
-
-
- @csrf -
- -
- - -
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose Files') }}
- - -
-
- {{ translate('Will be used in admin panel side menu') }} -
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose Files') }}
- - -
-
- {{ translate('Will be used in admin panel topbar in mobile + Admin login page') }} -
-
-
- -
- - -
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose Files') }}
- - -
-
-
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:54879d2f4cce4403101be020de3376aab6a04411b75950c7f8ec8824caf1f4af +size 5688 diff --git a/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_analytics.blade.php b/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_analytics.blade.php index 0a7aba4e..095d748b 100644 --- a/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_analytics.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_analytics.blade.php @@ -1,96 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{ translate('Facebook Pixel Setting') }}
-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{ translate('Please be carefull when you are configuring Facebook pixel.') }}
-
-
-
    -
  • 1. {{ translate('Log in to Facebook and go to your Ads Manager account') }}.
  • -
  • 2. {{ translate('Open the Navigation Bar and select Events Manager') }}.
  • -
  • 3. {{ translate('Copy your Pixel ID from underneath your Site Name and paste the number into Facebook Pixel ID field') }}.
  • -
-
-
-
-
-
-
-
-
-
{{translate('Google Analytics Setting')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:fec7ee0bd951a5498ea116b5f6c5ea21b367f67005309f34e24da2383562353b +size 5256 diff --git a/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_firebase.blade.php b/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_firebase.blade.php index 02bd0441..55282be6 100644 --- a/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_firebase.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_firebase.blade.php @@ -1,43 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-

{{translate('Google Firebase Setting')}}

-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:de2f566319c2dd863a1956345591d229d5f110303df5829ca2a575fb0b5d4d31 +size 2190 diff --git a/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_map.blade.php b/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_map.blade.php index 6a6df6cc..1d5756ff 100644 --- a/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_map.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_map.blade.php @@ -1,123 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-

{{ translate('Google Map Setting') }}

-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-

{{ translate('Google Map Configuration Notes') }}

-
-
-
    -
  • - 1. {{ translate('Enable Google map ') }} -
  • -
  • - 2. {{ translate('Set the google map API key') }}. -
  • -
  • - 2. {{ translate('After then you will find the google map option to set default location') }}. -
  • -
-
-
-
- @if (get_setting('google_map') == 1) -
-
-
-

{{ translate('Default Location Setting') }}

-
-
-
- @csrf - -
-
-
    -
  • Full Address:
  • -
  • Postal Code:
  • -
  • Country:
  • -
  • Latitude:
  • -
  • Longitude:
  • -
-
-
-
- -
-
- - -
-
-
-
- -
-
- - -
-
-
- -
-
-
-
-
- @endif -
- -@endsection - - -@section('script') - @if (get_setting('google_map') == 1) - @include('frontend.partials.google_map') - @endif -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:03ea04d5e6c1aebfef28c4002ab69cc9bf8e05da0f16c43bef4f15f90f53fd6a +size 6308 diff --git a/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_recaptcha.blade.php b/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_recaptcha.blade.php index cf08a9ad..62179dac 100644 --- a/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_recaptcha.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/google_configuration/google_recaptcha.blade.php @@ -1,52 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-

{{translate('Google reCAPTCHA Setting')}}

-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:4a1670ce1ba526b9b30dc925357287b655c3c8b6f097a0e51fd6db0b08718283 +size 2827 diff --git a/desarrollo/resources/views/backend/setup_configurations/languages/app_translation.blade.php b/desarrollo/resources/views/backend/setup_configurations/languages/app_translation.blade.php index c9b0b9de..203d3719 100644 --- a/desarrollo/resources/views/backend/setup_configurations/languages/app_translation.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/languages/app_translation.blade.php @@ -1,73 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{ $language->name }}
-
-
-
-
- -
-
-
-
-
- @csrf - -
- - - - - - - - - - - @foreach ($lang_keys as $key => $translation) - - - - - - - @endforeach - -
#{{translate('Key')}}{{translate('Default Value')}}{{translate('Translated Value')}}
{{ ($key+1) + ($lang_keys->currentPage() - 1)*$lang_keys->perPage() }}{{ $translation->lang_key }}{{ $translation->lang_value }} - app_lang_code)->where('lang_key', $translation->lang_key)->latest()->first()) != null) - value="{{ $traslate_lang->lang_value }}" - @endif> -
-
- {{ $lang_keys->appends(request()->input())->links() }} -
- -
- - -
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9095f8c2e9233d63df4afb27bcb2065360b13d37c9764c90a1e441591d2350 +size 3364 diff --git a/desarrollo/resources/views/backend/setup_configurations/languages/create.blade.php b/desarrollo/resources/views/backend/setup_configurations/languages/create.blade.php index a3771e14..c3a3446c 100644 --- a/desarrollo/resources/views/backend/setup_configurations/languages/create.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/languages/create.blade.php @@ -1,59 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{translate('Language Information')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
-
- -
-
- @php - $languagesArray = \App\Models\Language::pluck('code')->toarray(); - @endphp - -
-
-
-
- - {{ translate("Links for ISO 639-1 codes")}} -
-
- -
-
-
- -
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:48b62d8d8d7282808e16c3cc748cdf86daaa37433b84e53d6edb27087f955ebc +size 3103 diff --git a/desarrollo/resources/views/backend/setup_configurations/languages/edit.blade.php b/desarrollo/resources/views/backend/setup_configurations/languages/edit.blade.php index df20b24a..0d9f656b 100644 --- a/desarrollo/resources/views/backend/setup_configurations/languages/edit.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/languages/edit.blade.php @@ -1,68 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('Language Information')}}
-
- -
-
-
-
-
{{translate('update Language Info')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
-
- -
-
- @php - $languagesArray = \App\Models\Language::pluck('code')->toarray(); - if (($key = array_search($language->code, $languagesArray)) !== false) { - unset($languagesArray[$key]); - } - @endphp - -
-
-
-
- - {{ translate("Links for ISO 639-1 codes")}} -
-
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b4314c44a8cede1dc56a345d7356c3d4db277ff9946693de1a9bfa34c20c27 +size 3694 diff --git a/desarrollo/resources/views/backend/setup_configurations/languages/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/languages/index.blade.php index f619bdaa..7384ffd2 100644 --- a/desarrollo/resources/views/backend/setup_configurations/languages/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/languages/index.blade.php @@ -1,189 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{ translate('Default Language') }}
-
-
-
- @csrf -
-
- -
- -
- -
-
- -
-
-
-
-
-
-
-
-
-
{{ translate('Import App Translations') }}
-
-
-
- @csrf -
-
- -
-
-
- -
-
-
- -
-
-
-
-
-
-
- - - -
-
-
{{translate('Language')}}
-
-
- - - - - - - - - - - - - - @php - $i = 1; - @endphp - @foreach ($languages as $key => $language) - - - - - - - - - - @php - $i++; - @endphp - @endforeach - -
#{{translate('Name')}}{{translate('Code')}}{{translate('Flutter App Lang Code')}}{{translate('RTL')}}{{translate('Status')}}{{translate('Options')}}
{{ ($key+1) + ($languages->currentPage() - 1)*$languages->perPage() }}{{ $language->name }}{{ $language->code }}{{ $language->app_lang_code }} - - - - - - - - - - - - - - - @if($language->code != 'en') - - - - @endif -
-
- {{ $languages->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:898506ee14c5deebb357f5479e4c78535d02875eff295e816d0ed87ca0e1ae79 +size 8548 diff --git a/desarrollo/resources/views/backend/setup_configurations/languages/language_view.blade.php b/desarrollo/resources/views/backend/setup_configurations/languages/language_view.blade.php index 732fd309..3eb38427 100644 --- a/desarrollo/resources/views/backend/setup_configurations/languages/language_view.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/languages/language_view.blade.php @@ -1,71 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{ $language->name }}
-
-
-
-
- -
-
-
-
-
- @csrf - -
- - - - - - - - - - @foreach ($lang_keys as $key => $translation) - - - - - - @endforeach - -
#{{translate('Key')}}{{translate('Value')}}
{{ ($key+1) + ($lang_keys->currentPage() - 1)*$lang_keys->perPage() }}{{ $translation->lang_value }} - code)->where('lang_key', $translation->lang_key)->latest()->first()) != null) - value="{{ $traslate_lang->lang_value }}" - @endif> -
-
- {{ $lang_keys->appends(request()->input())->links() }} -
- -
- - -
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:42a11b8861407d33403ace03a6ef9bfebc7e3bec46cc219bee9ddad112bfda23 +size 3194 diff --git a/desarrollo/resources/views/backend/setup_configurations/order_configuration/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/order_configuration/index.blade.php index 48172aba..3e6ec616 100644 --- a/desarrollo/resources/views/backend/setup_configurations/order_configuration/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/order_configuration/index.blade.php @@ -1,46 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Minimum Order Amount Settings')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:9a79a44b189d34412fb4a7fb0f393dab51e8379171aaf101be617d076705eea9 +size 2254 diff --git a/desarrollo/resources/views/backend/setup_configurations/payment_method.blade.php b/desarrollo/resources/views/backend/setup_configurations/payment_method.blade.php index 4ce12bae..8a6ca745 100644 --- a/desarrollo/resources/views/backend/setup_configurations/payment_method.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/payment_method.blade.php @@ -1,799 +1,3 @@ - @extends('backend.layouts.app') - - @section('content') - -
-
-
-
-
{{translate('Paypal Credential')}}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('Stripe Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
- - {{--
-
-
-
{{translate('Mercadopago Credential')}}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
- -
-
- -
- -
-
-
-
-
--}} - -
-
-
-
{{translate('Bkash Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('Nagad Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('Sslcommerz Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('Aamarpay Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('Iyzico Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
-
-
- -
-
-
-
{{translate('Instamojo Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('PayStack Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('Payhere Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{translate('Ngenius Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('VoguePay Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{translate('RazorPay Credential')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
- {{-- Authorize Net --}} -
-
-
-
{{translate('Authorize Net')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
-
-
- -
-
-
-
{{translate('Payku')}}
-
-
-
- @csrf - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
- -
- -
-
-
-
-
- -
- - @endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:05727c3d1fda2c1f9a21e1de97737f767113a031ea6cb4c370e29f1be0bce0c8 +size 57776 diff --git a/desarrollo/resources/views/backend/setup_configurations/pickup_point/create.blade.php b/desarrollo/resources/views/backend/setup_configurations/pickup_point/create.blade.php index a6e9f78a..6caff30d 100644 --- a/desarrollo/resources/views/backend/setup_configurations/pickup_point/create.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/pickup_point/create.blade.php @@ -1,62 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Pickup Point Information')}}
-
-
- @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:d943470f5b9d31f0ba93a5905626b55304ff9c3a351d469669beffc51666f3d2 +size 3159 diff --git a/desarrollo/resources/views/backend/setup_configurations/pickup_point/edit.blade.php b/desarrollo/resources/views/backend/setup_configurations/pickup_point/edit.blade.php index 799bab64..79d1a3d0 100644 --- a/desarrollo/resources/views/backend/setup_configurations/pickup_point/edit.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/pickup_point/edit.blade.php @@ -1,77 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('Update Pickup Point Information')}}
-
- -
-
-
-
- - -
- - - @csrf - -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:4caf214e165848228c643d2eef74e2a7a5d3ec6d65e01697dfc14efc50740bbc +size 4380 diff --git a/desarrollo/resources/views/backend/setup_configurations/pickup_point/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/pickup_point/index.blade.php index a066893e..909aef8a 100644 --- a/desarrollo/resources/views/backend/setup_configurations/pickup_point/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/pickup_point/index.blade.php @@ -1,99 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Pick-up Points')}}

-
- -
-
- -
-
-
-
{{ translate('Pick-up Points') }}
-
-
-
-
- -
-
-
-
-
- - - - - - - - - - - - - - @foreach($pickup_points as $key => $pickup_point) - - - - @if ($pickup_point->staff != null && $pickup_point->staff->user != null) - - @else - - @endif - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Manager')}}{{translate('Location')}}{{translate('Pickup Station Contact')}}{{translate('Status')}}{{translate('Options')}}
{{ ($key+1) + ($pickup_points->currentPage() - 1)*$pickup_points->perPage() }}{{$pickup_point->getTranslation('name')}}{{$pickup_point->staff->user->name}}
- {{ translate('No Manager') }} -
{{$pickup_point->getTranslation('address')}}{{$pickup_point->phone}} - @if ($pickup_point->pick_up_status != 1) -
- {{ translate('Close') }} -
- @else -
- {{ translate('Open') }} -
- @endif -
- - - - - - -
-
- {{ $pickup_points->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:38df3f83773c971055b12ebfcce20eac9fa466957d611fd1ddc21d9ee87f5ec1 +size 4015 diff --git a/desarrollo/resources/views/backend/setup_configurations/shipping_configuration/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/shipping_configuration/index.blade.php index 96f2fef7..6e47dc8a 100644 --- a/desarrollo/resources/views/backend/setup_configurations/shipping_configuration/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/shipping_configuration/index.blade.php @@ -1,151 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Select Shipping Method')}}
-
-
-
- @csrf - -
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- -
-
-
-
-
-
-
-
-
{{translate('Note')}}
-
-
-
    -
  • - 1. {{ translate('Product Wise Shipping Cost calculation: Shipping cost is calculate by addition of each product shipping cost') }}. -
  • -
  • - 2. {{ translate('Flat Rate Shipping Cost calculation: How many products a customer purchase, doesn\'t matter. Shipping cost is fixed') }}. -
  • -
  • - 3. {{ translate('Seller Wise Flat Shipping Cost calculation: Fixed rate for each seller. If customers purchase 2 product from two seller shipping cost is calculated by addition of each seller flat shipping cost') }}. -
  • -
  • - 4. {{ translate('Area Wise Flat Shipping Cost calculation: Fixed rate for each area. If customers purchase multiple products from one seller shipping cost is calculated by the customer shipping area. To configure area wise shipping cost go to ') }} {{ translate('Shipping Cities') }}. -
  • -
  • - 5. {{ translate('Carrier Based Shipping Cost calculation: Shipping cost calculate in addition with carrier. In each carrier you can set free shipping cost or can set weight range or price range shipping cost. To configure carrier based shipping cost go to ') }} {{ translate('Shipping Carriers') }}. -
  • -
-
-
-
-
- -
-
-
-
-
{{translate('Flat Rate Cost')}}
-
-
-
- @csrf - -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{translate('Note')}}
-
-
-
    -
  • - {{ translate('1. Flat rate shipping cost is applicable if Flat rate shipping is enabled.') }} -
  • -
-
-
-
-
- -
-
-
-
-
{{translate('Shipping Cost for Admin Products')}}
-
-
-
- @csrf - -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{translate('Note')}}
-
-
-
    -
  • - {{ translate('1. Shipping cost for admin is applicable if Seller wise shipping cost is enabled.') }} -
  • -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbd834a24e35c5b9ce6f433853c69215666a0a022a78b0b96921685b2d00462 +size 7953 diff --git a/desarrollo/resources/views/backend/setup_configurations/smtp_settings.blade.php b/desarrollo/resources/views/backend/setup_configurations/smtp_settings.blade.php index 68ec80eb..ec14177e 100644 --- a/desarrollo/resources/views/backend/setup_configurations/smtp_settings.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/smtp_settings.blade.php @@ -1,181 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{translate('SMTP Settings')}}
-
-
-
- @csrf -
- - -
- -
-
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
-
- -
-
-
-
-
-
-
-
-
{{translate('Test SMTP configuration')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
-
-
-
-
-
{{translate('Instruction')}}
-
-
-

{{ translate('Please be carefull when you are configuring SMTP. For incorrect configuration you will get error at the time of order place, new registration, sending newsletter.') }}

-
{{ translate('For Non-SSL') }}
-
    -
  • {{ translate('Select sendmail for Mail Driver if you face any issue after configuring smtp as Mail Driver ') }}
  • -
  • {{ translate('Set Mail Host according to your server Mail Client Manual Settings') }}
  • -
  • {{ translate('Set Mail port as 587') }}
  • -
  • {{ translate('Set Mail Encryption as ssl if you face issue with tls') }}
  • -
-
-
{{ translate('For SSL') }}
-
    -
  • {{ translate('Select sendmail for Mail Driver if you face any issue after configuring smtp as Mail Driver') }}
  • -
  • {{ translate('Set Mail Host according to your server Mail Client Manual Settings') }}
  • -
  • {{ translate('Set Mail port as 465') }}
  • -
  • {{ translate('Set Mail Encryption as ssl') }}
  • -
-
-
-
-
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bc0e904af0695a46745774b9961ed00fadb47e5cd9c460d32331cae5ecc1a5 +size 10593 diff --git a/desarrollo/resources/views/backend/setup_configurations/social_login.blade.php b/desarrollo/resources/views/backend/setup_configurations/social_login.blade.php index 0d780b9e..640d4c0f 100644 --- a/desarrollo/resources/views/backend/setup_configurations/social_login.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/social_login.blade.php @@ -1,171 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{ translate('Google Login Credential') }}
-
-
-
- @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{ translate('Facebook Login Credential') }}
-
-
-
- @csrf -
- -
- -
-
- -
-
- -
- -
- -
-
- -
-
-
- -
-
-
-
-
-
- -
-
-
-
-
{{ translate('Twitter Login Credential') }}
-
-
-
- @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{ translate('Apple Login Credential') }}
-
-
-
- @csrf - - - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:b297132ba737d4c00db899cfd775b93233bed16842e556fecb75a07e6256d69f +size 9708 diff --git a/desarrollo/resources/views/backend/setup_configurations/states/edit.blade.php b/desarrollo/resources/views/backend/setup_configurations/states/edit.blade.php index 510c9a7d..149a0fb5 100644 --- a/desarrollo/resources/views/backend/setup_configurations/states/edit.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/states/edit.blade.php @@ -1,46 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{ translate('State Information') }}
-
- -
-
-
-
-
{{ translate('Edit State') }}
-
-
-
- - @csrf -
- - -
- -
- - -
- -
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:091552b3474bbcba59601e9801238287ded4df6bd9ee1a64fe9c477b02f6638f +size 1941 diff --git a/desarrollo/resources/views/backend/setup_configurations/states/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/states/index.blade.php index 4b72d809..791ed076 100644 --- a/desarrollo/resources/views/backend/setup_configurations/states/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/states/index.blade.php @@ -1,130 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{translate('All States')}}

-
-
-
-
-
-
-
-
-
-
{{ translate('States') }}
-
-
- -
-
- -
-
- -
-
-
-
- - - - - - - - - - - - @foreach($states as $key => $state) - - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Country')}}{{translate('Show/Hide')}}{{translate('Action')}}
{{ ($key+1) + ($states->currentPage() - 1)*$states->perPage() }}{{ $state->name }}{{ $state->country->name }} - - - - - -
-
- {{ $states->appends(request()->input())->links() }} -
-
-
-
-
-
-
-
{{ translate('Add New State') }}
-
-
-
- @csrf -
- - -
- -
- - -
-
- -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:90673a41ff1dae27210ffc11f5b568f91c7efdd1ee5accc01ab16c571f6d3973 +size 6231 diff --git a/desarrollo/resources/views/backend/setup_configurations/tax/create.blade.php b/desarrollo/resources/views/backend/setup_configurations/tax/create.blade.php index a6e9f78a..6caff30d 100644 --- a/desarrollo/resources/views/backend/setup_configurations/tax/create.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/tax/create.blade.php @@ -1,62 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Pickup Point Information')}}
-
-
- @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:d943470f5b9d31f0ba93a5905626b55304ff9c3a351d469669beffc51666f3d2 +size 3159 diff --git a/desarrollo/resources/views/backend/setup_configurations/tax/edit.blade.php b/desarrollo/resources/views/backend/setup_configurations/tax/edit.blade.php index 7c33b4e7..e19d706a 100644 --- a/desarrollo/resources/views/backend/setup_configurations/tax/edit.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/tax/edit.blade.php @@ -1,37 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
{{translate('Tax Information')}}
-
- -
-
-
-
-
{{translate('update Tax Info')}}
-
-
-
- - @csrf -
-
- -
-
- -
-
- -
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:5c38147c52cf920acf99f04462f5af36f4b88711b7bb2b790f6603afaada944a +size 1393 diff --git a/desarrollo/resources/views/backend/setup_configurations/tax/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/tax/index.blade.php index fbb1f1e1..0742b490 100644 --- a/desarrollo/resources/views/backend/setup_configurations/tax/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/tax/index.blade.php @@ -1,131 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Taxes')}}

-
- -
-
- -
-
-
-
{{ translate('All Taxes') }}
-
-
-
- - - - - - - - - - - @foreach($all_taxes as $key => $tax) - - - - - - - - @endforeach - -
#{{translate('Tax Type')}}{{translate('Status')}}{{translate('Options')}}
{{ $loop->iteration }}{{ $tax->name }} - - - - - - - - - -
- -
-
- -@endsection - -@section('modal') - - - - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:f1816e052bacb0c40177d0c4ec75dbaaf158d99b9d6210034f0fe3576bd4f7ac +size 5162 diff --git a/desarrollo/resources/views/backend/setup_configurations/zones/create.blade.php b/desarrollo/resources/views/backend/setup_configurations/zones/create.blade.php index 363c7447..7f0c5969 100644 --- a/desarrollo/resources/views/backend/setup_configurations/zones/create.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/zones/create.blade.php @@ -1,62 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{ translate('Add New Zone') }}

-
- -
-
- -
-
-
-
-
{{ translate('Zone Information') }}
-
- -
- @csrf -
-
- - - - @error('name') - {{ $message }} - @enderror - -
-
- - - - @error('country_id') - {{ $message }} - @enderror -
- -
- -
-
- -
-
- -
- -
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:222b030aa5b521af2471d71065408f216ccfd0fba7bed41f6750a24cd0d8f55a +size 2429 diff --git a/desarrollo/resources/views/backend/setup_configurations/zones/edit.blade.php b/desarrollo/resources/views/backend/setup_configurations/zones/edit.blade.php index 77b2a153..b7de3ae0 100644 --- a/desarrollo/resources/views/backend/setup_configurations/zones/edit.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/zones/edit.blade.php @@ -1,63 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{ translate('Add New Zone') }}

-
- -
-
- -
-
-
-
-
{{ translate('Zone Information') }}
-
- -
- @csrf - @method('PUT') -
-
- - - - @error('name') - {{ $message }} - @enderror - -
-
- - - - @error('country_id') - {{ $message }} - @enderror -
- -
- -
-
- -
-
- -
- -
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:1cf064703224c381a10c5968183f51f1fbc7c354fab3307ca9be49b56feffcbb +size 2580 diff --git a/desarrollo/resources/views/backend/setup_configurations/zones/index.blade.php b/desarrollo/resources/views/backend/setup_configurations/zones/index.blade.php index c9b8d7e0..c37fa37f 100644 --- a/desarrollo/resources/views/backend/setup_configurations/zones/index.blade.php +++ b/desarrollo/resources/views/backend/setup_configurations/zones/index.blade.php @@ -1,70 +1,3 @@ -@extends('backend.layouts.app') - - -@section('content') -
-
-
-

{{ translate('All Zones') }}

-
- -
-
- -
-
-
-
-
-
{{ translate('Zones') }}
-
-
-
- - - - - - - - - - - @foreach ($zones as $key => $zone) - - - - - - - @endforeach - -
#{{ translate('Name') }}{{ translate('Status') }}{{ translate('Options') }}
{{ $zones->firstItem() + $key }}{{ $zone->name }} - - - - - - - - -
-
- {{ $zones->appends(request()->input())->links() }} -
-
-
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:21a7155d44ed9bcc3435ffb8584fa50be1c9b3cff4fca10274d9b03ec208c312 +size 3271 diff --git a/desarrollo/resources/views/backend/staff/staff_roles/create.blade.php b/desarrollo/resources/views/backend/staff/staff_roles/create.blade.php index a728ee03..05734b67 100644 --- a/desarrollo/resources/views/backend/staff/staff_roles/create.blade.php +++ b/desarrollo/resources/views/backend/staff/staff_roles/create.blade.php @@ -1,68 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Role Information')}}
-
-
- @csrf -
-
- -
- -
-
-
-
{{ translate('Permissions') }}
-
-
- @php - $permission_groups = \App\Models\Permission::all()->groupBy('section'); - $addons = array("offline_payment", "club_point", "pos_system", "paytm", "seller_subscription", "otp_system", "refund_request", "affiliate_system", "african_pg", "delivery_boy", "auction", "wholesale"); - @endphp - @foreach ($permission_groups as $key => $permission_group) - @php - $show_permission_group = true; - - if(in_array($permission_group[0]['section'], $addons)){ - - if (addon_is_activated($permission_group[0]['section']) == false) { - $show_permission_group = false; - } - } - @endphp - @if($show_permission_group) -
    -
  • {{ translate(Str::headline($permission_group[0]['section'])) }}
  • -
  • -
    - @foreach ($permission_group as $key => $permission) -
    -
    - - -
    -
    - @endforeach -
    -
  • -
- @endif - @endforeach - -
- -
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:17eab5d17ddce6c69aa74fd03864a8f376c1de460a3c74310c4ea92979e3a432 +size 3453 diff --git a/desarrollo/resources/views/backend/staff/staff_roles/edit.blade.php b/desarrollo/resources/views/backend/staff/staff_roles/edit.blade.php index 9e823d5a..aa90c840 100644 --- a/desarrollo/resources/views/backend/staff/staff_roles/edit.blade.php +++ b/desarrollo/resources/views/backend/staff/staff_roles/edit.blade.php @@ -1,86 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{translate('Role Information')}}
-
- - -
-
-
- -
- - - @csrf -
- -
- @php $roleForTranslation = \App\Models\Role::where('id',$role->id)->first(); @endphp - -
-
-
-
{{ translate('Permissions') }}
-
-
- @php - $permission_groups = \App\Models\Permission::all()->groupBy('section'); - $addons = array("offline_payment", "club_point", "pos_system", "paytm", "seller_subscription", "otp_system", "refund_request", "affiliate_system", "african_pg", "delivery_boy", "auction", "wholesale"); - @endphp - @foreach ($permission_groups as $key => $permission_group) - @php - $show_permission_group = true; - - if(in_array($permission_group[0]['section'], $addons)){ - - if (addon_is_activated($permission_group[0]['section']) == false) { - $show_permission_group = false; - } - } - @endphp - @if($show_permission_group) -
    -
  • {{ translate(Str::headline($permission_group[0]['section'])) }}
  • -
  • -
    - @foreach ($permission_group as $key => $permission) -
    -
    - - -
    -
    - @endforeach -
    -
  • -
- @endif - @endforeach - -
- -
-
-
- -
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3390ba71aea02efd165a8b792efdee901fdda100950e7cecf8bb56c4fc238f +size 4811 diff --git a/desarrollo/resources/views/backend/staff/staff_roles/index.blade.php b/desarrollo/resources/views/backend/staff/staff_roles/index.blade.php index 129cdd1e..79817885 100644 --- a/desarrollo/resources/views/backend/staff/staff_roles/index.blade.php +++ b/desarrollo/resources/views/backend/staff/staff_roles/index.blade.php @@ -1,89 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Role')}}

-
- @can('add_staff_role') - - @endcan -
-
-{{--
-
-
-
-
{{translate('Add New Permission')}}
-
-
-
- @csrf -
- - -
-
- - -
-
- -
-
-
-
-
-
--}} - -
-
-
{{translate('Roles')}}
-
-
- - - - - - - - - - @foreach($roles as $key => $role) - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Options')}}
{{ ($key+1) + ($roles->currentPage() - 1)*$roles->perPage() }}{{ $role->name}} - @can('edit_staff_role') - - - - @endcan - @if($role->id != 1 && auth()->user()->can('delete_staff_role')) - - - - @endif -
-
- {{ $roles->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6f142cbe55d7f69088515fb1afa95a6447759d10de382f737e14a8aedc92f568 +size 3621 diff --git a/desarrollo/resources/views/backend/staff/staffs/create.blade.php b/desarrollo/resources/views/backend/staff/staffs/create.blade.php index 7d41d79c..924be3a2 100644 --- a/desarrollo/resources/views/backend/staff/staffs/create.blade.php +++ b/desarrollo/resources/views/backend/staff/staffs/create.blade.php @@ -1,59 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Staff Information')}}
-
- -
- @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
- -
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:79efbcc8cba85152d3d6fd85dcb6ea5c7752e112cd120b49c228b62bc0b9d57e +size 2938 diff --git a/desarrollo/resources/views/backend/staff/staffs/edit.blade.php b/desarrollo/resources/views/backend/staff/staffs/edit.blade.php index 76c29f3b..3f7d9396 100644 --- a/desarrollo/resources/views/backend/staff/staffs/edit.blade.php +++ b/desarrollo/resources/views/backend/staff/staffs/edit.blade.php @@ -1,59 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Staff Information')}}
-
- -
- - @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:45e8dd50703a1b8314f0b2c5dbe30d3da78918190a182ab2ed3f833af072680d +size 3119 diff --git a/desarrollo/resources/views/backend/staff/staffs/index.blade.php b/desarrollo/resources/views/backend/staff/staffs/index.blade.php index b560a4be..11a7e568 100644 --- a/desarrollo/resources/views/backend/staff/staffs/index.blade.php +++ b/desarrollo/resources/views/backend/staff/staffs/index.blade.php @@ -1,76 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Staffs')}}

-
- @can('add_staff') - - @endcan -
-
- -
-
-
{{translate('Staffs')}}
-
-
- - - - - - - - - - - - - @foreach($staffs as $key => $staff) - @if($staff->user != null) - - - - - - - - - @endif - @endforeach - -
#{{translate('Name')}}{{translate('Email')}}{{translate('Phone')}}{{translate('Role')}}{{translate('Options')}}
{{ ($key+1) + ($staffs->currentPage() - 1)*$staffs->perPage() }}{{$staff->user->name}}{{$staff->user->email}}{{$staff->user->phone}} - @if ($staff->role != null) - {{ $staff->role->getTranslation('name') }} - @endif - - @can('edit_staff') - - - - @endcan - @can('delete_staff') - - - - @endcan -
-
- {{ $staffs->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:8cf0cbfcd0adeacf96e222d0ac870efb1b6e9ea22805760e6b46cea04afa36d7 +size 3011 diff --git a/desarrollo/resources/views/backend/support/conversations/index.blade.php b/desarrollo/resources/views/backend/support/conversations/index.blade.php index d4530eb3..a2645f4a 100644 --- a/desarrollo/resources/views/backend/support/conversations/index.blade.php +++ b/desarrollo/resources/views/backend/support/conversations/index.blade.php @@ -1,64 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{translate('Conversations')}}
-
-
- - - - - - - - - - - - - @foreach ($conversations as $key => $conversation) - - - - - - - - - @endforeach - -
#{{ translate('Date') }}{{translate('Title')}}{{translate('Sender')}}{{translate('Receiver')}}{{translate('Options')}}
{{$key+1}}{{ $conversation->created_at }}{{ $conversation->title }} - @if ($conversation->sender != null) - {{ $conversation->sender->name }} - @if ($conversation->receiver_viewed == 0) - {{ translate('New') }} - @endif - @endif - - @if ($conversation->receiver != null) - {{ $conversation->receiver->name }} - @if ($conversation->sender_viewed == 0) - {{ translate('New') }} - @endif - @endif - - - - - @can('delete_product_conversations') - - - - @endcan -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5ab234d8e8190b981bb86722cb8a95c19bffb6ba481c6001caf1ef2a00355b +size 2920 diff --git a/desarrollo/resources/views/backend/support/conversations/show.blade.php b/desarrollo/resources/views/backend/support/conversations/show.blade.php index 0de28d26..3e9ad740 100644 --- a/desarrollo/resources/views/backend/support/conversations/show.blade.php +++ b/desarrollo/resources/views/backend/support/conversations/show.blade.php @@ -1,52 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
#{{ $conversation->title }} (Between @if($conversation->sender != null) {{ $conversation->sender->name }} @endif and @if($conversation->receiver != null) {{ $conversation->receiver->name }} @endif) -
-
- -
-
    - @foreach($conversation->messages as $message) -
  • -
    - user != null) src="{{ uploaded_asset($message->user->avatar_original) }}" @endif onerror="this.onerror=null;this.src='{{ static_asset('assets/img/avatar-place.png') }}';"> -
    -
    - @if ($message->user != null) - {{ $message->user->name }} - @endif -
    -

    {{$message->created_at}}

    -
    -
    -

    - {{ $message->message }} -

    -
  • - @endforeach -
- @if ($conversation->receiver != null && $conversation->receiver->user_type == 'admin' && auth()->user()->can('reply_to_product_conversations')) -
- @csrf - -
-
- -
-
-
-
- -
-
- @endif -
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:7b8c5cf3064b606f457e77e9ce9ae7d9b2f7ac386a535efda04d8d78024194f4 +size 2460 diff --git a/desarrollo/resources/views/backend/support/product_query/index.blade.php b/desarrollo/resources/views/backend/support/product_query/index.blade.php index 29bfdd8b..994a59a3 100644 --- a/desarrollo/resources/views/backend/support/product_query/index.blade.php +++ b/desarrollo/resources/views/backend/support/product_query/index.blade.php @@ -1,55 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
{{ translate('Product Queries') }}
-
-
- - - - - - - - - - - - - - @foreach ($queries as $key => $query) - - - - - - - - - - @endforeach - -
#{{ translate('User Name') }}{{ translate('Product Name') }}{{ translate('Question') }}{{ translate('Reply') }}{{ translate('status') }}{{ translate('Options') }}
{{ translate($key + 1) }}{{ $query->user->name ?? translate('Customer Not Found') }}{{ $query->product != null ? $query->product->getTranslation('name') : translate('Product Not Found') }}{{ Str::limit($query->question, 100) }}{{ Str::limit($query->reply, 100) }} - - {{ $query->reply == null ? translate('Not Replied') : translate('Replied')}} - - - - - -
-
- {{ $queries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:542f4db2ff48f6896fc81d47c37e3c21a94d38587e721a2a28bb0b8dcc5ae97d +size 2644 diff --git a/desarrollo/resources/views/backend/support/product_query/show.blade.php b/desarrollo/resources/views/backend/support/product_query/show.blade.php index a04677bf..a8d35abe 100644 --- a/desarrollo/resources/views/backend/support/product_query/show.blade.php +++ b/desarrollo/resources/views/backend/support/product_query/show.blade.php @@ -1,56 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
- {{ $query->product != null ? $query->product->getTranslation('name') : translate('Product Not Found') }} -
-
- -
-
    -
  • -
    - user != null) src="{{ uploaded_asset($query->user->avatar_original) }}" @endif - onerror="this.onerror=null;this.src='{{ static_asset('assets/img/avatar-place.png') }}';"> -
    -
    - @if ($query->user != null) - {{ $query->user->name }} - @endif -
    -

    {{ $query->created_at->diffForHumans() }}

    -
    -
    -

    - {{ strip_tags($query->question) }} -

    -

    - {{ strip_tags($query->reply) }} -

    -
  • -
- @if ((Auth::user()->id == $query->seller_id || Auth::user()->user_type == 'staff') && $query->reply == null && auth()->user()->can('reply_to_product_queries')) -
- @method('put') - @csrf - -
-
- -
-
-
-
- -
-
- @endif -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:863eb63ef29f9f13b9ff3560e6be0c7434f0c24caf18bef1403d5f026879bc6b +size 2762 diff --git a/desarrollo/resources/views/backend/support/support_tickets/index.blade.php b/desarrollo/resources/views/backend/support/support_tickets/index.blade.php index 0c2fb866..072e596f 100644 --- a/desarrollo/resources/views/backend/support/support_tickets/index.blade.php +++ b/desarrollo/resources/views/backend/support/support_tickets/index.blade.php @@ -1,74 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{ translate('Support Desk') }}
-
-
-
- -
-
-
-
- -
- - - - - - - - - - - - - - @foreach ($tickets as $key => $ticket) - @if ($ticket->user != null) - - - - - - - - - - @endif - @endforeach - -
{{ translate('Ticket ID') }}{{ translate('Sending Date') }}{{ translate('Subject') }}{{ translate('User') }}{{ translate('Status') }}{{ translate('Last reply') }}{{ translate('Options') }}
#{{ $ticket->code }}{{ $ticket->created_at }} @if($ticket->viewed == 0) {{ translate('New') }} @endif{{ $ticket->subject }}{{ $ticket->user->name }} - @if ($ticket->status == 'pending') - {{ translate('Pending') }} - @elseif ($ticket->status == 'open') - {{ translate('Open') }} - @else - {{ translate('Solved') }} - @endif - - @if (count($ticket->ticketreplies) > 0) - {{ $ticket->ticketreplies->last()->created_at }} - @else - {{ $ticket->created_at }} - @endif - - - - -
-
-
- {{ $tickets->appends(request()->input())->links() }} -
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:61a15f9f7235b04bd03a682f2668b89925d744fe07e1918d25180f11ccfc568e +size 3607 diff --git a/desarrollo/resources/views/backend/support/support_tickets/show.blade.php b/desarrollo/resources/views/backend/support/support_tickets/show.blade.php index 16f53bdc..57aca9d6 100644 --- a/desarrollo/resources/views/backend/support/support_tickets/show.blade.php +++ b/desarrollo/resources/views/backend/support/support_tickets/show.blade.php @@ -1,141 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{ $ticket->subject }} #{{ $ticket->code }}
-
- {{ $ticket->user->name }} - {{ $ticket->created_at }} - - {{ translate(ucfirst($ticket->status)) }} - -
-
-
- -
- @can('reply_to_support_tickets') -
- @csrf - - -
- -
-
-
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- - - -
-
- @endcan -
- -
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:30fe74478ca4283c5062811c73b20ca56a5011d12ef7d28e2378169d21b27868 +size 8099 diff --git a/desarrollo/resources/views/backend/system/server_status.blade.php b/desarrollo/resources/views/backend/system/server_status.blade.php index 3ffce505..30521f96 100644 --- a/desarrollo/resources/views/backend/system/server_status.blade.php +++ b/desarrollo/resources/views/backend/system/server_status.blade.php @@ -1,299 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-

{{ translate('Server information') }}

-
-
- - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Name') }}{{ translate('Current Version') }}{{ translate('Required Version') }}{{ translate('Status') }}
Php versions{{ phpversion() }}8.0 - @if (floatval(phpversion()) >= 8.0) - - @else - - @endif -
MySQL - @php - $results = DB::select( DB::raw("select version()") ); - $mysql_version = $results[0]->{'version()'}; - @endphp - {{ $mysql_version }} - 10.0+ - @if (floatval(explode("-",$mysql_version)[0]) >= 10.0) - - @else - - @endif -
-
-
-
-
-

{{ translate('php.ini Config') }}

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Config Name') }}{{ translate('Current') }}{{ translate('Recommended') }}{{ translate('Status') }}
file_uploads - @if(ini_get('file_uploads') == 1) - On - @else - Off - @endif - On - @if (ini_get('file_uploads') == 1) - - @else - - @endif -
max_file_uploads - {{ ini_get('max_file_uploads') }} - 20+ - @if (ini_get('max_file_uploads') >= 20) - - @else - - @endif -
upload_max_filesize - {{ ini_get('upload_max_filesize') }} - 128M+ - @if (str_replace(['M','G'],"", ini_get('upload_max_filesize')) >= 128) - - @else - - @endif -
post_max_size - {{ ini_get('post_max_size') }} - 128M+ - @if (str_replace(['M','G'],"", ini_get('post_max_size')) >= 128) - - @else - - @endif -
allow_url_fopen - @if(ini_get('allow_url_fopen') == 1) - On - @else - Off - @endif - On - @if (ini_get('allow_url_fopen') == 1) - - @else - - @endif -
max_execution_time - @if(ini_get('max_execution_time') == '-1') - Unlimited - @else - {{ ini_get('max_execution_time') }} - @endif - 600+ - @if (ini_get('max_execution_time') == -1 || ini_get('max_execution_time') >= 600) - - @else - - @endif -
max_input_time - @if(ini_get('max_input_time') == '-1') - Unlimited - @else - {{ ini_get('max_input_time') }} - @endif - 120+ - @if (ini_get('max_input_time') == -1 || ini_get('max_input_time') >= 120) - - @else - - @endif -
max_input_vars - {{ ini_get('max_input_vars') }} - 1000+ - @if (ini_get('max_input_vars') >= 1000) - - @else - - @endif -
memory_limit - @if(ini_get('memory_limit') == '-1') - Unlimited - @else - {{ ini_get('memory_limit') }} - @endif - 256M+ - @php - $memory_limit = ini_get('memory_limit'); - if (preg_match('/^(\d+)(.)$/', $memory_limit, $matches)) { - if ($matches[2] == 'G') { - $memory_limit = $matches[1] * 1024 * 1024 * 1024; // nnnM -> nnn GB - } else if ($matches[2] == 'M') { - $memory_limit = $matches[1] * 1024 * 1024; // nnnM -> nnn MB - } else if ($matches[2] == 'K') { - $memory_limit = $matches[1] * 1024; // nnnK -> nnn KB - } - } - @endphp - @if (ini_get('memory_limit') == -1 || $memory_limit >= (256 * 1024 * 1024)) - - @else - - @endif -
-
-
-
-
-

{{ translate('Extensions information') }}

-
-
- - - - - - - - @php - $loaded_extensions = get_loaded_extensions(); - $required_extensions = ['bcmath', 'ctype', 'json', 'mbstring', 'zip', 'zlib', 'openssl', 'tokenizer', 'xml', 'dom', 'curl', 'fileinfo', 'gd', 'pdo_mysql'] - @endphp - - @foreach ($required_extensions as $extension) - - - - - @endforeach - -
{{ translate('Extension Name') }}{{ translate('Status') }}
{{ $extension }} - @if(in_array($extension, $loaded_extensions)) - - @else - - @endif -
-
-
-
-
-

{{ translate('Filesystem Permissions') }}

-
-
- - - - - - - - @php - $required_paths = ['.env', 'public', 'app/Providers', 'app/Http/Controllers', 'storage', 'resources/views'] - @endphp - - @foreach ($required_paths as $path) - - - - - @endforeach - -
{{ translate('File or Folder') }}{{ translate('Status') }}
{{ $path }} - @if(is_writable(base_path($path))) - - @else - - @endif -
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:f3fa8b4ef8ea1ca83fffea86a7ce522cf6a14cf7e2be0f9b02527db1fa7bf173 +size 13799 diff --git a/desarrollo/resources/views/backend/system/update.blade.php b/desarrollo/resources/views/backend/system/update.blade.php index ec731f3c..4e60e38f 100644 --- a/desarrollo/resources/views/backend/system/update.blade.php +++ b/desarrollo/resources/views/backend/system/update.blade.php @@ -1,47 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-

{{ translate('Update your system') }}

- {{ translate('Current verion') }}: {{ get_setting('current_version') }} -
-
-
-
    -
  • - {{ translate('Make sure your server has matched with all requirements.') }} - {{ translate('Check Here') }} -
  • -
  • {{ translate('Download latest version from codecanyon.') }}
  • -
  • {{ translate('Extract downloaded zip. You will find updates.zip file in those extraced files.') }}
  • -
  • {{ translate('Upload that zip file here and click update now.') }}
  • -
  • {{ translate('If you are using any addon make sure to update those addons after updating.') }}
  • -
  • {{ translate('Please turn off maintenance mode before updating.') }}
  • -
-
-
- @csrf -
-
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
- -
-
-
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d3c1c1fb0227a6233737037ea358a05e13fd3f744389e1dfac525b7c70aeaf +size 2087 diff --git a/desarrollo/resources/views/backend/uploaded_files/create.blade.php b/desarrollo/resources/views/backend/uploaded_files/create.blade.php index ea347c1d..bc35e05f 100644 --- a/desarrollo/resources/views/backend/uploaded_files/create.blade.php +++ b/desarrollo/resources/views/backend/uploaded_files/create.blade.php @@ -1,35 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{translate('Upload New File')}}

-
- -
-
-
-
-
{{translate('Drag & drop your files')}}
-
-
-
- -
-
-
-@endsection - -@section('script') - -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:7698d125b4537f97400a75a209d931260940005e191e6774c2c0015dbb6cdb79 +size 900 diff --git a/desarrollo/resources/views/backend/uploaded_files/index.blade.php b/desarrollo/resources/views/backend/uploaded_files/index.blade.php index 4ae7c699..359ca561 100644 --- a/desarrollo/resources/views/backend/uploaded_files/index.blade.php +++ b/desarrollo/resources/views/backend/uploaded_files/index.blade.php @@ -1,221 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{translate('All uploaded files')}}

-
- -
-
- -
-
-
-
-
{{translate('All files')}}
-
- -
- -
-
- -
-
- -
-
- -
-
-
- -
-
- -
- @foreach($all_uploads as $key => $file) - @php - if($file->file_original_name == null){ - $file_name = translate('Unknown'); - }else{ - $file_name = $file->file_original_name; - } - $file_path = my_asset($file->file_name); - if($file->external_link) { - $file_path = $file->external_link; - } - - @endphp -
-
- -
-
- -
-
-
-
- @if($file->type == 'image') - - @elseif($file->type == 'video') - - @else - - @endif -
-
-
- {{ $file_name }} - .{{ $file->extension }} -
-

{{ formatBytes($file->file_size) }}

-
-
-
-
- @endforeach -
-
- {{ $all_uploads->appends(request()->input())->links() }} -
-
-
-
-@endsection -@section('modal') - - -@include('modals.delete_modal') - -@include('modals.bulk_delete_modal') - -@endsection -@section('script') - -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:71f8cb371a60dd626d537f2e8d70724245d9385d738393398a794f17d9d0ceb4 +size 8197 diff --git a/desarrollo/resources/views/backend/uploaded_files/info.blade.php b/desarrollo/resources/views/backend/uploaded_files/info.blade.php index 1c558aa2..68373d3f 100644 --- a/desarrollo/resources/views/backend/uploaded_files/info.blade.php +++ b/desarrollo/resources/views/backend/uploaded_files/info.blade.php @@ -1,32 +1,3 @@ -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- @php - if($file->file_original_name == null){ - $file_name = translate('Unknown'); - }else{ - $file_name = $file->file_original_name; - } - @endphp - {{ translate('Download') }} -
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:f0436550070bb80eb2ecfba6ef95dc268cd233432cab73929f51ac02a6e8804c +size 1218 diff --git a/desarrollo/resources/views/backend/website_settings/appearance.blade.php b/desarrollo/resources/views/backend/website_settings/appearance.blade.php index 731e6caf..8a05aa7c 100644 --- a/desarrollo/resources/views/backend/website_settings/appearance.blade.php +++ b/desarrollo/resources/views/backend/website_settings/appearance.blade.php @@ -1,304 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{ translate('General') }}
-
-
-
- @csrf -
- -
- - -
-
-
- -
- - -
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- - -
-
- {{ translate('Website favicon. 32x32 .png') }} -
-
-
- -
- - - {{ translate('Hex Color Code') }} -
-
-
- -
- - - {{ translate('Hex Color Code') }} -
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- - -
-
-
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- - -
-
-
-
- @if (get_setting('vendor_system_activation') == 1) -
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- - -
-
-
-
- @endif - @if (addon_is_activated('delivery_boy')) -
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- - -
-
-
-
- @endif -
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- - -
-
-
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- - -
-
-
-
-
- -
-
-
-
-
-
-
{{ translate('Global SEO') }}
-
-
-
- @csrf -
- -
- - -
-
-
- -
- - -
-
-
- -
- - - {{ translate('Separate with coma') }} -
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- - -
-
-
-
-
- -
-
-
-
-
-
-
{{ translate('Cookies Agreement') }}
-
-
-
- @csrf -
- -
- - -
-
-
- -
- -
-
-
- -
-
-
-
-
-
-
{{ translate('Website Popup') }}
-
-
-
- @csrf -
- -
- -
-
-
- -
- - -
-
-
- -
- -
-
-
- -
-
-
-
-
-
-
{{ translate('Custom Script') }}
-
-
-
- @csrf -
- -
- - - {{ translate('Write script with ">{{ get_setting('footer_script') }} - {{ translate('Write script with -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:68f84f3c9f7c3c2255782baf287d35d9e115d9f8dd9fc34850a5644a0e05f58c +size 29042 diff --git a/desarrollo/resources/views/backend/website_settings/pages/index.blade.php b/desarrollo/resources/views/backend/website_settings/pages/index.blade.php index 4b6f8fa3..af2be5a3 100644 --- a/desarrollo/resources/views/backend/website_settings/pages/index.blade.php +++ b/desarrollo/resources/views/backend/website_settings/pages/index.blade.php @@ -1,70 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{ translate('Website Pages') }}

-
-
-
- -
- @can('add_website_page') -
-
{{ translate('All Pages') }}
- {{ translate('Add New Page') }} -
- @endcan -
- - - - - - - - - - - @foreach (\App\Models\Page::all() as $key => $page) - - - - @if($page->type == 'home_page') - - - @else - - - @endif - - - - @endforeach - -
#{{translate('Name')}}{{translate('URL')}}{{translate('Actions')}}
{{ $key+1 }}{{ $page->getTranslation('title') }}{{ route('home') }}{{ $page->getTranslation('title') }}{{ route('home') }}/{{ $page->slug }} - @can('edit_website_page') - @if($page->type == 'home_page') - - - - @else - - - - @endif - @endcan - @if($page->type == 'custom_page' && auth()->user()->can('delete_website_page')) - - - - @endif -
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:01078b9df21e94ac142ab158875eb359a90f2107a8d17b75a80e371b5d24bfd9 +size 2565 diff --git a/desarrollo/resources/views/categories/child_category.blade.php b/desarrollo/resources/views/categories/child_category.blade.php index af90a196..64adcdc8 100644 --- a/desarrollo/resources/views/categories/child_category.blade.php +++ b/desarrollo/resources/views/categories/child_category.blade.php @@ -1,12 +1,3 @@ -@php - $value = null; - for ($i=0; $i < $child_category->level; $i++){ - $value .= '--'; - } -@endphp - -@if ($child_category->categories) - @foreach ($child_category->categories as $childCategory) - @include('categories.child_category', ['child_category' => $childCategory]) - @endforeach -@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:c857b6ff2ef67a64edac819951c1a0ff950d476c20f897d204b5ff5d10465cb7 +size 423 diff --git a/desarrollo/resources/views/club_points/club_point_details.blade.php b/desarrollo/resources/views/club_points/club_point_details.blade.php index 7d987d90..1a223b62 100644 --- a/desarrollo/resources/views/club_points/club_point_details.blade.php +++ b/desarrollo/resources/views/club_points/club_point_details.blade.php @@ -1,43 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
- - - - - - - - - - - @foreach($club_point_details as $key => $club_point) - - - @if ($club_point->product != null) - - @else - - @endif - - - - @endforeach - -
#{{translate('Product Name')}}{{translate('Points')}}{{translate('Earned At')}}
{{ ($key+1) + ($club_point_details->currentPage() - 1)*$club_point_details->perPage() }}{{ $club_point->product->getTranslation('name') }}{{ translate('Deleted Product') }}{{ $club_point->point }}{{ $club_point->created_at }}
-
-
- {{ $club_point_details->appends(request()->input())->links() }} -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:21beb5ab51a2c4082dee882fb7ceaaf83c2111c7eb3bd8d4c837c4395b87c074 +size 1869 diff --git a/desarrollo/resources/views/club_points/config.blade.php b/desarrollo/resources/views/club_points/config.blade.php index b62558e7..b77cfe0b 100644 --- a/desarrollo/resources/views/club_points/config.blade.php +++ b/desarrollo/resources/views/club_points/config.blade.php @@ -1,35 +1,3 @@ -@extends('backend.layouts.app') -@section('content') - -
-
-
-
-
{{translate('Convert Point To Wallet')}}
-
-
- - @csrf - -
-
- -
-
- -
-
- -
-
-
- -
- - {{ translate('Note: You need to activate wallet option first before using club point addon.') }} -
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:196f44c40bad00722e164fe7bbd9df74866c1c5d0bb732c848f22f30e713c56f +size 1734 diff --git a/desarrollo/resources/views/club_points/frontend/index.blade.php b/desarrollo/resources/views/club_points/frontend/index.blade.php index 6ea6f33e..f2afb22e 100644 --- a/desarrollo/resources/views/club_points/frontend/index.blade.php +++ b/desarrollo/resources/views/club_points/frontend/index.blade.php @@ -1,113 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') - -
-
-
-
-

{{ translate('My Clubpoints') }}

-
-
-
-
-
-
{{ translate('Exchange Rate') }}
-
{{ get_setting('club_point_convert_rate') }} {{ translate(' Points') }} = {{ single_price(1) }} {{ translate('Wallet Money') }}
-
-
-
- -
-
-
{{ translate('Clubpoint Earning History')}}
-
-
- - - - - - - - - - - - - @foreach ($club_points as $key => $club_point) - @php - $convertible_club_point = $club_point->club_point_details->where('refunded',0)->sum('point'); - @endphp - - - - - - - - - - - @endforeach - -
#{{translate('Code')}}{{translate('Points')}}{{translate('Converted')}}{{translate('Date') }}{{translate('Action')}}
{{ sprintf('%02d', $key+1) }} - @if ($club_point->order != null) - {{ $club_point->order->code }} - @else - {{ translate('Order not found') }} - @endif - - @if($convertible_club_point > 0) - {{ $convertible_club_point }} {{ translate(' pts') }} - @else - {{ translate('Refunded') }} - @endif - - @if ($club_point->convert_status == 1) - {{ translate('Yes') }} - @else - {{ translate('No') }} - @endif - {{ date('d-m-Y', strtotime($club_point->created_at)) }} - - @if ($club_point->convert_status == 0 && $convertible_club_point > 0) - - @elseif($convertible_club_point == 0) - {{ translate('Refunded') }} - @else - {{ translate('Done') }} - @endif - -
-
- {{ $club_points->links() }} -
-
-
-
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c90e0afbee325c2e5e5094d581327020d47ee55f6efbe9966a028cf9be416941 +size 6840 diff --git a/desarrollo/resources/views/club_points/index.blade.php b/desarrollo/resources/views/club_points/index.blade.php index 2d74bd00..f6b50098 100644 --- a/desarrollo/resources/views/club_points/index.blade.php +++ b/desarrollo/resources/views/club_points/index.blade.php @@ -1,66 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
- - - - - - - - - - - - - - @foreach($club_points as $key => $club_point) - - - - - - - - - - @endforeach - -
#{{translate('Order Code')}}{{translate('Customer Name')}}{{translate('Points')}}{{translate('Convert Status')}}{{translate('Earned At')}}{{translate('Options')}}
{{ ($key+1) + ($club_points->currentPage() - 1)*$club_points->perPage() }} - @if ($club_point->order != null) - {{ $club_point->order->code }} - @else - {{ translate('Order not found') }} - @endif - - @if ($club_point->user != null) - {{ $club_point->user->name }} - @else - {{ translate('User not found') }} - @endif - {{ $club_point->points }} - @if ($club_point->convert_status == 1) - {{translate('Converted')}} - @else - {{translate('Pending')}} - @endif - {{ $club_point->created_at }} - - - -
-
- {{ $club_points->appends(request()->input())->links() }} -
-
-
-
-
- - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:b923100bcb3d4fde511435ce8b7e6b9f47e9bb74991efd245c42f3494a8e2c1e +size 3338 diff --git a/desarrollo/resources/views/club_points/product_point_edit.blade.php b/desarrollo/resources/views/club_points/product_point_edit.blade.php index 6ec4b8a3..da2bd026 100644 --- a/desarrollo/resources/views/club_points/product_point_edit.blade.php +++ b/desarrollo/resources/views/club_points/product_point_edit.blade.php @@ -1,32 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Set Point for Product')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
-
-
-
-
-
- - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6ade368fae7c8111a8c53b5ca586053cd21a7259e6644212626bb5e348259495 +size 1322 diff --git a/desarrollo/resources/views/club_points/set_point.blade.php b/desarrollo/resources/views/club_points/set_point.blade.php index 7d895ec4..3f28d03c 100644 --- a/desarrollo/resources/views/club_points/set_point.blade.php +++ b/desarrollo/resources/views/club_points/set_point.blade.php @@ -1,126 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
- - - - - - - - - - - - - @foreach($products as $key => $product) - - - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Owner')}}{{translate('Price')}}{{translate('Point')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} - -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
-
- @if ($product->user != null) - {{ $product->user->name }} - @endif - {{ number_format($product->unit_price,2) }}{{ $product->earn_point }} - - - -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
-
-
-
-
{{translate('Set Point for Product Within a Range')}}
-
-
-
- {{ translate('Set any specific point for those products what are between Min-price and Max-price. Min-price should be less than Max-price') }} -
-
- @csrf -
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
-
-
{{translate('Set Point for all Products')}}
-
-
-
- @csrf -
-
- -
-
- -
-
- -
-
-
- -
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:de70835fd796204002b5c93c3f91d8a831692802a3028f257366f4496ada56ff +size 6554 diff --git a/desarrollo/resources/views/components/notification.blade.php b/desarrollo/resources/views/components/notification.blade.php new file mode 100644 index 00000000..eb86a0bf --- /dev/null +++ b/desarrollo/resources/views/components/notification.blade.php @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c387f3ab6ac3e3ec64503c6fa56b10c73442e431fc8ffbaa77f1eaeadef65229 +size 5199 diff --git a/desarrollo/resources/views/delivery_boys/assigned_delivery.blade.php b/desarrollo/resources/views/delivery_boys/assigned_delivery.blade.php index 440531e4..3efd5468 100644 --- a/desarrollo/resources/views/delivery_boys/assigned_delivery.blade.php +++ b/desarrollo/resources/views/delivery_boys/assigned_delivery.blade.php @@ -1,122 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Assigned Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($assigned_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As Pickup')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - {{ single_price($delivery->grand_total) }} - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $assigned_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:a6203e1025276ebc55443fb502f4e76fd2a05e7d224e233f1cfa4fb642106eb5 +size 7439 diff --git a/desarrollo/resources/views/delivery_boys/cancel_request_list.blade.php b/desarrollo/resources/views/delivery_boys/cancel_request_list.blade.php index 7a922a84..678b079d 100644 --- a/desarrollo/resources/views/delivery_boys/cancel_request_list.blade.php +++ b/desarrollo/resources/views/delivery_boys/cancel_request_list.blade.php @@ -1,61 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('All Cancel Request') }}
-
-
- - - - - - - - - - - - @foreach($cancel_requests as $key => $cancel_request) - - - - - - - - - - - - - @endforeach - -
#{{translate('Code')}}{{translate('Request By')}}{{translate('Request At')}}{{translate('Options')}}
- {{ ($key+1) + ($cancel_requests->currentPage() - 1) * $cancel_requests->perPage() }} - - {{ $cancel_request->code }} - - {{ $cancel_request->delivery_boy->name }} - - {{ date('d-m-Y h:i A', strtotime($cancel_request->cancel_request_at)) }} - - - - - - - - - - - -
- -
- {{ $cancel_requests->appends(request()->input())->links() }} -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:8ffad863f2a8748564a0df98d296ea4e68fa97af8e88dee5146a0b6e0c78ef7a +size 3627 diff --git a/desarrollo/resources/views/delivery_boys/cancel_request_modal.blade.php b/desarrollo/resources/views/delivery_boys/cancel_request_modal.blade.php index 01ceb9d7..e4dc5ad4 100644 --- a/desarrollo/resources/views/delivery_boys/cancel_request_modal.blade.php +++ b/desarrollo/resources/views/delivery_boys/cancel_request_modal.blade.php @@ -1,18 +1,3 @@ - \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:0442b4f0ce55617f99e085d95e804d98bb4b1465df26a6265b4e066bf6426cce +size 847 diff --git a/desarrollo/resources/views/delivery_boys/cancelled_delivery.blade.php b/desarrollo/resources/views/delivery_boys/cancelled_delivery.blade.php index c5936d3e..ac60541b 100644 --- a/desarrollo/resources/views/delivery_boys/cancelled_delivery.blade.php +++ b/desarrollo/resources/views/delivery_boys/cancelled_delivery.blade.php @@ -1,81 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Cancelled Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($cancelled_deliveries as $key => $order) - @if (count($order->orderDetails) > 0) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $order->code }} - - {{ date('d-m-Y', $order->date) }} - - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->orderDetails->first()->delivery_status))) }} - @if($order->delivery_viewed == 0) - * - @endif - - @if ($order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($order->payment_status_viewed == 0) - * - @endif - - - - - - - - - - - - - - -
- -
- {{ $cancelled_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c122a09955c68ef0ecf61c05ae9132828b6af3f4bf6027b8bd89f941faf79d42 +size 5528 diff --git a/desarrollo/resources/views/delivery_boys/completed_delivery.blade.php b/desarrollo/resources/views/delivery_boys/completed_delivery.blade.php index 75dc5fb7..f798c2ac 100644 --- a/desarrollo/resources/views/delivery_boys/completed_delivery.blade.php +++ b/desarrollo/resources/views/delivery_boys/completed_delivery.blade.php @@ -1,75 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Completed Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($completed_deliveries as $key => $delivery) - @if(optional($delivery->order)->code) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $delivery->order->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->created_at)) }} - - {{ single_price($delivery->collection) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - - @if ($delivery->order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - - - - - - - - - - - - - - -
- -
- {{ $completed_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:2c1cb5f6b2728a2402529a1fe619817fbe498c2a0af4ba75e714bd676ef95ec9 +size 5125 diff --git a/desarrollo/resources/views/delivery_boys/dashboard.blade.php b/desarrollo/resources/views/delivery_boys/dashboard.blade.php index 9097b330..15965d2a 100644 --- a/desarrollo/resources/views/delivery_boys/dashboard.blade.php +++ b/desarrollo/resources/views/delivery_boys/dashboard.blade.php @@ -1,252 +1,3 @@ -@extends('delivery_boys.layouts.app') -@section('panel_content') - -@php - $delivery_boy_info = \App\Models\DeliveryBoy::where('user_id', Auth::user()->id)->first(); -@endphp - -
-
-
-

{{ translate('Dashboard') }}

-
-
-

{{ date('d M, Y') }}

- {{ date('l') }} -
-
-
- -
- - - @php - $total_complete_delivery = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->count(); - @endphp -
-
- - - - - - - - - - -
-

{{ translate('Completed Delivery') }}

-

{{ sprintf('%02d', $total_complete_delivery) }}

-
-
-
- - - @php - $total_pending_delivery = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', '!=', 'delivered') - ->where('delivery_status', '!=', 'cancelled') - ->where('cancel_request', '0') - ->count(); - @endphp -
-
- - - - - - - - - -
-

{{ translate('Pending Delivery') }}

-

{{ sprintf('%02d', $total_pending_delivery) }}

-
-
-
- - -
-
- - - - - - - - - - - - - - - - -
-

{{ translate('Total Collected') }}

-

{{ $delivery_boy_info->total_collection }}

-
-
-
- - -
-
- - - - - - - -
-

{{ translate('Earnings') }}

- @if(get_setting('delivery_boy_payment_type') == 'commission') -

- {{ $delivery_boy_info->total_earning }}/ - - {{ translate('order') }} - -

- @endif - @if(get_setting('delivery_boy_payment_type') == 'salary') -

- {{ get_setting('delivery_boy_salary') }} / {{ translate('mo') }} -

- @endif -
-
-
- -
- -
- - - @php - $cancelled_deliveries = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'cancelled') - ->count(); - @endphp -
-
- - - - - - -

{{ translate('Cancelled Delivery') }}

-

- {{ sprintf('%02d', $cancelled_deliveries) }} -

-
-
- - - - -
- - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ce2b60c45c9c27949dc2a3382f3a37be23e100a3a55f307adaa194fa222a155a +size 22526 diff --git a/desarrollo/resources/views/delivery_boys/inc/delivery_boy_sidenav.blade.php b/desarrollo/resources/views/delivery_boys/inc/delivery_boy_sidenav.blade.php index 4806de60..4c7e8765 100644 --- a/desarrollo/resources/views/delivery_boys/inc/delivery_boy_sidenav.blade.php +++ b/desarrollo/resources/views/delivery_boys/inc/delivery_boy_sidenav.blade.php @@ -1,222 +1,3 @@ - +version https://git-lfs.github.com/spec/v1 +oid sha256:09899a00157c54c0e4311f77776542950e21924a18f8617dbff346a52e125e05 +size 20805 diff --git a/desarrollo/resources/views/delivery_boys/inc/footer.blade.php b/desarrollo/resources/views/delivery_boys/inc/footer.blade.php index 091848d6..4ef2cc5f 100644 --- a/desarrollo/resources/views/delivery_boys/inc/footer.blade.php +++ b/desarrollo/resources/views/delivery_boys/inc/footer.blade.php @@ -1,82 +1,3 @@ - - - - -@if (Auth::check()) - -@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:ced8231de21de6ea98685999090052688168594486eb0a0798546feda2bb4813 +size 6294 diff --git a/desarrollo/resources/views/delivery_boys/inc/nav.blade.php b/desarrollo/resources/views/delivery_boys/inc/nav.blade.php index 7bb9ee39..bd3951ef 100644 --- a/desarrollo/resources/views/delivery_boys/inc/nav.blade.php +++ b/desarrollo/resources/views/delivery_boys/inc/nav.blade.php @@ -1,118 +1,3 @@ -
- -
-
-
- - - -
- @auth - - @else - - - @endauth -
-
-
- - - -
-
- - - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:3c65661b7e67b8cc8f679002d45210d323d27a3d7ee615ed47ee83ffd10f2ecf +size 7807 diff --git a/desarrollo/resources/views/delivery_boys/layouts/app.blade.php b/desarrollo/resources/views/delivery_boys/layouts/app.blade.php index 854bfec0..1cb0eff7 100644 --- a/desarrollo/resources/views/delivery_boys/layouts/app.blade.php +++ b/desarrollo/resources/views/delivery_boys/layouts/app.blade.php @@ -1,243 +1,3 @@ - -@if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - -@else - -@endif - - - - - - - @yield('meta_title', get_setting('website_name').' | '.get_setting('site_motto')) - - - - - - - - @yield('meta') - - @if(!isset($detailedProduct) && !isset($customer_product) && !isset($shop) && !isset($page) && !isset($blog)) - - - - - - - - - - - - - - - - - - - - - - @endif - - - - - - - - - - - - @if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - - @endif - - - - - - - - -@php - echo get_setting('header_script'); -@endphp - - - - -
- - - @include('delivery_boys.inc.nav') - - -
-
-
- @include('delivery_boys.inc.delivery_boy_sidenav') -
- @yield('panel_content') -
-
-
-
- - - @include('delivery_boys.inc.footer') - -
- - @include('frontend.partials.modal') - - - - @yield('modal') - - - - - - - - - - - - @yield('script') - - @php - echo get_setting('footer_script'); - @endphp - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:77cd63b8877a9247c4cfe15a8475f3def754949b55b0ba1eb01e4ad3907f0ce7 +size 9439 diff --git a/desarrollo/resources/views/delivery_boys/on_the_way_delivery.blade.php b/desarrollo/resources/views/delivery_boys/on_the_way_delivery.blade.php index 7cb2a1d6..ff52efcd 100644 --- a/desarrollo/resources/views/delivery_boys/on_the_way_delivery.blade.php +++ b/desarrollo/resources/views/delivery_boys/on_the_way_delivery.blade.php @@ -1,123 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('On The Way Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($on_the_way_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As Delivered')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - - {{ single_price($delivery->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $on_the_way_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:769fe1fa3d6aa5d74b6cfa926cced75929355bee1c61ae2181711420931a8f59 +size 7495 diff --git a/desarrollo/resources/views/delivery_boys/order_detail.blade.php b/desarrollo/resources/views/delivery_boys/order_detail.blade.php index 9602b3fc..58f46e3e 100644 --- a/desarrollo/resources/views/delivery_boys/order_detail.blade.php +++ b/desarrollo/resources/views/delivery_boys/order_detail.blade.php @@ -1,210 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') - -
-
-
-

{{ translate('Order id')}}: {{ $order->code }}

-
-
-
- - - @php - $status = $order->orderDetails->first()->delivery_status; - @endphp - - -
-
- {{ translate('Order Summary') }} -
-
-
-
- - - - - - - - - - - - @if ($order->user_id != null) - - @endif - - - - - -
{{ translate('Order Code')}}:{{ $order->code }}
{{ translate('Customer')}}:{{ json_decode($order->shipping_address)->name }}
{{ translate('Email')}}:{{ $order->user->email }}
{{ translate('Shipping address')}}:{{ json_decode($order->shipping_address)->address }}, {{ json_decode($order->shipping_address)->city }}, {{ json_decode($order->shipping_address)->postal_code }}, {{ json_decode($order->shipping_address)->country }}
-
-
- - - - - - - - - - - - - - - - - - - - - - @if ($order->tracking_code) - - - - - @endif -
{{ translate('Order date')}}:{{ date('d-m-Y H:i A', $order->date) }}
{{ translate('Order status')}}:{{ translate(ucfirst(str_replace('_', ' ', $status))) }}
{{ translate('Total order amount')}}:{{ single_price($order->orderDetails->sum('price') + $order->orderDetails->sum('tax')) }}
{{ translate('Shipping method')}}:{{ translate('Flat shipping rate')}}
{{ translate('Payment method')}}:{{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }}
{{ translate('Tracking code')}}:{{ $order->tracking_code }}
-
-
-
-
- - -
-
-
-
- {{ translate('Order Details') }} -
-
- - - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - - - - - - - - - @endforeach - -
#{{ translate('Product')}}{{ translate('Variation')}}{{ translate('Quantity')}}{{ translate('Delivery Type')}}{{ translate('Price')}}
{{ $key+1 }} - @if ($orderDetail->product != null && $orderDetail->product->auction_product == 0) - {{ $orderDetail->product->getTranslation('name') }} - @elseif($orderDetail->product != null && $orderDetail->product->auction_product == 1) - {{ $orderDetail->product->getTranslation('name') }} - @else - {{ translate('Product Unavailable') }} - @endif - - {{ $orderDetail->variation }} - - {{ $orderDetail->quantity }} - - @if ($order->shipping_type != null && $order->shipping_type == 'home_delivery') - {{ translate('Home Delivery') }} - @elseif ($order->shipping_type == 'pickup_point') - @if ($order->pickup_point != null) - {{ $order->pickup_point->name }} ({{ translate('Pickip Point') }}) - @endif - @endif - {{ single_price($orderDetail->price) }}
-
-
-
- - -
-
-
- {{ translate('Order Ammount') }} -
-
- - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Subtotal')}} - {{ single_price($order->orderDetails->sum('price')) }} -
{{ translate('Shipping')}} - {{ single_price($order->orderDetails->sum('shipping_cost')) }} -
{{ translate('Tax')}} - {{ single_price($order->orderDetails->sum('tax')) }} -
{{ translate('Coupon')}} - {{ single_price($order->coupon_discount) }} -
{{ translate('Total')}} - {{ single_price($order->grand_total) }} -
-
-
- @if ($order->manual_payment && $order->manual_payment_data == null) - - @endif -
-
-@endsection - -@section('modal') - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd26e5ffabeaab450f73998d731047c1a81d3152857d0821d2d1c4b15fd449b +size 10746 diff --git a/desarrollo/resources/views/delivery_boys/pending_delivery.blade.php b/desarrollo/resources/views/delivery_boys/pending_delivery.blade.php index df345cd0..399cf97a 100644 --- a/desarrollo/resources/views/delivery_boys/pending_delivery.blade.php +++ b/desarrollo/resources/views/delivery_boys/pending_delivery.blade.php @@ -1,99 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Pending Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($pending_deliveries as $key => $order) - @if (count($order->orderDetails) > 0) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $order->code }} - - {{ date('d-m-Y', $order->date) }} - - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->delivery_status))) }} - @if($order->delivery_viewed == 0) - * - @endif - - @if ($order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($order->payment_status_viewed == 0) - * - @endif - - - - - - - - - - - - - - - - - -
- -
- {{ $pending_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:72d8308be7b2855aff43c8b536ee18485c7cc10d084c2e9d840d4712e01297dc +size 6254 diff --git a/desarrollo/resources/views/delivery_boys/pickup_delivery.blade.php b/desarrollo/resources/views/delivery_boys/pickup_delivery.blade.php index 45c2dc56..b704c5ae 100644 --- a/desarrollo/resources/views/delivery_boys/pickup_delivery.blade.php +++ b/desarrollo/resources/views/delivery_boys/pickup_delivery.blade.php @@ -1,123 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Picked Up Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($pickup_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As On The Way')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - - {{ single_price($delivery->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $pickup_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:4978308286221c011a8faac6ed549a4b8ff63522146ab3b1c262fab33810e884 +size 7488 diff --git a/desarrollo/resources/views/delivery_boys/profile.blade.php b/desarrollo/resources/views/delivery_boys/profile.blade.php index fd7ba0a4..b1188b30 100644 --- a/desarrollo/resources/views/delivery_boys/profile.blade.php +++ b/desarrollo/resources/views/delivery_boys/profile.blade.php @@ -1,140 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
-

{{ translate('Manage Profile') }}

-
-
-
- - -
-
-
{{ translate('Basic Info')}}
-
-
-
- @csrf - -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
- - -
-
-
{{ translate('Change your email')}}
-
-
-
- @csrf -
-
- -
-
- -
- -
- -
-
- -
- -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d78a5014fb49c0b36c8279b058c3fcedfff6922fc82afe10d067359eb2632d +size 7085 diff --git a/desarrollo/resources/views/delivery_boys/total_collection_list.blade.php b/desarrollo/resources/views/delivery_boys/total_collection_list.blade.php index 34dfb295..c9b2693c 100644 --- a/desarrollo/resources/views/delivery_boys/total_collection_list.blade.php +++ b/desarrollo/resources/views/delivery_boys/total_collection_list.blade.php @@ -1,59 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Total Collection History') }}
-
-
- - - - - - - - - - - @foreach ($today_collections as $key => $collection) - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Options')}}
- {{ $collection->order->code }} - - {{ date('d-m-Y h:i A', strtotime($collection->created_at)) }} - - {{ single_price($collection->collection) }} - - - - - - - - - - - - - - -
- -
- {{ $today_collections->appends(request()->input())->links() }} -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c900cdce258f2b142d793c00d6143ba1c002cab147afbf815b4e695d7a651d9b +size 3772 diff --git a/desarrollo/resources/views/delivery_boys/total_earning_list.blade.php b/desarrollo/resources/views/delivery_boys/total_earning_list.blade.php index c8447b8a..5f2324dc 100644 --- a/desarrollo/resources/views/delivery_boys/total_earning_list.blade.php +++ b/desarrollo/resources/views/delivery_boys/total_earning_list.blade.php @@ -1,59 +1,3 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Earning History') }}
-
-
- - - - - - - - - - - @foreach ($total_earnings as $key => $earning) - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Options')}}
- {{ $earning->order->code }} - - {{ date('d-m-Y h:i A', strtotime($earning->created_at)) }} - - {{ single_price($earning->earning) }} - - - - - - - - - - - - - - -
- -
- {{ $total_earnings->appends(request()->input())->links() }} -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:31241ac5ed6f33e1d9885efed86d53071b8f4cb7e9e5ae946fdd6bfcbaf5f8d2 +size 3733 diff --git a/desarrollo/resources/views/emails/app_verification.blade.php b/desarrollo/resources/views/emails/app_verification.blade.php index c8c2cb66..4e99a119 100644 --- a/desarrollo/resources/views/emails/app_verification.blade.php +++ b/desarrollo/resources/views/emails/app_verification.blade.php @@ -1,76 +1,3 @@ -{{-- - @php - $logo = get_setting('header_logo'); - @endphp - - - -
- - - - - -
- - - - - - - -
- - - - - -
- - - - - - -
- - - - -
-
- - - - -
{{ env('APP_NAME') }}
-
- - - - -
 
-
- - - - - - - -
- - - - - - - -
{{ $array['subject'] }}
{{ $array['content'] }}
-
- -
-
- -
--}} +version https://git-lfs.github.com/spec/v1 +oid sha256:8b494a27b3d60753edb016906b4957699a73d60998dfe8825ffdcea59e4a3fde +size 5898 diff --git a/desarrollo/resources/views/emails/auction_bid.blade.php b/desarrollo/resources/views/emails/auction_bid.blade.php index 645ce482..ce2aa341 100644 --- a/desarrollo/resources/views/emails/auction_bid.blade.php +++ b/desarrollo/resources/views/emails/auction_bid.blade.php @@ -1,2 +1,3 @@ -

{{ $content }}

-{{ translate('Change Bid') }} \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:85fe5fa658da1ffd5c0aed40d8aefd0f3f84aeebaa579c980b67f79133ab7285 +size 108 diff --git a/desarrollo/resources/views/emails/conversation.blade.php b/desarrollo/resources/views/emails/conversation.blade.php index 1cd01c89..4b235b0c 100644 --- a/desarrollo/resources/views/emails/conversation.blade.php +++ b/desarrollo/resources/views/emails/conversation.blade.php @@ -1,5 +1,3 @@ -

{{ translate('Message') }}

-

{{ $content }}

-

{{ translate('Sender') }}:{{ $sender }}

-

{{ translate('Message') }}:{{ $details }}

-{{ translate('See Details') }} +version https://git-lfs.github.com/spec/v1 +oid sha256:473fd009c5479a3a0f904e62b7de8e21ab7b145f2c26625b6998c3c353ee90ea +size 256 diff --git a/desarrollo/resources/views/emails/invoice.blade.php b/desarrollo/resources/views/emails/invoice.blade.php index a450ad22..3849df2e 100644 --- a/desarrollo/resources/views/emails/invoice.blade.php +++ b/desarrollo/resources/views/emails/invoice.blade.php @@ -1,178 +1,3 @@ - - - - Laravel - - - - - -
- @php - $logo = get_setting('header_logo'); - @endphp -
- - - - -
- @if($logo != null) - - @else - - @endif -
- - - - - - - - - - - - - - - - - -
{{ get_setting('site_name') }}
{{ get_setting('contact_address') }}
{{ translate('Email') }}: {{ get_setting('contact_email') }}{{ translate('Order ID') }}: {{ $order->code }}
{{ translate('Phone') }}: {{ get_setting('contact_phone') }}{{ translate('Order Date') }}: {{ date('d-m-Y', $order->date) }}
- -
- -
- - @php - $shipping_address = json_decode($order->shipping_address); - @endphp - - - - - -
{{ translate('Bill to') }}:
{{ $shipping_address->name }}
{{ $shipping_address->address }}, {{ $shipping_address->city }}, {{ $shipping_address->country }}
{{ translate('Email') }}: {{ $shipping_address->email }}
{{ translate('Phone') }}: {{ $shipping_address->phone }}
-
- -
- - - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - @if ($orderDetail->product != null) - - - - - - - - - @endif - @endforeach - -
{{ translate('Product Name') }}{{ translate('Delivery Type') }}{{ translate('Qty') }}{{ translate('Unit Price') }}{{ translate('Tax') }}{{ translate('Total') }}
{{ $orderDetail->product->getTranslation('name') }} @if($orderDetail->variation != null) ({{ $orderDetail->variation }}) @endif - @if ($order->shipping_type != null && $order->shipping_type == 'home_delivery') - {{ translate('Home Delivery') }} - @elseif ($order->shipping_type == 'pickup_point') - @if ($order->pickup_point != null) - {{ $order->pickup_point->getTranslation('name') }} ({{ translate('Pickip Point') }}) - @endif - @endif - {{ $orderDetail->quantity }}{{ single_price($orderDetail->price/$orderDetail->quantity) }}{{ single_price($orderDetail->tax/$orderDetail->quantity) }}{{ single_price($orderDetail->price+$orderDetail->tax) }}
-
- -
- - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Sub Total') }}{{ single_price($order->orderDetails->sum('price')) }}
{{ translate('Shipping Cost') }}{{ single_price($order->orderDetails->sum('shipping_cost')) }}
{{ translate('Total Tax') }}{{ single_price($order->orderDetails->sum('tax')) }}
{{ translate('Coupon') }}{{ single_price($order->coupon_discount) }}
{{ translate('Grand Total') }}{{ single_price($order->grand_total) }}
-
- -
- - +version https://git-lfs.github.com/spec/v1 +oid sha256:f9282b0ff88b3dcf9624986ccb77d4e55daea3aab2c8f53be710205e0026e847 +size 6272 diff --git a/desarrollo/resources/views/emails/newsletter.blade.php b/desarrollo/resources/views/emails/newsletter.blade.php index 53942b00..5c48518a 100644 --- a/desarrollo/resources/views/emails/newsletter.blade.php +++ b/desarrollo/resources/views/emails/newsletter.blade.php @@ -1,3 +1,3 @@ -@php - echo $array['content']; -@endphp \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:306bb790ce1f5907ded24cf40ffdf1fa42a854e760d29f0b06121b534514e459 +size 37 diff --git a/desarrollo/resources/views/emails/support.blade.php b/desarrollo/resources/views/emails/support.blade.php index d78cbe95..5e65588a 100644 --- a/desarrollo/resources/views/emails/support.blade.php +++ b/desarrollo/resources/views/emails/support.blade.php @@ -1,9 +1,3 @@ -

{{ translate('Ticket') }}

-

{{ $content }}

-

{{ translate('Sender') }}: {{ $sender }}

-

- {{ translate('Details') }}: -
- @php echo $details; @endphp -

-{{ translate('See ticket') }} +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf16d65056b8de548d4f701995583c762e77819cde760d8babbc5e0c6c44866 +size 279 diff --git a/desarrollo/resources/views/emails/verification.blade.php b/desarrollo/resources/views/emails/verification.blade.php index 3416384a..378d9f72 100644 --- a/desarrollo/resources/views/emails/verification.blade.php +++ b/desarrollo/resources/views/emails/verification.blade.php @@ -1,83 +1,3 @@ - - @php - $logo = get_setting('header_logo'); - @endphp - - - -
- - - - - -
- - - - - - - -
- - - - - -
- - - - - - -
- - - - -
-
- - - - -
{{ env('APP_NAME') }}
-
- - - - -
 
-
- - - - - - - -
- - - - - - - - @if(!empty( $array['link'])) - - - - @endif -
{{ $array['subject'] }}
{{ $array['content'] }}
- {{ translate("Click Here") }} -
-
- -
-
- -
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e5c61e1812b7466e58095133901ff67db3af9fe99e75f72b4a199adfbd9189 +size 6683 diff --git a/desarrollo/resources/views/emails/verification_user.blade.php b/desarrollo/resources/views/emails/verification_user.blade.php index c31186c6..1af556a0 100644 --- a/desarrollo/resources/views/emails/verification_user.blade.php +++ b/desarrollo/resources/views/emails/verification_user.blade.php @@ -1,156 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5b3aea84a16fa7688ac5a91f8508c69cde65c48ac55568b158fe14e6369a0f +size 4884 diff --git a/desarrollo/resources/views/errors/403.blade.php b/desarrollo/resources/views/errors/403.blade.php index 1af593dd..3b5fb225 100644 --- a/desarrollo/resources/views/errors/403.blade.php +++ b/desarrollo/resources/views/errors/403.blade.php @@ -1,15 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
- -

{{ translate('Access Denined!') }}

-

{{ translate("You Do not Have The Right Permission To Access.") }}

-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:43a7f7a93a6f7ebbbeaa3a5e1917f2e62d892584f30a010455e6132e00f55a13 +size 491 diff --git a/desarrollo/resources/views/errors/404.blade.php b/desarrollo/resources/views/errors/404.blade.php index c988cf7e..09cfd926 100644 --- a/desarrollo/resources/views/errors/404.blade.php +++ b/desarrollo/resources/views/errors/404.blade.php @@ -1,15 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
- -

{{ translate('Page Not Found!') }}

-

{{ translate('The page you are looking for has not been found on our server.') }}

-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:d22687767280f664d83c5b09f9eb0d13bba5fb716be68fce4e21d3f15a1975b0 +size 506 diff --git a/desarrollo/resources/views/errors/500.blade.php b/desarrollo/resources/views/errors/500.blade.php index cd8771bb..381bb4bf 100644 --- a/desarrollo/resources/views/errors/500.blade.php +++ b/desarrollo/resources/views/errors/500.blade.php @@ -1,15 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
- -

{{ translate("Something went wrong!") }}

-

{{ translate("Sorry for the inconvenience, but we're working on it.") }}
{{ translate("Error code") }}: 500

-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:c552081026927d276fa9463c1fee741fdc67cd93066e8f3a145979fde1856605 +size 527 diff --git a/desarrollo/resources/views/errors/503.blade.php b/desarrollo/resources/views/errors/503.blade.php index 4e2ecb4f..ba8726a7 100644 --- a/desarrollo/resources/views/errors/503.blade.php +++ b/desarrollo/resources/views/errors/503.blade.php @@ -1,15 +1,3 @@ -@extends('backend.layouts.layout') - -@section('content') -
-
-
-
- -

{{translate('We are Under Maintenance.')}}

-
{{translate('We will be back soon!')}}
-
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:d165c8d0d5a1c0b31b7dbbcf990874323a50ca110d58ddae41e5214f7f47e4d7 +size 499 diff --git a/desarrollo/resources/views/frontend/all_brand.blade.php b/desarrollo/resources/views/frontend/all_brand.blade.php index d2791b3d..d5c29fd2 100644 --- a/desarrollo/resources/views/frontend/all_brand.blade.php +++ b/desarrollo/resources/views/frontend/all_brand.blade.php @@ -1,42 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - -
-
-
-
-

{{ translate('All Brands') }}

-
-
- -
-
-
-
- -
-
-
-
- @foreach ($brands as $brand) - - @endforeach -
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:90b738560bb0e0f359c7410d4e3855def9fdda91cc96dfc6712c8e09e6ed9b9b +size 2073 diff --git a/desarrollo/resources/views/frontend/all_category.blade.php b/desarrollo/resources/views/frontend/all_category.blade.php index f8c621d5..303ddaef 100644 --- a/desarrollo/resources/views/frontend/all_category.blade.php +++ b/desarrollo/resources/views/frontend/all_category.blade.php @@ -1,80 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - -
-
-
-
-

{{ translate('All Categories') }}

-
-
- -
-
-
-
- -
-
- @foreach ($categories as $key => $category) -
- - -
-
- @foreach (\App\Utility\CategoryUtility::get_immediate_children_ids($category->id) as $key => $first_level_id) -
- -
{{ \App\Models\Category::find($first_level_id)->getTranslation('name') }}
- - @php - $first_level_categories = \App\Utility\CategoryUtility::get_immediate_children_ids($first_level_id); - @endphp - - @if (count($first_level_categories) > 5) - {{ translate('More') }} - @endif - -
- @endforeach -
-
-
- @endforeach -
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:9de9e9c15323d746312a83abddce85ec64cb2f9155c410d8ee12fe12a267a6a7 +size 5070 diff --git a/desarrollo/resources/views/frontend/authorize_net/pay.blade.php b/desarrollo/resources/views/frontend/authorize_net/pay.blade.php index 840b8c38..5a48affc 100644 --- a/desarrollo/resources/views/frontend/authorize_net/pay.blade.php +++ b/desarrollo/resources/views/frontend/authorize_net/pay.blade.php @@ -1,109 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - -@php - $months = array(1 => 'Jan', 2 => 'Feb', 3 => 'Mar', 4 => 'Apr', 5 => 'May', 6 => 'Jun', 7 => 'Jul', 8 => 'Aug', 9 => 'Sep', 10 => 'Oct', 11 => 'Nov', 12 => 'Dec'); -@endphp - -
-
-
-
-
-
- -
- @if(session('success_msg')) -
- - {{ session('success_msg') }} -
- @endif - @if(session('error_msg')) -
- - {{ session('error_msg') }} -
- @endif -
-
-

Payment

-
-
-
-
-
-
-
-
- @csrf -
-
- - - Please enter Owner Card name -
-
- - - Please enter cvv -
-
-
-
- - - Please enter valid card number -
- - - - - -
-
-
-
- - -
- - - - - -
- -
-
- -
-
-
-
-
-
- -
-
-
- -
-
-
-
-@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:161a0cbd2eba2295733a1583c01fa0974c94cfc29aa1184b0cb01f484bab867d +size 7608 diff --git a/desarrollo/resources/views/frontend/bkash/fail.blade.php b/desarrollo/resources/views/frontend/bkash/fail.blade.php index f9172169..bc156d21 100644 --- a/desarrollo/resources/views/frontend/bkash/fail.blade.php +++ b/desarrollo/resources/views/frontend/bkash/fail.blade.php @@ -1,12 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - -
- @if(isset($errorMessage)) -

{{ $errorMessage }}

- @endif -
- -@endsection - +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6031c16e6f46e498655e0fdf2a8faf00c6d0bc029be7174cc41158f27cd880 +size 243 diff --git a/desarrollo/resources/views/frontend/blog/details.blade.php b/desarrollo/resources/views/frontend/blog/details.blade.php index 78ae5831..053bb363 100644 --- a/desarrollo/resources/views/frontend/blog/details.blade.php +++ b/desarrollo/resources/views/frontend/blog/details.blade.php @@ -1,134 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $blog->meta_title }}@stop - -@section('meta_description'){{ $blog->meta_description }}@stop - -@section('meta_keywords'){{ $blog->meta_keywords }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') - -
-
-
- - -
-
- -

- slug }}" class="text-reset hov-text-primary" title="{{ $blog->title }}"> - {{ $blog->title }} - -

-
-
- -
- {{ date('M d, Y',strtotime($blog->created_at)) }} -
- - @if($blog->category != null) -
- {{ $blog->category->category_name }} -
- @endif -
- -
-
-
-
- - {{ $blog->title }} - -
- {!! $blog->description !!} -
- - @if (get_setting('facebook_comment') == 1) -
-
slug) }}" data-width="" data-numposts="5">
-
- @endif -
-
- - - -
-
-

{{ translate('Recent Posts') }}

-
- @foreach($recent_blogs as $recent_blog) -
-
- -
-

- slug }}" class="text-reset hov-text-primary" title="{{ $recent_blog->title }}"> - {{ $recent_blog->title }} - -

-
- {{ date('M d, Y',strtotime($recent_blog->created_at)) }} -
- @if($recent_blog->category != null) -
- {{ $recent_blog->category->category_name }} -
- @endif -
-
-
- @endforeach -
-
-
- -
-
-
- -@endsection - - -@section('script') - @if (get_setting('facebook_comment') == 1) -
- - @endif -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:1f0a93777456fc928920333d426d42df36f623932d92f872c6292b61bc71a321 +size 6442 diff --git a/desarrollo/resources/views/frontend/blog/listing.blade.php b/desarrollo/resources/views/frontend/blog/listing.blade.php index c4d771db..fee75d9f 100644 --- a/desarrollo/resources/views/frontend/blog/listing.blade.php +++ b/desarrollo/resources/views/frontend/blog/listing.blade.php @@ -1,172 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- -
- -
-
-

{{ translate('Blogs')}}

-
-
- -
-
- -
-
- -
- @foreach($blogs as $blog) - - @endforeach - -
- -
- {{ $blogs->links() }} -
-
- - -
- -
- -
- - -
-

{{ translate('Recent Posts') }}

-
- @foreach($recent_blogs as $recent_blog) -
-
- -
-

- slug }}" class="text-reset hov-text-primary" title="{{ $recent_blog->title }}"> - {{ $recent_blog->title }} - -

-
- {{ date('M d, Y',strtotime($recent_blog->created_at)) }} -
- @if($recent_blog->category != null) -
- {{ $recent_blog->category->category_name }} -
- @endif -
-
-
- @endforeach -
-
- -
- -
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae32927d73e727d7f4e4853fb615db369bed485516097b0752b004484ae6e18 +size 10702 diff --git a/desarrollo/resources/views/frontend/coupons.blade.php b/desarrollo/resources/views/frontend/coupons.blade.php index 75107557..47bf070f 100644 --- a/desarrollo/resources/views/frontend/coupons.blade.php +++ b/desarrollo/resources/views/frontend/coupons.blade.php @@ -1,20 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - -
-
-

{{ translate('All coupons') }}

-
- @foreach($coupons as $key => $coupon) - @if($coupon->user->user_type == 'admin' || ($coupon->user->shop != null && $coupon->user->shop->verification_status)) -
- @include('frontend.partials.coupon_box',['coupon' => $coupon]) -
- @endif - @endforeach -
-
-
- -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:f26963124a4d62b22c77490fbabfec19e12296a827f4232f3f0dd0e0fa4966d9 +size 744 diff --git a/desarrollo/resources/views/frontend/custom_page.blade.php b/desarrollo/resources/views/frontend/custom_page.blade.php index c3aa7ebb..440dbc71 100644 --- a/desarrollo/resources/views/frontend/custom_page.blade.php +++ b/desarrollo/resources/views/frontend/custom_page.blade.php @@ -1,59 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $page->meta_title }}@stop - -@section('meta_description'){{ $page->meta_description }}@stop - -@section('meta_keywords'){{ $page->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
-

{{ $page->getTranslation('title') }}

-
-
- -
-
-
-
-
-
-
- @php echo $page->getTranslation('content'); @endphp -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:3c604577c6e330157bd40b39cd83dae05ccb287283d7b379957f48ded4517488 +size 2435 diff --git a/desarrollo/resources/views/frontend/customer_product_details.blade.php b/desarrollo/resources/views/frontend/customer_product_details.blade.php index 0d0f33ac..d0271194 100644 --- a/desarrollo/resources/views/frontend/customer_product_details.blade.php +++ b/desarrollo/resources/views/frontend/customer_product_details.blade.php @@ -1,255 +1,3 @@ -@extends('frontend.layouts.app') -@section('meta') - - - - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
-
-
- @if($customer_product->photos != null) - @php - $photos = explode(',',$customer_product->photos); - @endphp - -
- -
- -
- -
- @endif -
-
- -
-
- -

- {{ $customer_product->getTranslation('name') }} -

- - -
-
-
{{ translate('Price')}}:
-
-
-
- - {{ single_price($customer_product->unit_price) }} - - @if($customer_product->unit != null || $customer_product->unit != '') - /{{ $customer_product->getTranslation('unit') }} - @endif -
-
-
- - -
    -
  • -
    - - - -
    - {{ $customer_product->user->name }} -
    -
    -
  • -
  • -
    - - - -
    - {{ $customer_product->location }} -
    -
    -
  • -
  • -
    - - - -
    -

    - {{ str_replace(substr($customer_product->user->phone,3),'XXXXXXXX', $customer_product->user->phone) }} - {{ $customer_product->user->phone }} -

    -

    {{ translate('Click to show phone number') }}

    -
    -
    -
  • -
- - -
-
-
{{ translate('Share')}}:
-
-
-
-
-
-
-
-
-
-
-
- - -
-
-
- - - -
- -
-
-
- getTranslation('description'); ?> -
-
-
- -
-
-
- @if ($customer_product->video_provider == 'youtube' && isset(explode('=', $customer_product->video_link)[1])) - - @elseif ($customer_product->video_provider == 'dailymotion' && isset(explode('video/', $customer_product->video_link)[1])) - - @elseif ($customer_product->video_provider == 'vimeo' && isset(explode('vimeo.com/', $customer_product->video_link)[1])) - - @endif -
-
-
- - -
-
-
-
- - -
-
-
-
-

- {{ translate('Other Ads of') }} {{$customer_product->category->getTranslation('name') }} -

- {{ translate('View More') }} -
-
- -
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:4c754f9b703b082844e342e8340221e8601c302a35686807c9620b1b0bcb88c9 +size 16360 diff --git a/desarrollo/resources/views/frontend/customer_product_listing.blade.php b/desarrollo/resources/views/frontend/customer_product_listing.blade.php index 1c075dc7..ef46ce5f 100644 --- a/desarrollo/resources/views/frontend/customer_product_listing.blade.php +++ b/desarrollo/resources/views/frontend/customer_product_listing.blade.php @@ -1,222 +1,3 @@ -@extends('frontend.layouts.app') - -@if (isset($category_id)) - @php - $meta_title = \App\Models\Category::find($category_id)->meta_title; - $meta_description = \App\Models\Category::find($category_id)->meta_description; - @endphp -@elseif (isset($brand_id)) - @php - $meta_title = \App\Models\Brand::find($brand_id)->meta_title; - $meta_description = \App\Models\Brand::find($brand_id)->meta_description; - @endphp -@else - @php - $meta_title = get_setting('meta_title'); - $meta_description = get_setting('meta_description'); - @endphp -@endif - -@section('meta_title'){{ $meta_title }}@stop -@section('meta_description'){{ $meta_description }}@stop - -@section('meta') - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
- -
- -
- - -
- - - - @isset($category_id) - - @endisset - - -
-
-
- -
-
- -
-
- -
-
- -
-
-
- - -
-
- @foreach ($customer_products as $key => $product) -
-
-
- - - {{  $product->getTranslation('name')  }} - - -
- @if($product->conditon == 'new') - {{translate('New')}} - @elseif($product->conditon == 'used') - {{translate('Used')}} - @endif -
-
-
- -

- {{ $product->getTranslation('name') }} -

- -
- {{ single_price($product->unit_price) }} -
-
-
-
- @endforeach -
-
- - -
- {{ $customer_products->links() }} -
- -
-
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:ae333030a2eddf1d0bd9d6d2924b1acbaa0900afe3881377dd4e2f4805421fff +size 14809 diff --git a/desarrollo/resources/views/frontend/delivery_info.blade.php b/desarrollo/resources/views/frontend/delivery_info.blade.php index e1dde2b0..10f92f09 100644 --- a/desarrollo/resources/views/frontend/delivery_info.blade.php +++ b/desarrollo/resources/views/frontend/delivery_info.blade.php @@ -1,447 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - - -
-
-
-
-
-
-
- -

{{ translate('1. My Cart') }}

-
-
-
-
- -

{{ translate('2. Shipping info') }} -

-
-
-
-
- -

{{ translate('3. Delivery info') }} -

-
-
-
-
- -

{{ translate('4. Payment') }}

-
-
-
-
- -

{{ translate('5. Confirmation') }} -

-
-
-
-
-
-
-
- - -
-
-
-
-
-
- @csrf - @php - $admin_products = array(); - $seller_products = array(); - $admin_product_variation = array(); - $seller_product_variation = array(); - foreach ($carts as $key => $cartItem){ - $product = \App\Models\Product::find($cartItem['product_id']); - - if($product->added_by == 'admin'){ - array_push($admin_products, $cartItem['product_id']); - $admin_product_variation[] = $cartItem['variation']; - } - else{ - $product_ids = array(); - if(isset($seller_products[$product->user_id])){ - $product_ids = $seller_products[$product->user_id]; - } - array_push($product_ids, $cartItem['product_id']); - $seller_products[$product->user_id] = $product_ids; - $seller_product_variation[] = $cartItem['variation']; - } - } - - $pickup_point_list = array(); - if (get_setting('pickup_point') == 1) { - $pickup_point_list = \App\Models\PickupPoint::where('pick_up_status',1)->get(); - } - @endphp - - - @if (!empty($admin_products)) -
-
-
{{ get_setting('site_name') }} {{ translate('Inhouse Products') }}
-
-
- -
    - @php - $physical = false; - @endphp - @foreach ($admin_products as $key => $cartItem) - @php - $product = \App\Models\Product::find($cartItem); - if ($product->digital == 0) { - $physical = true; - } - @endphp -
  • -
    - - {{  $product->getTranslation('name')  }} - - - {{ $product->getTranslation('name') }} -
    - @if ($admin_product_variation[$key] != '') - {{ translate('Variation') }}: {{ $admin_product_variation[$key] }} - @endif -
    -
    -
  • - @endforeach -
- - @if ($physical) -
-
-
{{ translate('Choose Delivery Type') }}
-
-
-
- - @if (get_setting('shipping_type') != 'carrier_wise_shipping') -
- -
- - @else -
- -
- @endif - - @if ($pickup_point_list) -
- -
- @endif -
- - - @if ($pickup_point_list) -
- -
- @endif -
-
- - - @if (get_setting('shipping_type') == 'carrier_wise_shipping') -
- @foreach($carrier_list as $carrier_key => $carrier) -
- -
- @endforeach -
- @endif - @endif -
-
- @endif - - - @if (!empty($seller_products)) - @foreach ($seller_products as $key => $seller_product) -
-
-
{{ \App\Models\Shop::where('user_id', $key)->first()->name }} {{ translate('Products') }}
-
-
- -
    - @php - $physical = false; - @endphp - @foreach ($seller_product as $key2 => $cartItem) - @php - $product = \App\Models\Product::find($cartItem); - if ($product->digital == 0) { - $physical = true; - } - @endphp -
  • -
    - - {{  $product->getTranslation('name')  }} - - - {{ $product->getTranslation('name') }} -
    - @if ($seller_product_variation[$key2] != '') - {{ translate('Variation') }}: {{ $seller_product_variation[$key2] }} - @endif -
    -
    -
  • - @endforeach -
- - @if ($physical) -
-
-
{{ translate('Choose Delivery Type') }}
-
-
-
- - @if (get_setting('shipping_type') != 'carrier_wise_shipping') -
- -
- - @else -
- -
- @endif - - @if ($pickup_point_list) -
- -
- @endif -
- - - @if ($pickup_point_list) -
- -
- @endif -
-
- - - @if (get_setting('shipping_type') == 'carrier_wise_shipping') -
- @foreach($carrier_list as $carrier_key => $carrier) -
- -
- @endforeach -
- @endif - - @endif -
-
- @endforeach - @endif - -
- - - - {{ translate('Return to shop')}} - - - -
-
-
-
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:fe35acd36f2c336a22d35eb5efce2df65ac553af5165dc87ae966962eed768ba +size 34506 diff --git a/desarrollo/resources/views/frontend/deliveryboy_login.blade.php b/desarrollo/resources/views/frontend/deliveryboy_login.blade.php index 3955ec34..5573a1cc 100644 --- a/desarrollo/resources/views/frontend/deliveryboy_login.blade.php +++ b/desarrollo/resources/views/frontend/deliveryboy_login.blade.php @@ -1,90 +1,3 @@ -@extends('backend.layouts.layout') - -@section('content') - -
-
-
-
-
-
-
- @if(get_setting('system_logo_black') != null) - - @else - - @endif -

{{ translate('Welcome Back !')}}

-
{{ translate('Login To Your Delivery Boy Account')}}
-
-
- @csrf - -
- - - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
- - -
- - -
- -
- -
- -
- - -
- - -
- -
-
- @if (env("DEMO_MODE") == "On") -
- - - - - - - - -
deliveryboy@example.com123456
-
- @endif -
-
-
-
-
-
- - -@endsection - -@section('script') - -@endsection - +version https://git-lfs.github.com/spec/v1 +oid sha256:ffdc3a0bdcdb6415a4122d0b02cdbc577dadcfce3051fcf1915c387974529c67 +size 5028 diff --git a/desarrollo/resources/views/frontend/digital_product_details.blade.php b/desarrollo/resources/views/frontend/digital_product_details.blade.php index 0da15816..942b240a 100644 --- a/desarrollo/resources/views/frontend/digital_product_details.blade.php +++ b/desarrollo/resources/views/frontend/digital_product_details.blade.php @@ -1,961 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $detailedProduct->meta_title }}@stop - -@section('meta_description'){{ $detailedProduct->meta_description }}@stop - -@section('meta_keywords'){{ $detailedProduct->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
- -
-
- @if($detailedProduct->photos != null) - @php - $photos = explode(',',$detailedProduct->photos); - @endphp -
- -
-
- -
- @endif - - -
-
- - -
-
- -

- {{ $detailedProduct->getTranslation('name') }} -

- -
-
-
- -
- @php - $total = 0; - $total += $detailedProduct->reviews->count(); - @endphp - - {{ renderStarRating($detailedProduct->rating) }} - - ({{ $total }} - {{ translate('reviews') }}) -
- -
- {{ translate('In stock')}} -
-
-
- -
- - -
- - -
-
-
- - @if ($detailedProduct->added_by == 'seller' && get_setting('vendor_system_activation') == 1) - - - - @endif - -
- {{ translate('Sold by') }}
- @if ($detailedProduct->added_by == 'seller' && get_setting('vendor_system_activation') == 1) - {{ $detailedProduct->user->shop->name }} - @else - {{ translate('Inhouse product') }} - @endif -
-
-
- - @if (get_setting('conversation_system') == 1) -
- -
- @endif - - @if ($detailedProduct->brand != null) -
-
- - {{ $detailedProduct->brand->getTranslation('name') }} - -
- {{ translate('Brand') }}
- {{ $detailedProduct->brand->name }} -
-
-
- @endif -
- -
- - @if(home_price($detailedProduct) != home_discounted_price($detailedProduct)) - -
-
-
{{ translate('Price')}}
-
-
-
- - - {{ home_discounted_price($detailedProduct) }} - - - - {{ home_price($detailedProduct) }} - - - @if($detailedProduct->unit != null) - /{{ $detailedProduct->getTranslation('unit') }} - @endif - - @if(discount_in_percentage($detailedProduct) > 0) - -{{discount_in_percentage($detailedProduct)}}% - @endif - - @if (addon_is_activated('club_point') && $detailedProduct->earn_point > 0) -
- - - - - - - - - - - {{ translate('Club Point') }}: {{ $detailedProduct->earn_point }} -
- @endif -
-
-
- @else -
-
-
{{ translate('Price') }}
-
-
-
- - - {{ home_discounted_price($detailedProduct) }} - - - @if ($detailedProduct->unit != null) - /{{ $detailedProduct->getTranslation('unit') }} - @endif - - @if (addon_is_activated('club_point') && $detailedProduct->earn_point > 0) -
- - - - - - - - - - - {{ translate('Club Point') }}: {{ $detailedProduct->earn_point }} -
- @endif -
-
-
- @endif - -
- @csrf - - - -
-
-
{{ translate('Total Price') }}
-
-
-
- - - -
-
-
- -
- - -
- - -
- - -
-
- @if(Auth::check() && addon_is_activated('affiliate_system') && (\App\Models\AffiliateOption::where('type', 'product_sharing')->first()->status || \App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first()->status) && Auth::user()->affiliate_user != null && Auth::user()->affiliate_user->status) - @php - if(Auth::check()){ - if(Auth::user()->referral_code == null){ - Auth::user()->referral_code = substr(Auth::user()->id.Str::random(10), 0, 10); - Auth::user()->save(); - } - $referral_code = Auth::user()->referral_code; - $referral_code_url = URL::to('/product').'/'.$detailedProduct->slug."?product_referral_code=$referral_code"; - } - @endphp -
- -
- - @endif -
-
- - - @php - $refund_sticker = get_setting('refund_sticker'); - @endphp - @if (addon_is_activated('refund_request')) - - @endif - - - @if ($detailedProduct->added_by == 'seller') -
-
-
{{ translate('Seller Guarantees')}}
-
-
- @if ($detailedProduct->user->shop->verification_status == 1) - {{ translate('Verified seller')}} - @else - {{ translate('Non verified seller')}} - @endif -
-
- @endif - - -
-
-
{{ translate('Share') }}
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
- - -
- - - @if ($detailedProduct->added_by == 'seller' && $detailedProduct->user->shop != null) -
-
- @if ($detailedProduct->user->shop->verification_status) -
- - - - - - -
- @endif -
{{ translate('Seller')}}
-
- - @if ($detailedProduct->added_by == 'seller' && get_setting('vendor_system_activation') == 1) - - - - @endif - - -
- -
-
- @if ($total > 0) - {{ renderStarRating($detailedProduct->user->shop->rating) }} - @else - {{ renderStarRating(0) }} - @endif -
-
({{ $total }} - {{ translate('customer reviews') }})
-
- -
- -
- - -
-
- @endif - - -
-
- {{ translate('Top Selling Products') }} -
-
-
    - @foreach (filter_products(\App\Models\Product::where('user_id', $detailedProduct->user_id) - ->orderBy('num_of_sale', 'desc'))->limit(6)->get() as $key => $top_product) -
  • -
    -
    - - - {{ $top_product->getTranslation('name') }} - -
    -
    - -

    - {{ $top_product->getTranslation('name') }} -

    -
    - - {{ home_discounted_base_price($top_product) }} - - @if(home_price($top_product) != home_discounted_price($top_product)) - - {{ home_price($top_product) }} - - @endif -
    -
    -
    -
  • - @endforeach -
-
-
- -
- - -
- - -
- - - - -
- -
-
-
- getTranslation('description'); ?> -
-
-
- - -
-
-
- @if ($detailedProduct->video_provider == 'youtube' && isset(explode('=', $detailedProduct->video_link)[1])) - - @elseif ($detailedProduct->video_provider == 'dailymotion' && isset(explode('video/', $detailedProduct->video_link)[1])) - - @elseif ($detailedProduct->video_provider == 'vimeo' && isset(explode('vimeo.com/', $detailedProduct->video_link)[1])) - - @endif -
-
-
- - - - - -
-
-
    - @foreach ($detailedProduct->reviews as $key => $review) - @if ($review->user != null) -
  • - - user->avatar_original != null) data-src="{{ uploaded_asset($review->user->avatar_original) }}" - @else - data-src="{{ static_asset('assets/img/placeholder.jpg') }}" @endif> - -
    -
    -

    {{ $review->user->name }} -

    - - @for ($i = 0; $i < $review->rating; $i++) - - @endfor - @for ($i = 0; $i < 5 - $review->rating; $i++) - - @endfor - -
    -
    - {{ date('d-m-Y', strtotime($review->created_at)) }}
    -

    - {{ $review->comment }} -

    -
    -
  • - @endif - @endforeach -
- - @if (count($detailedProduct->reviews) <= 0) -
- {{ translate('There have been no reviews for this product yet.') }} -
- @endif -
-
-
-
- - -
-
-

- {{ translate('Related products') }} -

-
-
- -
-
- - - @if(get_setting('product_query_activation') == 1) -
-
-

- {{ translate(' Product Queries ') }} ({{ $total_query }}) -

-
- - - @guest -

{{ translate('Login') }} or {{ translate('Register ') }}{{ translate(' to submit your questions to seller') }} -

- @endguest - - - @auth -
- @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- @csrf - -
- - -
- -
-
- - - @php - $own_product_queries = Auth::user()->product_queries->where('product_id',$detailedProduct->id); - @endphp - @if ($own_product_queries->count() > 0) - -
- -
-

- {{ translate('My Questions') }} -

-
- @foreach ($own_product_queries as $product_query) -
-
- - - - - - -
-
{{ strip_tags($product_query->question) }}
- {{ $product_query->user->name }} -
-
-
- - - - - - -
-
- {{ strip_tags($product_query->reply ? $product_query->reply : translate('Seller did not respond yet')) }} -
- - {{ $product_query->product->user->name }} -
-
-
- @endforeach -
- - @endif - @endauth - - -
- @include('frontend.partials.product_query_pagination') -
-
- @endif - - -
-
-
-
-@endsection - -@section('modal') - - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6ee730e26a131affd350c4dad68e8336d1a961fbe3af51e6bb4624312f68b5 +size 68446 diff --git a/desarrollo/resources/views/frontend/flash_deal/all_flash_deal_list.blade.php b/desarrollo/resources/views/frontend/flash_deal/all_flash_deal_list.blade.php index 5fe83e3d..c618eb7a 100644 --- a/desarrollo/resources/views/frontend/flash_deal/all_flash_deal_list.blade.php +++ b/desarrollo/resources/views/frontend/flash_deal/all_flash_deal_list.blade.php @@ -1,72 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- -
-
-
-

{{ translate('Flash Deals')}}

-
-
- -
-
-
- - @if (get_setting('flash_deal_banner') != null || get_setting('flash_deal_banner_small') != null) -
- {{ env('APP_NAME') }} promo -
-
- {{ env('APP_NAME') }} promo -
- @endif - -
-
- @foreach($all_flash_deals as $single) - - @endforeach -
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:3281428fa769cd0b214269f6252cdd14130502174a0a46e5eb451687a3330940 +size 4150 diff --git a/desarrollo/resources/views/frontend/flash_deal_details.blade.php b/desarrollo/resources/views/frontend/flash_deal_details.blade.php index 1fc9de2f..ce788617 100644 --- a/desarrollo/resources/views/frontend/flash_deal_details.blade.php +++ b/desarrollo/resources/views/frontend/flash_deal_details.blade.php @@ -1,58 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
- -
- -

{{ $flash_deal->title }}

-
- -
- -
-
-
-
-
-
-
-
-
-
-
- -
- @if($flash_deal->status == 1 && strtotime(date('Y-m-d H:i:s')) <= $flash_deal->end_date) -
-
- @foreach ($flash_deal->flash_deal_products->take(20) as $key => $flash_deal_product) - @php - $product = \App\Models\Product::find($flash_deal_product->product_id); - @endphp - @if ($product != null && $product->published != 0) - @php - $product_url = route('product', $product->slug); - if($product->auction_product == 1) { - $product_url = route('auction-product', $product->slug); - } - @endphp -
- @include('frontend.partials.product_box_1',['product' => $product]) -
- @endif - @endforeach -
-
- @else -
-

{{ $flash_deal->title }}

-

{{ translate('This offer has been expired.') }}

-
- @endif -
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd66f05a15f5677c41b4f9c2ebf7251b7d8e3e1fbbb4cda9671fa060f4913d3 +size 3285 diff --git a/desarrollo/resources/views/frontend/google_recaptcha/app_recaptcha.blade.php b/desarrollo/resources/views/frontend/google_recaptcha/app_recaptcha.blade.php index b4e1fc0a..d6b3e0a6 100644 --- a/desarrollo/resources/views/frontend/google_recaptcha/app_recaptcha.blade.php +++ b/desarrollo/resources/views/frontend/google_recaptcha/app_recaptcha.blade.php @@ -1,49 +1,3 @@ - - - - - - - -
-
-
- - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:88d7f5d848c32f4a5ab3a029b09999fba6d04b322fed8657d0dd21ceb58eff78 +size 1113 diff --git a/desarrollo/resources/views/frontend/inc/footer.blade.php b/desarrollo/resources/views/frontend/inc/footer.blade.php index bc396c85..a98993a8 100644 --- a/desarrollo/resources/views/frontend/inc/footer.blade.php +++ b/desarrollo/resources/views/frontend/inc/footer.blade.php @@ -1,647 +1,3 @@ - -
- -
- - - - -@php - $col_values = ((get_setting('vendor_system_activation') == 1) || addon_is_activated('delivery_boy')) ? "col-lg-3 col-md-6 col-sm-6" : "col-md-4 col-sm-6"; -@endphp - - - -
-
-
- -
-
- {!! get_setting('frontend_copyright_text', null, App::getLocale()) !!} -
-
- - -
-
-
    - @if ( get_setting('payment_method_images') != null ) - @foreach (explode(',', get_setting('payment_method_images')) as $key => $value) -
  • - -
  • - @endforeach - @endif -
-
-
-
-
-
- - -
-
- - - - - - @php - if(auth()->user() != null) { - $user_id = Auth::user()->id; - $cart = \App\Models\Cart::where('user_id', $user_id)->get(); - } else { - $temp_user_id = Session()->get('temp_user_id'); - if($temp_user_id) { - $cart = \App\Models\Cart::where('temp_user_id', $temp_user_id)->get(); - } - } - @endphp - - - @php - $count = (isset($cart) && count($cart)) ? count($cart) : 0; - @endphp - - - - - - - - -
-
- - -@if (Auth::check() && !isAdmin()) - -@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:7843b7442c8beef42c7ea50c13be8340bdff3db354aeac304e57796a2212f979 +size 45521 diff --git a/desarrollo/resources/views/frontend/inc/nav.blade.php b/desarrollo/resources/views/frontend/inc/nav.blade.php index 3ecbe7f9..10b689b7 100644 --- a/desarrollo/resources/views/frontend/inc/nav.blade.php +++ b/desarrollo/resources/views/frontend/inc/nav.blade.php @@ -1,679 +1,3 @@ - -@if(get_setting('topbar_banner') != null) -
- - - - - - -
-@endif - - -
-
-
-
- -
-
- -
-
-
-
- -
- -
-
-
- - - - - - - - - -
- -
- - - - - - - - -
-
- @include('frontend.partials.compare') -
-
- -
-
- @include('frontend.partials.wishlist') -
-
- - - -
- @auth - - @else - - - @endauth -
-
-
- - -
- - -
-
-
- -
-
-
-
- Busca tu Repuesto: - -
- -
-
-
- -
-
-
    - @if (get_setting('header_menu_labels') != null) - @foreach (json_decode( get_setting('header_menu_labels'), true) as $key => $value) -
  • - - {{ translate($value) }} - -
  • - @endforeach - @endif -
-
-
- -
- -
-
-
- -
-
-
-
- @include('frontend.partials.category_menu') -
-
-
-
-
-
- - - - - - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6db7d1d9084a1f452153017de618c4089b3bd9b59758a32c16d87f09e62984d2 +size 53772 diff --git a/desarrollo/resources/views/frontend/inc/user_side_nav.blade.php b/desarrollo/resources/views/frontend/inc/user_side_nav.blade.php index 68e11d93..1ebb58a5 100644 --- a/desarrollo/resources/views/frontend/inc/user_side_nav.blade.php +++ b/desarrollo/resources/views/frontend/inc/user_side_nav.blade.php @@ -1,380 +1,3 @@ -
-
- -
- -
- - -
- - - @if (Auth::user()->avatar_original != null) - - @else - - @endif - - -

{{ Auth::user()->name }}

- - @if (Auth::user()->phone != null) -
{{ Auth::user()->phone }}
- - @else -
{{ Auth::user()->email }}
- @endif -
- - -
- - - - {{ translate('Sign Out') }} -
- -
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:1a622ffad9853657aa570605a29a623a9e29638dadc90c4c30ff43c8a4ae7e57 +size 31246 diff --git a/desarrollo/resources/views/frontend/index.blade.php b/desarrollo/resources/views/frontend/index.blade.php index 72a99119..b9365177 100644 --- a/desarrollo/resources/views/frontend/index.blade.php +++ b/desarrollo/resources/views/frontend/index.blade.php @@ -1,640 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - - - @if (get_setting('home_banner1_images') != null) -
-
- @php - $banner_1_imags = json_decode(get_setting('home_banner1_images')); - $data_md = count($banner_1_imags) >= 2 ? 2 : 1; - @endphp -
- -
-
-
- @endif - -
-
-
- - - @php - $num_todays_deal = count($todays_deal_products); - @endphp - - -
- @if (get_setting('home_slider_images') != null) - - @endif -
-
-
-
- - - @php - $flash_deal = \App\Models\FlashDeal::where('status', 1)->where('featured', 1)->first(); - @endphp - @if($flash_deal != null && strtotime(date('Y-m-d H:i:s')) >= $flash_deal->start_date && strtotime(date('Y-m-d H:i:s')) <= $flash_deal->end_date) -
-
- -
- -

- {{ translate('Flash Sale') }} - - - -

- - -
- - -
-
-
- -
- -
-
-
-
-
-
-
-
-
- -
- @php - $flash_deals = $flash_deal->flash_deal_products->take(10); - @endphp - -
-
-
-
- @endif - - - @if($num_todays_deal > 0) -
-
- - @if (get_setting('todays_deal_banner') != null || get_setting('todays_deal_banner_small') != null) -
- {{ env('APP_NAME') }} promo -
-
- {{ env('APP_NAME') }} promo -
- @endif - - -
-
- @endif - - - - - - - - - @if (count($featured_categories) > 0) -
-
-
- -
- -

- {{ translate('Featured Categories') }} -

- - -
-
- @foreach ($featured_categories as $key => $category) -
-
-
- -
- {{ $category->getTranslation('name') }} -
- -
- -
{{ $category->getTranslation('name') }}
- - -
-
-
-
- @endforeach -
-
-
-
- @endif - - - @if (get_setting('home_banner2_images') != null) -
-
- @php - $banner_2_imags = json_decode(get_setting('home_banner2_images')); - $data_md = count($banner_2_imags) >= 2 ? 2 : 1; - @endphp - -
-
- @endif - - -
- -
- - -
- @if (count($newest_products) > 0) -
-
- -
- -

- {{ translate('New Products') }} -

- - -
- -
- -
-
-
- @endif -
- - - @if (get_setting('home_banner3_images') != null) -
-
- @php - $banner_3_imags = json_decode(get_setting('home_banner3_images')); - $data_md = count($banner_3_imags) >= 2 ? 2 : 1; - @endphp - -
-
- @endif - - - @if(addon_is_activated('auction')) -
- -
- @endif - - - @if(get_setting('coupon_system') == 1) -
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
{{ translate(get_setting('cupon_title')) }}
-
{{ translate(get_setting('cupon_subtitle')) }}
-
-
-
- -
-
-
- @endif - - -
- -
- - - @if(get_setting('classified_product') == 1) - @php - $classified_products = \App\Models\CustomerProduct::where('status', '1')->where('published', '1')->take(6)->get(); - @endphp - @if (count($classified_products) > 0) -
-
- -
- -

- {{ translate('Classified Ads') }} -

- - -
- - @if (get_setting('classified_banner_image') != null || get_setting('classified_banner_image_small') != null) -
- {{ env('APP_NAME') }} promo -
-
- {{ env('APP_NAME') }} promo -
- @endif - -
-
- @foreach ($classified_products as $key => $classified_product) -
-
-
-
- - {{ $classified_product->getTranslation('name') }} - -
-
-

- {{ $classified_product->getTranslation('name') }} -

-
- {{ $classified_product->user ? $classified_product->user->name : '' }}
- {{ single_price($classified_product->unit_price) }} -
- @if($classified_product->conditon == 'new') - {{translate('New')}} - @elseif($classified_product->conditon == 'used') - {{translate('Used')}} - @endif -
-
-
-
- @endforeach -
-
-
-
- @endif - @endif - - - @php - $best_selers = Cache::remember('best_selers', 86400, function () { - return \App\Models\Shop::where('verification_status', 1)->orderBy('num_of_sale', 'desc')->take(5)->get(); - }); - @endphp - @if (get_setting('vendor_system_activation') == 1) -
-
- -
- -

- {{ translate('Top Sellers') }} -

- - -
- - -
-
- @endif - - - @if (get_setting('top_brands') != null) -
-
- -
- -

{{ translate('Top Brands') }}

- - -
- -
-
- @php $top_brands = json_decode(get_setting('top_brands')); @endphp - @foreach ($top_brands as $value) - @php $brand = \App\Models\Brand::find($value); @endphp - @if ($brand != null) - - @endif - @endforeach -
-
-
-
- @endif - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:58dd1b29258d6fdc60ed5deb44f94bf269296b74476b00a0e5ac686126deab4a +size 41415 diff --git a/desarrollo/resources/views/frontend/inhouse_products.blade.php b/desarrollo/resources/views/frontend/inhouse_products.blade.php index 065f10be..e790ef65 100644 --- a/desarrollo/resources/views/frontend/inhouse_products.blade.php +++ b/desarrollo/resources/views/frontend/inhouse_products.blade.php @@ -1,24 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - -
-
-

{{ translate('Inhouse products') }}

-
-
- @foreach ($products as $key => $product) -
- @include('frontend.partials.product_box_1',['product' => $product]) -
- @endforeach -
-
-
- {{ $products->appends(request()->input())->links() }} -
-
-
- -@endsection - +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0c0bf4004098efbe6e068d9786794307328c2810ce718692da030977a3f35d +size 923 diff --git a/desarrollo/resources/views/frontend/instamojo/instamojo.blade.php b/desarrollo/resources/views/frontend/instamojo/instamojo.blade.php index b0d9f23a..507c5e81 100644 --- a/desarrollo/resources/views/frontend/instamojo/instamojo.blade.php +++ b/desarrollo/resources/views/frontend/instamojo/instamojo.blade.php @@ -1,76 +1,3 @@ - - - - - - - - {{translate('Instamojo Payment Gateway Integrate')}} - - - - - -
- -
-
-
-

{{translate('Confirm your Information For Security Reason')}}

-
-
-
- -@if ($errors->any()) -
- {{translate('Opps!')}}' {{translate('Something went wrong')}}
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
-@endif - -
- {{ csrf_field() }} - -
-
-
- {{translate('Name')}} - -
-
-
-
- {{translate('Mobile Number')}} - -
-
-
-
- {{translate('Email Id')}} - -
-
-
-
- {{translate('Amount')}} - -
-
-
- -
-
- -
-
- - - +version https://git-lfs.github.com/spec/v1 +oid sha256:46adf4e9f9fed3b82ecf786223d49bc831bea98a4074a12688662bfadcc76cff +size 2697 diff --git a/desarrollo/resources/views/frontend/layouts/app.blade.php b/desarrollo/resources/views/frontend/layouts/app.blade.php index 19259038..eb2d784e 100644 --- a/desarrollo/resources/views/frontend/layouts/app.blade.php +++ b/desarrollo/resources/views/frontend/layouts/app.blade.php @@ -1,709 +1,3 @@ - -@if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - -@else - -@endif - - - - - - - @yield('meta_title', get_setting('website_name').' | '.get_setting('site_motto')) - - - - - - - - @yield('meta') - - @if(!isset($detailedProduct) && !isset($customer_product) && !isset($shop) && !isset($page) && !isset($blog)) - - - - - - - - - - - - - - - - - - - - - - @endif - - - - - - - - - - - - @if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - - @endif - - - - - - - - -@if (get_setting('google_analytics') == 1) - - - - -@endif - -@if (get_setting('facebook_pixel') == 1) - - - - -@endif - -@php - echo get_setting('header_script'); -@endphp - - - - -
- - - @include('frontend.inc.nav') - - @yield('content') - - @include('frontend.inc.footer') - -
- - - @if (get_setting('show_cookies_agreement') == 'off') - - @endif - - - @if (get_setting('show_website_popup') == 'off') - - @endif - - @include('frontend.partials.modal') - - @include('frontend.partials.account_delete_modal') - - - - @yield('modal') - - - - - - - - @if (get_setting('facebook_chat') == 1) - -
- -
-
- @endif - - - - - - - - - - @yield('script') - - @php - echo get_setting('footer_script'); - @endphp - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:8833e38cfea23735d547be9eeb034ffb1faad08512f4c67ae4aba2421d4c94ad +size 29551 diff --git a/desarrollo/resources/views/frontend/layouts/user_panel.blade.php b/desarrollo/resources/views/frontend/layouts/user_panel.blade.php index e74e2758..3fd6375a 100644 --- a/desarrollo/resources/views/frontend/layouts/user_panel.blade.php +++ b/desarrollo/resources/views/frontend/layouts/user_panel.blade.php @@ -1,13 +1,3 @@ -@extends('frontend.layouts.app') -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') -
- @yield('panel_content') -
-
-
-
-@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:a7e70ea6e99cdf6f93f22442d34bbc0d1cc93fb5640dc72b95ad17df5bc8cc71 +size 320 diff --git a/desarrollo/resources/views/frontend/m_custom_page.blade.php b/desarrollo/resources/views/frontend/m_custom_page.blade.php index 31f46904..340206eb 100644 --- a/desarrollo/resources/views/frontend/m_custom_page.blade.php +++ b/desarrollo/resources/views/frontend/m_custom_page.blade.php @@ -1,25 +1,3 @@ - - - - - - - - - -
-
-
-
-

{{ $page->getTranslation('title') }}

-
-
-
-
-
-
- {!! $page->getTranslation('content') !!} -
-
- - \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:607ca13cce7fd70eba03d1172f1a6695d33b0209d815db9845f1ad9bb41fff7f +size 792 diff --git a/desarrollo/resources/views/frontend/mpesa/payment.blade.php b/desarrollo/resources/views/frontend/mpesa/payment.blade.php index ef497c02..264c0157 100644 --- a/desarrollo/resources/views/frontend/mpesa/payment.blade.php +++ b/desarrollo/resources/views/frontend/mpesa/payment.blade.php @@ -1,48 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - -
-
-
-
-
-
-

{{translate('Payment Details')}}

- -
-
-
- @csrf - -
-
- - - {{ translate('KINDLY PLEASE PROVIDE YOUR SAFARICOM M-PESA NUMBER START WITH 254') }} -
-
- -
-
- @if (Session::get('payment_type') == 'cart_payment') - - @elseif(Session::get('payment_type') == 'wallet_payment') - - @elseif(Session::get('payment_type') == 'customer_package_payment') - - @elseif(Session::get('payment_type') == 'seller_package_payment') - - @endif -
-
- -
-
-
-
-
-
-
- -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:6b2322c41315615e5ee1bed693a487c4d64bbeeb4f2905d2e24b95614c0995d6 +size 3099 diff --git a/desarrollo/resources/views/frontend/order_confirmed.blade.php b/desarrollo/resources/views/frontend/order_confirmed.blade.php index a9d83747..6fb271ef 100644 --- a/desarrollo/resources/views/frontend/order_confirmed.blade.php +++ b/desarrollo/resources/views/frontend/order_confirmed.blade.php @@ -1,246 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - - -
-
-
-
-
-
-
- -

{{ translate('1. My Cart') }}

-
-
-
-
- -

{{ translate('2. Shipping info') }} -

-
-
-
-
- -

{{ translate('3. Delivery info') }} -

-
-
-
-
- -

{{ translate('4. Payment') }}

-
-
-
-
- - - - - - - - -

{{ translate('5. Confirmation') }} -

-
-
-
-
-
-
-
- - -
-
-
-
- @php - $first_order = $combined_order->orders->first() - @endphp - -
- - - - - - - - - -

{{ translate('Thank You for Your Order!')}}

-

{{ translate('A copy or your order summary has been sent to') }} {{ json_decode($first_order->shipping_address)->email }}

-
- -
-
{{ translate('Order Summary')}}
-
-
- - - - - - - - - - - - - - - - - -
{{ translate('Order date')}}:{{ date('d-m-Y H:i A', $first_order->date) }}
{{ translate('Name')}}:{{ json_decode($first_order->shipping_address)->name }}
{{ translate('Email')}}:{{ json_decode($first_order->shipping_address)->email }}
{{ translate('Shipping address')}}:{{ json_decode($first_order->shipping_address)->address }}, {{ json_decode($first_order->shipping_address)->city }}, {{ json_decode($first_order->shipping_address)->country }}
-
-
- - - - - - - - - - - - - - - - - -
{{ translate('Order status')}}:{{ translate(ucfirst(str_replace('_', ' ', $first_order->delivery_status))) }}
{{ translate('Total order amount')}}:{{ single_price($combined_order->grand_total) }}
{{ translate('Shipping')}}:{{ translate('Flat shipping rate')}}
{{ translate('Payment method')}}:{{ translate(ucfirst(str_replace('_', ' ', $first_order->payment_type))) }}
-
-
-
- - - @foreach ($combined_order->orders as $order) -
-
- -
-

{{ translate('Order Code:')}} {{ $order->code }}

-
- -
-
{{ translate('Order Details')}}
- -
- - - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - - - - - - - - - @endforeach - -
#{{ translate('Product')}}{{ translate('Variation')}}{{ translate('Quantity')}}{{ translate('Delivery Type')}}{{ translate('Price')}}
{{ $key+1 }} - @if ($orderDetail->product != null) - - {{ $orderDetail->product->getTranslation('name') }} - @php - if($orderDetail->combo_id != null) { - $combo = \App\ComboProduct::findOrFail($orderDetail->combo_id); - - echo '('.$combo->combo_title.')'; - } - @endphp - - @else - {{ translate('Product Unavailable') }} - @endif - - {{ $orderDetail->variation }} - - {{ $orderDetail->quantity }} - - @if ($order->shipping_type != null && $order->shipping_type == 'home_delivery') - {{ translate('Home Delivery') }} - @elseif ($order->shipping_type != null && $order->shipping_type == 'carrier') - {{ translate('Carrier') }} - @elseif ($order->shipping_type == 'pickup_point') - @if ($order->pickup_point != null) - {{ $order->pickup_point->getTranslation('name') }} ({{ translate('Pickip Point') }}) - @endif - @endif - {{ single_price($orderDetail->price) }}
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Subtotal')}} - {{ single_price($order->orderDetails->sum('price')) }} -
{{ translate('Shipping')}} - {{ single_price($order->orderDetails->sum('shipping_cost')) }} -
{{ translate('Tax')}} - {{ single_price($order->orderDetails->sum('tax')) }} -
{{ translate('Coupon Discount')}} - {{ single_price($order->coupon_discount) }} -
{{ translate('Total')}} - {{ single_price($order->grand_total) }} -
-
-
- -
-
-
- @endforeach -
-
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:f385a7626667eed759c0400455a5672428f092c03361d43e7eaf350bf6a7640f +size 18156 diff --git a/desarrollo/resources/views/frontend/partials/account_delete_modal.blade.php b/desarrollo/resources/views/frontend/partials/account_delete_modal.blade.php index ae780075..2648d78a 100644 --- a/desarrollo/resources/views/frontend/partials/account_delete_modal.blade.php +++ b/desarrollo/resources/views/frontend/partials/account_delete_modal.blade.php @@ -1,56 +1,3 @@ - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d1c0e1b4db2867da339c74fbea2b8a400258777500024f2d1a800ac0e46f28 +size 3568 diff --git a/desarrollo/resources/views/frontend/partials/addToCart.blade.php b/desarrollo/resources/views/frontend/partials/addToCart.blade.php index f0a4fa5b..67cf7c9f 100644 --- a/desarrollo/resources/views/frontend/partials/addToCart.blade.php +++ b/desarrollo/resources/views/frontend/partials/addToCart.blade.php @@ -1,269 +1,3 @@ - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:cc47f275fd0d11c259beab79f2a019390ff8c649737b9c4c69b352ffba4ae5bf +size 16398 diff --git a/desarrollo/resources/views/frontend/partials/addedToCart.blade.php b/desarrollo/resources/views/frontend/partials/addedToCart.blade.php index ae949d70..f3f8a8ac 100644 --- a/desarrollo/resources/views/frontend/partials/addedToCart.blade.php +++ b/desarrollo/resources/views/frontend/partials/addedToCart.blade.php @@ -1,86 +1,3 @@ - +version https://git-lfs.github.com/spec/v1 +oid sha256:0005fb55064199332bbd562b053723176199e81704800ea9b5a9050ead2aaf1a +size 5479 diff --git a/desarrollo/resources/views/frontend/partials/address_edit_modal.blade.php b/desarrollo/resources/views/frontend/partials/address_edit_modal.blade.php index 5e3ec403..5ad7b7ce 100644 --- a/desarrollo/resources/views/frontend/partials/address_edit_modal.blade.php +++ b/desarrollo/resources/views/frontend/partials/address_edit_modal.blade.php @@ -1,123 +1,3 @@ -
- @csrf -
- -
-
- -
-
- -
-
- - -
-
- -
-
-
- -
-
-
- - -
-
- -
-
- -
-
- - -
-
- -
-
- -
-
- - @if (get_setting('google_map') == 1) - -
- -
-
    -
  • Full Address:
  • -
  • Postal Code:
  • -
  • Country:
  • -
  • Latitude:
  • -
  • Longitude:
  • -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- @endif - - -
-
- -
-
- -
-
- - -
-
- -
-
- -
-
- - -
- -
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:850b5e23518bfcc02d30fef8c72f693390800593017009e60f765ba6f666e0f8 +size 5640 diff --git a/desarrollo/resources/views/frontend/partials/address_modal.blade.php b/desarrollo/resources/views/frontend/partials/address_modal.blade.php index cc1e3073..4feb5740 100644 --- a/desarrollo/resources/views/frontend/partials/address_modal.blade.php +++ b/desarrollo/resources/views/frontend/partials/address_modal.blade.php @@ -1,240 +1,3 @@ - - - - - - -@section('script') - - - - @if (get_setting('google_map') == 1) - @include('frontend.partials.google_map') - @endif -@endsection \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd9b2f71a5014385c28f330911119d1a46b5a33bbaa55c22551236f36f559a5 +size 11095 diff --git a/desarrollo/resources/views/frontend/partials/auctionProductAlredayAddedCart.blade.php b/desarrollo/resources/views/frontend/partials/auctionProductAlredayAddedCart.blade.php index eb285021..750fec29 100644 --- a/desarrollo/resources/views/frontend/partials/auctionProductAlredayAddedCart.blade.php +++ b/desarrollo/resources/views/frontend/partials/auctionProductAlredayAddedCart.blade.php @@ -1,9 +1,3 @@ - +version https://git-lfs.github.com/spec/v1 +oid sha256:50b0edfab650ff4ae4454f9a79eb50c23998d03f2b95d536f0cacdd14492fb1c +size 383 diff --git a/desarrollo/resources/views/frontend/partials/best_sellers_section.blade.php b/desarrollo/resources/views/frontend/partials/best_sellers_section.blade.php index 57c4bafb..70edf1d2 100644 --- a/desarrollo/resources/views/frontend/partials/best_sellers_section.blade.php +++ b/desarrollo/resources/views/frontend/partials/best_sellers_section.blade.php @@ -1,51 +1,3 @@ -@php - $best_selers = Cache::remember('best_selers', 86400, function () { - return \App\Models\Shop::where('verification_status', 1)->orderBy('num_of_sale', 'desc')->take(20)->get(); - }); -@endphp - -@if (get_setting('vendor_system_activation') == 1) -
-
-
-
-

- {{ translate('Best Sellers')}} -

- {{ translate('View All Sellers') }} -
- -
-
-
-@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:e819589c9a097fbb21139af3fe42ee8161a4333c66d1395670a679eb13f427b7 +size 3089 diff --git a/desarrollo/resources/views/frontend/partials/best_selling_section.blade.php b/desarrollo/resources/views/frontend/partials/best_selling_section.blade.php index a3a6409b..adab0f62 100644 --- a/desarrollo/resources/views/frontend/partials/best_selling_section.blade.php +++ b/desarrollo/resources/views/frontend/partials/best_selling_section.blade.php @@ -1,34 +1,3 @@ -@php - $best_selling_products = Cache::remember('best_selling_products', 86400, function () { - return filter_products(\App\Models\Product::where('published', 1)->orderBy('num_of_sale', 'desc'))->limit(20)->get(); - }); -@endphp - -@if (get_setting('best_selling') == 1 && count($best_selling_products) > 0) -
-
- -
- -

- {{ translate('Best Selling') }} -

- -
- - -
-
- -
- -
-
-
-@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ce4e4669d276684e532ccb644312bb39c3a13f46056786aa51943896094fa5 +size 1804 diff --git a/desarrollo/resources/views/frontend/partials/cart.blade.php b/desarrollo/resources/views/frontend/partials/cart.blade.php index b9ab2f43..cbc9e99a 100644 --- a/desarrollo/resources/views/frontend/partials/cart.blade.php +++ b/desarrollo/resources/views/frontend/partials/cart.blade.php @@ -1,110 +1,3 @@ -@php - if (auth()->user() != null) { - $user_id = Auth::user()->id; - $cart = \App\Models\Cart::where('user_id', $user_id)->get(); - } else { - $temp_user_id = Session()->get('temp_user_id'); - if ($temp_user_id) { - $cart = \App\Models\Cart::where('temp_user_id', $temp_user_id)->get(); - } - } - - $total = 0; - if(isset($cart) && count($cart) > 0){ - foreach ($cart as $key => $cartItem){ - $product = \App\Models\Product::find($cartItem['product_id']); - $total = $total + cart_product_price($cartItem, $product, false) * $cartItem['quantity']; - } - } -@endphp - - - - - - - - - - - - - - - - {{ single_price($total) }} - - ({{(isset($cart) && count($cart) > 0) ? count($cart) : 0 }} {{translate('Items')}}) - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:72e6a15a4d1edbe681b4632e3807ebad9db15950e84c308ee65fa74246bf5be2 +size 11402 diff --git a/desarrollo/resources/views/frontend/partials/cart_details.blade.php b/desarrollo/resources/views/frontend/partials/cart_details.blade.php index 8c50a708..9e0d5bea 100644 --- a/desarrollo/resources/views/frontend/partials/cart_details.blade.php +++ b/desarrollo/resources/views/frontend/partials/cart_details.blade.php @@ -1,142 +1,3 @@ -
- @if( $carts && count($carts) > 0 ) -
-
-
-
- -
-
{{ translate('Qty')}}
-
{{ translate('Product')}}
-
{{ translate('Price')}}
-
{{ translate('Tax')}}
-
{{ translate('Total')}}
-
{{ translate('Remove')}}
-
- -
    - @php - $total = 0; - @endphp - @foreach ($carts as $key => $cartItem) - @php - $product = \App\Models\Product::find($cartItem['product_id']); - $product_stock = $product->stocks->where('variant', $cartItem['variation'])->first(); - // $total = $total + ($cartItem['price'] + $cartItem['tax']) * $cartItem['quantity']; - $total = $total + cart_product_price($cartItem, $product, false) * $cartItem['quantity']; - $product_name_with_choice = $product->getTranslation('name'); - if ($cartItem['variation'] != null) { - $product_name_with_choice = $product->getTranslation('name').' - '.$cartItem['variation']; - } - @endphp -
  • -
    - -
    - @if ($cartItem['digital'] != 1 && $product->auction_product == 0) -
    - - - -
    - @elseif($product->auction_product == 1) - 1 - @endif -
    - -
    - - {{ $product->getTranslation('name')  }} - - {{ $product_name_with_choice }} -
    - -
    - {{ translate('Price')}} - {{ cart_product_price($cartItem, $product, true, false) }} -
    - -
    - {{ translate('Tax')}} - {{ cart_product_tax($cartItem, $product) }} -
    - -
    - {{ translate('Total')}} - {{ single_price(cart_product_price($cartItem, $product, false) * $cartItem['quantity']) }} -
    - -
    - - - -
    -
    -
  • - @endforeach -
-
- - -
- {{translate('Subtotal')}} - {{ single_price($total) }} -
-
- - - -
- @if(Auth::check()) - - {{ translate('Continue to Shipping')}} - - @else - - @endif -
-
-
-
-
- @else -
-
-
- -
- -

{{translate('Your Cart is empty')}}

-
-
-
-
- @endif -
- - +version https://git-lfs.github.com/spec/v1 +oid sha256:3a355935a25742e4c6e58774c7f18f1ce27e44502afa088172db97a60e7f701c +size 9837 diff --git a/desarrollo/resources/views/frontend/partials/cart_summary.blade.php b/desarrollo/resources/views/frontend/partials/cart_summary.blade.php index 725ce647..74af0e06 100644 --- a/desarrollo/resources/views/frontend/partials/cart_summary.blade.php +++ b/desarrollo/resources/views/frontend/partials/cart_summary.blade.php @@ -1,247 +1,3 @@ -
- -
-

{{ translate('Summary') }}

-
- - - {{ count($carts) }} - {{ translate('Items') }} - - - - @php - $coupon_discount = 0; - @endphp - @if (Auth::check() && get_setting('coupon_system') == 1) - @php - $coupon_code = null; - @endphp - - @foreach ($carts as $key => $cartItem) - @php - $product = \App\Models\Product::find($cartItem['product_id']); - @endphp - @if ($cartItem->coupon_applied == 1) - @php - $coupon_code = $cartItem->coupon_code; - break; - @endphp - @endif - @endforeach - - @php - $coupon_discount = carts_coupon_discount($coupon_code); - @endphp - @endif - - @php $subtotal_for_min_order_amount = 0; @endphp - @foreach ($carts as $key => $cartItem) - @php $subtotal_for_min_order_amount += cart_product_price($cartItem, $cartItem->product, false, false) * $cartItem['quantity']; @endphp - @endforeach - @if (get_setting('minimum_order_amount_check') == 1 && $subtotal_for_min_order_amount < get_setting('minimum_order_amount')) - - {{ translate('Minimum Order Amount') . ' ' . single_price(get_setting('minimum_order_amount')) }} - - @endif - -
-
- - - @if (addon_is_activated('club_point')) -
-

{{ translate('Total Clubpoint') }}

-
- - @php - $total_point = 0; - @endphp - @foreach ($carts as $key => $cartItem) - @php - $product = \App\Models\Product::find($cartItem['product_id']); - $total_point += $product->earn_point * $cartItem['quantity']; - @endphp - @endforeach - - - - - - - - - - - - {{ $total_point }} - -
-
- @endif - -
- - - - - - - - - - @php - $subtotal = 0; - $tax = 0; - $shipping = 0; - $product_shipping_cost = 0; - $shipping_region = $shipping_info['city']; - @endphp - @foreach ($carts as $key => $cartItem) - @php - $product = \App\Models\Product::find($cartItem['product_id']); - $subtotal += cart_product_price($cartItem, $product, false, false) * $cartItem['quantity']; - $tax += cart_product_tax($cartItem, $product, false) * $cartItem['quantity']; - $product_shipping_cost = $cartItem['shipping_cost']; - - $shipping += $product_shipping_cost; - - $product_name_with_choice = $product->getTranslation('name'); - if ($cartItem['variant'] != null) { - $product_name_with_choice = $product->getTranslation('name') . ' - ' . $cartItem['variant']; - } - @endphp - - - - - @endforeach - -
{{ translate('Product') }}{{ translate('Total') }}
- {{ $product_name_with_choice }} - - × {{ $cartItem['quantity'] }} - - - {{ single_price(cart_product_price($cartItem, $cartItem->product, false, false) * $cartItem['quantity']) }} -
- - - - - - - - - - - - - - - - - - - - - - @if (Session::has('club_point')) - - - - - @endif - - @if ($coupon_discount > 0) - - - - - @endif - - @php - $total = $subtotal + $tax + $shipping; - if (Session::has('club_point')) { - $total -= Session::get('club_point'); - } - if ($coupon_discount > 0) { - $total -= $coupon_discount; - } - @endphp - - - - - - -
{{ translate('Subtotal') }} - {{ single_price($subtotal) }} -
{{ translate('Tax') }} - {{ single_price($tax) }} -
{{ translate('Total Shipping') }} - {{ single_price($shipping) }} -
{{ translate('Redeem point') }} - {{ single_price(Session::get('club_point')) }} -
{{ translate('Coupon Discount') }} - {{ single_price($coupon_discount) }} -
{{ translate('Total') }} - {{ single_price($total) }} -
- - - @if (addon_is_activated('club_point')) - @if (Session::has('club_point')) -
-
- @csrf -
-
{{ Session::get('club_point') }}
-
- -
-
-
-
- @endif - @endif - - - @if (Auth::check() && get_setting('coupon_system') == 1) - @if ($coupon_discount > 0 && $coupon_code) -
-
- @csrf -
-
{{ $coupon_code }}
-
- -
-
-
-
- @else -
-
- @csrf - -
- -
- -
-
-
-
- @endif - @endif - -
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:4d7cbef0e2b3bdd66d359c5a43cfd0bca3391c5de685000171883cdca3bd716f +size 12292 diff --git a/desarrollo/resources/views/frontend/partials/category_elements.blade.php b/desarrollo/resources/views/frontend/partials/category_elements.blade.php index 5051d0d5..4ede9606 100644 --- a/desarrollo/resources/views/frontend/partials/category_elements.blade.php +++ b/desarrollo/resources/views/frontend/partials/category_elements.blade.php @@ -1,16 +1,3 @@ -
- @foreach (\App\Utility\CategoryUtility::get_immediate_children_ids($category->id) as $key => $first_level_id) -
- -
- @endforeach -
+version https://git-lfs.github.com/spec/v1 +oid sha256:1c031321c68982e2c8d5e11b4bc75a77d305e377a44b70f9d2df1eeb9ed6fc7a +size 1050 diff --git a/desarrollo/resources/views/frontend/partials/category_menu.blade.php b/desarrollo/resources/views/frontend/partials/category_menu.blade.php index 9071b243..768e363e 100644 --- a/desarrollo/resources/views/frontend/partials/category_menu.blade.php +++ b/desarrollo/resources/views/frontend/partials/category_menu.blade.php @@ -1,24 +1,3 @@ -
-
    - @foreach (\App\Models\Category::where('level', 0)->orderBy('order_level', 'desc')->get()->take(10) as $key => $category) -
  • - - {{ $category->getTranslation('name') }} - {{ $category->getTranslation('name') }} - - @if(count(\App\Utility\CategoryUtility::get_immediate_children_ids($category->id))>0) -
    -
    - -
    -
    - @endif -
  • - @endforeach -
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:cc05ec7e87edda348e87f7f1ddf5edc4746d4b247a5c3d5ac40b6a2e99aa0ff5 +size 1435 diff --git a/desarrollo/resources/views/frontend/partials/compare.blade.php b/desarrollo/resources/views/frontend/partials/compare.blade.php index 8eb53b09..f6a32c2c 100644 --- a/desarrollo/resources/views/frontend/partials/compare.blade.php +++ b/desarrollo/resources/views/frontend/partials/compare.blade.php @@ -1,10 +1,3 @@ - - - - - - @if(Session::has('compare')) - {{ count(Session::get('compare'))}} - @endif - - \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:6cc33b1e7e5179104da3db91c119b50b21e083520caa955c1a3922e050a6377f +size 1063 diff --git a/desarrollo/resources/views/frontend/partials/coupon_box.blade.php b/desarrollo/resources/views/frontend/partials/coupon_box.blade.php index d5a54a68..ac9fdc9a 100644 --- a/desarrollo/resources/views/frontend/partials/coupon_box.blade.php +++ b/desarrollo/resources/views/frontend/partials/coupon_box.blade.php @@ -1,104 +1,3 @@ -@if ($key == 0 || ($key+1 > 3 && ($key+1 -(floor(($key+1)%3)*3)) == 1)) - @php $bg = "linear-gradient(to right, #e2583e 0%, #bf1931 100%);"; @endphp -@elseif ($key == 1 || ($key+1 > 3 && ($key+1 -(floor(($key+1)%3)*3)) == 2)) - @php $bg = "linear-gradient(to right, #7cc4c3 0%, #479493 100%);"; @endphp -@elseif ($key == 2 || ($key+1 > 3 && ($key+1 -(floor(($key+1)%3)*3)) == 3)) - @php $bg = "linear-gradient(to right, #98b3d1 0%, #5f4a8b 100%);"; @endphp -@endif - -@if($coupon->type == 'product_base') - @php - $products = json_decode($coupon->details); - $coupon_products = []; - foreach($products as $product) { - array_push($coupon_products, $product->product_id); - } - @endphp -@else - @php - $order_discount = json_decode($coupon->details); - @endphp -@endif -@php - if($coupon->user->user_type != 'admin') { - $shop = $coupon->user->shop; - $name = $shop->name; - } - else { - $name = get_setting('website_name'); - } -@endphp - -
- - -
-

{{ $name }} - @if (\Request::route()->getName() == 'coupons.all') - user->user_type != 'admin') - href="{{ route('shop.visit', $shop->slug) }}" - @else - href="{{ route('inhouse.all') }}" - @endif - class="ml-3 text-white hov-text-warning fs-13" style="text-decoration: underline;" - > - {{ translate('Visit Store') }} - - @endif -

-
- @if($coupon->discount_type == 'amount') -

{{ single_price($coupon->discount) }} {{ translate('OFF') }}

- @else -

{{ $coupon->discount }}% {{ translate('OFF') }}

- @endif -
-
- - -
- -
- -
- - -
-
- @if($coupon->type == 'product_base') - - @php $products = App\Models\Product::whereIn('id', $coupon_products)->get(); @endphp - - @else - - - @if($coupon->discount_type == 'amount') - {{ translate('Min Spend ') }} {{ single_price($order_discount->min_buy) }} {{ translate('from') }} {{ $name }} {{ translate('to get') }} {{ single_price($coupon->discount) }} {{ translate('OFF on total orders') }} - @else - {{ translate('Min Spend ') }} {{ single_price($order_discount->min_buy) }} {{ translate('from') }} {{ $name }} {{ translate('to get') }} {{ $coupon->discount }}% {{ translate('OFF on total orders') }} - @endif - - @endif -
- - -
- - {{ translate('Code') }}: - {{ $coupon->code }} - - -
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:ee348b6ca3d4d031afdff50a9aa5ead7362bed33a71fd01e2166e0a9f9c1e6fe +size 5445 diff --git a/desarrollo/resources/views/frontend/partials/featured_products_section.blade.php b/desarrollo/resources/views/frontend/partials/featured_products_section.blade.php index 3b02341b..bc2b2d0a 100644 --- a/desarrollo/resources/views/frontend/partials/featured_products_section.blade.php +++ b/desarrollo/resources/views/frontend/partials/featured_products_section.blade.php @@ -1,34 +1,3 @@ -@php - $featured_products = Cache::remember('featured_products', 3600, function () { - return filter_products(\App\Models\Product::where('published', 1)->where('featured', '1'))->latest()->limit(12)->get(); - }); -@endphp - -@if (count($featured_products) > 0) -
-
- -
- -

- {{ translate('Featured Products') }} -

- -
- - -
-
- -
- -
-
-
-@endif \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:77061657139e4c45efaecbd277b882faa11559c2b0694b44469a49cd8e67cc96 +size 1744 diff --git a/desarrollo/resources/views/frontend/partials/google_map.blade.php b/desarrollo/resources/views/frontend/partials/google_map.blade.php index 341cb58c..93d2dd27 100644 --- a/desarrollo/resources/views/frontend/partials/google_map.blade.php +++ b/desarrollo/resources/views/frontend/partials/google_map.blade.php @@ -1,118 +1,3 @@ - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:2a29046aee7e01e1624e7ad1036c55e5051735b6a6b4707f210370e7aaf27427 +size 4915 diff --git a/desarrollo/resources/views/frontend/partials/home_categories_section.blade.php b/desarrollo/resources/views/frontend/partials/home_categories_section.blade.php index d0d7e479..4a480b4b 100644 --- a/desarrollo/resources/views/frontend/partials/home_categories_section.blade.php +++ b/desarrollo/resources/views/frontend/partials/home_categories_section.blade.php @@ -1,37 +1,3 @@ -@if(get_setting('home_categories') != null) - @php $home_categories = json_decode(get_setting('home_categories')); @endphp - @foreach ($home_categories as $key1 => $value) - @php $category = \App\Models\Category::find($value); @endphp -
-
-
- - - -
- -
-
-
-
- @endforeach -@endif - +version https://git-lfs.github.com/spec/v1 +oid sha256:45b13e413d50acee404c5f56a9dcb59e4c6136ff12f8d5312f4a24f2e8137e5d +size 3135 diff --git a/desarrollo/resources/views/frontend/partials/login_modal.blade.php b/desarrollo/resources/views/frontend/partials/login_modal.blade.php index 306522d5..5a973229 100644 --- a/desarrollo/resources/views/frontend/partials/login_modal.blade.php +++ b/desarrollo/resources/views/frontend/partials/login_modal.blade.php @@ -1,139 +1,3 @@ - \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:db81c7d809ace7215393c6d7249b296a37e1b13ec18d75ed88ec3b63c62f20ba +size 8019 diff --git a/desarrollo/resources/views/frontend/partials/messages.blade.php b/desarrollo/resources/views/frontend/partials/messages.blade.php index 98ae2379..7ca704b9 100644 --- a/desarrollo/resources/views/frontend/partials/messages.blade.php +++ b/desarrollo/resources/views/frontend/partials/messages.blade.php @@ -1,47 +1,3 @@ -@foreach ($conversation->messages as $key => $message) - @if ($message->user_id == Auth::user()->id) -
-
-
-
- @if ($message->user->avatar_original != null) - - @else - - @endif -
-
-
-
- {{ $message->message }} -
- - {{ date('h:i:m d-m-Y', strtotime($message->created_at)) }} - -
-
-
- @else -
-
-
-
- @if ($message->user->avatar_original != null) - - @else - - @endif -
-
-
-
- {{ $message->message }} -
- - {{ date('h:i:m d-m-Y', strtotime($message->created_at)) }} - -
-
-
- @endif -@endforeach +version https://git-lfs.github.com/spec/v1 +oid sha256:c24b572c78d5fa6264fcd71674fcb6de16cee90c2d3824548d22f141158cb021 +size 2156 diff --git a/desarrollo/resources/views/frontend/partials/minQtyNotSatisfied.blade.php b/desarrollo/resources/views/frontend/partials/minQtyNotSatisfied.blade.php index 5370056b..0d3b6f9d 100644 --- a/desarrollo/resources/views/frontend/partials/minQtyNotSatisfied.blade.php +++ b/desarrollo/resources/views/frontend/partials/minQtyNotSatisfied.blade.php @@ -1,9 +1,3 @@ - +version https://git-lfs.github.com/spec/v1 +oid sha256:aa727039e13b8c644bbf9329ed7bcc28ad810f1a61c608ae6aa768fe4b43245d +size 383 diff --git a/desarrollo/resources/views/frontend/partials/modal.blade.php b/desarrollo/resources/views/frontend/partials/modal.blade.php index ad2cf99b..5fddceb2 100644 --- a/desarrollo/resources/views/frontend/partials/modal.blade.php +++ b/desarrollo/resources/views/frontend/partials/modal.blade.php @@ -1,62 +1,3 @@ - - - - - -@include('frontend.partials.login_modal') - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:518e4dbe64d6e472bacecd779c1f7e609a3e190b5999a8799c45d095a8c7a642 +size 2909 diff --git a/desarrollo/resources/views/frontend/partials/newest_products_section.blade.php b/desarrollo/resources/views/frontend/partials/newest_products_section.blade.php new file mode 100644 index 00000000..9dea513a --- /dev/null +++ b/desarrollo/resources/views/frontend/partials/newest_products_section.blade.php @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa2a097729e8d8a00833cfd8df86ac59ba6ec6ba1fc353ac75cd2421e14d33b +size 1915 diff --git a/desarrollo/resources/views/frontend/partials/outOfStockCart.blade.php b/desarrollo/resources/views/frontend/partials/outOfStockCart.blade.php index 1f083875..31d9837c 100644 --- a/desarrollo/resources/views/frontend/partials/outOfStockCart.blade.php +++ b/desarrollo/resources/views/frontend/partials/outOfStockCart.blade.php @@ -1,9 +1,3 @@ - +version https://git-lfs.github.com/spec/v1 +oid sha256:112370622a57c108008e538bdb5aa7bf5c6a8cb5ef4baed6ff781673c0017278 +size 363 diff --git a/desarrollo/resources/views/frontend/partials/pick_up_points.blade.php b/desarrollo/resources/views/frontend/partials/pick_up_points.blade.php index aa20c804..3ec93ad6 100644 --- a/desarrollo/resources/views/frontend/partials/pick_up_points.blade.php +++ b/desarrollo/resources/views/frontend/partials/pick_up_points.blade.php @@ -1,40 +1,3 @@ -
-
{{translate('Select Nearest Pick-up Point')}}
-
-@php - $admin_products = array(); - $seller_products = array(); - foreach (Session::get('cart') as $key => $cartItem){ - if(\App\Models\Product::find($cartItem['id'])->added_by == 'admin'){ - array_push($admin_products, $cartItem['id']); - } - else{ - $product_ids = array(); - if(isset($seller_products[\App\Models\Product::find($cartItem['id'])->user_id])){ - $product_ids = $seller_products[\App\Models\Product::find($cartItem['id'])->user_id]; - } - array_push($product_ids, $cartItem['id']); - $seller_products[\App\Models\Product::find($cartItem['id'])->user_id] = $product_ids; - } - } - // dd($seller_products); -@endphp -@if (!empty($admin_products)) - @foreach ($pick_up_points as $key => $pick_up_point) - - @endforeach -@endif -@if (!empty($seller_products)) - @foreach ($seller_products as $key => $seller_product) - @foreach ($seller_product as $key => $value) - {{ $value }}
- @endforeach - @endforeach -@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:0aa7192456fe0c17703177d46bf0fff69f7f5632aa1335e8081fb98c90a1de9c +size 1663 diff --git a/desarrollo/resources/views/frontend/partials/price_variations.blade.php b/desarrollo/resources/views/frontend/partials/price_variations.blade.php index c8ccb4b1..f93e9a1c 100644 --- a/desarrollo/resources/views/frontend/partials/price_variations.blade.php +++ b/desarrollo/resources/views/frontend/partials/price_variations.blade.php @@ -1,33 +1,3 @@ - -@foreach(json_decode($subsubcategory->options) as $key=> $option) -
-
- -
-
-
-
- @if($option->type == 'radio' || $option->type == 'select') - @foreach($option->options as $options) -
-
- -
-
- -
-
- -
-
- @endforeach - - @endif -
-
-
-
-@endforeach +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea7d19fb4f80c66157df9ef9f3998b3bc66c82247a7465e4f47c88c6f38df05 +size 1698 diff --git a/desarrollo/resources/views/frontend/partials/product_box_1.blade.php b/desarrollo/resources/views/frontend/partials/product_box_1.blade.php index 0deadee8..2d682841 100644 --- a/desarrollo/resources/views/frontend/partials/product_box_1.blade.php +++ b/desarrollo/resources/views/frontend/partials/product_box_1.blade.php @@ -1,109 +1,3 @@ -@php - if (auth()->user() != null) { - $user_id = Auth::user()->id; - $cart = \App\Models\Cart::where('user_id', $user_id)->get(); - } else { - $temp_user_id = Session()->get('temp_user_id'); - if ($temp_user_id) { - $cart = \App\Models\Cart::where('temp_user_id', $temp_user_id)->get(); - } - } - - $cart_added = array(); - if(isset($cart) && count($cart) > 0){ - $cart_added = $cart->pluck('product_id')->toArray(); - } -@endphp -
-
- @php - $product_url = route('product', $product->slug); - if($product->auction_product == 1) { - $product_url = route('auction-product', $product->slug); - } - @endphp - - - {{  $product->getTranslation('name')  }} - - - @if(discount_in_percentage($product) > 0) - -{{discount_in_percentage($product)}}% - @endif - - @if ($product->wholesale_product) - - {{ translate('Wholesale') }} - - @endif - @if($product->auction_product == 0) - - - - - {{ translate('Add to Cart') }} -
- -
- @endif - @if($product->auction_product == 1 && $product->auction_start_date <= strtotime("now") && $product->auction_end_date >= strtotime("now")) - - @php - $highest_bid = $product->bids->max('amount'); - $min_bid_amount = $highest_bid != null ? $highest_bid+1 : $product->starting_bid; - @endphp - - {{ translate('Place Bid') }} -
- -
- @endif -
- -
- -

- {{ $product->getTranslation('name') }} -

-
- @if($product->auction_product == 0) - - @if(home_base_price($product) != home_discounted_base_price($product)) -
- {{ home_base_price($product) }} -
- @endif - -
- {{ home_discounted_base_price($product) }} -
- @endif - @if($product->auction_product == 1) - -
- {{ single_price($product->starting_bid) }} -
- @endif -
-
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:2976767fe7c8f60fd49e3adb53218a2ba6dc6f4508deb5c54951e97c3bf32572 +size 7140 diff --git a/desarrollo/resources/views/frontend/partials/product_query_pagination.blade.php b/desarrollo/resources/views/frontend/partials/product_query_pagination.blade.php index 1d0c6cf3..5d59e552 100644 --- a/desarrollo/resources/views/frontend/partials/product_query_pagination.blade.php +++ b/desarrollo/resources/views/frontend/partials/product_query_pagination.blade.php @@ -1,53 +1,3 @@ -
-

- {{ translate('Other Questions') }} -

-
- - -@forelse ($product_queries as $product_query) -
-
- - - - - Q - - - - - -
-
{{ strip_tags($product_query->question) }}
- {{ $product_query->user->name }} -
-
-
- - - - - A - - - - - -
-
- {{ strip_tags($product_query->reply ? $product_query->reply : translate('Seller did not respond yet')) }} -
- {{ $product_query->product->user->name }} - -
-
-
-@empty -

{{ translate('No none asked to seller yet') }}

-@endforelse - - -
- {{ $product_queries->links() }} -
+version https://git-lfs.github.com/spec/v1 +oid sha256:d05e12049ab681e489302a8198ec7a835816eb3033bc74bc31473d0d3f016514 +size 2978 diff --git a/desarrollo/resources/views/frontend/partials/removeAuctionProductFromCart.blade.php b/desarrollo/resources/views/frontend/partials/removeAuctionProductFromCart.blade.php new file mode 100644 index 00000000..fd33dc23 --- /dev/null +++ b/desarrollo/resources/views/frontend/partials/removeAuctionProductFromCart.blade.php @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e4d26abcbbc99bc1267e3932018a2463f9e8c49f78fac6e88e56dab051fd2e +size 390 diff --git a/desarrollo/resources/views/frontend/partials/search_content.blade.php b/desarrollo/resources/views/frontend/partials/search_content.blade.php index 06577a13..02afb3da 100644 --- a/desarrollo/resources/views/frontend/partials/search_content.blade.php +++ b/desarrollo/resources/views/frontend/partials/search_content.blade.php @@ -1,81 +1,3 @@ -
- @if (sizeof($keywords) > 0) -
{{translate('Popular Suggestions')}}
-
    - @foreach ($keywords as $key => $keyword) -
  • - {{ $keyword }} -
  • - @endforeach -
- @endif -
-
- @if (count($categories) > 0) -
{{translate('Category Suggestions')}}
- - @endif -
- -@if(get_setting('vendor_system_activation') == 1) -
- @if (count($shops) > 0) -
{{translate('Shops')}}
- - @endif -
-@endif +version https://git-lfs.github.com/spec/v1 +oid sha256:87e02350b10a3bbda58b3cddca020647b3a356b4f61a29a0fb702ea90e9d7dd3 +size 4119 diff --git a/desarrollo/resources/views/frontend/partials/todays_deal.blade.php b/desarrollo/resources/views/frontend/partials/todays_deal.blade.php new file mode 100644 index 00000000..f339c8b0 --- /dev/null +++ b/desarrollo/resources/views/frontend/partials/todays_deal.blade.php @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4cf8ad4845f10cb295a88832d0a12c230f465d5c8385a6696250146d1cbf67c +size 4259 diff --git a/desarrollo/resources/views/frontend/partials/wallet_modal.blade.php b/desarrollo/resources/views/frontend/partials/wallet_modal.blade.php index ac3b0987..88e87631 100644 --- a/desarrollo/resources/views/frontend/partials/wallet_modal.blade.php +++ b/desarrollo/resources/views/frontend/partials/wallet_modal.blade.php @@ -1,108 +1,3 @@ - \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1a9ad7f77dd69b04421f1f1634d8be6875ac51ef65da0e2a589d65b77ca8d1 +size 7244 diff --git a/desarrollo/resources/views/frontend/partials/wishlist.blade.php b/desarrollo/resources/views/frontend/partials/wishlist.blade.php index 94343f0b..069be243 100644 --- a/desarrollo/resources/views/frontend/partials/wishlist.blade.php +++ b/desarrollo/resources/views/frontend/partials/wishlist.blade.php @@ -1,13 +1,3 @@ - - - - - - - - - @if(Auth::check() && count(Auth::user()->wishlists)>0) - {{ count(Auth::user()->wishlists)}} - @endif - - +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9c25611983800d359b6d9d3a3c55905b4b42408be997b2336c8b5b27f8962c +size 1197 diff --git a/desarrollo/resources/views/frontend/partials/withdraw_message_modal.blade.php b/desarrollo/resources/views/frontend/partials/withdraw_message_modal.blade.php index c08bc0b3..6a4c0604 100644 --- a/desarrollo/resources/views/frontend/partials/withdraw_message_modal.blade.php +++ b/desarrollo/resources/views/frontend/partials/withdraw_message_modal.blade.php @@ -1,19 +1,3 @@ - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:4a615f55a97863a073471b1ac34faeee3f674e8a7a2490b1793cf08ed1e13f6e +size 795 diff --git a/desarrollo/resources/views/frontend/payhere/checkout_form.blade.php b/desarrollo/resources/views/frontend/payhere/checkout_form.blade.php index 54d3b8c7..b4bb346e 100644 --- a/desarrollo/resources/views/frontend/payhere/checkout_form.blade.php +++ b/desarrollo/resources/views/frontend/payhere/checkout_form.blade.php @@ -1,34 +1,3 @@ - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:af5ef8bd01bc5a2ca7a6517413dfe5978b7127fec088006613c50aad1e6229fc +size 1876 diff --git a/desarrollo/resources/views/frontend/payhere/customer_package_form.blade.php b/desarrollo/resources/views/frontend/payhere/customer_package_form.blade.php index 78375e96..4f140910 100644 --- a/desarrollo/resources/views/frontend/payhere/customer_package_form.blade.php +++ b/desarrollo/resources/views/frontend/payhere/customer_package_form.blade.php @@ -1,34 +1,3 @@ - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:718a79c89f2066f7fb35fd699ef4864cb30b3f68d4e0b65ebaa7412cd70672b3 +size 1922 diff --git a/desarrollo/resources/views/frontend/payhere/wallet_form.blade.php b/desarrollo/resources/views/frontend/payhere/wallet_form.blade.php index 4c7f028a..4881dc7a 100644 --- a/desarrollo/resources/views/frontend/payhere/wallet_form.blade.php +++ b/desarrollo/resources/views/frontend/payhere/wallet_form.blade.php @@ -1,34 +1,3 @@ - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:52e360770caf8aeac036bcd04fc7289f55d10901c49a9be279bd4ae9a43af7e6 +size 1841 diff --git a/desarrollo/resources/views/frontend/payment/bkash_app.blade.php b/desarrollo/resources/views/frontend/payment/bkash_app.blade.php index 09eef8cc..0a92e4b4 100644 --- a/desarrollo/resources/views/frontend/payment/bkash_app.blade.php +++ b/desarrollo/resources/views/frontend/payment/bkash_app.blade.php @@ -1,99 +1,3 @@ - - - - - - - - - - - -
-
-
- -
-
-
- - - - - @if (get_setting('bkash_sandbox') == 1) - - @else - - @endif - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:21ad24d75d7fbd7c8b66c44ac71e399c927706a742a450bcc6b225d54ffa37dc +size 3590 diff --git a/desarrollo/resources/views/frontend/payment/mercadopago.blade.php b/desarrollo/resources/views/frontend/payment/mercadopago.blade.php index 44d80eff..d47480db 100644 --- a/desarrollo/resources/views/frontend/payment/mercadopago.blade.php +++ b/desarrollo/resources/views/frontend/payment/mercadopago.blade.php @@ -1,91 +1,3 @@ -@php - -require base_path('/vendor/autoload.php'); - -MercadoPago\SDK::setAccessToken(config('mercadopago.access')); - -$preference = new MercadoPago\Preference(); - - $payer = new MercadoPago\Payer(); - $payer->name = $first_name; - $payer->email = $email; - $payer->phone = array( - "area_code" => "", - "number" => $phone - ); - -// Crea un ítem en la preferencia - -$item = new MercadoPago\Item(); -$item->title = $billname; -$item->quantity = 1; -$item->unit_price = $amount; -$preference->payer = $payer; -$preference->items = array($item); - -$preference->back_urls = array( - "success" => $success_url, - "failure" => $fail_url, - "pending" => $fail_url -); - -$preference->save(); - -@endphp - - - - Mercadopago Payment - - - - - - -
-
- - - +version https://git-lfs.github.com/spec/v1 +oid sha256:543077a723e293a9434eb76907f60dde321f6c68b028d4652861514b26ab9b8a +size 2121 diff --git a/desarrollo/resources/views/frontend/payment/stripe.blade.php b/desarrollo/resources/views/frontend/payment/stripe.blade.php index b2606dd6..0ab5ac92 100644 --- a/desarrollo/resources/views/frontend/payment/stripe.blade.php +++ b/desarrollo/resources/views/frontend/payment/stripe.blade.php @@ -1,86 +1,3 @@ - - - - Stripe Payment - - - - - - - -
-
-
-

Don't close the tab. The payment is being processed . . .

- - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:dc48540984b1761b473469258b6a3310438e7f9a11054155a1e1bcf2e27f6820 +size 2685 diff --git a/desarrollo/resources/views/frontend/payment/stripe_app.blade.php b/desarrollo/resources/views/frontend/payment/stripe_app.blade.php index 9998a97e..1a0dcaf0 100644 --- a/desarrollo/resources/views/frontend/payment/stripe_app.blade.php +++ b/desarrollo/resources/views/frontend/payment/stripe_app.blade.php @@ -1,90 +1,3 @@ - - - Stripe Payment - - - - - - -
-
-
-

Don't close the tab. The payment is being processed . . .

- - - +version https://git-lfs.github.com/spec/v1 +oid sha256:7f4225cfc584271973b19c641df2633da59b9c74136b775d42fabacdd9eb1516 +size 2899 diff --git a/desarrollo/resources/views/frontend/payment_select.blade.php b/desarrollo/resources/views/frontend/payment_select.blade.php index 994a8f29..63f1514f 100644 --- a/desarrollo/resources/views/frontend/payment_select.blade.php +++ b/desarrollo/resources/views/frontend/payment_select.blade.php @@ -1,726 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - - -
-
-
-
-
-
-
- -

{{ translate('1. My Cart') }}

-
-
-
-
- -

{{ translate('2. Shipping info') }} -

-
-
-
-
- -

{{ translate('3. Delivery info') }} -

-
-
-
-
- -

{{ translate('4. Payment') }}

-
-
-
-
- -

{{ translate('5. Confirmation') }} -

-
-
-
-
-
-
-
- - -
-
-
-
-
- @csrf - - -
- -
-

- {{ translate('Any additional info?') }} -

-
-
- -
- -
-

- {{ translate('Select a payment option') }} -

-
- -
-
- - @if (get_setting('paypal_payment') == 1) -
- -
- @endif - - @if (get_setting('stripe_payment') == 1) -
- -
- @endif - - @if (get_setting('mercadopago_payment') == 1) -
- -
- @endif - - @if (get_setting('sslcommerz_payment') == 1) -
- -
- @endif - - @if (get_setting('instamojo_payment') == 1) -
- -
- @endif - - @if (get_setting('razorpay') == 1) -
- -
- @endif - - @if (get_setting('paystack') == 1) -
- -
- @endif - - @if (get_setting('voguepay') == 1) -
- -
- @endif - - @if (get_setting('payhere') == 1) -
- -
- @endif - - @if (get_setting('ngenius') == 1) -
- -
- @endif - - @if (get_setting('iyzico') == 1) -
- -
- @endif - - @if (get_setting('nagad') == 1) -
- -
- @endif - - @if (get_setting('bkash') == 1) -
- -
- @endif - - @if (get_setting('aamarpay') == 1) -
- -
- @endif - - @if (get_setting('authorizenet') == 1) -
- -
- @endif - - @if (get_setting('payku') == 1) -
- -
- @endif - - @if (addon_is_activated('african_pg')) - - @if (get_setting('flutterwave') == 1) -
- -
- @endif - - @if (get_setting('payfast') == 1) -
- -
- @endif - @endif - - @if (addon_is_activated('paytm') && get_setting('paytm_payment') == 1) -
- -
- @endif - - @if (addon_is_activated('paytm') && get_setting('toyyibpay_payment') == 1) -
- -
- @endif - - @if (addon_is_activated('paytm') && get_setting('myfatoorah') == 1) -
- -
- @endif - - @if (addon_is_activated('paytm') && get_setting('khalti_payment') == 1) -
- -
- @endif - - @if (get_setting('cash_payment') == 1) - @php - $digital = 0; - $cod_on = 1; - foreach ($carts as $cartItem) { - $product = \App\Models\Product::find($cartItem['product_id']); - if ($product['digital'] == 1) { - $digital = 1; - } - if ($product['cash_on_delivery'] == 0) { - $cod_on = 0; - } - } - @endphp - @if ($digital != 1 && $cod_on == 1) -
- -
- @endif - @endif - @if (Auth::check()) - - @if (addon_is_activated('offline_payment')) - @foreach (\App\Models\ManualPaymentMethod::all() as $method) -
- -
- @endforeach - - @foreach (\App\Models\ManualPaymentMethod::all() as $method) -
- @php echo $method->description @endphp - @if ($method->bank_info != null) -
    - @foreach (json_decode($method->bank_info) as $key => $info) -
  • {{ translate('Bank Name') }} - - {{ $info->bank_name }}, - {{ translate('Account Name') }} - - {{ $info->account_name }}, - {{ translate('Account Number') }} - - {{ $info->account_number }}, - {{ translate('Routing Number') }} - - {{ $info->routing_number }}
  • - @endforeach -
- @endif -
- @endforeach - @endif - @endif -
- - - @if (addon_is_activated('offline_payment')) -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose image') }} -
- -
-
-
-
-
-
- @endif - - - @if (Auth::check() && get_setting('wallet_system') == 1) -
-
- {{ translate('Or, Your wallet balance :') }} - {{ single_price(Auth::user()->balance) }} -
- @if (Auth::user()->balance < $total) - - @else - - @endif -
- @endif -
- - - - -
- - - -
- -
-
-
-
-
- - -
- @include('frontend.partials.cart_summary') -
-
-
-
-@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4ac43c40fbb9a2afe0f831846cab4749e88d46f433614346d38e5c5a6caba9 +size 59582 diff --git a/desarrollo/resources/views/frontend/policies/privacypolicy.blade.php b/desarrollo/resources/views/frontend/policies/privacypolicy.blade.php index 569829b4..9d4393aa 100644 --- a/desarrollo/resources/views/frontend/policies/privacypolicy.blade.php +++ b/desarrollo/resources/views/frontend/policies/privacypolicy.blade.php @@ -1,76 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $page->meta_title }}@stop - -@section('meta_description'){{ $page->meta_description }}@stop - -@section('meta_keywords'){{ $page->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
-

{{ $page->getTranslation('title') }}

-
-
- -
-
-
-
-
-
-
- @php - echo $page->getTranslation('content'); - @endphp -

1. Uso de las Informaciones Recopiladas

-

1.1 Cumplimiento con la Ley 172-13 sobre Protección de Datos Personales:

-

En conformidad con la Ley 172-13 sobre Protección de Datos Personales, requerimos tu información para comprender tus preferencias y necesidades, lo que nos permite ofrecerte un servicio mejorado. Los datos que proporciones como Usuario serán tratados con total confidencialidad y privacidad. Toda la información recolectada se utilizará de acuerdo con esta política de privacidad, y tendrás conocimiento de su uso. Si deseas que eliminemos cualquier información tuya, no dudes en contactarnos, y atenderemos tu solicitud.

- -

1.2 Acceso y Navegación:

-

Puedes explorar nuestros Sitios y navegar sin proporcionar tus datos personales, a menos que desees utilizar nuestros servicios, para lo cual será necesario crear una cuenta y validar tus datos.

- -

1.3 Información Personal:

-

Podemos requerir y almacenar información como nombre, detalles de contacto (teléfono y correo electrónico), datos demográficos y otros detalles relacionados con encuestas de satisfacción, atención al cliente y ofertas. Antes de hacer pública cualquier información (como calificaciones de productos y publicaciones en redes sociales), solicitaremos tu consentimiento y solo procederemos cuando estés de acuerdo.

- -

1.4 Uso de Datos de Cuenta:

-

Los datos necesarios para crear tu cuenta de Usuario se emplearán para brindarte un servicio mejorado, registrar tus acciones en nuestras plataformas, actividades de marketing y comunicaciones de promociones y marcas en nuestra plataforma. En casos de sospecha de información falsa o fraude, tus datos podrán compartirse con la entidad emisora de tarjetas, procesadores de pago o autoridades competentes para verificar la validez de los datos y prevenir fraudes, siguiendo los estándares de la Ley 172-13 sobre Protección de Datos Personales.

- - - -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:3a0742cbc95d0592bb886d43b9d78bd3faabcb4f31455784e595f67fda5aa718 +size 2490 diff --git a/desarrollo/resources/views/frontend/policies/returnpolicy.blade.php b/desarrollo/resources/views/frontend/policies/returnpolicy.blade.php index fc9848c2..ab44c888 100644 --- a/desarrollo/resources/views/frontend/policies/returnpolicy.blade.php +++ b/desarrollo/resources/views/frontend/policies/returnpolicy.blade.php @@ -1,62 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $page->meta_title }}@stop - -@section('meta_description'){{ $page->meta_description }}@stop - -@section('meta_keywords'){{ $page->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') - -
-
-
-
-

{{ $page->getTranslation('title') }}

-
-
- -
-
-
-
-
-
-
- @php - echo $page->getTranslation('content'); - @endphp -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e6a70d20f5937580b6bed2610f320b3108216f88a487e3645ab6d4695e1b8dd5 +size 2490 diff --git a/desarrollo/resources/views/frontend/policies/sellerpolicy.blade.php b/desarrollo/resources/views/frontend/policies/sellerpolicy.blade.php index 4f240e5c..6eb75ab2 100644 --- a/desarrollo/resources/views/frontend/policies/sellerpolicy.blade.php +++ b/desarrollo/resources/views/frontend/policies/sellerpolicy.blade.php @@ -1,62 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $page->meta_title }}@stop - -@section('meta_description'){{ $page->meta_description }}@stop - -@section('meta_keywords'){{ $page->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
-

{{ $page->getTranslation('title') }}

-
-
- -
-
-
-
-
-
-
- @php - echo $page->getTranslation('content'); - @endphp -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:31654127a56b130f7f1a5e3b16ac6e76ecf2af493eb74c1e98bcf7853f86c09b +size 2538 diff --git a/desarrollo/resources/views/frontend/policies/supportpolicy.blade.php b/desarrollo/resources/views/frontend/policies/supportpolicy.blade.php index 6de6f660..2fa77d85 100644 --- a/desarrollo/resources/views/frontend/policies/supportpolicy.blade.php +++ b/desarrollo/resources/views/frontend/policies/supportpolicy.blade.php @@ -1,61 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $page->meta_title }}@stop - -@section('meta_description'){{ $page->meta_description }}@stop - -@section('meta_keywords'){{ $page->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
-

{{ $page->getTranslation('title') }}

-
-
- -
-
-
-
-
-
-
- @php - echo $page->getTranslation('content'); - @endphp -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:79c0ec5db42a19fa437bca509089ad5a36a3f9af65c4ec40ac9f5d8bb3a278e6 +size 2490 diff --git a/desarrollo/resources/views/frontend/policies/terms.blade.php b/desarrollo/resources/views/frontend/policies/terms.blade.php index d56d0cb5..979e3173 100644 --- a/desarrollo/resources/views/frontend/policies/terms.blade.php +++ b/desarrollo/resources/views/frontend/policies/terms.blade.php @@ -1,61 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $page->meta_title }}@stop - -@section('meta_description'){{ $page->meta_description }}@stop - -@section('meta_keywords'){{ $page->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
-

{{ $page->getTranslation('title') }}

-
-
- -
-
-
-
-
-
-
- @php - echo $page->getTranslation('content'); - @endphp -
-
-
-@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:004dc9e4d4d6c1f07f7acad499ffc51dc2e46b0abdc5710b2c8d85467d482535 +size 2494 diff --git a/desarrollo/resources/views/frontend/product_details.blade.php b/desarrollo/resources/views/frontend/product_details.blade.php index 7505dc8e..f5dfc656 100644 --- a/desarrollo/resources/views/frontend/product_details.blade.php +++ b/desarrollo/resources/views/frontend/product_details.blade.php @@ -1,335 +1,3 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $detailedProduct->meta_title }}@stop - -@section('meta_description'){{ $detailedProduct->meta_description }}@stop - -@section('meta_keywords'){{ $detailedProduct->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
- -
- @include('frontend.product_details.image_gallery') -
- - -
- @include('frontend.product_details.details') -
-
-
-
-
- -
-
- @if ($detailedProduct->auction_product) - - @include('frontend.product_details.review_section') - - - @include('frontend.product_details.description') - - - @include('frontend.product_details.product_queries') - @else -
- -
- - @include('frontend.product_details.seller_info') - - -
- @include('frontend.product_details.top_selling_products') -
-
- - -
- - - @include('frontend.product_details.review_section') - - - @include('frontend.product_details.description') - - - @include('frontend.product_details.related_products') - - - @include('frontend.product_details.product_queries') - - -
- @include('frontend.product_details.top_selling_products') -
- -
-
- @endif -
-
- -@endsection - -@section('modal') - - - - - - - - @if($detailedProduct->auction_product == 1) - @php - $highest_bid = $detailedProduct->bids->max('amount'); - $min_bid_amount = $highest_bid != null ? $highest_bid+1 : $detailedProduct->starting_bid; - @endphp - - @endif - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:2c554717a164b7cb99e95af4fda8e8363ca7a07f0c869e43761f189ca306f4f4 +size 15902 diff --git a/desarrollo/resources/views/frontend/product_details/description.blade.php b/desarrollo/resources/views/frontend/product_details/description.blade.php index 839ee83f..779273e4 100644 --- a/desarrollo/resources/views/frontend/product_details/description.blade.php +++ b/desarrollo/resources/views/frontend/product_details/description.blade.php @@ -1,55 +1,3 @@ -
- - - - -
- -
-
-
- getTranslation('description'); ?> -
-
-
- - -
-
-
- @if ($detailedProduct->video_provider == 'youtube' && isset(explode('=', $detailedProduct->video_link)[1])) - - @elseif ($detailedProduct->video_provider == 'dailymotion' && isset(explode('video/', $detailedProduct->video_link)[1])) - - @elseif ($detailedProduct->video_provider == 'vimeo' && isset(explode('vimeo.com/', $detailedProduct->video_link)[1])) - - @endif -
-
-
- - - -
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:36bdfc4b49a39916a9e881c8563191d9e17f51a1a1cb78e6569ee915ac04cb6f +size 2812 diff --git a/desarrollo/resources/views/frontend/product_details/details.blade.php b/desarrollo/resources/views/frontend/product_details/details.blade.php index 3c7420f3..7aab10ae 100644 --- a/desarrollo/resources/views/frontend/product_details/details.blade.php +++ b/desarrollo/resources/views/frontend/product_details/details.blade.php @@ -1,526 +1,3 @@ -
- -

- {{ $detailedProduct->getTranslation('name') }} -

- -
- - @if ($detailedProduct->auction_product != 1) -
- @php - $total = 0; - $total += $detailedProduct->reviews->count(); - @endphp - - {{ renderStarRating($detailedProduct->rating) }} - - ({{ $total }} - {{ translate('reviews') }}) -
- @endif - - @if ($detailedProduct->est_shipping_days) -
- {{ translate('Estimate Shipping Time') }}: - {{ $detailedProduct->est_shipping_days }} {{ translate('Days') }} -
- @endif - - @if ($detailedProduct->digital == 1) -
- {{ translate('In stock')}} -
- @endif -
- - - - - @if ($detailedProduct->brand != null) -
- {{ translate('Brand') }}
- {{ $detailedProduct->brand->name }} -
- @endif - - -
-
- - @if ($detailedProduct->added_by == 'seller' && get_setting('vendor_system_activation') == 1) - {{ translate('Sold by') }} - {{ $detailedProduct->user->shop->name }} - @else -

{{ translate('Inhouse product') }}

- @endif -
- - @if (get_setting('conversation_system') == 1) -
- -
- @endif -
- -
- - - @if ($detailedProduct->auction_product) -
-
-
{{ translate('Auction Will End')}}
-
-
- @if($detailedProduct->auction_end_date > strtotime("now")) -
- @else -

{{ translate('Ended')}}

- @endif - -
-
- -
-
-
{{ translate('Starting Bid')}}
-
-
- - {{ single_price($detailedProduct->starting_bid) }} - - @if($detailedProduct->unit != null) - /{{ $detailedProduct->getTranslation('unit') }} - @endif -
-
- - @if(Auth::check() && Auth::user()->product_bids->where('product_id',$detailedProduct->id)->first() != null) -
-
-
{{ translate('My Bidded Amount')}}
-
-
- - {{ single_price(Auth::user()->product_bids->where('product_id',$detailedProduct->id)->first()->amount) }} - -
-
-
- @endif - - @php $highest_bid = $detailedProduct->bids->max('amount'); @endphp -
-
-
{{ translate('Highest Bid')}}
-
-
- - @if($highest_bid != null) - {{ single_price($highest_bid) }} - @endif - -
-
- @else - - @if ($detailedProduct->wholesale_product == 1) - - - - - - - - - - - @foreach ($detailedProduct->stocks->first()->wholesalePrices as $wholesalePrice) - - - - - - @endforeach - -
{{ translate('Min Qty') }}{{ translate('Max Qty') }}{{ translate('Unit Price') }}
{{ $wholesalePrice->min_qty }}{{ $wholesalePrice->max_qty }}{{ single_price($wholesalePrice->price) }}
- @else - - @if (home_price($detailedProduct) != home_discounted_price($detailedProduct)) -
-
-
{{ translate('Price')}}
-
-
-
- - - {{ home_discounted_price($detailedProduct) }} - - - - {{ home_price($detailedProduct) }} - - - @if($detailedProduct->unit != null) - /{{ $detailedProduct->getTranslation('unit') }} - @endif - - @if(discount_in_percentage($detailedProduct) > 0) - -{{discount_in_percentage($detailedProduct)}}% - @endif - - @if (addon_is_activated('club_point') && $detailedProduct->earn_point > 0) -
- - - - - - - - - - - {{ translate('Club Point') }}: {{ $detailedProduct->earn_point }} -
- @endif -
-
-
- @else -
-
-
{{ translate('Price') }}
-
-
-
- - - {{ home_discounted_price($detailedProduct) }} - - - @if ($detailedProduct->unit != null) - /{{ $detailedProduct->getTranslation('unit') }} - @endif - - @if (addon_is_activated('club_point') && $detailedProduct->earn_point > 0) -
- - - - - - - - - - - {{ translate('Club Point') }}: {{ $detailedProduct->earn_point }} -
- @endif -
-
-
- @endif - @endif - @endif - - @if ($detailedProduct->auction_product != 1) -
- @csrf - - - @if ($detailedProduct->digital == 0) - - @if ($detailedProduct->choice_options != null) - @foreach (json_decode($detailedProduct->choice_options) as $key => $choice) -
-
-
- {{ \App\Models\Attribute::find($choice->attribute_id)->getTranslation('name') }} -
-
-
-
- @foreach ($choice->values as $key => $value) - - @endforeach -
-
-
- @endforeach - @endif - - - @if (count(json_decode($detailedProduct->colors)) > 0) -
-
-
{{ translate('Color')}}
-
-
-
- @foreach (json_decode($detailedProduct->colors) as $key => $color) - - @endforeach -
-
-
- @endif - - -
-
-
{{ translate('Quantity')}}
-
-
-
-
- - - -
- @php - $qty = 0; - foreach ($detailedProduct->stocks as $key => $stock) { - $qty += $stock->qty; - } - @endphp -
- @if($detailedProduct->stock_visibility_state == 'quantity') - ({{ $qty }} {{ translate('available')}}) - @elseif($detailedProduct->stock_visibility_state == 'text' && $qty >= 1) - ({{ translate('In Stock') }}) - @endif -
-
-
-
- - @endif - - -
-
-
{{ translate('Total Price') }}
-
-
-
- - - -
-
-
- -
- @endif - - @if ($detailedProduct->auction_product) - @php - $highest_bid = $detailedProduct->bids->max('amount'); - $min_bid_amount = $highest_bid != null ? $highest_bid+1 : $detailedProduct->starting_bid; - @endphp - @if($detailedProduct->auction_end_date >= strtotime("now")) -
- @if(Auth::check() && $detailedProduct->user_id == Auth::user()->id) - {{ translate('Seller Can Not Place Bid to His Own Product') }} - @else - - @endif -
- @endif - @else - -
- @if ($detailedProduct->digital == 0) - @if ($detailedProduct->external_link != null) - - {{ translate($detailedProduct->external_link_btn) }} - - @else - - - @endif - - @elseif ($detailedProduct->digital == 1) - - - @endif -
- - -
-
- @if (Auth::check() && addon_is_activated('affiliate_system') && (\App\Models\AffiliateOption::where('type', 'product_sharing')->first()->status || \App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first()->status) && Auth::user()->affiliate_user != null && Auth::user()->affiliate_user->status) - @php - if (Auth::check()) { - if (Auth::user()->referral_code == null) { - Auth::user()->referral_code = substr(Auth::user()->id . Str::random(10), 0, 10); - Auth::user()->save(); - } - $referral_code = Auth::user()->referral_code; - $referral_code_url = URL::to('/product') . '/' . $detailedProduct->slug . "?product_referral_code=$referral_code"; - } - @endphp -
- -
- @endif -
-
- - - @php - $refund_sticker = get_setting('refund_sticker'); - @endphp - @if (addon_is_activated('refund_request')) -
-
-
{{ translate('Refund') }}
-
-
- @if ($detailedProduct->refundable == 1) - - @if ($refund_sticker != null) - - @else - - @endif - - {{ translate('View Policy') }} - @else -
{{ translate('Not Applicable') }}
- @endif -
-
- @endif - - - @if ($detailedProduct->digital == 1) - @if ($detailedProduct->added_by == 'seller') -
-
-
{{ translate('Seller Guarantees')}}
-
-
- @if ($detailedProduct->user->shop->verification_status == 1) - {{ translate('Verified seller')}} - @else - {{ translate('Non verified seller')}} - @endif -
-
- @endif - @endif - @endif - - -
-
-
{{ translate('Share') }}
-
-
-
-
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5a78b64d1cb489243a456e9369b33ecdfe3c599a4ea6e65d9547612ede929c +size 33827 diff --git a/desarrollo/resources/views/frontend/product_details/image_gallery.blade.php b/desarrollo/resources/views/frontend/product_details/image_gallery.blade.php index 02422774..a3c38e08 100644 --- a/desarrollo/resources/views/frontend/product_details/image_gallery.blade.php +++ b/desarrollo/resources/views/frontend/product_details/image_gallery.blade.php @@ -1,64 +1,3 @@ -
- @if($detailedProduct->photos != null) - @php - $photos = explode(',', $detailedProduct->photos); - @endphp - -
- -
- -
- -
- - @endif -
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:004f5aec2c47731c45caf10bff140c4c0d76510c0f206c0419f590f0a236d72c +size 3226 diff --git a/desarrollo/resources/views/frontend/product_details/product_queries.blade.php b/desarrollo/resources/views/frontend/product_details/product_queries.blade.php index 378cca74..024a9a88 100644 --- a/desarrollo/resources/views/frontend/product_details/product_queries.blade.php +++ b/desarrollo/resources/views/frontend/product_details/product_queries.blade.php @@ -1,107 +1,3 @@ -@if(get_setting('product_query_activation') == 1) -
-
-

- {{ translate(' Product Queries ') }} ({{ $total_query }}) -

-
- - - @guest -

{{ translate('Login') }} or {{ translate('Register ') }}{{ translate(' to submit your questions to seller') }} -

- @endguest - - - @auth -
- @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- @csrf - -
- - -
- -
-
- - - @php - $own_product_queries = Auth::user()->product_queries->where('product_id',$detailedProduct->id); - @endphp - @if ($own_product_queries->count() > 0) - -
- -
-

- {{ translate('My Questions') }} -

-
- @foreach ($own_product_queries as $product_query) -
-
- - - - - - -
-
{{ strip_tags($product_query->question) }}
- {{ $product_query->user->name }} -
-
-
- - - - - - -
-
- {{ strip_tags($product_query->reply ? $product_query->reply : translate('Seller did not respond yet')) }} -
- - {{ $product_query->product->user->name }} -
-
-
- @endforeach -
- - @endif - @endauth - - -
- @include('frontend.partials.product_query_pagination') -
-
-@endif \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:6fea5d9b1afd19e9139561cdc73eca922c017906bc2b7dce1381e633463513cf +size 7459 diff --git a/desarrollo/resources/views/frontend/product_details/related_products.blade.php b/desarrollo/resources/views/frontend/product_details/related_products.blade.php index ec4cef4a..34404601 100644 --- a/desarrollo/resources/views/frontend/product_details/related_products.blade.php +++ b/desarrollo/resources/views/frontend/product_details/related_products.blade.php @@ -1,43 +1,3 @@ -
-
-

- {{ translate('Related products') }} -

-
-
- -
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:8dfe73241f945b4fe482261b962786b2b66cfa922106ea8cb873fae0558be310 +size 2519 diff --git a/desarrollo/resources/views/frontend/product_details/review_section.blade.php b/desarrollo/resources/views/frontend/product_details/review_section.blade.php index 57560b79..bc994c18 100644 --- a/desarrollo/resources/views/frontend/product_details/review_section.blade.php +++ b/desarrollo/resources/views/frontend/product_details/review_section.blade.php @@ -1,41 +1,3 @@ -
-
-

- {{ translate('Reviews & Ratings') }} -

-
- -
-
-
-
-
-
- {{ $detailedProduct->rating }} - {{ translate('out of 5.0') }} -
-
- @php - $total = 0; - $total += $detailedProduct->reviews->count(); - @endphp - - {{ renderStarRating($detailedProduct->rating) }} - - ({{ $total }} - {{ translate('reviews') }}) -
-
-
- -
-
-
- - @include('frontend.product_details.reviews') -
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:11c57bb83ebbec25f7365f53a7e88637d17d87e0b48781b9a77be8cebb969de4 +size 2035 diff --git a/desarrollo/resources/views/frontend/product_details/reviews.blade.php b/desarrollo/resources/views/frontend/product_details/reviews.blade.php index dfdaacc6..c859185f 100644 --- a/desarrollo/resources/views/frontend/product_details/reviews.blade.php +++ b/desarrollo/resources/views/frontend/product_details/reviews.blade.php @@ -1,74 +1,3 @@ -
-
    - @foreach ($reviews as $key => $review) - @if ($review->user != null) -
  • - - - user->avatar_original != null) data-src="{{ uploaded_asset($review->user->avatar_original) }}" - @else - data-src="{{ static_asset('assets/img/placeholder.jpg') }}" @endif> - -
    - -

    {{ $review->user->name }} -

    - -
    - {{ date('d-m-Y', strtotime($review->created_at)) }} -
    - - - @for ($i = 0; $i < $review->rating; $i++) - - @endfor - @for ($i = 0; $i < 5 - $review->rating; $i++) - - @endfor - - -

    - {{ $review->comment }} -

    - -
    - @if($review->photos != null) - @foreach (explode(',', $review->photos) as $photo) - - - - @endforeach - @endif -
    - - @php - $OrderDetail = \App\Models\OrderDetail::with(['order' => function ($q) use($review) { - $q->where('user_id', $review->user_id); - }])->where('product_id', $review->product_id)->where('delivery_status', 'delivered')->first(); - @endphp - @if ($OrderDetail && $OrderDetail->variation) - {{ translate('Variation :') }} {{ $OrderDetail->variation }} - @endif -
    -
  • - @endif - @endforeach -
- - @if (count($reviews) <= 0) -
- {{ translate('There have been no reviews for this product yet.') }} -
- @endif - - -
- {{ $reviews->links() }} -
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:aeb66d9dbb4f5d00e92b308c77753078e022c6498d458cfc256fd1d484745ad8 +size 3880 diff --git a/desarrollo/resources/views/frontend/product_details/seller_info.blade.php b/desarrollo/resources/views/frontend/product_details/seller_info.blade.php index a1606766..93fcfb71 100644 --- a/desarrollo/resources/views/frontend/product_details/seller_info.blade.php +++ b/desarrollo/resources/views/frontend/product_details/seller_info.blade.php @@ -1,111 +1,3 @@ -@if ($detailedProduct->added_by == 'seller' && $detailedProduct->user->shop != null) -
-
-
{{ translate('Seller') }}
-
- - @if ($detailedProduct->added_by == 'seller' && get_setting('vendor_system_activation') == 1) - - - - @endif - - -
- -
-
- @php - $total = 0; - $total += $detailedProduct->reviews->count(); - @endphp - @if ($total > 0) - {{ renderStarRating($detailedProduct->user->shop->rating) }} - @else - {{ renderStarRating(0) }} - @endif -
-
({{ $total }} - {{ translate('customer reviews') }})
-
- - @if ($detailedProduct->user->shop->facebook || $detailedProduct->user->shop->google || $detailedProduct->user->shop->twitter || $detailedProduct->user->shop->youtube) -
- -
- @endif - - -
-
-@endif \ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:f83f8a1ddfc3a22a8603f65f4c744c8d581d676a7313b3bde676aa7cac89ad49 +size 6799 diff --git a/desarrollo/resources/views/frontend/product_details/top_selling_products.blade.php b/desarrollo/resources/views/frontend/product_details/top_selling_products.blade.php index 12b0f273..5b60a818 100644 --- a/desarrollo/resources/views/frontend/product_details/top_selling_products.blade.php +++ b/desarrollo/resources/views/frontend/product_details/top_selling_products.blade.php @@ -1,46 +1,3 @@ -
-
- {{ translate('Top Selling Products') }} -
-
-
    - @foreach (filter_products(\App\Models\Product::where('user_id', $detailedProduct->user_id) - ->orderBy('num_of_sale', 'desc'))->limit(6)->get() as $key => $top_product) -
  • -
    -
    - - - {{ $top_product->getTranslation('name') }} - -
    -
    - - -
    - - {{ home_discounted_base_price($top_product) }} - - @if(home_price($top_product) != home_discounted_price($top_product)) - - {{ home_price($top_product) }} - - @endif -
    -
    -
    -
  • - @endforeach -
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:f83588235813d8d48fe5c179edc8444420103a83cc4dc98c2018ca2d2f4d85f8 +size 2651 diff --git a/desarrollo/resources/views/frontend/product_listing.blade.php b/desarrollo/resources/views/frontend/product_listing.blade.php index a952e7cb..605efe8e 100644 --- a/desarrollo/resources/views/frontend/product_listing.blade.php +++ b/desarrollo/resources/views/frontend/product_listing.blade.php @@ -1,322 +1,3 @@ -@extends('frontend.layouts.app') - -@if (isset($category_id)) - @php - $meta_title = \App\Models\Category::find($category_id)->meta_title; - $meta_description = \App\Models\Category::find($category_id)->meta_description; - @endphp -@elseif (isset($brand_id)) - @php - $meta_title = \App\Models\Brand::find($brand_id)->meta_title; - $meta_description = \App\Models\Brand::find($brand_id)->meta_description; - @endphp -@else - @php - $meta_title = get_setting('meta_title'); - $meta_description = get_setting('meta_description'); - @endphp -@endif - -@section('meta_title'){{ $meta_title }}@stop -@section('meta_description'){{ $meta_description }}@stop - -@section('meta') - - - - - - - - - - - -@endsection - -@section('content') - -
-
-
-
- - -
- -
- - -
- - - - - -
-
-
-

- @if(isset($category_id)) - {{ \App\Models\Category::find($category_id)->getTranslation('name') }} - @elseif(isset($query)) - {{ translate('Search result for ') }}"{{ $query }}" - @else - {{ translate('All Products') }} - @endif -

- -
-
- -
-
- @if (Route::currentRouteName() != 'products.brand') - - @endif -
-
- -
-
-
- - -
-
- @foreach ($products as $key => $product) -
- @include('frontend.partials.product_box_1',['product' => $product]) -
- @endforeach -
-
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e71b93c227ac22771ab480fecbc649affbf8da388b38b56882b4f08bf1196dc7 +size 21713 diff --git a/desarrollo/resources/views/frontend/razor_wallet/customer_package_payment_Razorpay.blade.php b/desarrollo/resources/views/frontend/razor_wallet/customer_package_payment_Razorpay.blade.php index 5d74ee57..2dcdf116 100644 --- a/desarrollo/resources/views/frontend/razor_wallet/customer_package_payment_Razorpay.blade.php +++ b/desarrollo/resources/views/frontend/razor_wallet/customer_package_payment_Razorpay.blade.php @@ -1,32 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -@php - $customer_package = \App\Models\CustomerPackage::findOrFail(Session::get('payment_data')['customer_package_id']); -@endphp - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:94930944b113a8c84e762c9b8d748bc9734235adee0b3946116ee97bf2356287 +size 1856 diff --git a/desarrollo/resources/views/frontend/razor_wallet/order_payment_Razorpay.blade.php b/desarrollo/resources/views/frontend/razor_wallet/order_payment_Razorpay.blade.php index 3574e88c..da86f8ea 100644 --- a/desarrollo/resources/views/frontend/razor_wallet/order_payment_Razorpay.blade.php +++ b/desarrollo/resources/views/frontend/razor_wallet/order_payment_Razorpay.blade.php @@ -1,30 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad1110d54441c49ef1e2c72c0bec8bd6321cc1108fb7d528b9dbdf4ec94b8be +size 1612 diff --git a/desarrollo/resources/views/frontend/razor_wallet/seller_package_payment_Razorpay.blade.php b/desarrollo/resources/views/frontend/razor_wallet/seller_package_payment_Razorpay.blade.php index eb766e30..def59cba 100644 --- a/desarrollo/resources/views/frontend/razor_wallet/seller_package_payment_Razorpay.blade.php +++ b/desarrollo/resources/views/frontend/razor_wallet/seller_package_payment_Razorpay.blade.php @@ -1,32 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') -@php - $seller_package = \App\Models\SellerPackage::findOrFail(Session::get('payment_data')['seller_package_id']); -@endphp - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:f426b24432617b910875e78c35d00bb598226d78a78aa5c1d7ce803807455884 +size 1716 diff --git a/desarrollo/resources/views/frontend/razor_wallet/wallet_payment_Razorpay.blade.php b/desarrollo/resources/views/frontend/razor_wallet/wallet_payment_Razorpay.blade.php index 6ffc2a50..556ec160 100644 --- a/desarrollo/resources/views/frontend/razor_wallet/wallet_payment_Razorpay.blade.php +++ b/desarrollo/resources/views/frontend/razor_wallet/wallet_payment_Razorpay.blade.php @@ -1,30 +1,3 @@ -@extends('frontend.layouts.app') - -@section('content') - - - -@endsection - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:e752f394fa219f7fcfb9fce2a9370ac9c08aa69d2b5b6f2cccae0ac9aae007d0 +size 1748 diff --git a/desarrollo/resources/views/frontend/razorpay/order_payment.blade.php b/desarrollo/resources/views/frontend/razorpay/order_payment.blade.php index 6d5ac78a..a2b2637a 100644 --- a/desarrollo/resources/views/frontend/razorpay/order_payment.blade.php +++ b/desarrollo/resources/views/frontend/razorpay/order_payment.blade.php @@ -1,41 +1,3 @@ - - - - - - - - - -
-
- - -
-
- - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c365e35973a7db81c082c357469724146a877d39c5902ad41d8cfe30fcdc16 +size 1723 diff --git a/desarrollo/resources/views/frontend/razorpay/wallet_payment.blade.php b/desarrollo/resources/views/frontend/razorpay/wallet_payment.blade.php index 8add02b0..0be4b75b 100644 --- a/desarrollo/resources/views/frontend/razorpay/wallet_payment.blade.php +++ b/desarrollo/resources/views/frontend/razorpay/wallet_payment.blade.php @@ -1,41 +1,3 @@ - - - - - - - - - - -
-
- -
-
- - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:65e2c479e166e49efcf0b9949bbd8a65c945254a4a01c4f84114e57b3312d466 +size 1585 diff --git a/desarrollo/resources/views/frontend/registro-comercio/index.blade.php b/desarrollo/resources/views/frontend/registro-comercio/index.blade.php index 4c51631d..b69d4147 100644 --- a/desarrollo/resources/views/frontend/registro-comercio/index.blade.php +++ b/desarrollo/resources/views/frontend/registro-comercio/index.blade.php @@ -1,549 +1,3 @@ - - - - - - - - - La Pieza.DO | Todo lo que buscas! - - - - - - - - - - - - - - - - - {{-- --}} - - - - - - - -
- - -
-
-
- - - - - - - - - -
- -
image
- -
-
- - - - -
- -

Lo que hace - de La Pieza.DO
- una opción única!

- -

Maneja tu inventario, recibe pagos, factura y vende en linea
de la manera segura y - efectiva.

-
- - -
-
-
-
-
- image -
-
-

Datos Seguros

-

Contamos con los estándares internacionales de seguridad y SSL.

-
-
-
- -
-
-
- image -
-
-

Automatización de Servicios

-

Simple para vender, simple para ganar, Todo automatizado.

-
-
-
- -
-
-
- image -
-
-

Inteligencia Artificial

-

Para conocer el comportamiento de compra de tus clientes y ofrecerles lo - mejor.

-
-
-
- -
-
-
- image -
-
-

Tu inventario en linea

-

Te ayudamos a organizar tu inventario, ponerlo en línea y a vender!.

-
-
-
-
- -
- -
- -
- -
- - - -
- -
- -
-
- - - -
-
- - - -
-
- -
- -
- - - -
- -
image
- -
- -
-
- -
-
-

Diseño moderno
y pensado para ti!

-

- Nuestra misión es que tengas una herramienta que te permita realizar tus ventas de - forma rápida y segura y súper fácil de usar. -

-
-
    -
  • -

    Fácil Acceso

    -

    Solo tienes que poner tu email, teléfono, facebook o instagram, tu contraseña y - ¡listo!.

    -
  • -
  • -

    Sincronice con su sistema en la computadora

    -

    Cuando estés en línea, todo se sincroniza en tu computadora, para que puedas - acceder a tu negocio desde cualquier lugar.

    -
  • -
  • -

    Tu inventario a la mano

    -

    Tenemos la gestión de inventario para ti desde tu móvil o computadora, todo con - un solo clic.

    -
  • -
-
-
-
- -
-
- image -
- -
- image - image - image -
-
-
-
- -
- -
- - - -
- -
image
- -
-
-
- -

Cómo funciona La Pieza.DO en 3 sencillos pasos

- -

Usar La Pieza.DO es súper - fácil, solo sigue estos pasos.

-
-
- -
    - -
  • -
    -

    Descarga la app

    -
    - - - -
    -

    Descarga la App en Google Play o Play Store

    -
    -
    -

    01

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Registrate y crea una cuenta

    - Totalmente Gratis! -

    Inicia sesión en la aplicación o en tu computadora. Una cuenta para todos los - dispositivos.

    -
    -
    -

    02

    -
    -
    - image -
    -
  • - - -
  • -
    -

    Todo listo disfruta la app!

    - Si tienes alguna pregunta visita FAQs. -

    Obten la experiencia más increíble.
    Explora y comparte la app.

    -
    -
    -

    03

    -
    -
    - image -
    -
  • -
-
-
-
- -
- -
- -
image
- -
-
- -

FAQ - Preguntas Frecuentes

- -

Aqui tenemos todas las respuestas a tus preguntas con respecto al uso de La Pieza.DO. Aquí podrás - encontrar respuestas rápidas para que puedas utilizar la aplicación.

-
- -
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem - Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a - galley of type and - scrambled it to make a type specimen book. It has survived not only five cen - turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem - Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a - galley of type and - scrambled it to make a type specimen book. It has survived not only five cen - turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem - Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a - galley of type and - scrambled it to make a type specimen book. It has survived not only five cen - turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-

- -

-
-
-
-

Lorem Ipsum is simply dummy text of the printing and typesetting industry lorem - Ipsum has. been the - industrys standard dummy text ever since the when an unknown printer took a - galley of type and - scrambled it to make a type specimen book. It has survived not only five cen - turies but also the - leap into electronic typesetting, remaining essentially unchanged.

-
-
-
-
-
-
- -
- - -
- -
-
- -
- -
-
-
-

Descargala grátis para Android y Apple

-

Descarga nuestra app y sácale provecho a tu negocio en línea. Registrate y - descubre lo nuevo que tenemos para ti.

-
- -
-
- - -
-
- image - image -
-
-
- -
-
- -
- - - - -
- -
- image -
-
- - - - - -
- -
- - - - - - - - - - - - - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e60653888d9b78961d98b7a93e88c5c75ed69b14bb810aae7c99415d803f7d +size 29834 diff --git a/desarrollo/resources/views/frontend/registro-comercio/js/aos.js b/desarrollo/resources/views/frontend/registro-comercio/js/aos.js index 0ba1c7b6..0446db77 100644 --- a/desarrollo/resources/views/frontend/registro-comercio/js/aos.js +++ b/desarrollo/resources/views/frontend/registro-comercio/js/aos.js @@ -1 +1 @@ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,x),(0,b.default)(w,x.once),w},O=function(){w=(0,h.default)(),j()},_=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},S=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},z=function(e){x=i(x,e),w=(0,h.default)();var t=document.all&&!window.atob;return S(x.disable)||t?_():(document.querySelector("body").setAttribute("data-aos-easing",x.easing),document.querySelector("body").setAttribute("data-aos-duration",x.duration),document.querySelector("body").setAttribute("data-aos-delay",x.delay),"DOMContentLoaded"===x.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?j(!0):"load"===x.startEvent?window.addEventListener(x.startEvent,function(){j(!0)}):document.addEventListener(x.startEvent,function(){j(!0)}),window.addEventListener("resize",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("orientationchange",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,x.once)},x.throttleDelay)),x.disableMutationObserver||(0,d.default)("[data-aos]",O),w)};e.exports={init:z,refresh:j,refreshHard:O}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),_?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,z&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(_=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(f);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return s;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f="Expected a function",s=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),_?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,z&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(_=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==s}function a(e){if("number"==typeof e)return e;if(r(e))return f;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",f=NaN,s="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e,t){var n=window.document,r=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,a=new r(o);i=t,a.observe(n.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}function o(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),n=Array.prototype.slice.call(e.removedNodes),o=t.concat(n).filter(function(e){return e.hasAttribute&&e.hasAttribute("data-aos")}).length;o&&i()})}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){};t.default=n},function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;ne.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])}); \ No newline at end of file +!function (e, t) { "object" == typeof exports && "object" == typeof module ? module.exports = t() : "function" == typeof define && define.amd ? define([], t) : "object" == typeof exports ? exports.AOS = t() : e.AOS = t() }(this, function () { return function (e) { function t(o) { if (n[o]) return n[o].exports; var i = n[o] = { exports: {}, id: o, loaded: !1 }; return e[o].call(i.exports, i, i.exports, t), i.loaded = !0, i.exports } var n = {}; return t.m = e, t.c = n, t.p = "dist/", t(0) }([function (e, t, n) { "use strict"; function o(e) { return e && e.__esModule ? e : { default: e } } var i = Object.assign || function (e) { for (var t = 1; t < arguments.length; t++) { var n = arguments[t]; for (var o in n) Object.prototype.hasOwnProperty.call(n, o) && (e[o] = n[o]) } return e }, r = n(1), a = (o(r), n(6)), u = o(a), c = n(7), f = o(c), s = n(8), d = o(s), l = n(9), p = o(l), m = n(10), b = o(m), v = n(11), y = o(v), g = n(14), h = o(g), w = [], k = !1, x = { offset: 120, delay: 0, easing: "ease", duration: 400, disable: !1, once: !1, startEvent: "DOMContentLoaded", throttleDelay: 99, debounceDelay: 50, disableMutationObserver: !1 }, j = function () { var e = arguments.length > 0 && void 0 !== arguments[0] && arguments[0]; if (e && (k = !0), k) return w = (0, y.default)(w, x), (0, b.default)(w, x.once), w }, O = function () { w = (0, h.default)(), j() }, _ = function () { w.forEach(function (e, t) { e.node.removeAttribute("data-aos"), e.node.removeAttribute("data-aos-easing"), e.node.removeAttribute("data-aos-duration"), e.node.removeAttribute("data-aos-delay") }) }, S = function (e) { return e === !0 || "mobile" === e && p.default.mobile() || "phone" === e && p.default.phone() || "tablet" === e && p.default.tablet() || "function" == typeof e && e() === !0 }, z = function (e) { x = i(x, e), w = (0, h.default)(); var t = document.all && !window.atob; return S(x.disable) || t ? _() : (document.querySelector("body").setAttribute("data-aos-easing", x.easing), document.querySelector("body").setAttribute("data-aos-duration", x.duration), document.querySelector("body").setAttribute("data-aos-delay", x.delay), "DOMContentLoaded" === x.startEvent && ["complete", "interactive"].indexOf(document.readyState) > -1 ? j(!0) : "load" === x.startEvent ? window.addEventListener(x.startEvent, function () { j(!0) }) : document.addEventListener(x.startEvent, function () { j(!0) }), window.addEventListener("resize", (0, f.default)(j, x.debounceDelay, !0)), window.addEventListener("orientationchange", (0, f.default)(j, x.debounceDelay, !0)), window.addEventListener("scroll", (0, u.default)(function () { (0, b.default)(w, x.once) }, x.throttleDelay)), x.disableMutationObserver || (0, d.default)("[data-aos]", O), w) }; e.exports = { init: z, refresh: j, refreshHard: O } }, function (e, t) { }, , , , , function (e, t) { (function (t) { "use strict"; function n(e, t, n) { function o(t) { var n = b, o = v; return b = v = void 0, k = t, g = e.apply(o, n) } function r(e) { return k = e, h = setTimeout(s, t), _ ? o(e) : g } function a(e) { var n = e - w, o = e - k, i = t - n; return S ? j(i, y - o) : i } function c(e) { var n = e - w, o = e - k; return void 0 === w || n >= t || n < 0 || S && o >= y } function s() { var e = O(); return c(e) ? d(e) : void (h = setTimeout(s, a(e))) } function d(e) { return h = void 0, z && b ? o(e) : (b = v = void 0, g) } function l() { void 0 !== h && clearTimeout(h), k = 0, b = w = v = h = void 0 } function p() { return void 0 === h ? g : d(O()) } function m() { var e = O(), n = c(e); if (b = arguments, v = this, w = e, n) { if (void 0 === h) return r(w); if (S) return h = setTimeout(s, t), o(w) } return void 0 === h && (h = setTimeout(s, t)), g } var b, v, y, g, h, w, k = 0, _ = !1, S = !1, z = !0; if ("function" != typeof e) throw new TypeError(f); return t = u(t) || 0, i(n) && (_ = !!n.leading, S = "maxWait" in n, y = S ? x(u(n.maxWait) || 0, t) : y, z = "trailing" in n ? !!n.trailing : z), m.cancel = l, m.flush = p, m } function o(e, t, o) { var r = !0, a = !0; if ("function" != typeof e) throw new TypeError(f); return i(o) && (r = "leading" in o ? !!o.leading : r, a = "trailing" in o ? !!o.trailing : a), n(e, t, { leading: r, maxWait: t, trailing: a }) } function i(e) { var t = "undefined" == typeof e ? "undefined" : c(e); return !!e && ("object" == t || "function" == t) } function r(e) { return !!e && "object" == ("undefined" == typeof e ? "undefined" : c(e)) } function a(e) { return "symbol" == ("undefined" == typeof e ? "undefined" : c(e)) || r(e) && k.call(e) == d } function u(e) { if ("number" == typeof e) return e; if (a(e)) return s; if (i(e)) { var t = "function" == typeof e.valueOf ? e.valueOf() : e; e = i(t) ? t + "" : t } if ("string" != typeof e) return 0 === e ? e : +e; e = e.replace(l, ""); var n = m.test(e); return n || b.test(e) ? v(e.slice(2), n ? 2 : 8) : p.test(e) ? s : +e } var c = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (e) { return typeof e } : function (e) { return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e }, f = "Expected a function", s = NaN, d = "[object Symbol]", l = /^\s+|\s+$/g, p = /^[-+]0x[0-9a-f]+$/i, m = /^0b[01]+$/i, b = /^0o[0-7]+$/i, v = parseInt, y = "object" == ("undefined" == typeof t ? "undefined" : c(t)) && t && t.Object === Object && t, g = "object" == ("undefined" == typeof self ? "undefined" : c(self)) && self && self.Object === Object && self, h = y || g || Function("return this")(), w = Object.prototype, k = w.toString, x = Math.max, j = Math.min, O = function () { return h.Date.now() }; e.exports = o }).call(t, function () { return this }()) }, function (e, t) { (function (t) { "use strict"; function n(e, t, n) { function i(t) { var n = b, o = v; return b = v = void 0, O = t, g = e.apply(o, n) } function r(e) { return O = e, h = setTimeout(s, t), _ ? i(e) : g } function u(e) { var n = e - w, o = e - O, i = t - n; return S ? x(i, y - o) : i } function f(e) { var n = e - w, o = e - O; return void 0 === w || n >= t || n < 0 || S && o >= y } function s() { var e = j(); return f(e) ? d(e) : void (h = setTimeout(s, u(e))) } function d(e) { return h = void 0, z && b ? i(e) : (b = v = void 0, g) } function l() { void 0 !== h && clearTimeout(h), O = 0, b = w = v = h = void 0 } function p() { return void 0 === h ? g : d(j()) } function m() { var e = j(), n = f(e); if (b = arguments, v = this, w = e, n) { if (void 0 === h) return r(w); if (S) return h = setTimeout(s, t), i(w) } return void 0 === h && (h = setTimeout(s, t)), g } var b, v, y, g, h, w, O = 0, _ = !1, S = !1, z = !0; if ("function" != typeof e) throw new TypeError(c); return t = a(t) || 0, o(n) && (_ = !!n.leading, S = "maxWait" in n, y = S ? k(a(n.maxWait) || 0, t) : y, z = "trailing" in n ? !!n.trailing : z), m.cancel = l, m.flush = p, m } function o(e) { var t = "undefined" == typeof e ? "undefined" : u(e); return !!e && ("object" == t || "function" == t) } function i(e) { return !!e && "object" == ("undefined" == typeof e ? "undefined" : u(e)) } function r(e) { return "symbol" == ("undefined" == typeof e ? "undefined" : u(e)) || i(e) && w.call(e) == s } function a(e) { if ("number" == typeof e) return e; if (r(e)) return f; if (o(e)) { var t = "function" == typeof e.valueOf ? e.valueOf() : e; e = o(t) ? t + "" : t } if ("string" != typeof e) return 0 === e ? e : +e; e = e.replace(d, ""); var n = p.test(e); return n || m.test(e) ? b(e.slice(2), n ? 2 : 8) : l.test(e) ? f : +e } var u = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (e) { return typeof e } : function (e) { return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e }, c = "Expected a function", f = NaN, s = "[object Symbol]", d = /^\s+|\s+$/g, l = /^[-+]0x[0-9a-f]+$/i, p = /^0b[01]+$/i, m = /^0o[0-7]+$/i, b = parseInt, v = "object" == ("undefined" == typeof t ? "undefined" : u(t)) && t && t.Object === Object && t, y = "object" == ("undefined" == typeof self ? "undefined" : u(self)) && self && self.Object === Object && self, g = v || y || Function("return this")(), h = Object.prototype, w = h.toString, k = Math.max, x = Math.min, j = function () { return g.Date.now() }; e.exports = n }).call(t, function () { return this }()) }, function (e, t) { "use strict"; function n(e, t) { var n = window.document, r = window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver, a = new r(o); i = t, a.observe(n.documentElement, { childList: !0, subtree: !0, removedNodes: !0 }) } function o(e) { e && e.forEach(function (e) { var t = Array.prototype.slice.call(e.addedNodes), n = Array.prototype.slice.call(e.removedNodes), o = t.concat(n).filter(function (e) { return e.hasAttribute && e.hasAttribute("data-aos") }).length; o && i() }) } Object.defineProperty(t, "__esModule", { value: !0 }); var i = function () { }; t.default = n }, function (e, t) { "use strict"; function n(e, t) { if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function") } function o() { return navigator.userAgent || navigator.vendor || window.opera || "" } Object.defineProperty(t, "__esModule", { value: !0 }); var i = function () { function e(e, t) { for (var n = 0; n < t.length; n++) { var o = t[n]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, o.key, o) } } return function (t, n, o) { return n && e(t.prototype, n), o && e(t, o), t } }(), r = /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i, a = /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i, u = /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i, c = /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i, f = function () { function e() { n(this, e) } return i(e, [{ key: "phone", value: function () { var e = o(); return !(!r.test(e) && !a.test(e.substr(0, 4))) } }, { key: "mobile", value: function () { var e = o(); return !(!u.test(e) && !c.test(e.substr(0, 4))) } }, { key: "tablet", value: function () { return this.mobile() && !this.phone() } }]), e }(); t.default = new f }, function (e, t) { "use strict"; Object.defineProperty(t, "__esModule", { value: !0 }); var n = function (e, t, n) { var o = e.node.getAttribute("data-aos-once"); t > e.position ? e.node.classList.add("aos-animate") : "undefined" != typeof o && ("false" === o || !n && "true" !== o) && e.node.classList.remove("aos-animate") }, o = function (e, t) { var o = window.pageYOffset, i = window.innerHeight; e.forEach(function (e, r) { n(e, i + o, t) }) }; t.default = o }, function (e, t, n) { "use strict"; function o(e) { return e && e.__esModule ? e : { default: e } } Object.defineProperty(t, "__esModule", { value: !0 }); var i = n(12), r = o(i), a = function (e, t) { return e.forEach(function (e, n) { e.node.classList.add("aos-init"), e.position = (0, r.default)(e.node, t.offset) }), e }; t.default = a }, function (e, t, n) { "use strict"; function o(e) { return e && e.__esModule ? e : { default: e } } Object.defineProperty(t, "__esModule", { value: !0 }); var i = n(13), r = o(i), a = function (e, t) { var n = 0, o = 0, i = window.innerHeight, a = { offset: e.getAttribute("data-aos-offset"), anchor: e.getAttribute("data-aos-anchor"), anchorPlacement: e.getAttribute("data-aos-anchor-placement") }; switch (a.offset && !isNaN(a.offset) && (o = parseInt(a.offset)), a.anchor && document.querySelectorAll(a.anchor) && (e = document.querySelectorAll(a.anchor)[0]), n = (0, r.default)(e).top, a.anchorPlacement) { case "top-bottom": break; case "center-bottom": n += e.offsetHeight / 2; break; case "bottom-bottom": n += e.offsetHeight; break; case "top-center": n += i / 2; break; case "bottom-center": n += i / 2 + e.offsetHeight; break; case "center-center": n += i / 2 + e.offsetHeight / 2; break; case "top-top": n += i; break; case "bottom-top": n += e.offsetHeight + i; break; case "center-top": n += e.offsetHeight / 2 + i }return a.anchorPlacement || a.offset || isNaN(t) || (o = t), n + o }; t.default = a }, function (e, t) { "use strict"; Object.defineProperty(t, "__esModule", { value: !0 }); var n = function (e) { for (var t = 0, n = 0; e && !isNaN(e.offsetLeft) && !isNaN(e.offsetTop);)t += e.offsetLeft - ("BODY" != e.tagName ? e.scrollLeft : 0), n += e.offsetTop - ("BODY" != e.tagName ? e.scrollTop : 0), e = e.offsetParent; return { top: n, left: t } }; t.default = n }, function (e, t) { "use strict"; Object.defineProperty(t, "__esModule", { value: !0 }); var n = function (e) { return e = e || document.querySelectorAll("[data-aos]"), Array.prototype.map.call(e, function (e) { return { node: e } }) }; t.default = n }]) }); \ No newline at end of file diff --git a/desarrollo/resources/views/frontend/registro-comercio/views/account-type.blade.php b/desarrollo/resources/views/frontend/registro-comercio/views/account-type.blade.php index 4654a4a9..e08c14d9 100644 --- a/desarrollo/resources/views/frontend/registro-comercio/views/account-type.blade.php +++ b/desarrollo/resources/views/frontend/registro-comercio/views/account-type.blade.php @@ -1,130 +1,3 @@ - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-

Vamos! Únete a nuestra plataforma

-

Selecciona el tipo de cuenta

- -
-
-
-
-
- -
- - - - - - - - - - - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d7d56d8d27e285a2f26ecb0ede1956ce5b2dba981a3a61f0d5d2806c9e6b20 +size 6986 diff --git a/desarrollo/resources/views/frontend/registro-comercio/views/assets/css/theme-1.css b/desarrollo/resources/views/frontend/registro-comercio/views/assets/css/theme-1.css index 7d5bce8a..6d6400f7 100644 --- a/desarrollo/resources/views/frontend/registro-comercio/views/assets/css/theme-1.css +++ b/desarrollo/resources/views/frontend/registro-comercio/views/assets/css/theme-1.css @@ -209,6 +209,14 @@ left: 100px; z-index: 10; } + +.loguito{ + display: block; + width: 45% !important; + margin-left: 16% !important; + margin-top: 20% !important; +} + .light-logo{ display: block; } @@ -216,6 +224,10 @@ display: none; } +.ugf-sidebar-bg-lapieza { + background-color: #003b73; +} + .ugf-sidebar-bg { background: url(../images/bg/sidebar-bg.jpg) no-repeat center bottom; background-size: cover; @@ -343,6 +355,7 @@ font-weight: 400; font-family: "Roboto", sans-serif; margin-top: 20px; + margin-bottom: 1%; } .ugf-content form { margin-top: 40px; @@ -586,7 +599,7 @@ font-weight: 700; color: #1c2437; font-family: "Roboto", sans-serif; - text-transform: uppercase; + /* text-transform: uppercase; */ } .ugf-content form .form-group .form-control { height: 60px; @@ -875,13 +888,16 @@ line-height: 60px; } - @media all and (max-width: 1600px) { .logo { top: 50px; left: 60px; } + .dark-logo{ + display: none; + } + .alternet-access { right: 60px; } @@ -902,21 +918,24 @@ } .ugf-content.pt270 { - padding-top: 120px; + padding-top: 180px; } .ugf-content.pt340 { padding-top: 250px; } } @media all and (max-width: 991px) { - .light-logo{ + .loguito{ display: none; } .dark-logo{ display: block; + width: 55%; + margin-left: 14%; } .ugf-wrapper .ugf-content-block { min-height: auto; + text-align: center; } .ugf-wrapper .ugf-content-block .logo { width: 690px; @@ -950,6 +969,7 @@ } .ugf-wrapper .ugf-sidebar.sidebar-steps { padding-bottom: 100px; + height: 41%; } .ugf-wrapper .ugf-sidebar.sidebar-steps .steps { max-width: 690px; @@ -968,8 +988,11 @@ margin-bottom: 100px; } - .ugf-content.pt270 { - padding-top: 120px; + .ugf-content .account-category .account-type { + height: 230px; + -webkit-box-flex: 0; + -ms-flex: 0 0 230px; + flex: 0 0 355px !important; } } @media all and (max-width: 767px) { @@ -982,6 +1005,7 @@ } .ugf-wrapper .ugf-content-block .ugf-content { padding: 200px 0 0; + text-align: center; } .ugf-wrapper .ugf-content-block .alternet-access { width: calc(100% - 30px); @@ -995,7 +1019,7 @@ width: 100%; min-height: auto; display: block; - padding: 100px 0 40px; + padding: 72px 0 40px; } .ugf-wrapper .ugf-sidebar.sidebar-steps .steps { max-width: calc(100% - 30px); @@ -1028,6 +1052,9 @@ height: 55px; margin-left: 20px; } + .loguito{ + display: none; + } } @media all and (max-width: 539px) { .ugf-content form.form-flex { @@ -1076,6 +1103,9 @@ .final-content h2 { font-size: 3.2rem; } + .loguito{ + display: none; + } } @media all and (max-width: 469px) { .ugf-content form.email-verification-form { @@ -1085,4 +1115,7 @@ margin-bottom: 25px; margin-left: 0; } + .loguito{ + display: none; + } } \ No newline at end of file diff --git a/desarrollo/diseno/registro-comercio/registro-form/assets/css/theme-1.css b/desarrollo/resources/views/frontend/registro-comercio/views/assets/css/theme-2.css similarity index 95% rename from desarrollo/diseno/registro-comercio/registro-form/assets/css/theme-1.css rename to desarrollo/resources/views/frontend/registro-comercio/views/assets/css/theme-2.css index c8c8edf7..4651bfbe 100644 --- a/desarrollo/diseno/registro-comercio/registro-form/assets/css/theme-1.css +++ b/desarrollo/resources/views/frontend/registro-comercio/views/assets/css/theme-2.css @@ -209,6 +209,14 @@ left: 100px; z-index: 10; } + +.loguito{ + display: block; + width: 45% !important; + margin-left: 16% !important; + margin-top: 20% !important; +} + .light-logo{ display: block; } @@ -216,6 +224,10 @@ display: none; } +.ugf-sidebar-bg-lapieza { + background-color: #003b73; +} + .ugf-sidebar-bg { background: url(../images/bg/sidebar-bg.jpg) no-repeat center bottom; background-size: cover; @@ -343,6 +355,7 @@ font-weight: 400; font-family: "Roboto", sans-serif; margin-top: 20px; + margin-bottom: 1%; } .ugf-content form { margin-top: 40px; @@ -586,7 +599,8 @@ font-weight: 700; color: #1c2437; font-family: "Roboto", sans-serif; - text-transform: uppercase; + text-align: left; + /* text-transform: uppercase; */ } .ugf-content form .form-group .form-control { height: 60px; @@ -876,11 +890,24 @@ } @media all and (max-width: 1600px) { + + .map_canvas{ + height: 350px; + width: 500px; + margin: 0.6em; + position: relative; + overflow: hidden; + } + .logo { top: 50px; left: 60px; } + .dark-logo{ + display: none; + } + .alternet-access { right: 60px; } @@ -908,14 +935,26 @@ } } @media all and (max-width: 991px) { - .light-logo{ + +.map_canvas{ + height: 354px !important; + width: 314px !important; + margin-top: 0.8em !important; + position: relative !important; + overflow: hidden !important; + } + + .loguito{ display: none; } .dark-logo{ display: block; + width: 55%; + margin-left: 19%; } .ugf-wrapper .ugf-content-block { min-height: auto; + text-align: center; } .ugf-wrapper .ugf-content-block .logo { width: 690px; @@ -949,6 +988,7 @@ } .ugf-wrapper .ugf-sidebar.sidebar-steps { padding-bottom: 100px; + height: 41%; } .ugf-wrapper .ugf-sidebar.sidebar-steps .steps { max-width: 690px; @@ -966,6 +1006,13 @@ .resend-code { margin-bottom: 100px; } + + .ugf-content .account-category .account-type { + height: 230px; + -webkit-box-flex: 0; + -ms-flex: 0 0 230px; + flex: 0 0 355px !important; + } } @media all and (max-width: 767px) { .ugf-wrapper .ugf-content-block .logo { @@ -976,7 +1023,8 @@ transform: translateX(-50%); } .ugf-wrapper .ugf-content-block .ugf-content { - padding: 200px 0 0; + padding: 140px 0 0; + text-align: center; } .ugf-wrapper .ugf-content-block .alternet-access { width: calc(100% - 30px); @@ -990,7 +1038,7 @@ width: 100%; min-height: auto; display: block; - padding: 100px 0 40px; + padding: 72px 0 40px; } .ugf-wrapper .ugf-sidebar.sidebar-steps .steps { max-width: calc(100% - 30px); @@ -1023,6 +1071,9 @@ height: 55px; margin-left: 20px; } + .loguito{ + display: none; + } } @media all and (max-width: 539px) { .ugf-content form.form-flex { @@ -1071,6 +1122,9 @@ .final-content h2 { font-size: 3.2rem; } + .loguito{ + display: none; + } } @media all and (max-width: 469px) { .ugf-content form.email-verification-form { @@ -1080,4 +1134,7 @@ margin-bottom: 25px; margin-left: 0; } + .loguito{ + display: none; + } } \ No newline at end of file diff --git a/desarrollo/resources/views/frontend/registro-comercio/views/business/business_complete.blade.php b/desarrollo/resources/views/frontend/registro-comercio/views/business/business_complete.blade.php index e6bb14b1..99374672 100644 --- a/desarrollo/resources/views/frontend/registro-comercio/views/business/business_complete.blade.php +++ b/desarrollo/resources/views/frontend/registro-comercio/views/business/business_complete.blade.php @@ -1,141 +1,3 @@ - - - - - - - - - - La Pieza.DO | Registro - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
- -

Bienvenido

-

¡Gracias por registrarte! Para poder completar tu registro,
necesitamos que agregues los siguientes campos de negocio:

- - -
-
-
-
-
- -
- {{-- --}} -
- - - - - - {{-- --}} - - - - - - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:95dae8cd624c4edf9bd23fd6e086d8e0f07a70a0eb66f9887f8219ba69c3ad96 +size 7634 diff --git a/desarrollo/resources/views/frontend/registro-comercio/views/business/index.blade copy.php b/desarrollo/resources/views/frontend/registro-comercio/views/business/index.blade copy.php index 50b9bbda..03e39772 100644 --- a/desarrollo/resources/views/frontend/registro-comercio/views/business/index.blade copy.php +++ b/desarrollo/resources/views/frontend/registro-comercio/views/business/index.blade copy.php @@ -26,7 +26,7 @@ + href="{{ static_asset('assets/registrocomercio/registro-form/assets/css/theme-2.css') }}"> @@ -164,6 +164,8 @@ } + + @@ -172,20 +174,16 @@
-
- Volver Atrás -

Vamos! Únete a nuestra plataforma

+
+ Volver Atrás +

Vamos!Únete a nuestra plataforma

Puedes registrarte llegando los siguientes pasos o a traves de una red social

- - - - +
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:58a115c5ddab1e697dcbf105ee167cf01b0ed8738b4f8d2232a31bbb010a2b6d +size 40523 diff --git a/desarrollo/resources/views/wholesale/frontend/seller_products/index.blade.php b/desarrollo/resources/views/wholesale/frontend/seller_products/index.blade.php index 8265921e..caa7800e 100644 --- a/desarrollo/resources/views/wholesale/frontend/seller_products/index.blade.php +++ b/desarrollo/resources/views/wholesale/frontend/seller_products/index.blade.php @@ -1,220 +1,3 @@ -@extends('seller.layouts.app') -@section('panel_content') - -
- @if (addon_is_activated('seller_subscription')) -
-
- - - -
-
{{ optional(Auth::user()->shop->seller_package)->product_upload_limit - Auth::user()->products()->count() }}
-
{{ translate('Remaining Uploads') }}
-
-
-
- @endif - - - - @if (addon_is_activated('seller_subscription')) - @php - $seller_package = \App\Models\SellerPackage::find(Auth::user()->shop->seller_package_id); - @endphp - - @endif - -
- -
-
-
-
-
{{ translate('All Wholesale Product') }}
-
-
- -
-
-
- -
-
-
- -
- - - - - - - - @if(get_setting('product_approve_by_admin')) - - @endif - - - - - - - @foreach($products as $key => $product) - - - - - - @if(get_setting('product_approve_by_admin') == 1) - - @endif - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Info')}}{{translate('Total Stock')}}{{translate('Approved')}}{{translate('Published')}}{{translate('Featured')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
- {{translate('Num of Sale')}}: {{ $product->num_of_sale }} {{translate('times')}}
- {{translate('Base Price')}}: {{ single_price($product->unit_price) }}
- {{translate('Rating')}}: {{ $product->rating }}
-
- @php - $qty = 0; - if($product->variant_product) { - foreach ($product->stocks as $key => $stock) { - $qty += $stock->qty; - echo $stock->variant.' - '.$stock->qty.'
'; - } - } - else { - $qty = optional($product->stocks->first())->qty; - echo $qty; - } - @endphp - @if($qty <= $product->low_stock_quantity) - Low - @endif -
- @if ($product->approved == 1) - {{ translate('Approved')}} - @else - {{ translate('Pending')}} - @endif - - - - - - - - - - - - - - -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:7d1d6195668607eba2bddcac32b89780ccce81b296971f42a38a176336247b08 +size 11755 diff --git a/desarrollo/resources/views/wholesale/products/create.blade.php b/desarrollo/resources/views/wholesale/products/create.blade.php index 168f43f7..b86a22ea 100644 --- a/desarrollo/resources/views/wholesale/products/create.blade.php +++ b/desarrollo/resources/views/wholesale/products/create.blade.php @@ -1,649 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{translate('Add New Wholesale Product')}}
-
-
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
-
-
- @csrf - -
-
-
{{translate('Product Information')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{translate('This is used for search. Input those words by which cutomer can find this product.')}} -
-
- - @if (addon_is_activated('pos_system')) -
- -
- -
-
- @endif - - @if (addon_is_activated('refund_request')) -
- -
- -
-
- @endif -
-
-
-
-
{{translate('Product Images')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('These images are visible in product details page gallery. Use 600x600 sizes images.')}} -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.')}} -
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- - {{translate("Use proper link without extra parameter. Don't use short share link/embeded iframe code.")}} -
-
-
-
-
-
-
{{translate('Product price + stock')}}
-
-
-
- -
- -
-
- - @if(addon_is_activated('club_point')) -
- -
- -
-
- @endif - -
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
-
-
-
-
-
- -
-
-
-
- -
-
-
- -
-
' - data-target=".qunatity-price"> - {{ translate('Add More') }} - -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
- -
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Low Stock Quantity Warning')}}
-
-
-
- - -
-
-
- -
-
-
- {{translate('Stock Visibility State')}} -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
- -
- -
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Featured')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Todays Deal')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Flash Deal')}}
-
-
-
- - -
- -
- - -
-
- - -
-
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
- -
-
- -
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:859dcade244be909f0ecefb2d6f18d4408d7745fe72fac6fffb14796a1788f53 +size 36626 diff --git a/desarrollo/resources/views/wholesale/products/edit.blade.php b/desarrollo/resources/views/wholesale/products/edit.blade.php index 53b4ff33..51ec1969 100644 --- a/desarrollo/resources/views/wholesale/products/edit.blade.php +++ b/desarrollo/resources/views/wholesale/products/edit.blade.php @@ -1,686 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') -
-

{{ translate('Edit Product') }}

-
-
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
-
-
- - - - @csrf -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- - @if (addon_is_activated('pos_system')) -
- -
- -
-
- @endif - - @if (addon_is_activated('refund_request')) -
- -
- - -
-
- @endif -
-
-
-
-
{{translate('Product Images')}}
-
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
-
-
-
-
{{translate('Product price + stock')}}
-
-
-
- -
- -
-
- - @if(addon_is_activated('club_point')) -
- -
- -
-
- @endif - -
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- @foreach ($product->stocks->first()->wholesalePrices as $wholesalePrice) -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
- @endforeach -
-
-
-
-
- -
-
-
-
- -
-
-
- -
-
' - data-target=".qunatity-price"> - {{ translate('Add More') }} - -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
-
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Low Stock Quantity Warning')}}
-
-
-
- - -
-
-
- -
-
-
- {{translate('Stock Visibility State')}} -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
-
-
- -
- -
-
-
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
-
-
-
{{translate('Featured')}}
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
{{translate('Todays Deal')}}
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
{{translate('Flash Deal')}}
-
-
-
- - -
- -
- - -
-
- - -
-
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - - @php - $tax_amount = 0; - $tax_type = ''; - foreach($tax->product_taxes as $row) { - if($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
-
- -
-
-
- -
- -@endsection - -@section('script') - - - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:69a372f5413341f56cbf97ba955f833bcf7e1d158575978851c8404357fc5727 +size 40516 diff --git a/desarrollo/resources/views/wholesale/products/index.blade.php b/desarrollo/resources/views/wholesale/products/index.blade.php index dbb7254e..64a34b31 100644 --- a/desarrollo/resources/views/wholesale/products/index.blade.php +++ b/desarrollo/resources/views/wholesale/products/index.blade.php @@ -1,321 +1,3 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Wholesale Products')}}

-
- @if($type != 'Seller' && auth()->user()->can('add_wholesale_product')) - - @endif -
-
-
- -
-
-
-
-
{{ translate('All Wholesale Product') }}
-
- - - - @if($type != 'In House') -
- -
- @endif -
- -
-
-
- -
-
-
- -
- - - - - - - @if($type != 'In House') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'Seller') - - @endif - - - - - - @foreach($products as $key => $product) - - - - - @if($type != 'In House') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'Seller') - - @endif - - - - @endforeach - -
-
-
- -
-
-
{{translate('Name')}}{{translate('Added By')}}{{translate('Info')}}{{translate('Total Stock')}}{{translate('Todays Deal')}}{{translate('Published')}}{{translate('Approved')}}{{translate('Featured')}}{{translate('Options')}}
-
- -
-
-
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
{{ $product->user->name }} - {{translate('Num of Sale')}}: {{ $product->num_of_sale }} {{translate('times')}}
- {{translate('Base Price')}}: {{ single_price($product->unit_price) }}
- {{translate('Rating')}}: {{ $product->rating }}
-
- @php - $qty = 0; - if($product->variant_product) { - foreach ($product->stocks as $key => $stock) { - $qty += $stock->qty; - echo $stock->variant.' - '.$stock->qty.'
'; - } - } - else { - //$qty = $product->current_stock; - $qty = optional($product->stocks->first())->qty; - echo $qty; - } - @endphp - @if($qty <= $product->low_stock_quantity) - Low - @endif -
- - - - - - - - - - - - @can('edit_wholesale_product') - - - - @endcan - @can('delete_wholesale_product') - - - - @endcan -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:39b1cf3df9f22e29a562b62eff13f1dc7f9cc8d44f7dacc14d2e5bcd0dd8ec58 +size 15872 diff --git a/desarrollo/resources/views/workshop/dashboard.blade.php b/desarrollo/resources/views/workshop/dashboard.blade.php index 8c9999fe..086a6c5d 100644 --- a/desarrollo/resources/views/workshop/dashboard.blade.php +++ b/desarrollo/resources/views/workshop/dashboard.blade.php @@ -1,643 +1,3 @@ -@extends('workshop.layouts.app') - -@section('panel_content') -
-
-
-

{{ translate('Dashboard') }}

-
-
-
- - {{--
-
-
-
-
-
-

- - {{ translate('Products') }} -

-

- {{ \App\Models\Product::where('user_id', Auth::user()->id)->count() }} -

- -
-
- - - -
-
-
-
-
-
-
-
-
-
-

- - {{ translate('Rating') }} -

-

- @if(Auth::user()->shop && Auth::user()->shop->rating) - {{ Auth::user()->shop->rating }} - @endif -

- -
-
- - - -
-
-
-
-
-
-
-
-
-
-

- - {{ translate('Total Order') }} -

-

- {{ \App\Models\Order::where('seller_id', Auth::user()->id)->where('delivery_status', 'delivered')->count() }} -

-
-
- - - - - - - - - - - - - - - - -
-
-
-
-
-
-
-
-
-
-

- - {{ translate('Total Sales') }} -

-

- @php - $orderDetails = \App\Models\OrderDetail::where('seller_id', Auth::user()->id)->get(); - $total = 0; - foreach ($orderDetails as $key => $orderDetail) { - if ($orderDetail->order != null && $orderDetail->order->payment_status == 'paid') { - $total += $orderDetail->price; - } - } - @endphp - {{ single_price($total) }} -

- -
-
- - - - - - - - -
-
-
-
-
-
--}} - - {{--
-
-
-
-
- {{ translate('Sales Stat') }} -
- -
-
-
- - @php - $date = date('Y-m-d'); - $days_ago_30 = date('Y-m-d', strtotime('-30 days', strtotime($date))); - $days_ago_60 = date('Y-m-d', strtotime('-60 days', strtotime($date))); - - $orderTotal = \App\Models\Order::where('seller_id', Auth::user()->id) - ->where('payment_status', 'paid') - ->where('created_at', '>=', $days_ago_30) - ->sum('grand_total'); - @endphp - -
-
- {{ translate('Sold Amount') }} -
-

{{ translate('Your Sold Amount (Current month)') }}

-

- {{ single_price($orderTotal) }} -

-

- @php - $orderTotal = \App\Models\Order::where('seller_id', Auth::user()->id) - ->where('payment_status', 'paid') - ->where('created_at', '>=', $days_ago_60) - ->where('created_at', '<=', $days_ago_30) - ->sum('grand_total'); - @endphp - {{ translate('Last Month') }}: {{ single_price($orderTotal) }} -

-
-
-
-
-
-
-
- {{ translate('Category wise product count') }} -
-
-
    - {{-- @foreach (\App\Models\Category::all() as $key => $category) - @if (count($category->products->where('user_id', Auth::user()->id)) > 0) -
  • - {{ $category->getTranslation('name') }} - - {{ count($category->products->where('user_id', Auth::user()->id)) }} - -
  • - @endif - @endforeach -
-
-
-
-
-
-
-
- {{ translate('Orders') }} -

- {{ translate('This Month') }} -

-
-
-
- - - - - - - - - -
-
-

- - {{ translate('New Order') }} -

-

- {{ \App\Models\OrderDetail::where('seller_id', Auth::user()->id)->where('delivery_status', 'pending')->count() }} -

-
-
-
-
- - - - - - - - - - - - - - - -
-
-

- - {{ translate('Cancelled') }} -

-

- {{ \App\Models\OrderDetail::where('seller_id', Auth::user()->id)->where('delivery_status', 'cancelled')->count() }} -

-
-
-
-
- - - - - - - - - - - - - - -
-
-

- - {{ translate('On Delivery') }} -

-

- {{ \App\Models\OrderDetail::where('seller_id', Auth::user()->id)->where('delivery_status', 'on_the_way')->count() }} -

-
-
-
-
- - - - - - - - - - -
-
-

- - {{ translate('Delivered') }} -

-

- {{ \App\Models\OrderDetail::where('seller_id', Auth::user()->id)->where('delivery_status', 'delivered')->count() }} -

-
- -
-
-
-
- @if (addon_is_activated('seller_subscription')) -
-
-
-
{{ translate('Purchased Package') }}
-
- @if (Auth::user()->shop && Auth::user()->shop->seller_package) -
-
- -
-
- {{ translate('Current Package') }}: -
- {{ Auth::user()->shop->seller_package->name }} -
-

{{ translate('Product Upload Limit') }}: - {{ Auth::user()->shop->product_upload_limit }} {{ translate('Times') }} -

-

{{ translate('Package Expires at') }}: - {{ Auth::user()->shop->package_invalid_at }} -

- -
-
- @else -
{{ translate('Package Not Found') }}
- @endif - -
-
- @endif -
- @if (Auth::user()->shop && Auth::user()->shop->verification_status == 0) - - @else -
- -
- @endif -
-
-
--}} - - {{--
- - -
-
-
- {{ translate('Shop Settings') }} -
-
- - - - - - - -
- - {{ translate('Go to setting') }} - -
-
-
-
-
- {{ translate('Payment Settings') }} -
-
- - - - - - -
- - {{ translate('Configure Now') }} - -
-
-
--}} - - {{--
-
-
-
{{ translate('Top 12 Products') }}
-
- -
-
--}} - -@endsection - -@section('script') - {{-- --}} -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:1f0bd39f8a917dd55d5777ce71c182658723c5c4770ebbb20f3dd2e4f5db8e8d +size 46478 diff --git a/desarrollo/resources/views/workshop/inc/nav.blade.php b/desarrollo/resources/views/workshop/inc/nav.blade.php index 3d8cb302..16175cf7 100644 --- a/desarrollo/resources/views/workshop/inc/nav.blade.php +++ b/desarrollo/resources/views/workshop/inc/nav.blade.php @@ -1,148 +1,3 @@ -
-
-
- -
-
-
-
-
-
-
- - - -
-
-
- {{-- @if (addon_is_activated('pos_system')) -
-
-
- - - -
-
-
- @endif --}} -
-
- -
- -
- - {{-- language --}} - @php - if(Session::has('locale')){ - $locale = Session::get('locale', Config::get('app.locale')); - } - else{ - $locale = env('DEFAULT_LANGUAGE'); - } - @endphp -
- -
- - -
-
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:71712a1e6d9846986fc57f525c2b2a465c91b783a959f521c87f22c53b484597 +size 9315 diff --git a/desarrollo/resources/views/workshop/inc/sidenav.blade.php b/desarrollo/resources/views/workshop/inc/sidenav.blade.php index f9f3dea1..1261d7da 100644 --- a/desarrollo/resources/views/workshop/inc/sidenav.blade.php +++ b/desarrollo/resources/views/workshop/inc/sidenav.blade.php @@ -1,78 +1,3 @@ -
-
-
-
- {{-- @if (optional(Auth::user()->shop)->logo != null) - {{ get_setting('site_name') }} - @else - {{ get_setting('site_name') }} - @endif --}} -

{{-- optional(Auth::user()->shop)->name --}}

-

{{-- Auth::user()->email --}}

-
-
- -
-
-
+version https://git-lfs.github.com/spec/v1 +oid sha256:6e500f9cef649059207b19ac0b5acb020a5da90647d48e024f53db3379c7192c +size 4201 diff --git a/desarrollo/resources/views/workshop/layouts/app.blade.php b/desarrollo/resources/views/workshop/layouts/app.blade.php index daedbac1..db411562 100644 --- a/desarrollo/resources/views/workshop/layouts/app.blade.php +++ b/desarrollo/resources/views/workshop/layouts/app.blade.php @@ -1,148 +1,3 @@ - -@if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - -@else - -@endif - - - - - - - - - - - - {{ get_setting('website_name').' | '.get_setting('site_motto') }} - - - - - - - @if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - - @endif - - - - - - - - -
- @include('workshop.inc.sidenav') -
- @include('workshop.inc.nav') -
-
- @yield('panel_content') -
-
-

© {{ get_setting('site_name') }} v{{ get_setting('current_version') }}

-
-
-
-
- - @yield('modal') - - - - - - @yield('script') - - - - - +version https://git-lfs.github.com/spec/v1 +oid sha256:718c717c4b9b58a46b87cd729136ff41018e0ac1cec720a9614ed0384ab80db4 +size 5572 diff --git a/desarrollo/resources/views/workshop/profile/address_edit_modal.blade.php b/desarrollo/resources/views/workshop/profile/address_edit_modal.blade.php index 94d4c046..ac0a9522 100644 --- a/desarrollo/resources/views/workshop/profile/address_edit_modal.blade.php +++ b/desarrollo/resources/views/workshop/profile/address_edit_modal.blade.php @@ -1,111 +1,3 @@ -
- @csrf -
-
-
- -
-
- -
-
-
-
- -
-
-
- -
-
-
- -
-
- -
-
- -
-
- - {{--
-
- -
-
- -
-
--}} - - {{-- @if (get_setting('google_map') == 1) -
- -
-
    -
  • {{ translate('Full Address') }}:
  • -
  • {{ translate('Postal Code') }}:
  • -
  • {{ translate('Country') }}:
  • -
  • {{ translate('Latitude') }}:
  • -
  • {{ translate('Longitude') }}:
  • -
-
- -
-
- -
-
- -
-
-
-
- -
-
- -
-
- @endif --}} - -
-
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
\ No newline at end of file +version https://git-lfs.github.com/spec/v1 +oid sha256:becfe4b84de208060f3f75864d98610bf72d2898f5a5a3ddbcd8b94e1363d820 +size 5452 diff --git a/desarrollo/resources/views/workshop/profile/index.blade.php b/desarrollo/resources/views/workshop/profile/index.blade.php index 4c36dc30..d3d72dbd 100644 --- a/desarrollo/resources/views/workshop/profile/index.blade.php +++ b/desarrollo/resources/views/workshop/profile/index.blade.php @@ -1,499 +1,3 @@ -@extends('workshop.layouts.app') - -@section('panel_content') -
-
-
-

{{ translate('Manage Profile') }}

-
-
-
-
- - @csrf - -
-
-
{{ translate('Basic Info')}}
-
-
-
- -
- - @error('name') - {{ $message }} - @enderror -
-
- -
- -
- - @error('phone') - {{ $message }} - @enderror -
-
- {{--
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- - @error('new_password') - {{ $message }} - @enderror -
-
-
- -
- - @error('confirm_password') - {{ $message }} - @enderror -
-
--}} - -
-
- - -
-
-
{{ translate('Payment Setting')}}
-
-
- {{--
- -
- -
-
-
- -
- -
-
--}} -
- -
- - @error('phone') - {{ $message }} - @enderror -
-
-
- -
- - @error('bank_acc_name') - {{ $message }} - @enderror -
-
- {{--
- -
- - @error('bank_acc_no') - {{ $message }} - @enderror -
-
-
- -
- - @error('bank_routing_no') - {{ $message }} - @enderror -
-
--}} -
-
- -
- -
-
- -
- - -
-
-
{{ translate('Address')}}
-
-
-
- {{-- @foreach ($addresses as $key => $address) -
-
-
- {{ translate('Address') }}: - {{ $address->address }} -
-
- {{ translate('Postal Code') }}: - {{ $address->postal_code }} -
-
- {{ translate('City') }}: - {{ optional($address->city)->name }} -
-
- {{ translate('State') }}: - {{ optional($address->state)->name }} -
-
- {{ translate('Country') }}: - {{ optional($address->country)->name }} -
-
- {{ translate('Phone') }}: - {{ $address->phone }} -
- @if ($address->set_default) -
- {{ translate('Default') }} -
- @endif - -
-
- @endforeach --}} -
-
- -
{{ translate('Add New Address') }}
-
-
-
-
-
- - - {{--
- @csrf -
-
-
{{ translate('Change your email')}}
-
-
-
-
- -
-
-
- -
- -
-
-
- -
-
-
-
-
-
--}} - -@endsection - -@section('modal') - {{-- New Address Modal --}} - {{-- --}} - - {{-- Edit Address Modal --}} - {{-- --}} - -@endsection - -@section('script') - - - {{-- @if (get_setting('google_map') == 1) - - @include('frontend.partials.google_map') - - @endif --}} - -@endsection +version https://git-lfs.github.com/spec/v1 +oid sha256:dd765560ea492c144bb60b58fccfbc5d369e93ae9d5828e9b05f375bd808a2a2 +size 25607 diff --git a/desarrollo/routes/admin.php b/desarrollo/routes/admin.php index 70ca6c67..7a515153 100644 --- a/desarrollo/routes/admin.php +++ b/desarrollo/routes/admin.php @@ -87,7 +87,7 @@ Route::group(['prefix' => 'admin', 'middleware' => ['auth', 'admin', 'prevent-ba // Products Route::controller(ProductController::class)->group(function () { Route::get('/products/admin', 'admin_products')->name('products.admin'); - Route::get('/products/seller', 'seller_products')->name('products.seller'); + Route::get('/products/seller/{product_type}', 'seller_products')->name('products.seller'); Route::get('/products/all', 'all_products')->name('products.all'); Route::get('/products/create', 'create')->name('products.create'); Route::post('/products/store/', 'store')->name('products.store'); diff --git a/desarrollo/routes/api.php b/desarrollo/routes/api.php index edd402fc..88b6845c 100644 --- a/desarrollo/routes/api.php +++ b/desarrollo/routes/api.php @@ -26,6 +26,8 @@ Route::group(['prefix' => 'v2/auth', 'middleware' => ['app_language']], function Route::group(['prefix' => 'v2', 'middleware' => ['app_language']], function () { // auction products routes Route::get('auction/products', [AuctionProductController::class, 'index']); + Route::get('auction/bided-products', [AuctionProductController::class, 'bided_products_list'])->middleware('auth:sanctum'); + Route::get('auction/purchase-history', [AuctionProductController::class, 'user_purchase_history'])->middleware('auth:sanctum'); Route::get('auction/products/{id}', [AuctionProductController::class, 'details_auction_product']); Route::post('auction/place-bid', [AuctionProductBidController::class, 'store'])->middleware('auth:sanctum'); @@ -64,6 +66,7 @@ Route::group(['prefix' => 'v2', 'middleware' => ['app_language']], function () { Route::get('purchase-history', 'App\Http\Controllers\Api\V2\PurchaseHistoryController@index')->middleware('auth:sanctum'); Route::get('purchase-history-details/{id}', 'App\Http\Controllers\Api\V2\PurchaseHistoryController@details')->middleware('auth:sanctum'); Route::get('purchase-history-items/{id}', 'App\Http\Controllers\Api\V2\PurchaseHistoryController@items')->middleware('auth:sanctum'); + Route::get('re-order/{id}', 'App\Http\Controllers\Api\V2\PurchaseHistoryController@re_order')->middleware('auth:sanctum'); Route::prefix('classified')->group(function () { Route::get('/own-products', 'App\Http\Controllers\Api\V2\CustomerProductController@ownProducts')->middleware('auth:sanctum'); @@ -155,18 +158,20 @@ Route::group(['prefix' => 'v2', 'middleware' => ['app_language']], function () { Route::get('payment-types', 'App\Http\Controllers\Api\V2\PaymentTypesController@getList')->middleware('auth:sanctum'); + Route::controller(CustomerPackageController::class)->group(function () { + Route::post('offline/packages-payment', 'purchase_package_offline')->middleware('auth:sanctum'); + Route::post('free/packages-payment', 'purchase_package_free')->middleware('auth:sanctum'); + }); }); //end user bann + Route::controller(OnlinePaymentController::class)->group(function () { + Route::get('online-pay/init', 'init')->middleware('auth:sanctum');; + Route::get('online-pay/success', 'paymentSuccess'); + Route::get('online-pay/done', 'paymentDone'); + Route::get('online-pay/failed', 'paymentFailed'); + }); - Route::controller(OnlinePaymentController::class)->group(function () { - Route::get('online-pay/init', 'init')->middleware('auth:sanctum');; - Route::get('online-pay/success', 'paymentSuccess'); - Route::get('online-pay/done', 'paymentDone'); - Route::get('online-pay/failed', 'paymentFailed'); - }); - - Route::get('get-search-suggestions', 'App\Http\Controllers\Api\V2\SearchSuggestionController@getList'); Route::get('languages', 'App\Http\Controllers\Api\V2\LanguageController@getList'); @@ -176,6 +181,7 @@ Route::group(['prefix' => 'v2', 'middleware' => ['app_language']], function () { + Route::get('seller/top', 'App\Http\Controllers\Api\V2\SellerController@topSellers'); Route::apiResource('banners', 'App\Http\Controllers\Api\V2\BannerController')->only('index'); @@ -286,7 +292,7 @@ Route::group(['prefix' => 'v2', 'middleware' => ['app_language']], function () { Route::any('khalti/payment/cancel', 'App\Http\Controllers\Api\V2\KhaltiController@getCancel')->name('api.khalti.cancel'); Route::any('razorpay/pay-with-razorpay', 'App\Http\Controllers\Api\V2\RazorpayController@payWithRazorpay')->name('api.razorpay.payment'); - Route::any('razorpay/payment', 'App\Http\Controllers\Api\V2\RazorpayController@payment')->name('api.razorpay');/* .payment */ + Route::any('razorpay/payment', 'App\Http\Controllers\Api\V2\RazorpayController@payment')->name('api.razorpay.payment'); Route::post('razorpay/success', 'App\Http\Controllers\Api\V2\RazorpayController@payment_success')->name('api.razorpay.success'); Route::any('paystack/init', 'App\Http\Controllers\Api\V2\PaystackController@init')->name('api.paystack.init'); @@ -357,4 +363,3 @@ Route::fallback(function () { 'message' => 'Invalid Route' ]); }); - diff --git a/desarrollo/routes/api_seller.php b/desarrollo/routes/api_seller.php index fc79abea..21e607c8 100644 --- a/desarrollo/routes/api_seller.php +++ b/desarrollo/routes/api_seller.php @@ -69,6 +69,17 @@ Route::group(['prefix' => 'v2/seller', 'middleware' => ['app_language']], functi Route::get('products/search', 'search'); }); + // Digital Product Section + Route::controller(DigitalProductController::class)->group(function () { + Route::get('digital-products', 'index'); + Route::get('digital-products/categories', 'getCategory'); + Route::post('digital-products/store', 'store'); + Route::get('digital-products/edit/{id}', 'edit'); + Route::post('digital-products/update/{product}', 'update'); + Route::get('digital-products/destroy/{id}', 'destroy'); + Route::get('digital-products/download/{id}', 'download'); + }); + //Whole Sale Product Section Route::controller(WholesaleProductController::class)->group(function () { Route::get('wholesale-products', 'wholesale_products'); @@ -126,8 +137,4 @@ Route::group(['prefix' => 'v2/seller', 'middleware' => ['app_language']], functi }); Route::post('shops/create', [ShopController::class, 'store']); - Route::get('/register-shop', function () { - return '¡Mensaje de prueba para el registro de tienda!'; - }); - }); diff --git a/desarrollo/routes/pos.php b/desarrollo/routes/pos.php index aa07ff9f..467a37a4 100644 --- a/desarrollo/routes/pos.php +++ b/desarrollo/routes/pos.php @@ -13,7 +13,6 @@ use App\Http\Controllers\PosController; use App\Http\Controllers\BusinessSettingsController; -use App\Http\Controllers\NfcVouchersController; use App\Http\Controllers\Seller\PosController as SellerPosController; Route::controller(PosController::class)->group(function () { @@ -38,9 +37,6 @@ Route::group(['prefix' => 'admin', 'middleware' => ['auth', 'admin']], function Route::get('/pos-activation', 'configuration')->name('poin-of-sales.activation'); Route::get('/pos/thermal-printer/{order_id}', 'invoice')->name('admin.invoice.thermal_printer'); }); - - // - }); //Seller @@ -48,18 +44,8 @@ Route::group(['prefix' => 'seller', 'middleware' => ['seller', 'verified']], fun Route::controller(SellerPosController::class)->group(function () { Route::get('/pos', 'index')->name('poin-of-sales.seller_index'); Route::get('/pos/thermal-printer/{order_id}', 'invoice')->name('seller.invoice.thermal_printer'); - //aqui esta el index o lista de NFC Route::get('/pos-activation', 'configuration')->name('pos.configuration'); Route::get('/pos/products', 'search')->name('pos.search_seller_product'); }); - Route::post('/pos-configuration', [BusinessSettingsController::class, 'update'])->name('seller_business_settings.update'); - - - //configuracion de los comprobantes NFC - //CREAR NFC - Route::post('/nfc_store', [NfcVouchersController::class, 'store'])->name('pos.configuration.store'); - //EXPORTAR por exel - Route::get('/nfc_configuration/collection', [NfcVouchersController::class, 'collection'])->name('pos.configuration.collection'); - Route::get('/nfc_configuration/view', [NfcVouchersController::class, 'view'])->name('pos.configuration.view'); - + Route::post('/pos-configuration', [BusinessSettingsController::class, 'update'])->name('seller_business_settings.update'); }); diff --git a/desarrollo/routes/seller.php b/desarrollo/routes/seller.php index 413fbec0..3f385280 100644 --- a/desarrollo/routes/seller.php +++ b/desarrollo/routes/seller.php @@ -51,7 +51,7 @@ Route::group(['namespace' => 'App\Http\Controllers\Seller', 'prefix' => 'seller' Route::get('/digitalproducts/create', 'create')->name('digitalproducts.create'); Route::post('/digitalproducts/store', 'store')->name('digitalproducts.store'); Route::get('/digitalproducts/{id}/edit', 'edit')->name('digitalproducts.edit'); - Route::post('/digitalproducts/update/{id}', 'update')->name('digitalproducts.update'); + Route::post('/digitalproducts/update/{product}', 'update')->name('digitalproducts.update'); Route::get('/digitalproducts/destroy/{id}', 'destroy')->name('digitalproducts.destroy'); Route::get('/digitalproducts/download/{id}', 'download')->name('digitalproducts.download'); }); @@ -85,7 +85,7 @@ Route::group(['namespace' => 'App\Http\Controllers\Seller', 'prefix' => 'seller' Route::controller(ShopController::class)->group(function () { Route::get('/shop', 'index')->name('shop.index'); Route::post('/shop/update', 'update')->name('shop.update'); - Route::get('/shop/apply_for_verification', 'verify_form')->name('shop.verify'); + Route::get('/shop/apply-for-verification', 'verify_form')->name('shop.verify'); Route::post('/shop/verification_info_store', 'verify_form_store')->name('shop.verify.store'); }); diff --git a/desarrollo/routes/web.php b/desarrollo/routes/web.php index 10f15a63..8f0f6685 100644 --- a/desarrollo/routes/web.php +++ b/desarrollo/routes/web.php @@ -17,10 +17,8 @@ use App\Http\Controllers\CheckoutController; use App\Http\Controllers\CurrencyController; use App\Http\Controllers\LanguageController; use App\Http\Controllers\WishlistController; -use App\Http\Controllers\ShopViewsController; use App\Http\Controllers\AizUploadController; use App\Http\Controllers\Auth\LoginController; -use App\Http\Controllers\Auth\RegisterController; use App\Http\Controllers\SubscriberController; use App\Http\Controllers\ConversationController; use App\Http\Controllers\FollowSellerController; @@ -49,114 +47,6 @@ use App\Http\Controllers\Payment\InstamojoController; use App\Http\Controllers\Payment\SslcommerzController; use App\Http\Controllers\Payment\MercadopagoController; use App\Http\Controllers\Payment\AuthorizenetController; -use App\Http\Controllers\TypeBusinessController; -use App\Http\Controllers\TypeBuyerController; -use App\Http\Controllers\TypeWorkshopController; -use App\Http\Controllers\UserController; -use App\Http\Controllers\Workshop\DashboardController; - -/* Grupo de rutas para el registro de tienda */ -// Route::controller(ShopViewsController::class)->group(function () { - -// Route::get('register/type_account', 'account_type')->name('shop.view.account.type'); - -// Route::get('/register/email-verification', 'verification_email')->name('shop.view.email.verification'); - -// Route::get('/register-shop/signup-complete', 'signup_complete')->name('shop.view.signup.complete'); -// }); - -Route::prefix('register')->group(function () { - - //selecionar e; tipo de cuenta al registrar - Route::get('type_account', [ShopViewsController::class, 'account_type'])->name('shop.view.account.type'); - - //vista donde muestra mensaje de verificar cuenta - Route::get('email-verification', [ShopViewsController::class, 'verification_email'])->name('shop.view.email.verification'); - - //vista de registro exitoso - Route::get('signup-complete', [ShopViewsController::class, 'signup_complete'])->name('shop.view.signup.complete'); -}); - - -//esto es para registrar a los usuario de tipo COMPRADOR -// Route::resource('register/buyer', TypeBuyerController::class); -Route::prefix('register')->group(function () { - - Route::get('buyer', [TypeBuyerController::class, 'index'])->name('register.buyer.index'); - Route::post('buyer', [TypeBuyerController::class, 'store'])->name('register.buyer.store'); - - //esto no se esta usando - // Route::get('buyer/create', [TypeBuyerController::class, 'create'])->name('register.buyer.create'); - // Route::get('buyer/{buyer}', [TypeBuyerController::class, 'show'])->name('register.buyer.show'); - // Route::get('buyer/{buyer}/edit', [TypeBuyerController::class, 'edit'])->name('register.buyer.edit'); - // Route::put('buyer/{buyer}', [TypeBuyerController::class, 'update'])->name('register.buyer.update'); - // Route::delete('buyer/{buyer}', [TypeBuyerController::class, 'destroy'])->name('register.buyer.destroy'); - -}); - - -//esto es para registrar a los usuario de tipo NEGOCIO -// Route::resource('register/business', TypeBusinessController::class); -Route::prefix('register')->group(function () { - - - Route::get('business', [TypeBusinessController::class, 'index'])->name('register.business.index'); - Route::post('business', [TypeBusinessController::class, 'store'])->name('register.business.store'); - - //esto no se esta usando - // Route::get('register/business/create', [TypeBusinessController::class, 'create'])->name('register.business.create'); - // Route::get('register/business/{id}', [TypeBusinessController::class, 'show'])->name('register.business.show'); - // Route::get('register/business/{id}/edit', [TypeBusinessController::class, 'edit'])->name('register.business.edit'); - // Route::put('register/business/{id}', [TypeBusinessController::class, 'update'])->name('register.business.update'); - // Route::delete('register/business/{id}', [TypeBusinessController::class, 'destroy'])->name('register.business.destroy'); - - Route::get('business_complete', [TypeBusinessController::class, 'business_complete_index'])->name('register.business.business_complete_index'); - Route::post('business_store', [TypeBusinessController::class, 'business_complete_store'])->name('register.business.business_complete_store'); -}); - -//esto es para registrar a los usuario de tipo TALLER -// Route::resource('register/workshop', TypeWorkshopController::class); - -Route::prefix('register')->group(function () { - - Route::get('workshop', [TypeWorkshopController::class, 'index'])->name('register.workshop.index'); - Route::post('workshop', [TypeWorkshopController::class, 'store'])->name('register.workshop.store'); - - //esto no se esta usando - // Route::get('workshop/create', [TypeWorkshopController::class, 'create'])->name('register.workshop.create'); - // Route::get('workshop/{id}', [TypeWorkshopController::class, 'show'])->name('register.workshop.show'); - // Route::get('workshop/{id}/edit', [TypeWorkshopController::class, 'edit'])->name('register.workshop.edit'); - // Route::put('workshop/{id}', [TypeWorkshopController::class, 'update'])->name('register.workshop.update'); - // Route::delete('workshop/{id}', [TypeWorkshopController::class, 'destroy'])->name('register.workshop.destroy'); - - Route::get('workshop_complete', [TypeWorkshopController::class, 'workshop_complete_index'])->name('register.workshop.workshop_complete_index'); - Route::post('workshop_store', [TypeWorkshopController::class, 'workshop_complete_store'])->name('register.workshop.workshop_complete_store'); -}); - -//Esto es para verifica la cuenta del usuario que recien se registra -Route::get('email/verify/{id}/{hash}', [VerificationController::class, 'verify'])->name('verification.verify'); - - - - - - - - - -/* by joan */ -/* Api para guardar el correo y generar un token */ -// Route::post('user/register-email', [UserController::class, 'register_email'])->name('api.user.register.email'); -// Route::post('user/verify-code', [UserController::class, 'verify_code'])->name('api.user.verify.code'); - - - - -/* Ruta para el registro de tienda */ -/* Route::get('/register-shop', function () { - return '¡Mensaje de prueba para el registro de tienda!'; -}); */ - /* |-------------------------------------------------------------------------- @@ -169,6 +59,10 @@ Route::get('email/verify/{id}/{hash}', [VerificationController::class, 'verify'] | */ + + + + Route::controller(DemoController::class)->group(function () { Route::get('/demo/cron_1', 'cron_1'); Route::get('/demo/cron_2', 'cron_2'); @@ -188,7 +82,7 @@ Route::get('/refresh-csrf', function () { Route::controller(AizUploadController::class)->group(function () { Route::post('/aiz-uploader', 'show_uploader'); Route::post('/aiz-uploader/upload', 'upload'); - Route::get('/aiz-uploader/get_uploaded_files', 'get_uploaded_files'); + Route::get('/aiz-uploader/get-uploaded-files', 'get_uploaded_files'); Route::post('/aiz-uploader/get_file_by_ids', 'get_preview_files'); Route::get('/aiz-uploader/download/{id}', 'attachment_download')->name('download_attachment'); }); @@ -207,35 +101,32 @@ Route::controller(LoginController::class)->group(function () { Route::get('/account-deletion', 'account_deletion')->name('account_delete'); }); -// Route::controller(VerificationController::class)->group(function () { -// Route::get('/email/resend', 'resend')->name('verification.resend'); -// Route::get('/verification-confirmation/{code}', 'verification_confirmation')->name('email.verification.confirmation'); - -// }); +Route::controller(VerificationController::class)->group(function () { + Route::get('/email/resend', 'resend')->name('verification.resend'); + Route::get('/verification-confirmation/{code}', 'verification_confirmation')->name('email.verification.confirmation'); +}); Route::controller(HomeController::class)->group(function () { - Route::get('/email_change/callback', 'email_change_callback')->name('email_change.callback'); + Route::get('/email-change/callback', 'email_change_callback')->name('email_change.callback'); Route::post('/password/reset/email/submit', 'reset_password_with_code')->name('password.update'); Route::get('/users/login', 'login')->name('user.login'); Route::get('/seller/login', 'login')->name('seller.login'); Route::get('/deliveryboy/login', 'login')->name('deliveryboy.login'); - - //esto lo comente es codigo antiguo - // Route::get('/users/registration', 'registration')->name('user.registration'); - - + Route::get('/users/registration', 'registration')->name('user.registration'); Route::post('/users/login/cart', 'cart_login')->name('cart.login.submit'); // Route::get('/new-page', 'new_page')->name('new_page'); //Home Page Route::get('/', 'index')->name('home'); - + Route::post('/home/section/featured', 'load_featured_section')->name('home.section.featured'); - Route::post('/home/section/best_selling', 'load_best_selling_section')->name('home.section.best_selling'); - Route::post('/home/section/home_categories', 'load_home_categories_section')->name('home.section.home_categories'); - Route::post('/home/section/best_sellers', 'load_best_sellers_section')->name('home.section.best_sellers'); + Route::post('/home/section/todays-deal', 'load_todays_deal_section')->name('home.section.todays_deal'); + Route::post('/home/section/best-selling', 'load_best_selling_section')->name('home.section.best_selling'); + Route::post('/home/section/newest-products', 'load_newest_product_section')->name('home.section.newest_products'); + Route::post('/home/section/home-categories', 'load_home_categories_section')->name('home.section.home_categories'); + Route::post('/home/section/best-sellers', 'load_best_sellers_section')->name('home.section.best_sellers'); //category dropdown menu ajax call Route::post('/category/nav-element-list', 'get_category_items')->name('category.elements'); @@ -248,7 +139,7 @@ Route::controller(HomeController::class)->group(function () { Route::get('/todays-deal', 'todays_deal')->name('todays-deal'); Route::get('/product/{slug}', 'product')->name('product'); - Route::post('/product/variant_price', 'variant_price')->name('products.variant_price'); + Route::post('/product/variant-price', 'variant_price')->name('products.variant_price'); Route::get('/shop/{slug}', 'shop')->name('shop.visit'); Route::get('/shop/{slug}/{type}', 'filter_shop')->name('shop.visit.type'); @@ -357,8 +248,6 @@ Route::group(['middleware' => ['user', 'verified', 'unbanned']], function () { Route::controller(HomeController::class)->group(function () { Route::get('/dashboard', 'dashboard')->name('dashboard')->middleware(['prevent-back-history']); Route::get('/profile', 'profile')->name('profile'); - - //esto se esta usando en perfil de usuario , no es de verificar cuenta Route::post('/new-user-verification', 'new_verify')->name('user.new.verify'); Route::post('/new-user-email', 'update_email')->name('user.change.email'); Route::post('/user/update-profile', 'userProfileUpdate')->name('user.profile.update'); @@ -373,14 +262,14 @@ Route::group(['middleware' => ['customer', 'verified', 'unbanned']], function () Route::group(['prefix' => 'checkout'], function () { Route::controller(CheckoutController::class)->group(function () { Route::get('/', 'get_shipping_info')->name('checkout.shipping_info'); - Route::any('/delivery_info', 'store_shipping_info')->name('checkout.store_shipping_infostore'); - Route::post('/payment_select', 'store_delivery_info')->name('checkout.store_delivery_info'); + Route::any('/delivery-info', 'store_shipping_info')->name('checkout.store_shipping_infostore'); + Route::post('/payment-select', 'store_delivery_info')->name('checkout.store_delivery_info'); Route::get('/order-confirmed', 'order_confirmed')->name('order_confirmed'); Route::post('/payment', 'checkout')->name('payment.checkout'); - Route::post('/get_pick_up_points', 'get_pick_up_points')->name('shipping_info.get_pick_up_points'); + Route::post('/get-pick-up-points', 'get_pick_up_points')->name('shipping_info.get_pick_up_points'); Route::get('/payment-select', 'get_payment_info')->name('checkout.payment_info'); - Route::post('/apply_coupon_code', 'apply_coupon_code')->name('checkout.apply_coupon_code'); - Route::post('/remove_coupon_code', 'remove_coupon_code')->name('checkout.remove_coupon_code'); + Route::post('/apply-coupon-code', 'apply_coupon_code')->name('checkout.apply_coupon_code'); + Route::post('/remove-coupon-code', 'remove_coupon_code')->name('checkout.remove_coupon_code'); //Club point Route::post('/apply-club-point', 'apply_club_point')->name('checkout.apply_club_point'); Route::post('/remove-club-point', 'remove_club_point')->name('checkout.remove_club_point'); @@ -394,6 +283,8 @@ Route::group(['middleware' => ['customer', 'verified', 'unbanned']], function () Route::get('/purchase_history/destroy/{id}', 'order_cancel')->name('purchase_history.destroy'); Route::get('digital-purchase-history', 'digital_index')->name('digital_purchase_history.index'); Route::get('/digital-products/download/{id}', 'download')->name('digital-products.download'); + + Route::get('/re-order/{id}', 're_order')->name('re_order'); }); // Wishlist @@ -418,7 +309,7 @@ Route::group(['middleware' => ['customer', 'verified', 'unbanned']], function () Route::post('support_ticket/reply', [SupportTicketController::class, 'seller_store'])->name('support_ticket.seller_store'); // Customer Package - Route::post('/customer_packages/purchase', [CustomerPackageController::class, 'purchase_package'])->name('customer_packages.purchase'); + Route::post('/customer-packages/purchase', [CustomerPackageController::class, 'purchase_package'])->name('customer_packages.purchase'); // Customer Product Route::resource('customer_products', CustomerProductController::class); @@ -430,7 +321,7 @@ Route::group(['middleware' => ['customer', 'verified', 'unbanned']], function () }); // Product Review - Route::post('/product_review_modal', [ReviewController::class, 'product_review_modal'])->name('product_review_modal'); + Route::post('/product-review-modal', [ReviewController::class, 'product_review_modal'])->name('product_review_modal'); }); @@ -463,7 +354,7 @@ Route::group(['middleware' => ['auth']], function () { Route::post('/get-cities', 'getCities')->name('get-city'); Route::post('/addresses/update/{id}', 'update')->name('addresses.update'); Route::get('/addresses/destroy/{id}', 'destroy')->name('addresses.destroy'); - Route::get('/addresses/set_default/{id}', 'set_default')->name('addresses.set_default'); + Route::get('/addresses/set-default/{id}', 'set_default')->name('addresses.set_default'); }); }); @@ -557,20 +448,3 @@ Route::controller(PageController::class)->group(function () { //Custom page Route::get('/{slug}', 'show_custom_page')->name('custom-pages.show_custom_page'); }); - - - - - -/* Route::post('/shops/create/store', 'ShopController@store')->middleware('cors'); */ - - -//AQUI AGREGO LOS DIFERENTES TIPOS DE USUARIOS Y QUE este verificado y autenticado -Route::group(['middleware' => ['auth', 'user', 'verified']], function () { - - Route::prefix('workshop')->group(function () { - - Route::get('dashboard', [DashboardController::class, 'index'])->name('workshop.dashboard'); - }); - -}); \ No newline at end of file diff --git a/desarrollo/shop.sql b/desarrollo/shop.sql deleted file mode 100644 index 95d45412..00000000 --- a/desarrollo/shop.sql +++ /dev/null @@ -1,82272 +0,0 @@ --- phpMyAdmin SQL Dump --- version 5.2.0 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Mar 06, 2023 at 11:20 AM --- Server version: 10.4.24-MariaDB --- PHP Version: 7.4.29 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `ecom_new_sql` --- - --- -------------------------------------------------------- - --- --- Table structure for table `addons` --- - -CREATE TABLE `addons` ( - `id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `unique_identifier` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `version` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `activated` int(1) NOT NULL DEFAULT 1, - `image` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, - `purchase_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `addresses` --- - -CREATE TABLE `addresses` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `address` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `country_id` int(11) DEFAULT NULL, - `state_id` int(11) NOT NULL, - `city_id` int(11) DEFAULT NULL, - `longitude` float(17,15) DEFAULT NULL, - `latitude` float(17,15) DEFAULT NULL, - `postal_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `set_default` int(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `app_translations` --- - -CREATE TABLE `app_translations` ( - `id` int(11) NOT NULL, - `lang` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, - `lang_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `lang_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `attributes` --- - -CREATE TABLE `attributes` ( - `id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `attributes` --- - -INSERT INTO `attributes` (`id`, `name`, `created_at`, `updated_at`) VALUES -(1, 'Size', '2020-02-24 05:55:07', '2020-02-24 05:55:07'), -(2, 'Fabric', '2020-02-24 05:55:13', '2020-02-24 05:55:13'); - --- -------------------------------------------------------- - --- --- Table structure for table `attribute_category` --- - -CREATE TABLE `attribute_category` ( - `id` int(11) NOT NULL, - `category_id` int(11) NOT NULL, - `attribute_id` int(11) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `attribute_translations` --- - -CREATE TABLE `attribute_translations` ( - `id` bigint(20) NOT NULL, - `attribute_id` bigint(20) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `attribute_values` --- - -CREATE TABLE `attribute_values` ( - `id` int(11) NOT NULL, - `attribute_id` int(11) NOT NULL, - `value` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `color_code` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `blogs` --- - -CREATE TABLE `blogs` ( - `id` bigint(20) UNSIGNED NOT NULL, - `category_id` int(11) NOT NULL, - `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `short_description` text COLLATE utf8_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `banner` int(11) DEFAULT NULL, - `meta_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_img` int(11) DEFAULT NULL, - `meta_description` text COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_keywords` text COLLATE utf8_unicode_ci DEFAULT NULL, - `status` int(1) NOT NULL DEFAULT 1, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL, - `deleted_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `blog_categories` --- - -CREATE TABLE `blog_categories` ( - `id` bigint(20) UNSIGNED NOT NULL, - `category_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL, - `deleted_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `brands` --- - -CREATE TABLE `brands` ( - `id` int(11) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `logo` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `top` int(1) NOT NULL DEFAULT 0, - `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_description` text COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `brands` --- - -INSERT INTO `brands` (`id`, `name`, `logo`, `top`, `slug`, `meta_title`, `meta_description`, `created_at`, `updated_at`) VALUES -(1, 'Demo brand', 'uploads/brands/brand.jpg', 1, 'Demo-brand-12', 'Demo brand', NULL, '2019-03-12 06:05:56', '2019-08-06 06:52:40'), -(2, 'Demo brand1', 'uploads/brands/brand.jpg', 1, 'Demo-brand1', 'Demo brand1', NULL, '2019-03-12 06:06:13', '2019-08-06 06:07:26'); - --- -------------------------------------------------------- - --- --- Table structure for table `brand_translations` --- - -CREATE TABLE `brand_translations` ( - `id` bigint(20) NOT NULL, - `brand_id` bigint(20) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `business_settings` --- - -CREATE TABLE `business_settings` ( - `id` int(11) NOT NULL, - `type` varchar(30) COLLATE utf8_unicode_ci NOT NULL, - `value` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `lang` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `business_settings` --- - -INSERT INTO `business_settings` (`id`, `type`, `value`, `lang`, `created_at`, `updated_at`) VALUES -(1, 'home_default_currency', '1', NULL, '2018-10-16 01:35:52', '2019-01-28 01:26:53'), -(2, 'system_default_currency', '1', NULL, '2018-10-16 01:36:58', '2020-01-26 04:22:13'), -(3, 'currency_format', '1', NULL, '2018-10-17 03:01:59', '2018-10-17 03:01:59'), -(4, 'symbol_format', '1', NULL, '2018-10-17 03:01:59', '2019-01-20 02:10:55'), -(5, 'no_of_decimals', '2', NULL, '2018-10-17 03:01:59', '2020-03-04 00:57:16'), -(6, 'product_activation', '1', NULL, '2018-10-28 01:38:37', '2019-02-04 01:11:41'), -(7, 'vendor_system_activation', '1', NULL, '2018-10-28 07:44:16', '2019-02-04 01:11:38'), -(8, 'show_vendors', '1', NULL, '2018-10-28 07:44:47', '2019-02-04 01:11:13'), -(9, 'paypal_payment', '0', NULL, '2018-10-28 07:45:16', '2019-01-31 05:09:10'), -(10, 'stripe_payment', '0', NULL, '2018-10-28 07:45:47', '2018-11-14 01:51:51'), -(11, 'cash_payment', '1', NULL, '2018-10-28 07:46:05', '2019-01-24 03:40:18'), -(12, 'payumoney_payment', '0', NULL, '2018-10-28 07:46:27', '2019-03-05 05:41:36'), -(13, 'best_selling', '1', NULL, '2018-12-24 08:13:44', '2019-02-14 05:29:13'), -(14, 'paypal_sandbox', '0', NULL, '2019-01-16 12:44:18', '2019-01-16 12:44:18'), -(15, 'sslcommerz_sandbox', '1', NULL, '2019-01-16 12:44:18', '2019-03-14 00:07:26'), -(16, 'sslcommerz_payment', '0', NULL, '2019-01-24 09:39:07', '2019-01-29 06:13:46'), -(17, 'vendor_commission', '20', NULL, '2019-01-31 06:18:04', '2019-04-13 06:49:26'), -(18, 'verification_form', '[{\"type\":\"text\",\"label\":\"Your name\"},{\"type\":\"text\",\"label\":\"Shop name\"},{\"type\":\"text\",\"label\":\"Email\"},{\"type\":\"text\",\"label\":\"License No\"},{\"type\":\"text\",\"label\":\"Full Address\"},{\"type\":\"text\",\"label\":\"Phone Number\"},{\"type\":\"file\",\"label\":\"Tax Papers\"}]', NULL, '2019-02-03 11:36:58', '2019-02-16 06:14:42'), -(19, 'google_analytics', '0', NULL, '2019-02-06 12:22:35', '2019-02-06 12:22:35'), -(20, 'facebook_login', '0', NULL, '2019-02-07 12:51:59', '2019-02-08 19:41:15'), -(21, 'google_login', '0', NULL, '2019-02-07 12:52:10', '2019-02-08 19:41:14'), -(22, 'twitter_login', '0', NULL, '2019-02-07 12:52:20', '2019-02-08 02:32:56'), -(23, 'payumoney_payment', '1', NULL, '2019-03-05 11:38:17', '2019-03-05 11:38:17'), -(24, 'payumoney_sandbox', '1', NULL, '2019-03-05 11:38:17', '2019-03-05 05:39:18'), -(36, 'facebook_chat', '0', NULL, '2019-04-15 11:45:04', '2019-04-15 11:45:04'), -(37, 'email_verification', '0', NULL, '2019-04-30 07:30:07', '2019-04-30 07:30:07'), -(38, 'wallet_system', '0', NULL, '2019-05-19 08:05:44', '2019-05-19 02:11:57'), -(39, 'coupon_system', '0', NULL, '2019-06-11 09:46:18', '2019-06-11 09:46:18'), -(40, 'current_version', '7.0.0', NULL, '2019-06-11 09:46:18', '2019-06-11 09:46:18'), -(41, 'instamojo_payment', '0', NULL, '2019-07-06 09:58:03', '2019-07-06 09:58:03'), -(42, 'instamojo_sandbox', '1', NULL, '2019-07-06 09:58:43', '2019-07-06 09:58:43'), -(43, 'razorpay', '0', NULL, '2019-07-06 09:58:43', '2019-07-06 09:58:43'), -(44, 'paystack', '0', NULL, '2019-07-21 13:00:38', '2019-07-21 13:00:38'), -(45, 'pickup_point', '0', NULL, '2019-10-17 11:50:39', '2019-10-17 11:50:39'), -(46, 'maintenance_mode', '0', NULL, '2019-10-17 11:51:04', '2019-10-17 11:51:04'), -(47, 'voguepay', '0', NULL, '2019-10-17 11:51:24', '2019-10-17 11:51:24'), -(48, 'voguepay_sandbox', '0', NULL, '2019-10-17 11:51:38', '2019-10-17 11:51:38'), -(50, 'category_wise_commission', '0', NULL, '2020-01-21 07:22:47', '2020-01-21 07:22:47'), -(51, 'conversation_system', '1', NULL, '2020-01-21 07:23:21', '2020-01-21 07:23:21'), -(52, 'guest_checkout_active', '1', NULL, '2020-01-22 07:36:38', '2020-01-22 07:36:38'), -(53, 'facebook_pixel', '0', NULL, '2020-01-22 11:43:58', '2020-01-22 11:43:58'), -(55, 'classified_product', '0', NULL, '2020-05-13 13:01:05', '2020-05-13 13:01:05'), -(56, 'pos_activation_for_seller', '1', NULL, '2020-06-11 09:45:02', '2020-06-11 09:45:02'), -(57, 'shipping_type', 'product_wise_shipping', NULL, '2020-07-01 13:49:56', '2020-07-01 13:49:56'), -(58, 'flat_rate_shipping_cost', '0', NULL, '2020-07-01 13:49:56', '2020-07-01 13:49:56'), -(59, 'shipping_cost_admin', '0', NULL, '2020-07-01 13:49:56', '2020-07-01 13:49:56'), -(60, 'payhere_sandbox', '0', NULL, '2020-07-30 18:23:53', '2020-07-30 18:23:53'), -(61, 'payhere', '0', NULL, '2020-07-30 18:23:53', '2020-07-30 18:23:53'), -(62, 'google_recaptcha', '0', NULL, '2020-08-17 07:13:37', '2020-08-17 07:13:37'), -(63, 'ngenius', '0', NULL, '2020-09-22 10:58:21', '2020-09-22 10:58:21'), -(64, 'header_logo', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(65, 'show_language_switcher', 'on', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(66, 'show_currency_switcher', 'on', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(67, 'header_stikcy', 'on', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(68, 'footer_logo', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(69, 'about_us_description', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(70, 'contact_address', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(71, 'contact_phone', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(72, 'contact_email', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(73, 'widget_one_labels', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(74, 'widget_one_links', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(75, 'widget_one', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(76, 'frontend_copyright_text', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(77, 'show_social_links', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(78, 'facebook_link', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(79, 'twitter_link', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(80, 'instagram_link', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(81, 'youtube_link', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(82, 'linkedin_link', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(83, 'payment_method_images', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(84, 'home_slider_images', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(85, 'home_slider_links', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(86, 'home_banner1_images', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(87, 'home_banner1_links', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(88, 'home_banner2_images', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(89, 'home_banner2_links', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(90, 'home_categories', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(91, 'top10_categories', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(92, 'top10_brands', '[]', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(93, 'website_name', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(94, 'site_motto', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(95, 'site_icon', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(96, 'base_color', '#e62e04', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(97, 'base_hov_color', '#e62e04', NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(98, 'meta_title', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(99, 'meta_description', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(100, 'meta_keywords', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(101, 'meta_image', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(102, 'site_name', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(103, 'system_logo_white', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(104, 'system_logo_black', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(105, 'timezone', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(106, 'admin_login_background', NULL, NULL, '2020-11-16 07:26:36', '2020-11-16 07:26:36'), -(107, 'iyzico_sandbox', '1', NULL, '2020-12-30 16:45:56', '2020-12-30 16:45:56'), -(108, 'iyzico', '1', NULL, '2020-12-30 16:45:56', '2020-12-30 16:45:56'), -(109, 'decimal_separator', '1', NULL, '2020-12-30 16:45:56', '2020-12-30 16:45:56'), -(110, 'nagad', '0', NULL, '2021-01-22 10:30:03', '2021-01-22 10:30:03'), -(111, 'bkash', '0', NULL, '2021-01-22 10:30:03', '2021-01-22 10:30:03'), -(112, 'bkash_sandbox', '1', NULL, '2021-01-22 10:30:03', '2021-01-22 10:30:03'), -(113, 'header_menu_labels', '[\"Home\",\"Flash Sale\",\"Blogs\",\"All Brands\",\"All Categories\"]', NULL, '2021-02-16 02:43:11', '2021-02-16 02:52:18'), -(114, 'header_menu_links', '[\"http:\\/\\/domain.com\",\"http:\\/\\/domain.com\\/flash-deals\",\"http:\\/\\/domain.com\\/blog\",\"http:\\/\\/domain.com\\/brands\",\"http:\\/\\/domain.com\\/categories\"]', NULL, '2021-02-16 02:43:11', '2021-02-18 01:20:04'), -(115, 'proxypay', '1', NULL, '2021-06-20 11:25:42', '2021-06-20 11:25:42'), -(116, 'proxypay_sandbox', '1', NULL, '2021-06-20 11:25:42', '2021-06-20 11:25:42'), -(117, 'google_map', '0', NULL, '2021-07-27 15:49:39', '2021-07-27 15:49:39'), -(118, 'google_firebase', '0', NULL, '2021-07-27 15:49:39', '2021-07-27 15:49:39'), -(119, 'authorizenet_sandbox', '1', NULL, '2021-02-16 02:43:11', '2021-06-14 05:00:23'), -(120, 'min_order_amount_check_activat', NULL, NULL, '2022-04-17 06:57:17', '2022-04-17 06:57:17'), -(121, 'minimum_order_amount', NULL, NULL, '2022-04-17 06:57:17', '2022-04-17 06:57:17'), -(122, 'item_name', 'eCommerce', NULL, '2022-04-17 06:57:17', '2022-04-17 06:57:17'); - --- -------------------------------------------------------- - --- --- Table structure for table `carriers` --- - -CREATE TABLE `carriers` ( - `id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `logo` int(11) DEFAULT NULL, - `transit_time` varchar(255) NOT NULL, - `free_shipping` tinyint(1) NOT NULL DEFAULT 0, - `status` tinyint(1) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; - --- -------------------------------------------------------- - --- --- Table structure for table `carrier_ranges` --- - -CREATE TABLE `carrier_ranges` ( - `id` int(11) NOT NULL, - `carrier_id` int(11) NOT NULL, - `billing_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL, - `delimiter1` double(25,2) NOT NULL, - `delimiter2` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `carrier_range_prices` --- - -CREATE TABLE `carrier_range_prices` ( - `id` int(11) NOT NULL, - `carrier_id` int(11) NOT NULL, - `carrier_range_id` int(11) NOT NULL, - `zone_id` int(11) NOT NULL, - `price` double(8,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `carts` --- - -CREATE TABLE `carts` ( - `id` int(11) UNSIGNED NOT NULL, - `owner_id` int(11) DEFAULT NULL, - `user_id` int(11) DEFAULT NULL, - `temp_user_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `address_id` int(11) NOT NULL DEFAULT 0, - `product_id` int(11) DEFAULT NULL, - `variation` text COLLATE utf8_unicode_ci DEFAULT NULL, - `price` double(20,2) DEFAULT 0.00, - `tax` double(20,2) DEFAULT 0.00, - `shipping_cost` double(20,2) NOT NULL DEFAULT 0.00, - `shipping_type` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `pickup_point` int(11) DEFAULT NULL, - `carrier_id` int(11) DEFAULT NULL, - `discount` double(10,2) NOT NULL DEFAULT 0.00, - `product_referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `coupon_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `coupon_applied` tinyint(4) NOT NULL DEFAULT 0, - `quantity` int(11) NOT NULL DEFAULT 0, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `categories` --- - -CREATE TABLE `categories` ( - `id` int(11) NOT NULL, - `parent_id` int(11) DEFAULT 0, - `level` int(11) NOT NULL DEFAULT 0, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `order_level` int(11) NOT NULL DEFAULT 0, - `commision_rate` double(8,2) NOT NULL DEFAULT 0.00, - `banner` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `icon` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `cover_image` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `featured` int(1) NOT NULL DEFAULT 0, - `top` int(1) NOT NULL DEFAULT 0, - `digital` int(1) NOT NULL DEFAULT 0, - `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_description` text COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `updated_at` timestamp NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `categories` --- - -INSERT INTO `categories` (`id`, `parent_id`, `level`, `name`, `order_level`, `commision_rate`, `banner`, `icon`, `cover_image`, `featured`, `top`, `digital`, `slug`, `meta_title`, `meta_description`, `created_at`, `updated_at`) VALUES -(1, 0, 0, 'Demo category 1', 0, 0.00, 'uploads/categories/banner/category-banner.jpg', 'uploads/categories/icon/KjJP9wuEZNL184XVUk3S7EiZ8NnBN99kiU4wdvp3.png', NULL, 1, 1, 0, 'Demo-category-1', 'Demo category 1', NULL, '2019-08-06 12:06:58', '2019-08-06 06:06:58'), -(2, 0, 0, 'Demo category 2', 0, 0.00, 'uploads/categories/banner/category-banner.jpg', 'uploads/categories/icon/h9XhWwI401u6sRoLITEk9SUMRAlWN8moGrpPfS6I.png', NULL, 1, 0, 0, 'Demo-category-2', 'Demo category 2', NULL, '2019-08-06 12:06:58', '2019-08-06 06:06:58'), -(3, 0, 0, 'Demo category 3', 0, 0.00, 'uploads/categories/banner/category-banner.jpg', 'uploads/categories/icon/rKAPw5rNlS84JtD9ZQqn366jwE11qyJqbzAe5yaA.png', NULL, 1, 1, 0, 'Demo-category-3', 'Demo category 3', NULL, '2019-08-06 12:06:58', '2019-08-06 06:06:58'); - --- -------------------------------------------------------- - --- --- Table structure for table `category_translations` --- - -CREATE TABLE `category_translations` ( - `id` bigint(20) NOT NULL, - `category_id` bigint(20) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `cities` --- - -CREATE TABLE `cities` ( - `id` bigint(20) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `state_id` int(11) NOT NULL, - `cost` double(20,2) NOT NULL DEFAULT 0.00, - `status` int(11) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `deleted_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `cities` --- - -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(1, 'Sed ea dolore offici', 1, 0.00, 0, '2021-04-06 01:13:42', '2021-10-11 00:51:51', NULL), -(2, 'Garacharma', 1, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3, 'Port Blair', 1, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4, 'Rangat', 1, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(5, 'Addanki', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(6, 'Adivivaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(7, 'Adoni', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(8, 'Aganampudi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(9, 'Ajjaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(10, 'Akividu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(11, 'Akkarampalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(12, 'Akkayapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(13, 'Akkireddipalem', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(14, 'Alampur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(15, 'Amalapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(16, 'Amudalavalasa', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(17, 'Amur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(18, 'Anakapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(19, 'Anantapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(20, 'Andole', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(21, 'Atmakur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(22, 'Attili', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(23, 'Avanigadda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(24, 'Badepalli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(25, 'Badvel', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(26, 'Balapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(27, 'Bandarulanka', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(28, 'Banganapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(29, 'Bapatla', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(30, 'Bapulapadu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(31, 'Belampalli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(32, 'Bestavaripeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(33, 'Betamcherla', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(34, 'Bhattiprolu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(35, 'Bhimavaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(36, 'Bhimunipatnam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(37, 'Bobbili', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(38, 'Bombuflat', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(39, 'Bommuru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(40, 'Bugganipalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(41, 'Challapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(42, 'Chandur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(43, 'Chatakonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(44, 'Chemmumiahpet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(45, 'Chidiga', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(46, 'Chilakaluripet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(47, 'Chimakurthy', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(48, 'Chinagadila', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(49, 'Chinagantyada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(50, 'Chinnachawk', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(51, 'Chintalavalasa', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(52, 'Chipurupalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(53, 'Chirala', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(54, 'Chittoor', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(55, 'Chodavaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(56, 'Choutuppal', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(57, 'Chunchupalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(58, 'Cuddapah', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(59, 'Cumbum', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(60, 'Darnakal', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(61, 'Dasnapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(62, 'Dauleshwaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(63, 'Dharmavaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(64, 'Dhone', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(65, 'Dommara Nandyal', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(66, 'Dowlaiswaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(67, 'East Godavari Dist.', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(68, 'Eddumailaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(69, 'Edulapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(70, 'Ekambara kuppam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(71, 'Eluru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(72, 'Enikapadu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(73, 'Fakirtakya', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(74, 'Farrukhnagar', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(75, 'Gaddiannaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(76, 'Gajapathinagaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(77, 'Gajularega', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(78, 'Gajuvaka', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(79, 'Gannavaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(80, 'Garacharma', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(81, 'Garimellapadu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(82, 'Giddalur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(83, 'Godavarikhani', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(84, 'Gopalapatnam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(85, 'Gopalur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(86, 'Gorrekunta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(87, 'Gudivada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(88, 'Gudur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(89, 'Guntakal', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(90, 'Guntur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(91, 'Guti', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(92, 'Hindupur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(93, 'Hukumpeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(94, 'Ichchapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(95, 'Isnapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(96, 'Jaggayyapeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(97, 'Jallaram Kamanpur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(98, 'Jammalamadugu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(99, 'Jangampalli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(100, 'Jarjapupeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(101, 'Kadiri', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(102, 'Kaikalur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(103, 'Kakinada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(104, 'Kallur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(105, 'Kalyandurg', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(106, 'Kamalapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(107, 'Kamareddi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(108, 'Kanapaka', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(109, 'Kanigiri', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(110, 'Kanithi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(111, 'Kankipadu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(112, 'Kantabamsuguda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(113, 'Kanuru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(114, 'Karnul', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(115, 'Katheru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(116, 'Kavali', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(117, 'Kazipet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(118, 'Khanapuram Haveli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(119, 'Kodar', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(120, 'Kollapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(121, 'Kondapalem', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(122, 'Kondapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(123, 'Kondukur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(124, 'Kosgi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(125, 'Kothavalasa', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(126, 'Kottapalli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(127, 'Kovur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(128, 'Kovurpalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(129, 'Kovvur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(130, 'Krishna', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(131, 'Kuppam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(132, 'Kurmannapalem', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(133, 'Kurnool', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(134, 'Lakshettipet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(135, 'Lalbahadur Nagar', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(136, 'Machavaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(137, 'Macherla', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(138, 'Machilipatnam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(139, 'Madanapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(140, 'Madaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(141, 'Madhuravada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(142, 'Madikonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(143, 'Madugule', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(144, 'Mahabubnagar', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(145, 'Mahbubabad', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(146, 'Malkajgiri', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(147, 'Mamilapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(148, 'Mancheral', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(149, 'Mandapeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(150, 'Mandasa', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(151, 'Mangalagiri', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(152, 'Manthani', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(153, 'Markapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(154, 'Marturu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(155, 'Metpalli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(156, 'Mindi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(157, 'Mirpet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(158, 'Moragudi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(159, 'Mothugudam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(160, 'Nagari', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(161, 'Nagireddipalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(162, 'Nandigama', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(163, 'Nandikotkur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(164, 'Nandyal', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(165, 'Narasannapeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(166, 'Narasapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(167, 'Narasaraopet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(168, 'Narayanavanam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(169, 'Narsapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(170, 'Narsingi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(171, 'Narsipatnam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(172, 'Naspur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(173, 'Nathayyapalem', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(174, 'Nayudupeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(175, 'Nelimaria', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(176, 'Nellore', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(177, 'Nidadavole', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(178, 'Nuzvid', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(179, 'Omerkhan daira', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(180, 'Ongole', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(181, 'Osmania University', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(182, 'Pakala', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(183, 'Palakole', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(184, 'Palakurthi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(185, 'Palasa', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(186, 'Palempalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(187, 'Palkonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(188, 'Palmaner', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(189, 'Pamur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(190, 'Panjim', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(191, 'Papampeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(192, 'Parasamba', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(193, 'Parvatipuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(194, 'Patancheru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(195, 'Payakaraopet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(196, 'Pedagantyada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(197, 'Pedana', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(198, 'Peddapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(199, 'Pendurthi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(200, 'Penugonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(201, 'Penukonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(202, 'Phirangipuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(203, 'Pithapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(204, 'Ponnur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(205, 'Port Blair', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(206, 'Pothinamallayyapalem', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(207, 'Prakasam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(208, 'Prasadampadu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(209, 'Prasantinilayam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(210, 'Proddatur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(211, 'Pulivendla', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(212, 'Punganuru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(213, 'Puttur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(214, 'Qutubullapur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(215, 'Rajahmundry', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(216, 'Rajamahendri', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(217, 'Rajampet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(218, 'Rajendranagar', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(219, 'Rajoli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(220, 'Ramachandrapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(221, 'Ramanayyapeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(222, 'Ramapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(223, 'Ramarajupalli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(224, 'Ramavarappadu', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(225, 'Rameswaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(226, 'Rampachodavaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(227, 'Ravulapalam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(228, 'Rayachoti', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(229, 'Rayadrug', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(230, 'Razam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(231, 'Razole', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(232, 'Renigunta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(233, 'Repalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(234, 'Rishikonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(235, 'Salur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(236, 'Samalkot', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(237, 'Sattenapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(238, 'Seetharampuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(239, 'Serilungampalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(240, 'Shankarampet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(241, 'Shar', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(242, 'Singarayakonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(243, 'Sirpur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(244, 'Sirsilla', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(245, 'Sompeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(246, 'Sriharikota', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(247, 'Srikakulam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(248, 'Srikalahasti', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(249, 'Sriramnagar', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(250, 'Sriramsagar', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(251, 'Srisailam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(252, 'Srisailamgudem Devasthanam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(253, 'Sulurpeta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(254, 'Suriapet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(255, 'Suryaraopet', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(256, 'Tadepalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(257, 'Tadepalligudem', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(258, 'Tadpatri', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(259, 'Tallapalle', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(260, 'Tanuku', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(261, 'Tekkali', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(262, 'Tenali', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(263, 'Tigalapahad', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(264, 'Tiruchanur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(265, 'Tirumala', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(266, 'Tirupati', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(267, 'Tirvuru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(268, 'Trimulgherry', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(269, 'Tuni', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(270, 'Turangi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(271, 'Ukkayapalli', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(272, 'Ukkunagaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(273, 'Uppal Kalan', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(274, 'Upper Sileru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(275, 'Uravakonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(276, 'Vadlapudi', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(277, 'Vaparala', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(278, 'Vemalwada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(279, 'Venkatagiri', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(280, 'Venkatapuram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(281, 'Vepagunta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(282, 'Vetapalem', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(283, 'Vijayapuri', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(284, 'Vijayapuri South', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(285, 'Vijayawada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(286, 'Vinukonda', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(287, 'Visakhapatnam', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(288, 'Vizianagaram', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(289, 'Vuyyuru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(290, 'Wanparti', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(291, 'West Godavari Dist.', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(292, 'Yadagirigutta', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(293, 'Yarada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(294, 'Yellamanchili', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(295, 'Yemmiganur', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(296, 'Yenamalakudru', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(297, 'Yendada', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(298, 'Yerraguntla', 2, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(299, 'Along', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(300, 'Basar', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(301, 'Bondila', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(302, 'Changlang', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(303, 'Daporijo', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(304, 'Deomali', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(305, 'Itanagar', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(306, 'Jairampur', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(307, 'Khonsa', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(308, 'Naharlagun', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(309, 'Namsai', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(310, 'Pasighat', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(311, 'Roing', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(312, 'Seppa', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(313, 'Tawang', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(314, 'Tezu', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(315, 'Ziro', 3, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(316, 'Abhayapuri', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(317, 'Ambikapur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(318, 'Amguri', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(319, 'Anand Nagar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(320, 'Badarpur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(321, 'Badarpur Railway Town', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(322, 'Bahbari Gaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(323, 'Bamun Sualkuchi', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(324, 'Barbari', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(325, 'Barpathar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(326, 'Barpeta', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(327, 'Barpeta Road', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(328, 'Basugaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(329, 'Bihpuria', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(330, 'Bijni', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(331, 'Bilasipara', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(332, 'Biswanath Chariali', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(333, 'Bohori', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(334, 'Bokajan', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(335, 'Bokokhat', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(336, 'Bongaigaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(337, 'Bongaigaon Petro-chemical Town', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(338, 'Borgolai', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(339, 'Chabua', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(340, 'Chandrapur Bagicha', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(341, 'Chapar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(342, 'Chekonidhara', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(343, 'Choto Haibor', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(344, 'Dergaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(345, 'Dharapur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(346, 'Dhekiajuli', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(347, 'Dhemaji', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(348, 'Dhing', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(349, 'Dhubri', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(350, 'Dhuburi', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(351, 'Dibrugarh', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(352, 'Digboi', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(353, 'Digboi Oil Town', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(354, 'Dimaruguri', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(355, 'Diphu', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(356, 'Dispur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(357, 'Doboka', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(358, 'Dokmoka', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(359, 'Donkamokan', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(360, 'Duliagaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(361, 'Duliajan', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(362, 'Duliajan No.1', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(363, 'Dum Duma', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(364, 'Durga Nagar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(365, 'Gauripur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(366, 'Goalpara', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(367, 'Gohpur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(368, 'Golaghat', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(369, 'Golakganj', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(370, 'Gossaigaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(371, 'Guwahati', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(372, 'Haflong', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(373, 'Hailakandi', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(374, 'Hamren', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(375, 'Hauli', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(376, 'Hauraghat', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(377, 'Hojai', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(378, 'Jagiroad', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(379, 'Jagiroad Paper Mill', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(380, 'Jogighopa', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(381, 'Jonai Bazar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(382, 'Jorhat', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(383, 'Kampur Town', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(384, 'Kamrup', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(385, 'Kanakpur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(386, 'Karimganj', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(387, 'Kharijapikon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(388, 'Kharupetia', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(389, 'Kochpara', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(390, 'Kokrajhar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(391, 'Kumar Kaibarta Gaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(392, 'Lakhimpur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(393, 'Lakhipur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(394, 'Lala', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(395, 'Lanka', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(396, 'Lido Tikok', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(397, 'Lido Town', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(398, 'Lumding', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(399, 'Lumding Railway Colony', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(400, 'Mahur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(401, 'Maibong', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(402, 'Majgaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(403, 'Makum', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(404, 'Mangaldai', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(405, 'Mankachar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(406, 'Margherita', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(407, 'Mariani', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(408, 'Marigaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(409, 'Moran', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(410, 'Moranhat', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(411, 'Nagaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(412, 'Naharkatia', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(413, 'Nalbari', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(414, 'Namrup', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(415, 'Naubaisa Gaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(416, 'Nazira', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(417, 'New Bongaigaon Railway Colony', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(418, 'Niz-Hajo', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(419, 'North Guwahati', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(420, 'Numaligarh', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(421, 'Palasbari', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(422, 'Panchgram', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(423, 'Pathsala', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(424, 'Raha', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(425, 'Rangapara', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(426, 'Rangia', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(427, 'Salakati', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(428, 'Sapatgram', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(429, 'Sarthebari', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(430, 'Sarupathar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(431, 'Sarupathar Bengali', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(432, 'Senchoagaon', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(433, 'Sibsagar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(434, 'Silapathar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(435, 'Silchar', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(436, 'Silchar Part-X', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(437, 'Sonari', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(438, 'Sorbhog', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(439, 'Sualkuchi', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(440, 'Tangla', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(441, 'Tezpur', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(442, 'Tihu', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(443, 'Tinsukia', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(444, 'Titabor', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(445, 'Udalguri', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(446, 'Umrangso', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(447, 'Uttar Krishnapur Part-I', 4, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(448, 'Amarpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(449, 'Ara', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(450, 'Araria', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(451, 'Areraj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(452, 'Asarganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(453, 'Aurangabad', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(454, 'Bagaha', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(455, 'Bahadurganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(456, 'Bairgania', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(457, 'Bakhtiyarpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(458, 'Banka', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(459, 'Banmankhi', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(460, 'Bar Bigha', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(461, 'Barauli', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(462, 'Barauni Oil Township', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(463, 'Barh', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(464, 'Barhiya', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(465, 'Bariapur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(466, 'Baruni', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(467, 'Begusarai', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(468, 'Behea', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(469, 'Belsand', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(470, 'Bettiah', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(471, 'Bhabua', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(472, 'Bhagalpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(473, 'Bhimnagar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(474, 'Bhojpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(475, 'Bihar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(476, 'Bihar Sharif', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(477, 'Bihariganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(478, 'Bikramganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(479, 'Birpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(480, 'Bodh Gaya', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(481, 'Buxar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(482, 'Chakia', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(483, 'Chanpatia', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(484, 'Chhapra', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(485, 'Chhatapur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(486, 'Colgong', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(487, 'Dalsingh Sarai', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(488, 'Darbhanga', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(489, 'Daudnagar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(490, 'Dehri', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(491, 'Dhaka', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(492, 'Dighwara', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(493, 'Dinapur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(494, 'Dinapur Cantonment', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(495, 'Dumra', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(496, 'Dumraon', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(497, 'Fatwa', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(498, 'Forbesganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(499, 'Gaya', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(500, 'Gazipur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(501, 'Ghoghardiha', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(502, 'Gogri Jamalpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(503, 'Gopalganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(504, 'Habibpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(505, 'Hajipur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(506, 'Hasanpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(507, 'Hazaribagh', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(508, 'Hilsa', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(509, 'Hisua', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(510, 'Islampur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(511, 'Jagdispur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(512, 'Jahanabad', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(513, 'Jamalpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(514, 'Jamhaur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(515, 'Jamui', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(516, 'Janakpur Road', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(517, 'Janpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(518, 'Jaynagar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(519, 'Jha Jha', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(520, 'Jhanjharpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(521, 'Jogbani', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(522, 'Kanti', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(523, 'Kasba', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(524, 'Kataiya', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(525, 'Katihar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(526, 'Khagaria', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(527, 'Khagaul', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(528, 'Kharagpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(529, 'Khusrupur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(530, 'Kishanganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(531, 'Koath', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(532, 'Koilwar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(533, 'Lakhisarai', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(534, 'Lalganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(535, 'Lauthaha', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(536, 'Madhepura', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(537, 'Madhubani', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(538, 'Maharajganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(539, 'Mahnar Bazar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(540, 'Mairwa', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(541, 'Makhdumpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(542, 'Maner', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(543, 'Manihari', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(544, 'Marhaura', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(545, 'Masaurhi', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(546, 'Mirganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(547, 'Mohiuddinagar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(548, 'Mokama', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(549, 'Motihari', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(550, 'Motipur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(551, 'Munger', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(552, 'Murliganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(553, 'Muzaffarpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(554, 'Nabinagar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(555, 'Narkatiaganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(556, 'Nasriganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(557, 'Natwar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(558, 'Naugachhia', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(559, 'Nawada', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(560, 'Nirmali', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(561, 'Nokha', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(562, 'Paharpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(563, 'Patna', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(564, 'Phulwari', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(565, 'Piro', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(566, 'Purnia', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(567, 'Pusa', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(568, 'Rafiganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(569, 'Raghunathpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(570, 'Rajgir', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(571, 'Ramnagar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(572, 'Raxaul', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(573, 'Revelganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(574, 'Rusera', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(575, 'Sagauli', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(576, 'Saharsa', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(577, 'Samastipur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(578, 'Sasaram', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(579, 'Shahpur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(580, 'Shaikhpura', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(581, 'Sherghati', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(582, 'Shivhar', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(583, 'Silao', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(584, 'Sitamarhi', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(585, 'Siwan', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(586, 'Sonepur', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(587, 'Sultanganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(588, 'Supaul', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(589, 'Teghra', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(590, 'Tekari', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(591, 'Thakurganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(592, 'Vaishali', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(593, 'Waris Aliganj', 5, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(594, 'Chandigarh', 6, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(595, 'Ahiwara', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(596, 'Akaltara', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(597, 'Ambagarh Chauki', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(598, 'Ambikapur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(599, 'Arang', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(600, 'Bade Bacheli', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(601, 'Bagbahara', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(602, 'Baikunthpur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(603, 'Balod', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(604, 'Baloda', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(605, 'Baloda Bazar', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(606, 'Banarsi', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(607, 'Basna', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(608, 'Bemetra', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(609, 'Bhanpuri', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(610, 'Bhatapara', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(611, 'Bhatgaon', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(612, 'Bhilai', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(613, 'Bilaspur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(614, 'Bilha', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(615, 'Birgaon', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(616, 'Bodri', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(617, 'Champa', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(618, 'Charcha', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(619, 'Charoda', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(620, 'Chhuikhadan', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(621, 'Chirmiri', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(622, 'Dantewada', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(623, 'Deori', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(624, 'Dhamdha', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(625, 'Dhamtari', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(626, 'Dharamjaigarh', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(627, 'Dipka', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(628, 'Doman Hill Colliery', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(629, 'Dongargaon', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(630, 'Dongragarh', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(631, 'Durg', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(632, 'Frezarpur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(633, 'Gandai', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(634, 'Gariaband', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(635, 'Gaurela', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(636, 'Gelhapani', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(637, 'Gharghoda', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(638, 'Gidam', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(639, 'Gobra Nawapara', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(640, 'Gogaon', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(641, 'Hatkachora', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(642, 'Jagdalpur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(643, 'Jamui', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(644, 'Jashpurnagar', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(645, 'Jhagrakhand', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(646, 'Kanker', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(647, 'Katghora', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(648, 'Kawardha', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(649, 'Khairagarh', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(650, 'Khamhria', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(651, 'Kharod', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(652, 'Kharsia', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(653, 'Khonga Pani', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(654, 'Kirandu', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(655, 'Kirandul', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(656, 'Kohka', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(657, 'Kondagaon', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(658, 'Korba', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(659, 'Korea', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(660, 'Koria Block', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(661, 'Kota', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(662, 'Kumhari', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(663, 'Kumud Katta', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(664, 'Kurasia', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(665, 'Kurud', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(666, 'Lingiyadih', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(667, 'Lormi', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(668, 'Mahasamund', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(669, 'Mahendragarh', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(670, 'Mehmand', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(671, 'Mongra', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(672, 'Mowa', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(673, 'Mungeli', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(674, 'Nailajanjgir', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(675, 'Namna Kalan', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(676, 'Naya Baradwar', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(677, 'Pandariya', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(678, 'Patan', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(679, 'Pathalgaon', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(680, 'Pendra', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(681, 'Phunderdihari', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(682, 'Pithora', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(683, 'Raigarh', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(684, 'Raipur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(685, 'Rajgamar', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(686, 'Rajhara', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(687, 'Rajnandgaon', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(688, 'Ramanuj Ganj', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(689, 'Ratanpur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(690, 'Sakti', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(691, 'Saraipali', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(692, 'Sarajpur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(693, 'Sarangarh', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(694, 'Shivrinarayan', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(695, 'Simga', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(696, 'Sirgiti', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(697, 'Takhatpur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(698, 'Telgaon', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(699, 'Tildanewra', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(700, 'Urla', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(701, 'Vishrampur', 7, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(702, 'Amli', 8, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(703, 'Silvassa', 8, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(704, 'Daman', 9, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(705, 'Diu', 9, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(706, 'Delhi', 10, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(707, 'New Delhi', 10, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(708, 'Aldona', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(709, 'Altinho', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(710, 'Aquem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(711, 'Arpora', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(712, 'Bambolim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(713, 'Bandora', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(714, 'Bardez', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(715, 'Benaulim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(716, 'Betora', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(717, 'Bicholim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(718, 'Calapor', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(719, 'Candolim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(720, 'Caranzalem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(721, 'Carapur', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(722, 'Chicalim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(723, 'Chimbel', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(724, 'Chinchinim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(725, 'Colvale', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(726, 'Corlim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(727, 'Cortalim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(728, 'Cuncolim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(729, 'Curchorem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(730, 'Curti', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(731, 'Davorlim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(732, 'Dona Paula', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(733, 'Goa', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(734, 'Guirim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(735, 'Jua', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(736, 'Kalangat', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(737, 'Kankon', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(738, 'Kundaim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(739, 'Loutulim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(740, 'Madgaon', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(741, 'Mapusa', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(742, 'Margao', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(743, 'Margaon', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(744, 'Miramar', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(745, 'Morjim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(746, 'Mormugao', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(747, 'Navelim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(748, 'Pale', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(749, 'Panaji', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(750, 'Parcem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(751, 'Parra', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(752, 'Penha de Franca', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(753, 'Pernem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(754, 'Pilerne', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(755, 'Pissurlem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(756, 'Ponda', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(757, 'Porvorim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(758, 'Quepem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(759, 'Queula', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(760, 'Raia', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(761, 'Reis Magos', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(762, 'Salcette', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(763, 'Saligao', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(764, 'Sancoale', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(765, 'Sanguem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(766, 'Sanquelim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(767, 'Sanvordem', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(768, 'Sao Jose-de-Areal', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(769, 'Sattari', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(770, 'Serula', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(771, 'Sinquerim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(772, 'Siolim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(773, 'Taleigao', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(774, 'Tivim', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(775, 'Valpoi', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(776, 'Varca', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(777, 'Vasco', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(778, 'Verna', 11, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(779, 'Abrama', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(780, 'Adalaj', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(781, 'Adityana', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(782, 'Advana', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(783, 'Ahmedabad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(784, 'Ahwa', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(785, 'Alang', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(786, 'Ambaji', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(787, 'Ambaliyasan', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(788, 'Amod', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(789, 'Amreli', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(790, 'Amroli', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(791, 'Anand', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(792, 'Andada', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(793, 'Anjar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(794, 'Anklav', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(795, 'Ankleshwar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(796, 'Anklesvar INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(797, 'Antaliya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(798, 'Arambhada', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(799, 'Asarma', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(800, 'Atul', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(801, 'Babra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(802, 'Bag-e-Firdosh', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(803, 'Bagasara', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(804, 'Bahadarpar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(805, 'Bajipura', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(806, 'Bajva', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(807, 'Balasinor', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(808, 'Banaskantha', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(809, 'Bansda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(810, 'Bantva', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(811, 'Bardoli', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(812, 'Barwala', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(813, 'Bayad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(814, 'Bechar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(815, 'Bedi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(816, 'Beyt', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(817, 'Bhachau', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(818, 'Bhanvad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(819, 'Bharuch', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(820, 'Bharuch INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(821, 'Bhavnagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(822, 'Bhayavadar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(823, 'Bhestan', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(824, 'Bhuj', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(825, 'Bilimora', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(826, 'Bilkha', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(827, 'Billimora', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(828, 'Bodakdev', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(829, 'Bodeli', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(830, 'Bopal', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(831, 'Boria', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(832, 'Boriavi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(833, 'Borsad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(834, 'Botad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(835, 'Cambay', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(836, 'Chaklasi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(837, 'Chala', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(838, 'Chalala', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(839, 'Chalthan', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(840, 'Chanasma', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(841, 'Chandisar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(842, 'Chandkheda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(843, 'Chanod', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(844, 'Chaya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(845, 'Chenpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(846, 'Chhapi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(847, 'Chhaprabhatha', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(848, 'Chhatral', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(849, 'Chhota Udepur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(850, 'Chikhli', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(851, 'Chiloda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(852, 'Chorvad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(853, 'Chotila', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(854, 'Dabhoi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(855, 'Dadara', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(856, 'Dahod', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(857, 'Dakor', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(858, 'Damnagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(859, 'Deesa', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(860, 'Delvada', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(861, 'Devgadh Baria', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(862, 'Devsar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(863, 'Dhandhuka', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(864, 'Dhanera', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(865, 'Dhangdhra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(866, 'Dhansura', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(867, 'Dharampur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(868, 'Dhari', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(869, 'Dhola', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(870, 'Dholka', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(871, 'Dholka Rural', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(872, 'Dhoraji', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(873, 'Dhrangadhra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(874, 'Dhrol', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(875, 'Dhuva', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(876, 'Dhuwaran', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(877, 'Digvijaygram', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(878, 'Disa', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(879, 'Dungar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(880, 'Dungarpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(881, 'Dungra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(882, 'Dwarka', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(883, 'Flelanganj', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(884, 'GSFC Complex', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(885, 'Gadhda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(886, 'Gandevi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(887, 'Gandhidham', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(888, 'Gandhinagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(889, 'Gariadhar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(890, 'Ghogha', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(891, 'Godhra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(892, 'Gondal', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(893, 'Hajira INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(894, 'Halol', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(895, 'Halvad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(896, 'Hansot', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(897, 'Harij', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(898, 'Himatnagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(899, 'Ichchhapor', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(900, 'Idar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(901, 'Jafrabad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(902, 'Jalalpore', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(903, 'Jambusar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(904, 'Jamjodhpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(905, 'Jamnagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(906, 'Jasdan', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(907, 'Jawaharnagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(908, 'Jetalsar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(909, 'Jetpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(910, 'Jodiya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(911, 'Joshipura', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(912, 'Junagadh', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(913, 'Kadi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(914, 'Kadodara', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(915, 'Kalavad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(916, 'Kali', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(917, 'Kaliawadi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(918, 'Kalol', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(919, 'Kalol INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(920, 'Kandla', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(921, 'Kanjari', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(922, 'Kanodar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(923, 'Kapadwanj', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(924, 'Karachiya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(925, 'Karamsad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(926, 'Karjan', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(927, 'Kathial', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(928, 'Kathor', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(929, 'Katpar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(930, 'Kavant', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(931, 'Keshod', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(932, 'Kevadiya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(933, 'Khambhaliya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(934, 'Khambhat', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(935, 'Kharaghoda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(936, 'Khed Brahma', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(937, 'Kheda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(938, 'Kheralu', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(939, 'Kodinar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(940, 'Kosamba', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(941, 'Kundla', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(942, 'Kutch', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(943, 'Kutiyana', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(944, 'Lakhtar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(945, 'Lalpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(946, 'Lambha', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(947, 'Lathi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(948, 'Limbdi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(949, 'Limla', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(950, 'Lunavada', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(951, 'Madhapar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(952, 'Maflipur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(953, 'Mahemdavad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(954, 'Mahudha', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(955, 'Mahuva', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(956, 'Mahuvar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(957, 'Makarba', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(958, 'Makarpura', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(959, 'Makassar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(960, 'Maktampur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(961, 'Malia', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(962, 'Malpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(963, 'Manavadar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(964, 'Mandal', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(965, 'Mandvi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(966, 'Mangrol', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(967, 'Mansa', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(968, 'Meghraj', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(969, 'Mehsana', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(970, 'Mendarla', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(971, 'Mithapur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(972, 'Modasa', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(973, 'Mogravadi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(974, 'Morbi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(975, 'Morvi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(976, 'Mundra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(977, 'Nadiad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(978, 'Naliya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(979, 'Nanakvada', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(980, 'Nandej', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(981, 'Nandesari', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(982, 'Nandesari INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(983, 'Naroda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(984, 'Navagadh', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(985, 'Navagam Ghed', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(986, 'Navsari', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(987, 'Ode', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(988, 'Okaf', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(989, 'Okha', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(990, 'Olpad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(991, 'Paddhari', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(992, 'Padra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(993, 'Palanpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(994, 'Palej', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(995, 'Pali', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(996, 'Palitana', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(997, 'Paliyad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(998, 'Pandesara', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(999, 'Panoli', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1000, 'Pardi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1001, 'Parnera', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1002, 'Parvat', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1003, 'Patan', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1004, 'Patdi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1005, 'Petlad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1006, 'Petrochemical Complex', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1007, 'Porbandar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1008, 'Prantij', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1009, 'Radhanpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1010, 'Raiya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1011, 'Rajkot', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1012, 'Rajpipla', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1013, 'Rajula', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1014, 'Ramod', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1015, 'Ranavav', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1016, 'Ranoli', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1017, 'Rapar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1018, 'Sahij', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1019, 'Salaya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1020, 'Sanand', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1021, 'Sankheda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1022, 'Santrampur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1023, 'Saribujrang', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1024, 'Sarigam INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1025, 'Sayan', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1026, 'Sayla', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1027, 'Shahpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1028, 'Shahwadi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1029, 'Shapar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1030, 'Shivrajpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1031, 'Siddhapur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1032, 'Sidhpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1033, 'Sihor', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1034, 'Sika', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1035, 'Singarva', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1036, 'Sinor', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1037, 'Sojitra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1038, 'Sola', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1039, 'Songadh', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1040, 'Suraj Karadi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1041, 'Surat', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1042, 'Surendranagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1043, 'Talaja', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1044, 'Talala', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1045, 'Talod', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1046, 'Tankara', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1047, 'Tarsali', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1048, 'Thangadh', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1049, 'Tharad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1050, 'Thasra', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1051, 'Udyognagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1052, 'Ukai', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1053, 'Umbergaon', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1054, 'Umbergaon INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1055, 'Umrala', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1056, 'Umreth', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1057, 'Un', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1058, 'Una', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1059, 'Unjha', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1060, 'Upleta', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1061, 'Utran', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1062, 'Uttarsanda', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1063, 'V.U. Nagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1064, 'V.V. Nagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1065, 'Vadia', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1066, 'Vadla', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1067, 'Vadnagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1068, 'Vadodara', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1069, 'Vaghodia INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1070, 'Valbhipur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1071, 'Vallabh Vidyanagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1072, 'Valsad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1073, 'Valsad INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1074, 'Vanthali', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1075, 'Vapi', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1076, 'Vapi INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1077, 'Vartej', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1078, 'Vasad', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1079, 'Vasna Borsad INA', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1080, 'Vaso', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1081, 'Veraval', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1082, 'Vidyanagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1083, 'Vijalpor', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1084, 'Vijapur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1085, 'Vinchhiya', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1086, 'Vinzol', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1087, 'Virpur', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1088, 'Visavadar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1089, 'Visnagar', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1090, 'Vyara', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1091, 'Wadhwan', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1092, 'Waghai', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1093, 'Waghodia', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1094, 'Wankaner', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1095, 'Zalod', 12, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1096, 'Ambala', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1097, 'Ambala Cantt', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1098, 'Asan Khurd', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1099, 'Asandh', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1100, 'Ateli', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1101, 'Babiyal', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1102, 'Bahadurgarh', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1103, 'Ballabgarh', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1104, 'Barwala', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1105, 'Bawal', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1106, 'Bawani Khera', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1107, 'Beri', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1108, 'Bhiwani', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1109, 'Bilaspur', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1110, 'Buria', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1111, 'Charkhi Dadri', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1112, 'Chhachhrauli', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1113, 'Chita', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1114, 'Dabwali', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1115, 'Dharuhera', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1116, 'Dundahera', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1117, 'Ellenabad', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1118, 'Farakhpur', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1119, 'Faridabad', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1120, 'Farrukhnagar', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1121, 'Fatehabad', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1122, 'Firozpur Jhirka', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1123, 'Gannaur', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1124, 'Ghraunda', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1125, 'Gohana', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1126, 'Gurgaon', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1127, 'Haileymandi', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1128, 'Hansi', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1129, 'Hasanpur', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1130, 'Hathin', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1131, 'Hisar', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1132, 'Hissar', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1133, 'Hodal', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1134, 'Indri', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1135, 'Jagadhri', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1136, 'Jakhal Mandi', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1137, 'Jhajjar', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1138, 'Jind', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1139, 'Julana', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1140, 'Kaithal', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1141, 'Kalanur', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1142, 'Kalanwali', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1143, 'Kalayat', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1144, 'Kalka', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1145, 'Kanina', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1146, 'Kansepur', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1147, 'Kardhan', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1148, 'Karnal', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1149, 'Kharkhoda', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1150, 'Kheri Sampla', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1151, 'Kundli', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1152, 'Kurukshetra', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1153, 'Ladrawan', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1154, 'Ladwa', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1155, 'Loharu', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1156, 'Maham', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1157, 'Mahendragarh', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1158, 'Mustafabad', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1159, 'Nagai Chaudhry', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1160, 'Narayangarh', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1161, 'Narnaul', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1162, 'Narnaund', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1163, 'Narwana', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1164, 'Nilokheri', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1165, 'Nuh', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1166, 'Palwal', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1167, 'Panchkula', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1168, 'Panipat', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1169, 'Panipat Taraf Ansar', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1170, 'Panipat Taraf Makhdum Zadgan', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1171, 'Panipat Taraf Rajputan', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1172, 'Pehowa', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1173, 'Pinjaur', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1174, 'Punahana', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1175, 'Pundri', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1176, 'Radaur', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1177, 'Raipur Rani', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1178, 'Rania', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1179, 'Ratiya', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1180, 'Rewari', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1181, 'Rohtak', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1182, 'Ropar', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1183, 'Sadauri', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1184, 'Safidon', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1185, 'Samalkha', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1186, 'Sankhol', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1187, 'Sasauli', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1188, 'Shahabad', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1189, 'Sirsa', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1190, 'Siwani', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1191, 'Sohna', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1192, 'Sonipat', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1193, 'Sukhrali', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1194, 'Taoru', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1195, 'Taraori', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1196, 'Tauru', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1197, 'Thanesar', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1198, 'Tilpat', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1199, 'Tohana', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1200, 'Tosham', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1201, 'Uchana', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1202, 'Uklana Mandi', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1203, 'Uncha Siwana', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1204, 'Yamunanagar', 13, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1205, 'Arki', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1206, 'Baddi', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1207, 'Bakloh', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1208, 'Banjar', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1209, 'Bhota', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1210, 'Bhuntar', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1211, 'Bilaspur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1212, 'Chamba', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1213, 'Chaupal', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1214, 'Chuari Khas', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1215, 'Dagshai', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1216, 'Dalhousie', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1217, 'Dalhousie Cantonment', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1218, 'Damtal', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1219, 'Daulatpur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(1220, 'Dera Gopipur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1221, 'Dhalli', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1222, 'Dharamshala', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1223, 'Gagret', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1224, 'Ghamarwin', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1225, 'Hamirpur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1226, 'Jawala Mukhi', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1227, 'Jogindarnagar', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1228, 'Jubbal', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1229, 'Jutogh', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1230, 'Kala Amb', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1231, 'Kalpa', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1232, 'Kangra', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1233, 'Kasauli', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1234, 'Kot Khai', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1235, 'Kullu', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1236, 'Kulu', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1237, 'Manali', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1238, 'Mandi', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1239, 'Mant Khas', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1240, 'Mehatpur Basdehra', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1241, 'Nadaun', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1242, 'Nagrota', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1243, 'Nahan', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1244, 'Naina Devi', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1245, 'Nalagarh', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1246, 'Narkanda', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1247, 'Nurpur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1248, 'Palampur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1249, 'Pandoh', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1250, 'Paonta Sahib', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1251, 'Parwanoo', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1252, 'Parwanu', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1253, 'Rajgarh', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1254, 'Rampur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1255, 'Rawalsar', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1256, 'Rohru', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1257, 'Sabathu', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1258, 'Santokhgarh', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1259, 'Sarahan', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1260, 'Sarka Ghat', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1261, 'Seoni', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1262, 'Shimla', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1263, 'Sirmaur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1264, 'Solan', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1265, 'Solon', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1266, 'Sundarnagar', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1267, 'Sundernagar', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1268, 'Talai', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1269, 'Theog', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1270, 'Tira Sujanpur', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1271, 'Una', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1272, 'Yol', 14, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1273, 'Achabal', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1274, 'Akhnur', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1275, 'Anantnag', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1276, 'Arnia', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1277, 'Awantipora', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1278, 'Badami Bagh', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1279, 'Bandipur', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1280, 'Banihal', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1281, 'Baramula', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1282, 'Baramulla', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1283, 'Bari Brahmana', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1284, 'Bashohli', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1285, 'Batote', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1286, 'Bhaderwah', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1287, 'Bijbiara', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1288, 'Billawar', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1289, 'Birwah', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1290, 'Bishna', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1291, 'Budgam', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1292, 'Charari Sharief', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1293, 'Chenani', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1294, 'Doda', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1295, 'Duru-Verinag', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1296, 'Gandarbat', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1297, 'Gho Manhasan', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1298, 'Gorah Salathian', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1299, 'Gulmarg', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1300, 'Hajan', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1301, 'Handwara', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1302, 'Hiranagar', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1303, 'Jammu', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1304, 'Jammu Cantonment', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1305, 'Jammu Tawi', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1306, 'Jourian', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1307, 'Kargil', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1308, 'Kathua', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1309, 'Katra', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1310, 'Khan Sahib', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1311, 'Khour', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1312, 'Khrew', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1313, 'Kishtwar', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1314, 'Kud', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1315, 'Kukernag', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1316, 'Kulgam', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1317, 'Kunzer', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1318, 'Kupwara', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1319, 'Lakhenpur', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1320, 'Leh', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1321, 'Magam', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1322, 'Mattan', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1323, 'Naushehra', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1324, 'Pahalgam', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1325, 'Pampore', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1326, 'Parole', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1327, 'Pattan', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1328, 'Pulwama', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1329, 'Punch', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1330, 'Qazigund', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1331, 'Rajauri', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1332, 'Ramban', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1333, 'Ramgarh', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1334, 'Ramnagar', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1335, 'Ranbirsingh Pora', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1336, 'Reasi', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1337, 'Rehambal', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1338, 'Samba', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1339, 'Shupiyan', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1340, 'Sopur', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1341, 'Srinagar', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1342, 'Sumbal', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1343, 'Sunderbani', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1344, 'Talwara', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1345, 'Thanamandi', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1346, 'Tral', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1347, 'Udhampur', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1348, 'Uri', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1349, 'Vijaypur', 15, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1350, 'Adityapur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1351, 'Amlabad', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1352, 'Angarpathar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1353, 'Ara', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1354, 'Babua Kalan', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1355, 'Bagbahra', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1356, 'Baliapur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1357, 'Baliari', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1358, 'Balkundra', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1359, 'Bandhgora', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1360, 'Barajamda', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1361, 'Barhi', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1362, 'Barka Kana', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1363, 'Barki Saraiya', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1364, 'Barughutu', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1365, 'Barwadih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1366, 'Basaria', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1367, 'Basukinath', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1368, 'Bermo', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1369, 'Bhagatdih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1370, 'Bhaurah', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1371, 'Bhojudih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1372, 'Bhuli', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1373, 'Bokaro', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1374, 'Borio Bazar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1375, 'Bundu', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1376, 'Chaibasa', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1377, 'Chaitudih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1378, 'Chakradharpur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1379, 'Chakulia', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1380, 'Chandaur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1381, 'Chandil', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1382, 'Chandrapura', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1383, 'Chas', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1384, 'Chatra', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1385, 'Chhatatanr', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1386, 'Chhotaputki', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1387, 'Chiria', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1388, 'Chirkunda', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1389, 'Churi', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1390, 'Daltenganj', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1391, 'Danguwapasi', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1392, 'Dari', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1393, 'Deoghar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1394, 'Deorikalan', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1395, 'Devghar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1396, 'Dhanbad', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1397, 'Dhanwar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1398, 'Dhaunsar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1399, 'Dugda', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1400, 'Dumarkunda', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1401, 'Dumka', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1402, 'Egarkunr', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1403, 'Gadhra', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1404, 'Garwa', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1405, 'Ghatsila', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1406, 'Ghorabandha', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1407, 'Gidi', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1408, 'Giridih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1409, 'Gobindpur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1410, 'Godda', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1411, 'Godhar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1412, 'Golphalbari', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1413, 'Gomoh', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1414, 'Gua', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1415, 'Gumia', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1416, 'Gumla', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1417, 'Haludbani', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1418, 'Hazaribag', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1419, 'Hesla', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1420, 'Husainabad', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1421, 'Isri', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1422, 'Jadugora', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1423, 'Jagannathpur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1424, 'Jamadoba', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1425, 'Jamshedpur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1426, 'Jamtara', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1427, 'Jarangdih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1428, 'Jaridih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1429, 'Jasidih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1430, 'Jena', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1431, 'Jharia', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1432, 'Jharia Khas', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1433, 'Jhinkpani', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1434, 'Jhumri Tilaiya', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1435, 'Jorapokhar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1436, 'Jugsalai', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1437, 'Kailudih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1438, 'Kalikapur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1439, 'Kandra', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1440, 'Kanke', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1441, 'Katras', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1442, 'Kedla', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1443, 'Kenduadih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1444, 'Kharkhari', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1445, 'Kharsawan', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1446, 'Khelari', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1447, 'Khunti', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1448, 'Kiri Buru', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1449, 'Kiriburu', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1450, 'Kodarma', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1451, 'Kuju', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1452, 'Kurpania', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1453, 'Kustai', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1454, 'Lakarka', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1455, 'Lapanga', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1456, 'Latehar', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1457, 'Lohardaga', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1458, 'Loiya', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1459, 'Loyabad', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1460, 'Madhupur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1461, 'Mahesh Mundi', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1462, 'Maithon', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1463, 'Malkera', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1464, 'Mango', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1465, 'Manoharpur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1466, 'Marma', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1467, 'Meghahatuburu Forest village', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1468, 'Mera', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1469, 'Meru', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1470, 'Mihijam', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1471, 'Mugma', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1472, 'Muri', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1473, 'Mushabani', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1474, 'Nagri Kalan', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1475, 'Netarhat', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1476, 'Nirsa', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1477, 'Noamundi', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1478, 'Okni', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1479, 'Orla', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1480, 'Pakaur', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1481, 'Palamau', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1482, 'Palawa', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1483, 'Panchet', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1484, 'Panrra', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1485, 'Paratdih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1486, 'Pathardih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1487, 'Patratu', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1488, 'Phusro', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1489, 'Pondar Kanali', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1490, 'Rajmahal', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1491, 'Ramgarh', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1492, 'Ranchi', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1493, 'Ray', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1494, 'Rehla', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1495, 'Religara', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1496, 'Rohraband', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1497, 'Sahibganj', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1498, 'Sahnidih', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1499, 'Saraidhela', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1500, 'Saraikela', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1501, 'Sarjamda', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1502, 'Saunda', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1503, 'Sewai', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1504, 'Sijhua', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1505, 'Sijua', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1506, 'Simdega', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1507, 'Sindari', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1508, 'Sinduria', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1509, 'Sini', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1510, 'Sirka', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1511, 'Siuliban', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1512, 'Surubera', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1513, 'Tati', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1514, 'Tenudam', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1515, 'Tisra', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1516, 'Topa', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1517, 'Topchanchi', 16, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1518, 'Adityanagar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1519, 'Adityapatna', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1520, 'Afzalpur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1521, 'Ajjampur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1522, 'Aland', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1523, 'Almatti Sitimani', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1524, 'Alnavar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1525, 'Alur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1526, 'Ambikanagara', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1527, 'Anekal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1528, 'Ankola', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1529, 'Annigeri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1530, 'Arkalgud', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1531, 'Arsikere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1532, 'Athni', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1533, 'Aurad', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1534, 'Badagavettu', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1535, 'Badami', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1536, 'Bagalkot', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1537, 'Bagepalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1538, 'Bailhongal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1539, 'Baindur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1540, 'Bajala', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1541, 'Bajpe', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1542, 'Banavar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1543, 'Bangarapet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1544, 'Bankapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1545, 'Bannur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1546, 'Bantwal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1547, 'Basavakalyan', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1548, 'Basavana Bagevadi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1549, 'Belagula', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1550, 'Belakavadiq', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1551, 'Belgaum', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1552, 'Belgaum Cantonment', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1553, 'Bellary', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1554, 'Belluru', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1555, 'Beltangadi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1556, 'Belur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1557, 'Belvata', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1558, 'Bengaluru', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1559, 'Bhadravati', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1560, 'Bhalki', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1561, 'Bhatkal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1562, 'Bhimarayanagudi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1563, 'Bhogadi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1564, 'Bidar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1565, 'Bijapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1566, 'Bilgi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1567, 'Birur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1568, 'Bommanahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1569, 'Bommasandra', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1570, 'Byadgi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1571, 'Byatarayanapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1572, 'Chakranagar Colony', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1573, 'Challakere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1574, 'Chamrajnagar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1575, 'Chamundi Betta', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1576, 'Channagiri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1577, 'Channapatna', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1578, 'Channarayapatna', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1579, 'Chickballapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1580, 'Chik Ballapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1581, 'Chikkaballapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1582, 'Chikmagalur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1583, 'Chiknayakanhalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1584, 'Chikodi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1585, 'Chincholi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1586, 'Chintamani', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1587, 'Chitaguppa', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1588, 'Chitapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1589, 'Chitradurga', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1590, 'Coorg', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1591, 'Dandeli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1592, 'Dargajogihalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1593, 'Dasarahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1594, 'Davangere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1595, 'Devadurga', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1596, 'Devagiri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1597, 'Devanhalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1598, 'Dharwar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1599, 'Dhupdal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1600, 'Dod Ballapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1601, 'Donimalai', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1602, 'Gadag', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1603, 'Gajendragarh', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1604, 'Ganeshgudi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1605, 'Gangawati', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1606, 'Gangoli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1607, 'Gauribidanur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1608, 'Gokak', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1609, 'Gokak Falls', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1610, 'Gonikoppal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1611, 'Gorur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1612, 'Gottikere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1613, 'Gubbi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1614, 'Gudibanda', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1615, 'Gulbarga', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1616, 'Guledgudda', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1617, 'Gundlupet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1618, 'Gurmatkal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1619, 'Haliyal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1620, 'Hangal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1621, 'Harihar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1622, 'Harpanahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1623, 'Hassan', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1624, 'Hatti', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1625, 'Hatti Gold Mines', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1626, 'Haveri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1627, 'Hebbagodi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1628, 'Hebbalu', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1629, 'Hebri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1630, 'Heggadadevanakote', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1631, 'Herohalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1632, 'Hidkal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1633, 'Hindalgi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1634, 'Hirekerur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1635, 'Hiriyur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1636, 'Holalkere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1637, 'Hole Narsipur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1638, 'Homnabad', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1639, 'Honavar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1640, 'Honnali', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1641, 'Hosakote', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1642, 'Hosanagara', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1643, 'Hosangadi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1644, 'Hosdurga', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1645, 'Hoskote', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1646, 'Hospet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1647, 'Hubli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1648, 'Hukeri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1649, 'Hunasagi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1650, 'Hunasamaranahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1651, 'Hungund', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1652, 'Hunsur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1653, 'Huvina Hadagalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1654, 'Ilkal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1655, 'Indi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1656, 'Jagalur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1657, 'Jamkhandi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1658, 'Jevargi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1659, 'Jog Falls', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1660, 'Kabini Colony', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1661, 'Kadur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1662, 'Kalghatgi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1663, 'Kamalapuram', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1664, 'Kampli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1665, 'Kanakapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1666, 'Kangrali BK', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1667, 'Kangrali KH', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1668, 'Kannur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1669, 'Karkala', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1670, 'Karwar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1671, 'Kemminja', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1672, 'Kengeri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1673, 'Kerur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1674, 'Khanapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1675, 'Kodigenahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1676, 'Kodiyal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1677, 'Kodlipet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1678, 'Kolar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1679, 'Kollegal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1680, 'Konanakunte', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1681, 'Konanur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1682, 'Konnur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1683, 'Koppa', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1684, 'Koppal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1685, 'Koratagere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1686, 'Kotekara', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1687, 'Kothnur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1688, 'Kotturu', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1689, 'Krishnapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1690, 'Krishnarajanagar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1691, 'Krishnarajapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1692, 'Krishnarajasagara', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1693, 'Krishnarajpet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1694, 'Kudchi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1695, 'Kudligi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1696, 'Kudremukh', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1697, 'Kumsi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1698, 'Kumta', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1699, 'Kundapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1700, 'Kundgol', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1701, 'Kunigal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1702, 'Kurgunta', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1703, 'Kushalnagar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1704, 'Kushtagi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1705, 'Kyathanahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1706, 'Lakshmeshwar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1707, 'Lingsugur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1708, 'Londa', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1709, 'Maddur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1710, 'Madhugiri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1711, 'Madikeri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1712, 'Magadi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1713, 'Magod Falls', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1714, 'Mahadeswara Hills', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1715, 'Mahadevapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1716, 'Mahalingpur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1717, 'Maisuru', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1718, 'Maisuru Cantonment', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1719, 'Malavalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1720, 'Mallar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1721, 'Malpe', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1722, 'Malur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1723, 'Manchenahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1724, 'Mandya', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1725, 'Mangalore', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1726, 'Mangaluru', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1727, 'Manipal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1728, 'Manvi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1729, 'Maski', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1730, 'Mastikatte Colony', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1731, 'Mayakonda', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1732, 'Melukote', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1733, 'Molakalmuru', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1734, 'Mudalgi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1735, 'Mudbidri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1736, 'Muddebihal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1737, 'Mudgal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1738, 'Mudhol', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1739, 'Mudigere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1740, 'Mudushedde', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1741, 'Mulbagal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1742, 'Mulgund', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1743, 'Mulki', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1744, 'Mulur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1745, 'Mundargi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1746, 'Mundgod', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1747, 'Munirabad', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1748, 'Munnur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1749, 'Murudeshwara', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1750, 'Mysore', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1751, 'Nagamangala', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1752, 'Nanjangud', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1753, 'Naragund', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1754, 'Narasimharajapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1755, 'Naravi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1756, 'Narayanpur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1757, 'Naregal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1758, 'Navalgund', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1759, 'Nelmangala', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1760, 'Nipani', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1761, 'Nitte', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1762, 'Nyamati', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1763, 'Padu', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1764, 'Pandavapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1765, 'Pattanagere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1766, 'Pavagada', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1767, 'Piriyapatna', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1768, 'Ponnampet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1769, 'Puttur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1770, 'Rabkavi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1771, 'Raichur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1772, 'Ramanagaram', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1773, 'Ramdurg', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1774, 'Ranibennur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1775, 'Raybag', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1776, 'Robertsonpet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1777, 'Ron', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1778, 'Sadalgi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1779, 'Sagar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1780, 'Sakleshpur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1781, 'Saligram', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1782, 'Sandur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1783, 'Sanivarsante', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1784, 'Sankeshwar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1785, 'Sargur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1786, 'Sathyamangala', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1787, 'Saundatti Yellamma', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1788, 'Savanur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1789, 'Sedam', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1790, 'Shahabad', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1791, 'Shahabad A.C.C.', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1792, 'Shahapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1793, 'Shahpur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1794, 'Shaktinagar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1795, 'Shiggaon', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1796, 'Shikarpur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1797, 'Shimoga', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1798, 'Shirhatti', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1799, 'Shorapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1800, 'Shravanabelagola', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1801, 'Shrirangapattana', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1802, 'Siddapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1803, 'Sidlaghatta', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1804, 'Sindgi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1805, 'Sindhnur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1806, 'Sira', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1807, 'Sirakoppa', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1808, 'Sirsi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1809, 'Siruguppa', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1810, 'Someshwar', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1811, 'Somvarpet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1812, 'Sorab', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1813, 'Sringeri', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1814, 'Srinivaspur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1815, 'Sulya', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1816, 'Suntikopa', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1817, 'Talikota', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1818, 'Tarikera', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(1819, 'Tekkalakota', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1820, 'Terdal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1821, 'Thokur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1822, 'Thumbe', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1823, 'Tiptur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1824, 'Tirthahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1825, 'Tirumakudal Narsipur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1826, 'Tonse', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1827, 'Tumkur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1828, 'Turuvekere', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1829, 'Udupi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1830, 'Ullal', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1831, 'Uttarahalli', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1832, 'Venkatapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1833, 'Vijayapura', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1834, 'Virarajendrapet', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1835, 'Wadi', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1836, 'Wadi A.C.C.', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1837, 'Yadgir', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1838, 'Yelahanka', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1839, 'Yelandur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1840, 'Yelbarga', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1841, 'Yellapur', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1842, 'Yenagudde', 17, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1843, 'Adimaly', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1844, 'Adoor', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1845, 'Adur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1846, 'Akathiyur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1847, 'Alangad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1848, 'Alappuzha', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1849, 'Aluva', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1850, 'Ancharakandy', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1851, 'Angamaly', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1852, 'Aroor', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1853, 'Arukutti', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1854, 'Attingal', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1855, 'Avinissery', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1856, 'Azhikode North', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1857, 'Azhikode South', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1858, 'Azhiyur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1859, 'Balussery', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1860, 'Bangramanjeshwar', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1861, 'Beypur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1862, 'Brahmakulam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1863, 'Chala', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1864, 'Chalakudi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1865, 'Changanacheri', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1866, 'Chauwara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1867, 'Chavakkad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1868, 'Chelakkara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1869, 'Chelora', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1870, 'Chendamangalam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1871, 'Chengamanad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1872, 'Chengannur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1873, 'Cheranallur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1874, 'Cheriyakadavu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1875, 'Cherthala', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1876, 'Cherukunnu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1877, 'Cheruthazham', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1878, 'Cheruvannur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1879, 'Cheruvattur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1880, 'Chevvur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1881, 'Chirakkal', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1882, 'Chittur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1883, 'Chockli', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1884, 'Churnikkara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1885, 'Dharmadam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1886, 'Edappal', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1887, 'Edathala', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1888, 'Elayavur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1889, 'Elur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1890, 'Eranholi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1891, 'Erattupetta', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1892, 'Ernakulam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1893, 'Eruvatti', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1894, 'Ettumanoor', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1895, 'Feroke', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1896, 'Guruvayur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1897, 'Haripad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1898, 'Hosabettu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1899, 'Idukki', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1900, 'Iringaprom', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1901, 'Irinjalakuda', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1902, 'Iriveri', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1903, 'Kadachira', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1904, 'Kadalundi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1905, 'Kadamakkudy', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1906, 'Kadirur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1907, 'Kadungallur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1908, 'Kakkodi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1909, 'Kalady', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1910, 'Kalamassery', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1911, 'Kalliasseri', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1912, 'Kalpetta', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1913, 'Kanhangad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1914, 'Kanhirode', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1915, 'Kanjikkuzhi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1916, 'Kanjikode', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1917, 'Kanjirappalli', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1918, 'Kannadiparamba', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1919, 'Kannangad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1920, 'Kannapuram', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1921, 'Kannur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1922, 'Kannur Cantonment', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1923, 'Karunagappally', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1924, 'Karuvamyhuruthy', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1925, 'Kasaragod', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1926, 'Kasargod', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1927, 'Kattappana', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1928, 'Kayamkulam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1929, 'Kedamangalam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1930, 'Kochi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1931, 'Kodamthuruthu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1932, 'Kodungallur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1933, 'Koduvally', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1934, 'Koduvayur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1935, 'Kokkothamangalam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1936, 'Kolazhy', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1937, 'Kollam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1938, 'Komalapuram', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1939, 'Koothattukulam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1940, 'Koratty', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1941, 'Kothamangalam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1942, 'Kottarakkara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1943, 'Kottayam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1944, 'Kottayam Malabar', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1945, 'Kottuvally', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1946, 'Koyilandi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1947, 'Kozhikode', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1948, 'Kudappanakunnu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1949, 'Kudlu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1950, 'Kumarakom', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1951, 'Kumily', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1952, 'Kunnamangalam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1953, 'Kunnamkulam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1954, 'Kurikkad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1955, 'Kurkkanchery', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1956, 'Kuthuparamba', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1957, 'Kuttakulam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1958, 'Kuttikkattur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1959, 'Kuttur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1960, 'Malappuram', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1961, 'Mallappally', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1962, 'Manjeri', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1963, 'Manjeshwar', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1964, 'Mannancherry', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1965, 'Mannar', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1966, 'Mannarakkat', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1967, 'Maradu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1968, 'Marathakkara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1969, 'Marutharod', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1970, 'Mattannur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1971, 'Mavelikara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1972, 'Mavilayi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1973, 'Mavur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1974, 'Methala', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1975, 'Muhamma', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1976, 'Mulavukad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1977, 'Mundakayam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1978, 'Munderi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1979, 'Munnar', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1980, 'Muthakunnam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1981, 'Muvattupuzha', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1982, 'Muzhappilangad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1983, 'Nadapuram', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1984, 'Nadathara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1985, 'Narath', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1986, 'Nattakam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1987, 'Nedumangad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1988, 'Nenmenikkara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1989, 'New Mahe', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1990, 'Neyyattinkara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1991, 'Nileshwar', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1992, 'Olavanna', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1993, 'Ottapalam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1994, 'Ottappalam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1995, 'Paduvilayi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1996, 'Palai', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1997, 'Palakkad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1998, 'Palayad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(1999, 'Palissery', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2000, 'Pallikkunnu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2001, 'Paluvai', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2002, 'Panniyannur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2003, 'Pantalam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2004, 'Panthiramkavu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2005, 'Panur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2006, 'Pappinisseri', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2007, 'Parassala', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2008, 'Paravur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2009, 'Pathanamthitta', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2010, 'Pathanapuram', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2011, 'Pathiriyad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2012, 'Pattambi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2013, 'Pattiom', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2014, 'Pavaratty', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2015, 'Payyannur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2016, 'Peermade', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2017, 'Perakam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2018, 'Peralasseri', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2019, 'Peringathur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2020, 'Perinthalmanna', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2021, 'Perole', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2022, 'Perumanna', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2023, 'Perumbaikadu', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2024, 'Perumbavoor', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2025, 'Pinarayi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2026, 'Piravam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2027, 'Ponnani', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2028, 'Pottore', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2029, 'Pudukad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2030, 'Punalur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2031, 'Puranattukara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2032, 'Puthunagaram', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2033, 'Puthuppariyaram', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2034, 'Puzhathi', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2035, 'Ramanattukara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2036, 'Shoranur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2037, 'Sultans Battery', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2038, 'Sulthan Bathery', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2039, 'Talipparamba', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2040, 'Thaikkad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2041, 'Thalassery', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2042, 'Thannirmukkam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2043, 'Theyyalingal', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2044, 'Thiruvalla', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2045, 'Thiruvananthapuram', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2046, 'Thiruvankulam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2047, 'Thodupuzha', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2048, 'Thottada', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2049, 'Thrippunithura', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2050, 'Thrissur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2051, 'Tirur', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2052, 'Udma', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2053, 'Vadakara', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2054, 'Vaikam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2055, 'Valapattam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2056, 'Vallachira', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2057, 'Varam', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2058, 'Varappuzha', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2059, 'Varkala', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2060, 'Vayalar', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2061, 'Vazhakkala', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2062, 'Venmanad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2063, 'Villiappally', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2064, 'Wayanad', 19, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2065, 'Agethi', 20, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2066, 'Amini', 20, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2067, 'Androth Island', 20, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2068, 'Kavaratti', 20, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2069, 'Minicoy', 20, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2070, 'Agar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2071, 'Ajaigarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2072, 'Akoda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2073, 'Akodia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2074, 'Alampur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2075, 'Alirajpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2076, 'Alot', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2077, 'Amanganj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2078, 'Amarkantak', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2079, 'Amarpatan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2080, 'Amarwara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2081, 'Ambada', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2082, 'Ambah', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2083, 'Amla', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2084, 'Amlai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2085, 'Anjad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2086, 'Antri', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2087, 'Anuppur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2088, 'Aron', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2089, 'Ashoknagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2090, 'Ashta', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2091, 'Babai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2092, 'Bada Malhera', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2093, 'Badagaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2094, 'Badagoan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2095, 'Badarwas', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2096, 'Badawada', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2097, 'Badi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2098, 'Badkuhi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2099, 'Badnagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2100, 'Badnawar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2101, 'Badod', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2102, 'Badoda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2103, 'Badra', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2104, 'Bagh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2105, 'Bagli', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2106, 'Baihar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2107, 'Baikunthpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2108, 'Bakswaha', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2109, 'Balaghat', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2110, 'Baldeogarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2111, 'Bamaniya', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2112, 'Bamhani', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2113, 'Bamor', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2114, 'Bamora', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2115, 'Banda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2116, 'Bangawan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2117, 'Bansatar Kheda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2118, 'Baraily', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2119, 'Barela', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2120, 'Barghat', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2121, 'Bargi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2122, 'Barhi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2123, 'Barigarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2124, 'Barwaha', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2125, 'Barwani', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2126, 'Basoda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2127, 'Begamganj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2128, 'Beohari', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2129, 'Berasia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2130, 'Betma', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2131, 'Betul', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2132, 'Betul Bazar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2133, 'Bhainsdehi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2134, 'Bhamodi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2135, 'Bhander', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2136, 'Bhanpura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2137, 'Bharveli', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2138, 'Bhaurasa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2139, 'Bhavra', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2140, 'Bhedaghat', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2141, 'Bhikangaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2142, 'Bhilakhedi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2143, 'Bhind', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2144, 'Bhitarwar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2145, 'Bhopal', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2146, 'Bhuibandh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2147, 'Biaora', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2148, 'Bijawar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2149, 'Bijeypur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2150, 'Bijrauni', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2151, 'Bijuri', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2152, 'Bilaua', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2153, 'Bilpura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2154, 'Bina Railway Colony', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2155, 'Bina-Etawa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2156, 'Birsinghpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2157, 'Boda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2158, 'Budhni', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2159, 'Burhanpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2160, 'Burhar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2161, 'Chachaura Binaganj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2162, 'Chakghat', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2163, 'Chandameta Butar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2164, 'Chanderi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2165, 'Chandia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2166, 'Chandla', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2167, 'Chaurai Khas', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2168, 'Chhatarpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2169, 'Chhindwara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2170, 'Chhota Chhindwara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2171, 'Chichli', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2172, 'Chitrakut', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2173, 'Churhat', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2174, 'Daboh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2175, 'Dabra', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2176, 'Damoh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2177, 'Damua', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2178, 'Datia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2179, 'Deodara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2180, 'Deori', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2181, 'Deori Khas', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2182, 'Depalpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2183, 'Devendranagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2184, 'Devhara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2185, 'Dewas', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2186, 'Dhamnod', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2187, 'Dhana', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2188, 'Dhanpuri', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2189, 'Dhar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2190, 'Dharampuri', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2191, 'Dighawani', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2192, 'Diken', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2193, 'Dindori', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2194, 'Dola', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2195, 'Dumar Kachhar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2196, 'Dungariya Chhapara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2197, 'Gadarwara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2198, 'Gairatganj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2199, 'Gandhi Sagar Hydel Colony', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2200, 'Ganjbasoda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2201, 'Garhakota', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2202, 'Garhi Malhara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2203, 'Garoth', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2204, 'Gautapura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2205, 'Ghansor', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2206, 'Ghuwara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2207, 'Gogaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2208, 'Gogapur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2209, 'Gohad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2210, 'Gormi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2211, 'Govindgarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2212, 'Guna', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2213, 'Gurh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2214, 'Gwalior', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2215, 'Hanumana', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2216, 'Harda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2217, 'Harpalpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2218, 'Harrai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2219, 'Harsud', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2220, 'Hatod', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2221, 'Hatpipalya', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2222, 'Hatta', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2223, 'Hindoria', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2224, 'Hirapur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2225, 'Hoshangabad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2226, 'Ichhawar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2227, 'Iklehra', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2228, 'Indergarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2229, 'Indore', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2230, 'Isagarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2231, 'Itarsi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2232, 'Jabalpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2233, 'Jabalpur Cantonment', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2234, 'Jabalpur G.C.F', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2235, 'Jaisinghnagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2236, 'Jaithari', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2237, 'Jaitwara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2238, 'Jamai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2239, 'Jaora', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2240, 'Jatachhapar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2241, 'Jatara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2242, 'Jawad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2243, 'Jawar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2244, 'Jeronkhalsa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2245, 'Jhabua', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2246, 'Jhundpura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2247, 'Jiran', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2248, 'Jirapur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2249, 'Jobat', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2250, 'Joura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2251, 'Kailaras', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2252, 'Kaimur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2253, 'Kakarhati', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2254, 'Kalichhapar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2255, 'Kanad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2256, 'Kannod', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2257, 'Kantaphod', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2258, 'Kareli', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2259, 'Karera', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2260, 'Kari', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2261, 'Karnawad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2262, 'Karrapur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2263, 'Kasrawad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2264, 'Katangi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2265, 'Katni', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2266, 'Kelhauri', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2267, 'Khachrod', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2268, 'Khajuraho', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2269, 'Khamaria', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2270, 'Khand', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2271, 'Khandwa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2272, 'Khaniyadhana', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2273, 'Khargapur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2274, 'Khargone', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2275, 'Khategaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2276, 'Khetia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2277, 'Khilchipur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2278, 'Khirkiya', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2279, 'Khujner', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2280, 'Khurai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2281, 'Kolaras', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2282, 'Kotar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2283, 'Kothi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2284, 'Kotma', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2285, 'Kukshi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2286, 'Kumbhraj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2287, 'Kurwai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2288, 'Lahar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2289, 'Lakhnadon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2290, 'Lateri', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2291, 'Laundi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2292, 'Lidhora Khas', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2293, 'Lodhikheda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2294, 'Loharda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2295, 'Machalpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2296, 'Madhogarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2297, 'Maharajpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2298, 'Maheshwar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2299, 'Mahidpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2300, 'Maihar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2301, 'Majholi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2302, 'Makronia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2303, 'Maksi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2304, 'Malaj Khand', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2305, 'Malanpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2306, 'Malhargarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2307, 'Manasa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2308, 'Manawar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2309, 'Mandav', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2310, 'Mandideep', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2311, 'Mandla', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2312, 'Mandleshwar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2313, 'Mandsaur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2314, 'Manegaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2315, 'Mangawan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2316, 'Manglaya Sadak', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2317, 'Manpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2318, 'Mau', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2319, 'Mauganj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2320, 'Meghnagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2321, 'Mehara Gaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2322, 'Mehgaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2323, 'Mhaugaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2324, 'Mhow', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2325, 'Mihona', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2326, 'Mohgaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2327, 'Morar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2328, 'Morena', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2329, 'Morwa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2330, 'Multai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2331, 'Mundi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2332, 'Mungaoli', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2333, 'Murwara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2334, 'Nagda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2335, 'Nagod', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2336, 'Nagri', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2337, 'Naigarhi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2338, 'Nainpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2339, 'Nalkheda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2340, 'Namli', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2341, 'Narayangarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2342, 'Narsimhapur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2343, 'Narsingarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2344, 'Narsinghpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2345, 'Narwar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2346, 'Nasrullaganj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2347, 'Naudhia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2348, 'Naugaon', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2349, 'Naurozabad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2350, 'Neemuch', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2351, 'Nepa Nagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2352, 'Neuton Chikhli Kalan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2353, 'Nimach', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2354, 'Niwari', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2355, 'Obedullaganj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2356, 'Omkareshwar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2357, 'Orachha', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2358, 'Ordinance Factory Itarsi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2359, 'Pachmarhi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2360, 'Pachmarhi Cantonment', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2361, 'Pachore', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2362, 'Palchorai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2363, 'Palda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2364, 'Palera', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2365, 'Pali', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2366, 'Panagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2367, 'Panara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2368, 'Pandaria', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2369, 'Pandhana', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2370, 'Pandhurna', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2371, 'Panna', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2372, 'Pansemal', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2373, 'Parasia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2374, 'Pasan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2375, 'Patan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2376, 'Patharia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2377, 'Pawai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2378, 'Petlawad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2379, 'Phuph Kalan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2380, 'Pichhore', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2381, 'Pipariya', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2382, 'Pipliya Mandi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2383, 'Piploda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2384, 'Pithampur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2385, 'Polay Kalan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2386, 'Porsa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2387, 'Prithvipur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2388, 'Raghogarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2389, 'Rahatgarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2390, 'Raisen', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2391, 'Rajakhedi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2392, 'Rajgarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2393, 'Rajnagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2394, 'Rajpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2395, 'Rampur Baghelan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2396, 'Rampur Naikin', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2397, 'Rampura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2398, 'Ranapur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2399, 'Ranipura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2400, 'Ratangarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2401, 'Ratlam', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2402, 'Ratlam Kasba', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2403, 'Rau', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2404, 'Rehli', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2405, 'Rehti', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2406, 'Rewa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2407, 'Sabalgarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2408, 'Sagar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2409, 'Sagar Cantonment', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2410, 'Sailana', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2411, 'Sanawad', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2412, 'Sanchi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2413, 'Sanwer', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2414, 'Sarangpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2415, 'Sardarpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(2416, 'Sarni', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2417, 'Satai', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2418, 'Satna', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2419, 'Satwas', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2420, 'Sausar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2421, 'Sehore', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2422, 'Semaria', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2423, 'Sendhwa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2424, 'Seondha', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2425, 'Seoni', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2426, 'Seoni Malwa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2427, 'Sethia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2428, 'Shahdol', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2429, 'Shahgarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2430, 'Shahpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2431, 'Shahpura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2432, 'Shajapur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2433, 'Shamgarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2434, 'Sheopur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2435, 'Shivpuri', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2436, 'Shujalpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2437, 'Sidhi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2438, 'Sihora', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2439, 'Singolo', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2440, 'Singrauli', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2441, 'Sinhasa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2442, 'Sirgora', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2443, 'Sirmaur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2444, 'Sironj', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2445, 'Sitamau', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2446, 'Sohagpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2447, 'Sonkatch', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2448, 'Soyatkalan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2449, 'Suhagi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2450, 'Sultanpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2451, 'Susner', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2452, 'Suthaliya', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2453, 'Tal', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2454, 'Talen', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2455, 'Tarana', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2456, 'Taricharkalan', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2457, 'Tekanpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2458, 'Tendukheda', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2459, 'Teonthar', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2460, 'Thandia', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2461, 'Tikamgarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2462, 'Timarni', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2463, 'Tirodi', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2464, 'Udaipura', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2465, 'Ujjain', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2466, 'Ukwa', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2467, 'Umaria', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2468, 'Unchahara', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2469, 'Unhel', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2470, 'Vehicle Factory Jabalpur', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2471, 'Vidisha', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2472, 'Vijayraghavgarh', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2473, 'Waraseoni', 21, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2474, 'Achalpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2475, 'Aheri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2476, 'Ahmadnagar Cantonment', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2477, 'Ahmadpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2478, 'Ahmednagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2479, 'Ajra', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2480, 'Akalkot', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2481, 'Akkalkuwa', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2482, 'Akola', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2483, 'Akot', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2484, 'Alandi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2485, 'Alibag', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2486, 'Allapalli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2487, 'Alore', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2488, 'Amalner', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2489, 'Ambad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2490, 'Ambajogai', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2491, 'Ambernath', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2492, 'Ambivali Tarf Wankhal', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2493, 'Amgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2494, 'Amravati', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2495, 'Anjangaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2496, 'Arvi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2497, 'Ashta', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2498, 'Ashti', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2499, 'Aurangabad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2500, 'Aurangabad Cantonment', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2501, 'Ausa', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2502, 'Babhulgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2503, 'Badlapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2504, 'Balapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2505, 'Ballarpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2506, 'Baramati', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2507, 'Barshi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2508, 'Basmat', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2509, 'Beed', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2510, 'Bhadravati', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2511, 'Bhagur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2512, 'Bhandara', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2513, 'Bhigvan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2514, 'Bhingar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2515, 'Bhiwandi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2516, 'Bhokhardan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2517, 'Bhor', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2518, 'Bhosari', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2519, 'Bhum', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2520, 'Bhusawal', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2521, 'Bid', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2522, 'Biloli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2523, 'Birwadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2524, 'Boisar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2525, 'Bop Khel', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2526, 'Brahmapuri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2527, 'Budhgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2528, 'Buldana', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2529, 'Buldhana', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2530, 'Butibori', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2531, 'Chakan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2532, 'Chalisgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2533, 'Chandrapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2534, 'Chandur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2535, 'Chandur Bazar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2536, 'Chandvad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2537, 'Chicholi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2538, 'Chikhala', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2539, 'Chikhaldara', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2540, 'Chikhli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2541, 'Chinchani', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2542, 'Chinchwad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2543, 'Chiplun', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2544, 'Chopda', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2545, 'Dabhol', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2546, 'Dahance', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2547, 'Dahanu', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2548, 'Daharu', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2549, 'Dapoli Camp', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2550, 'Darwa', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2551, 'Daryapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2552, 'Dattapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2553, 'Daund', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2554, 'Davlameti', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2555, 'Deglur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2556, 'Dehu Road', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2557, 'Deolali', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2558, 'Deolali Pravara', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2559, 'Deoli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2560, 'Desaiganj', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2561, 'Deulgaon Raja', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2562, 'Dewhadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2563, 'Dharangaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2564, 'Dharmabad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2565, 'Dharur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2566, 'Dhatau', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2567, 'Dhule', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2568, 'Digdoh', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2569, 'Diglur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2570, 'Digras', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2571, 'Dombivli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2572, 'Dondaicha', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2573, 'Dudhani', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2574, 'Durgapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2575, 'Dyane', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2576, 'Edandol', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2577, 'Eklahare', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2578, 'Faizpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2579, 'Fekari', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2580, 'Gadchiroli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2581, 'Gadhinghaj', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2582, 'Gandhi Nagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2583, 'Ganeshpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2584, 'Gangakher', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2585, 'Gangapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2586, 'Gevrai', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2587, 'Ghatanji', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2588, 'Ghoti', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2589, 'Ghugus', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2590, 'Ghulewadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2591, 'Godoli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2592, 'Gondia', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2593, 'Guhagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2594, 'Hadgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2595, 'Harnai Beach', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2596, 'Hinganghat', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2597, 'Hingoli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2598, 'Hupari', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2599, 'Ichalkaranji', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2600, 'Igatpuri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2601, 'Indapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2602, 'Jaisinghpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2603, 'Jalgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2604, 'Jalna', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2605, 'Jamkhed', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2606, 'Jawhar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2607, 'Jaysingpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2608, 'Jejuri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2609, 'Jintur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2610, 'Junnar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2611, 'Kabnur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2612, 'Kagal', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2613, 'Kalamb', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2614, 'Kalamnuri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2615, 'Kalas', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2616, 'Kalmeshwar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2617, 'Kalundre', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2618, 'Kalyan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2619, 'Kamthi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2620, 'Kamthi Cantonment', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2621, 'Kandari', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2622, 'Kandhar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2623, 'Kandri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2624, 'Kandri II', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2625, 'Kanhan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2626, 'Kankavli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2627, 'Kannad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2628, 'Karad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2629, 'Karanja', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2630, 'Karanje Tarf', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2631, 'Karivali', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2632, 'Karjat', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2633, 'Karmala', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2634, 'Kasara Budruk', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2635, 'Katai', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2636, 'Katkar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2637, 'Katol', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2638, 'Kegaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2639, 'Khadkale', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2640, 'Khadki', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2641, 'Khamgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2642, 'Khapa', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2643, 'Kharadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2644, 'Kharakvasla', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2645, 'Khed', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2646, 'Kherdi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2647, 'Khoni', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2648, 'Khopoli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2649, 'Khuldabad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2650, 'Kinwat', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2651, 'Kodoli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2652, 'Kolhapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2653, 'Kon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2654, 'Kondumal', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2655, 'Kopargaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2656, 'Kopharad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2657, 'Koradi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2658, 'Koregaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2659, 'Korochi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2660, 'Kudal', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2661, 'Kundaim', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2662, 'Kundalwadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2663, 'Kurandvad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2664, 'Kurduvadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2665, 'Kusgaon Budruk', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2666, 'Lanja', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2667, 'Lasalgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2668, 'Latur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2669, 'Loha', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2670, 'Lohegaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2671, 'Lonar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2672, 'Lonavala', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2673, 'Madhavnagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2674, 'Mahabaleshwar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2675, 'Mahad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2676, 'Mahadula', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2677, 'Maindargi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2678, 'Majalgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2679, 'Malegaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2680, 'Malgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2681, 'Malkapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2682, 'Malwan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2683, 'Manadur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2684, 'Manchar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2685, 'Mangalvedhe', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2686, 'Mangrul Pir', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2687, 'Manmad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2688, 'Manor', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2689, 'Mansar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2690, 'Manwath', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2691, 'Mapuca', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2692, 'Matheran', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2693, 'Mehkar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2694, 'Mhasla', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2695, 'Mhaswad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2696, 'Mira Bhayandar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2697, 'Miraj', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2698, 'Mohpa', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2699, 'Mohpada', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2700, 'Moram', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2701, 'Morshi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2702, 'Mowad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2703, 'Mudkhed', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2704, 'Mukhed', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2705, 'Mul', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2706, 'Mulshi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2707, 'Mumbai', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2708, 'Murbad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2709, 'Murgud', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2710, 'Murtijapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2711, 'Murud', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2712, 'Nachane', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2713, 'Nagardeole', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2714, 'Nagothane', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2715, 'Nagpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2716, 'Nakoda', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2717, 'Nalasopara', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2718, 'Naldurg', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2719, 'Nanded', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2720, 'Nandgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2721, 'Nandura', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2722, 'Nandurbar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2723, 'Narkhed', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2724, 'Nashik', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2725, 'Navapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2726, 'Navi Mumbai', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2727, 'Navi Mumbai Panvel', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2728, 'Neral', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2729, 'Nigdi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2730, 'Nilanga', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2731, 'Nildoh', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2732, 'Nimbhore', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2733, 'Ojhar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2734, 'Osmanabad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2735, 'Pachgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2736, 'Pachora', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2737, 'Padagha', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2738, 'Paithan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2739, 'Palghar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2740, 'Pali', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2741, 'Panchgani', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2742, 'Pandhakarwada', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2743, 'Pandharpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2744, 'Panhala', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2745, 'Panvel', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2746, 'Paranda', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2747, 'Parbhani', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2748, 'Parli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2749, 'Parola', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2750, 'Partur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2751, 'Pasthal', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2752, 'Patan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2753, 'Pathardi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2754, 'Pathri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2755, 'Patur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2756, 'Pawni', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2757, 'Pen', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2758, 'Pethumri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2759, 'Phaltan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2760, 'Pimpri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2761, 'Poladpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2762, 'Pulgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2763, 'Pune', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2764, 'Pune Cantonment', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2765, 'Purna', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2766, 'Purushottamnagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2767, 'Pusad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2768, 'Rahimatpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2769, 'Rahta Pimplas', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2770, 'Rahuri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2771, 'Raigad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2772, 'Rajapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2773, 'Rajgurunagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2774, 'Rajur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2775, 'Rajura', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2776, 'Ramtek', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2777, 'Ratnagiri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2778, 'Ravalgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2779, 'Raver', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2780, 'Revadanda', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2781, 'Risod', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2782, 'Roha Ashtami', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2783, 'Sakri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2784, 'Sandor', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2785, 'Sangamner', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2786, 'Sangli', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2787, 'Sangole', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2788, 'Sasti', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2789, 'Sasvad', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2790, 'Satana', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2791, 'Satara', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2792, 'Savantvadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2793, 'Savda', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2794, 'Savner', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2795, 'Sawari Jawharnagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2796, 'Selu', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2797, 'Shahada', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2798, 'Shahapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2799, 'Shegaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2800, 'Shelar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2801, 'Shendurjana', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2802, 'Shirdi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2803, 'Shirgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2804, 'Shirpur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2805, 'Shirur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2806, 'Shirwal', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2807, 'Shivatkar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2808, 'Shrigonda', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2809, 'Shrirampur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2810, 'Shrirampur Rural', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2811, 'Sillewada', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2812, 'Sillod', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2813, 'Sindhudurg', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2814, 'Sindi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2815, 'Sindi Turf Hindnagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2816, 'Sindkhed Raja', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2817, 'Singnapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2818, 'Sinnar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2819, 'Sirur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2820, 'Sitasawangi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2821, 'Solapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2822, 'Sonai', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2823, 'Sonegaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2824, 'Soyagaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2825, 'Srivardhan', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2826, 'Surgana', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2827, 'Talegaon Dabhade', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2828, 'Taloda', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2829, 'Taloja', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2830, 'Talwade', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2831, 'Tarapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2832, 'Tasgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2833, 'Tathavade', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2834, 'Tekadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2835, 'Telhara', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2836, 'Thane', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2837, 'Tirira', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2838, 'Totaladoh', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2839, 'Trimbak', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2840, 'Tuljapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2841, 'Tumsar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2842, 'Uchgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2843, 'Udgir', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2844, 'Ulhasnagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2845, 'Umarga', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2846, 'Umarkhed', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2847, 'Umarsara', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2848, 'Umbar Pada Nandade', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2849, 'Umred', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2850, 'Umri Pragane Balapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2851, 'Uran', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2852, 'Uran Islampur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2853, 'Utekhol', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2854, 'Vada', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2855, 'Vadgaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2856, 'Vadgaon Kasba', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2857, 'Vaijapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2858, 'Vanvadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2859, 'Varangaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2860, 'Vasai', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2861, 'Vasantnagar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2862, 'Vashind', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2863, 'Vengurla', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2864, 'Virar', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2865, 'Visapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2866, 'Vite', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2867, 'Vithalwadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2868, 'Wadi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2869, 'Waghapur', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2870, 'Wai', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2871, 'Wajegaon', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2872, 'Walani', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2873, 'Wanadongri', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2874, 'Wani', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2875, 'Wardha', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2876, 'Warora', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2877, 'Warthi', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2878, 'Warud', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2879, 'Washim', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2880, 'Yaval', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2881, 'Yavatmal', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2882, 'Yeola', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2883, 'Yerkheda', 22, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2884, 'Andro', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2885, 'Bijoy Govinda', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2886, 'Bishnupur', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2887, 'Churachandpur', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2888, 'Heriok', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2889, 'Imphal', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2890, 'Jiribam', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2891, 'Kakching', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2892, 'Kakching Khunou', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2893, 'Khongman', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2894, 'Kumbi', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2895, 'Kwakta', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2896, 'Lamai', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2897, 'Lamjaotongba', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2898, 'Lamshang', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2899, 'Lilong', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2900, 'Mayang Imphal', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2901, 'Moirang', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2902, 'Moreh', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2903, 'Nambol', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2904, 'Naoriya Pakhanglakpa', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2905, 'Ningthoukhong', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2906, 'Oinam', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2907, 'Porompat', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2908, 'Samurou', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2909, 'Sekmai Bazar', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2910, 'Senapati', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2911, 'Sikhong Sekmai', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2912, 'Sugnu', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2913, 'Thongkhong Laxmi Bazar', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2914, 'Thoubal', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2915, 'Torban', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2916, 'Wangjing', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2917, 'Wangoi', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2918, 'Yairipok', 23, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2919, 'Baghmara', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2920, 'Cherrapunji', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2921, 'Jawai', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2922, 'Madanrting', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2923, 'Mairang', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2924, 'Mawlai', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2925, 'Nongmynsong', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2926, 'Nongpoh', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2927, 'Nongstoin', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2928, 'Nongthymmai', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2929, 'Pynthorumkhrah', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2930, 'Resubelpara', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2931, 'Shillong', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2932, 'Shillong Cantonment', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2933, 'Tura', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2934, 'Williamnagar', 24, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2935, 'Aizawl', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2936, 'Bairabi', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2937, 'Biate', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2938, 'Champhai', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2939, 'Darlawn', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2940, 'Hnahthial', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2941, 'Kawnpui', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2942, 'Khawhai', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2943, 'Khawzawl', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2944, 'Kolasib', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2945, 'Lengpui', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2946, 'Lunglei', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2947, 'Mamit', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2948, 'North Vanlaiphai', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2949, 'Saiha', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2950, 'Sairang', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2951, 'Saitul', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2952, 'Serchhip', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2953, 'Thenzawl', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2954, 'Tlabung', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2955, 'Vairengte', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2956, 'Zawlnuam', 25, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2957, 'Chumukedima', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2958, 'Dimapur', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2959, 'Kohima', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2960, 'Mokokchung', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2961, 'Mon', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2962, 'Phek', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2963, 'Tuensang', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2964, 'Wokha', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2965, 'Zunheboto', 26, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2966, 'Anandapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2967, 'Angul', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2968, 'Aska', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2969, 'Athgarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2970, 'Athmallik', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2971, 'Balagoda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2972, 'Balangir', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2973, 'Balasore', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2974, 'Baleshwar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2975, 'Balimeta', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2976, 'Balugaon', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2977, 'Banapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2978, 'Bangura', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2979, 'Banki', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2980, 'Banposh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2981, 'Barbil', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2982, 'Bargarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2983, 'Baripada', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2984, 'Barpali', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2985, 'Basudebpur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2986, 'Baudh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2987, 'Belagachhia', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2988, 'Belaguntha', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2989, 'Belpahar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2990, 'Berhampur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2991, 'Bhadrak', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2992, 'Bhanjanagar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2993, 'Bhawanipatna', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2994, 'Bhuban', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2995, 'Bhubaneswar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2996, 'Binika', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2997, 'Birmitrapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2998, 'Bishama Katek', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(2999, 'Bolangir', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3000, 'Brahmapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3001, 'Brajrajnagar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3002, 'Buguda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3003, 'Burla', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3004, 'Byasanagar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3005, 'Champua', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3006, 'Chandapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3007, 'Chandbali', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3008, 'Chandili', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3009, 'Charibatia', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3010, 'Chatrapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3011, 'Chikitigarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3012, 'Chitrakonda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3013, 'Choudwar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3014, 'Cuttack', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3015, 'Dadhapatna', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3016, 'Daitari', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3017, 'Damanjodi', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(3018, 'Deogarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3019, 'Deracolliery', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3020, 'Dhamanagar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3021, 'Dhenkanal', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3022, 'Digapahandi', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3023, 'Dungamal', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3024, 'Fertilizer Corporation of Indi', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3025, 'Ganjam', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3026, 'Ghantapada', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3027, 'Gopalpur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3028, 'Gudari', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3029, 'Gunupur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3030, 'Hatibandha', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3031, 'Hinjilikatu', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3032, 'Hirakud', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3033, 'Jagatsinghapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3034, 'Jajpur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3035, 'Jalda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3036, 'Jaleswar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3037, 'Jatni', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3038, 'Jaypur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3039, 'Jeypore', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3040, 'Jharsuguda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3041, 'Jhumpura', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3042, 'Joda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3043, 'Junagarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3044, 'Kamakhyanagar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3045, 'Kantabanji', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3046, 'Kantilo', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3047, 'Karanja', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3048, 'Kashinagara', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3049, 'Kataka', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3050, 'Kavisuryanagar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3051, 'Kendrapara', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3052, 'Kendujhar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3053, 'Keonjhar', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3054, 'Kesinga', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3055, 'Khaliapali', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3056, 'Khalikote', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3057, 'Khandaparha', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3058, 'Kharhial', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3059, 'Kharhial Road', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3060, 'Khatiguda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3061, 'Khurda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3062, 'Kochinda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3063, 'Kodala', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3064, 'Konark', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3065, 'Koraput', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3066, 'Kotaparh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3067, 'Lanjigarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3068, 'Lattikata', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3069, 'Makundapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3070, 'Malkangiri', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3071, 'Mukhiguda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3072, 'Nabarangpur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3073, 'Nalco', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3074, 'Naurangapur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3075, 'Nayagarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3076, 'Nilagiri', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3077, 'Nimaparha', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3078, 'Nuapada', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3079, 'Nuapatna', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3080, 'OCL Industrialship', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3081, 'Padampur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3082, 'Paradip', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3083, 'Paradwip', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3084, 'Parlakimidi', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3085, 'Patamundai', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3086, 'Patnagarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3087, 'Phulabani', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3088, 'Pipili', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3089, 'Polasara', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3090, 'Pratapsasan', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3091, 'Puri', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3092, 'Purushottampur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3093, 'Rairangpur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3094, 'Raj Gangpur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3095, 'Rambha', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3096, 'Raurkela', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3097, 'Raurkela Civil Township', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3098, 'Rayagada', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3099, 'Redhakhol', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3100, 'Remuna', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3101, 'Rengali', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3102, 'Rourkela', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3103, 'Sambalpur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3104, 'Sinapali', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3105, 'Sonepur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3106, 'Sorada', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3107, 'Soro', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3108, 'Sunabeda', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3109, 'Sundargarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3110, 'Talcher', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3111, 'Talcher Thermal Power Station ', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3112, 'Tarabha', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3113, 'Tensa', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3114, 'Titlagarh', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3115, 'Udala', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3116, 'Udayagiri', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3117, 'Umarkot', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3118, 'Vikrampur', 29, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3119, 'Ariankuppam', 31, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3120, 'Karaikal', 31, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3121, 'Kurumbapet', 31, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3122, 'Mahe', 31, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3123, 'Ozhukarai', 31, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3124, 'Pondicherry', 31, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3125, 'Villianur', 31, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3126, 'Yanam', 31, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3127, 'Abohar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3128, 'Adampur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3129, 'Ahmedgarh', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3130, 'Ajnala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3131, 'Akalgarh', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3132, 'Alawalpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3133, 'Amloh', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3134, 'Amritsar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3135, 'Amritsar Cantonment', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3136, 'Anandpur Sahib', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3137, 'Badhni Kalan', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3138, 'Bagh Purana', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3139, 'Balachaur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3140, 'Banaur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3141, 'Banga', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3142, 'Banur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3143, 'Baretta', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3144, 'Bariwala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3145, 'Barnala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3146, 'Bassi Pathana', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3147, 'Batala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3148, 'Bathinda', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3149, 'Begowal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3150, 'Behrampur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3151, 'Bhabat', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3152, 'Bhadur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3153, 'Bhankharpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3154, 'Bharoli Kalan', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3155, 'Bhawanigarh', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3156, 'Bhikhi', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3157, 'Bhikhiwind', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3158, 'Bhisiana', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3159, 'Bhogpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3160, 'Bhuch', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3161, 'Bhulath', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3162, 'Budha Theh', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3163, 'Budhlada', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3164, 'Chima', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3165, 'Chohal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3166, 'Dasuya', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3167, 'Daulatpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3168, 'Dera Baba Nanak', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3169, 'Dera Bassi', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3170, 'Dhanaula', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3171, 'Dharam Kot', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3172, 'Dhariwal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3173, 'Dhilwan', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3174, 'Dhuri', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3175, 'Dinanagar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3176, 'Dirba', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3177, 'Doraha', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3178, 'Faridkot', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3179, 'Fateh Nangal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3180, 'Fatehgarh Churian', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3181, 'Fatehgarh Sahib', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3182, 'Fazilka', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3183, 'Firozpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3184, 'Firozpur Cantonment', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3185, 'Gardhiwala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3186, 'Garhshankar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3187, 'Ghagga', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3188, 'Ghanaur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3189, 'Giddarbaha', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3190, 'Gobindgarh', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3191, 'Goniana', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3192, 'Goraya', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3193, 'Gurdaspur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3194, 'Guru Har Sahai', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3195, 'Hajipur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3196, 'Handiaya', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3197, 'Hariana', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3198, 'Hoshiarpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3199, 'Hussainpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3200, 'Jagraon', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3201, 'Jaitu', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3202, 'Jalalabad', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3203, 'Jalandhar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3204, 'Jalandhar Cantonment', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3205, 'Jandiala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3206, 'Jugial', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3207, 'Kalanaur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3208, 'Kapurthala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3209, 'Karoran', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3210, 'Kartarpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3211, 'Khamanon', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3212, 'Khanauri', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3213, 'Khanna', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3214, 'Kharar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3215, 'Khem Karan', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3216, 'Kot Fatta', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3217, 'Kot Isa Khan', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3218, 'Kot Kapura', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3219, 'Kotkapura', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3220, 'Kurali', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3221, 'Lalru', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3222, 'Lehra Gaga', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3223, 'Lodhian Khas', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3224, 'Longowal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3225, 'Ludhiana', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3226, 'Machhiwara', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3227, 'Mahilpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3228, 'Majitha', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3229, 'Makhu', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3230, 'Malaut', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3231, 'Malerkotla', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3232, 'Maloud', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3233, 'Mandi Gobindgarh', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3234, 'Mansa', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3235, 'Maur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3236, 'Moga', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3237, 'Mohali', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3238, 'Moonak', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3239, 'Morinda', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3240, 'Mukerian', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3241, 'Muktsar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3242, 'Mullanpur Dakha', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3243, 'Mullanpur Garibdas', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3244, 'Munak', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3245, 'Muradpura', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3246, 'Nabha', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3247, 'Nakodar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3248, 'Nangal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3249, 'Nawashahr', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3250, 'Naya Nangal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3251, 'Nehon', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3252, 'Nurmahal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3253, 'Pathankot', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3254, 'Patiala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3255, 'Patti', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3256, 'Pattran', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3257, 'Payal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3258, 'Phagwara', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3259, 'Phillaur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3260, 'Qadian', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3261, 'Rahon', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3262, 'Raikot', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3263, 'Raja Sansi', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3264, 'Rajpura', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3265, 'Ram Das', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3266, 'Raman', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3267, 'Rampura', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3268, 'Rayya', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3269, 'Rupnagar', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3270, 'Rurki Kasba', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3271, 'Sahnewal', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3272, 'Samana', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3273, 'Samrala', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3274, 'Sanaur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3275, 'Sangat', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3276, 'Sangrur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3277, 'Sansarpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3278, 'Sardulgarh', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3279, 'Shahkot', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3280, 'Sham Churasi', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3281, 'Shekhpura', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3282, 'Sirhind', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3283, 'Sri Hargobindpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3284, 'Sujanpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3285, 'Sultanpur Lodhi', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3286, 'Sunam', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3287, 'Talwandi Bhai', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3288, 'Talwara', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3289, 'Tappa', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3290, 'Tarn Taran', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3291, 'Urmar Tanda', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3292, 'Zira', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3293, 'Zirakpur', 32, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3294, 'Abu Road', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3295, 'Ajmer', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3296, 'Aklera', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3297, 'Alwar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3298, 'Amet', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3299, 'Antah', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3300, 'Anupgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3301, 'Asind', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3302, 'Bagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3303, 'Bagru', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3304, 'Bahror', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3305, 'Bakani', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3306, 'Bali', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3307, 'Balotra', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3308, 'Bandikui', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3309, 'Banswara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3310, 'Baran', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3311, 'Bari', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3312, 'Bari Sadri', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3313, 'Barmer', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3314, 'Basi', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3315, 'Basni Belima', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3316, 'Baswa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3317, 'Bayana', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3318, 'Beawar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3319, 'Begun', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3320, 'Bhadasar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3321, 'Bhadra', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3322, 'Bhalariya', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3323, 'Bharatpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3324, 'Bhasawar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3325, 'Bhawani Mandi', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3326, 'Bhawri', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3327, 'Bhilwara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3328, 'Bhindar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3329, 'Bhinmal', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3330, 'Bhiwadi', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3331, 'Bijoliya Kalan', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3332, 'Bikaner', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3333, 'Bilara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3334, 'Bissau', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3335, 'Borkhera', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3336, 'Budhpura', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3337, 'Bundi', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3338, 'Chatsu', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3339, 'Chechat', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3340, 'Chhabra', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3341, 'Chhapar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3342, 'Chhipa Barod', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3343, 'Chhoti Sadri', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3344, 'Chirawa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3345, 'Chittaurgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3346, 'Chittorgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3347, 'Chomun', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3348, 'Churu', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3349, 'Daosa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3350, 'Dariba', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3351, 'Dausa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3352, 'Deoli', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3353, 'Deshnok', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3354, 'Devgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3355, 'Devli', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3356, 'Dhariawad', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3357, 'Dhaulpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3358, 'Dholpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3359, 'Didwana', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3360, 'Dig', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3361, 'Dungargarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3362, 'Dungarpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3363, 'Falna', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3364, 'Fatehnagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3365, 'Fatehpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3366, 'Gajsinghpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3367, 'Galiakot', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3368, 'Ganganagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3369, 'Gangapur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3370, 'Goredi Chancha', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3371, 'Gothra', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3372, 'Govindgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3373, 'Gulabpura', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3374, 'Hanumangarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3375, 'Hindaun', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3376, 'Indragarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3377, 'Jahazpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3378, 'Jaipur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3379, 'Jaisalmer', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3380, 'Jaiselmer', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3381, 'Jaitaran', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3382, 'Jalore', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3383, 'Jhalawar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3384, 'Jhalrapatan', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3385, 'Jhunjhunun', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3386, 'Jobner', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3387, 'Jodhpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3388, 'Kaithun', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3389, 'Kaman', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3390, 'Kankroli', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3391, 'Kanor', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3392, 'Kapasan', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3393, 'Kaprain', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3394, 'Karanpura', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3395, 'Karauli', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3396, 'Kekri', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3397, 'Keshorai Patan', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3398, 'Kesrisinghpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3399, 'Khairthal', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3400, 'Khandela', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3401, 'Khanpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3402, 'Kherli', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3403, 'Kherliganj', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3404, 'Kherwara Chhaoni', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3405, 'Khetri', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3406, 'Kiranipura', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3407, 'Kishangarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3408, 'Kishangarh Ranwal', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3409, 'Kolvi Rajendrapura', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3410, 'Kot Putli', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3411, 'Kota', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3412, 'Kuchaman', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3413, 'Kuchera', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3414, 'Kumbhalgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3415, 'Kumbhkot', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3416, 'Kumher', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3417, 'Kushalgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3418, 'Lachhmangarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3419, 'Ladnun', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3420, 'Lakheri', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3421, 'Lalsot', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3422, 'Losal', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3423, 'Madanganj', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3424, 'Mahu Kalan', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3425, 'Mahwa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3426, 'Makrana', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3427, 'Malpura', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3428, 'Mandal', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3429, 'Mandalgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3430, 'Mandawar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3431, 'Mandwa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3432, 'Mangrol', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3433, 'Manohar Thana', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3434, 'Manoharpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3435, 'Marwar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3436, 'Merta', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3437, 'Modak', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3438, 'Mount Abu', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3439, 'Mukandgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3440, 'Mundwa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3441, 'Nadbai', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3442, 'Naenwa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3443, 'Nagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3444, 'Nagaur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3445, 'Napasar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3446, 'Naraina', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3447, 'Nasirabad', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3448, 'Nathdwara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3449, 'Nawa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3450, 'Nawalgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3451, 'Neem Ka Thana', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3452, 'Neemrana', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3453, 'Newa Talai', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3454, 'Nimaj', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3455, 'Nimbahera', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3456, 'Niwai', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3457, 'Nohar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3458, 'Nokha', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3459, 'One SGM', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3460, 'Padampur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3461, 'Pali', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3462, 'Partapur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3463, 'Parvatsar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3464, 'Pasoond', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3465, 'Phalna', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3466, 'Phalodi', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3467, 'Phulera', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3468, 'Pilani', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3469, 'Pilibanga', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3470, 'Pindwara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3471, 'Pipalia Kalan', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3472, 'Pipar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3473, 'Pirawa', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3474, 'Pokaran', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3475, 'Pratapgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3476, 'Pushkar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3477, 'Raipur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3478, 'Raisinghnagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3479, 'Rajakhera', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3480, 'Rajaldesar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3481, 'Rajgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3482, 'Rajsamand', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3483, 'Ramganj Mandi', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3484, 'Ramgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3485, 'Rani', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3486, 'Raniwara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3487, 'Ratan Nagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3488, 'Ratangarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3489, 'Rawatbhata', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3490, 'Rawatsar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3491, 'Rikhabdev', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3492, 'Ringas', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3493, 'Sadri', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3494, 'Sadulshahar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3495, 'Sagwara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3496, 'Salumbar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3497, 'Sambhar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3498, 'Samdari', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3499, 'Sanchor', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3500, 'Sangariya', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3501, 'Sangod', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3502, 'Sardarshahr', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3503, 'Sarwar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3504, 'Satal Kheri', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3505, 'Sawai Madhopur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3506, 'Sewan Kalan', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3507, 'Shahpura', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3508, 'Sheoganj', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3509, 'Sikar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3510, 'Sirohi', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3511, 'Siwana', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3512, 'Sogariya', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3513, 'Sojat', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3514, 'Sojat Road', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3515, 'Sri Madhopur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3516, 'Sriganganagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3517, 'Sujangarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3518, 'Suket', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3519, 'Sumerpur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3520, 'Sunel', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3521, 'Surajgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3522, 'Suratgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3523, 'Swaroopganj', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3524, 'Takhatgarh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3525, 'Taranagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3526, 'Three STR', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3527, 'Tijara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3528, 'Toda Bhim', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3529, 'Toda Raisingh', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3530, 'Todra', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3531, 'Tonk', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3532, 'Udaipur', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3533, 'Udpura', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3534, 'Uniara', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3535, 'Vanasthali', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3536, 'Vidyavihar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3537, 'Vijainagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3538, 'Viratnagar', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3539, 'Wer', 33, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3540, 'Gangtok', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3541, 'Gezing', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3542, 'Jorethang', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3543, 'Mangan', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3544, 'Namchi', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3545, 'Naya Bazar', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3546, 'No City', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3547, 'Rangpo', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3548, 'Sikkim', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3549, 'Singtam', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3550, 'Upper Tadong', 34, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3551, 'Abiramam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3552, 'Achampudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3553, 'Acharapakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3554, 'Acharipallam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3555, 'Achipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3556, 'Adikaratti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3557, 'Adiramapattinam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3558, 'Aduturai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3559, 'Adyar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3560, 'Agaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3561, 'Agasthiswaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3562, 'Akkaraipettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3563, 'Alagappapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3564, 'Alagapuri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3565, 'Alampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3566, 'Alandur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3567, 'Alanganallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3568, 'Alangayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3569, 'Alangudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3570, 'Alangulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3571, 'Alanthurai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3572, 'Alapakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3573, 'Allapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3574, 'Alur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3575, 'Alwar Tirunagari', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3576, 'Alwarkurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3577, 'Ambasamudram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3578, 'Ambur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3579, 'Ammainaickanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3580, 'Ammaparikuppam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3581, 'Ammapettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3582, 'Ammavarikuppam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3583, 'Ammur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3584, 'Anaimalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3585, 'Anaiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3586, 'Anakaputhur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3587, 'Ananthapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3588, 'Andanappettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3589, 'Andipalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3590, 'Andippatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3591, 'Anjugramam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3592, 'Annamalainagar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3593, 'Annavasal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3594, 'Annur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3595, 'Anthiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3596, 'Appakudal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3597, 'Arachalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3598, 'Arakandanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3599, 'Arakonam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3600, 'Aralvaimozhi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3601, 'Arani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3602, 'Arani Road', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3603, 'Arantangi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3604, 'Arasiramani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3605, 'Aravakurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3606, 'Aravankadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3607, 'Arcot', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3608, 'Arimalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3609, 'Ariyalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3610, 'Ariyappampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3611, 'Ariyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3612, 'Arni', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3613, 'Arulmigu Thirumuruganpundi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3614, 'Arumanai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3615, 'Arumbavur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(3616, 'Arumuganeri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3617, 'Aruppukkottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3618, 'Ashokapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3619, 'Athani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3620, 'Athanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3621, 'Athimarapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3622, 'Athipattu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3623, 'Athur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3624, 'Attayyampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3625, 'Attur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3626, 'Auroville', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3627, 'Avadattur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3628, 'Avadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3629, 'Avalpundurai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3630, 'Avaniapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3631, 'Avinashi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3632, 'Ayakudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3633, 'Ayanadaippu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3634, 'Aygudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3635, 'Ayothiapattinam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3636, 'Ayyalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3637, 'Ayyampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3638, 'Ayyampettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3639, 'Azhagiapandiapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3640, 'Balakrishnampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3641, 'Balakrishnapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3642, 'Balapallam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3643, 'Balasamudram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3644, 'Bargur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3645, 'Belur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3646, 'Berhatty', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3647, 'Bhavani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3648, 'Bhawanisagar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3649, 'Bhuvanagiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3650, 'Bikketti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3651, 'Bodinayakkanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3652, 'Brahmana Periya Agraharam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3653, 'Buthapandi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3654, 'Buthipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3655, 'Chatrapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3656, 'Chembarambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3657, 'Chengalpattu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3658, 'Chengam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3659, 'Chennai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3660, 'Chennasamudram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3661, 'Chennimalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3662, 'Cheranmadevi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3663, 'Cheruvanki', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3664, 'Chetpet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3665, 'Chettiarpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3666, 'Chettipalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3667, 'Chettipalayam Cantonment', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3668, 'Chettithangal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3669, 'Cheyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3670, 'Cheyyar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3671, 'Chidambaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3672, 'Chinalapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3673, 'Chinna Anuppanadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3674, 'Chinna Salem', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3675, 'Chinnakkampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3676, 'Chinnammanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3677, 'Chinnampalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3678, 'Chinnasekkadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3679, 'Chinnavedampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3680, 'Chitlapakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3681, 'Chittodu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3682, 'Cholapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3683, 'Coimbatore', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3684, 'Coonoor', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3685, 'Courtalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3686, 'Cuddalore', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3687, 'Dalavaipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3688, 'Darasuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3689, 'Denkanikottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3690, 'Desur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3691, 'Devadanapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3692, 'Devakkottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3693, 'Devakottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3694, 'Devanangurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3695, 'Devarshola', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3696, 'Devasthanam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3697, 'Dhalavoipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3698, 'Dhali', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3699, 'Dhaliyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3700, 'Dharapadavedu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3701, 'Dharapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3702, 'Dharmapuri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3703, 'Dindigul', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3704, 'Dusi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3705, 'Edaganasalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3706, 'Edaikodu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3707, 'Edakalinadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3708, 'Elathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3709, 'Elayirampannai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3710, 'Elumalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3711, 'Eral', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3712, 'Eraniel', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3713, 'Eriodu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3714, 'Erode', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3715, 'Erumaipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3716, 'Eruvadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3717, 'Ethapur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3718, 'Ettaiyapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3719, 'Ettimadai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3720, 'Ezhudesam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3721, 'Ganapathipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3722, 'Gandhi Nagar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3723, 'Gangaikondan', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3724, 'Gangavalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3725, 'Ganguvarpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3726, 'Gingi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3727, 'Gopalasamudram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3728, 'Gopichettipalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3729, 'Gudalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3730, 'Gudiyattam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3731, 'Guduvanchery', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3732, 'Gummidipoondi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3733, 'Hanumanthampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3734, 'Harur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3735, 'Harveypatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3736, 'Highways', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3737, 'Hosur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3738, 'Hubbathala', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3739, 'Huligal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3740, 'Idappadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3741, 'Idikarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3742, 'Ilampillai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3743, 'Ilanji', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3744, 'Iluppaiyurani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3745, 'Iluppur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3746, 'Inam Karur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3747, 'Injambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3748, 'Irugur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3749, 'Jaffrabad', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3750, 'Jagathala', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3751, 'Jalakandapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3752, 'Jalladiampet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3753, 'Jambai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3754, 'Jayankondam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3755, 'Jolarpet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3756, 'Kadambur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3757, 'Kadathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3758, 'Kadayal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3759, 'Kadayampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3760, 'Kadayanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3761, 'Kadiapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3762, 'Kalakkad', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3763, 'Kalambur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3764, 'Kalapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3765, 'Kalappanaickenpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3766, 'Kalavai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3767, 'Kalinjur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3768, 'Kaliyakkavilai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3769, 'Kallakkurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3770, 'Kallakudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3771, 'Kallidaikurichchi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3772, 'Kallukuttam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3773, 'Kallupatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3774, 'Kalpakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3775, 'Kalugumalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3776, 'Kamayagoundanpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3777, 'Kambainallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3778, 'Kambam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3779, 'Kamuthi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3780, 'Kanadukathan', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3781, 'Kanakkampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3782, 'Kanam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3783, 'Kanchipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3784, 'Kandanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3785, 'Kangayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3786, 'Kangayampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3787, 'Kangeyanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3788, 'Kaniyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3789, 'Kanjikoil', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3790, 'Kannadendal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3791, 'Kannamangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3792, 'Kannampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3793, 'Kannankurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3794, 'Kannapalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3795, 'Kannivadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3796, 'Kanyakumari', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3797, 'Kappiyarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3798, 'Karaikkudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3799, 'Karamadai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3800, 'Karambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3801, 'Karambakkudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3802, 'Kariamangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3803, 'Kariapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3804, 'Karugampattur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3805, 'Karumandi Chellipalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3806, 'Karumathampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3807, 'Karumbakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3808, 'Karungal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3809, 'Karunguzhi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3810, 'Karuppur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3811, 'Karur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3812, 'Kasipalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3813, 'Kasipalayam G', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3814, 'Kathirvedu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3815, 'Kathujuganapalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3816, 'Katpadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3817, 'Kattivakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3818, 'Kattumannarkoil', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3819, 'Kattupakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3820, 'Kattuputhur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3821, 'Kaveripakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3822, 'Kaveripattinam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3823, 'Kavundampalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3824, 'Kavundampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3825, 'Kayalpattinam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3826, 'Kayattar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3827, 'Kelamangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3828, 'Kelambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3829, 'Kembainaickenpalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3830, 'Kethi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3831, 'Kilakarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3832, 'Kilampadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3833, 'Kilkulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3834, 'Kilkunda', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3835, 'Killiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3836, 'Killlai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3837, 'Kilpennathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3838, 'Kilvelur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3839, 'Kinathukadavu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3840, 'Kiramangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3841, 'Kiranur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3842, 'Kiripatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3843, 'Kizhapavur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3844, 'Kmarasamipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3845, 'Kochadai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3846, 'Kodaikanal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3847, 'Kodambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3848, 'Kodavasal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3849, 'Kodumudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3850, 'Kolachal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3851, 'Kolappalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3852, 'Kolathupalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3853, 'Kolathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3854, 'Kollankodu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3855, 'Kollankoil', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3856, 'Komaralingam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3857, 'Komarapalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3858, 'Kombai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3859, 'Konakkarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3860, 'Konavattam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3861, 'Kondalampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3862, 'Konganapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3863, 'Koradacheri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3864, 'Korampallam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3865, 'Kotagiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3866, 'Kothinallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3867, 'Kottaiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3868, 'Kottakuppam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3869, 'Kottaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3870, 'Kottivakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3871, 'Kottur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3872, 'Kovilpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3873, 'Koyampattur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3874, 'Krishnagiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3875, 'Krishnarayapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3876, 'Krishnasamudram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3877, 'Kuchanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3878, 'Kuhalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3879, 'Kulasekarappattinam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3880, 'Kulasekarapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3881, 'Kulithalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3882, 'Kumarapalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3883, 'Kumarapalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3884, 'Kumarapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3885, 'Kumbakonam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3886, 'Kundrathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3887, 'Kuniyamuthur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3888, 'Kunnathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3889, 'Kunur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3890, 'Kuraikundu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3891, 'Kurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3892, 'Kurinjippadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3893, 'Kurudampalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3894, 'Kurumbalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3895, 'Kuthalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3896, 'Kuthappar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3897, 'Kuttalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3898, 'Kuttanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3899, 'Kuzhithurai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3900, 'Labbaikudikadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3901, 'Lakkampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3902, 'Lalgudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3903, 'Lalpet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3904, 'Llayangudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3905, 'Madambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3906, 'Madanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3907, 'Madathukulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3908, 'Madhavaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3909, 'Madippakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3910, 'Madukkarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3911, 'Madukkur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3912, 'Madurai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3913, 'Maduranthakam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3914, 'Maduravoyal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3915, 'Mahabalipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3916, 'Makkinanpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3917, 'Mallamuppampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3918, 'Mallankinaru', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3919, 'Mallapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3920, 'Mallasamudram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3921, 'Mallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3922, 'Mamallapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3923, 'Mamsapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3924, 'Manachanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3925, 'Manali', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3926, 'Manalmedu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3927, 'Manalurpet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3928, 'Manamadurai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3929, 'Manapakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3930, 'Manapparai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3931, 'Manavalakurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3932, 'Mandaikadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3933, 'Mandapam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3934, 'Mangadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3935, 'Mangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3936, 'Mangalampet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3937, 'Manimutharu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3938, 'Mannargudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3939, 'Mappilaiurani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3940, 'Maraimalai Nagar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3941, 'Marakkanam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3942, 'Maramangalathupatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3943, 'Marandahalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3944, 'Markayankottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3945, 'Marudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3946, 'Marungur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3947, 'Masinigudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3948, 'Mathigiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3949, 'Mattur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3950, 'Mayiladuthurai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3951, 'Mecheri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3952, 'Melacheval', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3953, 'Melachokkanathapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3954, 'Melagaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3955, 'Melamadai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3956, 'Melamaiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3957, 'Melanattam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3958, 'Melathiruppanthuruthi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3959, 'Melattur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3960, 'Melmananbedu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3961, 'Melpattampakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3962, 'Melur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3963, 'Melvisharam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3964, 'Mettupalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3965, 'Mettur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3966, 'Meyyanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3967, 'Milavittan', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3968, 'Minakshipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3969, 'Minambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3970, 'Minjur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3971, 'Modakurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3972, 'Mohanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3973, 'Mopperipalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3974, 'Mudalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3975, 'Mudichur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3976, 'Mudukulathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3977, 'Mukasipidariyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3978, 'Mukkudal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3979, 'Mulagumudu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3980, 'Mulakaraipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3981, 'Mulanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3982, 'Mullakkadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3983, 'Muruganpalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3984, 'Musiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3985, 'Muthupet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3986, 'Muthur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3987, 'Muttayyapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3988, 'Muttupet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3989, 'Muvarasampettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3990, 'Myladi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3991, 'Mylapore', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3992, 'Nadukkuthagai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3993, 'Naduvattam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3994, 'Nagapattinam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3995, 'Nagavakulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3996, 'Nagercoil', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3997, 'Nagojanahalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3998, 'Nallampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(3999, 'Nallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4000, 'Namagiripettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4001, 'Namakkal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4002, 'Nambiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4003, 'Nambutalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4004, 'Nandambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4005, 'Nandivaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4006, 'Nangavalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4007, 'Nangavaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4008, 'Nanguneri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4009, 'Nanjikottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4010, 'Nannilam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4011, 'Naranammalpuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4012, 'Naranapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4013, 'Narasimhanaickenpalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4014, 'Narasingapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4015, 'Narasojipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4016, 'Naravarikuppam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4017, 'Nasiyanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4018, 'Natham', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4019, 'Nathampannai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4020, 'Natrampalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4021, 'Nattam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4022, 'Nattapettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4023, 'Nattarasankottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4024, 'Navalpattu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4025, 'Nazarethpettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4026, 'Nazerath', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4027, 'Neikkarapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4028, 'Neiyyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4029, 'Nellikkuppam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4030, 'Nelliyalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4031, 'Nemili', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4032, 'Nemilicheri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4033, 'Neripperichal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4034, 'Nerkunram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4035, 'Nerkuppai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4036, 'Nerunjipettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4037, 'Neykkarappatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4038, 'Neyveli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4039, 'Nidamangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4040, 'Nilagiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4041, 'Nilakkottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4042, 'Nilankarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4043, 'Odaipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4044, 'Odaiyakulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4045, 'Oddanchatram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4046, 'Odugathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4047, 'Oggiyamduraipakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4048, 'Olagadam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4049, 'Omalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4050, 'Ooty', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4051, 'Orathanadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4052, 'Othakadai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4053, 'Othakalmandapam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4054, 'Ottapparai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4055, 'Pacode', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4056, 'Padaividu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4057, 'Padianallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4058, 'Padirikuppam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4059, 'Padmanabhapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4060, 'Padririvedu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4061, 'Palaganangudy', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4062, 'Palaimpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4063, 'Palakkodu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4064, 'Palamedu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4065, 'Palani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4066, 'Palani Chettipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4067, 'Palavakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4068, 'Palavansathu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4069, 'Palayakayal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4070, 'Palayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4071, 'Palayamkottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4072, 'Palladam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4073, 'Pallapalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4074, 'Pallapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4075, 'Pallattur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4076, 'Pallavaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4077, 'Pallikaranai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4078, 'Pallikonda', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4079, 'Pallipalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4080, 'Pallipalaiyam Agraharam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4081, 'Pallipattu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4082, 'Pammal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4083, 'Panagudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4084, 'Panaimarathupatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4085, 'Panapakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4086, 'Panboli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4087, 'Pandamangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4088, 'Pannaikadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4089, 'Pannaipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4090, 'Pannuratti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4091, 'Panruti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4092, 'Papanasam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4093, 'Pappankurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4094, 'Papparapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4095, 'Pappireddipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4096, 'Paramakkudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4097, 'Paramankurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4098, 'Paramathi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4099, 'Parangippettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4100, 'Paravai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4101, 'Pasur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4102, 'Pathamadai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4103, 'Pattinam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4104, 'Pattiviranpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4105, 'Pattukkottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4106, 'Pazhugal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4107, 'Pennadam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4108, 'Pennagaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4109, 'Pennathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4110, 'Peraiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4111, 'Peralam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4112, 'Perambalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4113, 'Peranamallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4114, 'Peravurani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4115, 'Periyakodiveri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4116, 'Periyakulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4117, 'Periyanayakkanpalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4118, 'Periyanegamam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4119, 'Periyapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4120, 'Periyasemur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4121, 'Pernambut', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4122, 'Perumagalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4123, 'Perumandi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4124, 'Perumuchi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4125, 'Perundurai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4126, 'Perungalathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4127, 'Perungudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4128, 'Perungulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4129, 'Perur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4130, 'Perur Chettipalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4131, 'Pethampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4132, 'Pethanaickenpalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4133, 'Pillanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4134, 'Pirkankaranai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4135, 'Polichalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4136, 'Pollachi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4137, 'Polur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4138, 'Ponmani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4139, 'Ponnamaravathi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4140, 'Ponnampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4141, 'Ponneri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4142, 'Porur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4143, 'Pothanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4144, 'Pothatturpettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4145, 'Pudukadai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4146, 'Pudukkottai Cantonment', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4147, 'Pudukottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4148, 'Pudupalaiyam Aghraharam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4149, 'Pudupalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4150, 'Pudupatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4151, 'Pudupattinam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4152, 'Pudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4153, 'Puduvayal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4154, 'Pulambadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4155, 'Pulampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4156, 'Puliyampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4157, 'Puliyankudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4158, 'Puliyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4159, 'Pullampadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4160, 'Puluvapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4161, 'Punamalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4162, 'Punjai Puliyampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4163, 'Punjai Thottakurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4164, 'Punjaipugalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4165, 'Puthalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4166, 'Putteri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4167, 'Puvalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4168, 'Puzhal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4169, 'Puzhithivakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4170, 'Rajapalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4171, 'Ramanathapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4172, 'Ramapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4173, 'Rameswaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4174, 'Ranipet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4175, 'Rasipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4176, 'Rayagiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4177, 'Rithapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4178, 'Rosalpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4179, 'Rudravathi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4180, 'Sadayankuppam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4181, 'Saint Thomas Mount', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4182, 'Salangapalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4183, 'Salem', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4184, 'Samalapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4185, 'Samathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4186, 'Sambavar Vadagarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4187, 'Sankaramanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4188, 'Sankarankoil', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4189, 'Sankarapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4190, 'Sankari', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4191, 'Sankarnagar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4192, 'Saravanampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4193, 'Sarcarsamakulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4194, 'Sathiyavijayanagaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4195, 'Sathuvachari', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4196, 'Sathyamangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4197, 'Sattankulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(4198, 'Sattur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4199, 'Sayalgudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4200, 'Sayapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4201, 'Seithur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4202, 'Sembakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4203, 'Semmipalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4204, 'Sennirkuppam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4205, 'Senthamangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4206, 'Sentharapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4207, 'Senur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4208, 'Sethiathoppu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4209, 'Sevilimedu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4210, 'Sevugampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4211, 'Shenbakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4212, 'Shencottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4213, 'Shenkottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4214, 'Sholavandan', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4215, 'Sholinganallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4216, 'Sholingur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4217, 'Sholur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4218, 'Sikkarayapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4219, 'Singampuneri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4220, 'Singanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4221, 'Singaperumalkoil', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4222, 'Sirapalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4223, 'Sirkali', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4224, 'Sirugamani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4225, 'Sirumugai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4226, 'Sithayankottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4227, 'Sithurajapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4228, 'Sivaganga', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4229, 'Sivagiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4230, 'Sivakasi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4231, 'Sivanthipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4232, 'Sivur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4233, 'Soranjeri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4234, 'South Kannanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4235, 'South Kodikulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4236, 'Srimushnam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4237, 'Sriperumpudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4238, 'Sriramapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4239, 'Srirangam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4240, 'Srivaikuntam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4241, 'Srivilliputtur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4242, 'Suchindram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4243, 'Suliswaranpatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4244, 'Sulur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4245, 'Sundarapandiam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4246, 'Sundarapandiapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4247, 'Surampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4248, 'Surandai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4249, 'Suriyampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4250, 'Swamimalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4251, 'TNPL Pugalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4252, 'Tambaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4253, 'Taramangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4254, 'Tattayyangarpettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4255, 'Tayilupatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4256, 'Tenkasi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4257, 'Thadikombu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4258, 'Thakkolam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4259, 'Thalainayar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4260, 'Thalakudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4261, 'Thamaraikulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4262, 'Thammampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4263, 'Thanjavur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4264, 'Thanthoni', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4265, 'Tharangambadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4266, 'Thedavur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4267, 'Thenambakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4268, 'Thengampudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4269, 'Theni', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4270, 'Theni Allinagaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4271, 'Thenkarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4272, 'Thenthamaraikulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4273, 'Thenthiruperai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4274, 'Thesur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4275, 'Thevaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4276, 'Thevur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4277, 'Thiagadurgam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4278, 'Thiagarajar Colony', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4279, 'Thingalnagar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4280, 'Thiruchirapalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4281, 'Thirukarungudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4282, 'Thirukazhukundram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4283, 'Thirumalayampalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4284, 'Thirumazhisai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4285, 'Thirunagar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4286, 'Thirunageswaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4287, 'Thirunindravur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4288, 'Thirunirmalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4289, 'Thiruparankundram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4290, 'Thiruparappu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4291, 'Thiruporur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4292, 'Thiruppanandal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4293, 'Thirupuvanam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4294, 'Thiruthangal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4295, 'Thiruthuraipundi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4296, 'Thiruvaivaru', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4297, 'Thiruvalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4298, 'Thiruvarur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4299, 'Thiruvattaru', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4300, 'Thiruvenkatam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4301, 'Thiruvennainallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4302, 'Thiruvithankodu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4303, 'Thisayanvilai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4304, 'Thittacheri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4305, 'Thondamuthur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4306, 'Thorapadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4307, 'Thottipalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4308, 'Thottiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4309, 'Thudiyalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4310, 'Thuthipattu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4311, 'Thuvakudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4312, 'Timiri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4313, 'Tindivanam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4314, 'Tinnanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4315, 'Tiruchchendur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4316, 'Tiruchengode', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4317, 'Tirukkalukkundram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4318, 'Tirukkattuppalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4319, 'Tirukkoyilur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4320, 'Tirumangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4321, 'Tirumullaivasal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4322, 'Tirumuruganpundi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4323, 'Tirunageswaram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4324, 'Tirunelveli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4325, 'Tirupathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4326, 'Tirupattur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4327, 'Tiruppuvanam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4328, 'Tirupur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4329, 'Tirusulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4330, 'Tiruttani', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4331, 'Tiruvallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4332, 'Tiruvannamalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4333, 'Tiruverambur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4334, 'Tiruverkadu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4335, 'Tiruvethipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4336, 'Tiruvidaimarudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4337, 'Tiruvottiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4338, 'Tittakudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4339, 'Tondi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4340, 'Turaiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4341, 'Tuticorin', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4342, 'Udagamandalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4343, 'Udagamandalam Valley', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4344, 'Udankudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4345, 'Udayarpalayam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4346, 'Udumalaipettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4347, 'Udumalpet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4348, 'Ullur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4349, 'Ulundurpettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4350, 'Unjalaur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4351, 'Unnamalaikadai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4352, 'Uppidamangalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4353, 'Uppiliapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4354, 'Urachikkottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4355, 'Urapakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4356, 'Usilampatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4357, 'Uthangarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4358, 'Uthayendram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4359, 'Uthiramerur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4360, 'Uthukkottai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4361, 'Uttamapalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4362, 'Uttukkuli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4363, 'Vadakarai Kizhpadugai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4364, 'Vadakkanandal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4365, 'Vadakku Valliyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4366, 'Vadalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4367, 'Vadamadurai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4368, 'Vadavalli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4369, 'Vadipatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4370, 'Vadugapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4371, 'Vaithiswarankoil', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4372, 'Valangaiman', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4373, 'Valasaravakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4374, 'Valavanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4375, 'Vallam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4376, 'Valparai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4377, 'Valvaithankoshtam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4378, 'Vanavasi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4379, 'Vandalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4380, 'Vandavasi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4381, 'Vandiyur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4382, 'Vaniputhur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4383, 'Vaniyambadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4384, 'Varadarajanpettai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4385, 'Varadharajapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4386, 'Vasudevanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4387, 'Vathirairuppu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4388, 'Vattalkundu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4389, 'Vazhapadi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4390, 'Vedapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4391, 'Vedaranniyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4392, 'Vedasandur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4393, 'Velampalaiyam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4394, 'Velankanni', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4395, 'Vellakinar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4396, 'Vellakoil', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4397, 'Vellalapatti', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4398, 'Vellalur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4399, 'Vellanur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4400, 'Vellimalai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4401, 'Vellore', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4402, 'Vellottamparappu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4403, 'Velluru', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4404, 'Vengampudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4405, 'Vengathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4406, 'Vengavasal', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4407, 'Venghatur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4408, 'Venkarai', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4409, 'Vennanthur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4410, 'Veppathur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4411, 'Verkilambi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4412, 'Vettaikaranpudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4413, 'Vettavalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4414, 'Vijayapuri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4415, 'Vikramasingapuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4416, 'Vikravandi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4417, 'Vilangudi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4418, 'Vilankurichi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4419, 'Vilapakkam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4420, 'Vilathikulam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4421, 'Vilavur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4422, 'Villukuri', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4423, 'Villupuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4424, 'Viraganur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4425, 'Virakeralam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4426, 'Virakkalpudur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4427, 'Virapandi', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4428, 'Virapandi Cantonment', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4429, 'Virappanchatram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4430, 'Viravanallur', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4431, 'Virudambattu', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4432, 'Virudhachalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4433, 'Virudhunagar', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4434, 'Virupakshipuram', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4435, 'Viswanatham', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4436, 'Vriddhachalam', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4437, 'Walajabad', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4438, 'Walajapet', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4439, 'Wellington', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4440, 'Yercaud', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4441, 'Zamin Uthukuli', 35, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4442, 'Achampet', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4443, 'Adilabad', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4444, 'Armoor', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4445, 'Asifabad', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4446, 'Badepally', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4447, 'Banswada', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4448, 'Bellampalli', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4449, 'Bhadrachalam', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4450, 'Bhainsa', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4451, 'Bhongir', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4452, 'Bhupalpally', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4453, 'Bodhan', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4454, 'Bollaram', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4455, 'Devarkonda', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4456, 'Farooqnagar', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4457, 'Gadwal', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4458, 'Gajwel', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4459, 'Ghatkesar', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4460, 'Hyderabad', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4461, 'Jagtial', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4462, 'Jangaon', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4463, 'Kagaznagar', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4464, 'Kalwakurthy', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4465, 'Kamareddy', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4466, 'Karimnagar', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4467, 'Khammam', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4468, 'Kodada', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4469, 'Koratla', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4470, 'Kottagudem', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4471, 'Kyathampalle', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4472, 'Madhira', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4473, 'Mahabubabad', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4474, 'Mahbubnagar', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4475, 'Mancherial', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4476, 'Mandamarri', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4477, 'Manuguru', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4478, 'Medak', 36, 0.00, 0, '2021-04-06 01:13:42', '2021-04-06 01:13:42', NULL), -(4479, 'Medchal', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4480, 'Miryalaguda', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4481, 'Nagar Karnul', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4482, 'Nakrekal', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4483, 'Nalgonda', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4484, 'Narayanpet', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4485, 'Narsampet', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4486, 'Nirmal', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4487, 'Nizamabad', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4488, 'Palwancha', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4489, 'Peddapalli', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4490, 'Ramagundam', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4491, 'Ranga Reddy district', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4492, 'Sadasivpet', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4493, 'Sangareddy', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4494, 'Sarapaka', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4495, 'Sathupalle', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4496, 'Secunderabad', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4497, 'Siddipet', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4498, 'Singapur', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4499, 'Sircilla', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4500, 'Suryapet', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4501, 'Tandur', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4502, 'Vemulawada', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4503, 'Vikarabad', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4504, 'Wanaparthy', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4505, 'Warangal', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4506, 'Yellandu', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4507, 'Zahirabad', 36, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4508, 'Agartala', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4509, 'Amarpur', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4510, 'Ambassa', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4511, 'Badharghat', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4512, 'Belonia', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4513, 'Dharmanagar', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4514, 'Gakulnagar', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4515, 'Gandhigram', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4516, 'Indranagar', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4517, 'Jogendranagar', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4518, 'Kailasahar', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4519, 'Kamalpur', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4520, 'Kanchanpur', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4521, 'Khowai', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4522, 'Kumarghat', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4523, 'Kunjaban', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4524, 'Narsingarh', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4525, 'Pratapgarh', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4526, 'Ranir Bazar', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4527, 'Sabrum', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4528, 'Sonamura', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4529, 'Teliamura', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4530, 'Udaipur', 37, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4531, 'Achhalda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4532, 'Achhnera', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4533, 'Adari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4534, 'Afzalgarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4535, 'Agarwal Mandi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4536, 'Agra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4537, 'Agra Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4538, 'Ahraura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4539, 'Ailum', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4540, 'Air Force Area', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4541, 'Ajhuwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4542, 'Akbarpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4543, 'Alapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4544, 'Aliganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4545, 'Aligarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4546, 'Allahabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4547, 'Allahabad Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4548, 'Allahganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4549, 'Amanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4550, 'Ambahta', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4551, 'Amethi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4552, 'Amila', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4553, 'Amilo', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4554, 'Aminagar Sarai', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4555, 'Aminagar Urf Bhurbaral', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4556, 'Amraudha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4557, 'Amroha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4558, 'Anandnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4559, 'Anpara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4560, 'Antu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4561, 'Anupshahr', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4562, 'Aonla', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4563, 'Armapur Estate', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4564, 'Ashokpuram', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4565, 'Ashrafpur Kichhauchha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4566, 'Atarra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4567, 'Atasu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4568, 'Atrauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4569, 'Atraulia', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4570, 'Auraiya', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4571, 'Aurangabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4572, 'Aurangabad Bangar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4573, 'Auras', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4574, 'Awagarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4575, 'Ayodhya', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4576, 'Azamgarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4577, 'Azizpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4578, 'Azmatgarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4579, 'Babarpur Ajitmal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4580, 'Baberu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4581, 'Babina', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4582, 'Babrala', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4583, 'Babugarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4584, 'Bachhiowan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4585, 'Bachhraon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4586, 'Bad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4587, 'Badaun', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4588, 'Baghpat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4589, 'Bah', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4590, 'Bahadurganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4591, 'Baheri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4592, 'Bahjoi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4593, 'Bahraich', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4594, 'Bahsuma', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4595, 'Bahua', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4596, 'Bajna', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4597, 'Bakewar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4598, 'Bakiabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4599, 'Baldeo', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4600, 'Ballia', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4601, 'Balrampur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4602, 'Banat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4603, 'Banda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4604, 'Bangarmau', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4605, 'Banki', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4606, 'Bansdih', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4607, 'Bansgaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4608, 'Bansi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4609, 'Barabanki', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4610, 'Baragaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4611, 'Baraut', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4612, 'Bareilly', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4613, 'Bareilly Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4614, 'Barhalganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4615, 'Barhani', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4616, 'Barhapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4617, 'Barkhera', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4618, 'Barsana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4619, 'Barva Sagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4620, 'Barwar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4621, 'Basti', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4622, 'Begumabad Budhana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4623, 'Behat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4624, 'Behta Hajipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4625, 'Bela', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4626, 'Belthara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4627, 'Beniganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4628, 'Beswan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4629, 'Bewar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4630, 'Bhadarsa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4631, 'Bhadohi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4632, 'Bhagwantnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4633, 'Bharatganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4634, 'Bhargain', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4635, 'Bharthana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4636, 'Bharuhana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4637, 'Bharwari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4638, 'Bhatni Bazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4639, 'Bhatpar Rani', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4640, 'Bhawan Bahadurnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4641, 'Bhinga', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4642, 'Bhojpur Dharampur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4643, 'Bhokarhedi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4644, 'Bhongaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4645, 'Bhulepur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4646, 'Bidhuna', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4647, 'Bighapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4648, 'Bijnor', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4649, 'Bijpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4650, 'Bikapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4651, 'Bilari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4652, 'Bilaspur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4653, 'Bilgram', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4654, 'Bilhaur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4655, 'Bilram', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4656, 'Bilrayaganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4657, 'Bilsanda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4658, 'Bilsi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4659, 'Bindki', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4660, 'Bisalpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4661, 'Bisanda Buzurg', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4662, 'Bisauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4663, 'Bisharatganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4664, 'Bisokhar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4665, 'Biswan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4666, 'Bithur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4667, 'Budaun', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4668, 'Bugrasi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4669, 'Bulandshahar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4670, 'Burhana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4671, 'Chail', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4672, 'Chak Imam Ali', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4673, 'Chakeri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4674, 'Chakia', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4675, 'Chandauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4676, 'Chandausi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4677, 'Chandpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4678, 'Charkhari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4679, 'Charthawal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4680, 'Chaumuhan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4681, 'Chhaprauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4682, 'Chhara Rafatpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4683, 'Chharprauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4684, 'Chhata', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4685, 'Chhatari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4686, 'Chhibramau', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4687, 'Chhutmalpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4688, 'Chilkana Sultanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4689, 'Chirgaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4690, 'Chit Baragaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4691, 'Chitrakut Dham', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4692, 'Chopan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4693, 'Choubepur Kalan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4694, 'Chunar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4695, 'Churk Ghurma', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4696, 'Colonelganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4697, 'Dadri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4698, 'Dalmau', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4699, 'Dankaur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4700, 'Dariyabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4701, 'Dasna', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4702, 'Dataganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4703, 'Daurala', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4704, 'Dayal Bagh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4705, 'Deoband', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4706, 'Deoranian', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4707, 'Deoria', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4708, 'Dewa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4709, 'Dhampur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4710, 'Dhanauha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4711, 'Dhanauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4712, 'Dhanaura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4713, 'Dharoti Khurd', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4714, 'Dhauratanda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4715, 'Dhaurhra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4716, 'Dibai', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4717, 'Dibiyapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4718, 'Dildarnagar Fatehpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4719, 'Do Ghat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4720, 'Dohrighat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4721, 'Dostpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4722, 'Dudhinagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4723, 'Dulhipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4724, 'Dundwaraganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4725, 'Ekdil', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4726, 'Erich', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4727, 'Etah', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4728, 'Etawah', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4729, 'Faizabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4730, 'Faizabad Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4731, 'Faizganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4732, 'Farah', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4733, 'Faridnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4734, 'Faridpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4735, 'Faridpur Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4736, 'Fariha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4737, 'Farrukhabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4738, 'Fatehabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4739, 'Fatehganj Pashchimi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4740, 'Fatehganj Purvi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4741, 'Fatehgarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4742, 'Fatehpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4743, 'Fatehpur Chaurasi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4744, 'Fatehpur Sikri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4745, 'Firozabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4746, 'Gajraula', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4747, 'Ganga Ghat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4748, 'Gangapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4749, 'Gangoh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4750, 'Ganj Muradabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4751, 'Garautha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4752, 'Garhi Pukhta', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4753, 'Garhmukteshwar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4754, 'Gaura Barahaj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4755, 'Gauri Bazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4756, 'Gausganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4757, 'Gawan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4758, 'Ghatampur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4759, 'Ghaziabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4760, 'Ghazipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4761, 'Ghiror', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4762, 'Ghorawal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4763, 'Ghosi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4764, 'Ghosia Bazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4765, 'Ghughuli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4766, 'Gohand', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4767, 'Gokul', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4768, 'Gola Bazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4769, 'Gola Gokarannath', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4770, 'Gonda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4771, 'Gopamau', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4772, 'Gopiganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4773, 'Gorakhpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4774, 'Gosainganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4775, 'Govardhan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4776, 'Greater Noida', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4777, 'Gulaothi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4778, 'Gulariya', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4779, 'Gulariya Bhindara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4780, 'Gunnaur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4781, 'Gursahaiganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4782, 'Gursarai', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4783, 'Gyanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4784, 'Hafizpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4785, 'Haidergarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(4786, 'Haldaur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4787, 'Hamirpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4788, 'Handia', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4789, 'Hapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4790, 'Hardoi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4791, 'Harduaganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4792, 'Hargaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4793, 'Hariharpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4794, 'Harraiya', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4795, 'Hasanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4796, 'Hasayan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4797, 'Hastinapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4798, 'Hata', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4799, 'Hathras', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4800, 'Hyderabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4801, 'Ibrahimpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4802, 'Iglas', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4803, 'Ikauna', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4804, 'Iltifatganj Bazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4805, 'Indian Telephone Industry Mank', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4806, 'Islamnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4807, 'Itaunja', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4808, 'Itimadpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4809, 'Jagner', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4810, 'Jahanabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4811, 'Jahangirabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4812, 'Jahangirpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4813, 'Jais', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4814, 'Jaithara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4815, 'Jalalabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4816, 'Jalali', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4817, 'Jalalpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4818, 'Jalaun', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4819, 'Jalesar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4820, 'Jamshila', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4821, 'Jangipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4822, 'Jansath', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4823, 'Jarwal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4824, 'Jasrana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4825, 'Jaswantnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4826, 'Jatari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4827, 'Jaunpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4828, 'Jewar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4829, 'Jhalu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4830, 'Jhansi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4831, 'Jhansi Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4832, 'Jhansi Railway Settlement', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4833, 'Jhinjhak', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4834, 'Jhinjhana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4835, 'Jhusi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4836, 'Jhusi Kohna', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4837, 'Jiyanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4838, 'Joya', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4839, 'Jyoti Khuria', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4840, 'Jyotiba Phule Nagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4841, 'Kabrai', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4842, 'Kachhauna Patseni', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4843, 'Kachhla', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4844, 'Kachhwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4845, 'Kadaura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4846, 'Kadipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4847, 'Kailashpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4848, 'Kaimganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4849, 'Kairana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4850, 'Kakgaina', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4851, 'Kakod', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4852, 'Kakori', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4853, 'Kakrala', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4854, 'Kalinagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4855, 'Kalpi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4856, 'Kamalganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4857, 'Kampil', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4858, 'Kandhla', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4859, 'Kandwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4860, 'Kannauj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4861, 'Kanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4862, 'Kant', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4863, 'Kanth', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4864, 'Kaptanganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4865, 'Karaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4866, 'Karari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4867, 'Karhal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4868, 'Karnawal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4869, 'Kasganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4870, 'Katariya', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4871, 'Katghar Lalganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4872, 'Kathera', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4873, 'Katra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4874, 'Katra Medniganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4875, 'Kauriaganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4876, 'Kemri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4877, 'Kerakat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4878, 'Khadda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4879, 'Khaga', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4880, 'Khailar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4881, 'Khair', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4882, 'Khairabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4883, 'Khairagarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4884, 'Khalilabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4885, 'Khamaria', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4886, 'Khanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4887, 'Kharela', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4888, 'Khargupur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4889, 'Khariya', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4890, 'Kharkhoda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4891, 'Khatauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4892, 'Khatauli Rural', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4893, 'Khekra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4894, 'Kheri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4895, 'Kheta Sarai', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4896, 'Khudaganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4897, 'Khurja', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4898, 'Khutar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4899, 'Kiraoli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4900, 'Kiratpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4901, 'Kishanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4902, 'Kishni', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4903, 'Kithaur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4904, 'Koiripur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4905, 'Konch', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4906, 'Kopaganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4907, 'Kora Jahanabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4908, 'Korwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4909, 'Kosi Kalan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4910, 'Kota', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4911, 'Kotra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4912, 'Kotwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4913, 'Kulpahar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4914, 'Kunda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4915, 'Kundarki', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4916, 'Kunwargaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4917, 'Kurara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4918, 'Kurawali', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4919, 'Kursath', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4920, 'Kurthi Jafarpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4921, 'Kushinagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4922, 'Kusmara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4923, 'Laharpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4924, 'Lakhimpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4925, 'Lakhna', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4926, 'Lalganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4927, 'Lalitpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4928, 'Lar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4929, 'Lawar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4930, 'Ledwa Mahuwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4931, 'Lohta', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4932, 'Loni', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4933, 'Lucknow', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4934, 'Machhlishahr', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4935, 'Madhoganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4936, 'Madhogarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4937, 'Maghar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4938, 'Mahaban', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4939, 'Maharajganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4940, 'Mahmudabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4941, 'Mahoba', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4942, 'Maholi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4943, 'Mahona', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4944, 'Mahroni', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4945, 'Mailani', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4946, 'Mainpuri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4947, 'Majhara Pipar Ehatmali', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4948, 'Majhauli Raj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4949, 'Malihabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4950, 'Mallanwam', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4951, 'Mandawar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4952, 'Manikpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4953, 'Maniyar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4954, 'Manjhanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4955, 'Mankapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4956, 'Marehra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4957, 'Mariahu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4958, 'Maruadih', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4959, 'Maswasi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4960, 'Mataundh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4961, 'Mathu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4962, 'Mathura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4963, 'Mathura Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4964, 'Mau', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4965, 'Mau Aima', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4966, 'Maudaha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4967, 'Mauranipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4968, 'Maurawan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4969, 'Mawana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4970, 'Meerut', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4971, 'Mehnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4972, 'Mehndawal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4973, 'Mendu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4974, 'Milak', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4975, 'Miranpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4976, 'Mirat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4977, 'Mirat Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4978, 'Mirganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4979, 'Mirzapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4980, 'Misrikh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4981, 'Modinagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4982, 'Mogra Badshahpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4983, 'Mohan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4984, 'Mohanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4985, 'Mohiuddinpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4986, 'Moradabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4987, 'Moth', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4988, 'Mubarakpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4989, 'Mughal Sarai', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4990, 'Mughal Sarai Railway Settlemen', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4991, 'Muhammadabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4992, 'Muhammadi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4993, 'Mukrampur Khema', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4994, 'Mundia', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4995, 'Mundora', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4996, 'Muradnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4997, 'Mursan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4998, 'Musafirkhana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(4999, 'Muzaffarnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5000, 'Nadigaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5001, 'Nagina', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5002, 'Nagram', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5003, 'Nai Bazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5004, 'Nainana Jat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5005, 'Najibabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5006, 'Nakur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5007, 'Nanaunta', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5008, 'Nandgaon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5009, 'Nanpara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5010, 'Naraini', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5011, 'Narauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5012, 'Naraura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5013, 'Naugawan Sadat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5014, 'Nautanwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5015, 'Nawabganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5016, 'Nichlaul', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5017, 'Nidhauli Kalan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5018, 'Nihtaur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5019, 'Nindaura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5020, 'Niwari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5021, 'Nizamabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5022, 'Noida', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5023, 'Northern Railway Colony', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5024, 'Nurpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5025, 'Nyoria Husenpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5026, 'Nyotini', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5027, 'Obra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5028, 'Oel Dhakwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5029, 'Orai', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5030, 'Oran', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5031, 'Ordinance Factory Muradnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5032, 'Pachperwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5033, 'Padrauna', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5034, 'Pahasu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5035, 'Paintepur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5036, 'Pali', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5037, 'Palia Kalan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5038, 'Parasi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5039, 'Parichha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5040, 'Parichhatgarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5041, 'Parsadepur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5042, 'Patala', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5043, 'Patiyali', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5044, 'Patti', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5045, 'Pawayan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5046, 'Phalauda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5047, 'Phaphund', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5048, 'Phulpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5049, 'Phulwaria', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5050, 'Pihani', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5051, 'Pilibhit', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5052, 'Pilkana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5053, 'Pilkhuwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5054, 'Pinahat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5055, 'Pipalsana Chaudhari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5056, 'Pipiganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5057, 'Pipraich', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5058, 'Pipri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5059, 'Pratapgarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5060, 'Pukhrayan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5061, 'Puranpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5062, 'Purdil Nagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5063, 'Purqazi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5064, 'Purwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5065, 'Qasimpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5066, 'Rabupura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5067, 'Radha Kund', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5068, 'Rae Bareilly', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5069, 'Raja Ka Rampur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5070, 'Rajapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5071, 'Ramkola', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5072, 'Ramnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5073, 'Rampur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5074, 'Rampur Bhawanipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5075, 'Rampur Karkhana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5076, 'Rampur Maniharan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5077, 'Rampura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5078, 'Ranipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5079, 'Rashidpur Garhi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5080, 'Rasra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5081, 'Rasulabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5082, 'Rath', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5083, 'Raya', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5084, 'Renukut', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5085, 'Reoti', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5086, 'Richha', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5087, 'Risia Bazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5088, 'Rithora', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5089, 'Robertsganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5090, 'Roza', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5091, 'Rudarpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5092, 'Rudauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5093, 'Rudayan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5094, 'Rura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5095, 'Rustamnagar Sahaspur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5096, 'Sabatwar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5097, 'Sadabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5098, 'Sadat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5099, 'Safipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5100, 'Sahanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5101, 'Saharanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5102, 'Sahaspur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5103, 'Sahaswan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5104, 'Sahawar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5105, 'Sahibabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5106, 'Sahjanwa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5107, 'Sahpau', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5108, 'Saidpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5109, 'Sainthal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5110, 'Saiyadraja', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5111, 'Sakhanu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5112, 'Sakit', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5113, 'Salarpur Khadar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5114, 'Salimpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5115, 'Salon', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5116, 'Sambhal', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5117, 'Sambhawali', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5118, 'Samdhan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5119, 'Samthar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5120, 'Sandi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5121, 'Sandila', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5122, 'Sarai Mir', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5123, 'Sarai akil', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5124, 'Sarauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5125, 'Sardhana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5126, 'Sarila', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5127, 'Sarsawan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5128, 'Sasni', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5129, 'Satrikh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5130, 'Saunkh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5131, 'Saurikh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5132, 'Seohara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5133, 'Sewal Khas', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5134, 'Sewarhi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5135, 'Shahabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5136, 'Shahganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5137, 'Shahi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5138, 'Shahjahanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5139, 'Shahjahanpur Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5140, 'Shahpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5141, 'Shamli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5142, 'Shamsabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5143, 'Shankargarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5144, 'Shergarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5145, 'Sherkot', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5146, 'Shikarpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5147, 'Shikohabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5148, 'Shisgarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5149, 'Shivdaspur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5150, 'Shivli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5151, 'Shivrajpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5152, 'Shohratgarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5153, 'Siddhanur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5154, 'Siddharthnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5155, 'Sidhauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5156, 'Sidhpura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5157, 'Sikandarabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5158, 'Sikandarpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5159, 'Sikandra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5160, 'Sikandra Rao', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5161, 'Singahi Bhiraura', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5162, 'Sirathu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5163, 'Sirsa', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5164, 'Sirsaganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5165, 'Sirsi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5166, 'Sisauli', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5167, 'Siswa Bazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5168, 'Sitapur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5169, 'Siyana', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5170, 'Som', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5171, 'Sonbhadra', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5172, 'Soron', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5173, 'Suar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5174, 'Sukhmalpur Nizamabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5175, 'Sultanpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5176, 'Sumerpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5177, 'Suriyawan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5178, 'Swamibagh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5179, 'Tajpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5180, 'Talbahat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5181, 'Talgram', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5182, 'Tambaur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5183, 'Tanda', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5184, 'Tatarpur Lallu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5185, 'Tetribazar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5186, 'Thakurdwara', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5187, 'Thana Bhawan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5188, 'Thiriya Nizamat Khan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5189, 'Tikaitnagar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5190, 'Tikri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5191, 'Tilhar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5192, 'Tindwari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5193, 'Tirwaganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5194, 'Titron', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5195, 'Tori Fatehpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5196, 'Tulsipur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5197, 'Tundla', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5198, 'Tundla Kham', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5199, 'Tundla Railway Colony', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5200, 'Ugu', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5201, 'Ujhani', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5202, 'Ujhari', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5203, 'Umri', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5204, 'Umri Kalan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5205, 'Un', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5206, 'Unchahar', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5207, 'Unnao', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5208, 'Usaihat', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5209, 'Usawan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5210, 'Utraula', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5211, 'Varanasi', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5212, 'Varanasi Cantonment', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5213, 'Vijaigarh', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5214, 'Vrindavan', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5215, 'Wazirganj', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5216, 'Zafarabad', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5217, 'Zaidpur', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5218, 'Zamania', 38, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5219, 'Almora', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5220, 'Almora Cantonment', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5221, 'Badrinathpuri', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5222, 'Bageshwar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5223, 'Bah Bazar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5224, 'Banbasa', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5225, 'Bandia', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5226, 'Barkot', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5227, 'Bazpur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5228, 'Bhim Tal', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5229, 'Bhowali', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5230, 'Chakrata', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5231, 'Chamba', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5232, 'Chamoli and Gopeshwar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5233, 'Champawat', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5234, 'Clement Town', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5235, 'Dehra Dun Cantonment', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5236, 'Dehradun', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5237, 'Dehrakhas', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5238, 'Devaprayag', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5239, 'Dhaluwala', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5240, 'Dhandera', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5241, 'Dharchula', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5242, 'Dharchula Dehat', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5243, 'Didihat', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5244, 'Dineshpur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5245, 'Doiwala', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5246, 'Dugadda', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5247, 'Dwarahat', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5248, 'Gadarpur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5249, 'Gangotri', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5250, 'Gauchar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5251, 'Haldwani', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5252, 'Haridwar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5253, 'Herbertpur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5254, 'Jaspur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5255, 'Jhabrera', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5256, 'Joshimath', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5257, 'Kachnal Gosain', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5258, 'Kaladungi', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5259, 'Kalagarh', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5260, 'Karnaprayang', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5261, 'Kashipur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5262, 'Kashirampur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5263, 'Kausani', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5264, 'Kedarnath', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5265, 'Kelakhera', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5266, 'Khatima', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5267, 'Kichha', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5268, 'Kirtinagar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5269, 'Kotdwara', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5270, 'Laksar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5271, 'Lalkuan', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5272, 'Landaura', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5273, 'Landhaura Cantonment', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5274, 'Lensdaun', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5275, 'Logahat', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5276, 'Mahua Dabra Haripura', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5277, 'Mahua Kheraganj', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5278, 'Manglaur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5279, 'Masuri', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5280, 'Mohanpur Mohammadpur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5281, 'Muni Ki Reti', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5282, 'Nagla', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5283, 'Nainital', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5284, 'Nainital Cantonment', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5285, 'Nandaprayang', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5286, 'Narendranagar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5287, 'Pauri', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5288, 'Pithoragarh', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5289, 'Pratitnagar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5290, 'Raipur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5291, 'Raiwala', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5292, 'Ramnagar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5293, 'Ranikhet', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5294, 'Ranipur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5295, 'Rishikesh', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5296, 'Rishikesh Cantonment', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5297, 'Roorkee', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5298, 'Rudraprayag', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5299, 'Rudrapur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5300, 'Rurki', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5301, 'Rurki Cantonment', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5302, 'Shaktigarh', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5303, 'Sitarganj', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5304, 'Srinagar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5305, 'Sultanpur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5306, 'Tanakpur', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5307, 'Tehri', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5308, 'Udham Singh Nagar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5309, 'Uttarkashi', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5310, 'Vikasnagar', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5311, 'Virbhadra', 39, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5312, '24 Parganas (n)', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5313, '24 Parganas (s)', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5314, 'Adra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5315, 'Ahmadpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5316, 'Aiho', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5317, 'Aistala', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5318, 'Alipur Duar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5319, 'Alipur Duar Railway Junction', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5320, 'Alpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5321, 'Amalhara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5322, 'Amkula', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5323, 'Amlagora', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5324, 'Amodghata', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5325, 'Amtala', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5326, 'Andul', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5327, 'Anksa', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5328, 'Ankurhati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5329, 'Anup Nagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5330, 'Arambagh', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5331, 'Argari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5332, 'Arsha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5333, 'Asansol', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5334, 'Ashoknagar Kalyangarh', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5335, 'Aurangabad', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5336, 'Bablari Dewanganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5337, 'Badhagachhi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5338, 'Baduria', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5339, 'Baghdogra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5340, 'Bagnan', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5341, 'Bagra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5342, 'Bagula', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5343, 'Baharampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5344, 'Bahirgram', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5345, 'Bahula', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5346, 'Baidyabati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5347, 'Bairatisal', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5348, 'Baj Baj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5349, 'Bakreswar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5350, 'Balaram Pota', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5351, 'Balarampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5352, 'Bali Chak', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5353, 'Ballavpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5354, 'Bally', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5355, 'Balurghat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5356, 'Bamunari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5357, 'Banarhat Tea Garden', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5358, 'Bandel', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5359, 'Bangaon', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5360, 'Bankra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5361, 'Bankura', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5362, 'Bansbaria', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5363, 'Banshra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5364, 'Banupur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5365, 'Bara Bamonia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5366, 'Barakpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5367, 'Barakpur Cantonment', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5368, 'Baranagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5369, 'Barasat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5370, 'Barddhaman', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5371, 'Barijhati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5372, 'Barjora', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5373, 'Barrackpore', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5374, 'Baruihuda', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5375, 'Baruipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5376, 'Barunda', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5377, 'Basirhat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5378, 'Baska', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5379, 'Begampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5380, 'Beldanga', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5381, 'Beldubi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(5382, 'Belebathan', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5383, 'Beliator', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5384, 'Bhadreswar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5385, 'Bhandardaha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5386, 'Bhangar Raghunathpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5387, 'Bhangri Pratham Khanda', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5388, 'Bhanowara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5389, 'Bhatpara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5390, 'Bholar Dabri', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5391, 'Bidhannagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5392, 'Bidyadharpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5393, 'Biki Hakola', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5394, 'Bilandapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5395, 'Bilpahari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5396, 'Bipra Noapara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5397, 'Birlapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5398, 'Birnagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5399, 'Bisarpara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5400, 'Bishnupur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5401, 'Bolpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5402, 'Bongaon', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5403, 'Bowali', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5404, 'Burdwan', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5405, 'Canning', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5406, 'Cart Road', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5407, 'Chachanda', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5408, 'Chak Bankola', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5409, 'Chak Enayetnagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5410, 'Chak Kashipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5411, 'Chakalampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5412, 'Chakbansberia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5413, 'Chakdaha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5414, 'Chakpara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5415, 'Champahati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5416, 'Champdani', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5417, 'Chamrail', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5418, 'Chandannagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5419, 'Chandpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5420, 'Chandrakona', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5421, 'Chapari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5422, 'Chapui', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5423, 'Char Brahmanagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5424, 'Char Maijdia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5425, 'Charka', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5426, 'Chata Kalikapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5427, 'Chauhati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5428, 'Checha Khata', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5429, 'Chelad', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5430, 'Chhora', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5431, 'Chikrand', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5432, 'Chittaranjan', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5433, 'Contai', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5434, 'Cooch Behar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5435, 'Dainhat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5436, 'Dakshin Baguan', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5437, 'Dakshin Jhapardaha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5438, 'Dakshin Rajyadharpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5439, 'Dakshin Raypur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5440, 'Dalkola', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5441, 'Dalurband', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5442, 'Darap Pur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5443, 'Darjiling', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5444, 'Daulatpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5445, 'Debipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5446, 'Defahat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5447, 'Deora', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5448, 'Deulia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5449, 'Dhakuria', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5450, 'Dhandadihi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5451, 'Dhanyakuria', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5452, 'Dharmapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5453, 'Dhatri Gram', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5454, 'Dhuilya', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5455, 'Dhulagari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5456, 'Dhulian', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5457, 'Dhupgari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5458, 'Dhusaripara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5459, 'Diamond Harbour', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5460, 'Digha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5461, 'Dignala', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5462, 'Dinhata', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5463, 'Dubrajpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5464, 'Dumjor', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5465, 'Durgapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5466, 'Durllabhganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5467, 'Egra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5468, 'Eksara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5469, 'Falakata', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5470, 'Farakka', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5471, 'Fatellapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5472, 'Fort Gloster', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5473, 'Gabberia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5474, 'Gadigachha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5475, 'Gairkata', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5476, 'Gangarampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5477, 'Garalgachha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5478, 'Garbeta Amlagora', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5479, 'Garhbeta', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5480, 'Garshyamnagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5481, 'Garui', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5482, 'Garulia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5483, 'Gayespur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5484, 'Ghatal', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5485, 'Ghorsala', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5486, 'Goaljan', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5487, 'Goasafat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5488, 'Gobardanga', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5489, 'Gobindapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5490, 'Gopalpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5491, 'Gopinathpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5492, 'Gora Bazar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5493, 'Guma', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5494, 'Gurdaha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5495, 'Guriahati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5496, 'Guskhara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5497, 'Habra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5498, 'Haldia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5499, 'Haldibari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5500, 'Halisahar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5501, 'Haora', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5502, 'Harharia Chak', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5503, 'Harindanga', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5504, 'Haringhata', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5505, 'Haripur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5506, 'Harishpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5507, 'Hatgachha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5508, 'Hatsimla', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5509, 'Hijuli', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5510, 'Hindustan Cables Town', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5511, 'Hooghly', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5512, 'Howrah', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5513, 'Hugli-Chunchura', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5514, 'Humaipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5515, 'Ichha Pur Defence Estate', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5516, 'Ingraj Bazar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5517, 'Islampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5518, 'Jafarpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5519, 'Jagadanandapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5520, 'Jagdishpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5521, 'Jagtaj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5522, 'Jala Kendua', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5523, 'Jaldhaka', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5524, 'Jalkhura', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5525, 'Jalpaiguri', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5526, 'Jamuria', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5527, 'Jangipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5528, 'Jaygaon', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5529, 'Jaynagar-Majilpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5530, 'Jemari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5531, 'Jemari Township', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5532, 'Jetia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5533, 'Jhalida', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5534, 'Jhargram', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5535, 'Jhorhat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5536, 'Jiaganj-Azimganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5537, 'Joka', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5538, 'Jot Kamal', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5539, 'Kachu Pukur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5540, 'Kajora', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5541, 'Kakdihi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5542, 'Kakdwip', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5543, 'Kalaikunda', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5544, 'Kalara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5545, 'Kalimpong', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5546, 'Kaliyaganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5547, 'Kalna', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5548, 'Kalyani', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5549, 'Kamarhati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5550, 'Kanaipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5551, 'Kanchrapara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5552, 'Kandi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5553, 'Kanki', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5554, 'Kankuria', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5555, 'Kantlia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5556, 'Kanyanagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5557, 'Karimpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5558, 'Karsiyang', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5559, 'Kasba', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5560, 'Kasimbazar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5561, 'Katwa', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5562, 'Kaugachhi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5563, 'Kenda', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5564, 'Kendra Khottamdi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5565, 'Kendua', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5566, 'Kesabpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5567, 'Khagrabari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5568, 'Khalia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5569, 'Khalor', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5570, 'Khandra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5571, 'Khantora', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5572, 'Kharagpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5573, 'Kharagpur Railway Settlement', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5574, 'Kharar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5575, 'Khardaha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5576, 'Khari Mala Khagrabari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5577, 'Kharsarai', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5578, 'Khatra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5579, 'Khodarampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5580, 'Kodalia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5581, 'Kolaghat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5582, 'Kolaghat Thermal Power Project', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5583, 'Kolkata', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5584, 'Konardihi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5585, 'Konnogar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5586, 'Krishnanagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5587, 'Krishnapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5588, 'Kshidirpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5589, 'Kshirpai', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5590, 'Kulihanda', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5591, 'Kulti', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5592, 'Kunustara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5593, 'Kuperskem', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5594, 'Madanpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5595, 'Madhusudanpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5596, 'Madhyamgram', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5597, 'Maheshtala', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5598, 'Mahiari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5599, 'Mahikpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5600, 'Mahira', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5601, 'Mahishadal', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5602, 'Mainaguri', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5603, 'Makardaha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5604, 'Mal', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5605, 'Malda', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5606, 'Mandarbani', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5607, 'Mansinhapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5608, 'Masila', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5609, 'Maslandapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5610, 'Mathabhanga', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5611, 'Mekliganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5612, 'Memari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5613, 'Midnapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5614, 'Mirik', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5615, 'Monoharpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5616, 'Mrigala', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5617, 'Muragachha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5618, 'Murgathaul', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5619, 'Murshidabad', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5620, 'Nabadhai Dutta Pukur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5621, 'Nabagram', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5622, 'Nabgram', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5623, 'Nachhratpur Katabari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5624, 'Nadia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5625, 'Naihati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5626, 'Nalhati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5627, 'Nasra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5628, 'Natibpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5629, 'Naupala', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5630, 'Navadwip', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5631, 'Nebadhai Duttapukur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5632, 'New Barrackpore', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5633, 'Ni Barakpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5634, 'Nibra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5635, 'Noapara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5636, 'Nokpul', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5637, 'North Barakpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5638, 'Odlabari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5639, 'Old Maldah', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5640, 'Ondal', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5641, 'Pairagachha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5642, 'Palashban', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5643, 'Panchla', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5644, 'Panchpara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5645, 'Pandua', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5646, 'Pangachhiya', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5647, 'Paniara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5648, 'Panihati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5649, 'Panuhat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5650, 'Par Beliya', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5651, 'Parashkol', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5652, 'Parasia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5653, 'Parbbatipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5654, 'Parui', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5655, 'Paschim Jitpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5656, 'Paschim Punro Para', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5657, 'Patrasaer', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5658, 'Pattabong Tea Garden', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5659, 'Patuli', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5660, 'Patulia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5661, 'Phulia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5662, 'Podara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5663, 'Port Blair', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5664, 'Prayagpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5665, 'Pujali', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5666, 'Purba Medinipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5667, 'Purba Tajpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5668, 'Purulia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5669, 'Raghudebbati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5670, 'Raghudebpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5671, 'Raghunathchak', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5672, 'Raghunathpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5673, 'Raghunathpur-Dankuni', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5674, 'Raghunathpur-Magra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5675, 'Raigachhi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5676, 'Raiganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5677, 'Raipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5678, 'Rajarhat Gopalpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5679, 'Rajpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5680, 'Ramchandrapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5681, 'Ramjibanpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5682, 'Ramnagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5683, 'Rampur Hat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5684, 'Ranaghat', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5685, 'Raniganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5686, 'Ratibati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5687, 'Raypur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5688, 'Rishra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5689, 'Rishra Cantonment', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5690, 'Ruiya', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5691, 'Sahajadpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5692, 'Sahapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5693, 'Sainthia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5694, 'Salap', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5695, 'Sankarpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5696, 'Sankrail', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5697, 'Santoshpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5698, 'Saontaidih', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5699, 'Sarenga', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5700, 'Sarpi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5701, 'Satigachha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5702, 'Serpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5703, 'Shankhanagar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5704, 'Shantipur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5705, 'Shrirampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5706, 'Siduli', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5707, 'Siliguri', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5708, 'Simla', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5709, 'Singur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5710, 'Sirsha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5711, 'Siuri', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5712, 'Sobhaganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5713, 'Sodpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5714, 'Sonamukhi', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5715, 'Sonatikiri', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5716, 'Srikantabati', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5717, 'Srirampur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5718, 'Sukdal', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5719, 'Taherpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5720, 'Taki', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5721, 'Talbandha', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5722, 'Tamluk', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5723, 'Tarakeswar', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5724, 'Tentulberia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5725, 'Tentulkuli', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5726, 'Thermal Power Project', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5727, 'Tinsukia', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5728, 'Titagarh', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5729, 'Tufanganj', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5730, 'Ukhra', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5731, 'Ula', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5732, 'Ulubaria', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5733, 'Uttar Durgapur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5734, 'Uttar Goara', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5735, 'Uttar Kalas', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5736, 'Uttar Kamakhyaguri', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5737, 'Uttar Latabari', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5738, 'Uttar Mahammadpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5739, 'Uttar Pirpur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5740, 'Uttar Raypur', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5741, 'Uttarpara-Kotrung', 41, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5742, 'Abohar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5743, 'Adampur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5744, 'Ahmedgarh', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5745, 'Ajnala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5746, 'Akalgarh', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5747, 'Alawalpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5748, 'Amloh', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5749, 'Amritsar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5750, 'Amritsar Cantonment', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5751, 'Anandpur Sahib', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5752, 'Badhni Kalan', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5753, 'Bagh Purana', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5754, 'Balachaur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5755, 'Banaur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5756, 'Banga', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5757, 'Banur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5758, 'Baretta', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5759, 'Bariwala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5760, 'Barnala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5761, 'Bassi Pathana', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5762, 'Batala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5763, 'Bathinda', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5764, 'Begowal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5765, 'Behrampur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5766, 'Bhabat', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5767, 'Bhadur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5768, 'Bhankharpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5769, 'Bharoli Kalan', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5770, 'Bhawanigarh', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5771, 'Bhikhi', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5772, 'Bhikhiwind', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5773, 'Bhisiana', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5774, 'Bhogpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5775, 'Bhuch', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5776, 'Bhulath', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5777, 'Budha Theh', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5778, 'Budhlada', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5779, 'Chima', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5780, 'Chohal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5781, 'Dasuya', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5782, 'Daulatpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5783, 'Dera Baba Nanak', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5784, 'Dera Bassi', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5785, 'Dhanaula', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5786, 'Dharam Kot', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5787, 'Dhariwal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5788, 'Dhilwan', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5789, 'Dhuri', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5790, 'Dinanagar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5791, 'Dirba', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5792, 'Doraha', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5793, 'Faridkot', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5794, 'Fateh Nangal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5795, 'Fatehgarh Churian', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5796, 'Fatehgarh Sahib', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5797, 'Fazilka', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5798, 'Firozpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5799, 'Firozpur Cantonment', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5800, 'Gardhiwala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5801, 'Garhshankar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5802, 'Ghagga', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5803, 'Ghanaur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5804, 'Giddarbaha', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5805, 'Gobindgarh', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5806, 'Goniana', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5807, 'Goraya', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5808, 'Gurdaspur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5809, 'Guru Har Sahai', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5810, 'Hajipur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5811, 'Handiaya', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5812, 'Hariana', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5813, 'Hoshiarpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5814, 'Hussainpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5815, 'Jagraon', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5816, 'Jaitu', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5817, 'Jalalabad', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5818, 'Jalandhar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5819, 'Jalandhar Cantonment', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5820, 'Jandiala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5821, 'Jugial', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5822, 'Kalanaur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5823, 'Kapurthala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5824, 'Karoran', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5825, 'Kartarpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5826, 'Khamanon', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5827, 'Khanauri', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5828, 'Khanna', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5829, 'Kharar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5830, 'Khem Karan', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5831, 'Kot Fatta', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5832, 'Kot Isa Khan', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5833, 'Kot Kapura', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5834, 'Kotkapura', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5835, 'Kurali', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5836, 'Lalru', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5837, 'Lehra Gaga', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5838, 'Lodhian Khas', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5839, 'Longowal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5840, 'Ludhiana', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5841, 'Machhiwara', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5842, 'Mahilpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5843, 'Majitha', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5844, 'Makhu', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5845, 'Malaut', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5846, 'Malerkotla', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5847, 'Maloud', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5848, 'Mandi Gobindgarh', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5849, 'Mansa', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5850, 'Maur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5851, 'Moga', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5852, 'Mohali', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5853, 'Moonak', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5854, 'Morinda', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5855, 'Mukerian', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5856, 'Muktsar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5857, 'Mullanpur Dakha', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5858, 'Mullanpur Garibdas', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5859, 'Munak', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5860, 'Muradpura', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5861, 'Nabha', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5862, 'Nakodar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5863, 'Nangal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5864, 'Nawashahr', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5865, 'Naya Nangal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5866, 'Nehon', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5867, 'Nurmahal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5868, 'Pathankot', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5869, 'Patiala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5870, 'Patti', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5871, 'Pattran', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5872, 'Payal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5873, 'Phagwara', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5874, 'Phillaur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5875, 'Qadian', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5876, 'Rahon', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5877, 'Raikot', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5878, 'Raja Sansi', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5879, 'Rajpura', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5880, 'Ram Das', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5881, 'Raman', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5882, 'Rampura', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5883, 'Rayya', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5884, 'Rupnagar', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5885, 'Rurki Kasba', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5886, 'Sahnewal', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5887, 'Samana', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5888, 'Samrala', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5889, 'Sanaur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5890, 'Sangat', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5891, 'Sangrur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5892, 'Sansarpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5893, 'Sardulgarh', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5894, 'Shahkot', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5895, 'Sham Churasi', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5896, 'Shekhpura', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5897, 'Sirhind', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5898, 'Sri Hargobindpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5899, 'Sujanpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5900, 'Sultanpur Lodhi', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5901, 'Sunam', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5902, 'Talwandi Bhai', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5903, 'Talwara', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5904, 'Tappa', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5905, 'Tarn Taran', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5906, 'Urmar Tanda', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5907, 'Zira', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5908, 'Zirakpur', 2728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5909, 'Eshkashem', 42, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5910, 'Fayzabad', 42, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5911, 'Jurm', 42, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5912, 'Khandud', 42, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5913, 'Qal\'eh-ye Panjeh', 42, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5914, 'Bala Morghab', 43, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5915, 'Qal\'eh-ye Naw', 43, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5916, 'Andarab', 44, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5917, 'Baghlan', 44, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5918, 'Dahaneh-ye Ghawri', 44, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5919, 'Nahrin', 44, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5920, 'Pol-e Khumri', 44, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5921, 'Balkh', 45, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5922, 'Dawlatabad', 45, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5923, 'Mazar-e Sharif', 45, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5924, 'Qarchi Gak', 45, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5925, 'Shulgara', 45, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5926, 'Tash Gozar', 45, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5927, 'Bamiyan', 46, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5928, 'Panjab', 46, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5929, 'Qil Qal\'eh', 46, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5930, 'Anar Darreh', 47, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5931, 'Farah', 47, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5932, 'Shindand', 47, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5933, 'Andkhvoy', 48, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5934, 'Darzi Ab', 48, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5935, 'Dawlatabad', 48, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5936, 'Maymanah', 48, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5937, 'Chaghcharan', 49, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5938, 'Shahrak', 49, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5939, 'Taywarah', 49, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5940, 'Ghazni', 50, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5941, 'Awbeh', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5942, 'Eslam Qal\'eh', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5943, 'Ghurian', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5944, 'Herat', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5945, 'Karukh', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5946, 'Kuhestan', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5947, 'Kushk', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5948, 'Qarabagh', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5949, 'Tawraghudi', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5950, 'Tir Pol', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5951, 'Zendejan', 51, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5952, 'Baghran', 52, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5953, 'Darwishan', 52, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5954, 'Deh Shu', 52, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5955, 'Gereshk', 52, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5956, 'Lashkar Gah', 52, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5957, 'Sangin', 52, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5958, 'Aqchah', 53, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5959, 'Qarqin', 53, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5960, 'Sang-e Charak', 53, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5961, 'Shibarghan', 53, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5962, 'Baghrami', 54, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5963, 'Kabul', 54, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5964, 'Mir Bachchekut', 54, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5965, 'Paghman', 54, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5966, 'Qarabagh', 54, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5967, 'Sarawbi', 54, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5968, 'Mahmud-e Raqi', 55, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5969, 'Taghab', 55, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5970, 'Khawst', 56, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(5971, 'Asadabad', 57, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5972, 'Asmar', 57, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5973, 'Mehtar Lam', 58, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5974, 'Azraw', 59, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5975, 'Baraki Barak', 59, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5976, 'Pol-e Alam', 59, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5977, 'Achin', 60, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5978, 'Batsawul', 60, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5979, 'Hugyani', 60, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5980, 'Jalalabad', 60, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5981, 'Nader Shah Kawt', 60, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5982, 'Chahar Burjak', 61, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5983, 'Chakhansur', 61, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5984, 'Khash', 61, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5985, 'Mirabad', 61, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5986, 'Rudbar', 61, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5987, 'Zaranj', 61, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5988, 'Nuristan', 62, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5989, 'Orgun', 63, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5990, 'Zareh Sharan', 63, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5991, 'Zarghun Shahr', 63, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5992, '\'Ali Khayl', 64, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5993, 'Ghardez', 64, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5994, 'Charikar', 65, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5995, 'Jabal-os-Saraj', 65, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5996, 'Qandahar', 66, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5997, 'Dasht-e Archa', 67, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5998, 'Emam Saheb', 67, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(5999, 'Hazart Imam', 67, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6000, 'Khanabad', 67, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6001, 'Qal\'eh-ye Zal', 67, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6002, 'Qunduz', 67, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6003, 'Aybak', 68, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6004, 'Kholm', 68, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6005, 'Chah Ab', 70, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6006, 'Eshkamesh', 70, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6007, 'Farkhar', 70, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6008, 'Khwajeh Ghar', 70, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6009, 'Rostaq', 70, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6010, 'Taloqan', 70, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6011, 'Yangi Qal\'eh', 70, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6012, 'Deh Rawud', 71, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6013, 'Gaz Ab', 71, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6014, 'Tarin Kawt', 71, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6015, 'Uruzgan', 71, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6016, 'Gardan Diwal', 72, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6017, 'Maydanshahr', 72, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6018, 'Qalat-e Ghilzay', 73, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6019, 'Berat', 74, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6020, 'Polican', 74, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6021, 'Ure Vajgurore', 74, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6022, 'Bulqize', 75, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6023, 'Delvine', 76, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6024, 'Bilisht', 77, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6025, 'Maqellare', 78, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6026, 'Peshkopi', 78, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6027, 'Durres', 79, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6028, 'Shijak', 79, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6029, 'Cerrik', 80, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6030, 'Elbasan', 80, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6031, 'Kerrabe', 80, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6032, 'Fier', 81, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6033, 'Patos', 81, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6034, 'Roskovec', 81, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6035, 'Gjirokaster', 82, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6036, 'Libohove', 82, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6037, 'Gramsh', 83, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6038, 'Krume', 84, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6039, 'Kavaje', 85, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6040, 'Erseke', 86, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6041, 'Leskovik', 86, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6042, 'Korce', 87, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6043, 'Maliq', 87, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6044, 'Fushe-Kruje', 88, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6045, 'Kruje', 88, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6046, 'Mamurras', 88, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6047, 'Milot', 88, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6048, 'Kucove', 89, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6049, 'Kukes', 90, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6050, 'Lac', 91, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6051, 'Lezhe', 92, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6052, 'Shengjin', 92, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6053, 'Librazhd', 93, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6054, 'Perrenjas', 93, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6055, 'Lushnje', 94, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6056, 'Rrogozhine', 94, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6057, 'Ballsh', 95, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6058, 'Burrel', 97, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6059, 'Klos', 97, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6060, 'Kraste', 97, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6061, 'Ulze', 97, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6062, 'Kurbnesh', 98, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6063, 'Rreshen', 98, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6064, 'Rubik', 98, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6065, 'Peqin', 99, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6066, 'Kelcyre', 100, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6067, 'Permet', 100, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6068, 'Pogradec', 101, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6069, 'Fierze', 102, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6070, 'Fushe-Arrez', 102, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6071, 'Puke', 102, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6072, 'Konispol', 103, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6073, 'Sarande', 103, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6074, 'Shkoder', 104, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6075, 'Corovode', 105, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6076, 'Memaliaj', 106, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6077, 'Tepelene', 106, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6078, 'Kamze', 107, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6079, 'Paskuqan', 107, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6080, 'Tirane', 107, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6081, 'Vore', 107, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6082, 'Bajram Curri', 108, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6083, 'Himare', 109, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6084, 'Orikum', 109, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6085, 'Selenice', 109, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6086, 'Vlore', 109, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6087, 'Adrar', 112, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6088, 'Awlaf', 112, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6089, 'Rijan', 112, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6090, 'Timimun', 112, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6091, 'Hydra', 113, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6092, 'Kouba', 113, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6093, 'Annabah', 114, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6094, 'Birrahhal', 114, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6095, 'Saraydih', 114, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6096, 'Sidi Amar', 114, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6097, 'al-Buni', 114, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6098, 'al-Hajar', 114, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6099, '\'Abadlah', 115, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6100, 'Bani Wanif', 115, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6101, 'Bashshar', 115, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6102, 'Qanadsan', 115, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6103, 'Taghit', 115, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6104, '\'Aris', 116, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6105, '\'Ayn Tutah', 116, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6106, 'Barikah', 116, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6107, 'Batnah', 116, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6108, 'Marwanah', 116, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6109, 'Naghaus', 116, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6110, 'Ra\'s-al-\'Ayun', 116, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6111, 'Tazult', 116, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6112, '\'Ayt Rizin', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6113, 'Akbu', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6114, 'Amizur', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6115, 'Barbasha', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6116, 'Bijayah', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6117, 'Farrawn', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6118, 'Ighram', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6119, 'Sadduk', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6120, 'Shamini', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6121, 'Sidi \'Aysh', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6122, 'Taskaryut', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6123, 'Tazmalt', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6124, 'Timazrit', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6125, 'Uz-al-Laqin', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6126, 'al-Qasr', 117, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6127, 'Awlad Jallal', 118, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6128, 'Biskrah', 118, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6129, 'Sidi Khalid', 118, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6130, 'Sidi Ukbah', 118, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6131, 'Tulja', 118, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6132, 'Um\'ash', 118, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6133, 'Zaribat-al-Wad', 118, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6134, 'Awlad Salam', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6135, 'Awlad Yaysh', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6136, 'Bani Khalil', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6137, 'Bani Marad', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6138, 'Bani Tamu', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6139, 'Blidah', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6140, 'Bu Arfa', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6141, 'Bufarik', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6142, 'Buinan', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6143, 'Buqara', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6144, 'Maftah', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6145, 'Muzayah', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6146, 'Shabli', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6147, 'Shari\'ah', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6148, 'Shiffa', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6149, 'Sidi Mussa', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6150, 'Suma', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6151, 'Wadi al-Allagh', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6152, 'al-\'Afrun', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6153, 'al-Arba\'a', 119, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6154, '\'Ayn Bissim', 120, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6155, 'Aghbalu', 120, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6156, 'Bi\'r Ghabalu', 120, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6157, 'Buirah', 120, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6158, 'Lakhdariyah', 120, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6159, 'Shurfa', 120, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6160, 'Sur-al-Ghuzlan', 120, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6161, '\'Ayn Tayah', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6162, 'Awlad Haddaj', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6163, 'Awlad Mussa', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6164, 'Bani Amran', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6165, 'Budwawu', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6166, 'Budwawu al-Bahri', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6167, 'Bumardas', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6168, 'Burj Minayal', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6169, 'Dalis', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6170, 'Hammadi', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6171, 'Issar', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6172, 'Khamis-al-Khashnah', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6173, 'Nasiriyah', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6174, 'Raghayah', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6175, 'Sa\'abat', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6176, 'Tinyah', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6177, 'al-Arba\'a Tash', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6178, 'ar-Ruwibah', 121, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6179, 'Ammi Mussa', 123, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6180, 'Ghalizan', 123, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6181, 'Jidiwiyah', 123, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6182, 'Mazunah', 123, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6183, 'Sidi Muhammad Ban \'Ali', 123, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6184, 'Wadi Rahiyu', 123, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6185, 'Zammurah', 123, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6186, 'Biryan', 124, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6187, 'Bu Nura', 124, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6188, 'Ghardaia', 124, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6189, 'Ghardayah', 124, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6190, 'Matlili', 124, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6191, 'al-Ghuli\'ah', 124, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6192, 'al-Qararah', 124, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6193, 'Ilizi', 125, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6194, 'Amir \'Abd-al-Qadar', 126, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6195, 'Jijili', 126, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6196, 'Shifka', 126, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6197, 'Tahar', 126, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6198, 'al-Miliyah', 126, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6199, '\'Ayn Wissarah', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6200, '\'Ayn-al-Ibil', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6201, 'Birin', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6202, 'Dar Shiyukh', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6203, 'Hassi Bahbah', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6204, 'Jilfah', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6205, 'Mis\'ad', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6206, 'Sharif', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6207, 'al-Idrisiyah', 127, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6208, 'Khanshalah', 128, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6209, 'Sharshar', 128, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6210, 'Tawziyanat', 128, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6211, 'al-Mahmal', 128, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6212, '\'Ayn-al-Hajal', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6213, '\'Ayn-al-Milh', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6214, 'Bu Sa\'adah', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6215, 'Hammam Dhala\'a', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6216, 'Ma\'adid', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6217, 'Maghra', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6218, 'Masilah', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6219, 'Sidi \'Aysa', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6220, 'Wanugha', 129, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6221, '\'Ayn Bu Sif', 130, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6222, 'Birwaghiyah', 130, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6223, 'Midyah', 130, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6224, 'Qasr-al-Bukhari', 130, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6225, 'Shillalah', 130, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6226, 'Tablat', 130, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6227, 'Farjiwah', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6228, 'Milah', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6229, 'Qararam Quqa', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6230, 'Ruwashad', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6231, 'Salghum-al-\'Ayd', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6232, 'Sidi Maruf', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6233, 'Sidi Marwan', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6234, 'Tajananah', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6235, 'Talighmah', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6236, 'Wadi Athmaniyah', 131, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6237, 'Bu Khanifiyah', 132, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6238, 'Muaskar', 132, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6239, 'Muhammadiyah', 132, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6240, 'Siq', 132, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6241, 'Tighinnif', 132, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6242, 'Wadi al-Abtal', 132, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6243, 'Zahana', 132, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6244, '\'Ayn Tadalas', 133, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6245, 'Hassi Mamash', 133, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6246, 'Mazaghran', 133, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6247, 'Mustaghanam', 133, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6248, 'Sidi Ali', 133, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6249, '\'Ayn Safra', 134, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6250, 'Mishriyah', 134, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6251, 'Naama', 134, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6252, 'Oran', 135, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6253, 'Ouargla', 136, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6254, '\'Ayn Bardah', 137, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6255, 'Bumahra Ahmad', 137, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6256, 'Hamman Awlad \'Ali', 137, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6257, 'Qalmah', 137, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6258, 'Wadi Zinati', 137, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6259, '\'Ayn Abid', 138, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6260, '\'Ayn Samara', 138, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6261, 'Didush Murad', 138, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6262, 'Hamma Bu Ziyan', 138, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6263, 'Qustantinah', 138, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6264, 'Zighut Yusuf', 138, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6265, 'al-Khurub', 138, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6266, '\'Azzabah', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6267, 'Amjaz Adshish', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6268, 'Fil Fila', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6269, 'Karkira', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6270, 'Ramadan Jamal', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6271, 'Sakikdah', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6272, 'Shataybih', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6273, 'Tamalus', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6274, 'al-Harush', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6275, 'al-Qull', 139, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6276, '\'Ayn \'Azl', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6277, '\'Ayn Arnat', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6278, '\'Ayn Taqrut', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6279, '\'Ayn Wilman', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6280, '\'Ayn-al-Khabira', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6281, 'Bouira', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6282, 'Buq\'ah', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6283, 'Salah Bay', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6284, 'Satif', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6285, 'Setif', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6286, 'Ziyama Mansuriyah', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6287, 'al-\'Ulmah', 140, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6288, '\'Ayn-al-Hajar', 141, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6289, 'Sayda\'', 141, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6290, '\'Ayn Qazzan', 144, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6291, '\'Ayn Salah', 144, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6292, 'Tamanghasat', 144, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6293, '\'Ayn Binyan', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6294, 'Bu Isma\'il', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6295, 'Bu Midfar\'ah', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6296, 'Damus', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6297, 'Duwirah', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6298, 'Hajut', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6299, 'Hammam Righa', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6300, 'Sawlah', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6301, 'Shiragha', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6302, 'Shirshall', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6303, 'Sidi Farj', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6304, 'Stawali', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6305, 'Tibazah', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6306, 'Ziralda', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6307, 'al-Qull\'ah', 145, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6308, 'Bi\'r-al-\'Itir', 146, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6309, 'Hammamat', 146, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6310, 'Mursut', 146, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6311, 'Shariyah', 146, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6312, 'Tibissah', 146, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6313, 'Winzah', 146, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6314, 'al-\'Awaynat', 146, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6315, 'Awlad Mimun', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6316, 'Bani Mastar', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6317, 'Bani Sikran', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6318, 'Ghazawat', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6319, 'Hannayah', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6320, 'Maghniyah', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6321, 'Nidruma', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6322, 'Ramsh', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6323, 'Sabra', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6324, 'Shatwan', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6325, 'Sibdu', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6326, 'Sidi \'Abdallah', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6327, 'Tilimsan', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6328, 'al-Mansurah', 147, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6329, 'Tinduf', 148, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6330, 'Thaniyat-al-Had', 149, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6331, 'Tisamsilt', 149, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6332, '\'Ayn Dhahab', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6333, 'Firindah', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6334, 'Mahdiyah', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6335, 'Mashra\'a Asfa', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6336, 'Qasr Shillalah', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6337, 'Rahuyah', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6338, 'Sughar', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6339, 'Takhamarat', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6340, 'Tiyarat', 150, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6341, '\'Ayn Bayda', 152, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6342, '\'Ayn Fakrun', 152, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6343, '\'Ayn Kirshah', 152, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6344, '\'Ayn Malilah', 152, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6345, 'Bi\'r Shuhada', 152, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6346, 'Miskyanah', 152, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6347, 'Shamurah', 152, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6348, 'Umm-al-Bawaghi', 152, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6349, '\'Ayn Biya', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6350, '\'Ayn-at-Turk', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6351, 'Arzu', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6352, 'Bi\'r-al-Jir', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6353, 'Butlilis', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6354, 'Hassi Bu Nif', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6355, 'Mars-al-Kabir', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6356, 'Qadayal', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6357, 'Sidi ash-Shami', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6358, 'Wadi Thalatha', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6359, 'Wahran', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6360, 'al-Ansur', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6361, 'as-Saniyah', 153, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6362, 'Hassi Mas\'ud', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6363, 'Nazla', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6364, 'Ruwisiyat', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6365, 'Tabisbast', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6366, 'Tamalhat', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6367, 'Tamasin', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6368, 'Tayabat-al-Janubiyah', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6369, 'Tughghurt', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6370, 'Warqla', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6371, 'al-Hajirah', 154, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6372, 'Aflu', 158, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6373, 'Hassi al-Raml', 158, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6374, 'al-Aghwat', 158, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6375, 'Brizyanah', 159, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6376, 'al-Abyad Sidi Shaykh', 159, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6377, 'al-Bayadh', 159, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6378, 'Bab Azwar', 160, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6379, 'Baraki', 160, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6380, 'Bir Murad Rais', 160, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6381, 'Birkhadam', 160, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6382, 'Burj-al-Kiffan', 160, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6383, 'Dar-al-Bayda', 160, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6384, 'al-Jaza\'ir', 160, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6385, 'Bayadha', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6386, 'Dabilah', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6387, 'Hassan \'Abd-al-Karim', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6388, 'Hassi Halifa', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6389, 'Jama\'a', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6390, 'Maqran', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6391, 'Qamar', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6392, 'Raqiba', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6393, 'Rubbah', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6394, 'Sidi Amran', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6395, 'al-Mighair', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6396, 'al-Wad', 161, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6397, '\'Ayn Maran', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6398, 'Abu al-Hassan', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6399, 'Bani Hawa', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6400, 'Bu Qadir', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6401, 'Sidi Ukaskah', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6402, 'Tanas', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6403, 'Wadi Sali', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6404, 'Wadi al-Fiddah', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6405, 'ash-Shalif', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6406, 'ash-Shattiyah', 162, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6407, 'Ban Mahdi', 163, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6408, 'Bani Amar', 163, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6409, 'Basbas', 163, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6410, 'Dariyan', 163, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6411, 'Saba\'ita Muk', 163, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6412, 'al-Qal\'ah', 163, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6413, 'at-Tarif', 163, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6414, 'Afono', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6415, 'Alao', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6416, 'Alofau', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6417, 'Amouli', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6418, 'Aoa', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6419, 'Atu\'u', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6420, 'Aua', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6421, 'Aunu\'u', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6422, 'Faga\'alu', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6423, 'Faga\'itua', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6424, 'Fagasa', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6425, 'Fagatogo', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6426, 'Lauli\'i', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6427, 'Leloaloa', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6428, 'Nu\'uuli', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6429, 'Pago Pago', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6430, 'Tula', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6431, 'Utulei', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6432, 'Vatia', 164, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6433, 'Ofu', 165, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6434, 'Aoloau', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6435, 'Faleniu', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6436, 'Futiga', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6437, 'Ili\'ili', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6438, 'Leone', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6439, 'Malaeimi', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6440, 'Malaeloa-Aitulagi', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6441, 'Malaeloa-Ituau', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6442, 'Mapusagafou', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6443, 'Mesepa', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6444, 'Pava\'ia\'i', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6445, 'Tafuna', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6446, 'Taputimu', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6447, 'Vailoatai', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6448, 'Vaitogi', 167, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6449, 'Canillo', 169, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6450, 'Encamp', 170, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6451, 'Ordino', 173, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6452, 'Caxito', 175, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6453, 'Benguela', 176, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6454, 'Lobito', 176, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6455, 'Camacupa', 177, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6456, 'Catabola', 177, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6457, 'Catumbela', 177, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6458, 'Chissamba', 177, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6459, 'Kuito', 177, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6460, 'Cabinda', 178, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6461, 'Ondjiva', 179, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6462, 'Caala', 180, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6463, 'Catchiungo', 180, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6464, 'Huambo', 180, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6465, 'Longonjo', 180, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6466, 'Caconda', 181, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6467, 'Caluquembe', 181, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6468, 'Lubango', 181, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6469, 'Menongue', 182, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6470, 'Luanda', 185, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6471, 'Malanje', 188, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6472, 'Cazaje', 189, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6473, 'Leua', 189, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6474, 'Luau', 189, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6475, 'Luena', 189, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6476, 'Lumeje', 189, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6477, 'Namibe', 190, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6478, 'Camabatela', 191, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6479, 'Uige', 191, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6480, 'M\'banza-Kongo', 192, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6481, 'N\'zeto', 192, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6482, 'Soyo', 192, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6483, 'Codrington', 201, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6484, 'Catamarca', 209, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6485, 'Presidencia Roque Saenz Pena', 210, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6486, 'Resistencia', 210, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6487, 'Comodoro Rivadavia', 211, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6488, 'Puerto Madryn', 211, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6489, 'Rawson', 211, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6490, 'Trelew', 211, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6491, 'Alta Gracia', 212, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6492, 'Bell Ville', 212, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6493, 'Cordoba', 212, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6494, 'Rio Cuarto', 212, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6495, 'Rio Tercero', 212, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6496, 'San Francisco', 212, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6497, 'Villa Carlos Paz', 212, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6498, 'Villa Maria', 212, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6499, 'Corrientes', 213, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6500, 'Goya', 213, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6501, 'Mercedes', 213, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6502, 'San Lorenzo', 213, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6503, 'Formosa', 216, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6504, 'Jujuy', 217, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6505, 'Libertador General San Martin', 217, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6506, 'San Pedro', 217, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6507, 'Godoy Cruz', 220, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6508, 'Lujan', 220, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6509, 'Mendoza', 220, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6510, 'Rivadavia', 220, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6511, 'San Martin', 220, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6512, 'San Rafael', 220, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6513, 'Eldorado', 221, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6514, 'Obera', 221, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6515, 'Posadas', 221, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6516, 'Cutral Co', 222, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6517, 'Neuquen', 222, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6518, 'Salta', 224, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6519, 'San Ramon de la Nueva Oran', 224, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6520, 'Tartagal', 224, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6521, 'Tucuman', 231, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6522, 'Ashtarak', 232, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6523, 'Talin', 232, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6524, 'Ararat', 233, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6525, 'Artashat', 233, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6526, 'Armavir', 234, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6527, 'Vagharshapat', 234, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6528, 'Gavar', 235, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6529, 'Martuni', 235, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6530, 'Sevan', 235, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6531, 'Vardenis', 235, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6532, 'Abovyan', 236, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6533, 'Arzni', 236, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6534, 'Charentsavan', 236, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6535, 'Hrazdan', 236, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6536, 'Akhtala', 237, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6537, 'Alaverdi', 237, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6538, 'Spitak', 237, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6539, 'Stepanavan', 237, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6540, 'Tashir', 237, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6541, 'Vanadzor', 237, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6542, 'Artik', 238, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6543, 'Gyumri', 238, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6544, 'Stepanakert', 239, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6545, 'Angeghakot', 240, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6546, 'Goris', 240, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6547, 'Kajaran', 240, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6548, 'Kapan', 240, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6549, 'Meghri', 240, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6550, 'Sisian', 240, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6551, 'Dilijan', 241, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6552, 'Ijevan', 241, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6553, 'Yerevan', 243, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6554, 'Aruba', 244, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6555, 'Glenfield', 245, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6556, 'Henderson', 245, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6557, 'Milford', 245, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6558, 'Balgowlah', 247, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6559, 'Balmain', 248, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6560, 'Bankstown', 249, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(6561, 'Camberwell', 252, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6562, 'Caulfield', 255, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6563, 'Chatswood', 256, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6564, 'Cheltenham', 257, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6565, 'Cherrybrook', 258, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6566, 'Clayton', 259, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6567, 'Collingwood', 260, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6568, 'Hawthorn', 262, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6569, 'Jannnali', 263, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6570, 'Knoxfield', 264, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6571, 'Melbourne', 265, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6572, 'South Oakleigh', 265, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6573, 'Cottesole', 268, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6574, 'Darch', 268, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6575, 'Mullaloo', 268, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6576, 'Noranda', 268, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6577, 'Osborne Park', 268, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6578, 'Willetton', 268, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6579, 'Acacia Ridge', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6580, 'Aitkenvale', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6581, 'Alderley', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6582, 'Alexander Hills', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6583, 'Archerfield', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6584, 'Ashmore', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6585, 'Atherton', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6586, 'Ayr', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6587, 'Beachmere', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6588, 'Beenleigh', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6589, 'Beerwah', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6590, 'Bell', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6591, 'Belmont', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6592, 'Biloela', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6593, 'Birkdale', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6594, 'Blackwater', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6595, 'Bongaree', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6596, 'Bonogin', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6597, 'Boonah', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6598, 'Bowen', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6599, 'Brendale', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6600, 'Brisbane', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6601, 'Buddina', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6602, 'Buderim', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6603, 'Bundaberg', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6604, 'Bundall', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6605, 'Burleigh Heads', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6606, 'Burpengary', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6607, 'Cabaland', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6608, 'Caboolture', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6609, 'Cairns', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6610, 'Cairns Northern Beaches', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6611, 'Caloundra', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6612, 'Capalaba', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6613, 'Charters Towers', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6614, 'Childers', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6615, 'Cleveland', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6616, 'Coolum Beach', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6617, 'Coopers Plain', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6618, 'Dalby', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6619, 'Deception Bay', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6620, 'Eagle Farm', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6621, 'Eagleby', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6622, 'Emerald', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6623, 'Emundi', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6624, 'Forest Lake', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6625, 'Gatton', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6626, 'Gladstone', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6627, 'Gold Coast', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6628, 'Gowrie Junction', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6629, 'Gympie', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6630, 'Helensvale', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6631, 'Hervey Bay', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6632, 'Ingham', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6633, 'Innisfail', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6634, 'Ipswich', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6635, 'Jindalee', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6636, 'Julatten', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6637, 'Kawana Waters', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6638, 'Kingaroy', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6639, 'Lawnton', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6640, 'Loganholme', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6641, 'Mackay', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6642, 'Mareeba', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6643, 'Maroochydore', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6644, 'Maroochydore-Mooloolaba', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6645, 'Maryborough', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6646, 'Miami', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6647, 'Milton', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6648, 'Molendinar', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6649, 'Moranbah', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6650, 'Morayfield', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6651, 'Mossman', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6652, 'Mount Glorious', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6653, 'Mount Isa', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6654, 'Murarrie', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6655, 'Nairand Kay', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6656, 'Nambour', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6657, 'Nerang', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6658, 'Nobby Beach', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6659, 'Noosa Heads', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6660, 'Noosaville', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6661, 'Paddington', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6662, 'Port Douglas', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6663, 'Robina', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6664, 'Rockhampton', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6665, 'Rocklea', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6666, 'Roma', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6667, 'Rubyvale', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6668, 'Sanctuary Cove', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6669, 'Slade Point', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6670, 'Southport', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6671, 'Suburb', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6672, 'Sunshine Coast', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6673, 'Tewantin-Noosa', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6674, 'The Summit', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6675, 'Toowong', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6676, 'Toowoomba', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6677, 'Townsville', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6678, 'Victoria Point', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6679, 'Warwick', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6680, 'Willawong', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6681, 'Yatala', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6682, 'Yeppoon', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6683, 'Zillmere', 269, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6684, 'Bridgewater-Gagebrook', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6685, 'Burnie', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6686, 'Burnie-Devonport', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6687, 'Glenorchy', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6688, 'Hobart', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6689, 'Kingston-Blackmans Bay', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6690, 'Launceston', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6691, 'New Norfolk', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6692, 'Rowella', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6693, 'Sheffield', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6694, 'Ulverstone', 271, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6695, 'Templestowe', 272, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6696, 'Albion', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6697, 'Ararat', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6698, 'Avenel', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6699, 'Avondale Heights', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6700, 'Baccus Marsh', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6701, 'Bairnsdale', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6702, 'Ballarat', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6703, 'Balwyn', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6704, 'Batman', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6705, 'Bayswater', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6706, 'Belmont', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6707, 'Benalla', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6708, 'Bendigo', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6709, 'Bentleigh East', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6710, 'Berwick', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6711, 'Blackburn', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6712, 'Blue Mountains', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6713, 'Boonah', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6714, 'Boronia', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6715, 'Box Hill', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6716, 'Brighton East', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6717, 'Bundoora', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6718, 'Campbellfield', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6719, 'Carlton South', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6720, 'Caroline Springs', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6721, 'Castle Hill', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6722, 'Castlemaine', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6723, 'Caulfield', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6724, 'Cheltenham', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6725, 'Chester', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6726, 'Clayton South', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6727, 'Clifton Springs', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6728, 'Coburg', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6729, 'Colac', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6730, 'Collingwood', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6731, 'Craigieburn', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6732, 'Cranbourne', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6733, 'Crib Point', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6734, 'Dandenong', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6735, 'Devon Meadows', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6736, 'Diamond Creek', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6737, 'Doncaster East', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6738, 'Doncester', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6739, 'Donvale', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6740, 'Echuca-Moama', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6741, 'Elsternwick', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6742, 'Eltham', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6743, 'Fairfield', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6744, 'Fitzroy', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6745, 'Frnakston', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6746, 'Geelong', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6747, 'Glen Waverley', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6748, 'Glenorchy', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6749, 'Hallam', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6750, 'Hamilton', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6751, 'Hastings', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6752, 'Healesville', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6753, 'Horsham', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6754, 'Hughesdale', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6755, 'Ivanhoe', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6756, 'Keilor', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6757, 'Kensington', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6758, 'Kerang', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6759, 'Kilmore', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6760, 'Kilsyth', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6761, 'Kyabram', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6762, 'Lakes Entrance', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6763, 'Lalor', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6764, 'Lara', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6765, 'Laverton North', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6766, 'Leopold', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6767, 'Lower Templestowe', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6768, 'Maidstone', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6769, 'Malvern', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6770, 'Maryborough', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6771, 'Melbourne', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6772, 'Melton', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6773, 'Middle Park', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6774, 'Mildura', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6775, 'Mitcham', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6776, 'Moe-Yallourn', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6777, 'Moorabbin', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6778, 'Mordialloc', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6779, 'Morwell', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6780, 'Mulgrave', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6781, 'Murrumbeena', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6782, 'Neerim South', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6783, 'Noble Park North', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6784, 'Notting Hill', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6785, 'Oak Park', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6786, 'Ocean Grove-Barwon Heads', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6787, 'Olinda', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6788, 'Pakenham', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6789, 'Park Orchards', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6790, 'Port Melbourne', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6791, 'Portland', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6792, 'Prahran', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6793, 'Preston', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6794, 'Pritbourne', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6795, 'Queenscliff', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6796, 'Reservoir', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6797, 'Ringwood', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6798, 'Rowville', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6799, 'Sale', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6800, 'Sandringham', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6801, 'Scoresby', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6802, 'Sebastopol', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6803, 'Seymour', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6804, 'Shepparton-Mooroopna', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6805, 'Somerville', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6806, 'South Yarra', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6807, 'Southbank', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6808, 'St. Albans', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6809, 'St. Kilda East', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6810, 'Stawell', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6811, 'Sunbury', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6812, 'Sunshine West', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6813, 'Swan Hill', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6814, 'Tatura', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6815, 'Thomastown', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6816, 'Thornbury', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6817, 'Tongala', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6818, 'Torquay', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6819, 'Traralgon', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6820, 'Tullamarine', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6821, 'Vermont', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6822, 'Wangaratta', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6823, 'Wantirna', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6824, 'Warragul', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6825, 'Warrnambool', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6826, 'Welshpool', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6827, 'Wendouree', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6828, 'Wonthaggi', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6829, 'Woodend', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6830, 'Yarrawonga-Mulwala', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6831, 'Yea', 273, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6832, 'Wheeler', 276, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6833, 'Eisenstadt', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6834, 'GroBpetersdorf', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6835, 'Jennersdorf', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6836, 'Kemeten', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6837, 'Mattersburg', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6838, 'Neudorfl', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6839, 'Neusiedl am See', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6840, 'Oberwart', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6841, 'Pinkafeld', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6842, 'Rust', 280, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6843, 'Maria Rain', 281, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6844, 'Poggersdorf', 281, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6845, 'Althofen', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6846, 'Arnoldstein', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6847, 'Bad Sankt Leonhard', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6848, 'Bleiburg', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6849, 'Ebenthal', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6850, 'Eberndorf', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6851, 'Feldkirchen', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6852, 'Ferlach', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6853, 'Finkenstein', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6854, 'Friesach', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6855, 'Hermagor', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6856, 'Klagenfurt', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6857, 'Klagenfurt ', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6858, 'Lohnsburg', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6859, 'Moosburg', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6860, 'Paternion', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6861, 'Radentheim', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6862, 'Sankt Andra', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6863, 'Sankt Jakob', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6864, 'Sankt Veit', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6865, 'Seeboden', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6866, 'Spittal', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6867, 'Velden am Worthersee', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6868, 'Villach', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6869, 'Volkermarkt', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6870, 'Wernberg', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6871, 'Wolfsberg', 282, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6872, 'Amstetten', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6873, 'Bad Voslau', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6874, 'Baden', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6875, 'Berndorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6876, 'Boheimkirchen', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6877, 'Bruck an der Leitha', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6878, 'Brunn', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6879, 'Deutsch-Wagram', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6880, 'Ebreichsdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6881, 'Eggendorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6882, 'Fischamend', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6883, 'Gablitz', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6884, 'Ganserndorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6885, 'Gerasdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6886, 'Gloggnitz', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6887, 'Gmund', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6888, 'Greifenstein', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6889, 'GroB-Enzersdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6890, 'GroB-Gerungs', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6891, 'Guntramsdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6892, 'Haag', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6893, 'Hainburg', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6894, 'Heidenreichstein', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6895, 'Herzogenburg', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6896, 'Himberg', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6897, 'Hollabrunn', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6898, 'Horn', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6899, 'Klosterneuburg', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6900, 'Korneuburg', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6901, 'Kottingbrunn', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6902, 'Krems', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6903, 'Laa', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6904, 'Langenlois', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6905, 'Langenzersdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6906, 'Leobendorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6907, 'Leopoldsdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6908, 'Lilienfeld', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6909, 'Loipersdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6910, 'Maria Enzersdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6911, 'Melk', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6912, 'Mistelbach', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6913, 'Modling', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6914, 'Neulengbach', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6915, 'Neunkirchen', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6916, 'Niederleis', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6917, 'Ober-Grabendorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6918, 'Perchtoldsdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6919, 'Pernitz', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6920, 'Pottendorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6921, 'Poysdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6922, 'Pressbaum', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6923, 'Purgstall', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6924, 'Purkersdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6925, 'Reichenau', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6926, 'Retz', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6927, 'Sankt Andra-Wordern', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6928, 'Sankt Peter in der Au', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6929, 'Sankt Polten', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6930, 'Sankt Valentin', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6931, 'Scheibbs', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6932, 'Schrems', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6933, 'Schwechat', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6934, 'Seitenstetten', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6935, 'Sollenau', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6936, 'Stockerau', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6937, 'Strasshof', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6938, 'Ternitz', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6939, 'Traiskirchen', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6940, 'Traismauer', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6941, 'Tulln', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6942, 'Vosendorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6943, 'Waidhofen', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6944, 'Wiener Neudorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6945, 'Wiener Neustadt', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6946, 'Wieselburg', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6947, 'Wilhelmsburg', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6948, 'Wolkersdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6949, 'Ybbs', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6950, 'Ybbsitz', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6951, 'Zistersdorf', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6952, 'Zwettl', 285, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6953, 'Alkoven', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6954, 'Altheim', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6955, 'Altmunster', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6956, 'Andorf', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6957, 'Ansfelden', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6958, 'Asten', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6959, 'Attnang-Puchheim', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6960, 'Aurolzmunster', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6961, 'Bad Goisern', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6962, 'Bad Hall', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6963, 'Bad Ischl', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6964, 'Braunau', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6965, 'Breitenfurt', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6966, 'Ebensee', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6967, 'Eferding', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6968, 'Engerwitzdorf', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6969, 'Enns', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6970, 'Feldkirchen an der Donau', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6971, 'Frankenburg', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6972, 'Freistadt', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6973, 'Gallneukirchen', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6974, 'Garsten', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6975, 'Gmunden', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6976, 'Gramastetten', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6977, 'Grieskirchen', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6978, 'Gunskirchen', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6979, 'Horsching', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6980, 'Kirchdorf an der Krems', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6981, 'Kremsmunster', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6982, 'Krenglbach', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6983, 'Laakirchen', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6984, 'Lenzing', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6985, 'Leonding', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6986, 'Linz', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6987, 'Loibichl', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6988, 'Marchtrenk', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6989, 'Mattighofen', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6990, 'Mauthausen', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6991, 'Micheldorf', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6992, 'Neuhofen an der Krems', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6993, 'Ohlsdorf', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6994, 'Ottensheim', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6995, 'Pasching', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6996, 'Perg', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6997, 'Pettenbach', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6998, 'Pram', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(6999, 'Pregarten', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7000, 'Puchenau', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7001, 'Regau', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7002, 'Ried', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7003, 'Rohrbach in Oberosterreich', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7004, 'Rutzenmoos', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7005, 'Sankt Florian', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7006, 'Sankt Georgen', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7007, 'Sankt Marien', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7008, 'Scharding', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7009, 'Scharnstein', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7010, 'Schwertberg', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7011, 'Seewalchen', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7012, 'Sierning', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7013, 'Stadl-Paura', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7014, 'Steyr', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7015, 'Steyregg', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7016, 'Steyrermuhl', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7017, 'Thalheim', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7018, 'Timelkam', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7019, 'Traun', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7020, 'Vocklabruck', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7021, 'Vocklamarkt', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7022, 'Vorchdorf', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7023, 'Wels', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7024, 'Wilhering', 286, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7025, 'Abtenau', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7026, 'Anif', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7027, 'Bad Gastein', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7028, 'Bad Hofgastein', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7029, 'Bergheim', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7030, 'Bischofshofen', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7031, 'Bruck an der GroBglocknerstraB', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7032, 'Burmoos', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7033, 'Elsbethen', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7034, 'Eugendorf', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7035, 'Forstau', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7036, 'Grodig', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7037, 'Hallein', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7038, 'Hallwang', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7039, 'Henndorf', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7040, 'Kuchl', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7041, 'Mayrhofen', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7042, 'Mittersill', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7043, 'Neumarkt', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7044, 'Oberndorf', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7045, 'Obertrum am See', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7046, 'Piesendorf', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7047, 'Puch', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7048, 'Radstadt', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7049, 'Saalfelden', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7050, 'Salzburg', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7051, 'Sankt Johann im Pongau', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7052, 'Seekirchen', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7053, 'Sieghartskirchen', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7054, 'StraBwalchen', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7055, 'Strobl', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7056, 'Tamsweg', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7057, 'Thalgau', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7058, 'Wals-Siezenheim', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7059, 'Wolfgangsee', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7060, 'Zell am See', 287, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7061, 'Albersdorf', 288, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7062, 'Bad Aussee', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7063, 'Barnbach', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7064, 'Bruck an der Mur', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7065, 'Deutschlandsberg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7066, 'Eisenerz', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7067, 'Feldbach', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7068, 'Feldkirchen bei Graz', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7069, 'Fohnsdorf', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7070, 'Frohnleiten', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7071, 'Furstenfeld', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7072, 'Gleisdorf', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7073, 'Gratkorn', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7074, 'Graz', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7075, 'Hartberg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7076, 'Judenburg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7077, 'Judendorf-StraBengel', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7078, 'Kapfenberg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7079, 'Karlsdorf', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7080, 'Kindberg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7081, 'Knittelfeld', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7082, 'Koflach', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7083, 'Krieglach', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7084, 'Lannach', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7085, 'Leibnitz', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7086, 'Leoben', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7087, 'Liezen', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7088, 'Murzzuschlag', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7089, 'Rottenmann', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7090, 'Schladming', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7091, 'Seiersberg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7092, 'Spielberg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7093, 'Trofaiach', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7094, 'Voitsberg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7095, 'Wagna', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7096, 'Weiz', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7097, 'Zeltweg', 289, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7098, 'Deutschfeistritz', 290, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7099, 'Liezen', 290, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7100, 'Sankt Bartholoma', 290, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7101, 'Absam', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7102, 'Axams', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7103, 'Ebbs', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7104, 'Fugen', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7105, 'Hall', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7106, 'Haselgehr', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7107, 'Hopfgarten', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7108, 'Imst', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7109, 'Innsbruck', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7110, 'Jenbach', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7111, 'Kirchberg', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7112, 'Kirchbichl', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7113, 'Kitzbuhel', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7114, 'Kramsach', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7115, 'Kufstein', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7116, 'Landeck', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7117, 'Lienz', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7118, 'Matrei', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7119, 'Neustift im Stubaital', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7120, 'Reutte', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7121, 'Rum', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7122, 'Sankt Johann in Tirol', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7123, 'Scheffau', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7124, 'Schwaz', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7125, 'St. Johann Am Walde', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7126, 'Telfs', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7127, 'Vols', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7128, 'Vomp', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7129, 'Wattens', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7130, 'Worgl', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7131, 'Zirl', 291, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7132, 'Altach', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7133, 'Bludenz', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7134, 'Bregenz', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7135, 'Chassieu', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7136, 'Dietmannsried', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7137, 'Dornbirn', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7138, 'Feldkirch', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7139, 'Frastanz', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7140, 'Gotzis', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7141, 'Hard', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7142, 'Hochst', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7143, 'Hohenems', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(7144, 'Horbranz', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7145, 'Hufingen', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7146, 'Lauterach', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7147, 'Lochau', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7148, 'Lustenau', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7149, 'Mittelberg', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7150, 'Nenzing', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7151, 'Nuziders', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7152, 'Rankweil', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7153, 'Schruns', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7154, 'Thuringen', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7155, 'Wolfurt', 293, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7156, 'Vienna', 294, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7157, 'Wien', 294, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7158, 'Alat', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7159, 'Artyom', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7160, 'Baki', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7161, 'Bakixanov', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7162, 'Balaxani', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7163, 'Bilacari', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7164, 'Bilqax', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7165, 'Bina', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7166, 'Buzovna', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7167, 'Haci Zeynalabdin', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7168, 'Hovsan', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7169, 'Lokbatan', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7170, 'Mastaga', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7171, 'Puta', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7172, 'Qarasuxur', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7173, 'Qobustan', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7174, 'Rasulzada', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7175, 'Sabuncu', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7176, 'Sanqacal', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7177, 'Sumqayit', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7178, 'Suraxani', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7179, 'Xirdalan', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7180, 'Zirya', 295, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7181, 'Daskasan', 297, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7182, 'Ganca', 297, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7183, 'Xanlar', 297, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7184, 'Ganja', 298, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7185, 'Cabrayil', 299, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7186, 'Kalbacar', 299, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7187, 'Lacin', 299, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7188, 'Astara', 300, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7189, 'Goytapa', 300, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7190, 'Lankaran', 300, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7191, 'Masalli', 300, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7192, 'Neftcala', 300, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7193, 'Agcabadi', 301, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7194, 'Agdam', 301, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7195, 'Barda', 301, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7196, 'Mingacevir', 301, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7197, 'Tartar', 301, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7198, 'Yevlax', 301, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7199, 'Ali Bayramli', 302, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7200, 'Bilasuvar', 302, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7201, 'Calilabad', 302, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7202, 'Qarasu', 302, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7203, 'Qazimammad', 302, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7204, 'Saatli', 302, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7205, 'Sabirabad', 302, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7206, 'Salyan', 302, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7207, 'Susa', 303, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7208, 'Xankandi', 303, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7209, 'Xocavand', 303, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7210, 'Culfa', 304, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7211, 'Naxcivan', 304, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7212, 'Ordubad', 304, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7213, 'Sadarak', 304, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7214, 'Sarur', 304, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7215, 'Beylaqan', 305, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7216, 'Fuzuli', 305, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7217, 'Imisli', 305, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7218, 'Agstafa', 306, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7219, 'Gadabay', 306, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7220, 'Kovlar', 306, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7221, 'Qaracamirli', 306, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7222, 'Qazax', 306, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7223, 'Samkir', 306, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7224, 'Tovuz', 306, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7225, 'Amircan', 307, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7226, 'Balakan', 307, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7227, 'Katex', 307, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7228, 'Oguz', 307, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7229, 'Qabala', 307, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7230, 'Qax', 307, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7231, 'Saki', 307, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7232, 'Zaqatala', 307, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7233, 'Agdas', 308, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7234, 'Agsu', 308, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7235, 'Goycay', 308, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7236, 'Ismayilli', 308, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7237, 'Kurdamir', 308, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7238, 'Samaxi', 308, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7239, 'Ucar', 308, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7240, 'Zardab', 308, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7241, 'Davaci', 309, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7242, 'Quba', 309, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7243, 'Qusar', 309, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7244, 'Siyazan', 309, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7245, 'Xacmaz', 309, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7246, 'Xudat', 309, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7247, 'Coopers Town', 310, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7248, 'Marsh Harbour', 310, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7249, 'Andros Town', 312, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7250, 'Nicholls Town', 312, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7251, 'Alice Town', 314, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7252, 'Freetown', 317, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7253, 'Rock Sound', 317, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7254, 'Pirates Well', 322, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7255, '\'Isa', 327, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7256, 'Badiyah', 328, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7257, 'Hidd', 329, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7258, 'Mahama', 331, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7259, 'Manama', 332, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7260, 'Sitrah', 333, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7261, 'al-Manamah', 334, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7262, 'al-Muharraq', 335, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7263, 'ar-Rifa\'a', 336, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7264, 'Bandarban', 338, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7265, 'Barguna', 339, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7266, 'Barisal', 340, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7267, 'Gaurnadi', 340, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7268, 'Mehendiganj', 340, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7269, 'Nalchiti', 340, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7270, 'Bhola', 341, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7271, 'Burhanuddin', 341, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7272, 'Char Fasson', 341, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7273, 'Lalmohan', 341, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7274, 'Adamighi', 342, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7275, 'Bogora', 342, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7276, 'Sherpur', 342, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7277, 'Chandpur', 344, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7278, 'Hajiganj', 344, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7279, 'Boalkhali', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7280, 'Chattagam', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7281, 'Fatikchhari', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7282, 'Lohagara', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7283, 'Patiya', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7284, 'Rangunia', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7285, 'Raozan', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7286, 'Sandip', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7287, 'Satkaniya', 345, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7288, 'Alamdanga', 347, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7289, 'Chuadanga', 347, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7290, 'Damurhuda', 347, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7291, 'Dhaka', 348, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7292, 'Dhamrai', 348, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7293, 'Dohar', 348, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7294, 'Bochanganj', 349, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7295, 'Dinajpur', 349, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7296, 'Fulbari', 349, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7297, 'Parbatipur', 349, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7298, 'Bhanga', 350, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7299, 'Char Bhadrasan', 350, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7300, 'Faridpur', 350, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7301, 'Chhagalnaiya', 351, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7302, 'Feni', 351, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7303, 'Gaybanda', 352, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7304, 'Gazipur', 353, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7305, 'Tungi', 353, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7306, 'Gopalganj', 354, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7307, 'Tungi Para', 354, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7308, 'Baniachang', 355, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7309, 'Habiganj', 355, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7310, 'Jamalpur', 357, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7311, 'Sarishabari', 357, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7312, 'Abhaynagar', 358, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7313, 'Jessor', 358, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7314, 'Jhikargachha', 358, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7315, 'Keshabpur', 358, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7316, 'Jhalakati', 359, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7317, 'Jhanaydah', 360, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7318, 'Kaliganj', 360, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7319, 'Kotchandpur', 360, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7320, 'Shailkupa', 360, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7321, 'Khagrachari', 361, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7322, 'Manikchhari', 361, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7323, 'Ramgarh', 361, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7324, 'Khulna', 362, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7325, 'Phultala', 362, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7326, 'Bajitpur', 363, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7327, 'Bhairab Bazar', 363, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7328, 'Itna', 363, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7329, 'Kishorganj', 363, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7330, 'Komilla', 365, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7331, 'Laksham', 365, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7332, 'Chilmari', 366, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7333, 'Kurigram', 366, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7334, 'Nageshwari', 366, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7335, 'Ulipur', 366, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7336, 'Bheramara', 367, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7337, 'Kushtiya', 367, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7338, 'Lakshmipur', 368, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7339, 'Ramganj', 368, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7340, 'Ramgati', 368, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7341, 'Raypur', 368, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7342, 'Madaripur', 370, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7343, 'Magura', 371, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7344, 'Bhaluka', 372, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7345, 'Fulbaria', 372, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7346, 'Gafargaon', 372, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7347, 'Ishwarganj', 372, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7348, 'Maimansingh', 372, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7349, 'Muktagachha', 372, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7350, 'Trishal', 372, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7351, 'Manikganj', 373, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7352, 'Meherpur', 375, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7353, 'Munshiganj', 376, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7354, 'Kalia', 377, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7355, 'Naral', 377, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7356, 'Narayanganj', 378, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7357, 'Rupganj', 378, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7358, 'Narsingdi', 379, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7359, 'Roypura', 379, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7360, 'Gurudaspur', 380, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7361, 'Nator', 380, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7362, 'Naugaon', 381, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7363, 'Gomastapur', 382, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7364, 'Nawabganj', 382, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7365, 'Shibganj', 382, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7366, 'Netrakona', 383, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7367, 'Domar', 384, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7368, 'Nilphamari', 384, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7369, 'Sa\'idpur', 384, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7370, 'Begamganj', 385, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7371, 'Noakhali', 385, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7372, 'Senbagh', 385, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7373, 'Bera', 386, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7374, 'Bhangura', 386, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7375, 'Ishurdi', 386, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7376, 'Pabna', 386, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7377, 'Panchagarh', 387, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7378, 'Patuakhali', 388, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7379, 'Bhandaria', 389, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7380, 'Mathbaria', 389, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7381, 'Nesarabad', 389, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7382, 'Pirojpur', 389, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7383, 'Pangsha', 390, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7384, 'Rajbari', 390, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7385, 'Rajshahi', 391, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7386, 'Kaptai', 392, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7387, 'Rangamati', 392, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7388, 'Badarganj', 393, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7389, 'Kaunia', 393, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7390, 'Rangpur', 393, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7391, 'Satkhira', 394, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7392, 'Palang', 395, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7393, 'Nalitabari', 396, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7394, 'Sherpur', 396, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7395, 'Silhat', 397, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7396, 'Shahjadpur', 398, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7397, 'Sirajganj', 398, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7398, 'Chhatak', 399, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7399, 'Sunamganj', 399, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7400, 'Gopalpur', 400, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7401, 'Mirzapur', 400, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7402, 'Sakhipur', 400, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7403, 'Tangayal', 400, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7404, 'Pirganj', 401, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7405, 'Thakurgaon', 401, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7406, 'Baranavichy', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7407, 'Bjaroza', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7408, 'Bjeloozersk', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7409, 'Brest', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7410, 'David-Haradok', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7411, 'Drahichyn', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7412, 'Hancavichy', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7413, 'Ivacevichy', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7414, 'Ivanava', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7415, 'Kamjenec', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7416, 'Kobryn', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7417, 'Kosava', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7418, 'Ljahavichy', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7419, 'Luninjec', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7420, 'Malaryta', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7421, 'Mikashevichy', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7422, 'Pinsk', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7423, 'Pruzhany', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7424, 'Stolin', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7425, 'Vysokoje', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7426, 'Zhabinka', 413, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7427, 'Buda Kosheljovo', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7428, 'Chechersk', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7429, 'Dobrush', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7430, 'Hojniki', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7431, 'Homjel\'', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7432, 'Jel\'sk', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7433, 'Kalinkavichy', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7434, 'Kascjukovka', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7435, 'Mazyr', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7436, 'Narovlja', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7437, 'Pjetrykav', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7438, 'Rahachow', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7439, 'Rechyca', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7440, 'Svetlahorsk', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7441, 'Vasilevichy', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7442, 'Vjetka', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7443, 'Zhlobin', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7444, 'Zhytkavichy', 414, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7445, 'Ashmjany', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7446, 'Berjozovka', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7447, 'Hrodna', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7448, 'Lida', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7449, 'Masty', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7450, 'Navahrudak', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7451, 'Shchuchyn', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7452, 'Skidel\'', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7453, 'Slonim', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7454, 'Smarhon\'', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7455, 'Vawkavysk', 415, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7456, 'Asipovichy', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7457, 'Babrujsk', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7458, 'Byhau', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7459, 'Chausy', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7460, 'Cherikov', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7461, 'Horki', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7462, 'Kascjukovichy', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7463, 'Klimavichy', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7464, 'Krychaw', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7465, 'Mahiljow', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7466, 'Mstislav', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7467, 'Shklov', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7468, 'Slaeuharad', 416, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7469, 'Minsk', 418, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7470, 'Petrikov', 420, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7471, 'Baran\'', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7472, 'Braslav', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7473, 'Chashniki', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7474, 'Disna', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7475, 'Dokshicy', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7476, 'Dubrovna', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7477, 'Haradok', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7478, 'Hlybokaje', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7479, 'Ljepjel\'', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7480, 'Mjory', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7481, 'Navapolack', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7482, 'Novalukoml\'', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7483, 'Orsha', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7484, 'Pastavy', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7485, 'Polack', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7486, 'Polotsk', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7487, 'Senno', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7488, 'Talachyn', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7489, 'Verhnjadzvimsk', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7490, 'Vicebsk', 421, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7491, 'Aartselaar', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7492, 'Antwerpen', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7493, 'Arendonk', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7494, 'Baarle-Hertog', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7495, 'Balen', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7496, 'Beerse', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7497, 'Berlaar', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7498, 'Boechout', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7499, 'Bonheiden', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7500, 'Boom', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7501, 'Bornem', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7502, 'Borsbeek', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7503, 'Brasschaat', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7504, 'Brecht', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7505, 'Dessel', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7506, 'Deurne', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7507, 'Duffel', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7508, 'Edegem', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7509, 'Ekeren', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7510, 'Essen', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7511, 'Geel', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7512, 'Geluvele', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7513, 'Grobbendonk', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7514, 'Heist-op-den-Berg', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7515, 'Hemiksem', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7516, 'Herentals', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7517, 'Herenthout', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7518, 'Herselt', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7519, 'Hoogstraten', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7520, 'Hove', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7521, 'Hulshout', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7522, 'Kalmpthout', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7523, 'Kalmthout', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7524, 'Kapellen', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7525, 'Kasterlee', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7526, 'Kontich', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7527, 'Laakdal', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7528, 'Lier', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7529, 'Lille', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7530, 'Lint', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7531, 'Malle', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7532, 'Mechelen', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7533, 'Meerhout', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7534, 'Merksplas', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7535, 'Mol', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7536, 'Mortsel', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7537, 'Niel', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7538, 'Nijlen', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7539, 'Olen', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7540, 'Oud-Turnhout', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7541, 'Putte', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7542, 'Puurs', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7543, 'Ranst', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7544, 'Ravels', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7545, 'Retie', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7546, 'Rijkevorsel', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7547, 'Robrechts', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7548, 'Rumst', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7549, 'Schelle', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7550, 'Schilde', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7551, 'Schoten', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7552, 'Sint-Amands', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7553, 'Sint-Katelijne-Waver', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7554, 'Stabroek', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7555, 'Turnhout', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7556, 'Vorselaar', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7557, 'Vosselaar', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7558, 'Westerlo', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7559, 'Wijnegem', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7560, 'Willebroek', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7561, 'Wilrijk', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7562, 'Wommelgem', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7563, 'Wuustwezel', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7564, 'Zandhoven', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7565, 'Zoersel', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7566, 'Zwijndrecht', 422, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7567, 'Berchem', 423, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7568, 'Alsemberg', 424, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7569, 'Asse Zellik', 424, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7570, 'Brussels', 424, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7571, 'Bruxelles', 424, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7572, 'Diegem', 424, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7573, 'Alsemberg', 425, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7574, 'Asse Zellik', 425, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7575, 'Brussels', 425, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7576, 'Bruxelles', 425, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7577, 'Diegem', 425, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7578, 'Brussel', 426, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7579, 'Aiseau-Presles', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7580, 'Anderlues', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7581, 'Antoing', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7582, 'Ath', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7583, 'Beaumont', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7584, 'Beloeil', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7585, 'Bernissart', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7586, 'Binche', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7587, 'Boussu', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7588, 'Braine-le-Comte', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7589, 'Brugelette', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7590, 'Brunehaut', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7591, 'Celles', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7592, 'Chapelle-lez-Herlaimont', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7593, 'Charleroi', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7594, 'Chatelet', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7595, 'Chievres', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7596, 'Chimay', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7597, 'Colfontaine', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7598, 'Comines-Warneton', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7599, 'Courcelles', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7600, 'Dour', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7601, 'Ecaussinnes', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7602, 'Ellezelles', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7603, 'Enghien', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7604, 'Erquelinnes', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7605, 'Estaimpuis', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7606, 'Estinnes', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7607, 'Farciennes', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7608, 'Fleurus', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7609, 'Flobecq', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7610, 'Fontaine-l\'Eveque', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7611, 'Frameries', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7612, 'Frasnes-lez-Anvaing', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7613, 'Froidchapelle', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7614, 'Gerpinnes', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7615, 'Haine-Saint-Pierre', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7616, 'Ham-sur-Heure-Nalinnes', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7617, 'Hensies', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7618, 'Honnelles', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7619, 'Jurbise', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7620, 'La Louviere', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7621, 'Le Roeulx', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7622, 'Lens', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7623, 'Les Bons Villers', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7624, 'Lessines', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7625, 'Leuze-en-Hainaut', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7626, 'Lobbes', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7627, 'Manage', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7628, 'Merbes-le-Chateau', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7629, 'Momignies', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7630, 'Mons', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7631, 'Mont-de-l\'Enclus', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7632, 'Montigny-le-Tilleul', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7633, 'Morlanwelz', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7634, 'Mouscron', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7635, 'Pecq', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7636, 'Peruwelz', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7637, 'Pont-a-Celles', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7638, 'Quaregnon', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7639, 'Quevy', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7640, 'Quievrain', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7641, 'Rumes', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7642, 'Saint-Ghislain', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7643, 'Seneffe', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7644, 'Silly', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7645, 'Sivry-Rance', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7646, 'Soignies', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7647, 'Thuin', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7648, 'Tournai', 428, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7649, 'Amay', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7650, 'Amel', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7651, 'Angleur', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7652, 'Ans', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7653, 'Anthisnes', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7654, 'Aubel', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7655, 'Awans', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7656, 'Aywaille', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7657, 'Baelen', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7658, 'Bassenge', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7659, 'Berloz', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7660, 'Beyne-Heusay', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7661, 'Blegny', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7662, 'Braives', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7663, 'Bullingen', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7664, 'Burdinne', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7665, 'Burg-Reuland', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7666, 'Butgenbach', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7667, 'Chaudfontaine', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7668, 'Clavier', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7669, 'Comblain-au-Pont', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7670, 'Crisnee', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7671, 'Dalhem', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7672, 'Dison', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7673, 'Donceel', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7674, 'Engis', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7675, 'Esneux', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7676, 'Eupen', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7677, 'Faimes', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7678, 'Ferrieres', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7679, 'Fexhe-le-Haut-Clocher', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7680, 'Flemalle', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7681, 'Fleron', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7682, 'Geer', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7683, 'Grace-Hollogne', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7684, 'Hamoir', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7685, 'Hannut', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7686, 'Heron', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7687, 'Herstal', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7688, 'Herve', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7689, 'Huy', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7690, 'Jalhay', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7691, 'Juprelle', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7692, 'Kelmis', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7693, 'Liege', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7694, 'Lierneux', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7695, 'Limbourg', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7696, 'Lincent', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7697, 'Lontzen', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7698, 'Malmedy', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7699, 'Marchin', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7700, 'Modave', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7701, 'Montzen', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7702, 'Nandrin', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7703, 'Neupre', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7704, 'Olne', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7705, 'Oreye', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7706, 'Ouffet', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7707, 'Oupeye', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7708, 'Pepinster', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7709, 'Plombieres', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7710, 'Racour', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7711, 'Raeren', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7712, 'Remicourt', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7713, 'Saint-Georges-sur-Meuse', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7714, 'Saint-Nicolas', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7715, 'Sankt Vith', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7716, 'Seraing', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7717, 'Soumagne', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7718, 'Spa', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7719, 'Sprimont', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7720, 'Stavelot', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7721, 'Stoumont', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7722, 'Theux', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7723, 'Thimister-Clermont', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7724, 'Tinlot', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7725, 'Trois-Ponts', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7726, 'Trooz', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7727, 'Verlaine', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7728, 'Verviers', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7729, 'Villers-le-Bouillet', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7730, 'Vise', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7731, 'Waimes', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7732, 'Wanze', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7733, 'Waremme', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7734, 'Wasseiges', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7735, 'Welkenraedt', 429, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7736, 'Alken', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(7737, 'As', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7738, 'Beringen', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7739, 'Bilzen', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7740, 'Bocholt', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7741, 'Borgloon', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7742, 'Bree', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7743, 'Diepenbeek', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7744, 'Dilsen-Stokkem', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7745, 'Genk', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7746, 'Gingelom', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7747, 'Halen', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7748, 'Ham', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7749, 'Hamont-Achel', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7750, 'Hasselt', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7751, 'Hechtel-Eksel', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7752, 'Heers', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7753, 'Herk-de-Stad', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7754, 'Herstappe', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7755, 'Heusden-Zolder', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7756, 'Hoeselt', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7757, 'Houthalen-Helchteren', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7758, 'Kinrooi', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7759, 'Kortessem', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7760, 'Kuringen', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7761, 'Lanaken', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7762, 'Leopoldsburg', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7763, 'Lommel', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7764, 'Lummen', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7765, 'Maaseik', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7766, 'Maasmechelen', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7767, 'Meeuwen-Gruitrode', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7768, 'Neerpelt', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7769, 'Nieuwerkerken', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7770, 'Opglabbeek', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7771, 'Overpelt', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7772, 'Peer', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7773, 'Riemst', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7774, 'Sint-Truiden', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7775, 'Tessenderlo', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7776, 'Tongeren', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7777, 'Voeren', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7778, 'Wellen', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7779, 'Zonhoven', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7780, 'Zutendaal', 430, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7781, 'Arlon', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7782, 'Attert', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7783, 'Aubange', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7784, 'Bastogne', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7785, 'Bertogne', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7786, 'Bertrix', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7787, 'Bouillon', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7788, 'Chiny', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7789, 'Daverdisse', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7790, 'Durbuy', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7791, 'Erezee', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7792, 'Etalle', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7793, 'Fauvillers', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7794, 'Florenville', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7795, 'Gouvy', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7796, 'Grapfontaine', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7797, 'Habay', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7798, 'Herbeumont', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7799, 'Hotton', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7800, 'Houffalize', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7801, 'La Roche-en-Ardenne', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7802, 'Leglise', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7803, 'Libin', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7804, 'Libramont-Chevigny', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7805, 'Manhay', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7806, 'Marche-en-Famenne', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7807, 'Marloie', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7808, 'Martelange', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7809, 'Meix-devant-Virton', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7810, 'Messancy', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7811, 'Musson', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7812, 'Nassogne', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7813, 'Neufchateau', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7814, 'Paliseul', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7815, 'Rendeux', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7816, 'Rouvroy', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7817, 'Saint-Hubert', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7818, 'Saint-Leger', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7819, 'Sainte-Ode', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7820, 'Tellin', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7821, 'Tenneville', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7822, 'Tintigny', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7823, 'Vaux-sur-Sure', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7824, 'Vielsalm', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7825, 'Virton', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7826, 'Wellin', 431, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7827, 'Andenne', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7828, 'Anhee', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7829, 'Assesse', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7830, 'Beauraing', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7831, 'Bievre', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7832, 'Cerfontaine', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7833, 'Ciney', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7834, 'Couvin', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7835, 'Dinant', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7836, 'Doische', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7837, 'Eghezee', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7838, 'Fernelmont', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7839, 'Floreffe', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7840, 'Florennes', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7841, 'Fosses-la-Ville', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7842, 'Gedinne', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7843, 'Gembloux', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7844, 'Gesves', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7845, 'Hamois', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7846, 'Hastiere', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7847, 'Havelange', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7848, 'Houyet', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7849, 'Jambes', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7850, 'Jemeppe-sur-Sambre', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7851, 'La Bruyere', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7852, 'Malonne', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7853, 'Mettet', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7854, 'Namur', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7855, 'Ohey', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7856, 'Onhaye', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7857, 'Philippeville', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7858, 'Profondeville', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7859, 'Rochefort', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7860, 'Sambreville', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7861, 'Sombreffe', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7862, 'Somme-Leuze', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7863, 'Suarlee', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7864, 'Viroinval', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7865, 'Vresse-sur-Semois', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7866, 'Walcourt', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7867, 'Yvoir', 432, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7868, 'Gullegem', 433, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7869, 'Langdorp', 433, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7870, 'Aalst', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7871, 'Aalter', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7872, 'Assenede', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7873, 'Berlare', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7874, 'Beveren', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7875, 'Brakel', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7876, 'Buggenhout', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7877, 'De Pinte', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7878, 'Deinze', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7879, 'Denderleeuw', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7880, 'Dendermonde', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7881, 'Destelbergen', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7882, 'Drongen', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7883, 'Eeklo', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7884, 'Erembodegem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7885, 'Erpe-Mere', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7886, 'Evergem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7887, 'Gavere', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7888, 'Gent', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7889, 'Geraardsbergen', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7890, 'Ghent', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7891, 'Haaltert', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7892, 'Hamme', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7893, 'Herzele', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7894, 'Horebeke', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7895, 'Kaprijke', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7896, 'Kerksken', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7897, 'Kluisbergen', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7898, 'Knesselare', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7899, 'Kruibeke', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7900, 'Kruishoutem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7901, 'Laarne', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7902, 'Lebbeke', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7903, 'Lede', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7904, 'Lierde', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7905, 'Lochristi', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7906, 'Lokeren', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7907, 'Lovendegem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7908, 'Maarkedal', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7909, 'Maldegem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7910, 'Melle', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7911, 'Merelbeke', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7912, 'Moerbeke', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7913, 'Nazareth', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7914, 'Nevele', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7915, 'Ninove', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7916, 'Oosterzele', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7917, 'Oudenaarde', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7918, 'Ronse', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7919, 'Semmerzake', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7920, 'Sint-Gillis-Waas', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7921, 'Sint-Laureins', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7922, 'Sint-Lievens-Houtem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7923, 'Sint-Martens-Latem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7924, 'Sint-Niklaas', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7925, 'Stekene', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7926, 'Temse', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7927, 'Waarschoot', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7928, 'Waasmunster', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7929, 'Wachtebeke', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7930, 'Wetteren', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7931, 'Wichelen', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7932, 'Wortegem-Petegem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7933, 'Zele', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7934, 'Zelzate', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7935, 'Zingem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7936, 'Zomergem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7937, 'Zottegem', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7938, 'Zulte', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7939, 'Zwalm', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7940, 'Zwijnaarde', 434, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7941, 'Aarschot', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7942, 'Affligem', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7943, 'Asse', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7944, 'Beersel', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7945, 'Begijnendijk', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7946, 'Bekkevoort', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7947, 'Bertem', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7948, 'Bever', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7949, 'Bierbeek', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7950, 'Boortmeerbeek', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7951, 'Boutersem', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7952, 'Diest', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7953, 'Dilbeek', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7954, 'Drogenbos', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7955, 'Galmaarden', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7956, 'Geetbets', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7957, 'Glabbeek', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7958, 'Gooik', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7959, 'Grimbergen', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7960, 'Haacht', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7961, 'Halle', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7962, 'Herent', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7963, 'Herne', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7964, 'Hoegaarden', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7965, 'Hoeilaart', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7966, 'Holsbeek', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7967, 'Huldenberg', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7968, 'Kampenhout', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7969, 'Kapelle-op-den-Bos', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7970, 'Keerbergen', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7971, 'Kortenaken', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7972, 'Kortenberg', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7973, 'Kraainem', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7974, 'Landen', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7975, 'Lennik', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7976, 'Leuven', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7977, 'Liedekerke', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7978, 'Linkebeek', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7979, 'Linter', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7980, 'Londerzeel', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7981, 'Lubbeek', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7982, 'Machelen', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7983, 'Meise', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7984, 'Merchtem', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7985, 'Opwijk', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7986, 'Oud-Heverlee', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7987, 'Overijse', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7988, 'Pepingen', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7989, 'Roosdaal', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7990, 'Rotselaar', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7991, 'Scherpenheuvel-Zichem', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7992, 'Sint-Genesius-Rode', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7993, 'Sint-Pieters-Leeuw', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7994, 'Steenokkerzeel', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7995, 'Ternat', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7996, 'Tervuren', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7997, 'Tielt-Winge', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7998, 'Tienen', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(7999, 'Tremelo', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8000, 'Vilvoorde', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8001, 'Wemmel', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8002, 'Wezembeek-Oppem', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8003, 'Zaventem', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8004, 'Zemst', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8005, 'Zoutleeuw', 436, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8006, 'Callenelle', 437, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8007, 'Marcinelle', 437, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8008, 'Strepy-Bracquegnies', 437, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8009, 'Alveringem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8010, 'Anzegem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8011, 'Ardooie', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8012, 'Avelgem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8013, 'Beernem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8014, 'Blankenberge', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8015, 'Bredene', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8016, 'Brugge', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8017, 'Damme', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8018, 'De Haan', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8019, 'De Panne', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8020, 'Deerlijk', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8021, 'Dentergem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8022, 'Diksmuide', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8023, 'Geluveld', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8024, 'Gistel', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8025, 'Harelbeke', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8026, 'Heuvelland', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8027, 'Hooglede', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8028, 'Houthulst', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8029, 'Ichtegem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8030, 'Ieper', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8031, 'Ingelmunster', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8032, 'Ingooigem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8033, 'Izegem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8034, 'Jabbeke', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8035, 'Knokke-Heist', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8036, 'Koekelare', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8037, 'Koksijde', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8038, 'Kortemark', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8039, 'Kortrijk', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8040, 'Kuurne', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8041, 'Langemark-Poelkapelle', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8042, 'Ledegem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8043, 'Lendelede', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8044, 'Lichtervelde', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8045, 'Lo-Reninge', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8046, 'Menen', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8047, 'Mesen', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8048, 'Meulebeke', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8049, 'Middelkerke', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8050, 'Moorslede', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8051, 'Nieuwpoort', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8052, 'Oostende', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8053, 'Oostkamp', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8054, 'Oostrozebeke', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8055, 'Oudenburg', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8056, 'Pittem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8057, 'Poperinge', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8058, 'Roeselare', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8059, 'Ruiselede', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8060, 'Spiere-Helkijn', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8061, 'Staden', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8062, 'Tielt', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8063, 'Torhout', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8064, 'Veurne', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8065, 'Vleteren', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8066, 'Waregem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8067, 'Wervik', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8068, 'Wevelgem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8069, 'Wielsbeke', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8070, 'Wingene', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8071, 'Zedelgem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8072, 'Zeebrugge', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8073, 'Zonnebeke', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8074, 'Zuienkerke', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8075, 'Zwevegem', 438, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8076, 'Belize', 439, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8077, 'San Pedro', 439, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8078, 'Belmopan', 440, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8079, 'Benque Viejo', 440, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8080, 'San Ignacio', 440, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8081, 'Corozal', 441, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8082, 'Punta Gorda', 444, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8083, 'Kandi', 445, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8084, 'Malanville', 445, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8085, 'Batia', 446, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8086, 'Boukombe', 446, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8087, 'Kouande', 446, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8088, 'Natitingou', 446, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8089, 'Allada', 447, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8090, 'Cotonou', 447, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8091, 'Ouidah', 447, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8092, 'Tanguiete', 447, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8093, 'Bembereke', 448, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8094, 'Nikki', 448, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8095, 'Parakou', 448, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8096, 'Tchaourou', 448, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8097, 'Dassa', 449, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8098, 'Savalou', 449, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8099, 'Save', 449, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8100, 'Aplahoue', 450, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8101, 'Dogbo', 450, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8102, 'Djougou', 451, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8103, 'Cotonou', 452, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8104, 'Athieme', 453, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8105, 'Come', 453, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8106, 'Grand Popo', 453, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8107, 'Lokossa', 453, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8108, 'Adjohoun', 454, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8109, 'Porto Novo', 454, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8110, 'Ketou', 455, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8111, 'Pobe', 455, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8112, 'Sakete', 455, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8113, 'Abomey', 456, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8114, 'Bohicon', 456, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8115, 'Cove', 456, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8116, 'Zagnanado', 456, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8117, 'Hamilton', 457, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8118, 'Jakar', 459, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8119, 'Chhukha', 460, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8120, 'Phuentsholing', 460, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8121, 'Damphu', 461, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8122, 'Taga Dzong', 462, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8123, 'Geylegphug', 463, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8124, 'Ha', 464, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8125, 'Lhuntshi', 465, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8126, 'Mongar', 466, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8127, 'Pemagatsel', 467, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8128, 'Gasa', 468, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8129, 'Punakha', 468, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8130, 'Paro', 469, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8131, 'Phuntsholing', 470, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8132, 'Samchi', 470, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8133, 'Shemgang', 472, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8134, 'Tashigang', 473, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8135, 'Thimphu', 474, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8136, 'Timphu', 474, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8137, 'Tongsa', 475, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8138, 'Wangdiphodrang', 476, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8139, 'Guayaramerin', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8140, 'Magdalena', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8141, 'Reyes', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8142, 'Riberalta', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8143, 'Rurrenabaque', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8144, 'San Borja', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8145, 'San Ignacio', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8146, 'San Ramon', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8147, 'Santa Ana', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8148, 'Santa Rosa', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8149, 'Trinidad', 477, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8150, 'Camargo', 478, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8151, 'Monteagudo', 478, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8152, 'Muyupampa', 478, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8153, 'Padilla', 478, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8154, 'Sucre', 478, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8155, 'Tarabuco', 478, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8156, 'Villa Serano', 478, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8157, 'Aiquile', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8158, 'Arani', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8159, 'Capinota', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8160, 'Chimore', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8161, 'Cliza', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8162, 'Cochabamba', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8163, 'Colomi', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8164, 'Entre Rios', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8165, 'Irpa Irpa', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8166, 'Ivirgarzama', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8167, 'Mizque', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8168, 'Punata', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8169, 'Shinahota', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8170, 'Sipe Sipe', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8171, 'Tarata', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8172, 'Ucurena', 479, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8173, 'Caracollo', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8174, 'Challapata', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8175, 'Eucaliptus', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8176, 'Huanuni', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8177, 'Machacamarca', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8178, 'Oruro', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8179, 'Poopo', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8180, 'Santiago de Huari', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8181, 'Totoral', 481, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8182, 'Cobija', 482, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8183, 'Atocha', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8184, 'Betanzos', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8185, 'Colquechaca', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8186, 'Llallagua', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8187, 'Potosi', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8188, 'Santa Barbara', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8189, 'Tupiza', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8190, 'Uncia', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8191, 'Uyuni', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8192, 'Villazon', 483, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8193, 'Bermejo', 485, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8194, 'Entre Rios', 485, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8195, 'San Lorenzo', 485, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8196, 'Tarija', 485, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8197, 'Villamontes', 485, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8198, 'Yacuiba', 485, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8199, 'Kachikau', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8200, 'Kasane', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8201, 'Kavimba', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8202, 'Kazungula', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8203, 'Lesoma', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8204, 'Muchinje-Mabale', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8205, 'Pandamatenga', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8206, 'Pandamatenga Botswana Defence ', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8207, 'Parakarungu', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8208, 'Satau', 493, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8209, 'Francistown', 494, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8210, 'Gaborone', 495, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8211, 'Bere', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8212, 'Charles Hill', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8213, 'Chobokwane', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8214, 'Dekar', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8215, 'East Hanahai', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8216, 'Ghanzi', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8217, 'Groote Laagte', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8218, 'Kacgae', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8219, 'Karakobis', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8220, 'Kuke Quarantine Camp', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8221, 'Kule', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8222, 'Makunda', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8223, 'Ncojane', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8224, 'New Xade', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8225, 'New Xanagas', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8226, 'Qabo', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8227, 'Tsootsha', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8228, 'West Hanahai', 496, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8229, 'Jwaneng', 497, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8230, 'Artisia', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8231, 'Bokaa', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8232, 'Dikgonye', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8233, 'Dikwididi', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8234, 'Kgomodiatshaba', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8235, 'Khurutshe', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8236, 'Leshibitse', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8237, 'Mabalane', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8238, 'Malolwane', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8239, 'Malotwana Siding', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8240, 'Matebeleng', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8241, 'Mmamashia', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8242, 'Mmathubudukwane', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8243, 'Mochudi', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8244, 'Modipane', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8245, 'Morwa', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8246, 'Oliphants Drift', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8247, 'Oodi', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8248, 'Pilane', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8249, 'Ramonaka', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8250, 'Ramotlabaki', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8251, 'Rasesa', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8252, 'Sikwane', 500, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8253, 'Boatlaname', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8254, 'Botlhapatlou', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8255, 'Diagane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8256, 'Diphudugodu', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8257, 'Diremogolo Lands', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8258, 'Ditshegwane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8259, 'Ditshukudu', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8260, 'Dumadumane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8261, 'Dutlwe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8262, 'Gabane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8263, 'Gakgatla', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8264, 'Gakuto', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8265, 'Galekgatshwane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8266, 'Gamodubu', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8267, 'Gaphatshwa', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8268, 'Hatsalatladi', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8269, 'Kamenakwe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8270, 'Kaudwane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8271, 'Kgaphamadi', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8272, 'Kgope', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8273, 'Khekhenya-Chepetese', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8274, 'Khudumelapye', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8275, 'Kopong', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8276, 'Kotolaname', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8277, 'Kubung', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8278, 'Kumakwane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8279, 'Kweneng', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8280, 'Lentsweletau', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8281, 'Lephepe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8282, 'Lesirane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8283, 'Letlhakeng', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8284, 'Losilakgokong', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8285, 'Maboane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8286, 'Mahetlwe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8287, 'Makabanyane-Dikgokong', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8288, 'Malwelwe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8289, 'Mamhiko', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8290, 'Manaledi', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8291, 'Mantshwabisi', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8292, 'Marejwane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8293, 'Masebele', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8294, 'Medie', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8295, 'Metsibotlhoko', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8296, 'Metsimotlhaba', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8297, 'Mmakanke', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8298, 'Mmankgodi', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8299, 'Mmanoko', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8300, 'Mmokolodi', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8301, 'Mmopane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8302, 'Mmopane Lands', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8303, 'Mogoditshane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8304, 'Mogoditshane Botswana Defence ', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8305, 'Mogoditshane Lands', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8306, 'Mogonono', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8307, 'Molepolole', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8308, 'Mononyane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8309, 'Monwane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8310, 'Morabane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8311, 'Morope', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8312, 'Moshaweng', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8313, 'Mosokotswe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8314, 'Motokwe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8315, 'Ngware', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8316, 'Nkoyaphiri', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8317, 'Ramaphatlhe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8318, 'Salajwe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8319, 'Serinane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8320, 'Sesung', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8321, 'Shadishadi', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8322, 'Sojwe', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8323, 'Sorilatholo', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8324, 'Suping', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8325, 'Takatokwane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(8326, 'Thamaga', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8327, 'Thebephatshwa', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8328, 'Tlowaneng', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8329, 'Tsetseng', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8330, 'Tswaane', 501, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8331, 'Lobatse', 502, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8332, 'Bodibeng', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8333, 'Boro', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8334, 'Botlhatlogo', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8335, 'Chanoga', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8336, 'Chuchubega', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8337, 'Daonara', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8338, 'Ditshiping', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8339, 'Habu', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8340, 'Jao', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8341, 'Kareng', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8342, 'Katamaga', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8343, 'Kgakge', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8344, 'Khwai Camp', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8345, 'Komana', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8346, 'Legotlhwana', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8347, 'Mababe', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8348, 'Makalamabedi', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8349, 'Matlapana', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8350, 'Matsaudi', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8351, 'Mawana', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8352, 'Mokgalo-Haka', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8353, 'Morutsha', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8354, 'Nxharaga', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8355, 'Phuduhudu', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8356, 'Samodupi', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8357, 'Sankuyo', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8358, 'Sehithwa', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8359, 'Semboyo', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8360, 'Sexaxa', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8361, 'Shakawe', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8362, 'Shorobe', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8363, 'Somela', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8364, 'Toteng', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8365, 'Tsanekona', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8366, 'Tsao', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8367, 'Xaxaba', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8368, 'Xhobe', 503, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8369, 'Bethel', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8370, 'Borobadilepe', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8371, 'Diabo', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8372, 'Digawana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8373, 'Dikhukhung', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8374, 'Dinatshana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8375, 'Dipotsana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8376, 'Ditlharapa', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8377, 'Gamajalela', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8378, 'Gasita', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8379, 'Gathwane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8380, 'Good Hope', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8381, 'Goora-seno', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8382, 'Gopong', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8383, 'Hebron', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8384, 'Itholoke', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8385, 'Kanaku', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8386, 'Kangwe', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8387, 'Kanye', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8388, 'Keng', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8389, 'Kgomokasitwa', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8390, 'Kgoro', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8391, 'Khakhea', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8392, 'Khonkhwa', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8393, 'Kokong', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8394, 'Lehoko', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8395, 'Lejwana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8396, 'Lekgolobotlo', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8397, 'Leporung', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8398, 'Logagane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8399, 'Lorolwana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8400, 'Lorwana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8401, 'Lotlhakane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8402, 'Lotlhakane West', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8403, 'Mabule', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8404, 'Mabutsane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8405, 'Madingwana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8406, 'Magoriapitse', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8407, 'Magotlhawane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8408, 'Mahotshwane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8409, 'Maisane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8410, 'Makokwe', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8411, 'Malokaganyane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8412, 'Manyana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8413, 'Maokane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8414, 'Marojane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8415, 'Maruswa', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8416, 'Metlobo', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8417, 'Metlojane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8418, 'Mmakgori', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8419, 'Mmathethe', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8420, 'Mogojogojo', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8421, 'Mogonye', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8422, 'Mogwalale', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8423, 'Mokatako', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8424, 'Mokgomane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8425, 'Mokhomba', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8426, 'Molapowabojang', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8427, 'Molete', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8428, 'Morwamosu', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8429, 'Moshaneng', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8430, 'Moshupa', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8431, 'Motlhwatse', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8432, 'Motsentshe', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8433, 'Musi', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8434, 'Ngwatsau', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8435, 'Ntlhantlhe', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8436, 'Papatlo', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8437, 'Phihitshwane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8438, 'Pitsana-Potokwe', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8439, 'Pitsane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8440, 'Pitseng-Ralekgetho', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8441, 'Pitshane Molopo', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8442, 'Rakhuna', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8443, 'Ralekgetho', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8444, 'Ramatlabama', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8445, 'Ranaka', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8446, 'Sedibeng', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8447, 'Segakwana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8448, 'Segwagwa', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8449, 'Seherelela', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8450, 'Sekhutlane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8451, 'Sekoma', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8452, 'Selokolela', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8453, 'Semane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8454, 'Sese', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8455, 'Sesung', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8456, 'Sheep Farm', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8457, 'Tlhankane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8458, 'Tlhareseleele', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8459, 'Tshidilamolomo', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8460, 'Tshwaane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8461, 'Tsonyane', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8462, 'Tswaaneng', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8463, 'Tswagare-Lothoje-Lokalana', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8464, 'Tswanyaneng', 504, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8465, 'Beetsha', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8466, 'Eretsha', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8467, 'Etsha 1', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8468, 'Etsha 13', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8469, 'Etsha 6', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8470, 'Etsha 8', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8471, 'Etsha 9', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8472, 'Gane', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8473, 'Gonutsuga', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8474, 'Gowe', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8475, 'Gudingwa', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8476, 'Gumare', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8477, 'Ikoga', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8478, 'Kajaja', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8479, 'Kapotora Lands', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8480, 'Kauxwhi', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8481, 'Matswee', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8482, 'Maun', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8483, 'Moaha', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8484, 'Mohembo East', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8485, 'Mohembo West', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8486, 'Mokgacha', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8487, 'Ngarange', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8488, 'Nokaneng', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8489, 'Nxamasere', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8490, 'Nxaunxau', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8491, 'Nxwee', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8492, 'Qangwa', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8493, 'Roye', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8494, 'Samochema', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8495, 'Sekondomboro', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8496, 'Sepopa', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8497, 'Seronga', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8498, 'Shaowe', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8499, 'Tobere Lands', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8500, 'Tubu', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8501, 'Tubu Lands', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8502, 'Xadau', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8503, 'Xakao', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8504, 'Xaxa', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8505, 'Xhauga', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8506, 'Xurube', 506, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8507, 'Orapa', 507, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8508, 'Sowa', 510, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8509, 'Acrelandia', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8510, 'Brasileia', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8511, 'Cruzeiro do Sul', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8512, 'Epitaciolandia', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8513, 'Feijo', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8514, 'Mancio Lima', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8515, 'Manoel Urbano', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8516, 'Marechal Thaumaturgo', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8517, 'Placido de Castro', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8518, 'Porto Walter', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8519, 'Rio Branco', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8520, 'Rodrigues Alves', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8521, 'Sena Madureira', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8522, 'Senador Guiomard', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8523, 'Tarauaca', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8524, 'Xapuri', 512, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8525, 'Agua Branca', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8526, 'Anadia', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8527, 'Arapiraca', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8528, 'Atalaia', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8529, 'Barra de Santo Antonio', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8530, 'Batalha', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8531, 'Boca da Mata', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8532, 'Cacimbinhas', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8533, 'Cajueiro', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8534, 'Campo Alegre', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8535, 'Campo Grande', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8536, 'Canapi', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8537, 'Capela', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8538, 'Coite do Noia', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8539, 'Colonia Leopoldina', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8540, 'Coruripe', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8541, 'Craibas', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8542, 'Delmiro Gouveia', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8543, 'Dois Riachos', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8544, 'Estrela de Alagoas', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8545, 'Feira Grande', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8546, 'Flexeiras', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8547, 'Girau do Ponciano', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8548, 'Ibateguara', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8549, 'Igaci', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8550, 'Igreja Nova', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8551, 'Inhapi', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8552, 'Joaquim Gomes', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8553, 'Jundia', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8554, 'Junqueiro', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8555, 'Lagoa da Canoa', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8556, 'Limoeiro de Anadia', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8557, 'Maceio', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8558, 'Major Isidoro', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8559, 'Maragogi', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8560, 'Maravilha', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8561, 'Marechal Deodoro', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8562, 'Maribondo', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8563, 'Mata Grande', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8564, 'Matriz de Camaragibe', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8565, 'Messias', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8566, 'Minador do Negrao', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8567, 'Murici', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8568, 'Novo Lino', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8569, 'Olho d\'Agua das Flores', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8570, 'Olivenca', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8571, 'Palmeira dos Indios', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8572, 'Pao de Acucar', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8573, 'Passo de Camaragibe', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8574, 'Penedo', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8575, 'Piacabucu', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8576, 'Pilar', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8577, 'Piranhas', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8578, 'Poco das Trincheiras', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8579, 'Porto Calvo', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8580, 'Porto Real do Colegio', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8581, 'Quebrangulo', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8582, 'Rio Largo', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8583, 'Santana do Ipanema', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8584, 'Santana do Mundau', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8585, 'Sao Jose da Laje', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8586, 'Sao Jose da Tapera', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8587, 'Sao Luis do Quitunde', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8588, 'Sao Miguel dos Campos', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8589, 'Sao Sebastiao', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8590, 'Satuba', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8591, 'Senador Rui Palmeira', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8592, 'Taquarana', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8593, 'Teotonio Vilela', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8594, 'Traipu', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8595, 'Uniao dos Palmares', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8596, 'Vicosa', 513, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8597, 'Amapa', 514, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8598, 'Laranjal do Jari', 514, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8599, 'Macapa', 514, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8600, 'Mazagao', 514, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8601, 'Oiapoque', 514, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8602, 'Santana', 514, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8603, 'Alvaraes', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8604, 'Anori', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8605, 'Apui', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8606, 'Autazes', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8607, 'Barcelos', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8608, 'Barreirinha', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8609, 'Benjamin Constant', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8610, 'Boca do Acre', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8611, 'Borba', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8612, 'Canutama', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8613, 'Carauari', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8614, 'Careiro', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8615, 'Careiro da Varzea', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8616, 'Coari', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8617, 'Codajas', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8618, 'Eirunepe', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8619, 'Envira', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8620, 'Fonte Boa', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8621, 'Guajara', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8622, 'Humaita', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8623, 'Ipixuna', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8624, 'Iranduba', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8625, 'Itacoatiara', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8626, 'Japura', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8627, 'Jutai', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8628, 'Labrea', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8629, 'Manacapuru', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8630, 'Manaquiri', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8631, 'Manaus', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8632, 'Manicore', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8633, 'Maraa', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8634, 'Maues', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8635, 'Nhamunda', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8636, 'Nova Olinda do Norte', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8637, 'Novo Airao', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8638, 'Novo Aripuana', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8639, 'Parintins', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8640, 'Pauini', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8641, 'Rio Preto da Eva', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8642, 'Santa Isabel do Rio Negro', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8643, 'Santo Antonio do Ica', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8644, 'Sao Gabriel da Cachoeira', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8645, 'Sao Paulo de Olivenca', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8646, 'Tabatinga', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8647, 'Tapaua', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8648, 'Tefe', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8649, 'Tonantins', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8650, 'Uarini', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8651, 'Urucara', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8652, 'Urucurituba', 515, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8653, 'Acajutiba', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8654, 'Alagoinhas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8655, 'Amargosa', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8656, 'Amelia Rodrigues', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8657, 'America Dourada', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8658, 'Anage', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8659, 'Araci', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8660, 'Aurelino Leal', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8661, 'Baixa Grande', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8662, 'Barra', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8663, 'Barra da Estiva', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8664, 'Barra do Choca', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8665, 'Barreiras', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8666, 'Belmonte', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8667, 'Boa Vista do Tupim', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8668, 'Bom Jesus da Lapa', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8669, 'Boquira', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8670, 'Brumado', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8671, 'Buerarema', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8672, 'Cachoeira', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8673, 'Cacule', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8674, 'Caetite', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8675, 'Cafarnaum', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8676, 'Camacan', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8677, 'Camacari', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8678, 'Camamu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8679, 'Campo Alegre de Lourdes', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8680, 'Campo Formoso', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8681, 'Canarana', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8682, 'Canavieiras', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8683, 'Candeias', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8684, 'Candido Sales', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8685, 'Cansancao', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8686, 'Capim Grosso', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8687, 'Caravelas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8688, 'Carinhanha', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8689, 'Casa Nova', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8690, 'Castro Alves', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8691, 'Catu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8692, 'Cicero Dantas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8693, 'Cipo', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8694, 'Coaraci', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8695, 'Conceicao da Feira', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8696, 'Conceicao do Almeida', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8697, 'Conceicao do Coite', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8698, 'Conceicao do Jacuipe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8699, 'Conde', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8700, 'Coracao de Maria', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8701, 'Coronel Joao Sa', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8702, 'Correntina', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8703, 'Cruz das Almas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8704, 'Curaca', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8705, 'Dias d\'Avila', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8706, 'Encruzilhada', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8707, 'Entre Rios', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8708, 'Esplanada', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8709, 'Euclides da Cunha', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8710, 'Eunapolis', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8711, 'Feira de Santana', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8712, 'Filadelfia', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8713, 'Formosa do Rio Preto', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8714, 'Gandu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8715, 'Guanambi', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8716, 'Guaratinga', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8717, 'Iacu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8718, 'Ibicarai', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8719, 'Ibicui', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8720, 'Ibipeba', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8721, 'Ibirapitanga', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8722, 'Ibirataia', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8723, 'Ibotirama', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8724, 'Iguai', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8725, 'Ilheus', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8726, 'Inhambupe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8727, 'Ipiau', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8728, 'Ipira', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8729, 'Iraquara', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8730, 'Irara', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8731, 'Irece', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8732, 'Itabela', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8733, 'Itaberaba', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8734, 'Itabuna', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8735, 'Itacare', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8736, 'Itagi', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8737, 'Itagiba', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8738, 'Itajuipe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8739, 'Itamaraju', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8740, 'Itambe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8741, 'Itanhem', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8742, 'Itaparica', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8743, 'Itapetinga', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8744, 'Itapicuru', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8745, 'Itarantim', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8746, 'Itirucu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8747, 'Itiuba', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8748, 'Itororo', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8749, 'Ituacu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8750, 'Itubera', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8751, 'Jacobina', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8752, 'Jaguaquara', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8753, 'Jaguarari', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8754, 'Jequie', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8755, 'Jeremoabo', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8756, 'Jitauna', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8757, 'Joao Dourado', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8758, 'Juazeiro', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8759, 'Jussara', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8760, 'Laje', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8761, 'Lapao', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8762, 'Lauro de Freitas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8763, 'Livramento', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8764, 'Macarani', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8765, 'Macaubas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8766, 'Madre de Deus', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8767, 'Mairi', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8768, 'Maracas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8769, 'Maragogipe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8770, 'Marau', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8771, 'Mascote', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8772, 'Mata de Sao Joao', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8773, 'Medeiros Neto', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8774, 'Miguel Calmon', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8775, 'Milagres', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8776, 'Monte Santo', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8777, 'Morro de Chapeu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8778, 'Mucuri', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8779, 'Mundo Novo', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8780, 'Muritiba', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8781, 'Mutuipe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8782, 'Nazare', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8783, 'Nova Soure', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8784, 'Nova Vicosa', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8785, 'Olindina', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8786, 'Oliveira dos Brejinhos', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8787, 'Palmas de Monte Alto', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8788, 'Paramirim', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8789, 'Paratinga', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8790, 'Paripiranga', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8791, 'Pau Brasil', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8792, 'Paulo Afonso', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8793, 'Pilao Arcado', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8794, 'Pindobacu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8795, 'Piritiba', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8796, 'Planalto', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8797, 'Pocoes', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8798, 'Pojuca', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8799, 'Ponto Novo', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8800, 'Porto Seguro', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8801, 'Prado', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8802, 'Presidente Tancredo Neves', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8803, 'Queimadas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8804, 'Quijingue', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8805, 'Rafael Jambeiro', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8806, 'Remanso', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8807, 'Riachao das Neves', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8808, 'Riachao do Jacuipe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8809, 'Riacho de Santana', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8810, 'Ribeira do Pombal', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8811, 'Rio Real', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8812, 'Ruy Barbosa', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8813, 'Salvador', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8814, 'Santa Cruz Cabralia', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8815, 'Santa Ines', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8816, 'Santa Maria da Vitoria', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8817, 'Santa Rita de Cassia', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8818, 'Santaluz', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8819, 'Santana', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8820, 'Santo Amaro', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8821, 'Santo Antonio de Jesus', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8822, 'Santo Estevao', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8823, 'Sao Desiderio', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8824, 'Sao Felipe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8825, 'Sao Francisco do Conde', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8826, 'Sao Gabriel', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8827, 'Sao Goncalo dos Campos', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8828, 'Sao Sebastiao do Passe', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8829, 'Saubara', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8830, 'Seabra', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8831, 'Senhor do Bonfim', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8832, 'Sento Se', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8833, 'Serra Dourada', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8834, 'Serra do Ramalho', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8835, 'Serrinha', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8836, 'Simoes Filho', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8837, 'Sobradinho', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8838, 'Souto Soares', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8839, 'Tanhacu', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8840, 'Taperoa', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8841, 'Tapiramuta', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8842, 'Teixeira de Freitas', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8843, 'Teofilandia', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8844, 'Terra Nova', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8845, 'Tremedal', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8846, 'Tucano', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8847, 'Uaua', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8848, 'Ubaira', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8849, 'Ubaitaba', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8850, 'Ubata', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8851, 'Una', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8852, 'Urucuca', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8853, 'Utinga', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8854, 'Valenca', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8855, 'Valente', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8856, 'Vera Cruz', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8857, 'Vitoria da Conquista', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8858, 'Wenceslau Guimaraes', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8859, 'Xique-Xique', 516, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8860, 'Acarau', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8861, 'Acopiara', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8862, 'Amontada', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8863, 'Aquiraz', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8864, 'Aracati', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8865, 'Aracoiaba', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8866, 'Araripe', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8867, 'Assare', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8868, 'Aurora', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8869, 'Barbalha', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8870, 'Barro', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8871, 'Barroquinha', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8872, 'Baturite', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8873, 'Beberibe', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8874, 'Bela Cruz', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8875, 'Boa Viagem', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8876, 'Brejo Santo', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8877, 'Camocim', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8878, 'Campos Sales', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8879, 'Caninde', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8880, 'Carire', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8881, 'Caririacu', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8882, 'Cascavel', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8883, 'Caucaia', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8884, 'Cedro', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8885, 'Chorozinho', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8886, 'Coreau', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8887, 'Crateus', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8888, 'Crato', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8889, 'Cruz', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8890, 'Eusebio', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8891, 'Farias Brito', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8892, 'Forquilha', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8893, 'Fortaleza', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8894, 'Granja', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8895, 'Guaiuba', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8896, 'Guaraciaba do Norte', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8897, 'Hidrolandia', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8898, 'Horizonte', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8899, 'Ibiapina', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8900, 'Ico', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8901, 'Iguatu', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8902, 'Independencia', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8903, 'Ipu', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8904, 'Ipueiras', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8905, 'Iraucuba', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8906, 'Itaitinga', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8907, 'Itapage', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(8908, 'Itapipoca', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8909, 'Itarema', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8910, 'Jaguaribe', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8911, 'Jaguaruana', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8912, 'Jardim', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8913, 'Juazeiro do Norte', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8914, 'Jucas', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8915, 'Lavras da Mangabeira', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8916, 'Limoeiro do Norte', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8917, 'Maracanau', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8918, 'Maranguape', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8919, 'Marco', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8920, 'Massape', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8921, 'Mauriti', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8922, 'Milagres', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8923, 'Missao Velha', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8924, 'Mombaca', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8925, 'Morada Nova', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8926, 'Nova Russas', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8927, 'Novo Oriente', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8928, 'Ocara', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8929, 'Oros', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8930, 'Pacajus', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8931, 'Pacatuba', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8932, 'Paracuru', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8933, 'Paraipaba', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8934, 'Parambu', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8935, 'Pedra Branca', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8936, 'Pentecoste', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8937, 'Quixada', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8938, 'Quixeramobim', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8939, 'Quixere', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8940, 'Redencao', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8941, 'Reriutaba', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8942, 'Russas', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8943, 'Santa Quiteria', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8944, 'Santana do Acarau', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8945, 'Sao Benedito', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8946, 'Sao Goncalo do Amarante', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8947, 'Senador Pompeu', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8948, 'Sobral', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8949, 'Tabuleiro do Norte', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8950, 'Tamboril', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8951, 'Taua', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8952, 'Tiangua', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8953, 'Trairi', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8954, 'Ubajara', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8955, 'Umirim', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8956, 'Uruburetama', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8957, 'Varjota', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8958, 'Varzea Alegre', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8959, 'Vicosa do Ceara', 517, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8960, 'Abadiania', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8961, 'Acreuna', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8962, 'Aguas Lindas de Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8963, 'Alexania', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8964, 'Anapolis', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8965, 'Anicuns', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8966, 'Aparecida de Goiania', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8967, 'Aragarcas', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8968, 'Bela Vista de Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8969, 'Bom Jesus de Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8970, 'Buriti Alegre', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8971, 'Cacu', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8972, 'Caiaponia', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8973, 'Caldas Novas', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8974, 'Campos Belos', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8975, 'Campos Verdes', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8976, 'Carmo do Rio Verde', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8977, 'Catalao', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8978, 'Cavalcante', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8979, 'Ceres', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8980, 'Cidade Ocidental', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8981, 'Cocalzinho de Coias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8982, 'Cristalina', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8983, 'Crixas', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8984, 'Doverlandia', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8985, 'Edeia', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8986, 'Firminopolis', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8987, 'Formosa', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8988, 'Goianapolis', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8989, 'Goianesia', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8990, 'Goiania', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8991, 'Goianira', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8992, 'Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8993, 'Goiatuba', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8994, 'Guapo', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8995, 'Hidrolandia', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8996, 'Iaciara', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8997, 'Indiara', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8998, 'Inhumas', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(8999, 'Ipameri', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9000, 'Ipora', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9001, 'Itaberai', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9002, 'Itapaci', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9003, 'Itapirapua', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9004, 'Itapuranga', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9005, 'Itumbiara', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9006, 'Jaragua', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9007, 'Jatai', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9008, 'Jussara', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9009, 'Luziania', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9010, 'Mara Rosa', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9011, 'Minacu', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9012, 'Mineiros', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9013, 'Morrinhos', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9014, 'Mozarlandia', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9015, 'Neropolis', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9016, 'Niquelandia', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9017, 'Nova Crixas', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9018, 'Novo Gama', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9019, 'Orizona', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9020, 'Padre Bernardo', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9021, 'Palmeiras de Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9022, 'Parauna', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9023, 'Petrolina de Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9024, 'Piracanjuba', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9025, 'Piranhas', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9026, 'Pirenopolis', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9027, 'Pires do Rio', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9028, 'Planaltina', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9029, 'Pontalina', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9030, 'Porangatu', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9031, 'Posse', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9032, 'Quirinopolis', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9033, 'Rialma', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9034, 'Rio Verde', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9035, 'Rubiataba', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9036, 'Santa Helena de Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9037, 'Santa Terezinha de Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9038, 'Santo Antonio do Descoberto', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9039, 'Sao Domingos', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9040, 'Sao Luis de Montes Belos', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9041, 'Sao Miguel do Araguaia', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9042, 'Sao Simao', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9043, 'Senador Canedo', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9044, 'Silvania', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9045, 'Trindade', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9046, 'Uruacu', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9047, 'Uruana', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9048, 'Valparaiso de Goias', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9049, 'Vianopolis', 521, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9050, 'Acailandia', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9051, 'Alcantara', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9052, 'Aldeias Altas', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9053, 'Alto Alegre do Pindare', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9054, 'Amarante do Maranhao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9055, 'Anajatuba', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9056, 'Araioses', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9057, 'Arame', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9058, 'Arari', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9059, 'Bacabal', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9060, 'Balsas', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9061, 'Barra do Corda', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9062, 'Barreirinhas', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9063, 'Bequimao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9064, 'Bom Jardim', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9065, 'Brejo', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9066, 'Buriti', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9067, 'Buriti Bravo', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9068, 'Buriticupu', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9069, 'Candido Mendes', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9070, 'Cantanhede', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9071, 'Carolina', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9072, 'Carutapera', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9073, 'Caxias', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9074, 'Chapadinha', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9075, 'Codo', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9076, 'Coelho Neto', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9077, 'Colinas', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9078, 'Coroata', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9079, 'Cururupu', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9080, 'Davinopolis', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9081, 'Dom Pedro', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9082, 'Esperantinopolis', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9083, 'Estreito', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9084, 'Fortuna', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9085, 'Godofredo Viana', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9086, 'Governador Eugenio Barros', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9087, 'Governador Nunes Freire', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9088, 'Grajau', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9089, 'Humberto de Campos', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9090, 'Icatu', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9091, 'Imperatriz', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9092, 'Itapecuru Mirim', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9093, 'Itinga do Maranhao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9094, 'Joao Lisboa', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9095, 'Lago da Pedra', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9096, 'Lago do Junco', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9097, 'Maracacume', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9098, 'Matinha', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9099, 'Matoes', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9100, 'Mirador', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9101, 'Miranda do Norte', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9102, 'Moncao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9103, 'Montes Altos', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9104, 'Morros', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9105, 'Nova Olinda do Maranhao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9106, 'Olho d\'Agua das Cunhas', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9107, 'Paco do Lumiar', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9108, 'Paraibano', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9109, 'Parnarama', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9110, 'Passagem Franca', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9111, 'Pastos Bons', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9112, 'Paulo Ramos', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9113, 'Pedreiras', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9114, 'Penalva', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9115, 'Pindare Mirim', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9116, 'Pinheiro', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9117, 'Pio XII', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9118, 'Pirapemas', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9119, 'Pocao de Pedras', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9120, 'Porto Franco', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9121, 'Presidente Dutra', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9122, 'Raposa', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9123, 'Riachao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9124, 'Rosario', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9125, 'Santa Helena', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9126, 'Santa Ines', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9127, 'Santa Luzia', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9128, 'Santa Luzia do Parua', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9129, 'Santa Quiteria do Maranhao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9130, 'Santa Rita', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9131, 'Sao Benedito do Rio Preto', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9132, 'Sao Bento', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9133, 'Sao Bernardo', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9134, 'Sao Domingos do Maranhao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9135, 'Sao Joao Batista', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9136, 'Sao Joao dos Patos', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9137, 'Sao Jose de Ribamar', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9138, 'Sao Luis', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9139, 'Sao Luis Gonzaga do Maranhao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9140, 'Sao Mateus do Maranhao', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9141, 'Sao Pedro da Agua Branca', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9142, 'Sao Raimundo das Mangabeiras', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9143, 'Timbiras', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9144, 'Timon', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9145, 'Trizidela do Vale', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9146, 'Tuntum', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9147, 'Turiacu', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9148, 'Tutoia', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9149, 'Urbano Santos', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9150, 'Vargem Grande', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9151, 'Viana', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9152, 'Vitoria do Mearim', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9153, 'Vitorino Freire', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9154, 'Ze Doca', 522, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9155, 'Abaetetuba', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9156, 'Acara', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9157, 'Afua', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9158, 'Agua Azul do Norte', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9159, 'Alenquer', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9160, 'Almeirim', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9161, 'Altamira', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9162, 'Ananindeua', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9163, 'Augusto Correa', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9164, 'Baiao', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9165, 'Barcarena', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9166, 'Belem', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9167, 'Benevides', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9168, 'Braganca', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9169, 'Breu Branco', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9170, 'Breves', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9171, 'Bujaru', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9172, 'Cameta', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9173, 'Capanema', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9174, 'Capitao Poco', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9175, 'Castanhal', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9176, 'Conceicao do Araguaia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9177, 'Concordia do Para', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9178, 'Curionopolis', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9179, 'Curuca', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9180, 'Dom Eliseu', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9181, 'Eldorado dos Carajas', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9182, 'Garrafao do Norte', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9183, 'Goianesia do Para', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9184, 'Gurupa', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9185, 'Igarape-Acu', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9186, 'Igarape-Miri', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9187, 'Irituia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9188, 'Itaituba', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9189, 'Itupiranga', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9190, 'Jacareacanga', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9191, 'Jacunda', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9192, 'Juruti', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9193, 'Limoeiro do Ajuru', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9194, 'Mae do Rio', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9195, 'Maraba', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9196, 'Maracana', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9197, 'Marapanim', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9198, 'Marituba', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9199, 'Medicilandia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9200, 'Mocajuba', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9201, 'Moju', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9202, 'Monte Alegre', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9203, 'Muana', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9204, 'Novo Progresso', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9205, 'Novo Repartimento', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9206, 'Obidos', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9207, 'Oeiras do Para', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9208, 'Oriximina', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9209, 'Ourem', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9210, 'Ourilandia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9211, 'Pacaja', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9212, 'Paragominas', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9213, 'Parauapebas', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9214, 'Portel', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9215, 'Porto de Moz', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9216, 'Prainha', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9217, 'Redencao', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9218, 'Rio Maria', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9219, 'Rondon do Para', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9220, 'Ruropolis', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9221, 'Salinopolis', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9222, 'Santa Isabel do Para', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9223, 'Santa Luzia do Para', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9224, 'Santa Maria do Para', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9225, 'Santana do Araguaia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9226, 'Santarem', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9227, 'Santo Antonio do Taua', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9228, 'Sao Caetano de Odivelas', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9229, 'Sao Domingos do Araguaia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9230, 'Sao Domingos do Capim', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9231, 'Sao Felix do Xingu', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9232, 'Sao Geraldo do Araguaia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9233, 'Sao Joao de Pirabas', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9234, 'Sao Miguel do Guama', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9235, 'Senador Jose Porfirio', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9236, 'Soure', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9237, 'Tailandia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9238, 'Terra Santa', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9239, 'Tome-Acu', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9240, 'Tucuma', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9241, 'Tucurui', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9242, 'Ulianopolis', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9243, 'Uruara', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9244, 'Vigia', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9245, 'Viseu', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9246, 'Xinguara', 526, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9247, 'Alagoa Grande', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9248, 'Alagoa Nova', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9249, 'Alagoinha', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9250, 'Alhandra', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9251, 'Aracagi', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9252, 'Arara', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9253, 'Araruna', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9254, 'Areia', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9255, 'Aroeiras', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9256, 'Bananeiras', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9257, 'Barra de Santa Rosa', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9258, 'Bayeux', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9259, 'Belem', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9260, 'Boqueirao', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9261, 'Brejo do Cruz', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9262, 'Caapora', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9263, 'Cabedelo', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9264, 'Cacimba de Dentro', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9265, 'Cajazeiras', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9266, 'Campina Grande', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9267, 'Catole do Rocha', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9268, 'Conceicao', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9269, 'Conde', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9270, 'Coremas', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9271, 'Cruz do Espirito Santo', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9272, 'Cuite', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9273, 'Desterro', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9274, 'Dona Ines', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9275, 'Esperanca', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9276, 'Fagundes', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9277, 'Guarabira', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9278, 'Gurinhem', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9279, 'Imaculada', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9280, 'Inga', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9281, 'Itabaiana', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9282, 'Itaporanga', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9283, 'Itapororoca', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9284, 'Itatuba', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9285, 'Jacarau', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9286, 'Joao Pessoa', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9287, 'Juazeirinho', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9288, 'Juripiranga', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9289, 'Juru', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9290, 'Lagoa Seca', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9291, 'Mamanguape', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9292, 'Manaira', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9293, 'Mari', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9294, 'Massaranduba', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9295, 'Mogeiro', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9296, 'Monteiro', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9297, 'Mulungu', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9298, 'Natuba', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9299, 'Nova Floresta', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9300, 'Patos', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9301, 'Paulista', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9302, 'Pedras de Fogo', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9303, 'Pianco', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9304, 'Picui', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9305, 'Pilar', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9306, 'Pirpirituba', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9307, 'Pitimbu', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9308, 'Pocinhos', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9309, 'Pombal', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9310, 'Princesa Isabel', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9311, 'Puxinana', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9312, 'Queimadas', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9313, 'Remigio', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9314, 'Rio Tinto', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9315, 'Salgado de Sao Felix', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9316, 'Santa Luzia', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9317, 'Santa Rita', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9318, 'Sao Bento', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9319, 'Sao Joao do Rio do Peixe', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9320, 'Sao Jose de Piranhas', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9321, 'Sao Sebastiao de Lagoa de Roca', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9322, 'Sape', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9323, 'Serra Branca', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9324, 'Solanea', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9325, 'Soledade', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9326, 'Sousa', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9327, 'Sume', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9328, 'Taperoa', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9329, 'Tavares', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9330, 'Teixeira', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9331, 'Triunfo', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9332, 'Uirauna', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9333, 'Umbuzeiro', 527, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9334, 'Almirante Tamandare', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9335, 'Alto Parana', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9336, 'Alto Piquiri', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9337, 'Altonia', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9338, 'Ampere', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9339, 'Andira', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9340, 'Antonina', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9341, 'Apucarana', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9342, 'Arapongas', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9343, 'Arapoti', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9344, 'Araucaria', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9345, 'Assai', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9346, 'Assis Chateaubriand', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9347, 'Astorga', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9348, 'Bandeirantes', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9349, 'Barbosa Ferraz', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9350, 'Bela Vista do Paraiso', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9351, 'Cambara', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9352, 'Cambe', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9353, 'Campina Grande do Sul', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9354, 'Campina da Lagoa', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9355, 'Campo Largo', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9356, 'Campo Murao', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9357, 'Candido de Abreu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9358, 'Capitao Leonidas Marques', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9359, 'Carambei', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9360, 'Cascavel', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9361, 'Castro', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9362, 'Centenario do Sul', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9363, 'Chopinzinho', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9364, 'Cianorte', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9365, 'Clevelandia', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9366, 'Colombo', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9367, 'Colorado', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9368, 'Contenda', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9369, 'Corbelia', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9370, 'Cornelio Procopio', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9371, 'Coronel Vivida', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9372, 'Cruzeiro do Oeste', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9373, 'Curitiba', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9374, 'Dois Vizinhos', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9375, 'Engenheiro Beltrao', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9376, 'Faxinal', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9377, 'Fazenda Rio Grande', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9378, 'Florestopolis', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9379, 'Foz do Iguacu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9380, 'Francisco Beltrao', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9381, 'Goioere', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9382, 'Guaira', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9383, 'Guaraniacu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9384, 'Guarapuava', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9385, 'Guaratuba', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9386, 'Ibaiti', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9387, 'Ibipora', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9388, 'Imbituva', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9389, 'Ipora', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9390, 'Irati', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9391, 'Itaperucu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9392, 'Ivaipora', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9393, 'Jacarezinho', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9394, 'Jaguariaiva', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9395, 'Jandaia do Sul', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9396, 'Jataizinho', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9397, 'Lapa', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9398, 'Laranjeiras do Sul', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9399, 'Loanda', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9400, 'Londrina', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9401, 'Mandaguacu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9402, 'Mandaguari', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9403, 'Marechal Candido Rondon', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9404, 'Marialva', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9405, 'Maringa', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9406, 'Matelandia', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9407, 'Matinhos', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9408, 'Medianeira', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9409, 'Moreira Sales', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9410, 'Nova Aurora', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9411, 'Nova Esperanca', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9412, 'Nova Londrina', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9413, 'Ortigueira', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9414, 'Paicandu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9415, 'Palmas', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9416, 'Palmeira', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9417, 'Palotina', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9418, 'Paranagua', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9419, 'Paranavai', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9420, 'Pato Branco', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9421, 'Peabiru', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9422, 'Pinhais', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9423, 'Pinhao', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9424, 'Pirai do Sul', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9425, 'Piraquara', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9426, 'Pitanga', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9427, 'Ponta Grossa', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9428, 'Pontal do Parana', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9429, 'Porecatu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9430, 'Primero de Maio', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9431, 'Prudentopolis', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9432, 'Quatro Barras', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9433, 'Quedas do Iguacu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9434, 'Realeza', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9435, 'Reserva', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9436, 'Ribeirao do Pinhal', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9437, 'Rio Branco do Sul', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9438, 'Rio Negro', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9439, 'Rolandia', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9440, 'Santa Helena', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9441, 'Santa Terezinha de Itaipu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9442, 'Santo Antonio da Platina', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9443, 'Santo Antonio do Sudoeste', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9444, 'Sao Joao do Ivai', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9445, 'Sao Jose dos Pinhais', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9446, 'Sao Mateus do Sul', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9447, 'Sao Miguel do Iguacu', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9448, 'Sarandi', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9449, 'Senges', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9450, 'Sertanopolis', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9451, 'Siquera Campos', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9452, 'Tapejara', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9453, 'Telemaco Borba', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9454, 'Terra Boa', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9455, 'Terra Rica', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9456, 'Terra Roxa', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9457, 'Tibagi', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9458, 'Toledo', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9459, 'Ubirata', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9460, 'Umuarama', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9461, 'Uniao da Victoria', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9462, 'Wenceslau Braz', 528, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9463, 'Abreu e Lima', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9464, 'Afogados da Ingazeira', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9465, 'Agrestina', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9466, 'Agua Preta', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9467, 'Aguas Belas', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9468, 'Alianca', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9469, 'Altinho', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9470, 'Amaraji', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9471, 'Aracoiaba', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9472, 'Araripina', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9473, 'Arcoverde', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9474, 'Barra de Guabiraba', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9475, 'Barreiros', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9476, 'Belem de Sao Francisco', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9477, 'Belo Jardim', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9478, 'Bezerros', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9479, 'Bodoco', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9480, 'Bom Conselho', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9481, 'Bom Jardim', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(9482, 'Bonito', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9483, 'Brejo da Madre de Deus', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9484, 'Buique', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9485, 'Cabo de Santo Agostinho', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9486, 'Cabrobo', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9487, 'Cachoeirinha', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9488, 'Caetes', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9489, 'Camaragibe', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9490, 'Camocim de Sao Felix', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9491, 'Canhotinho', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9492, 'Capoeiras', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9493, 'Carnaiba', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9494, 'Carpina', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9495, 'Caruaru', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9496, 'Catende', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9497, 'Cha Grande', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9498, 'Condado', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9499, 'Cumaru', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9500, 'Cupira', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9501, 'Custodia', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9502, 'Escada', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9503, 'Exu', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9504, 'Feira Nova', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9505, 'Fernando de Noronha', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9506, 'Flores', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9507, 'Floresta', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9508, 'Gameleira', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9509, 'Garanhuns', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9510, 'Gloria do Goita', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9511, 'Goiana', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9512, 'Gravata', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9513, 'Ibimirim', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9514, 'Igarassu', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9515, 'Inaja', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9516, 'Ipojuca', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9517, 'Ipubi', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9518, 'Itaiba', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9519, 'Itamaraca', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9520, 'Itambe', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9521, 'Itapissuma', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9522, 'Itaquitinga', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9523, 'Jaboatao', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9524, 'Joao Alfredo', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9525, 'Joaquim Nabuco', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9526, 'Lagoa do Itaenga', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9527, 'Lajedo', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9528, 'Limoeiro', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9529, 'Macaparana', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9530, 'Maraial', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9531, 'Moreno', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9532, 'Nazare da Mata', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9533, 'Olinda', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9534, 'Orobo', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9535, 'Ouricuri', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9536, 'Palmares', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9537, 'Panelas', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9538, 'Parnamirim', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9539, 'Passira', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9540, 'Paudalho', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9541, 'Paulista', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9542, 'Pedra', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9543, 'Pesqueira', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9544, 'Petrolandia', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9545, 'Petrolina', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9546, 'Pombos', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9547, 'Quipapa', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9548, 'Recife', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9549, 'Ribeirao', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9550, 'Rio Formoso', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9551, 'Salgueiro', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9552, 'Santa Cruz do Capibaribe', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9553, 'Santa Maria da Boa Vista', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9554, 'Sao Bento do Una', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9555, 'Sao Caitano', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9556, 'Sao Joao', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9557, 'Sao Joaquim do Monte', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9558, 'Sao Jose da Coroa Grande', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9559, 'Sao Jose do Belmonte', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9560, 'Sao Jose do Egito', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9561, 'Sao Lourenco da Mata', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9562, 'Serra Talhada', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9563, 'Sertania', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9564, 'Sirinhaem', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9565, 'Surubim', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9566, 'Tabira', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9567, 'Tamandare', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9568, 'Taquaritinga do Norte', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9569, 'Timbauba', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9570, 'Toritama', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9571, 'Trindade', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9572, 'Triunfo', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9573, 'Tupanatinga', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9574, 'Vicencia', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9575, 'Vitoria de Santo Antao', 529, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9576, 'Agua Branca', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9577, 'Alto Longa', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9578, 'Altos', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9579, 'Amarante', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9580, 'Avelino Lopes', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9581, 'Barras', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9582, 'Batalha', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9583, 'Beneditinos', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9584, 'Bom Jesus', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9585, 'Buriti dos Lopes', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9586, 'Campo Maior', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9587, 'Canto do Buriti', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9588, 'Castelo do Piaui', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9589, 'Cocal', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9590, 'Corrente', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9591, 'Demerval Lobao', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9592, 'Elesbao Veloso', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9593, 'Esperantina', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9594, 'Floriano', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9595, 'Gilbues', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9596, 'Guadalupe', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9597, 'Inhuma', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9598, 'Itainopolis', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9599, 'Itaueira', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9600, 'Jaicos', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9601, 'Joaquim Pires', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9602, 'Jose de Freitas', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9603, 'Luis Correia', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9604, 'Luzilandia', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9605, 'Matias Olimpio', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9606, 'Miguel Alves', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9607, 'Monsenhor Gil', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9608, 'Oeiras', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9609, 'Palmeirais', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9610, 'Parnaiba', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9611, 'Pedro II', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9612, 'Picos', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9613, 'Pimenteiras', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9614, 'Pio IX', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9615, 'Piracuruca', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9616, 'Piripiri', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9617, 'Porto', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9618, 'Regeneracao', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9619, 'Sao Joao do Piaui', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9620, 'Sao Miguel do Tapuio', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9621, 'Sao Pedro do Piaui', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9622, 'Sao Raimundo Nonato', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9623, 'Simoes', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9624, 'Simplicio Mendes', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9625, 'Teresina', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9626, 'Uniao', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9627, 'Urucui', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9628, 'Valenca do Piaui', 530, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9629, 'Alta Floresta d\'Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9630, 'Alto Alegre do Parecis', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9631, 'Alto Paraiso', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9632, 'Alvorada d\'Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9633, 'Ariquemes', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9634, 'Buritis', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9635, 'Cacoal', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9636, 'Candeias do Jamari', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9637, 'Cerejeiras', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9638, 'Colorado do Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9639, 'Corumbiara', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9640, 'Espigao d\'Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9641, 'Governador Jorge Teixeira', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9642, 'Guajara-Mirim', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9643, 'Jaru', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9644, 'Ji-Parana', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9645, 'Machadinho d\'Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9646, 'Ministro Andreazza', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9647, 'Mirante da Serra', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9648, 'Nova Brasilandia d\'Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9649, 'Nova Mamore', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9650, 'Novo Horizonte do Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9651, 'Ouro Preto do Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9652, 'Pimenta Bueno', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9653, 'Porto Velho', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9654, 'Presidente Medici', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9655, 'Rolim de Moura', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9656, 'Santa Luzia d\'Oeste', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9657, 'Sao Miguel do Guapore', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9658, 'Urupa', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9659, 'Vale do Paraiso', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9660, 'Vilhena', 534, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9661, 'Alto Alegre', 535, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9662, 'Boa Vista', 535, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9663, 'Bonfim', 535, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9664, 'Caracarai', 535, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9665, 'Mucajai', 535, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9666, 'Normandia', 535, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9667, 'Sao Joao da Baliza', 535, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9668, 'Sao Luiz', 535, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9669, 'Aquidaba', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9670, 'Aracaju', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9671, 'Araua', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9672, 'Areia Branca', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9673, 'Barra dos Coqueiros', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9674, 'Boquim', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9675, 'Campo do Brito', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9676, 'Caninde de Sao Francisco', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9677, 'Capela', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9678, 'Carira', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9679, 'Cristinapolis', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9680, 'Estancia', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9681, 'Frei Paulo', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9682, 'Gararu', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9683, 'Indiaroba', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9684, 'Itabaiana', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9685, 'Itabaianinha', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9686, 'Itaporanga d\'Ajuda', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9687, 'Japaratuba', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9688, 'Japoata', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9689, 'Lagarto', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9690, 'Laranjeiras', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9691, 'Malhador', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9692, 'Maruim', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9693, 'Moita Bonita', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9694, 'Monte Alegre de Sergipe', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9695, 'Neopolis', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9696, 'Nossa Senhora da Gloria', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9697, 'Nossa Senhora das Dores', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9698, 'Nossa Senhora do Socorro', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9699, 'Pacatuba', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9700, 'Poco Verde', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9701, 'Porto da Folha', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9702, 'Propria', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9703, 'Riachao do Dantas', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9704, 'Ribeiropolis', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9705, 'Salgado', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9706, 'Santa Luzia do Itanhy', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9707, 'Santo Amaro das Brotas', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9708, 'Sao Cristovao', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9709, 'Simao Dias', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9710, 'Tobias Barreto', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9711, 'Tomar do Geru', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9712, 'Umbauba', 538, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9713, 'Alvorada', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9714, 'Ananas', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9715, 'Araguacu', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9716, 'Araguaina', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9717, 'Araguatins', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9718, 'Arraias', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9719, 'Augustinopolis', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9720, 'Axixa do Tocantins', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9721, 'Colinas do Tocantins', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9722, 'Dianopolis', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9723, 'Formoso do Araguaia', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9724, 'Goiatins', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9725, 'Guarai', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9726, 'Gurupi', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9727, 'Miracema do Tocantins', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9728, 'Miranorte', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9729, 'Palmas', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9730, 'Paraiso', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9731, 'Parana', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9732, 'Porto Nacional', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9733, 'Sitio Novo do Tocantins', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9734, 'Taguatinga', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9735, 'Tocantinopolis', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9736, 'Wanderlandia', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9737, 'Xambioa', 539, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9738, 'Kuala Belait', 541, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9739, 'Seria', 541, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9740, 'Bandar Seri Begawan', 542, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9741, 'Bangar', 543, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9742, 'Tutong', 544, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9743, 'Bansko', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9744, 'Belica', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9745, 'Blagoevgrad', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9746, 'Goce Delchev', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9747, 'Hadzhidimovo', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9748, 'Jakoruda', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9749, 'Kresna', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9750, 'Melnik', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9751, 'Petrich', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9752, 'Razlog', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9753, 'Sandanski', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9754, 'Simitli', 545, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9755, 'Ahtopol', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9756, 'Ajtos', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9757, 'Balgarovo', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9758, 'Bourgas', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9759, 'Burgas', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9760, 'Carevo', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9761, 'Kableshkovo', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9762, 'Kameno', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9763, 'Karnobat', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9764, 'Malko Tarnovo', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9765, 'Nesebar', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9766, 'Obzor', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9767, 'Pomorie', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9768, 'Primorsko', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9769, 'Sozopol', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9770, 'Sredec', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9771, 'Sungurlare', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9772, 'Tvardica', 546, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9773, 'Balchik', 547, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9774, 'Dobrich', 547, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9775, 'General-Toshevo', 547, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9776, 'Kavarna', 547, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9777, 'Loznica', 547, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9778, 'Shabla', 547, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9779, 'Tervel', 547, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9780, 'Drjanovo', 548, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9781, 'Gabrovo', 548, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9782, 'Plachkovci', 548, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9783, 'Sevlievo', 548, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9784, 'Trjavna', 548, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9785, 'Dimitrovgrad', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9786, 'Harmanli', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9787, 'Haskovo', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9788, 'Ivajlovgrad', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9789, 'Ljubimec', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9790, 'Madzharovo', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9791, 'Merichleri', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9792, 'Simeonovgrad', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9793, 'Svilengrad', 549, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9794, 'Boljarovo', 550, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9795, 'Elhovo', 550, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9796, 'Jambol', 550, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9797, 'Straldzha', 550, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9798, 'Topolovgrad', 550, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9799, 'Ardino', 551, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9800, 'Dzhebel', 551, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9801, 'Kardzhali', 551, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9802, 'Krumovgrad', 551, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9803, 'Momchilgrad', 551, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9804, 'Boboshevo', 552, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9805, 'Bobovdol', 552, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9806, 'Dupnica', 552, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9807, 'Kjustendil', 552, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9808, 'Kocherinovo', 552, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9809, 'Rila', 552, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9810, 'Sapareva Banja', 552, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9811, 'Zemen', 552, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9812, 'Aprilci', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9813, 'Jablanica', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9814, 'Letnica', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9815, 'Lovech', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9816, 'Lukovit', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9817, 'Sopot', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9818, 'Teteven', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9819, 'Trojan', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9820, 'Ugarchin', 553, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9821, 'Berkovica', 554, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9822, 'Bojchinovci', 554, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9823, 'Brusarci', 554, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9824, 'Chiprovci', 554, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9825, 'Lom', 554, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9826, 'Montana', 554, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9827, 'Valchedram', 554, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9828, 'Varshec', 554, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9829, 'Batak', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9830, 'Belovo', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9831, 'Bracigovo', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9832, 'Koprivshtica', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9833, 'Panagjurishte', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9834, 'Pazardzhik', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9835, 'Peshtera', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9836, 'Rakitovo', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9837, 'Septemvri', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9838, 'Strelcha', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9839, 'Velingrad', 556, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9840, 'Bankja', 557, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9841, 'Batanovci', 557, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9842, 'Breznik', 557, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9843, 'Pernik', 557, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9844, 'Radomir', 557, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9845, 'Tran', 557, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9846, 'Belene', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9847, 'Cherven Brjag', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9848, 'Dolna Mitropolija', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9849, 'Dolni Dabnik', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9850, 'Guljanci', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9851, 'Levski', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9852, 'Nikopol', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9853, 'Pleven', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9854, 'Pordim', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9855, 'Slavjanovo', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9856, 'Trashtenik', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9857, 'Varbica', 558, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9858, 'Asenovgrad', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9859, 'Brezovo', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9860, 'Car Kalojan', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9861, 'Hisarja', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9862, 'Kalofer', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9863, 'Karlovo', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9864, 'Klisura', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9865, 'Krichim', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9866, 'Parvomaj', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9867, 'Perushtica', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9868, 'Plovdiv', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9869, 'Rakovski', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9870, 'Sadovo', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9871, 'Saedinenie', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9872, 'Stambolijski', 559, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9873, 'Isperih', 560, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9874, 'Kubrat', 560, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9875, 'Razgrad', 560, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9876, 'Senovo', 560, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9877, 'Zavet', 560, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9878, 'Bjala', 561, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9879, 'Borovo', 561, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9880, 'Dve Mogili', 561, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9881, 'Ruse', 561, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9882, 'Russe', 561, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9883, 'Vetovo', 561, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9884, 'Kaolinovo', 562, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9885, 'Kaspichan', 562, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9886, 'Novi Pazar', 562, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9887, 'Pliska', 562, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9888, 'Shumen', 562, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9889, 'Smjadovo', 562, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9890, 'Veliki Preslav', 562, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9891, 'Alfatar', 563, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9892, 'Dulovo', 563, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9893, 'Glavinica', 563, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9894, 'Silistra', 563, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9895, 'Tutrakan', 563, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9896, 'Kermen', 564, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9897, 'Kotel', 564, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9898, 'Nova Zagora', 564, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9899, 'Shivachevo', 564, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9900, 'Sliven', 564, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9901, 'Chepelare', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9902, 'Devin', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9903, 'Dospat', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9904, 'Laki', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9905, 'Madan', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9906, 'Nedelino', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9907, 'Rudozem', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9908, 'Smoljan', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9909, 'Zlatograd', 565, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9910, 'Antonovo', 569, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9911, 'Omurtag', 569, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9912, 'Opaka', 569, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9913, 'Popovo', 569, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9914, 'Targovishte', 569, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9915, 'Beloslav', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9916, 'Bjala', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9917, 'Dalgopol', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9918, 'Devnja', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9919, 'Iskar', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9920, 'Provadija', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9921, 'Suvorovo', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9922, 'Valchi Dol', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9923, 'Varna', 570, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9924, 'Belogradchik', 572, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9925, 'Bregovo', 572, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9926, 'Dimovo', 572, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9927, 'Dolni Chiflik', 572, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9928, 'Dunavci', 572, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9929, 'Gramada', 572, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9930, 'Kula', 572, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9931, 'Vidin', 572, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9932, 'Bjala Slatina', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9933, 'Knezha', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9934, 'Kojnare', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9935, 'Kozloduj', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9936, 'Krivodol', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9937, 'Mezdra', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9938, 'Mizija', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9939, 'Orjahovo', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9940, 'Roman', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9941, 'Vraca', 573, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9942, 'Yablaniza', 574, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9943, 'Boromo', 575, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9944, 'Kongoussi', 576, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9945, 'Kombissiri', 577, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9946, 'Diebougou', 578, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9947, 'Pa', 578, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9948, 'Garango', 579, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9949, 'Tenkodogo', 579, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9950, 'Koudougou', 580, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9951, 'Banfora', 581, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9952, 'Zorgo', 582, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9953, 'Bogande', 583, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9954, 'Fada N\'gourma', 584, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9955, 'Bekuy', 585, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9956, 'Bobo Dioulasso', 585, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9957, 'Dano', 586, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9958, 'Ouagadougou', 587, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9959, 'Koalla', 588, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9960, 'Koloko', 588, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9961, 'Orodara', 588, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9962, 'Gayeri', 589, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9963, 'Pama', 590, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9964, 'Nouna', 591, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9965, 'Koupela', 592, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9966, 'Bousse', 593, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9967, 'Sindou', 594, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9968, 'Dedougou', 595, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9969, 'Po', 596, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9970, 'Boulsa', 597, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9971, 'Batie', 598, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9972, 'Ziniare', 599, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9973, 'Gorom-Gorom', 600, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9974, 'Yako', 601, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9975, 'Gaoua', 602, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9976, 'Kampti', 602, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9977, 'Loropeni', 602, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9978, 'Reo', 603, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9979, 'Kaya', 604, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9980, 'Dori', 605, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9981, 'Gao', 606, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9982, 'Leo', 606, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9983, 'Aribinda', 607, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9984, 'Djibo', 607, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9985, 'Louta', 608, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9986, 'Tougan', 608, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9987, 'Diapaga', 609, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9988, 'Kantchari', 609, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9989, 'Hounde', 610, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9990, 'Ouahigouya', 611, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9991, 'Gourcy', 612, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9992, 'Manga', 613, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9993, 'Bubanza', 614, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9994, 'Bujumbura', 615, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9995, 'Bururi', 616, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9996, 'Cankuzo', 617, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9997, 'Cibitoke', 618, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9998, 'Gitega', 619, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(9999, 'Karuzi', 620, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10000, 'Kayanza', 621, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10001, 'Kirundo', 622, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10002, 'Makamba', 623, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10003, 'Muramvya', 624, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10004, 'Muyinga', 625, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10005, 'Ngozi', 626, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10006, 'Rutana', 627, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10007, 'Ruyigi', 628, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10008, 'Kampot', 635, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10009, 'Ta Khmau', 636, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10010, 'Kracheh', 638, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10011, 'Pousat', 645, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10012, 'Phumi Takaev', 652, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10013, 'Banyo', 653, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10014, 'Meiganga', 653, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10015, 'Ngaoundere', 653, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10016, 'Tibati', 653, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10017, 'Tignere', 653, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10018, 'Akonolinga', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10019, 'Bafia', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10020, 'Eseka', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10021, 'Mbalmayo', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10022, 'Mfou', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10023, 'Monatele', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10024, 'Nanga Eboko', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10025, 'Obala', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10026, 'Ombesa', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10027, 'Saa', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10028, 'Yaounde', 654, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10029, 'Abong Mbang', 655, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10030, 'Batouri', 655, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10031, 'Bertoua', 655, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10032, 'Betare Oya', 655, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10033, 'Djoum', 655, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10034, 'Doume', 655, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10035, 'Lomie', 655, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10036, 'Yokadouma', 655, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10037, 'Bonaberi', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10038, 'Dibombari', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10039, 'Douala', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10040, 'Edea', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10041, 'Loum', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10042, 'Manjo', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10043, 'Mbanga', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10044, 'Nkongsamba', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10045, 'Yabassi', 656, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10046, 'Figuif', 657, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10047, 'Garoua', 657, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10048, 'Guider', 657, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10049, 'Lagdo', 657, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10050, 'Poli', 657, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10051, 'Rey Bouba', 657, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10052, 'Tchollire', 657, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10053, 'Figuif', 658, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10054, 'Garoua', 658, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10055, 'Guider', 658, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10056, 'Lagdo', 658, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10057, 'Poli', 658, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10058, 'Rey Bouba', 658, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10059, 'Tchollire', 658, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10060, 'Bamenda', 659, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10061, 'Kumbo', 659, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10062, 'Mbengwi', 659, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10063, 'Mme', 659, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10064, 'Njinikom', 659, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10065, 'Nkambe', 659, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10066, 'Wum', 659, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(10067, 'Bafang', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10068, 'Bafoussam', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10069, 'Bafut', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10070, 'Bali', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10071, 'Bana', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10072, 'Bangangte', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10073, 'Djang', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10074, 'Fontem', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10075, 'Foumban', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10076, 'Foumbot', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10077, 'Mbouda', 660, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10078, 'Akom', 661, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10079, 'Ambam', 661, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10080, 'Ebolowa', 661, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10081, 'Kribi', 661, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10082, 'Lolodorf', 661, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10083, 'Moloundou', 661, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10084, 'Mvangue', 661, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10085, 'Sangmelima', 661, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10086, 'Buea', 662, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10087, 'Idenao', 662, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10088, 'Kumba', 662, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10089, 'Limbe', 662, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10090, 'Mamfe', 662, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10091, 'Muyuka', 662, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10092, 'Tiko', 662, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10093, 'Airdrie', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10094, 'Athabasca', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10095, 'Banff', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10096, 'Barrhead', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10097, 'Bassano', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10098, 'Beaumont', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10099, 'Beaverlodge', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10100, 'Black Diamond', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10101, 'Blackfalds', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10102, 'Blairmore', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10103, 'Bon Accord', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10104, 'Bonnyville', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10105, 'Bow Island', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10106, 'Brooks', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10107, 'Calgary', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10108, 'Calmar', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10109, 'Camrose', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10110, 'Canmore', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10111, 'Cardston', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10112, 'Carstairs', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10113, 'Chateau Lake Louise', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10114, 'Chestermere', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10115, 'Clairmont', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10116, 'Claresholm', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10117, 'Coaldale', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10118, 'Coalhurst', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10119, 'Cochrane', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10120, 'Crossfield', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10121, 'Devon', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10122, 'Didsbury', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10123, 'Drayton Valley', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10124, 'Drumheller', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10125, 'Edmonton', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10126, 'Edson', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10127, 'Elk Point', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10128, 'Fairview', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10129, 'Falher', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10130, 'Fort MacLeod', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10131, 'Fox Creek', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10132, 'Gibbons', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10133, 'Grand Centre', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10134, 'Grande Cache', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10135, 'Grande Prairie', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10136, 'Grimshaw', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10137, 'Hanna', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10138, 'High Level', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10139, 'High Prairie', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10140, 'High River', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10141, 'Hinton', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10142, 'Irricana', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10143, 'Jasper', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10144, 'Killam', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10145, 'La Crete', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10146, 'Lac la Biche', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10147, 'Lacombe', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10148, 'Lamont', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10149, 'Leduc', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10150, 'Lethbridge', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10151, 'Lloydminster', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10152, 'Magrath', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10153, 'Manning', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10154, 'Mayerthorpe', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10155, 'McMurray', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10156, 'Medicine Hat', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10157, 'Millet', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10158, 'Morinville', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10159, 'Nanton', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10160, 'Okotoks', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10161, 'Olds', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10162, 'Peace River', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10163, 'Penhold', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10164, 'Picture Butte', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10165, 'Pincher Creek', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10166, 'Ponoka', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10167, 'Provost', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10168, 'Raymond', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10169, 'Red Deer', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10170, 'Redwater', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10171, 'Rimbey', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10172, 'Rocky Mountain House', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10173, 'Rocky View', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10174, 'Saint Paul', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10175, 'Sexsmith', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10176, 'Sherwood Park', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10177, 'Slave Lake', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10178, 'Smoky Lake', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10179, 'Spirit River', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10180, 'Spruce Grove', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10181, 'Stettler', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10182, 'Stony Plain', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10183, 'Strathmore', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10184, 'Sundre', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10185, 'Swan Hills', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10186, 'Sylvan Lake', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10187, 'Taber', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10188, 'Three Hills', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10189, 'Tofield', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10190, 'Two Hills', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10191, 'Valleyview', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10192, 'Vegreville', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10193, 'Vermilion', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10194, 'Viking', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10195, 'Vulcan', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10196, 'Wainwright', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10197, 'Wembley', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10198, 'Westlock', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10199, 'Wetaskiwin', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10200, 'Whitecourt', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10201, 'Wood Buffalo', 663, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10202, 'Altona', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10203, 'Beausejour', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10204, 'Boissevain', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10205, 'Brandon', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10206, 'Carberry', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10207, 'Carman', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10208, 'Dauphin', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10209, 'Deloraine', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10210, 'Dugald', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10211, 'Flin Flon', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10212, 'Gimli', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10213, 'Hamiota', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10214, 'Killarney', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10215, 'Lac du Bonnet', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10216, 'Leaf Rapids', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10217, 'Lorette', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10218, 'Melita', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10219, 'Minnedosa', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10220, 'Morden', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10221, 'Morris', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10222, 'Neepawa', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10223, 'Niverville', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10224, 'Pinawa', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10225, 'Portage la Prairie', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10226, 'Ritchot', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10227, 'Rivers', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10228, 'Roblin', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10229, 'Saint Adolphe', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10230, 'Sainte Anne', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10231, 'Sainte Rose du Lac', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10232, 'Selkirk', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10233, 'Shilo', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10234, 'Snow Lake', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10235, 'Souris', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10236, 'Springfield', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10237, 'Steinbach', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10238, 'Stonewall', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10239, 'Stony Mountain', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10240, 'Swan River', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10241, 'The Pas', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10242, 'Thompson', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10243, 'Virden', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10244, 'Winkler', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10245, 'Winnipeg', 665, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10246, 'Clyde River', 670, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10247, 'Iqaluit', 670, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10248, 'Kangerdlinerk', 670, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10249, 'Oqsuqtooq', 670, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10250, 'Pangnirtung', 670, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10251, 'Tununirusiq', 670, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10252, 'Acton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10253, 'Ajax', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10254, 'Alexandria', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10255, 'Alfred', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10256, 'Alliston', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10257, 'Almonte', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10258, 'Amherstburg', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10259, 'Amigo Beach', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10260, 'Angus-Borden', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10261, 'Arnprior', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10262, 'Arthur', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10263, 'Athens', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10264, 'Atikokan', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10265, 'Attawapiskat', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10266, 'Aurora', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10267, 'Aylmer', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10268, 'Ayr', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10269, 'Barrie', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10270, 'Barry\'s Bay', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10271, 'Beamsville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10272, 'Beaverton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10273, 'Beeton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10274, 'Belleville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10275, 'Belmont', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10276, 'Blenheim', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10277, 'Blind River', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10278, 'Bobcaygeon', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10279, 'Bolton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10280, 'Bourget', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10281, 'Bowmanville-Newcastle', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10282, 'Bracebridge', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10283, 'Bradford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10284, 'Brampton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10285, 'Brantford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10286, 'Bridgenorth-Chemong Park Area', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10287, 'Brighton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10288, 'Brockville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10289, 'Brooklin', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10290, 'Brussels', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10291, 'Burford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10292, 'Burlington', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10293, 'Caledon', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10294, 'Caledon East', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10295, 'Caledonia', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10296, 'Cambridge', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10297, 'Campbellford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10298, 'Campbellville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10299, 'Cannington', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10300, 'Capreol', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10301, 'Cardinal', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10302, 'Carleton Place', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10303, 'Carlisle', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10304, 'Casselman', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10305, 'Cayuga', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10306, 'Chalk River', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10307, 'Chapleau', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10308, 'Chatham', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10309, 'Chesley', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10310, 'Chesterville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10311, 'Clinton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10312, 'Cobourg', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10313, 'Cochrane', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10314, 'Colborne', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10315, 'Colchester', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10316, 'Collingwood', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10317, 'Concord', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10318, 'Constance Bay', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10319, 'Cookstown', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10320, 'Cornwall', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10321, 'Creemore', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10322, 'Crystal Beach', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10323, 'Deep River', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10324, 'Delhi', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10325, 'Deseronto', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10326, 'Downsview', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10327, 'Drayton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10328, 'Dresden', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10329, 'Dryden', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10330, 'Dundalk', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10331, 'Dunnville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10332, 'Durham', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10333, 'Dutton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10334, 'Eganville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10335, 'Elliot Lake', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10336, 'Elmira', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10337, 'Elmvale', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10338, 'Embrun', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10339, 'Englehart', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10340, 'Erin', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10341, 'Espanola', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10342, 'Essex', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10343, 'Etobicoke', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10344, 'Everett', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10345, 'Exeter', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10346, 'Fenelon Falls', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10347, 'Fergus', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10348, 'Forest', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10349, 'Fort Erie', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10350, 'Fort Frances', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10351, 'Frankford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10352, 'Gananoque', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10353, 'Georgetown', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10354, 'Georgina', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10355, 'Geraldton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10356, 'Glencoe', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10357, 'Goderich', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10358, 'Golden', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10359, 'Gormley', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10360, 'Grand Bend', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10361, 'Grand Valley', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10362, 'Gravenhurst', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10363, 'Guelph', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10364, 'Hagersville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10365, 'Haileybury', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10366, 'Hamilton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10367, 'Hanover', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10368, 'Harriston', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10369, 'Harrow', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10370, 'Hastings', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10371, 'Havelock', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10372, 'Hawkesbury', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10373, 'Hearst', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10374, 'Hensall', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10375, 'Hillsburgh', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10376, 'Hornepayne', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10377, 'Huntsville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10378, 'Ingersoll', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10379, 'Innisfil', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10380, 'Iroquois', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10381, 'Iroquois Falls', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10382, 'Jarvis', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10383, 'Kanata', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10384, 'Kapuskasing', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10385, 'Kars', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10386, 'Kemptville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10387, 'Kenora', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10388, 'Kincardine', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10389, 'Kingston', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10390, 'Kirkland Lake', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10391, 'Kitchener', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10392, 'L\'Original', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10393, 'Lakefield', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10394, 'Lanark', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10395, 'Leamington', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10396, 'Lindsay', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10397, 'Listowel', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10398, 'Little Current', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10399, 'Lively', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10400, 'London', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10401, 'Longlac', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10402, 'Lucan', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10403, 'Lucknow', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10404, 'Madoc', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10405, 'Manitouwadge', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10406, 'Maple', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10407, 'Marathon', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10408, 'Markdale', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10409, 'Markham', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10410, 'Marmora', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10411, 'Mattawa', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10412, 'Meaford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10413, 'Metcalfe', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10414, 'Midland', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10415, 'Mildmay', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10416, 'Millbrook', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10417, 'Milton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10418, 'Milverton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10419, 'Mississauga', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10420, 'Mississauga Beach', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10421, 'Mitchell', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10422, 'Moose Factory', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10423, 'Morrisburg', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10424, 'Mount Albert', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10425, 'Mount Brydges', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10426, 'Mount Forest', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10427, 'Munster', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10428, 'Nanticoke', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10429, 'Napanee', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10430, 'Nepean', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10431, 'New Hamburg', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10432, 'Newmarket', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10433, 'Newtonville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10434, 'Nobleton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10435, 'North Bay', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10436, 'North Gower', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10437, 'North York', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10438, 'Norwich', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10439, 'Norwood', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10440, 'Oakville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10441, 'Omemee', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10442, 'Onaping-Levack', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10443, 'Ontario', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10444, 'Orangeville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10445, 'Orillia', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10446, 'Orono', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10447, 'Osgoode', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10448, 'Oshawa', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10449, 'Ottawa', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10450, 'Owen Sound', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10451, 'Paisley', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10452, 'Palmerston', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10453, 'Paris', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10454, 'Parkhill', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10455, 'Parry Sound', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10456, 'Pembroke', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10457, 'Perth', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10458, 'Petawawa', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10459, 'Peterborough', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10460, 'Petrolia', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10461, 'Pickering', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10462, 'Picton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10463, 'Porcupine', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10464, 'Port Credit', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10465, 'Port Dover', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10466, 'Port Elgin', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10467, 'Port Hope', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10468, 'Port Perry', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10469, 'Port Stanley', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10470, 'Powassan', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10471, 'Prescott', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10472, 'Queensville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10473, 'Renfrew', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10474, 'Richmond', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10475, 'Richmond Hill', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10476, 'Ridgetown', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10477, 'Rockland', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10478, 'Rockwood', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10479, 'Rodney', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10480, 'Saint Catharines', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10481, 'Saint Catharines-Niagara', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10482, 'Saint George', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10483, 'Saint Jacobs', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10484, 'Saint Marys', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10485, 'Saint Thomas', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10486, 'Sarnia', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10487, 'Sault Sainte Marie', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10488, 'Scarborough', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10489, 'Schomberg', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10490, 'Seaforth', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10491, 'Shelburne', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10492, 'Simcoe', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10493, 'Sioux Lookout', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10494, 'Smiths Falls', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10495, 'Smithville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10496, 'South River', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10497, 'Southampton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10498, 'Stayner', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10499, 'Stirling', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10500, 'Stoney Creek', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10501, 'Stoney Point', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10502, 'Stouffville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10503, 'Stratford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10504, 'Strathroy', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10505, 'Sturgeon Falls', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10506, 'Sudbury', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10507, 'Sutton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10508, 'Tavistock', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10509, 'Teeswater', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10510, 'Terrace Bay', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10511, 'Thamesford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10512, 'Thessalon', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10513, 'Thornbury', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10514, 'Thornhill', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10515, 'Thunder Bay', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10516, 'Tilbury', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10517, 'Tilsonburg', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10518, 'Timmins', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10519, 'Toronto', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10520, 'Tory Hill', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10521, 'Tottenham', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10522, 'Tweed', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10523, 'Uxbridge', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10524, 'Valley East', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10525, 'Vankleek Hill', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10526, 'Vaughan', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10527, 'Vineland', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10528, 'Walkerton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10529, 'Wallaceburg', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10530, 'Wasaga Beach', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10531, 'Waterdown', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10532, 'Waterford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10533, 'Waterloo', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10534, 'Watford', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10535, 'Wawa', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10536, 'Welland', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10537, 'Wellesley', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10538, 'Wellington', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10539, 'West Lorne', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10540, 'Wheatley', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10541, 'Whitby', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10542, 'Whitchurch-Stouffville', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10543, 'Wiarton', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10544, 'Wikwemikong', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10545, 'Willowdale', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10546, 'Winchester', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10547, 'Windsor', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10548, 'Wingham', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10549, 'Woodbridge', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10550, 'Woodstock', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10551, 'Wyoming', 671, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10552, 'Acton Vale', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10553, 'Albanel', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10554, 'Alencon', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10555, 'Alma', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10556, 'Amos', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10557, 'Amqui', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10558, 'Anjou', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10559, 'Asbestos', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10560, 'Bagotville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10561, 'Baie-Comeau', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10562, 'Baie-Saint-Paul', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10563, 'Barraute', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10564, 'Beauceville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10565, 'Beaupre', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10566, 'Bedford', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10567, 'Beloeil', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10568, 'Bernierville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10569, 'Berthierville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10570, 'Betsiamites', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10571, 'Boisbriand', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10572, 'Bonaventure', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10573, 'Boucherville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10574, 'Bromont', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10575, 'Brossard', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10576, 'Brownsburg', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10577, 'Buckingham', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10578, 'Cabano', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10579, 'Candiac', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10580, 'Cap-Chat', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10581, 'Cap-aux-Meules', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10582, 'Carleton', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10583, 'Causapscal', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10584, 'Chandler', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10585, 'Chapais', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10586, 'Charlesbourg', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10587, 'Chateau-Richer', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10588, 'Chibougamou', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10589, 'Chicoutimi-Jonquiere', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10590, 'Chisasibi', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10591, 'Chute-aux-Outardes', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10592, 'Clermont', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10593, 'Coaticook', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10594, 'Coleraine', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10595, 'Contrecoeur', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10596, 'Cookshire', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10597, 'Cowansville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10598, 'Crabtree', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10599, 'Danville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10600, 'Daveluyville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10601, 'Degelis', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10602, 'Desbiens', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10603, 'Disraeli', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10604, 'Dolbeau', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10605, 'Donnacona', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10606, 'Dorval', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10607, 'Drummondville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10608, 'East Angus', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10609, 'East Broughton', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10610, 'Farnham', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10611, 'Ferme-Neuve', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10612, 'Fermont', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10613, 'Filion', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10614, 'Forestville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10615, 'Fort-Coulonge', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10616, 'Gaspe', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10617, 'Gentilly', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10618, 'Granby', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10619, 'Grande-Riviere', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10620, 'Grenville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10621, 'Ham Nord', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10622, 'Hampstead', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10623, 'Hauterive', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10624, 'Havre-Saint-Pierre', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10625, 'Hebertville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10626, 'Huntingdon', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10627, 'Joliette', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10628, 'Kingsey Falls', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10629, 'L\'Annonciation', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10630, 'L\'Ascension-de-Notre-Seigneur', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10631, 'L\'Epiphanie', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10632, 'La Malbaie', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10633, 'La Pocatiere', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10634, 'La Sarre', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10635, 'La Tuque', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10636, 'Labelle', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10637, 'Lac-Etchemin', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10638, 'Lac-Lapierre', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10639, 'Lac-Megantic', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10640, 'Lac-au-Saumon', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10641, 'Lachine', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10642, 'Lachute', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10643, 'Lacolle', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10644, 'Lasalle', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10645, 'Laurentides', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10646, 'Laurier-Station', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(10647, 'Laval', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10648, 'Lavaltrie', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10649, 'Le Bic', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10650, 'Lebel-sur-Quevillon', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10651, 'Les Cedres', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10652, 'Les Coteaux', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10653, 'Les Escoumins', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10654, 'Liniere', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10655, 'Longueuil', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10656, 'Louiseville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10657, 'Luceville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10658, 'Macamic', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10659, 'Magog', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10660, 'Malartic', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10661, 'Maniwaki', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10662, 'Marieville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10663, 'Maskinonge', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10664, 'Matagami', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10665, 'Matane', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10666, 'Metabetchouan', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10667, 'Mirabel', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10668, 'Mistissini', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10669, 'Mont-Joli', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10670, 'Mont-Laurier', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10671, 'Montmagny', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10672, 'Montreal', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10673, 'Murdochville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10674, 'Napierville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10675, 'New Richmond', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10676, 'Nicolet', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10677, 'Normandin', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10678, 'Notre-Dame-du-Bon-Conseil', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10679, 'Notre-Dame-du-Lac', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10680, 'Notre-Dame-du-Mont-Carmel', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10681, 'Oka-Kanesatake', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10682, 'Ormstown', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10683, 'Papineauville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10684, 'Pierreville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10685, 'Plessisville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10686, 'Pointe-Claire', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10687, 'Pont-Rouge', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10688, 'Port-Alfred-Bagotville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10689, 'Port-Cartier', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10690, 'Portneuf', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10691, 'Price', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10692, 'Princeville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10693, 'Quebec', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10694, 'Rawdon', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10695, 'Repentigny', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10696, 'Richmond', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10697, 'Rigaud', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10698, 'Rimouski', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10699, 'Riviere-au-Renard', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10700, 'Riviere-du-Loup', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10701, 'Roberval', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10702, 'Rougemont', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10703, 'Rouyn-Noranda', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10704, 'Saint-Agapit', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10705, 'Saint-Alexandre', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10706, 'Saint-Alexis-des-Monts', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10707, 'Saint-Ambroise', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10708, 'Saint-Andre-Avellin', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10709, 'Saint-Anselme', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10710, 'Saint-Apollinaire', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10711, 'Saint-Augustin', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10712, 'Saint-Basile-Sud', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10713, 'Saint-Bruno', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10714, 'Saint-Canut', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10715, 'Saint-Cesaire', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10716, 'Saint-Cyrill-de-Wendover', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10717, 'Saint-Damase', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10718, 'Saint-Damien-de-Buckland', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10719, 'Saint-Denis', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10720, 'Saint-Donat-de-Montcalm', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10721, 'Saint-Ephrem-de-Tring', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10722, 'Saint-Fabien', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10723, 'Saint-Felicien', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10724, 'Saint-Felix-de-Valois', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10725, 'Saint-Gabriel', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10726, 'Saint-Gedeon', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10727, 'Saint-Georges', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10728, 'Saint-Germain-de-Grantham', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10729, 'Saint-Gregoire', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10730, 'Saint-Henri-de-Levis', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10731, 'Saint-Honore', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10732, 'Saint-Hyacinthe', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10733, 'Saint-Jacques', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10734, 'Saint-Jean-Port-Joli', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10735, 'Saint-Jean-de-Dieu', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10736, 'Saint-Jean-sur-Richelieu', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10737, 'Saint-Jerome', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10738, 'Saint-Josephe-de-Beauce', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10739, 'Saint-Josephe-de-Lanoraie', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10740, 'Saint-Josephe-de-la-Riviere-Bl', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10741, 'Saint-Jovite', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10742, 'Saint-Laurent', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10743, 'Saint-Liboire', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10744, 'Saint-Marc-des-Carrieres', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10745, 'Saint-Martin', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10746, 'Saint-Michel-des-Saints', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10747, 'Saint-Pacome', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10748, 'Saint-Pascal', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10749, 'Saint-Pie', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10750, 'Saint-Prosper', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10751, 'Saint-Raphael', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10752, 'Saint-Raymond', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10753, 'Saint-Remi', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10754, 'Saint-Roch-de-l\'Achigan', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10755, 'Saint-Sauveur-des-Monts', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10756, 'Saint-Tite', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10757, 'Sainte-Adele', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10758, 'Sainte-Agathe-des-Monts', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10759, 'Sainte-Anne-des-Monts', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10760, 'Sainte-Anne-des-Plaines', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10761, 'Sainte-Catherine', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10762, 'Sainte-Claire', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10763, 'Sainte-Julienne', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10764, 'Sainte-Justine', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10765, 'Sainte-Madeleine', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10766, 'Sainte-Marie', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10767, 'Sainte-Martine', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10768, 'Sainte-Sophie', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10769, 'Sainte-Thecle', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10770, 'Sainte-Therese', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10771, 'Salaberry-de-Valleyfield', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10772, 'Sayabec', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10773, 'Senneterre', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10774, 'Sept-Iles', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10775, 'Shawinigan', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10776, 'Shawville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10777, 'Sherbrooke', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10778, 'Sorel', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10779, 'St Faustin', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10780, 'St. Hubert', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10781, 'St. Jean Chrysostome', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10782, 'Temiscaming', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10783, 'Terrebonne', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10784, 'Thetford Mines', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10785, 'Thurso', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10786, 'Trois-Pistoles', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10787, 'Trois-Rivieres', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10788, 'Val-David', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10789, 'Val-d\'Or', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10790, 'Valcourt', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10791, 'Vallee-Jonction', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10792, 'Vaudreuil', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10793, 'Vercheres', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10794, 'Victoriaville', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10795, 'Ville-Marie', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10796, 'Warwick', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10797, 'Waterloo', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10798, 'Weedon Centre', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10799, 'Westmount', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10800, 'Wickham', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10801, 'Windsor', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10802, 'Yamachiche', 673, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10803, 'Assiniboia', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10804, 'Biggar', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10805, 'Canora', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10806, 'Carlyle', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10807, 'Carnduff', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10808, 'Caronport', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10809, 'Carrot', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10810, 'Dalmeny', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10811, 'Davidson', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10812, 'Esterhazy', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10813, 'Estevan', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10814, 'Eston', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10815, 'Foam Lake', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10816, 'Fort Qu\'Appelle', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10817, 'Gravelbourg', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10818, 'Grenfell', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10819, 'Gull Lake', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10820, 'Hudson Bay', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10821, 'Humboldt', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10822, 'Indian Head', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10823, 'Kamsack', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10824, 'Kelvington', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10825, 'Kerrobert', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10826, 'Kindersley', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10827, 'Kipling', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10828, 'La Ronge', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10829, 'Langenburg', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10830, 'Langham', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10831, 'Lanigan', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10832, 'Lloydminster', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10833, 'Lumsden', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10834, 'Macklin', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10835, 'Maple Creek', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10836, 'Martensville', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10837, 'Meadow Lake', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10838, 'Melfort', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10839, 'Melville', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10840, 'Moose Jaw', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10841, 'Moosomin', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10842, 'Nipawin', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10843, 'North Battleford', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10844, 'Outlook', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10845, 'Oxbow', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10846, 'Pilot Butte', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10847, 'Preeceville', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10848, 'Prince Albert', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10849, 'Regina', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10850, 'Rosetown', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10851, 'Rosthem', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10852, 'Saskatoon', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10853, 'Shaunavon', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10854, 'Shellbrook', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10855, 'Swift Current', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10856, 'Tisdale', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10857, 'Unity', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10858, 'Wadena', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10859, 'Warman', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10860, 'Watrous', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10861, 'Weyburn', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10862, 'White City', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10863, 'Wilkie', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10864, 'Wynyard', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10865, 'Yorkton', 674, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10866, 'Haines Junction', 675, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10867, 'Mayo', 675, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10868, 'Whitehorse', 675, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10869, 'Sal Rei', 676, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10870, 'Nova Sintra', 677, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10871, 'Mosteiros', 678, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10872, 'Sao Filipe', 678, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10873, 'Vila do Maio', 679, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10874, 'Santa Maria', 680, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10875, 'Ndele', 686, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10876, 'Bangui', 687, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10877, 'Alindao', 688, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10878, 'Kembe', 688, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10879, 'Mobaye', 688, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10880, 'Obo', 689, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10881, 'Zemio', 689, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10882, 'Bria', 690, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10883, 'Ouadda', 690, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10884, 'Dekoa', 691, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10885, 'Sibut', 691, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10886, 'Boda', 692, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10887, 'Mbaiki', 692, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10888, 'Mongoumba', 692, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10889, 'Berberati', 693, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10890, 'Carnot', 693, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10891, 'Gamboula', 693, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10892, 'Bangassou', 694, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10893, 'Gambo', 694, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10894, 'Ouango', 694, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10895, 'Rafai', 694, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10896, 'Kaga-Bandoro', 695, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10897, 'Baboua', 696, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10898, 'Baoro', 696, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10899, 'Bouar', 696, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10900, 'Bambari', 698, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10901, 'Grimari', 698, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10902, 'Ippy', 698, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10903, 'Kouango', 698, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10904, 'Batangafo', 699, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10905, 'Bossangoa', 699, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10906, 'Bouca', 699, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10907, 'Kabo', 699, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10908, 'Bocaranga', 700, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10909, 'Bozoum', 700, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10910, 'Paoua', 700, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10911, 'Nola', 701, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10912, 'Birao', 702, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10913, 'Ati', 703, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10914, 'Oum Hadjer', 703, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10915, 'Biltine', 704, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10916, 'Aouzou', 705, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10917, 'Bardai', 705, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10918, 'Fada', 705, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10919, 'Faya', 705, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10920, 'Bokoro', 706, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10921, 'Bousso', 706, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10922, 'Dourbali', 706, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10923, 'Massaguet', 706, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10924, 'Massakory', 706, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10925, 'Massenya', 706, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10926, 'N\'Djamena', 706, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10927, 'Ngama', 706, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10928, 'Bitkine', 707, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10929, 'Melfi', 707, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10930, 'Mongo', 707, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10931, 'Mao', 708, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10932, 'Moussoro', 708, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10933, 'Rig-Rig', 708, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10934, 'Bol', 709, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10935, 'Bongor', 712, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10936, 'Fianga', 712, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10937, 'Gounou Gaya', 712, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10938, 'Guelengdeng', 712, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10939, 'Lere', 712, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10940, 'Pala', 712, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10941, 'Goundi', 713, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10942, 'Koumra', 713, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10943, 'Kyabe', 713, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10944, 'Moissala', 713, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10945, 'Sarh', 713, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10946, 'Abeche', 714, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10947, 'Adre', 714, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10948, 'Am Dam', 714, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10949, 'Abou Deia', 715, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10950, 'Am Timan', 715, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10951, 'Mangueigne', 715, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10952, 'Benoy', 716, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10953, 'Bere', 716, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10954, 'Kelo', 716, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10955, 'Lai', 716, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10956, 'Aisen', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10957, 'Chile Chico', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10958, 'Cisnes', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10959, 'Cochrane', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10960, 'Coihaique', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10961, 'Guaitecas', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10962, 'Lago Verde', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10963, 'O\'Higgins', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10964, 'Rio Ibanez', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10965, 'Tortel', 717, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10966, 'Antofagasta', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10967, 'Calama', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10968, 'Maria Elena', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10969, 'Mejilones', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10970, 'Ollague', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10971, 'San Pedro de Atacama', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10972, 'Sierra Gorda', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10973, 'Taltal', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10974, 'Tocopilla', 718, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10975, 'Angol', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10976, 'Carahue', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10977, 'Collipulli', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10978, 'Cunco', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10979, 'Curacautin', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10980, 'Curarrehue', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10981, 'Ercilla', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10982, 'Freire', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10983, 'Galvarino', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10984, 'Gorbea', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10985, 'Lautaro', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10986, 'Loncoche', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10987, 'Lonquimay', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10988, 'Los Sauces', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10989, 'Lumaco', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10990, 'Melipeuco', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10991, 'Nueva Imperial', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10992, 'Padre las Casas', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10993, 'Perquenco', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10994, 'Pitrufquen', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10995, 'Pucon', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10996, 'Puren', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10997, 'Renaico', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10998, 'Saavedra', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(10999, 'Temuco', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11000, 'Teodoro Schmidt', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11001, 'Tolten', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11002, 'Traiguen', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11003, 'Victoria', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11004, 'Vilcun', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11005, 'Villarica', 719, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11006, 'Alto del Carmen', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11007, 'Caldera', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11008, 'Chanaral', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11009, 'Copiapo', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11010, 'Diego de Almagro', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11011, 'Freirina', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11012, 'Huasco', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11013, 'Tierra Amarilla', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11014, 'Vallenar', 720, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11015, 'Andacollo', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11016, 'Canela', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11017, 'Combarbala', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11018, 'Coquimbo', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11019, 'Illapel', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11020, 'La Higuera', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11021, 'La Serena', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11022, 'Los Vilos', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11023, 'Monte Patria', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11024, 'Ovalle', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11025, 'Paiguano', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11026, 'Punitaci', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11027, 'Rio Hurtado', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11028, 'Salamanca', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11029, 'Vicuna', 722, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11030, 'Cabo de Horno', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11031, 'Laguna Blanca', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11032, 'Natales', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11033, 'Porvenir', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11034, 'Primavera', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11035, 'Punta Arenas', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11036, 'Rio Verde', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11037, 'San Gregorio', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11038, 'Timaukel', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11039, 'Torres del Paine', 725, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11040, 'Cauquenes', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11041, 'Chanco', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11042, 'Colbun', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11043, 'Constitucion', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11044, 'Curepto', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11045, 'Curico', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11046, 'Empedrado', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11047, 'Hualane', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11048, 'Licanten', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11049, 'Linares', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11050, 'Longavi', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11051, 'Maule', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11052, 'Molina', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11053, 'Parral', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11054, 'Pelarco', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11055, 'Pelluhue', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11056, 'Pencahue', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11057, 'Rauco', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11058, 'Retiro', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11059, 'Rio Claro', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11060, 'Romeral', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11061, 'Sagrada Familia', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11062, 'San Clemente', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11063, 'San Javier', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11064, 'San Rafael', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11065, 'Talca', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11066, 'Teno', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11067, 'Vichuquen', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11068, 'Villa Alegre', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11069, 'Yerbas Buenas', 726, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11070, 'Alhue', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11071, 'Buin', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11072, 'Calera de Tango', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11073, 'Colina', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11074, 'Curacavi', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11075, 'El Monte', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11076, 'Isla de Maipo', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11077, 'Lampa', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11078, 'Maria Pinto', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11079, 'Melipilla', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11080, 'Padre Hurtado', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11081, 'Paine', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11082, 'Penaflor', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11083, 'Pirque', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11084, 'Puente Alto', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11085, 'Quilicura', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11086, 'San Bernardo', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11087, 'San Jose de Maipo', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11088, 'San Pedro', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11089, 'Santiago', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11090, 'Talagante', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11091, 'Tiltil', 727, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11092, 'Alhue', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11093, 'Buin', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11094, 'Calera de Tango', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11095, 'Colina', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11096, 'Curacavi', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11097, 'El Monte', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11098, 'Isla de Maipo', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11099, 'Lampa', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11100, 'Maria Pinto', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11101, 'Melipilla', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11102, 'Padre Hurtado', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11103, 'Paine', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11104, 'Penaflor', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11105, 'Pirque', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11106, 'Puente Alto', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11107, 'Quilicura', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11108, 'San Bernardo', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11109, 'San Jose de Maipo', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11110, 'San Pedro', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11111, 'Santiago', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11112, 'Talagante', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11113, 'Tiltil', 728, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11114, 'Arica', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11115, 'Camarones', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11116, 'Camina', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11117, 'Colchane', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11118, 'General Lagos', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11119, 'Huara', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11120, 'Iquique', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11121, 'Pica', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11122, 'Pozo Almonte', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11123, 'Putre', 729, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11124, 'Algarrobo', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11125, 'Cabildo', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11126, 'Calera', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11127, 'Calle Larga', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11128, 'Cartagena', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11129, 'Casablanca', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11130, 'Catemu', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11131, 'Concon', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11132, 'El Quisco', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11133, 'El Tabo', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11134, 'Hijuelas', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11135, 'La Cruz', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11136, 'La Ligua', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11137, 'Limache', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11138, 'Llaillay', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11139, 'Los Andes', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11140, 'Nogales', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11141, 'Olmue', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11142, 'Panquehue', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11143, 'Papudo', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11144, 'Petorca', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11145, 'Puchuncavi', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11146, 'Putaendeo', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11147, 'Quillota', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11148, 'Quilpue', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11149, 'Quintero', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11150, 'Rinconada', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11151, 'San Antonio', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11152, 'San Esteban', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11153, 'San Felipe', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11154, 'Santa Maria', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11155, 'Santo Domingo', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11156, 'Valparaiso', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11157, 'Villa Alemana', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11158, 'Vina del Mar', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11159, 'Zapallar', 730, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11160, 'Fengyang', 731, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11161, 'Guangde', 731, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11162, 'Liuan', 731, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11163, 'Ningguo', 731, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11164, 'Shucheng', 731, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11165, 'Xinchang', 731, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11166, 'Xuancheng', 731, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11181, 'Aomen', 734, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11182, 'Beijing', 735, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11183, 'Changping', 735, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11184, 'Fangshan', 735, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11185, 'Huangcun', 735, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11186, 'Liangxiang', 735, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11187, 'Mentougou', 735, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11188, 'Shunyi', 735, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11189, 'Tongzhou', 735, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11190, 'Beijing', 736, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11191, 'Changping', 736, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11192, 'Fangshan', 736, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11193, 'Huangcun', 736, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11194, 'Liangxiang', 736, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11195, 'Mentougou', 736, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11196, 'Shunyi', 736, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11197, 'Tongzhou', 736, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11198, 'Beibei', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11199, 'Chongqing', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11200, 'Fuling', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11201, 'Longhua', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11202, 'Nantongkuang', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11203, 'Wanxian', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11204, 'Xiuma', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11205, 'Yubei', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11206, 'Yudong', 737, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11207, 'Bantou', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11208, 'Dongshan', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11209, 'Fuan', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11210, 'Fujian', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11211, 'Fuqing', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11212, 'Fuzhou', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11213, 'Gantou', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11214, 'Hanyang', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11215, 'Jiangkou', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11216, 'Jiaocheng', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11217, 'Jinjiang', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11218, 'Jinshang', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11219, 'Longhai', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11220, 'Longyan', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11221, 'Luoyang', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11222, 'Nanan', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11223, 'Nanping', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11224, 'Nanpu', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11225, 'Putian', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11226, 'Qingyang', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11227, 'Quanzhou', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11228, 'Rongcheng', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11229, 'Sanming', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11230, 'Shaowu', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11231, 'Shima', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11232, 'Shishi', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11233, 'Tantou', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11234, 'Tongshan', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11235, 'Xiamen', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11236, 'Xiapu', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11237, 'Xiapu Ningde', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(11238, 'Ximei', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11239, 'Yongan', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11240, 'Zhangzhou', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11241, 'Zhicheng', 738, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11277, 'Baiyin', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11278, 'Baoji', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11279, 'Beidao', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11280, 'Jiayuguan', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11281, 'Jinchang', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11282, 'Jiuquan', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11283, 'Lanzhou', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11284, 'Linxia', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11285, 'Pingliang', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11286, 'Qincheng', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11287, 'Wuwei', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11288, 'Yaojie', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11289, 'Yumen', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11290, 'Zhangye', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11291, 'Zhuanglang', 740, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11292, 'Anbu', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11293, 'Chaozhou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11294, 'Chenghai', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11295, 'Chuncheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11296, 'Daliang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11297, 'Danshui', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11298, 'Dongguan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11299, 'Donghai', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11300, 'Dongli', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11301, 'Dongzhen', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11302, 'Ducheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11303, 'Encheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11304, 'Foahn', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11305, 'Foshan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11306, 'Gaozhou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11307, 'Guangdong', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11308, 'Guangzhou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11309, 'Guanjiao', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11310, 'Haicheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11311, 'Haimen', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11312, 'Hepo', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11313, 'Houpu', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11314, 'Huaicheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11315, 'Huanggang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11316, 'Huangpu', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11317, 'Huazhou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11318, 'Huicheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11319, 'Huizhou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11320, 'Humen', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11321, 'Jiangmen', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11322, 'Jiazi', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11323, 'Jieshi', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11324, 'Jieyang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11325, 'Lecheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11326, 'Leicheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11327, 'Liancheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11328, 'Lianzhou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11329, 'Licheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11330, 'Liusha', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11331, 'Longgang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11332, 'Lubu', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11333, 'Luocheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11334, 'Luohu', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11335, 'Luoyang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11336, 'Maba', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11337, 'Maoming', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11338, 'Mata', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11339, 'Meilu', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11340, 'Meizhou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11341, 'Mianchang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11342, 'Nanfeng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11343, 'Nanhai', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11344, 'Pingshan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11345, 'Qingtang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11346, 'Qingyuan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11347, 'Rongcheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11348, 'Sanbu', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11349, 'Shantou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11350, 'Shanwei', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11351, 'Shaoguan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11352, 'Shaping', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11353, 'Shenzhen', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11354, 'Shilong', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11355, 'Shiqiao', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11356, 'Shiwan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11357, 'Shuizhai', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11358, 'Shunde', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11359, 'Suicheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11360, 'Taicheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11361, 'Tangping', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11362, 'Xiaolan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11363, 'Xinan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11364, 'Xingcheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11365, 'Xiongzhou', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11366, 'Xucheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11367, 'Yangjiang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11368, 'Yingcheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11369, 'Yuancheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11370, 'Yuncheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11371, 'Yunfu', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11372, 'Zengcheng', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11373, 'Zhanjiang', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11374, 'Zhaoqing', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11375, 'Zhilong', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11376, 'Zhongshan', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11377, 'Zhuhai', 741, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11464, 'Babu', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11465, 'Baihe', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11466, 'Baise', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11467, 'Beihai', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11468, 'Binzhou', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11469, 'Bose', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11470, 'Fangchenggang', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11471, 'Guicheng', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11472, 'Guilin', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11473, 'Guiping', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11474, 'Jinchengjiang', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11475, 'Jinji', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11476, 'Laibin', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11477, 'Lianzhou', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11478, 'Liuzhou', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11479, 'Luorong', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11480, 'Matong', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11481, 'Nandu', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11482, 'Nanning', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11483, 'Pingnan', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11484, 'Pumiao', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11485, 'Qinzhou', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11486, 'Songhua', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11487, 'Wuzhou', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11488, 'Yashan', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11489, 'Yulin', 743, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11490, 'Anshun', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11491, 'Bijie', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11492, 'Caohai', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11493, 'Duyun', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11494, 'Guiyang', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11495, 'Kaili', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11496, 'Liupanshui', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11497, 'Luoyang', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11498, 'Pingzhai', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11499, 'Tongren', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11500, 'Tongzi', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11501, 'Xiaoweizhai', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11502, 'Xingyi', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11503, 'Zunyi', 744, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11504, 'Chengmai', 745, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11505, 'Dingan', 745, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11506, 'Haikou', 745, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11507, 'Lingao', 745, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11508, 'Qiongshan', 745, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11509, 'Sansha ', 745, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11510, 'Sanya', 745, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11511, 'Wanning', 745, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11512, 'Anping', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11513, 'Baoding', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11514, 'Botou', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11515, 'Cangzhou', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11516, 'Changli', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11517, 'Chengde', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11518, 'Dingzhou', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11519, 'Fengfeng', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11520, 'Fengrun', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11521, 'Guye', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11522, 'Handan', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11523, 'Hebei', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11524, 'Hecun', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11525, 'Hejian', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11526, 'Hengshui', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11527, 'Huanghua', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11528, 'Jingxingkuang', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11529, 'Jinzhou', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11530, 'Langfang', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11531, 'Lianzhou', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11532, 'Linshui', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11533, 'Linxi', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11534, 'Longyao County', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11535, 'Nangong', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11536, 'Pengcheng', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11537, 'Qinhuangdao', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11538, 'Renqiu', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11539, 'Shahe', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11540, 'Shijiazhuang', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11541, 'Tangjiazhuang', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11542, 'Tangshan', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11543, 'Wuan', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11544, 'Xian County', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11545, 'Xingtai', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11546, 'Xinji', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11547, 'Xinle', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11548, 'Xuanhua', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11549, 'Zhangjiakou', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11550, 'Zhaogezhuang', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11551, 'Zhuozhou', 746, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11552, 'Acheng', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11553, 'Anda', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11554, 'Angangxi', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11555, 'Baiquan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11556, 'Bamiantong', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11557, 'Baoqing', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11558, 'Baoshan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11559, 'Bayan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11560, 'Beian', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11561, 'Binzhou', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11562, 'Boli', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11563, 'Chaihe', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11564, 'Chengzihe', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11565, 'Cuiluan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11566, 'Daqing', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11567, 'Didao', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11568, 'Dongning', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11569, 'Fujin', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11570, 'Fuli', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11571, 'Fulitun', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11572, 'Fuyu', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11573, 'Gannan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11574, 'Hailin', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11575, 'Hailun', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11576, 'Harbin', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11577, 'Hegang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11578, 'Heihe', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11579, 'Hengshan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11580, 'Honggang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11581, 'Huanan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11582, 'Hulan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11583, 'Hulan Ergi', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11584, 'Jiamusi', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11585, 'Jidong', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11586, 'Jixi', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11587, 'Keshan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11588, 'Langxiang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11589, 'Lanxi', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11590, 'Lingdong', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11591, 'Linkou', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11592, 'Lishu', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11593, 'Longfeng', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11594, 'Longjiang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11595, 'Mingshui', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11596, 'Mishan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11597, 'Mudanjiang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11598, 'Nancha', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11599, 'Nehe', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11600, 'Nenjiang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11601, 'Nianzishan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11602, 'Ningan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11603, 'Qingan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11604, 'Qinggang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11605, 'Qiqihar', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11606, 'Qitaihe', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11607, 'Ranghulu', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11608, 'Saertu', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11609, 'Shangzhi', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11610, 'Shanhetun', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11611, 'Shuangcheng', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11612, 'Shuangyashan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11613, 'Sifantan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11614, 'Suifenhe', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11615, 'Suihua', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11616, 'Suileng', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11617, 'Tahe', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11618, 'Taikang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11619, 'Tailai', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11620, 'Tieli', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11621, 'Wangkui', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11622, 'Weihe', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11623, 'Wuchang', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11624, 'Xinglongzhen', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11625, 'Xinqing', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11626, 'Yian', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11627, 'Yichun', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11628, 'Yilan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11629, 'Youhao', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11630, 'Zhaodong', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11631, 'Zhaoyuan', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11632, 'Zhaozhou', 747, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11633, 'Anyang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11634, 'Changying', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11635, 'Dancheng', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11636, 'Daokou', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11637, 'Dengzhou', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11638, 'Gongyi', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11639, 'Gushi', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11640, 'Hebi', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11641, 'Huaidian', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11642, 'Huangchuan', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11643, 'Huangzhai', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11644, 'Jiaozuo', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11645, 'Jishui', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11646, 'Kaifeng', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11647, 'Liupen', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11648, 'Luohe', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11649, 'Luoyang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11650, 'Luyang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11651, 'Mengzhou', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11652, 'Minggang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11653, 'Nandun', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11654, 'Nanyang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11655, 'Pingdingshan', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11656, 'Puyang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11657, 'Sanmenxia', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11658, 'Shangqiu', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11659, 'Tanghe', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11660, 'Xiaoyi', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11661, 'Xihua', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11662, 'Xinxiang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11663, 'Xinyang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11664, 'Xinye', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11665, 'Xixiang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11666, 'Xuanwu', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11667, 'Xuchang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11668, 'Yigou', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11669, 'Yima', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11670, 'Yinzhuang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11671, 'Yunyang', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11672, 'Yuzhou', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11673, 'Zhecheng', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11674, 'Zhengzhou', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11675, 'Zhenping', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11676, 'Zhoukou', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11677, 'Zhumadian', 748, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11678, 'Anlu', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11679, 'Baisha', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11680, 'Buhe', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11681, 'Caidian', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11682, 'Caohe', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11683, 'Danjiangkou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11684, 'Daye', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11685, 'Duobao', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11686, 'Enshi', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11687, 'Ezhou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11688, 'Fengkou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11689, 'Guangshui', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11690, 'Gucheng', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11691, 'Hanchuan', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11692, 'Hongan', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11693, 'Honghu', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11694, 'Huangmei', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11695, 'Huangpi', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11696, 'Huangshi', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11697, 'Huangzhou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11698, 'Jingmen', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11699, 'Jingzhou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11700, 'Laohekou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11701, 'Lichuan', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11702, 'Macheng', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11703, 'Nanhai', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11704, 'Nanzhang', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11705, 'Puqi', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11706, 'Qianjiang', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11707, 'Qingquan', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11708, 'Qixingtai', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11709, 'Rongcheng', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11710, 'Shashi', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11711, 'Shishou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11712, 'Shiyan', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11713, 'Suizhou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11714, 'Tianmen', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11715, 'Tongcheng', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11716, 'Wuhan', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11717, 'Wuxue', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11718, 'Xiangfan', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11719, 'Xianning', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11720, 'Xiantao', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11721, 'Xiaogan', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11722, 'Xiaoxita', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11723, 'Xiaxindian', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11724, 'Xihe', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11725, 'Xinpu', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11726, 'Xinshi', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11727, 'Xinzhou', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11728, 'Yichang', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11729, 'Yicheng', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11730, 'Yingcheng', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11731, 'Yingzhong', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11732, 'Zaoyang', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11733, 'Zhengchang', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11734, 'Zhicheng', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11735, 'Zhifang', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11736, 'Zhongxiang', 749, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11737, 'Anjiang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11738, 'Anxiang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11739, 'Changde', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11740, 'Changsha', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11741, 'Chenzhou', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11742, 'Dayong', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11743, 'Hengyang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11744, 'Hongjiang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11745, 'Huaihua', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11746, 'Jinshi', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11747, 'Jishou', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11748, 'Leiyang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11749, 'Lengshuijiang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11750, 'Lengshuitan', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11751, 'Lianyuan', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11752, 'Liling', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11753, 'Liuyang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11754, 'Loudi', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11755, 'Matian', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11756, 'Nanzhou', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11757, 'Ningxiang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11758, 'Qidong', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11759, 'Qiyang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11760, 'Shaoyang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11761, 'Xiangtan', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11762, 'Xiangxiang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11763, 'Xiangyin', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11764, 'Xinhua', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11765, 'Yiyang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11766, 'Yongfeng', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11767, 'Yongzhou', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11768, 'Yuanjiang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11769, 'Yueyang', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11770, 'Zhuzhou', 750, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11771, 'Baoying', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11772, 'Changzhou', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11773, 'Dachang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11774, 'Dafeng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11775, 'Danyang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11776, 'Dingshu', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11777, 'Dongkan', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11778, 'Dongtai', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11779, 'Fengxian', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11780, 'Gaogou', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11781, 'Gaoyou', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11782, 'Guiren', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11783, 'Haian', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11784, 'Haizhou', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11785, 'Hede', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11786, 'Huaicheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11787, 'Huaiyin', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11788, 'Huilong', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11789, 'Hutang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11790, 'Jiangdu', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11791, 'Jiangyan', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11792, 'Jiangyin', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11793, 'Jiangyuan', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11794, 'Jianhu', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11795, 'Jingcheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11796, 'Jinsha', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11797, 'Jintan', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11798, 'Juegang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11799, 'Jurong', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11800, 'Kunshan', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11801, 'Lianyungang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11802, 'Liucheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11803, 'Liyang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11804, 'Luodu', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11805, 'Mudu', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11806, 'Nanjing', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11807, 'Nantong', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11808, 'Pecheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11809, 'Pukou', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11810, 'Qidong', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11811, 'Qinnan', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11812, 'Qixia', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11813, 'Rucheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11814, 'Songling', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11815, 'Sucheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11816, 'Suicheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11817, 'Suqian', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11818, 'Suzhou', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11819, 'Taicang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11820, 'Taixing', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11821, 'Wujiang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11822, 'Wuxi', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11823, 'Xiaolingwei', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11824, 'Xiaoshi', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11825, 'Xinan', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11826, 'Xinpu', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11827, 'Xuzhou', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11828, 'Yancheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11829, 'Yangshe', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11830, 'Yangzhou', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11831, 'Yizheng', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11832, 'Yunhe', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11833, 'Yunyang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11834, 'Yushan', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11835, 'Zhangjiagang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11836, 'Zhangjiangang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11837, 'Zhaoyang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11838, 'Zhenjiang', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11839, 'Zhongxing', 751, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11909, 'Fengxin', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11910, 'Fenyi', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11911, 'Ganzhou', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11912, 'Jian', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11913, 'Jiangguang', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11914, 'Jingdezhen', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11915, 'Jiujiang', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11916, 'Leping', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11917, 'Linchuan', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11918, 'Nanchang', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11919, 'Pingxiang', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11920, 'Poyang', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11921, 'Shangrao', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11922, 'Xiangdong', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11923, 'Xingan', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11924, 'Xinjian', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11925, 'Xinyu', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11926, 'Xiongshi', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11927, 'Yichun', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11928, 'Yingtai', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11929, 'Yingtan', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11930, 'Zhangshui', 753, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11931, 'Badaojiang', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11932, 'Baicheng', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11933, 'Baishishan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11934, 'Changchun', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11935, 'Changling', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11936, 'Chaoyang', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11937, 'Daan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11938, 'Dashitou', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11939, 'Dehui', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11940, 'Dongchang', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11941, 'Dongfeng', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11942, 'Dunhua', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11943, 'Erdaojiang', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11944, 'Fuyu', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11945, 'Gongzhuling', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11946, 'Helong', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11947, 'Hongmei', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11948, 'Huadian', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11949, 'Huangnihe', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11950, 'Huinan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11951, 'Hunchun', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11952, 'Jiaohe', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11953, 'Jilin', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11954, 'Jishu', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11955, 'Jiutai', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11956, 'Kaitong', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11957, 'Kouqian', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11958, 'Liaoyuan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11959, 'Linjiang', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11960, 'Lishu', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11961, 'Liuhe', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11962, 'Longjing', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11963, 'Meihekou', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11964, 'Mingyue', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11965, 'Nongan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11966, 'Panshi', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11967, 'Pizhou', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11968, 'Qianan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11969, 'Qianguo', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11970, 'Sanchazi', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11971, 'Shuangyang', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11972, 'Shulan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11973, 'Siping', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11974, 'Songjianghe', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11975, 'Taonan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11976, 'Tumen', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11977, 'Wangou', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11978, 'Wangqing', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11979, 'Xinglongshan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11980, 'Yanji', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11981, 'Yantongshan', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11982, 'Yushu', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11983, 'Zhengjiatun', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11984, 'Zhenlai', 754, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11985, 'Anshan', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11986, 'Beipiao', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11987, 'Benxi', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11988, 'Changtu', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11989, 'Chaoyang', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11990, 'Dalian', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11991, 'Dalianwan', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11992, 'Dalinghe', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11993, 'Dandong', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11994, 'Dashiqiao', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11995, 'Dongling', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11996, 'Fengcheng', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11997, 'Fushun', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11998, 'Fuxin', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(11999, 'Haicheng', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12000, 'Heishan', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12001, 'Huanren', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12002, 'Huludao', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12003, 'Hushitai', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12004, 'Jinxi', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12005, 'Jinzhou', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12006, 'Jiupu', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12007, 'Kaiyuan', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12008, 'Kuandian', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12009, 'Langtou', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12010, 'Liaoyang', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12011, 'Liaozhong', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12012, 'Lingyuan', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12013, 'Liuerbao', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12014, 'Lushunkou', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12015, 'Nantai', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12016, 'Panjin', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12017, 'Pulandian', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12018, 'Shenyang', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12019, 'Sujiatun', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12020, 'Tieling', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(12021, 'Wafangdian', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12022, 'Xiaoshi', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12023, 'Xifeng', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12024, 'Xinchengxi', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12025, 'Xingcheng', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12026, 'Xinmin', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12027, 'Xiongyue', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12028, 'Xiuyan', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12029, 'Yebaishou', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12030, 'Yingkou', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12031, 'Yuhong', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12032, 'Zhuanghe', 755, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12081, 'Qiatou', 759, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12082, 'Xining', 759, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12083, 'Ankang', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12084, 'Baoji', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12085, 'Guozhen', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12086, 'Hancheng', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12087, 'Hanzhong', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12088, 'Lishan', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12089, 'Qili', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12090, 'Tongchuan', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12091, 'Weinan', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12092, 'Xian', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12093, 'Xianyang', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12094, 'Yanan', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12095, 'Yanliang', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12096, 'Yulin', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12097, 'Yuxia', 760, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12098, 'Anqiu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12099, 'Bianzhuang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12100, 'Binzhou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12101, 'Boshan', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12102, 'Boxing County', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12103, 'Caocheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12104, 'Changqing', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12105, 'Chengyang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12106, 'Dengzhou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12107, 'Dezhou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12108, 'Dingtao', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12109, 'Dongcun', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12110, 'Dongdu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12111, 'Donge County', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12112, 'Dongying', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12113, 'Feicheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12114, 'Fushan', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12115, 'Gaomi', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12116, 'Haiyang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12117, 'Hanting', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12118, 'Hekou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12119, 'Heze', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12120, 'Jiaonan', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12121, 'Jiaozhou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12122, 'Jiehu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12123, 'Jimo', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12124, 'Jinan', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12125, 'Jining', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12126, 'Juxian', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12127, 'Juye', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12128, 'Kunlun', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12129, 'Laiwu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12130, 'Laiyang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12131, 'Laizhou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12132, 'Leling', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12133, 'Liaocheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12134, 'Licung', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12135, 'Linqing', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12136, 'Linqu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12137, 'Linshu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12138, 'Linyi', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12139, 'Longkou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12140, 'Mengyin', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12141, 'Mingshui', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12142, 'Nanchou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12143, 'Nanding', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12144, 'Nanma', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12145, 'Ninghai', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12146, 'Ningyang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12147, 'Pingdu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12148, 'Pingyi', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12149, 'Pingyin', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12150, 'Qingdao', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12151, 'Qingzhou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12152, 'Qixia', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12153, 'Qufu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12154, 'Rizhao', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12155, 'Rongcheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12156, 'Shancheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12157, 'Shanting', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12158, 'Shengzhuang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12159, 'Shenxian', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12160, 'Shizilu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12161, 'Shouguang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12162, 'Shuiji', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12163, 'Sishui', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12164, 'Suozhen', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12165, 'Taian', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12166, 'Tancheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12167, 'Taozhuang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12168, 'Tengzhou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12169, 'Weifang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12170, 'Weihai', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12171, 'Wencheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12172, 'Wendeng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12173, 'Wenshang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12174, 'Wudi', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12175, 'Xiazhen', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12176, 'Xincheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12177, 'Xindian', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12178, 'Xintai', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12179, 'Yanggu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12180, 'Yangshan', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12181, 'Yantai', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12182, 'Yanzhou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12183, 'Yatou', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12184, 'Yidu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12185, 'Yishui', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12186, 'Yucheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12187, 'Yuncheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12188, 'Zaozhuang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12189, 'Zhangdian', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12190, 'Zhangjiawa', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12191, 'Zhangqiu', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12192, 'Zhaocheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12193, 'Zhoucheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12194, 'Zhoucun', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12195, 'Zhucheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12196, 'Zhuwang', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12197, 'Zicheng', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12198, 'Zouping', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12199, 'Zouxian', 761, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12302, 'Jiading', 763, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12303, 'Minhang', 763, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12304, 'Shanghai', 763, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12305, 'Songjiang', 763, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12306, 'Trencin', 763, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12307, 'Changzhi', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12308, 'Datong', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12309, 'Houma', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12310, 'Jiexiu', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12311, 'Jincheng', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12312, 'Linfen', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12313, 'Taiyuan', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12314, 'Xian', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12315, 'Xinzhi', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12316, 'Xinzhou', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12317, 'Yangquan', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12318, 'Yuanping', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12319, 'Yuci', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12320, 'Yuncheng', 764, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12321, 'Anju', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12322, 'Baoning', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12323, 'Chengdu', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12324, 'Daan', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12325, 'Dawan', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12326, 'Daxian', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12327, 'Deyang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12328, 'Dujiangyan City', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12329, 'Guangkou', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12330, 'Guangyuan', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12331, 'Guihu', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12332, 'Heyang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12333, 'Huayang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12334, 'Jiancheng', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12335, 'Jiangyou', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12336, 'Jijiang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12337, 'Leshan', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12338, 'Linqiong', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12339, 'Luocheng', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12340, 'Luzhou', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12341, 'Mianyang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12342, 'Nanchong', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12343, 'Nanlong', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12344, 'Neijiang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12345, 'Panzhihua', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12346, 'Shifang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12347, 'Suining', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12348, 'Taihe', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12349, 'Tianpeng', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12350, 'Tongchuan', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12351, 'Xichang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12352, 'Xunchang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12353, 'Yaan', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12354, 'Yibin', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12355, 'Yongchang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12356, 'Zhonglong', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12357, 'Zigong', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12358, 'Ziyang', 765, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12359, 'Beichen', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12360, 'Gangdong', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12361, 'Hangu', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12362, 'Jinghai', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12363, 'Nankai', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12364, 'Tanggu', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12365, 'Tianjin', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12366, 'Xianshuigu', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12367, 'Yangcun', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12368, 'Yangliuqing', 766, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12369, 'Guiqing', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12370, 'Jiulong', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12371, 'Quanwan', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12372, 'Saigong', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12373, 'Shatin', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12374, 'Taipo', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12375, 'Tuanmun', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12376, 'Xianggang', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12377, 'Yuanlong', 767, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12378, 'Aksu', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12379, 'Baijiantan', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12380, 'Changji', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12381, 'Dongshan', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12382, 'Hami', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12383, 'Hetian', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12384, 'Karamay', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12385, 'Kashi', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12386, 'Korla', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12387, 'Kuche', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12388, 'Kuytun', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12389, 'Shache', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12390, 'Shihezi', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12391, 'Shuimogou', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12392, 'Toutunhe', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12393, 'Urumqi', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12394, 'Yining', 768, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12395, 'Lasa', 769, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12396, 'Dali', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12397, 'Gejiu', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12398, 'Haikou', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12399, 'Heilin', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12400, 'Jinma', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12401, 'Kaihua', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12402, 'Kaiyuan', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12403, 'Kunming', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12404, 'Lianran', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12405, 'Longquan', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12406, 'Lucheng', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12407, 'Mabai', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12408, 'Majie', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12409, 'Miyang', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12410, 'Qujing', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12411, 'Rongcheng', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12412, 'Simao', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12413, 'Wufeng', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12414, 'Yunjinghong', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12415, 'Yuxi Municipal', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12416, 'Zhaotong', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12417, 'Zhenhai', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12418, 'Zhongshu', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12419, 'Zhoucheng', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12420, 'Zhuocheng', 770, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12421, 'Aojiang', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12422, 'Choucheng', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12423, 'Cixi', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12424, 'Daqiao', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12425, 'Deqing', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12426, 'Dinghai', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12427, 'Dongyang', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12428, 'Fuyang', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12429, 'Haining', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12430, 'Haiyan', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12431, 'Hangzhou', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12432, 'Huangyan', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12433, 'Hushan', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12434, 'Huzhou', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12435, 'Jiaojiang', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12436, 'Jiaxing', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12437, 'Jinhua', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12438, 'Jinxiang', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12439, 'Kaihua', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12440, 'Kunyang', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12441, 'Lanxi', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12442, 'Linan City', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12443, 'Linhai', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12444, 'Linping', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12445, 'Lishui', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12446, 'Liushi', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12447, 'Ningbo', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12448, 'Ninghai', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12449, 'Pinghu', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12450, 'Quzhou', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12451, 'Ruian', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12452, 'Shangyu', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12453, 'Shaoxing', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12454, 'Shenjiamen', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12455, 'Taizhou City', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12456, 'Tonglu', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12457, 'Wenling', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12458, 'Wenzhou', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12459, 'Wuning', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12460, 'Wuyi', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12461, 'Xianju', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12462, 'Xiaoshan', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12463, 'Xiashi', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12464, 'Xushan', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12465, 'Yiwu', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12466, 'Yongkang', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12467, 'Yueqing', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12468, 'Yuhuan', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12469, 'Yuyao', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12470, 'Zhejiang', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12471, 'Zhenhai', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12472, 'Zhicheng', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12473, 'Zhuji', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12474, 'fenghua', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12475, 'jiashan', 771, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12531, 'Leticia', 775, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12532, 'Puerto Narino', 775, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12533, 'Abejorral', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12534, 'Abriaqui', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12535, 'Alejandria', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12536, 'Amaga', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12537, 'Amalfi', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12538, 'Andes', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12539, 'Angelopolis', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12540, 'Angostura', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12541, 'Anori', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12542, 'Antioquia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12543, 'Anza', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12544, 'Apartado', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12545, 'Arboletes', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12546, 'Argelia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12547, 'Armenia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12548, 'Barbosa', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12549, 'Bello', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12550, 'Belmira', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12551, 'Betania', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12552, 'Betulia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12553, 'Bolivar', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12554, 'Briceno', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12555, 'Buritica', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12556, 'Caceres', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12557, 'Caicedo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12558, 'Caldas', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12559, 'Campamento', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12560, 'Canasgordas', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12561, 'Caracoli', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12562, 'Caramanta', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12563, 'Carepa', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12564, 'Carmen de Viboral', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12565, 'Carolina', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12566, 'Caucasia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12567, 'Chigorodo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12568, 'Cisneros', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12569, 'Cocorna', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12570, 'Concepcion', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12571, 'Concordia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12572, 'Copacabana', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12573, 'Dabeiba', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12574, 'Don Matias', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12575, 'Ebejico', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12576, 'El Bagre', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12577, 'Entrerrios', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12578, 'Envigado', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12579, 'Fredonia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12580, 'Frontino', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12581, 'Giraldo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12582, 'Girardota', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12583, 'Gomez Plata', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12584, 'Granada', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12585, 'Guadalupe', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12586, 'Guarne', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12587, 'Guatape', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12588, 'Heliconia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12589, 'Hispania', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12590, 'Itagui', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12591, 'Ituango', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12592, 'Jardin', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12593, 'Jerico', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12594, 'La Ceja', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12595, 'La Estrella', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12596, 'La Pintada', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12597, 'La Union', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12598, 'Liborina', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12599, 'Maceo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12600, 'Marinilla', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12601, 'Medellin', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12602, 'Montebello', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12603, 'Murindo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12604, 'Mutata', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12605, 'Narino', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12606, 'Nechi', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12607, 'Necocli', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12608, 'Olaya', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12609, 'Penol', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12610, 'Peque', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12611, 'Pueblorrico', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12612, 'Puerto Berrio', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12613, 'Puerto Nare', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12614, 'Puerto Triunfo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12615, 'Remedios', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12616, 'Retiro', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12617, 'Rionegro', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12618, 'Sabanalarga', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12619, 'Sabaneta', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12620, 'Salgar', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12621, 'San Andres', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12622, 'San Carlos', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12623, 'San Francisco', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12624, 'San Jeronimo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12625, 'San Jose de la Montana', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12626, 'San Juan de Uraba', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12627, 'San Luis', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12628, 'San Pedro', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12629, 'San Pedro de Uraba', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12630, 'San Rafael', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12631, 'San Roque', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12632, 'San Vicente', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12633, 'Santa Barbara', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12634, 'Santa Rosa de Osos', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12635, 'Santo Domingo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12636, 'Santuario', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12637, 'Segovia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12638, 'Sonson', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12639, 'Sopetran', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12640, 'Tamesis', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12641, 'Taraza', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12642, 'Tarso', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12643, 'Titiribi', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12644, 'Toledo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12645, 'Turbo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12646, 'Uramita', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12647, 'Urrao', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12648, 'Valdivia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12649, 'Valparaiso', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12650, 'Vegachi', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12651, 'Venecia', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12652, 'Vigia del Fuerte', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12653, 'Yali', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12654, 'Yarumal', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12655, 'Yolombo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12656, 'Yondo', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12657, 'Zaragoza', 776, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12658, 'Arauca', 777, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12659, 'Arauquita', 777, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12660, 'Cravo Norte', 777, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12661, 'Fortul', 777, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12662, 'Puerto Rondon', 777, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12663, 'Saravena', 777, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12664, 'Tame', 777, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12665, 'Baranoa', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12666, 'Barranquilla', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12667, 'Campo de la Cruz', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12668, 'Candelaria', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12669, 'Galapa', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12670, 'Juan de Acosta', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12671, 'Luruaco', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12672, 'Malambo', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12673, 'Manati', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12674, 'Palmar de Varela', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12675, 'Piojo', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12676, 'Polo Nuevo', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12677, 'Ponedera', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12678, 'Puerto Colombia', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12679, 'Repelon', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12680, 'Sabanagrande', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12681, 'Sabanalarga', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12682, 'Santa Lucia', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12683, 'Santo Tomas', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12684, 'Soledad', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12685, 'Suan', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12686, 'Tubara', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12687, 'Usiacuri', 778, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12688, 'Bogota', 779, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12689, 'Achi', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12690, 'Altos del Rosario', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12691, 'Arenal', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12692, 'Arjona', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12693, 'Arroyohondo', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12694, 'Barranco de Loba', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12695, 'Calamar', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12696, 'Cantagallo', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12697, 'Cartagena', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12698, 'Cicuco', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12699, 'Clemencia', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12700, 'Cordoba', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12701, 'El Carmen de Bolivar', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12702, 'El Guamo', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12703, 'El Penon', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12704, 'Hatillo de Loba', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12705, 'Magangue', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12706, 'Mahates', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12707, 'Margarita', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12708, 'Maria la Baja', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12709, 'Mompos', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12710, 'Montecristo', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12711, 'Morales', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12712, 'Pinillos', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12713, 'Regidor', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12714, 'Rio Viejo', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12715, 'San Cristobal', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12716, 'San Estanislao', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12717, 'San Fernando', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12718, 'San Jacinto', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12719, 'San Jacinto del Cauca', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12720, 'San Juan Nepomuceno', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12721, 'San Martin de Loba', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12722, 'San Pablo', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12723, 'Santa Catalina', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12724, 'Santa Rosa', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12725, 'Santa Rosa del Sur', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12726, 'Simiti', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12727, 'Soplaviento', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12728, 'Talaigua Nuevo', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12729, 'Tiquisio', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12730, 'Turbaco', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12731, 'Turbana', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12732, 'Villanueva', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12733, 'Zambrano', 780, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12734, 'Almeida', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12735, 'Aquitania', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12736, 'Arcabuco', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12737, 'Belen', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12738, 'Berbeo', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12739, 'Beteitiva', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12740, 'Boavita', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12741, 'Boyaca', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12742, 'Briceno', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12743, 'Buenavista', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12744, 'Busbanza', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12745, 'Caldas', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12746, 'Campohermoso', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12747, 'Cerinza', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12748, 'Chinavita', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12749, 'Chiquinquira', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12750, 'Chiquiza', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12751, 'Chiscas', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12752, 'Chita', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12753, 'Chitaraque', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12754, 'Chivata', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12755, 'Chivor', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12756, 'Cienega', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12757, 'Combita', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12758, 'Coper', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12759, 'Corrales', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12760, 'Covarachia', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12761, 'Cubara', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12762, 'Cucaita', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12763, 'Cuitiva', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12764, 'Duitama', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12765, 'El Cocuy', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12766, 'El Espino', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12767, 'Firavitoba', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12768, 'Floresta', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12769, 'Gachantiva', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12770, 'Gameza', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12771, 'Garagoa', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12772, 'Guacamayas', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12773, 'Guateque', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12774, 'Guayata', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12775, 'Guican', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12776, 'Iza', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12777, 'Jenesano', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12778, 'Jerico', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12779, 'La Capilla', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12780, 'La Uvita', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12781, 'La Victoria', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12782, 'Labranzagrande', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12783, 'Leiva', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12784, 'Macanal', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12785, 'Maripi', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12786, 'Miraflores', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12787, 'Mongua', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12788, 'Mongui', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12789, 'Moniquira', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12790, 'Motavita', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12791, 'Muzo', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12792, 'Nobsa', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12793, 'Nuevo Colon', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12794, 'Oicata', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12795, 'Otanche', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12796, 'Pachavita', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12797, 'Paez', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12798, 'Paipa', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12799, 'Pajarito', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12800, 'Panqueba', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12801, 'Pauna', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12802, 'Paya', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12803, 'Paz del Rio', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12804, 'Pesca', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12805, 'Pisba', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12806, 'Puerto Boyaca', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12807, 'Quipama', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12808, 'Ramiriqui', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12809, 'Raquira', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12810, 'Rondon', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12811, 'Saboya', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12812, 'Sachica', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12813, 'Samaca', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(12814, 'San Eduardo', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12815, 'San Jose de Pare', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12816, 'San Luis de Gaceno', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12817, 'San Mateo', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12818, 'San Miguel de Sema', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12819, 'San Pablo de Borbur', 781, 0.00, 0, '2021-04-06 01:13:43', '2021-04-06 01:13:43', NULL), -(12820, 'Santa Maria', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12821, 'Santa Rosa de Viterbo', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12822, 'Santa Sofia', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12823, 'Santana', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12824, 'Sativanorte', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12825, 'Sativasur', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12826, 'Siachoque', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12827, 'Soata', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12828, 'Socha', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12829, 'Socota', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12830, 'Sogamoso', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12831, 'Somondoco', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12832, 'Sora', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12833, 'Soraca', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12834, 'Sotaquira', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12835, 'Susacon', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12836, 'Sutamarchan', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12837, 'Sutatenza', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12838, 'Tasco', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12839, 'Tenza', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12840, 'Tibana', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12841, 'Tibasosa', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12842, 'Tinjaca', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12843, 'Tipacoque', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12844, 'Toca', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12845, 'Togui', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12846, 'Topaga', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12847, 'Tota', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12848, 'Tunja', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12849, 'Tunungua', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12850, 'Turmeque', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12851, 'Tuta', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12852, 'Tutasa', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12853, 'Umbita', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12854, 'Ventaquemada', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12855, 'Viracacha', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12856, 'Zetaquira', 781, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12857, 'Aguadas', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12858, 'Anserma', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12859, 'Aranzazu', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12860, 'Belalcazar', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12861, 'Chinchina', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12862, 'Filadelfia', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12863, 'La Dorada', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12864, 'La Merced', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12865, 'Manizales', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12866, 'Manzanares', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12867, 'Marmato', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12868, 'Marquetalia', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12869, 'Marulanda', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12870, 'Neira', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12871, 'Norcasia', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12872, 'Pacora', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12873, 'Palestina', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12874, 'Pensilvania', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12875, 'Riosucio', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12876, 'Risaralda', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12877, 'Salamina', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12878, 'Samana', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12879, 'San Jose', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12880, 'Supia', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12881, 'Victoria', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12882, 'Villamaria', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12883, 'Viterbo', 782, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12884, 'Albania', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12885, 'Belen Andaquies', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12886, 'Cartagena del Chaira', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12887, 'Curillo', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12888, 'El Doncello', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12889, 'El Paujil', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12890, 'Florencia', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12891, 'La Montanita', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12892, 'Milan', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12893, 'Morelia', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12894, 'Puerto Rico', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12895, 'San Jose de Fragua', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12896, 'San Vicente del Caguan', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12897, 'Solano', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12898, 'Solita', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12899, 'Valparaiso', 783, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12900, 'Aguazul', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12901, 'Chameza', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12902, 'Hato Corozal', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12903, 'La Salina', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12904, 'Mani', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12905, 'Monterrey', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12906, 'Nunchia', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12907, 'Orocue', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12908, 'Paz de Ariporo', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12909, 'Pore', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12910, 'Recetor', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12911, 'Sabanalarga', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12912, 'Sacama', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12913, 'San Luis de Palenque', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12914, 'Tamara', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12915, 'Tauramena', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12916, 'Trinidad', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12917, 'Villanueva', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12918, 'Yopal', 784, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12919, 'Almaguer', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12920, 'Argelia', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12921, 'Balboa', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12922, 'Bolivar', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12923, 'Buenos Aires', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12924, 'Cajibio', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12925, 'Caldono', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12926, 'Caloto', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12927, 'Corinto', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12928, 'El Bordo', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12929, 'El Tambo', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12930, 'Florencia', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12931, 'Guapi', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12932, 'Inza', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12933, 'Jambalo', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12934, 'La Sierra', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12935, 'La Vega', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12936, 'Lopez', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12937, 'Mercaderes', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12938, 'Miranda', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12939, 'Morales', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12940, 'Padilla', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12941, 'Paez', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12942, 'Piamonte', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12943, 'Piendamo', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12944, 'Popayan', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12945, 'Puerto Tejada', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12946, 'Purace', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12947, 'Rosas', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12948, 'San Sebastian', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12949, 'Santa Rosa', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12950, 'Santander de Quilichao', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12951, 'Silvia', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12952, 'Sotara', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12953, 'Suarez', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12954, 'Sucre', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12955, 'Timbio', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12956, 'Timbiqui', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12957, 'Toribio', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12958, 'Totoro', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12959, 'Villa Rica', 785, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12960, 'Aguachica', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12961, 'Agustin Codazzi', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12962, 'Astrea', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12963, 'Becerril', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12964, 'Bosconia', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12965, 'Chimichagua', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12966, 'Chiriguana', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12967, 'Curumani', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12968, 'El Copey', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12969, 'El Paso', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12970, 'Gamarra', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12971, 'Gonzalez', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12972, 'La Gloria', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12973, 'La Jagua Ibirico', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12974, 'Manaure', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12975, 'Pailitas', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12976, 'Pelaya', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12977, 'Pueblo Bello', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12978, 'Rio de Oro', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12979, 'Robles la Paz', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12980, 'San Alberto', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12981, 'San Diego', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12982, 'San Martin', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12983, 'Tamalameque', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12984, 'Valledupar', 786, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12985, 'Acandi', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12986, 'Alto Baudo', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12987, 'Atrato', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12988, 'Bagado', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12989, 'Bahia Solano', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12990, 'Bajo Baudo', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12991, 'Bojaya', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12992, 'Canton de San Pablo', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12993, 'Carmen del Darien', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12994, 'Certegui', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12995, 'Condoto', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12996, 'El Carmen', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12997, 'Istmina', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12998, 'Jurado', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(12999, 'Litoral del San Juan', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13000, 'Lloro', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13001, 'Medio Atrato', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13002, 'Medio Baudo', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13003, 'Medio San Juan', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13004, 'Novita', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13005, 'Nuqui', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13006, 'Quibdo', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13007, 'Rio Iro', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13008, 'Rio Quito', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13009, 'Riosucio', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13010, 'San Jose del Palmar', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13011, 'Sipi', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13012, 'Tado', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13013, 'Unguia', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13014, 'Union Panamericana', 787, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13015, 'Ayapel', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13016, 'Buenavista', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13017, 'Canalete', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13018, 'Cerete', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13019, 'Chima', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13020, 'Chinu', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13021, 'Cienaga de Oro', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13022, 'Cotorra', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13023, 'La Apartada', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13024, 'Lorica', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13025, 'Los Cordobas', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13026, 'Momil', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13027, 'Monitos', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13028, 'Montelibano', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13029, 'Monteria', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13030, 'Planeta Rica', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13031, 'Pueblo Nuevo', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13032, 'Puerto Escondido', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13033, 'Puerto Libertador', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13034, 'Purisima', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13035, 'Sahagun', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13036, 'San Andres Sotavento', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13037, 'San Antero', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13038, 'San Bernardo Viento', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13039, 'San Carlos', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13040, 'San Pelayo', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13041, 'Tierralta', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13042, 'Valencia', 788, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13043, 'Agua de Dios', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13044, 'Alban', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13045, 'Anapoima', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13046, 'Anolaima', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13047, 'Arbelaez', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13048, 'Beltran', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13049, 'Bituima', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13050, 'Bojaca', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13051, 'Cabrera', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13052, 'Cachipay', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13053, 'Cajica', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13054, 'Caparrapi', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13055, 'Caqueza', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13056, 'Carmen de Carupa', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13057, 'Chaguani', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13058, 'Chia', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13059, 'Chipaque', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13060, 'Choachi', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13061, 'Choconta', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13062, 'Cogua', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13063, 'Cota', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13064, 'Cucunuba', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13065, 'El Colegio', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13066, 'El Penon', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13067, 'El Rosal', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13068, 'Facatativa', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13069, 'Fomeque', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13070, 'Fosca', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13071, 'Funza', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13072, 'Fuquene', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13073, 'Fusagasuga', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13074, 'Gachala', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13075, 'Gachancipa', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13076, 'Gacheta', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13077, 'Gama', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13078, 'Girardot', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13079, 'Granada', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13080, 'Guacheta', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13081, 'Guaduas', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13082, 'Guasca', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13083, 'Guataqui', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13084, 'Guatavita', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13085, 'Guayabal de Siquima', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13086, 'Guayabetal', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13087, 'Gutierrez', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13088, 'Jerusalen', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13089, 'Junin', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13090, 'La Calera', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13091, 'La Mesa', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13092, 'La Palma', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13093, 'La Pena', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13094, 'La Vega', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13095, 'Lenguazaque', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13096, 'Macheta', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13097, 'Madrid', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13098, 'Manta', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13099, 'Medina', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13100, 'Mosquera', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13101, 'Narino', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13102, 'Nemocon', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13103, 'Nilo', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13104, 'Nimaima', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13105, 'Nocaima', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13106, 'Ospina Perez', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13107, 'Pacho', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13108, 'Paime', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13109, 'Pandi', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13110, 'Paratebueno', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13111, 'Pasca', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13112, 'Puerto Salgar', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13113, 'Puli', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13114, 'Quebradanegra', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13115, 'Quetame', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13116, 'Quipile', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13117, 'Rafael Reyes', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13118, 'Ricaurte', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13119, 'San Antonio del Tequendama', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13120, 'San Bernardo', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13121, 'San Cayetano', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13122, 'San Francisco', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13123, 'San Juan de Rioseco', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13124, 'Sasaima', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13125, 'Sesquile', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13126, 'Sibate', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13127, 'Silvania', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13128, 'Simijaca', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13129, 'Soacha', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13130, 'Sopo', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13131, 'Subachoque', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13132, 'Suesca', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13133, 'Supata', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13134, 'Susa', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13135, 'Sutatausa', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13136, 'Tabio', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13137, 'Tausa', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13138, 'Tena', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13139, 'Tenjo', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13140, 'Tibacuy', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13141, 'Tibirita', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13142, 'Tocaima', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13143, 'Tocancipa', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13144, 'Topaipi', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13145, 'Ubala', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13146, 'Ubaque', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13147, 'Ubate', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13148, 'Une', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13149, 'Utica', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13150, 'Vergara', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13151, 'Viani', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13152, 'Villagomez', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13153, 'Villapinzon', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13154, 'Villeta', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13155, 'Viota', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13156, 'Yacopi', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13157, 'Zipacon', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13158, 'Zipaquira', 789, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13159, 'Inirida', 790, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13160, 'Calamar', 791, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13161, 'El Retorno', 791, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13162, 'Miraflores', 791, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13163, 'San Jose del Guaviare', 791, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13164, 'Acevedo', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13165, 'Agrado', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13166, 'Aipe', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13167, 'Algeciras', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13168, 'Altamira', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13169, 'Baraya', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13170, 'Campoalegre', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13171, 'Colombia', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13172, 'Elias', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13173, 'Garzon', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13174, 'Gigante', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13175, 'Guadalupe', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13176, 'Hobo', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13177, 'Iquira', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13178, 'Isnos', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13179, 'La Argentina', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13180, 'La Plata', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13181, 'Nataga', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13182, 'Neiva', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13183, 'Oporapa', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13184, 'Paicol', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13185, 'Palermo', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13186, 'Palestina', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13187, 'Pital', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13188, 'Pitalito', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13189, 'Rivera', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13190, 'Saladoblanco', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13191, 'San Agustin', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13192, 'Santa Maria', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13193, 'Suaza', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13194, 'Tarqui', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13195, 'Tello', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13196, 'Teruel', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13197, 'Tesalia', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13198, 'Timana', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13199, 'Villavieja', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13200, 'Yaguara', 792, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13201, 'Algarrobo', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13202, 'Aracataca', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13203, 'Ariguani', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13204, 'Cerro San Antonio', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13205, 'Chivolo', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13206, 'Cienaga', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13207, 'Concordia', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13208, 'El Banco', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13209, 'El Pinon', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13210, 'El Reten', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13211, 'Fundacion', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13212, 'Guamal', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13213, 'Nueva Granada', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13214, 'Pedraza', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13215, 'Pijino del Carmen', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13216, 'Pivijay', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13217, 'Plato', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13218, 'Puebloviejo', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13219, 'Remolino', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13220, 'Sabanas de San Angel', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13221, 'Salamina', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13222, 'San Sebastian', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13223, 'San Zenon', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13224, 'Santa Ana', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13225, 'Santa Barbara de Pinto', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13226, 'Santa Marta', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13227, 'Sitionuevo', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13228, 'Tenerife', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13229, 'Zapayan', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13230, 'Zona Bananera', 794, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13231, 'Acacias', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13232, 'Barranca de Upia', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13233, 'Cabuyaro', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13234, 'Castilla la Nueva', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13235, 'Cubarral', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13236, 'Cumaral', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13237, 'El Calvario', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13238, 'El Castillo', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13239, 'El Dorado', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13240, 'Fuente de Oro', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13241, 'Granada', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13242, 'Guamal', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13243, 'La Macarena', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13244, 'La Uribe', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13245, 'Lejanias', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13246, 'Mapiripan', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13247, 'Mesetas', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13248, 'Puerto Concordia', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13249, 'Puerto Gaitan', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13250, 'Puerto Lleras', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13251, 'Puerto Lopez', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13252, 'Puerto Rico', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13253, 'Restrepo', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13254, 'San Carlos Guaroa', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13255, 'San Juan de Arama', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13256, 'San Juanito', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13257, 'San Martin', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13258, 'Villavicencio', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13259, 'Vista Hermosa', 795, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13260, 'Alban', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13261, 'Aldana', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13262, 'Ancuya', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13263, 'Arboleda', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13264, 'Barbacoas', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13265, 'Belen', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13266, 'Buesaco', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13267, 'Chachagui', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13268, 'Colon', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13269, 'Consaca', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13270, 'Contadero', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13271, 'Cordoba', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13272, 'Cuaspud', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13273, 'Cumbal', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13274, 'Cumbitara', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13275, 'El Charco', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13276, 'El Penol', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13277, 'El Rosario', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13278, 'El Tablon', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13279, 'El Tambo', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13280, 'Funes', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13281, 'Guachucal', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13282, 'Guaitarilla', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13283, 'Gualmatan', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13284, 'Iles', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13285, 'Imues', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13286, 'Ipiales', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13287, 'La Cruz', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13288, 'La Florida', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13289, 'La Llanada', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13290, 'La Tola', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13291, 'La Union', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13292, 'Leiva', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13293, 'Linares', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13294, 'Los Andes', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13295, 'Magui', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13296, 'Mallama', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13297, 'Mosquera', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13298, 'Narino', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13299, 'Olaya Herrera', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13300, 'Ospina', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13301, 'Pasto', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13302, 'Pizarro', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13303, 'Policarpa', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13304, 'Potosi', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13305, 'Providencia', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13306, 'Puerres', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13307, 'Pupiales', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13308, 'Ricaurte', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13309, 'Roberto Payan', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13310, 'Samaniego', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13311, 'San Bernardo', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13312, 'San Lorenzo', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13313, 'San Pablo', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13314, 'San Pedro de Cartago', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13315, 'Sandona', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13316, 'Santa Barbara', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13317, 'Santacruz', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13318, 'Sapuyes', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13319, 'Taminango', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13320, 'Tangua', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13321, 'Tumaco', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13322, 'Tuquerres', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13323, 'Yacuanquer', 796, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13324, 'Colon', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13325, 'Mocoa', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13326, 'Orito', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13327, 'Puerto Asis', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13328, 'Puerto Caycedo', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13329, 'Puerto Guzman', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13330, 'Puerto Leguizamo', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13331, 'San Francisco', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13332, 'San Miguel', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13333, 'Santiago', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13334, 'Sibundoy', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13335, 'Valle del Guamuez', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13336, 'Villagarzon', 798, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13337, 'Armenia', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13338, 'Buenavista', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13339, 'Calarca', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13340, 'Circasia', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13341, 'Cordoba', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13342, 'Filandia', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13343, 'Genova', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13344, 'La Tebaida', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13345, 'Montenegro', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13346, 'Pijao', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13347, 'Quimbaya', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13348, 'Salento', 799, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13349, 'Apia', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13350, 'Balboa', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13351, 'Belen de Umbria', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13352, 'Dos Quebradas', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13353, 'Guatica', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13354, 'La Celia', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13355, 'La Virginia', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13356, 'Marsella', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13357, 'Mistrato', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13358, 'Pereira', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13359, 'Pueblo Rico', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13360, 'Quinchia', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13361, 'Santa Rosa de Cabal', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13362, 'Santuario', 800, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13363, 'Aguada', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13364, 'Albania', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13365, 'Aratoca', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13366, 'Barbosa', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13367, 'Barichara', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13368, 'Barrancabermeja', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13369, 'Betulia', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13370, 'Bolivar', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13371, 'Bucaramanga', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13372, 'Cabrera', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13373, 'California', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13374, 'Capitanejo', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13375, 'Carcasi', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13376, 'Cepita', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13377, 'Cerrito', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13378, 'Charala', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13379, 'Charta', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13380, 'Chima', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13381, 'Chipata', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13382, 'Cimitarra', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13383, 'Concepcion', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13384, 'Confines', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13385, 'Contratacion', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13386, 'Coromoro', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13387, 'Curiti', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13388, 'El Carmen', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13389, 'El Guacamayo', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13390, 'El Penon', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13391, 'El Playon', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13392, 'Encino', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13393, 'Enciso', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13394, 'Florian', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13395, 'Floridablanca', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(13396, 'Galan', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13397, 'Gambita', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13398, 'Giron', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13399, 'Guaca', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13400, 'Guadalupe', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13401, 'Guapota', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13402, 'Guavata', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13403, 'Guepsa', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13404, 'Hato', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13405, 'Jesus Maria', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13406, 'Jordan', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13407, 'La Belleza', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13408, 'La Paz', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13409, 'Landazuri', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13410, 'Lebrija', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13411, 'Los Santos', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13412, 'Macaravita', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13413, 'Malaga', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13414, 'Matanza', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13415, 'Mogotes', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13416, 'Molagavita', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13417, 'Ocamonte', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13418, 'Oiba', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13419, 'Onzaga', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13420, 'Palmar', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13421, 'Palmas del Socorro', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13422, 'Paramo', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13423, 'Piedecuesta', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13424, 'Pinchote', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13425, 'Puente Nacional', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13426, 'Puerto Parra', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13427, 'Puerto Wilches', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13428, 'Rionegro', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13429, 'Sabana de Torres', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13430, 'San Andres', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13431, 'San Benito', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13432, 'San Gil', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13433, 'San Joaquin', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13434, 'San Jose de Miranda', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13435, 'San Miguel', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13436, 'San Vicente de Chucuri', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13437, 'Santa Barbara', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13438, 'Santa Helena', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13439, 'Simacota', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13440, 'Socorro', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13441, 'Suaita', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13442, 'Sucre', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13443, 'Surata', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13444, 'Tona', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13445, 'Valle San Jose', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13446, 'Velez', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13447, 'Vetas', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13448, 'Villanueva', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13449, 'Zapatoca', 802, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13450, 'Buenavista', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13451, 'Caimito', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13452, 'Chalan', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13453, 'Coloso', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13454, 'Corozal', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13455, 'El Roble', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13456, 'Galeras', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13457, 'Guaranda', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13458, 'La Union', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13459, 'Los Palmitos', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13460, 'Majagual', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13461, 'Morroa', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13462, 'Ovejas', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13463, 'Palmito', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13464, 'Sampues', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13465, 'San Benito Abad', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13466, 'San Juan de Betulia', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13467, 'San Marcos', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13468, 'San Onofre', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13469, 'San Pedro', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13470, 'Since', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13471, 'Sincelejo', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13472, 'Sucre', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13473, 'Tolu', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13474, 'Toluviejo', 803, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13475, 'Alpujarra', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13476, 'Alvarado', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13477, 'Ambalema', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13478, 'Anzoategui', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13479, 'Ataco', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13480, 'Cajamarca', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13481, 'Carmen de Apicala', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13482, 'Casabianca', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13483, 'Chaparral', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13484, 'Coello', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13485, 'Coyaima', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13486, 'Cunday', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13487, 'Dolores', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13488, 'Espinal', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13489, 'Falan', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13490, 'Flandes', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13491, 'Fresno', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13492, 'Guamo', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13493, 'Guayabal', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13494, 'Herveo', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13495, 'Honda', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13496, 'Ibague', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13497, 'Icononzo', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13498, 'Lerida', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13499, 'Libano', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13500, 'Mariquita', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13501, 'Melgar', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13502, 'Murillo', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13503, 'Natagaima', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13504, 'Ortega', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13505, 'Palocabildo', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13506, 'Piedras', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13507, 'Planadas', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13508, 'Prado', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13509, 'Purificacion', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13510, 'Rioblanco', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13511, 'Roncesvalles', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13512, 'Rovira', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13513, 'Saldana', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13514, 'San Antonio', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13515, 'San Luis', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13516, 'Santa Isabel', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13517, 'Suarez', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13518, 'Valle de San Juan', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13519, 'Venadillo', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13520, 'Villahermosa', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13521, 'Villarrica', 804, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13522, 'Acaricuara', 806, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13523, 'Mitu', 806, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13524, 'Papunaua', 806, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13525, 'Taraira', 806, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13526, 'Villa Fatima', 806, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13527, 'Yavarate', 806, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13528, 'Cumaribo', 807, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13529, 'La Primavera', 807, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13530, 'Puerto Carreno', 807, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13531, 'Santa Rosalia', 807, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13532, 'Fomboni', 808, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13533, 'Mitsamiouli', 809, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13534, 'Moroni', 809, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13535, 'Domoni', 810, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13536, 'Mutsamudu', 810, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13537, 'Loudima', 811, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13538, 'Madingou', 811, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13539, 'Nkayi', 811, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13540, 'Brazzaville', 812, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13541, 'Ewo', 813, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13542, 'Kelle', 813, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13543, 'Makoua', 813, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13544, 'Mossaka', 813, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13545, 'Owando', 813, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13546, 'Loandjili', 814, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13547, 'Ngamaba-Mfilou', 814, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13548, 'Pointe Noire', 814, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13549, 'Sibiti', 815, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13550, 'Zanaga', 815, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13551, 'Dongou', 816, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13552, 'Epena', 816, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13553, 'Impfondo', 816, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13554, 'Kibangou', 817, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13555, 'Loubomo', 817, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13556, 'Matsanga', 817, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13557, 'Mossendjo', 817, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13558, 'Djambala', 818, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13559, 'Gamboma', 818, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13560, 'Boko', 819, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13561, 'Kinkala', 819, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13562, 'Mindouli', 819, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13563, 'Ikelemba', 820, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13564, 'Ouesso', 820, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13565, 'Sembe', 820, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13566, 'Souanke', 820, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13567, 'Bandundu', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13568, 'Bolobo', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13569, 'Bulungu', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13570, 'Gungu', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13571, 'Idiofa', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13572, 'Inongo', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13573, 'Kahemba', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13574, 'Kasongo-Lunda', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13575, 'Kenge', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13576, 'Kikwit', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13577, 'Kiri', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13578, 'Kutu', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13579, 'Lusanga', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13580, 'Mangai', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13581, 'Mushie', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13582, 'Nioki', 821, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13583, 'Boma', 822, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13584, 'Kasangulu', 822, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13585, 'Kimpese', 822, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13586, 'Madimba', 822, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13587, 'Matadi', 822, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13588, 'Mbanza-Ngungu', 822, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13589, 'Muanda', 822, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13590, 'Tshela', 822, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13591, 'Basankusu', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13592, 'Binga', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13593, 'Bodalangi', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13594, 'Boende', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13595, 'Bongandanga', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13596, 'Bosobolo', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13597, 'Bumba', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13598, 'Businga', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13599, 'Gbadolite', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13600, 'Gemena', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13601, 'Ikela', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13602, 'Libenge', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13603, 'Lisala', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13604, 'Makanza', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13605, 'Mbandaka', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13606, 'Mobayi-Mbongo', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13607, 'Yakoma', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13608, 'Yandongi', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13609, 'Yumbi', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13610, 'Zongo', 823, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13611, 'Aba', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13612, 'Aketi', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13613, 'Bafwasende', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13614, 'Banalia', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13615, 'Basoko', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13616, 'Bondo', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13617, 'Bunia', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13618, 'Buta', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13619, 'Djugu', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13620, 'Faradje', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13621, 'Gwane', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13622, 'Isiro', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13623, 'Itoko', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13624, 'Kisangani', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13625, 'Mambasa', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13626, 'Mongbwalu', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13627, 'Niangara', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13628, 'Poko', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13629, 'Simba', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13630, 'Titule', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13631, 'Ubundu', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13632, 'Wamba', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13633, 'Watsa', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13634, 'Yangambi', 824, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13635, 'Demba', 825, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13636, 'Dibaya', 825, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13637, 'Ilebo', 825, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13638, 'Kananga', 825, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13639, 'Kazumba', 825, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13640, 'Luebo', 825, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13641, 'Mweka', 825, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13642, 'Tshikapa', 825, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13643, 'Gandajika', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13644, 'Kabinda', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13645, 'Katako-Kombe', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13646, 'Kole', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13647, 'Lodja', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13648, 'Lubao', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13649, 'Lubefu', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13650, 'Lusambo', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13651, 'Mbuji-Mayi', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13652, 'Mwene-Ditu', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13653, 'Tshilenge', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13654, 'Tshofa', 826, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13655, 'Bukama', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13656, 'Dilolo', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13657, 'Kabalo', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13658, 'Kalemie', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13659, 'Kambove', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13660, 'Kamina', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13661, 'Kaniama', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13662, 'Kikondjo', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13663, 'Kipushi', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13664, 'Kolwezi', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13665, 'Kongolo', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13666, 'Le Marinel', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13667, 'Likasi', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13668, 'Lubudi', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13669, 'Lubumbashi', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13670, 'Malemba-Nkulu', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13671, 'Manono', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13672, 'Moba', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13673, 'Mulongo', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13674, 'Mwanza', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13675, 'Nyunzu', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13676, 'Sakania', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13677, 'Shinkolobwe', 827, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13678, 'Kinshasa', 828, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13679, 'Kalima', 829, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13680, 'Kasongo', 829, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13681, 'Kindu', 829, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13682, 'Beni', 830, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13683, 'Butembo', 830, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13684, 'Goma', 830, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13685, 'Bukavu', 831, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13686, 'Kabare', 831, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13687, 'Kama', 831, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13688, 'Kampene', 831, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13689, 'Kibombo', 831, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13690, 'Uvira', 831, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13691, 'Amuri', 832, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13692, 'Atiu', 833, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13693, 'Mangaia', 834, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13694, 'Tauhunu', 835, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13695, 'Mauke', 836, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13696, 'Mitiaro', 837, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13697, 'Nassau', 838, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13698, 'Roto', 839, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13699, 'Rakahanga', 840, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13700, 'Avarua', 841, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13701, 'Omoka', 842, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13702, 'Alajuela', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13703, 'Atenas', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13704, 'Bijagua', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13705, 'Buenos Aires', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13706, 'Carrillos', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13707, 'Desemparados', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13708, 'Dos Rios', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13709, 'Esquipulas', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13710, 'Florencia', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13711, 'Fortuna', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13712, 'Grecia', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13713, 'Guacimo', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13714, 'Laguna', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13715, 'Los Chiles', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13716, 'Mastate', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13717, 'Naranjo', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13718, 'Orotina', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13719, 'Palmares', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13720, 'Piedades Norte', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13721, 'Pital', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13722, 'Pocosol', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13723, 'Quesada', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13724, 'Rio Segundo', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13725, 'Sabanilla', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13726, 'San Antonio', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13727, 'San Jose', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13728, 'San Juan', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13729, 'San Mateo', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13730, 'San Pedro', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13731, 'San Rafael', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13732, 'San Ramon', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13733, 'San Roque', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13734, 'Santiago', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13735, 'Sarchi Norte', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13736, 'Sarchi Sur', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13737, 'Tigra', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13738, 'Turricares', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13739, 'Upala', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13740, 'Venado', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13741, 'Zarcero', 843, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13742, 'Aguacaliente', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13743, 'Capellades', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13744, 'Carmen', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13745, 'Cartago', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13746, 'Concepcion', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13747, 'Cot', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13748, 'Dulce Nombre', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13749, 'El Tejar', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13750, 'Guadalupe', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13751, 'Juan Vinas', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13752, 'La Suiza', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13753, 'Orosi', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13754, 'Pacayas', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13755, 'Paraiso', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13756, 'Pejibaye', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13757, 'San Diego', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13758, 'San Isidro', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13759, 'San Juan', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13760, 'San Nicolas', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13761, 'San Rafael', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13762, 'San Ramon', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13763, 'Tierra Blanca', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13764, 'Tobosi', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13765, 'Tres Rios', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13766, 'Tucurrique', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13767, 'Turrialba', 844, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13768, 'Bagaces', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13769, 'Belen', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13770, 'Canas', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13771, 'Filadeldia', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13772, 'Fortuna', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13773, 'Hojancha', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13774, 'Juntas', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13775, 'La Cruz', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13776, 'Liberia', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13777, 'Mogote', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13778, 'Nandayure', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13779, 'Nicoya', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13780, 'Samara', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13781, 'Santa Cruz', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13782, 'Sardinal', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13783, 'Tilaran', 845, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13784, 'Angeles', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13785, 'Asuncion', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13786, 'Barrantes', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13787, 'Barva', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13788, 'Heredia', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13789, 'Horquetas', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13790, 'Llorente', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13791, 'Mercedes', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13792, 'Puerto Viejo', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13793, 'Rivera', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13794, 'San Antonio', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13795, 'San Francisco', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13796, 'San Isidro', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13797, 'San Joaquin', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13798, 'San Jose', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13799, 'San Josecito', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13800, 'San Juan', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13801, 'San Miguel', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13802, 'San Pablo', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13803, 'San Pedro', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13804, 'San Rafael', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13805, 'San Roque', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13806, 'San Vicente', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13807, 'Santa Barbara', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13808, 'Santa Lucia', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13809, 'Santa Rosa', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13810, 'Santiago', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13811, 'Santo Domingo', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13812, 'Santo Tomas', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13813, 'Ulloa', 846, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13814, 'Batan', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13815, 'Cahuita', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13816, 'Cariari', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13817, 'Guacimo', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13818, 'Guapiles', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13819, 'Jimenez', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13820, 'Limon', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13821, 'Matina', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13822, 'Pocora', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13823, 'Rita', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13824, 'Roxana', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13825, 'Siquirres', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13826, 'Sixaola', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13827, 'Valle la Estrella', 847, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13828, 'Buenos Aires', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13829, 'Canoas', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13830, 'Chacarita', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13831, 'Corredor', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13832, 'Esparta', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13833, 'Espiritu Santo', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13834, 'Golfito', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13835, 'Guaycara', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13836, 'Jaco', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13837, 'La Cuesta', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13838, 'Macacona', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13839, 'Manzanillo', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13840, 'Miramar', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13841, 'Palmar', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13842, 'Paquera', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13843, 'Parrita', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13844, 'Puerto Cortes', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13845, 'Puerto Jimenez', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13846, 'Puntarenas', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13847, 'Quepos', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13848, 'San Vito', 848, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13849, 'Marcory', 850, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13850, 'Adzope', 851, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13851, 'Affery', 851, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13852, 'Agboville', 851, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13853, 'Akoupe', 851, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13854, 'Rubino', 851, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13855, 'Touba', 852, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13856, 'Bako', 853, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13857, 'Odienne', 853, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13858, 'Gagnoa', 855, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13859, 'Guiberoua', 855, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13860, 'Hire', 855, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13861, 'Ndouci', 855, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13862, 'Oume', 855, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13863, 'Ouragahio', 855, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13864, 'Daloa', 856, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13865, 'Issia', 856, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13866, 'Vavoua', 856, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13867, 'Ndiekro', 857, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13868, 'Tiebissou', 857, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13869, 'Toumodi', 857, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13870, 'Yamoussoukro', 857, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13871, 'Abidjan', 858, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13872, 'Alepe', 858, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13873, 'Anyama', 858, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13874, 'Bingerville', 858, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13875, 'Dabou', 858, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13876, 'Grand-Lahou', 858, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13877, 'Jacqueville', 858, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13878, 'Tiassale', 858, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13879, 'Bouafle', 859, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13880, 'Sinfra', 859, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13881, 'Zuenoula', 859, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13882, 'Duekoue', 860, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13883, 'Guiglo', 860, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13884, 'Toulepleu', 860, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13885, 'Abengourou', 861, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13886, 'Agnibilekrou', 861, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13887, 'Arrah', 862, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13888, 'Bocanda', 862, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13889, 'Bongouanou', 862, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13890, 'Daoukro', 862, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13891, 'Dimbokro', 862, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13892, 'M\'bahiakro', 862, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13893, 'Mbatto', 862, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13894, 'N\'zi-Comoe', 862, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13895, 'San-Pedro', 863, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13896, 'Sassandra', 863, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13897, 'Soubre', 863, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13898, 'Tabou', 863, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13899, 'Boundiali', 864, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13900, 'Dikodougou', 864, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13901, 'Ferkessedougou', 864, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13902, 'Korhogo', 864, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13903, 'Tingrela', 864, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13904, 'Divo', 865, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13905, 'Fresco', 865, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13906, 'Lakota', 865, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13907, 'Aboisso', 866, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13908, 'Adiake', 866, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13909, 'Ayame', 866, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13910, 'Bonoua', 866, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13911, 'Grand Bassam', 866, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13912, 'Kani', 868, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13913, 'Mankono', 868, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13914, 'Seguela', 868, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13915, 'Bondoukou', 869, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13916, 'Bouna', 869, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13917, 'Tanda', 869, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13918, 'Bjelovar', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13919, 'Brezovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13920, 'Chazma', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13921, 'Daruvar', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13922, 'Daruvarski Brestovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13923, 'Dezhanovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13924, 'Dhulovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13925, 'Gareshnica', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13926, 'Gareshnichki Brestovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13927, 'Grubishno Polje', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13928, 'Gudovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13929, 'Hercegovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13930, 'Ivanska', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13931, 'Klokochevac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13932, 'Konchanica', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13933, 'Predavac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13934, 'Rovishce', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13935, 'Shandrovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13936, 'Sirach', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13937, 'Trojstveni Markovac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13938, 'Velika Pisanica', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13939, 'Veliki Grdhevac', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13940, 'Veliki Zdenci', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13941, 'Veliko Trojstvo', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13942, 'Zhdralovi', 870, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13943, 'Blato', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13944, 'Cavtat', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13945, 'Chibacha', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13946, 'Chilipi', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13947, 'Dubrovnik', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13948, 'Komin', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13949, 'Korchula', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13950, 'Lumbarda', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13951, 'Metkovic', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13952, 'Mlini', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13953, 'Mokoshica', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13954, 'Nova Mokoshica', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13955, 'Opuzen', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13956, 'Orebic', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13957, 'Otrich-Seoci', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13958, 'Ploche', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13959, 'Smokvica', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13960, 'Stashevica', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13961, 'Vela Luka', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13962, 'Zaton', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13963, 'Zhrnovo', 871, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13964, 'Bale', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13965, 'Banjole', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13966, 'Brtonigla', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13967, 'Buje', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13968, 'Buzet', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13969, 'Fazhana', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13970, 'Funtana', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13971, 'Galizhana', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13972, 'Labin', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13973, 'Lizhnjan', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13974, 'Marchana', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13975, 'Medulin', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13976, 'Novigrad', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13977, 'Pazin', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13978, 'Porech', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13979, 'Premantura', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13980, 'Pula', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13981, 'Rabac', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13982, 'Rasha', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(13983, 'Rovinj', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13984, 'Sveti Petar u Shumi', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13985, 'Tar', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13986, 'Umag', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13987, 'Vinezh', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13988, 'Vodnjan', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13989, 'Vrsar', 873, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13990, 'Cerovac Vukmansichki', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13991, 'Draganic', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13992, 'Duga Resa', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13993, 'Josipdol', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13994, 'Karlovac', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13995, 'Mrezhnichki Varosh', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13996, 'Ogulin', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13997, 'Oshtarije', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13998, 'Ozalj', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(13999, 'Plashki', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14000, 'Slunj', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14001, 'Vojnic', 874, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14002, 'Dhelekovec', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14003, 'Dhurdhevac', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14004, 'Drnje', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14005, 'Ferdinandovac', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14006, 'Glogovac', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14007, 'Gola', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14008, 'Hlebine', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14009, 'Kalinovac', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14010, 'Kloshtar Podravski', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14011, 'Koprivnica', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14012, 'Koprivnichki Bregi', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14013, 'Koprivnichki Ivanec', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14014, 'Krizhevci', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14015, 'Legrad', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14016, 'Molve', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14017, 'Novigrad Podravski', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14018, 'Novo Virje', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14019, 'Peteranec', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14020, 'Podravske Sesvete', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14021, 'Rasinja', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14022, 'Reka', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14023, 'Sigetec', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14024, 'Starigrad', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14025, 'Sveti Ivan Zhabno', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14026, 'Trema', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14027, 'Virje', 875, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14028, 'Andrashevec', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14029, 'Bedekovchina', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14030, 'Dhurmanec', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14031, 'Donja Pachetina', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14032, 'Donja Shemnica', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14033, 'Donja Stubica', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14034, 'Dubrovchan', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14035, 'Gornja Stubica', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14036, 'Hum na Sutli', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14037, 'Klanjec', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14038, 'Konjishchina', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14039, 'Krapina', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14040, 'Krapinske Toplice', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14041, 'Laz Bistrichki', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14042, 'Marija Bistrica', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14043, 'Mihovljan', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14044, 'Oroslavje', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14045, 'Podgorje Bistrichko', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14046, 'Poznanovec', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14047, 'Pregrada', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14048, 'Radoboj', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14049, 'Shkaricevo', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14050, 'Shpichkovina', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14051, 'Stubichke Toplice', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14052, 'Sveti Krizh Zachretje', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14053, 'Veliko Trgovishce', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14054, 'Zabok', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14055, 'Zlatar', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14056, 'Zlatar-Bistrica', 876, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14057, 'Brinje', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14058, 'Donji Lapac', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14059, 'Gospic', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14060, 'Korenica', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14061, 'Lichki Osik', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14062, 'Lichko Leshce', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14063, 'Novalja', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14064, 'Otochac', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14065, 'Perushic', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14066, 'Prozor', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14067, 'Senj', 877, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14068, 'Belica', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14069, 'Chakovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14070, 'Cirkovljan', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14071, 'Dekanovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14072, 'Domashinec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14073, 'Donja Dubrava', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14074, 'Donji Kraljevec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14075, 'Donji Vidovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14076, 'Drzhimurec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14077, 'Dunjkovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14078, 'Gardinovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14079, 'Gorichan', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14080, 'Gornji Hrashcan', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14081, 'Hodoshan', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14082, 'Ivanovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14083, 'Kotoriba', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14084, 'Kurshanec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14085, 'Lopatinec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14086, 'Machkovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14087, 'Mala Subotica', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14088, 'Mihovljan', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14089, 'Mursko Sredishce', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14090, 'Nedelishce', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14091, 'Novakovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14092, 'Novo Selo Rok', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14093, 'Orehovica', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14094, 'Palovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14095, 'Peklenica', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14096, 'Podturen', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14097, 'Prelog', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14098, 'Pribislavec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14099, 'Pushcine', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14100, 'Savska Ves', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14101, 'Selnica', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14102, 'Shenkovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14103, 'Strahoninec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14104, 'Sveta Marija', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14105, 'Trnovec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14106, 'Vratishinec', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14107, 'Zasadbreg', 878, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14108, 'Antunovac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14109, 'Batina', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14110, 'Beli Manastir', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14111, 'Belishce', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14112, 'Beljevina', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14113, 'Bijelo Brdo', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14114, 'Bilje', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14115, 'Bistrinci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14116, 'Bizovac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14117, 'Branjin Vrh', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14118, 'Brijeshce', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14119, 'Brijest', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14120, 'Ceminac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14121, 'Chepin', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14122, 'Crnkovci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14123, 'Dalj', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14124, 'Darda', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14125, 'Dhakovo', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14126, 'Dhurdhenovac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14127, 'Donja Motichina', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14128, 'Donji Miholac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14129, 'Erdut', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14130, 'Ernestinovo', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14131, 'Ferichanci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14132, 'Gashinci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14133, 'Gorjani', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14134, 'Grabovac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14135, 'Ivanovac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14136, 'Ivanovci Gorjanski', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14137, 'Jagodnjak', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14138, 'Jelisavac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14139, 'Josipovac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14140, 'Josipovac Punitovachki', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14141, 'Karanac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14142, 'Keshinci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14143, 'Knezhevi Vinogradi', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14144, 'Knezhevo', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14145, 'Koritna', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14146, 'Koshka', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14147, 'Kushevac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14148, 'Ladimirevci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14149, 'Laslovo', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14150, 'Lug', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14151, 'Marijanci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14152, 'Markovac Nashichki', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14153, 'Martin', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14154, 'Mece', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14155, 'Moslavina Podravska', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14156, 'Nashice', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14157, 'Osijek', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14158, 'Ovchara', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14159, 'Petlovac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14160, 'Petrijevci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14161, 'Pishkorevci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14162, 'Podgorach', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14163, 'Popvac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14164, 'Rakitovica', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14165, 'Sarvash', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14166, 'Satnica Dhakovachka', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14167, 'Selci Dhakovacki', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14168, 'Semeljci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14169, 'Shiroko Polje', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14170, 'Strizivojna', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14171, 'Sveti Dhuradh', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14172, 'Tenja', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14173, 'Valpovo', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14174, 'Velimirovac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14175, 'Viljevo', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14176, 'Vishkovci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14177, 'Vishnjevac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14178, 'Vladislavci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14179, 'Vuka', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14180, 'Vukojevci', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14181, 'Zmajevac', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14182, 'Zoljan', 880, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14183, 'Badljevina', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14184, 'Brodski Drenovac', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14185, 'Dervishaga', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14186, 'Gradac', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14187, 'Jakshic', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14188, 'Kaptol', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14189, 'Kutjevo', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14190, 'Lipik', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14191, 'Pakrac', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14192, 'Pleternica', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14193, 'Pozhega', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14194, 'Prekopkra', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14195, 'Trenkovo', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14196, 'Velika', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14197, 'Vetovo', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14198, 'Vidovci', 882, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14199, 'Bilice', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14200, 'Brodarica', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14201, 'Drnish', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14202, 'Dubrava kod Shibenika', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14203, 'Grebashtica', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14204, 'Jezera', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14205, 'Kistanje', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14206, 'Knin', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14207, 'Kovachic', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14208, 'Murter', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14209, 'Pirovac', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14210, 'Primoshten', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14211, 'Rogoznica', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14212, 'Shibenik', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14213, 'Skradin', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14214, 'Tisno', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14215, 'Tribunj', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14216, 'Vodice', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14217, 'Vrpolje', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14218, 'Zaton', 884, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14219, 'Brestacha', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14220, 'Brochice', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14221, 'Budashevo', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14222, 'Donja Grachenica', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14223, 'Dvor', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14224, 'Glina', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14225, 'Gornja Grachenica', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14226, 'Gornja Jelenska', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14227, 'Greda', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14228, 'Gvozd', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14229, 'Hrastelnica', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14230, 'Hrvatska Dubica', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14231, 'Hrvatska Kostajnica', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14232, 'Husain', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14233, 'Ilova', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14234, 'Kutina', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14235, 'Lekenik', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14236, 'Lipovljani', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14237, 'Moshchenica', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14238, 'Novska', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14239, 'Odra Sisachka', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14240, 'Osekovo', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14241, 'Peshcenica', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14242, 'Petrinja', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14243, 'Popovacha', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14244, 'Potok', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14245, 'Rajic', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14246, 'Repushnica', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14247, 'Sisak', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14248, 'Staro Prachno', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14249, 'Sunja', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14250, 'Topolovac', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14251, 'Voloder', 885, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14252, 'Bashka Voda', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14253, 'Bol', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14254, 'Brela', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14255, 'Brnaze', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14256, 'Cista Velika', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14257, 'Donji Prolozhac', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14258, 'Donji Vinjani', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14259, 'Duce', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14260, 'Dugi Rat', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14261, 'Dugopolje', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14262, 'Gala', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14263, 'Glavice', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14264, 'Glavina Donja', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14265, 'Gornji Vincjani', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14266, 'Gradac', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14267, 'Grubine', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14268, 'Hrvace', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14269, 'Hvar', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14270, 'Imotski', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14271, 'Jelsa', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14272, 'Jesenice', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14273, 'Kamen', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14274, 'Kashtel Gambelovac', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14275, 'Kashtel Gomilica', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14276, 'Kashtel Lukshic', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14277, 'Kashtel Novi', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14278, 'Kashtel Shtafilic', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14279, 'Kashtel Stari', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14280, 'Kashtel Sucurac', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14281, 'Katuni', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14282, 'Klis', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14283, 'Komizha', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14284, 'Koshute', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14285, 'Lovrec', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14286, 'Makarska', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14287, 'Marina', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14288, 'Mastrinka', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14289, 'Milna', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14290, 'Mravince', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14291, 'Neoric', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14292, 'Obrovac Sinjski', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14293, 'Okrug Gornji', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14294, 'Omish', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14295, 'Otok', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14296, 'Podgora', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14297, 'Podstrana', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14298, 'Poljica', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14299, 'Postira', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14300, 'Postranje', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14301, 'Potravlje', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14302, 'Primorski Dolac', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14303, 'Puchishca', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14304, 'Ruda', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14305, 'Runovic', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14306, 'Seget Donji', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14307, 'Seget Vranjica', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14308, 'Selca', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14309, 'Sinj', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14310, 'Slatine', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14311, 'Solin', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14312, 'Split', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14313, 'Srinjine', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14314, 'Stari Grad', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14315, 'Stobrech', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14316, 'Supetar', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14317, 'Trilj', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14318, 'Trogir', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14319, 'Tuchepi', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14320, 'Turjaci', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14321, 'Vinishce', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14322, 'Vis', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14323, 'Vranjic', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14324, 'Vrgorac', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14325, 'Vrlika', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14326, 'Zagvozd', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14327, 'Zhrnovnica', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14328, 'Zmijavci', 887, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14329, 'Bedenec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14330, 'Beletinec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14331, 'Beretinec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14332, 'Breznica', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14333, 'Chreshnjevo', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14334, 'Donja Voca', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14335, 'Donje Ladanje', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14336, 'Gornje Ladanje', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14337, 'Gornje Vratno', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14338, 'Gornji Kneginec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14339, 'Gornji Kucan', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14340, 'Hrashcica', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14341, 'Hrastovsko', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14342, 'Hrzhenica', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14343, 'Ivanec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14344, 'Jalkovec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14345, 'Jalzhabet', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14346, 'Jerovec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14347, 'Klenovnik', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14348, 'Kljuch', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14349, 'Kucan Marof', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14350, 'Lepoglava', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14351, 'Ljubeshcica', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14352, 'Ludbreg', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14353, 'Madzharevo', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14354, 'Mali Bukovec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14355, 'Nedeljanec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14356, 'Nova Ves Petrijanec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14357, 'Novi Marof', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14358, 'Petrijanec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14359, 'Podevchevo', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14360, 'Presechno', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14361, 'Remetinec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14362, 'Selnik', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14363, 'Shemovec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14364, 'Srachinec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14365, 'Sveti Petar', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14366, 'Svibovec Podravski', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14367, 'Trnovec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14368, 'Turchin', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14369, 'Tuzhno', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14370, 'Varazhdin', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14371, 'Varazhdin Breg', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14372, 'Varazhdinske Toplice', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14373, 'Vidovec', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14374, 'Vinica', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14375, 'Zavrshje Podbelsko', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14376, 'Zharovnica', 888, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14377, 'Borova', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14378, 'Busetina', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14379, 'Cabuna', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14380, 'Chachinci', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14381, 'Gradina', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14382, 'Korija', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14383, 'Mikleush', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14384, 'Milanovac', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14385, 'Nova Bukovica', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14386, 'Orahovica', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14387, 'Pitomacha', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14388, 'Podgorje', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14389, 'Rezovac', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14390, 'Shpishic Bukovica', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14391, 'Slatina', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14392, 'Suhopolje', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14393, 'Turanovac', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14394, 'Virovitica', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14395, 'Vocin', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14396, 'Zdenci', 889, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14397, 'Andrijashevci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14398, 'Antin', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14399, 'Babina Greda', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14400, 'Bapska', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14401, 'Bobota', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14402, 'Bogdanovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14403, 'Borovo', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14404, 'Boshnjaci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14405, 'Brshadin', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14406, 'Ceric', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14407, 'Cerna', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14408, 'Drenovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14409, 'Gradishte', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14410, 'Gunja', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14411, 'Ilacha', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14412, 'Ilok', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14413, 'Ivankovo', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14414, 'Jarmina', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14415, 'Komletinci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14416, 'Lipovac', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14417, 'Lovas', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14418, 'Markushica', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14419, 'Mirkovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14420, 'Negoslavci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14421, 'Nijemci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14422, 'Novi Jankovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14423, 'Nushtar', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14424, 'Otok', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14425, 'Petrovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14426, 'Posavski Podgajci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14427, 'Privlaka', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14428, 'Rachinovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14429, 'Rajevo Selo', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14430, 'Retkovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14431, 'Rokovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14432, 'Sharengrad', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14433, 'Shishkovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14434, 'Shtitar', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14435, 'Slakovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14436, 'Soljani', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14437, 'Sotin', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14438, 'Stari Jankovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14439, 'Stari Mikanovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14440, 'Tordinci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14441, 'Tovarnik', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14442, 'Trpinja', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14443, 'Vinkovci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14444, 'Vodhinci', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14445, 'Vrbanja', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14446, 'Vukovar', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14447, 'Zhupanja', 890, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14448, 'Benkovac', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14449, 'Bibinje', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14450, 'Biograd na Moru', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14451, 'Debeljak', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14452, 'Galovac', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14453, 'Gorica', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14454, 'Gornji Karin', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14455, 'Grachac', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14456, 'Jasenice', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14457, 'Kali', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14458, 'Krushevo', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14459, 'Nin', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14460, 'Obrovac', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14461, 'Pag', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14462, 'Pakoshtane', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14463, 'Polacha', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14464, 'Polichnik', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14465, 'Poljica', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14466, 'Posedarje', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14467, 'Preko', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14468, 'Pridraga', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14469, 'Privlaka', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14470, 'Razhanac', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14471, 'Shkabrnja', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14472, 'Slivnica', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14473, 'Starigrad', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14474, 'Sukoshan', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14475, 'Sveti Filip i Jakov', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14476, 'Turanj', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14477, 'Ugljan', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14478, 'Vir', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14479, 'Vrsi', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14480, 'Zadar', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14481, 'Zemunik Donji', 891, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14482, 'Bestovje', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14483, 'Bishkupec Zelinski', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14484, 'Brckovljani', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14485, 'Brdovec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14486, 'Bregana', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14487, 'Brezje', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14488, 'Bushevec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14489, 'Celine', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14490, 'Domaslovec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14491, 'Donja Bistra', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14492, 'Donja Kupchina', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14493, 'Donja Lomnica', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14494, 'Donja Zdenchina', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14495, 'Donji Desinec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14496, 'Donji Stupnik', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14497, 'Dubrava', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14498, 'Dugo Selo', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14499, 'Gornja Bistra', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14500, 'Gornji Laduch', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14501, 'Gornji Stupnik', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14502, 'Grachec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14503, 'Gradici', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14504, 'Ivan Bistranski', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14505, 'Ivanic-Grad', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14506, 'Jablanovec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14507, 'Jakovlje', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14508, 'Jastrebarsko', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14509, 'Kerestinec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14510, 'Klincha Sela', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14511, 'Kloshtar Ivanic', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14512, 'Kozinshchak', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14513, 'Krizh', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14514, 'Kuche', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14515, 'Kupinec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14516, 'Lonjica', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14517, 'Luka', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14518, 'Lukarishce', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14519, 'Lukavec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14520, 'Lupoglav', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14521, 'Michevec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14522, 'Mraclin', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14523, 'Novaki', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14524, 'Novo Chiche', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14525, 'Novoselec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14526, 'Oborovo Bistranski', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14527, 'Oreshje', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14528, 'Pojatno', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14529, 'Poljanica Bistranska', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14530, 'Prigorje Brdovechko', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14531, 'Rakitje', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14532, 'Rakov Potok', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14533, 'Rude', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14534, 'Samobor', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14535, 'Strmec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14536, 'Sveta Nedelja', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14537, 'Sveti Ivan Zelina', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14538, 'Turopolje', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14539, 'Velika Gorica', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14540, 'Velika Mlaka', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14541, 'Velika Ostrna', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14542, 'Vrbovec', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14543, 'Vukovina', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14544, 'Zapreshic', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14545, 'Zdenci Brdovechki', 892, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14546, 'Camaguey', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14547, 'Caney', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14548, 'Carlos Manuel de Cespedes', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14549, 'Esmeralda', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14550, 'Florida', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14551, 'Guaimaro', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14552, 'Minas', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14553, 'Nuevitas', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14554, 'Santa Cruz del Sur', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14555, 'Sibanicu', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14556, 'Vertientes', 893, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14557, 'Cienfuegos', 895, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14558, 'Cruces', 895, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14559, 'Cumanayagua', 895, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14560, 'Palmira', 895, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14561, 'Rodas', 895, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(14562, 'Bayamo', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14563, 'Campechuela', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14564, 'Guisa', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14565, 'Jiguani', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14566, 'Manzanillo', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14567, 'Media Luna', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14568, 'Niquero', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14569, 'Pilon', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14570, 'Rio Cauto', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14571, 'Yara', 897, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14572, 'Baracoa', 898, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14573, 'Guantanamo', 898, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14574, 'Yateras', 898, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14575, 'Havana', 899, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14576, 'Antilla', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14577, 'Baguanos', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14578, 'Banes', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14579, 'Cacocum', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14580, 'Cauto Cristo', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14581, 'Cueto', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14582, 'Gibara', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14583, 'Holguin', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14584, 'Jobabo', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14585, 'Moa', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14586, 'Sagua de Tanamo', 900, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14587, 'Abreus', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14588, 'Agramonte', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14589, 'Aguacate', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14590, 'Aguada de Pasajeros', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14591, 'Alacranes', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14592, 'Bolondron', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14593, 'Calimete', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14594, 'Cardenas', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14595, 'Carlos Rojas', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14596, 'Colon', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14597, 'Corralillo', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14598, 'Jaguey Grande', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14599, 'Jovellanos', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14600, 'Juan Gualberto Gomez', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14601, 'Los Arabos', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14602, 'Manguito', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14603, 'Marti', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14604, 'Matanzas', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14605, 'Maximo Gomez', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14606, 'Pedro Betancourt', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14607, 'Perico', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14608, 'Union de Reyes', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14609, 'Varadero', 904, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14610, 'Limassol', 910, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14611, 'Paphos', 912, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14612, 'Frycovice', 915, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14613, 'Bechyne', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14614, 'Blatna', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14615, 'Cheske Budejovice', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14616, 'Chesky Krumlov', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14617, 'Dachice', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14618, 'Jindrichuv Hradec', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14619, 'Kaplice', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14620, 'Milevsko', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14621, 'Pisek', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14622, 'Prachatice', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14623, 'Protivin', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14624, 'Sezimovo Usti', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14625, 'Sobeslav', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14626, 'Strakonice', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14627, 'Tabor', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14628, 'Trebon', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14629, 'Tyn nad Vltavou', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14630, 'Veseli nad Luzhnici', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14631, 'Vimperk', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14632, 'Vodnany', 917, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14633, 'Adamov', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14634, 'Blansko', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14635, 'Boskovice', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14636, 'Breclav', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14637, 'Brno', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14638, 'Buchovice', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14639, 'Dubnany', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14640, 'Hodonin', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14641, 'Hrusky', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14642, 'Hustopeche', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14643, 'Ivanchice', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14644, 'Kurim', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14645, 'Kyjov', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14646, 'Letovice', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14647, 'Mikulov', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14648, 'Moravsky Krumlov', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14649, 'Namesht\' nad Oslavou', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14650, 'Rosice', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14651, 'Shlapanice', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14652, 'Slavkov u Brna', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14653, 'Tishnov', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14654, 'Vyshkov', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14655, 'Znojmo', 918, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14656, 'Ash', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14657, 'Bozicany', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14658, 'Cheb', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14659, 'Chodov', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14660, 'Frantishkovy Lazne', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14661, 'Horni Slavkov', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14662, 'Karlovy Vary', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14663, 'Kraslice', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14664, 'Kynshperk nad Ohri', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14665, 'Marianske Lazne', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14666, 'Nejdek', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14667, 'Ostrov', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14668, 'Sokolov', 919, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14669, 'Klecany', 920, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14670, 'Broumov', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14671, 'Cherveny Kostelec', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14672, 'Cheska Skalice', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14673, 'Chlumec nad Cidlinou', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14674, 'Dobrushka', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14675, 'Dvur Kralove', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14676, 'Habartov', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14677, 'Holice', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14678, 'Horice', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14679, 'Hostinne', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14680, 'Hradec Kralove', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14681, 'Hronov', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14682, 'Jaromer', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14683, 'Jichin', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14684, 'Kostelec nad Orlici', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14685, 'Nachod', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14686, 'Nova Paka', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14687, 'Nove Mesto nad Metuji', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14688, 'Novy Bydzhov', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14689, 'Rychnov nad Knezhnou', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14690, 'Trebechovice pod Orebem', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14691, 'Trutnov', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14692, 'Tynishte nad Orlici', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14693, 'Upice', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14694, 'Vrchlabi', 921, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14695, 'Ceska Lipa', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14696, 'Cheska Kamenice', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14697, 'Cheska Lipa', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14698, 'Chrastava', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14699, 'Doksy', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14700, 'Frydlant', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14701, 'Hradek', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14702, 'Jablonec', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14703, 'Jilemnice', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14704, 'Liberec', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14705, 'Lomnice nad Popelkou', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14706, 'Mimon', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14707, 'Novy Bor', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14708, 'Semily', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14709, 'Tanvald', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14710, 'Turnov', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14711, 'Zhelezny Brod', 922, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14712, 'Lipov', 923, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14713, 'Bilovec', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14714, 'Bohumin', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14715, 'Bruntal', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14716, 'Chesky Teshin', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14717, 'Frenshtat', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14718, 'Frydek-Mistek', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14719, 'Frydlant nad Ostravici', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14720, 'Fulnek', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14721, 'Havirov', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14722, 'Hluchin', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14723, 'Hradec nad Moravice', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14724, 'Jablunkov', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14725, 'Karvina', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14726, 'Koprivnice', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14727, 'Kravare', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14728, 'Krnov', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14729, 'Novy Jichin', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14730, 'Odry', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14731, 'Opava', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14732, 'Orlova', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14733, 'Ostrava', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14734, 'Petrvald', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14735, 'Pribor', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14736, 'Rychvald', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14737, 'Rymarov', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14738, 'Shenov', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14739, 'Studenka', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14740, 'Trinec', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14741, 'Vitkov', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14742, 'Vratimov', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14743, 'Vrbno pod Pradedem', 924, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14744, 'Hranice', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14745, 'Jesenik', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14746, 'Kojetin', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14747, 'Lipnik nad Becvou', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14748, 'Litovel', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14749, 'Mohelnice', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14750, 'Olomouc', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14751, 'Prerov', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14752, 'Prostejov', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14753, 'Shternberk', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14754, 'Shumperk', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14755, 'Unichov', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14756, 'Zabreh', 925, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14757, 'Hranice', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14758, 'Jesenik', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14759, 'Kojetin', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14760, 'Lipnik nad Becvou', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14761, 'Litovel', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14762, 'Mohelnice', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14763, 'Olomouc', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14764, 'Prerov', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14765, 'Prostejov', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14766, 'Shternberk', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14767, 'Shumperk', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14768, 'Unichov', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14769, 'Zabreh', 926, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14770, 'Cheska Trebova', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14771, 'Chocen', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14772, 'Chrudim', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14773, 'Chvaletice', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14774, 'Hermanuv Mestec', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14775, 'Hlinsko', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14776, 'Lanshkroun', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14777, 'Letohrad', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14778, 'Litomyshl', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14779, 'Moravska Trebova', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14780, 'Pardubice', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14781, 'Polichka', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14782, 'Policka', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14783, 'Prelouch', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14784, 'Skutech', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14785, 'Svitavy', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14786, 'Usti nad Orlici', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14787, 'Vysoke Myto', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14788, 'Zhamberk', 927, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14789, 'Dobrany', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14790, 'Domazhlice', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14791, 'Horazhd\'ovice', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14792, 'Horshovky Tyn', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14793, 'Kdyne', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14794, 'Klatovy', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14795, 'Nyrany', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14796, 'Nyrsko', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14797, 'Plana', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14798, 'Plzen', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14799, 'Preshtice', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14800, 'Radnice', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14801, 'Rokycany', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14802, 'Stribro', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14803, 'Sushice', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14804, 'Tachov', 928, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14805, 'Prague', 929, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14806, 'Praha', 929, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14807, 'Rajhrad', 930, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14808, 'Smirice', 931, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14809, 'Benatky nad Jizerou', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14810, 'Beneshov', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14811, 'Beroun', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14812, 'Brandys nad Labem-Stara Bolesl', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14813, 'Chaslav', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14814, 'Chavaletice', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14815, 'Chelakovice', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14816, 'Chesky Brod', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14817, 'Dobrish', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14818, 'Horovice', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14819, 'Kladno', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14820, 'Kolin', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14821, 'Kralupy nad Vltavou', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14822, 'Kutna Hora', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14823, 'Lysa nad Labem', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14824, 'Melnik', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14825, 'Mlada Boleslav', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14826, 'Mnichovo Hradishte', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14827, 'Neratovice', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14828, 'Nove Strasheci', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14829, 'Nymburk', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14830, 'Podebrady', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14831, 'Pribram', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14832, 'Rakovnik', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14833, 'Richany', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14834, 'Rousinov', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14835, 'Roztoky', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14836, 'Sedlcany', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14837, 'Slany', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14838, 'Stochov', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14839, 'Vlashim', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14840, 'Zruch nad Sazavou', 934, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14841, 'Unicov', 935, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14842, 'Bilina', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14843, 'Chomutov', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14844, 'Dechin', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14845, 'Dubi', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14846, 'Duchcov', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14847, 'Jilove', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14848, 'Jirkov', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14849, 'Kadan', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14850, 'Klasterec nad Ohri', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14851, 'Krupka', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14852, 'Litomerice', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14853, 'Litvinov', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14854, 'Louny', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14855, 'Lovosice', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14856, 'Mezibori', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14857, 'Most', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14858, 'Osek', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14859, 'Podborany', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14860, 'Roudnice', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14861, 'Rumburk', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14862, 'Shluknov', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14863, 'Shteti', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14864, 'Teplice', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14865, 'Usti', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14866, 'Varnsdorf', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14867, 'Zatec', 936, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14868, 'Valletta', 937, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14869, 'Velesin', 938, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14870, 'Bystrice nad Pernshtejnem', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14871, 'Chotebor', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14872, 'Havlichkuv Brod', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14873, 'Humpolec', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14874, 'Jihlava', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14875, 'Ledech', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14876, 'Moravske Budejovice', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14877, 'Nove Mesto na Morave', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14878, 'Okrisky', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14879, 'Pacov', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14880, 'Pelhrimov', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14881, 'Polna', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14882, 'Svetla nad Sazavou', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14883, 'Telch', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14884, 'Trebich', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14885, 'Tresht\'', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14886, 'Velke Mezirichi', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14887, 'Zhd\'ar', 939, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14888, 'Brumov', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14889, 'Bystrice pod Hostynem', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14890, 'Chropyne', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14891, 'Holeshov', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14892, 'Hulin', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14893, 'Kromerizh', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14894, 'Kunovice', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14895, 'Napajedla', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14896, 'Otrokovice', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14897, 'Rozhnov', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14898, 'Roznov pod Radhostem', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14899, 'Slavicin', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14900, 'Slusovice', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14901, 'Stare Mesto', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14902, 'Strazhnice', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14903, 'Uherske Hradishte', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14904, 'Uhersky Brod', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14905, 'Valashske Klobouky', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14906, 'Valashske Mezirichi', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14907, 'Veseli nad Moravou', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14908, 'Vsetin', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14909, 'Zborovice', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14910, 'Zlin', 940, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14911, 'Aarhus', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14912, 'Allingabro', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14913, 'Arhus', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14914, 'Assentoft', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14915, 'Auning', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14916, 'Beder', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14917, 'Brabrand', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14918, 'Ebeltoft', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14919, 'Framlev', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14920, 'Galten', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14921, 'Grenaa', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14922, 'Hadsten', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14923, 'Hammel', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14924, 'Hinnerup', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14925, 'Hjortshoj', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14926, 'Horning', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14927, 'Hornslet', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14928, 'Kolt', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14929, 'Langa', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14930, 'Logten', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14931, 'Lystrup', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14932, 'Malling', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14933, 'Mariager', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14934, 'Marslet', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14935, 'Odder', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14936, 'Randers', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14937, 'Risskov', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14938, 'Ronde', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14939, 'Ry', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14940, 'Ryomgard', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14941, 'Sabro', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14942, 'Silkeborg', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14943, 'Skanderborg', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14944, 'Skovby', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14945, 'Soften', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14946, 'Solbjerg', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14947, 'Spentrup', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14948, 'Stavtrup', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14949, 'Stilling', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14950, 'Svejbak', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14951, 'Tranbjerg', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14952, 'Trige', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14953, 'Virklund', 941, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14954, 'Aakirkeby', 942, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14955, 'Allinge-Sandvig', 942, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14956, 'Nexo', 942, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14957, 'Ronne', 942, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14958, 'Allerod', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14959, 'Birkerod', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14960, 'Blovstrod', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14961, 'Espergarde', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14962, 'Farum', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14963, 'Fredensborg', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14964, 'Frederikssund', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14965, 'Frederiksvark', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14966, 'Ganlose', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14967, 'Gilleleje', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14968, 'Grasted', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14969, 'Hellebak', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14970, 'Helsinge', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14971, 'Helsingor', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14972, 'Hillerod', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14973, 'Hornbak', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14974, 'Horsholm', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14975, 'Humlebak', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14976, 'Hundested', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14977, 'Jagerspris', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14978, 'Kvistgaard', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14979, 'Lillerod', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14980, 'Liseleje', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14981, 'Lynge', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14982, 'Niva', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14983, 'Nodebo', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14984, 'Olstykke', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14985, 'Skibby', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14986, 'Slangerup', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14987, 'Stavnsholt', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14988, 'Stenlose', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14989, 'Valby', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14990, 'Vekso', 943, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14991, 'Aarup', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14992, 'Arslev', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14993, 'Assens', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14994, 'Bellinge', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14995, 'Blommenslyst', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14996, 'Bogense', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14997, 'Brenderup', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14998, 'Broby', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(14999, 'Bullerup', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15000, 'Ejby', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15001, 'Faaborg', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15002, 'Glamsbjerg', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15003, 'Haarby', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15004, 'Hojby', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15005, 'Kerteminde', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15006, 'Langeskov', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15007, 'Marstal', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15008, 'Middelfart', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15009, 'Munkebo', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15010, 'Neder Holluf', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15011, 'Norre Aaby', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15012, 'Nyborg', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15013, 'Odense', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15014, 'Otterup', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15015, 'Ringe', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15016, 'Rudkobing', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15017, 'Sankt Klemens', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15018, 'Seden', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15019, 'Sonderso', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15020, 'Stige', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15021, 'Strib', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15022, 'Svendborg', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15023, 'Thuro', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15024, 'Tommerup', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15025, 'Ullerslev', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15026, 'Vindeby', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15027, 'Vissenbjerg', 944, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15028, 'Ballerup', 945, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15029, 'Brondby', 945, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15030, 'Stenlose', 945, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15031, 'Vallensbaek', 945, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15032, 'Dragor', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15033, 'Flong', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15034, 'Gentofte', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15035, 'Glostrup', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15036, 'Herlev', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15037, 'Hvidovre', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15038, 'Ishoj', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15039, 'Kastrup', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15040, 'Lyngby', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15041, 'Malov', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15042, 'Smorumnedre', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15043, 'Taastrup', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15044, 'Trorod', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15045, 'Vanlose', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15046, 'Varlose', 946, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15047, 'Aabybro', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15048, 'Aalborg', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15049, 'Aars', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15050, 'Arden', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15051, 'Bindslev', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15052, 'Bronderslev', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15053, 'Brovst', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15054, 'Dronninglund', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15055, 'Farso', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15056, 'Fjerritslev', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15057, 'Frederikshavn', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15058, 'Frejlev', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15059, 'Gistrup', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15060, 'Gorlose', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15061, 'Hadsund', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15062, 'Hals', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15063, 'Hirtshals', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15064, 'Hjallerup', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15065, 'Hjorring', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15066, 'Hobro', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15067, 'Kas', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15068, 'Klarup', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15069, 'Logstor', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15070, 'Nibe', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15071, 'Norresundby', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15072, 'Nørresundby', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15073, 'Pandrup', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15074, 'Saby', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15075, 'Sindal', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15076, 'Skagen', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15077, 'Skorping', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15078, 'Storvorde', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15079, 'Stovring', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15080, 'Strandby', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15081, 'Sulsted', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15082, 'Svenstrup', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15083, 'Tars', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15084, 'Tranekaer', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15085, 'Vadum', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15086, 'Vestbjerg', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15087, 'Vester Hassing', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15088, 'Vodskov', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15089, 'Vra', 949, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15090, 'Ansager', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15091, 'Billund', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15092, 'Bramming', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15093, 'Brorup', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15094, 'Esbjerg', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15095, 'Grindsted', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15096, 'Holsted', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15097, 'Nordby', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15098, 'Oksbol', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15099, 'Olgod', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15100, 'Ribe', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15101, 'Tjareborg', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15102, 'Varde', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15103, 'Vejen', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15104, 'Vorbasse', 950, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15105, 'Aulum', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15106, 'Bording', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15107, 'Brande', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15108, 'Gjellerup Kirkeby', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15109, 'Hammerum', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15110, 'Harboore', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15111, 'Herning', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15112, 'Holstebro', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15113, 'Hvide Sande', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15114, 'Ikast', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15115, 'Kibak', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15116, 'Lemvig', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15117, 'Lind', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15118, 'Ringkobing', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15119, 'Skaerbaek', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15120, 'Skjern', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15121, 'Snejbjerg', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15122, 'Struer', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15123, 'Sunds', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15124, 'Tarm', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15125, 'Thyboron', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15126, 'Ulfborg', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15127, 'Videbak', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15128, 'Vildbjerg', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15129, 'Vinderup', 951, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15130, 'Roervig', 952, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15131, 'Bjaverskov', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15132, 'Borup', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15133, 'Ejby', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15134, 'Greve Strand', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15135, 'Gundsomagle', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15136, 'Harlev', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15137, 'Havdrup', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15138, 'Hvalso', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15139, 'Jyllinge', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15140, 'Koge', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15141, 'Lejre', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15142, 'Osted', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15143, 'Roskilde', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15144, 'Solrod', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(15145, 'Stroby Egede', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15146, 'Svogerslev', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15147, 'Tune', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15148, 'Viby', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15149, 'Vindinge', 953, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15150, 'Glyngore', 954, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15151, 'Karise', 955, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15152, 'Naestved', 955, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15153, 'Soeborg', 956, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15154, 'Aabenraa', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15155, 'Aarsleve', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15156, 'Augustenborg', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15157, 'Broager', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15158, 'Christiansfeld', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15159, 'Dybbol', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15160, 'Gram', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15161, 'Grasten', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15162, 'Guderup', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15163, 'Haderslev', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15164, 'Horuphav', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15165, 'Krusa', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15166, 'Logumkloster', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15167, 'Lojt Kirkeby', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15168, 'Nordborg', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15169, 'Padborg', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15170, 'Rodding', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15171, 'Rodekro', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15172, 'Skarbak', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15173, 'Sonderborg', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15174, 'Starup', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15175, 'Tinglev', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15176, 'Toftlund', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15177, 'Tonder', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15178, 'Vojens', 957, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15179, 'Fakse', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15180, 'Fakse Ladeplads', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15181, 'Fensmark', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15182, 'Holeby', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15183, 'Maribo', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15184, 'Nakskov', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15185, 'Nastved', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15186, 'Neder Vindinge', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15187, 'Norre Alslev', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15188, 'Nykobing', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15189, 'Nyrad', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15190, 'Orslev', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15191, 'Prasto', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15192, 'Rodby', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15193, 'Rodbyhavn', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15194, 'Ronnede', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15195, 'Sakskobing', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15196, 'Stege', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15197, 'Store Heddinge', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15198, 'Stubbekobing', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15199, 'Sundby', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15200, 'Vordingborg', 958, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15201, 'Bylderup-Bov', 959, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15202, 'Fovling', 959, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15203, 'Toelloese', 960, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15204, 'Borkop', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15205, 'Bradstrup', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15206, 'Brejning', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15207, 'Egtved', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15208, 'Fredericia', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15209, 'Give', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15210, 'Hedensted', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15211, 'Horsens', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15212, 'Jelling', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15213, 'Juelsminde', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15214, 'Kolding', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15215, 'Lunderskov', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15216, 'Snoghoj', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15217, 'Sonder Bjert', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15218, 'Taulov', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15219, 'Torring', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15220, 'Vamdrup', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15221, 'Vejle', 961, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15222, 'Asnas', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15223, 'Dianalund', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15224, 'Forlev', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15225, 'Frederiksberg', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15226, 'Fuglebjerg', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15227, 'Gorlev', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15228, 'Haslev', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15229, 'Holbaek', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15230, 'Hong', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15231, 'Horve', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15232, 'Jyderup', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15233, 'Kalundborg', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15234, 'Korsor', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15235, 'Nykobing', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15236, 'Ringsted', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15237, 'Skalskor', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15238, 'Slagelse', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15239, 'Soro', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15240, 'Svebolle', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15241, 'Svinninge', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15242, 'Tollose', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15243, 'Vipperod', 962, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15244, 'Aalestrup', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15245, 'Bjerringbro', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15246, 'Hanstholm', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15247, 'Hojslev', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15248, 'Hurup', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15249, 'Karup', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15250, 'Kjellerup', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15251, 'Nykobing', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15252, 'Skive', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15253, 'Stoholm', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15254, 'Thisted', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15255, 'Ulstrup', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15256, 'Viborg', 963, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15257, 'Dikhil', 965, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15258, 'Jibuti', 966, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15259, 'Tajurah', 967, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15260, 'Ubuk', 968, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15261, 'Azua', 979, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15262, 'Sabana Yegua', 979, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15263, 'Neyba', 980, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15264, 'Tamayo', 980, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15265, 'Barahona', 981, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15266, 'Cabral', 981, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15267, 'El Penon', 981, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15268, 'Dajabon', 982, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15269, 'Las Guaranas', 984, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15270, 'Pimentel', 984, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15271, 'San Francisco de Macoris', 984, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15272, 'Moca', 987, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15273, 'Duverge', 989, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15274, 'Jimani', 989, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15275, 'Pedernales', 997, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15276, 'Bani', 998, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15277, 'Ocoa', 998, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15278, 'Salcedo', 1000, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15279, 'Samana', 1001, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15280, 'Sanchez', 1001, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15281, 'Santiago', 1006, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15282, 'Tamboril', 1006, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15283, 'Villa Bisono', 1006, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15284, 'Santiago', 1007, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15285, 'Tamboril', 1007, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15286, 'Villa Bisono', 1007, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15287, 'Esperanza', 1008, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15288, 'Mao', 1008, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15289, 'Aileu', 1009, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15290, 'Ainaro', 1010, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15291, 'Pante Macassar', 1011, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15292, 'Baucau', 1012, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15293, 'Auba', 1013, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15294, 'Lolotoi', 1013, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15295, 'Maliana', 1013, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15296, 'Dare', 1015, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15297, 'Dili', 1015, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15298, 'Metinaro', 1015, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15299, 'Ermera', 1016, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15300, 'Lautem', 1017, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15301, 'Los Palos', 1017, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15302, 'Bazartete', 1018, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15303, 'Liquica', 1018, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15304, 'Manatuto', 1019, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15305, 'Same', 1020, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15306, 'Viqueque', 1021, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15307, 'Cuenca', 1022, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15308, 'Gualaceo', 1022, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15309, 'Guaranda', 1023, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15310, 'San Miguel', 1023, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15311, 'Azogues', 1024, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15312, 'Canar', 1024, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15313, 'La Troncal', 1024, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15314, 'El Angel', 1025, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15315, 'San Gabriel', 1025, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15316, 'Tulcan', 1025, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15317, 'Alausi', 1026, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15318, 'Guano', 1026, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15319, 'Riobamba', 1026, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15320, 'La Mana', 1027, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15321, 'Latacunga', 1027, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15322, 'Pujili', 1027, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15323, 'San Miguel', 1027, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15324, 'Saquisili', 1027, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15325, 'Esmeraldas', 1029, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15326, 'Muisne', 1029, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15327, 'Rosa Zarate', 1029, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15328, 'San Lorenzo', 1029, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15329, 'Valdez', 1029, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15330, 'Puerto Ayora', 1030, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15331, 'Puerto Baquerizo Moreno', 1030, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15332, 'San Cristobal', 1030, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15333, 'Alfredo Baquerizo Moreno', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15334, 'Balao', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15335, 'Balzar', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15336, 'Colimes', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15337, 'Coronel Mariduena', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15338, 'Daule', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15339, 'El Salitre', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15340, 'El Triunfo', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15341, 'Eloy Alfaro', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15342, 'Guayaquil', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15343, 'La Libertad', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15344, 'Lomas de Sargentillo', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15345, 'Mapasingue', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15346, 'Milagro', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15347, 'Naranjal', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15348, 'Naranjito', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15349, 'Palestina', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15350, 'Pedro Carbo', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15351, 'Playas', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15352, 'Salinas', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15353, 'Samborondon', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15354, 'Santa Elena', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15355, 'Santa Lucia', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15356, 'Velasco Ibarra', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15357, 'Yaguachi', 1031, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15358, 'Atuntaqui', 1032, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15359, 'Cotacachi', 1032, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15360, 'Ibarra', 1032, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15361, 'Otavalo', 1032, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15362, 'Pimampiro', 1032, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15363, 'Alamor', 1033, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15364, 'Cariamanga', 1033, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15365, 'Catacocha', 1033, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15366, 'Catamayo', 1033, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15367, 'Celica', 1033, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15368, 'Loja', 1033, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15369, 'Macara', 1033, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15370, 'Bahia de Caraquez', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15371, 'Calceta', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15372, 'Chone', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15373, 'El Carmen', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15374, 'Jipijapa', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15375, 'Junin', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15376, 'Manta', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15377, 'Montecristi', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15378, 'Pajan', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15379, 'Pedernales', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15380, 'Portoviejo', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15381, 'Rocafuerte', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15382, 'Santa Ana', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15383, 'Sucre', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15384, 'Tosagua', 1035, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15385, 'Archidona', 1037, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15386, 'Tena', 1037, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15387, 'Orellana', 1038, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15388, 'Puyo', 1039, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15389, 'Cayambe', 1040, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15390, 'Machachi', 1040, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15391, 'Quito', 1040, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15392, 'Sangolqui', 1040, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15393, 'Santo Domingo', 1040, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15394, 'Nueva Loja', 1041, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15395, 'Shushufindi', 1041, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15396, 'Ambato', 1042, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15397, 'Banos', 1042, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15398, 'Pelileo', 1042, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15399, 'Pillaro', 1042, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15400, 'Aswan', 1044, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15401, 'Daraw', 1044, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15402, 'Kawm Umbu', 1044, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15403, 'an-Nasir', 1044, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15404, 'Abnub', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15405, 'Abu Tij', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15406, 'Asyut', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15407, 'Bani Muhammadiyat', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15408, 'Dayrut', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15409, 'Dayrut-ash-Sharif', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15410, 'Manfalut', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15411, 'Musha', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15412, 'Sahil Salim', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15413, 'Sanabu', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15414, 'Umm-al-Qusur', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15415, 'al-Badari', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15416, 'al-Qusiyah', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15417, 'an-Nukhaylah', 1045, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15418, '6th of October City', 1048, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15419, 'Ataba', 1048, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15420, 'Cairo', 1048, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15421, 'Nasr', 1048, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15422, 'Nasr City', 1048, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15423, 'Obour City', 1048, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15424, '\'Izbat-al-Burj', 1049, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15425, 'Damietta', 1049, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15426, 'Dumyat', 1049, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15427, 'El-Zarka', 1049, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15428, 'Faraskur', 1049, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15429, 'Kafr Sa\'d', 1049, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15430, 'Kafr-al-Battikh', 1049, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15431, 'az-Zarqa', 1049, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15432, 'Biyala', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15433, 'Disuq', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15434, 'Fuwah', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15435, 'Kafr-al-Jara\'idah', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15436, 'Kafr-ash-Shaykh', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15437, 'Mutubis', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15438, 'Qallin', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15439, 'Sidi Salim', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15440, 'al-Burj', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15441, 'al-Burullus', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15442, 'al-Haddadi', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15443, 'al-Hamul', 1050, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15444, 'Marsa Matruh', 1051, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15445, 'Nasr', 1051, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15446, 'Sidi Barrani', 1051, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15447, 'Zawiyat Shammas', 1051, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15448, 'ad-Da\'ba', 1051, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15449, 'Armant', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15450, 'Asfun-al-Mata\'inah', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15451, 'Dandarah', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15452, 'Dishna', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15453, 'Farshut', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15454, 'Hijazah', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15455, 'Hiw', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15456, 'Idfu', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15457, 'Isna', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15458, 'Kiman-al-Mata\'inah', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15459, 'Naj\' Hammadi', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15460, 'Naqadah', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15461, 'Qift', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15462, 'Qina', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15463, 'Qus', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15464, 'ad-Dabbiyah', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15465, 'ad-Dayr', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15466, 'al-Ballas', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15467, 'al-Karnak', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15468, 'al-Waqf', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15469, 'ar-Radisiyat-al-Bahriyah', 1057, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15470, 'Akhmim', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15471, 'Awlad Tawq Sharq', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15472, 'Dar-as-Salam', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15473, 'Jirja', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15474, 'Juhaynah', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15475, 'Sawhaj', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15476, 'Tahta', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15477, 'Tima', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15478, 'al-Balyana', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15479, 'al-Manshah', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15480, 'al-Maragah', 1058, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15481, 'Aja', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15482, 'Bahut', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15483, 'Bilqas', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15484, 'Dikirnis', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15485, 'Minyat-an-Nasr', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15486, 'Mit Gamr', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15487, 'Shirbin', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15488, 'Talkha', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15489, 'al-Jamaliyah', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15490, 'al-Ma\'sarah', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15491, 'al-Mansurah', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15492, 'al-Manzilah', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15493, 'al-Matariyah', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15494, 'as-Sinbillawayn', 1061, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15495, 'Ras Gharib', 1062, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15496, 'Safaja', 1062, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15497, 'al-Ghardaqah', 1062, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15498, 'al-Qusayr', 1062, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15499, 'Abu Hummus', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15500, 'Abu al-Matamir', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15501, 'Buturis', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15502, 'Damanhur', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15503, 'Edfina', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15504, 'Hawsh \'Isa', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15505, 'Idku', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15506, 'Ityay-al-Barud', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15507, 'Kafr Salim', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15508, 'Kafr-ad-Dawwar', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15509, 'Kawm Hamada', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15510, 'Nubaria', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15511, 'Rashid', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15512, 'Shubra Khit', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15513, 'Zawiyat Sidi Gazi', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15514, 'ad-Dilinjat', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15515, 'al-Kawm-al-Akhdar', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15516, 'al-Mahmudiyah', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15517, 'ar-Rahmaniyah', 1063, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15518, 'Fidimin', 1064, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15519, 'Ibshaway', 1064, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15520, 'Itsa', 1064, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15521, 'Qasr Qarun', 1064, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15522, 'Sanhur', 1064, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15523, 'Sinnuris', 1064, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15524, 'Tamiyah', 1064, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15525, 'al-Fayyum', 1064, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15526, 'Abyar', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15527, 'Basyun', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15528, 'Kafr-az-Zayyat', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15529, 'Mahallat Marhum', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15530, 'Nisf Thani Bashbish', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15531, 'Qutur', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15532, 'Samannud', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15533, 'Tanta', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15534, 'Zifta', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15535, 'ad-Daljamun', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15536, 'al-Mahallah al-Kubra', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15537, 'as-Santah', 1065, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15538, 'Agamy', 1066, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15539, 'al-Iskandariyah', 1066, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15540, 'al-Maks', 1066, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15541, 'Fa\'id', 1067, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15542, 'Sarabiyum', 1067, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15543, 'al-Ismailiyah', 1067, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15544, 'Atfih', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15545, 'Awsim', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15546, 'Giza', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15547, 'Madinat Sittah Uktubar', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15548, 'Nahya', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15549, 'Saqqarah', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15550, 'al-\'Ayyat', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15551, 'al-Badrashayn', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15552, 'al-Hawamidiyah', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15553, 'al-Jizah', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15554, 'al-Mansuriyah', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15555, 'al-Wahat-al-Bahriyah', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15556, 'as-Saff', 1068, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15557, 'Ashmun', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15558, 'Birkat-as-Sab\'', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15559, 'Milij', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15560, 'Minuf', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15561, 'Quwaysina', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15562, 'Shibin-al-Kawm', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15563, 'Sirs-al-Layyanah', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15564, 'Tala', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15565, 'al-Bajur', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15566, 'al-Batanun', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15567, 'ash-Shuhada', 1069, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15568, 'Abu Qurqas', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15569, 'Bani Mazar', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15570, 'Dayr Mawas', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15571, 'Magagah', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15572, 'Mallawi', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15573, 'Matay', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15574, 'Samalut', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15575, 'Tallah', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15576, 'Tandah', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15577, 'al-Anayim', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15578, 'al-Fikriyah', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15579, 'al-Minya', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15580, 'ar-Rawdah', 1070, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15581, 'Badr City', 1071, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15582, 'Heliopolis', 1071, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15583, 'al-Qahira', 1071, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15584, 'Abu Za\'bal', 1072, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15585, 'Banha', 1072, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15586, 'Qalyub', 1072, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15587, 'Shubra al-Khaymah', 1072, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15588, 'Sibin-al-Qanatir', 1072, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15589, 'Tukh', 1072, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15590, 'al-Khankah', 1072, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15591, 'al-Qanatir-al-Khayriyah', 1072, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15592, 'al-Uqsur', 1073, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15593, 'as-Suways', 1075, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15594, 'Abu Hammad', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15595, 'Abu Kabir', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15596, 'Bilbays', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15597, 'Diyarb Najm', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15598, 'Faqus', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15599, 'Hihya', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15600, 'Kafr Saqr', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15601, 'Mashtul-as-Suq', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15602, 'Minyat-al-Qamh', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15603, 'al-Ashir mir-Ramadan', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15604, 'al-Husayniyah', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15605, 'al-Ibrahimiyah', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15606, 'al-Qanayat', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15607, 'al-Qassasin', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15608, 'al-Qurayn', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15609, 'as-Salihiyah', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15610, 'at-Tall-al-Kabir', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15611, 'az-Zaqaziq', 1076, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15612, 'Ahuachapan', 1077, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15613, 'Atiquizaya', 1077, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15614, 'Concepcion de Ataco', 1077, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15615, 'Guaymango', 1077, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15616, 'Jujutla', 1077, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15617, 'San Francisco Menendez', 1077, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15618, 'Tacuba', 1077, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15619, 'Ilobasco', 1078, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15620, 'Sensuntepeque', 1078, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15621, 'Victoria', 1078, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15622, 'Chalatenango', 1079, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15623, 'La Palma', 1079, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15624, 'Nueva Concepcion', 1079, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15625, 'San Francisco Morazan', 1079, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15626, 'Cojutepeque', 1080, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15627, 'San Pedro Perulapan', 1080, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15628, 'Suchitoto', 1080, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15629, 'Tecoluca', 1080, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15630, 'Tenancingo', 1080, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15631, 'Cacaopera', 1084, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15632, 'Corinto', 1084, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15633, 'Gotera', 1084, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15634, 'Guatajiagua', 1084, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15635, 'Jocoro', 1084, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15636, 'Sociedad', 1084, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15637, 'Acajutla', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15638, 'Armenia', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15639, 'Izalco', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15640, 'Juayua', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15641, 'Nahuizalco', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15642, 'San Antonio del Monte', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15643, 'San Julian', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15644, 'Sonsonate', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15645, 'Sonzacate', 1089, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15646, 'Berlin', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15647, 'Concepcion Batres', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15648, 'Estanzuelas', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15649, 'Jiquilisco', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15650, 'Jucuapa', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15651, 'Jucuaran', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15652, 'Ozatlan', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15653, 'Puerto El Triunfo', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15654, 'San Agustin', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15655, 'Santa Elena', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15656, 'Santiago de Maria', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15657, 'Usulutan', 1090, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15658, 'Pale', 1091, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15659, 'Ebebiyin', 1095, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15660, 'Mikomeseng', 1095, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15661, 'Bata', 1096, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15662, 'Mbini', 1096, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15663, 'Aconibe', 1097, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15664, 'Anisoc', 1097, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15665, 'Mongomo', 1097, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15666, 'Nsok', 1097, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15667, 'Keren', 1098, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15668, 'Addi Kwala', 1099, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15669, 'Addi Ugri', 1099, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15670, 'Asseb', 1100, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15671, 'Beylul', 1100, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15672, 'Edd', 1100, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15673, 'Mersa Fatma', 1100, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15674, 'Ak\'ordat', 1101, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15675, 'Barentu', 1101, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15676, 'Teseney', 1101, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15677, 'Asmara', 1102, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15678, 'Ginda', 1102, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15679, 'Himbirti', 1102, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15680, 'Nefasit', 1102, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15681, 'Addi K\'eyih', 1103, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15682, 'Dek\'emhare', 1103, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15683, 'Mitsiwa', 1103, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15684, 'Sen\'afe', 1103, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15685, 'Aasmae', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15686, 'Aaviku', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15687, 'Aegviidu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15688, 'Aigrumae', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15689, 'Aila', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15690, 'Alavere', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15691, 'Alliku', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15692, 'Amari', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15693, 'Anija', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15694, 'Ardu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15695, 'Arukula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15696, 'Aruvalla', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15697, 'Assaku', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15698, 'Ellamaa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15699, 'Haabneeme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15700, 'Habaja', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15701, 'Haiba', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15702, 'Haljava', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15703, 'Hara', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15704, 'Harju-Risti', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15705, 'Harku', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15706, 'Harkujarve', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15707, 'Harma', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15708, 'Huuru', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15709, 'Ilmandu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15710, 'Iru', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15711, 'Jagala', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15712, 'Jalgimae', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15713, 'Jarsi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15714, 'Jarvekula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15715, 'Jogisoo', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15716, 'Juri', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15717, 'Kaasiku', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15718, 'Kaberneeme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15719, 'Kahala', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15720, 'Kalesi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15721, 'Kallavere', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(15722, 'Karjakula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15723, 'Karla', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15724, 'Kasepere', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15725, 'Kasispea', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15726, 'Kehra', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15727, 'Keila', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15728, 'Keila-Joa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15729, 'Kelvingi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15730, 'Kiia', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15731, 'Kiili', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15732, 'Kiisa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15733, 'Kiiu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15734, 'Klooga', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15735, 'Kloogaranna', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15736, 'Kohatu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15737, 'Kolga', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15738, 'Kolga-Aabla', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15739, 'Kolgakula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15740, 'Konnu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15741, 'Kose', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15742, 'Kose-Uuemoisa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15743, 'Kostivere', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15744, 'Krei', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15745, 'Kuivajoe', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15746, 'Kumna', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15747, 'Kurtna', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15748, 'Kuusalu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15749, 'Laabi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15750, 'Laagri', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15751, 'Lagedi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15752, 'Laitse', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15753, 'Laulasmaa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15754, 'Lehetu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15755, 'Lehola', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15756, 'Lehtmetsa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15757, 'Leppneeme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15758, 'Liikva', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15759, 'Lilli', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15760, 'Lohusalu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15761, 'Loksa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15762, 'Lokuti', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15763, 'Loo', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15764, 'Lubja', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15765, 'Luige', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15766, 'Maardu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15767, 'Maidla', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15768, 'Manniku', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15769, 'Metsakasti', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15770, 'Metsanurme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15771, 'Miiduranna', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15772, 'Munalaskme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15773, 'Muraste', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15774, 'Muuga', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15775, 'Nabala', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15776, 'Neeme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15777, 'Ohtu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15778, 'Ojasoo', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15779, 'Oru', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15780, 'Padise', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15781, 'Pae', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15782, 'Paekna', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15783, 'Pajupea', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15784, 'Paldiski', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15785, 'Palvere', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15786, 'Parispea', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15787, 'Patika', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15788, 'Paunkula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15789, 'Peetri', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15790, 'Peningi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15791, 'Perila', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15792, 'Pikva', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15793, 'Pillapalu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15794, 'Pringi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15795, 'Puunsi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15796, 'Raasiku', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15797, 'Rae', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15798, 'Randvere', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15799, 'Rannamoisa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15800, 'Ravila', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15801, 'Riisipere', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15802, 'Rohuneeme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15803, 'Roobuka', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15804, 'Ruila', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15805, 'Rummu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15806, 'Saha', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15807, 'Saku', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15808, 'Saue', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15809, 'Saula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15810, 'Saunja', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15811, 'Suurpea', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15812, 'Suurupi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15813, 'Tabasalu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15814, 'Tagadi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15815, 'Tagametsa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15816, 'Tallinn', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15817, 'Tammneeme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15818, 'Tiskre', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15819, 'Todva', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15820, 'Turba', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15821, 'Turisalu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15822, 'Tutermaa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15823, 'Tuula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15824, 'Tuulna', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15825, 'Uksnurme', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15826, 'Ulejoe', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15827, 'Uuri', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15828, 'Uuskula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15829, 'Vaana', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15830, 'Vaana-Joesuu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15831, 'Vaida', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15832, 'Vaidasoo', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15833, 'Valingu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15834, 'Valkla', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15835, 'Vanamoisa', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15836, 'Vardja', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15837, 'Vasalemma', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15838, 'Vaskjala', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15839, 'Vatsla', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15840, 'Veskikula', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15841, 'Vihasoo', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15842, 'Viimsi', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15843, 'Viinistu', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15844, 'Viti', 1104, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15845, 'Emmaste', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15846, 'Jausa', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15847, 'Kaina', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15848, 'Kardla', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15849, 'Korgessaare', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15850, 'Lauka', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15851, 'Lope', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15852, 'Mannamaa', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15853, 'Putkaste', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15854, 'Suuremoisa', 1105, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15855, 'Aa', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15856, 'Alajoe', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15857, 'Aseri', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15858, 'Avinurme', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15859, 'Edise', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15860, 'Erra', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15861, 'Iisaku', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15862, 'Jarve', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15863, 'Johvi', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15864, 'Kahula', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15865, 'Kiikla', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15866, 'Kivioli', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15867, 'Kohtla-Jarve', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15868, 'Kohtla-Nomme', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15869, 'Konju', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15870, 'Kose', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15871, 'Kuremae', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15872, 'Kurtna', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15873, 'Lohusuu', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15874, 'Luganuse', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15875, 'Maetaguse', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15876, 'Maidla', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15877, 'Narva', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15878, 'Narva-Joesuu', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15879, 'Olgina', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15880, 'Pagari', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15881, 'Puhajoe', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15882, 'Purtse', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15883, 'Pussi', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15884, 'Rannu', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15885, 'Saka', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15886, 'Savala', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15887, 'Sillamae', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15888, 'Sinimae', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15889, 'Soldina', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15890, 'Sompa', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15891, 'Sonda', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15892, 'Tammiku', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15893, 'Toila', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15894, 'Tudulinna', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15895, 'Ulvi', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15896, 'Vaivara', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15897, 'Varja', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15898, 'Vasavere', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15899, 'Voka', 1106, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15900, 'Ahula', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15901, 'Aiamaa', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15902, 'Albu', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15903, 'Ambla', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15904, 'Anari', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15905, 'Anna', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15906, 'Aravete', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15907, 'Ervita', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15908, 'Imavere', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15909, 'Janeda', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15910, 'Jarva-Jaani', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15911, 'Jogisoo', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15912, 'Jootme', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15913, 'Kaalepi', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15914, 'Kabala', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15915, 'Kahala', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15916, 'Karavete', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15917, 'Karevere', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15918, 'Karinu', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15919, 'Kasukonna', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15920, 'Kirna', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15921, 'Koeru', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15922, 'Koigi', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15923, 'Kolu', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15924, 'Kuksema', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15925, 'Laupa', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15926, 'Lehtse', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15927, 'Lokuta', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15928, 'Loola', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15929, 'Muusleri', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15930, 'Oisu', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15931, 'Paide', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15932, 'Painurme', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15933, 'Peetri', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15934, 'Poikva', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15935, 'Reopalu', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15936, 'Retla', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15937, 'Roa', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15938, 'Roosna', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15939, 'Roosna-Alliku', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15940, 'Sarevere', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15941, 'Sargvere', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15942, 'Taikse', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15943, 'Tarbja', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15944, 'Turi', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15945, 'Turi-Alliku', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15946, 'Vaatsa', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15947, 'Vahukula', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15948, 'Vao', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15949, 'Viisu', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15950, 'Villevere', 1107, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15951, 'Adavere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15952, 'Esku', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15953, 'Harjanurme', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15954, 'Jogeva', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15955, 'Kaarepere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15956, 'Kalana', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15957, 'Kalme', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15958, 'Kamari', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15959, 'Karde', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15960, 'Kasepaa', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15961, 'Kassinurme', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15962, 'Konnu', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15963, 'Kudina', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15964, 'Kukita', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15965, 'Kuremaa', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15966, 'Kurista', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15967, 'Lahavere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15968, 'Laiuse', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15969, 'Laiusevalja', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15970, 'Leedi', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15971, 'Lustivere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15972, 'Luua', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15973, 'Maarja', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15974, 'Mallikvere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15975, 'Metsakula', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15976, 'Mohkula', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15977, 'Mustvee', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15978, 'Neanurme', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15979, 'Nova', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15980, 'Omedu', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15981, 'Ouna', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15982, 'Painkula', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15983, 'Pajusi', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15984, 'Pala', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15985, 'Palamuse', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15986, 'Pataste', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15987, 'Pauastvere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15988, 'Pikkjarve', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15989, 'Pikknurme', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15990, 'Pisisaare', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15991, 'Poltsamaa', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15992, 'Poora', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15993, 'Puurmani', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15994, 'Raabise', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15995, 'Raja', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15996, 'Saare', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15997, 'Sadala', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15998, 'Sadukula', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(15999, 'Siimusti', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16000, 'Tabivere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16001, 'Tahkvere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16002, 'Tiheda', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16003, 'Toikvere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16004, 'Torma', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16005, 'Umbusi', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16006, 'Vagari', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16007, 'Vaiatu', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16008, 'Vaike-Kamari', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16009, 'Vaimastvere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16010, 'Valgma', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16011, 'Visusti', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16012, 'Voduvere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16013, 'Vohmanomme', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16014, 'Voisiku', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16015, 'Voldi', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16016, 'Voore', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16017, 'Votikvere', 1108, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16018, 'Haapsalu', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16019, 'Hullo', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16020, 'Joodre', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16021, 'Kirbla', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16022, 'Kirimae', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16023, 'Koluvere', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16024, 'Komsi', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16025, 'Kullamaa', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16026, 'Lihula', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16027, 'Liivi', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16028, 'Linnamae', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16029, 'Martna', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16030, 'Nigula', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16031, 'Nova', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16032, 'Palivere', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16033, 'Palli', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16034, 'Panga', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16035, 'Paralepa', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16036, 'Piirsalu', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16037, 'Purksi', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16038, 'Rannakula', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16039, 'Risti', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16040, 'Roude', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16041, 'Sutlepa', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16042, 'Taebla', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16043, 'Tuudi', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16044, 'Uuemoisa', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16045, 'Variku', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16046, 'Vatla', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16047, 'Virtsu', 1109, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16048, 'Aaspere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16049, 'Ama', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16050, 'Arkna', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16051, 'Assamalla', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16052, 'Avanduse', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16053, 'Avispea', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16054, 'Ebavere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16055, 'Eipri', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16056, 'Essu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16057, 'Haljala', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16058, 'Hulja', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16059, 'Imastu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16060, 'Inju', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16061, 'Kadapiku', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16062, 'Kadila', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16063, 'Kadrina', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16064, 'Kakumae', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16065, 'Karitsa', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16066, 'Karu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16067, 'Kasmu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16068, 'Kihlevere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16069, 'Kiku', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16070, 'Kiltsi', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16071, 'Kohala', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16072, 'Kunda', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16073, 'Kuti', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16074, 'Laekvere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16075, 'Lasila', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16076, 'Lepna', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16077, 'Levala', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16078, 'Liigvalla', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16079, 'Modriku', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16080, 'Moe', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16081, 'Moora', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16082, 'Muuga', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16083, 'Napi', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16084, 'Paasvere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16085, 'Pajusti', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16086, 'Pandivere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16087, 'Piira', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16088, 'Pikevere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16089, 'Podrangu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16090, 'Podruse', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16091, 'Porkuni', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16092, 'Rahkla', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16093, 'Rakke', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16094, 'Rakvere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16095, 'Ridakula', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16096, 'Roela', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16097, 'Roodevalja', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16098, 'Saase', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16099, 'Salda', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16100, 'Salla', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16101, 'Simuna', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16102, 'Someru', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16103, 'Taaravainu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16104, 'Tamsalu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16105, 'Tapa', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16106, 'Torma', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16107, 'Torremae', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16108, 'Triigi', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16109, 'Tudu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16110, 'Ubja', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16111, 'Udriku', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16112, 'Uhtna', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16113, 'Ulvi', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16114, 'Undla', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16115, 'Ussimae', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16116, 'Uudekula', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16117, 'Vaekula', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16118, 'Vahakulmu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16119, 'Vaiatu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16120, 'Vaike-Maarja', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16121, 'Vajangu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16122, 'Vao', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16123, 'Veltsi', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16124, 'Venevere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16125, 'Vergi', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16126, 'Vetiku', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16127, 'Vihula', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16128, 'Viitna', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16129, 'Vinni', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16130, 'Viru-Jaagupi', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16131, 'Viru-Kabala', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16132, 'Viru-Nigula', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16133, 'Vohnja', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16134, 'Vosu', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16135, 'Vosupere', 1110, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16136, 'Ahaste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16137, 'Aluste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16138, 'Are', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16139, 'Arumetsa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16140, 'Audru', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16141, 'Eametsa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16142, 'Haademeeste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16143, 'Halinga', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16144, 'Ikla', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16145, 'Ilvese', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16146, 'Jaamakula', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16147, 'Jaarja', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16148, 'Joesuu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16149, 'Joopre', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16150, 'Kaansoo', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16151, 'Kabli', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16152, 'Kadjaste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16153, 'Kaisma', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16154, 'Kalita', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16155, 'Kanakula', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16156, 'Kergu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16157, 'Kihlepa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16158, 'Kilingi-Nomme', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16159, 'Kilksama', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16160, 'Koima', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16161, 'Koonga', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16162, 'Krundikula', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16163, 'Laadi', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16164, 'Langerma', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16165, 'Lavassaare', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16166, 'Leipste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16167, 'Lemmetsa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16168, 'Lemsi', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16169, 'Libatse', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16170, 'Linakula', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16171, 'Lindi', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16172, 'Liu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16173, 'Lodja', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16174, 'Lope', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16175, 'Malda', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16176, 'Mannikuste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16177, 'Massiaru', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16178, 'Metsaaare', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16179, 'Metsapoole', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16180, 'Moisakula', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16181, 'Muraka', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16182, 'Niidu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16183, 'Nurme', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16184, 'Oara', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16185, 'Oidrema', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16186, 'Paikuse', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16187, 'Papsaare', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16188, 'Parnjoe', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16189, 'Parnu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16190, 'Parnu-Jaagupi', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16191, 'Penu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16192, 'Piistaoja', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16193, 'Pohara', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16194, 'Poldeotsa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16195, 'Pootsi', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16196, 'Pulli', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16197, 'Rannametsa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16198, 'Ratsepa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16199, 'Reiu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16200, 'Ridalepa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16201, 'Rootsikula', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16202, 'Saarde', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16203, 'Saare', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16204, 'Sauga', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16205, 'Seliste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16206, 'Selja', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16207, 'Seljametsa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16208, 'Silla', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16209, 'Sindi', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16210, 'Soeva', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16211, 'Soometsa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16212, 'Suigu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16213, 'Surju', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16214, 'Suurejoe', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16215, 'Taali', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16216, 'Tahkuranna', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16217, 'Tali', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16218, 'Tammiste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16219, 'Tammuru', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16220, 'Tihemetsa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16221, 'Tolla', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16222, 'Tootsi', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16223, 'Tori', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16224, 'Tostamaa', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16225, 'Tousi', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16226, 'Treimani', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16227, 'Urge', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16228, 'Uulu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16229, 'Vahenurme', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16230, 'Vaki', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16231, 'Vandra', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16232, 'Varbla', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16233, 'Veelikse', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16234, 'Vihtra', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16235, 'Voidu', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16236, 'Voiste', 1111, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16237, 'Aarna', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16238, 'Ahja', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16239, 'Erastvere', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16240, 'Himma', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16241, 'Himmaste', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16242, 'Holvandi', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16243, 'Ihamaru', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16244, 'Jaanimoisa', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16245, 'Kanepi', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16246, 'Karilatsi', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16247, 'Karsa', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16248, 'Karste', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16249, 'Kauksi', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16250, 'Kiidjarve', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16251, 'Kostrimae', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16252, 'Krootuse', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16253, 'Leevaku', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16254, 'Leevi', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16255, 'Leevijoe', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16256, 'Linte', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16257, 'Lootvina', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16258, 'Maaritsa', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16259, 'Mammaste', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16260, 'Metste', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16261, 'Mikitamae', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16262, 'Mooste', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16263, 'Naha', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16264, 'Orava', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16265, 'Pahtpaa', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16266, 'Partsi', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16267, 'Peri', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16268, 'Piigandi', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16269, 'Polgaste', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16270, 'Polva', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16271, 'Prangli', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16272, 'Puuri', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16273, 'Raadama', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16274, 'Rahumae', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16275, 'Raigla', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16276, 'Rapina', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16277, 'Rasina', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16278, 'Ristipalo', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16279, 'Rosma', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16280, 'Ruusa', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16281, 'Saverna', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16282, 'Sillapaa', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16283, 'Soodoma', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16284, 'Suurkula', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16285, 'Taevaskoja', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16286, 'Tannassilma', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16287, 'Tilsi', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16288, 'Treski', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16289, 'Vaike-Rosna', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16290, 'Valgjarve', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16291, 'Vana-Koiola', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16292, 'Vardja', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16293, 'Varska', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16294, 'Vastse-Kuuste', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16295, 'Veriora', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16296, 'Viluste', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16297, 'Voopsu', 1112, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16298, 'Aespa', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16299, 'Alu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16300, 'Eidapere', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16301, 'Hageri', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16302, 'Hagudi', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16303, 'Haimre', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16304, 'Hertu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16305, 'Iira', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16306, 'Ingliste', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16307, 'Jarlepa', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16308, 'Jarvakandi', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16309, 'Juuru', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16310, 'Kaerepere', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(16311, 'Kaiu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16312, 'Kalbu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16313, 'Karu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16314, 'Kasti', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16315, 'Keava', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16316, 'Kehtna', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16317, 'Kivi-Vigala', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16318, 'Kodila', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16319, 'Kohila', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16320, 'Kuimetsa', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16321, 'Kuusiku', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16322, 'Laukna', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16323, 'Lelle', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16324, 'Lipa', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16325, 'Lohu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16326, 'Lokuta', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16327, 'Maidla', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16328, 'Marjamaa', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16329, 'Masti', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16330, 'Moisamaa', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16331, 'Naravere', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16332, 'Orgita', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16333, 'Paardu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16334, 'Pae', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16335, 'Pahkla', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16336, 'Pihali', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16337, 'Pirgu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16338, 'Prillimae', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16339, 'Purila', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16340, 'Purku', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16341, 'Rabivere', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16342, 'Raikkula', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16343, 'Rangu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16344, 'Rapla', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16345, 'Salutaguse', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16346, 'Sipa', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16347, 'Sotke', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16348, 'Sutlema', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16349, 'Tamme', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16350, 'Teenuse', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16351, 'Uuskula', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16352, 'Vahastu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16353, 'Valgu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16354, 'Valtu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16355, 'Vana-Kaiu', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16356, 'Vana-Vigala', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16357, 'Varbola', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16358, 'Vilivere', 1113, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16359, 'Arandi', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16360, 'Aste', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16361, 'Eikla', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16362, 'Hellamaa', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16363, 'Kao', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16364, 'Karja', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16365, 'Karla', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16366, 'Kihelkonna', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16367, 'Koimla', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16368, 'Koljala', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16369, 'Korkkula', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16370, 'Korkvere', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16371, 'Kudjape', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16372, 'Kuressaare', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16373, 'Laatsa', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16374, 'Lahekula', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16375, 'Laimjala', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16376, 'Leisi', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16377, 'Liiva', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16378, 'Lumanda', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16379, 'Metskula', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16380, 'Mustjala', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16381, 'Nasva', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16382, 'Nommkula', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16383, 'Orissaare', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16384, 'Pahkla', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16385, 'Parsama', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16386, 'Pihtla', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16387, 'Sakla', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16388, 'Salme', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16389, 'Sandla', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16390, 'Tagavere', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16391, 'Tornimae', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16392, 'Valjala', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16393, 'Vohma', 1114, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16394, 'Aardla', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16395, 'Aksi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16396, 'Alasoo', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16397, 'Alatskivi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16398, 'Annikoru', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16399, 'Aravu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16400, 'Elva', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16401, 'Erala', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16402, 'Ervu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16403, 'Haage', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16404, 'Haaslava', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16405, 'Ignase', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16406, 'Illi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16407, 'Ilmatsalu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16408, 'Kaagvere', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16409, 'Kaardi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16410, 'Kaarlijarve', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16411, 'Kallaste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16412, 'Kalme', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16413, 'Kambja', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16414, 'Kandikula', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16415, 'Karevere', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16416, 'Karkna', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16417, 'Kasepaa', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16418, 'Kavastu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16419, 'Kirepi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16420, 'Kodukula', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16421, 'Kokora', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16422, 'Kolkja', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16423, 'Konguta', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16424, 'Koosa', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16425, 'Koruste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16426, 'Korvekula', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16427, 'Kulitse', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16428, 'Kurekula', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16429, 'Kurista', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16430, 'Laaniste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16431, 'Laeva', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16432, 'Lahte', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16433, 'Lalli', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16434, 'Lapetukme', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16435, 'Lemmatsi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16436, 'Lohkva', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16437, 'Lossimae', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16438, 'Luke', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16439, 'Luunja', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16440, 'Maksa', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16441, 'Maramaa', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16442, 'Marja', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16443, 'Meeksi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16444, 'Meeri', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16445, 'Mehikoorma', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16446, 'Melliste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16447, 'Metsakivi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16448, 'Metsalaane', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16449, 'Moisanurme', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16450, 'Nina', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16451, 'Nogiaru', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16452, 'Noo', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16453, 'Pilka', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16454, 'Poka', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16455, 'Pooritsa', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16456, 'Puhja', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16457, 'Rahinge', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16458, 'Raigaste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16459, 'Ramsi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16460, 'Rani', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16461, 'Rannu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16462, 'Rebase', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16463, 'Reola', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16464, 'Rohu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16465, 'Roiu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16466, 'Rongu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16467, 'Saadjarve', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16468, 'Sinikula', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16469, 'Sirgu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16470, 'Soinaste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16471, 'Sojamaa', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16472, 'Tahtvere', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16473, 'Tammiste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16474, 'Tammistu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16475, 'Tartu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16476, 'Teedla', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16477, 'Tilga', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16478, 'Toravere', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16479, 'Torvandi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16480, 'Tuki', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16481, 'Uderna', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16482, 'Uhti', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16483, 'Ulenurme', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16484, 'Ulila', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16485, 'Unikula', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16486, 'Vahi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16487, 'Vaike-Rakke', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16488, 'Valguta', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16489, 'Vana-Kuuste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16490, 'Vara', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16491, 'Varnja', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16492, 'Vasula', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16493, 'Vedu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16494, 'Vesneri', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16495, 'Vissi', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16496, 'Voibla', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16497, 'Voika', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16498, 'Vonnu', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16499, 'Voopste', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16500, 'Vorbuse', 1115, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16501, 'Aakre', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16502, 'Ala', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16503, 'Hargla', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16504, 'Hellenurme', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16505, 'Helme', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16506, 'Hummuli', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16507, 'Jeti', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16508, 'Jogeveste', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16509, 'Kaagjarve', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16510, 'Kalme', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16511, 'Karjatnurme', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16512, 'Karula', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16513, 'Keeni', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16514, 'Koikkula', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16515, 'Laanemetsa', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16516, 'Laatre', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16517, 'Laukula', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16518, 'Leebiku', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16519, 'Linna', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16520, 'Lossikula', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16521, 'Lullemae', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16522, 'Moldre', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16523, 'Nouni', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16524, 'Nupli', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16525, 'Oru', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16526, 'Oruste', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16527, 'Otepaa', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16528, 'Paidla', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16529, 'Paju', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16530, 'Palupera', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16531, 'Patkula', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16532, 'Piiri', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16533, 'Pikasilla', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16534, 'Pilkuse', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16535, 'Puhajarve', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16536, 'Puka', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16537, 'Restu', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16538, 'Riidaja', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16539, 'Sangaste', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16540, 'Sihva', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16541, 'Sooru', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16542, 'Taagepera', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16543, 'Tagula', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16544, 'Taheva', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16545, 'Tiidu', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16546, 'Tolliste', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16547, 'Torva', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16548, 'Tsirguliina', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16549, 'Valga', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16550, 'Vana-Otepaa', 1116, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16551, 'Abja-Paluoja', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16552, 'Abja-Vanamoisa', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16553, 'Aidu', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16554, 'Angi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16555, 'Anikatsi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16556, 'Arikula', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16557, 'Halliste', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16558, 'Heimtali', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16559, 'Holstre', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16560, 'Intsu', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16561, 'Jamejala', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16562, 'Jaska', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16563, 'Kaavere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16564, 'Kamara', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16565, 'Karksi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16566, 'Karksi-Nuia', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16567, 'Karstna', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16568, 'Karula', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16569, 'Kobruvere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16570, 'Koidama', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16571, 'Koksvere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16572, 'Kolga-Jaani', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16573, 'Koo', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16574, 'Kopu', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16575, 'Kulla', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16576, 'Lalsi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16577, 'Leie', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16578, 'Lilli', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16579, 'Lohavere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16580, 'Loodi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16581, 'Maeltkula', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16582, 'Matapera', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16583, 'Meleski', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16584, 'Metskula', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16585, 'Moisakula', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16586, 'Monnaste', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16587, 'Mustivere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16588, 'Mustla', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16589, 'Navesti', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16590, 'Odiste', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16591, 'Oisu', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16592, 'Olustvere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16593, 'Pahuvere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16594, 'Paistu', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16595, 'Parakula', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16596, 'Pari', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16597, 'Parsti', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16598, 'Peetrimoisa', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16599, 'Pilistvere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16600, 'Pinska', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16601, 'Polde', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16602, 'Polli', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16603, 'Puiatu', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16604, 'Ramsi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16605, 'Reegoldi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16606, 'Saarepeedi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16607, 'Savikoti', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16608, 'Sinialliku', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16609, 'Soe', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16610, 'Soomevere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16611, 'Sudiste', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16612, 'Suislepa', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16613, 'Sultsi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16614, 'Supsi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16615, 'Surgavere', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16616, 'Suure-Jaani', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16617, 'Taaksi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16618, 'Tanassilma', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16619, 'Tinnikuru', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16620, 'Tohvri', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16621, 'Tuhalaane', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16622, 'Tusti', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16623, 'Ulde', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16624, 'Ulensi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16625, 'Uusna', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16626, 'Valgita', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16627, 'Valma', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16628, 'Valuste', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16629, 'Vana-Kariste', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16630, 'Vana-Voidu', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16631, 'Vardi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16632, 'Vardja', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16633, 'Vastemoisa', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16634, 'Veelikse', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16635, 'Verilaske', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16636, 'Veskimae', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16637, 'Viiratsi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16638, 'Viljandi', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16639, 'Villa', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16640, 'Vohma', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16641, 'Voivaku', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16642, 'Vooru', 1117, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16643, 'Antsla', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16644, 'Haanja', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16645, 'Jarvere', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16646, 'Kaapa', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16647, 'Kirumpaa', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16648, 'Kobela', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16649, 'Kollino', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16650, 'Kose', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16651, 'Kraavi', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16652, 'Krabi', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16653, 'Kulaoru', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16654, 'Kuldre', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16655, 'Kuutsi', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16656, 'Lasva', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16657, 'Loosu', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16658, 'Lusti', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16659, 'Meegomae', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16660, 'Meremae', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16661, 'Misso', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16662, 'Moniste', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16663, 'Navi', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16664, 'Nursi', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16665, 'Obinitsa', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16666, 'Osula', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16667, 'Otsa', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16668, 'Parksepa', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16669, 'Puiga', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16670, 'Raiste', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16671, 'Rimmi', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16672, 'Rouge', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16673, 'Ruusmae', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16674, 'Saru', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16675, 'Somerpalu', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16676, 'Sulbi', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16677, 'Taberlaane', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16678, 'Tagakula', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16679, 'Tsolgo', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16680, 'Tsooru', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16681, 'Urvaste', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16682, 'Uue-Antsla', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16683, 'Vaabina', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16684, 'Vagula', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16685, 'Vaimela', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16686, 'Vana-Antsla', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16687, 'Vana-Roosa', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16688, 'Vana-Vastseliina', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16689, 'Varstu', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16690, 'Vastseliina', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16691, 'Verijarve', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16692, 'Viitina', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16693, 'Viitka', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16694, 'Visela', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16695, 'Voru', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16696, 'Vorumoisa', 1118, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16697, 'Asayita', 1120, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16698, 'Awash', 1120, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16699, 'Dubti', 1120, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16700, 'Gewane', 1120, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16701, 'Addi Ark\'ay', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16702, 'Addis \'Alem', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16703, 'Addis Zemen', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16704, 'Adet', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16705, 'Bahir Dar', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16706, 'Bati', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16707, 'Bichena', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16708, 'Bure', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16709, 'Chagni', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16710, 'Dabat', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16711, 'Dangla', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16712, 'Debark', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16713, 'Debre Birhan', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16714, 'Debre Mark\'os', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16715, 'Debre Sina', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16716, 'Debre Tabor', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16717, 'Debre Werk', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16718, 'Dejen', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16719, 'Dese', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16720, 'Finote Selam', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16721, 'Gondar', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16722, 'K\'obo', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16723, 'Kembolcha', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16724, 'Kemise', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16725, 'Lalibela', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16726, 'Mott\'a', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16727, 'Nefas Mewcha', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16728, 'Sek\'ot\'a', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16729, 'Shewa Robit', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16730, 'Weldiya', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16731, 'Were Ilu', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16732, 'Werota', 1121, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16733, 'Asosa', 1122, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16734, 'Dire Dawa', 1123, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16735, 'Gambela', 1124, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16736, 'Harer', 1125, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16737, 'Jigjiga', 1126, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16738, '\'Alem Maya', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16739, 'Abomsa', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16740, 'Agaro', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16741, 'Asasa', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16742, 'Asbe Teferi', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16743, 'Assela', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16744, 'Bako', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16745, 'Bedele', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16746, 'Bedesa', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16747, 'Burayu', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16748, 'Debre Zeyit', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16749, 'Deder', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16750, 'Dembi Dolo', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16751, 'Dodola', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16752, 'Fiche', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16753, 'Gebre Guracha', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16754, 'Gedo', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16755, 'Gelemso', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16756, 'Gimbi', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16757, 'Ginch\'i', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16758, 'Ginir', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16759, 'Giyon', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16760, 'Goba', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16761, 'Gore', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16762, 'Guder', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16763, 'Hagere Hiywet', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16764, 'Hagere Maryam', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16765, 'Hirna', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16766, 'Holeta Genet', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16767, 'Huruta', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16768, 'Jimma', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16769, 'Kibre Mengist', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16770, 'Kofele', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16771, 'Mega', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16772, 'Mek\'i', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16773, 'Mendi', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16774, 'Metehara', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16775, 'Metu', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16776, 'Mojo', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16777, 'Moyale', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16778, 'Nazret', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16779, 'Nedjo', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16780, 'Negele', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16781, 'Nek\'emte', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16782, 'Robe', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16783, 'Sebeta', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16784, 'Sendafa', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16785, 'Shakiso', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16786, 'Shambu', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16787, 'Shashemenne', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16788, 'Sheh Hussen', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16789, 'Sire', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16790, 'Tulu Bolo', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16791, 'Welench\'iti', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16792, 'Welk\'it\'e', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16793, 'Wonji', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16794, 'Yabelo', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16795, 'Ziway', 1128, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16796, 'Bircot', 1129, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16797, 'Degeh Bur', 1129, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16798, 'Dollo Odo', 1129, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16799, 'Imi', 1129, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16800, 'Jijiga', 1129, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16801, 'Werder', 1129, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16802, 'Alaba Kulito', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16803, 'Arba Minch', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16804, 'Areka', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16805, 'Awassa', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16806, 'Bako', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16807, 'Boditi', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16808, 'Bonga', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16809, 'Butajira', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16810, 'Ch\'ench\'a', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16811, 'Dilla', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16812, 'Gidole', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16813, 'Hossa\'ina', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16814, 'Jinka', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16815, 'Leku', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16816, 'Mizan Teferi', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16817, 'Sawla', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16818, 'Soddo', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16819, 'Teppi', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16820, 'Wendo', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16821, 'Yirga Alem', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16822, 'Yirga Ch\'efe', 1130, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16823, 'Abiy Adi', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16824, 'Addigrat', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16825, 'Adwa', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16826, 'Aksum', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16827, 'Alamat\'a', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16828, 'Endasilasie', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16829, 'Hagere Selam', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16830, 'Himora', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16831, 'Korem', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16832, 'Maych\'ew', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16833, 'Mek\'ele', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16834, 'Mekele', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16835, 'Wik\'ro', 1131, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16836, 'Hvannasund', 1137, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16837, 'Klaksvik', 1137, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16838, 'Husavik', 1140, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16839, 'Sands', 1140, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16840, 'Skalavik', 1140, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16841, 'Skopun', 1140, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16842, 'Skuvoy', 1140, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16843, 'Haldarsvik', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16844, 'Hests', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16845, 'Hosvik', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16846, 'Hvalvik', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16847, 'Kirkjubo', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16848, 'Kollafjar ', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16849, 'Kvivik', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16850, 'Nolsoy', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16851, 'Saksun', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16852, 'Torshavn', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16853, 'Vestmanna', 1141, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16854, 'Torshavn', 1144, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16855, 'Biggjar', 1145, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16856, 'Midvags', 1145, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16857, 'Mykines', 1145, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16858, 'Sandavags', 1145, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16859, 'Sorvags', 1145, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16860, 'Deuba', 1146, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16861, 'Korovou', 1146, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16862, 'Lami', 1146, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16863, 'Namosi', 1146, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16864, 'Nausori', 1146, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16865, 'Navua', 1146, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16866, 'Suva', 1146, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16867, 'Levuka', 1147, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16868, 'Malhaha', 1147, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16869, 'Tubou', 1147, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16870, 'Vunisea', 1147, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16871, 'Korokade', 1148, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16872, 'Labasa', 1148, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16873, 'Savusavu', 1148, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16874, 'Ba', 1150, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16875, 'Lautoka', 1150, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16876, 'Nadi', 1150, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16877, 'Rakiraki', 1150, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16878, 'Sigatoka', 1150, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16879, 'Tavua', 1150, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16880, 'Vatukoula', 1150, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16881, 'Maarianhamina', 1151, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16882, 'Imatra', 1152, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16883, 'Joutseno', 1152, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16884, 'Lappeenranta', 1152, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16885, 'Hyllykallio', 1153, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16886, 'Ilmajoki', 1153, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16887, 'Kauhajoki', 1153, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16888, 'Kurikka', 1153, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16889, 'Lapua', 1153, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16890, 'Seinajoki', 1153, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16891, 'Mikkeli', 1154, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16892, 'Savonlinna', 1154, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16893, 'Loviisa', 1157, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16894, 'Orimattila', 1157, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16895, 'Porvoo', 1157, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16896, 'Kajaani', 1158, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16897, 'Forssa', 1159, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(16898, 'Hameenlinna', 1159, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16899, 'Janakkala', 1159, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16900, 'Riihimaki', 1159, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16901, 'Kokkola', 1160, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16902, 'Aanekoski', 1161, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16903, 'Jamsa', 1161, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16904, 'Jyvaskyla', 1161, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16905, 'Keuruu', 1161, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16906, 'Laukaa', 1161, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16907, 'Lieto', 1161, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16908, 'Anjalankoski', 1162, 0.00, 0, '2021-04-06 01:13:44', '2021-04-06 01:13:44', NULL), -(16909, 'Hamina', 1162, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16910, 'Kotka', 1162, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16911, 'Kouvola', 1162, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16912, 'Kuusankoski', 1162, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16913, 'Valkeala', 1162, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16914, 'Vehkalahti', 1162, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16915, 'Kemi', 1164, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16916, 'Kemijarvi', 1164, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16917, 'Rovaniemi', 1164, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16918, 'Sonka', 1164, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16919, 'Tornio', 1164, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16920, 'Jakobstad', 1166, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16921, 'Oulunsalo', 1166, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16922, 'Heinola', 1168, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16923, 'Hollola', 1168, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16924, 'Lahti', 1168, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16925, 'Nastola', 1168, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16926, 'Kangasala', 1169, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16927, 'Lempaala', 1169, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16928, 'Nokia', 1169, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16929, 'Pirkkala', 1169, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16930, 'Sastamala', 1169, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16931, 'Tampere', 1169, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16932, 'Valkeakoski', 1169, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16933, 'Ylojarvi', 1169, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16934, 'Kristiinankaupunki', 1170, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16935, 'Mustasaari', 1170, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16936, 'Pietarsaari', 1170, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16937, 'Uusikarlepyy', 1170, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16938, 'Vaasa', 1170, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16939, 'Joensuu', 1171, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16940, 'Lieksa', 1171, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16941, 'Haukipudas', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16942, 'Kempele', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16943, 'Kuusamo', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16944, 'Muhos', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16945, 'Nivala', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16946, 'Oulainen', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16947, 'Oulu', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16948, 'Raahe', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16949, 'Ylivieska', 1172, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16950, 'Iisalmi', 1173, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16951, 'Kuopio', 1173, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16952, 'Sillinjarvi', 1173, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16953, 'Varkaus', 1173, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16954, 'Saarijarvi', 1174, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16955, 'Eura', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16956, 'Eurajoki', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16957, 'Harjavalta', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16958, 'Huittinen', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16959, 'Kankaanpaa', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16960, 'Kokemaki', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16961, 'Lappi', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16962, 'Nakkila', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16963, 'Noormarkku', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16964, 'Pori', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16965, 'Rauma', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16966, 'Sakyla', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16967, 'Ulvila', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16968, 'Vammala', 1175, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16969, 'Espoo', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16970, 'Hanko', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16971, 'Helsinki', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16972, 'Hyvinkaa', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16973, 'Jarvenpaa', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16974, 'Kauniainen', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16975, 'Kerava', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16976, 'Kirkkonummi', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16977, 'Lohja', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16978, 'Mantsala', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16979, 'Nurmijarvi', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16980, 'Sipoo', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16981, 'Tammisaari', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16982, 'Tuusula', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16983, 'Vantaa', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16984, 'Vihti', 1179, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16985, 'Kaarina', 1180, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16986, 'Naantali', 1180, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16987, 'Parainen', 1180, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16988, 'Raisio', 1180, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16989, 'Salo', 1180, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16990, 'Turku', 1180, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16991, 'Uusikaupunki', 1180, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16992, 'Amberieu-en-Bugey', 1181, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16993, 'Bellegarde-sur-Valserine', 1181, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16994, 'Bourg-en-Bresse', 1181, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16995, 'Oyonnax', 1181, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16996, 'Chateau-Thierry', 1182, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16997, 'Chauny', 1182, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16998, 'Hirson', 1182, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(16999, 'Laon', 1182, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17000, 'Saint-Quentin', 1182, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17001, 'Soissons', 1182, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17002, 'Strassbourg', 1182, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17003, 'Tergnier', 1182, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17004, 'Cusset', 1184, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17005, 'Montlucon', 1184, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17006, 'Moulins', 1184, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17007, 'Vichy', 1184, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17008, 'Yzeure', 1184, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17009, 'Antibes', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17010, 'Beausoleil', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17011, 'Cagnes-sur-Mer', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17012, 'Cannes', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17013, 'Carros', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17014, 'Grasse', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17015, 'La Trinite', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17016, 'Le Cannet', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17017, 'Mandelieu-la-Napoule', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17018, 'Menton', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17019, 'Mougins', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17020, 'Nice', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17021, 'Roquebrune-Cap-Martin', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17022, 'Saint-Laurent-du-Var', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17023, 'Valbonne', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17024, 'Vallauris', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17025, 'Vence', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17026, 'Villeneuve-Loubet', 1186, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17027, 'Digne-les-Bains', 1187, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17028, 'Manosque', 1187, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17029, 'Adainville', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17030, 'Alby-sur-Cheran', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17031, 'Aubervilliers', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17032, 'Auterive', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17033, 'Baillet', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17034, 'Beaune', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17035, 'Beauzelle', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17036, 'Bonnet De Mure', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17037, 'Bormes-les-Mimosas', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17038, 'Brindas', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17039, 'Burlats', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17040, 'Buzancais', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17041, 'Candillargues', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17042, 'Carry-le-Rouet', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17043, 'Cassis', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17044, 'Cessenon-Sur-Orb', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17045, 'Chanac', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17046, 'Chevigny', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17047, 'Cogolin', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17048, 'Collioure', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17049, 'Cremieu', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17050, 'Drulingen', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17051, 'Ecouen', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17052, 'Eschau', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17053, 'Feignies', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17054, 'Ferus', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17055, 'Fourqueux', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17056, 'Franqueville', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17057, 'Gignac', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17058, 'Gravigny', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17059, 'Hangenbieten', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17060, 'Hunspach', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17061, 'Kilstett', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17062, 'La Chevroliere', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17063, 'La-Fare-Les-Oliviers', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17064, 'Lanvellec', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17065, 'Le Faget', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17066, 'Lesigny', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17067, 'Lesquin', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17068, 'Limonest', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17069, 'Messein', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17070, 'Morgat', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17071, 'Mundolsheim', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17072, 'Nantiat', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17073, 'Niederbronn-les-Bain', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17074, 'Nimes', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17075, 'Opoul', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17076, 'Pance', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17077, 'Peronne', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17078, 'Ploneour Lanvern', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17079, 'Realmont', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17080, 'Reichstett', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17081, 'Saint Aubin', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17082, 'Saint Christophe', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17083, 'Saint Martin d’Here', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17084, 'Saint-Berthevin', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17085, 'Saint-Cergues', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17086, 'Sancerre', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17087, 'Sarzeau', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17088, 'Seltz', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17089, 'Seyssins', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17090, 'Souffelweyersheim', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17091, 'Vireux-Molhain', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17092, 'Voves', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17093, 'Wambrechies', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17094, 'Wervocq Sud', 1188, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17095, 'Abzac', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17096, 'Bidart', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17097, 'Biganos', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17098, 'Buzet-sur-Baise', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17099, 'Coursac', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17100, 'Hasparren', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17101, 'Landiras', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17102, 'Le Haillan', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17103, 'Ledat', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17104, 'Martillac', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17105, 'Puyoo', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17106, 'Saint-Jean-dIllac', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17107, 'Seignosse', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17108, 'Tresses', 1189, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17109, 'Annonay', 1190, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17110, 'Aubenas', 1190, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17111, 'Guilherand-Granges', 1190, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17112, 'Privas', 1190, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17113, 'Tournon-sur-Rhone', 1190, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17114, 'Charleville-Mezieres', 1191, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17115, 'Les Hautes-Rivieres', 1191, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17116, 'Revin', 1191, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17117, 'Sedan', 1191, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17118, 'Foix', 1192, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17119, 'Pamier', 1192, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17120, 'Bar-sur-Seine', 1193, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17121, 'Romilly-sur-Seine', 1193, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17122, 'Saint-Andre-les-Vergers', 1193, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17123, 'Sainte-Savine', 1193, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17124, 'Troyes', 1193, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17125, 'Carcassonne', 1194, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17126, 'Castelnaudary', 1194, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17127, 'Limoux', 1194, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17128, 'Narbonne', 1194, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17129, 'Ambert', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17130, 'Creuzier-le-Vieux', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17131, 'Ferrieres', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17132, 'Peschadoires', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17133, 'Riotord', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17134, 'Saint-Pal-de-Chalencon', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17135, 'Saint-Romain-Lachalm', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17136, 'Saint-Vidal', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17137, 'Sainte-Sigolene', 1195, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17138, 'Millau', 1196, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17139, 'Onet-le-Chataeu', 1196, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17140, 'Rodez', 1196, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17141, 'Villefranche-de-Rouergue', 1196, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17142, 'Bischheim', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17143, 'Bischwiller', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17144, 'Haguenau', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17145, 'Hoenheim', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17146, 'Illkirch-Graffenstaden', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17147, 'Lingolsheim', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17148, 'Obernai', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17149, 'Ostwald', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17150, 'Saverne', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17151, 'Schiltigheim', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17152, 'Selestat', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17153, 'Strasbourg', 1197, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17154, 'Deauville', 1198, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17155, 'Aix-en-Provence', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17156, 'Allauch', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17157, 'Arles', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17158, 'Aubagne', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17159, 'Berre-l\'Etang', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17160, 'Bouc-Bel-Air', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17161, 'Chateauneuf-les-Martigues', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17162, 'Chateaurenard', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17163, 'Fos-sur-Mer', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17164, 'Gardanne', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17165, 'Istres', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17166, 'La Ciotat', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17167, 'Les Pennes-Mirabeau', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17168, 'Maillane', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17169, 'Marignane', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17170, 'Marseille', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17171, 'Martigues', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17172, 'Miramas', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17173, 'Plan-de-Cuques', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17174, 'Port-de-Bouc', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17175, 'Rognac', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17176, 'Saint-Martin-de-Crau', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17177, 'Saint-Remy-de-Provence', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17178, 'Salon-de-Provence', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17179, 'Septemes-les-Vallons', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17180, 'Tarascon', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17181, 'Vitrolles', 1199, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17182, 'Migennes', 1200, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17183, 'Javene', 1201, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17184, 'Plouha', 1201, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17185, 'Brehan', 1202, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17186, 'Broons', 1202, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17187, 'Guipry', 1202, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17188, 'Miniac-Morvan', 1202, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17189, 'Ploudaniel', 1202, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17190, 'Vern-sur-Seiche', 1202, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17191, 'Aillant-sur-Tholon', 1203, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17192, 'Bayeux', 1204, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17193, 'Caen', 1204, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17194, 'Herouville-Saint-Clair', 1204, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17195, 'Lisieux', 1204, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17196, 'Mondeville', 1204, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17197, 'Vire', 1204, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17198, 'Aurillac', 1205, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17199, 'Brumath', 1206, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17200, 'Courtaboeuf', 1206, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17201, 'Iregny', 1206, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17202, 'cedex', 1206, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17203, 'Azay-le-Rideau', 1207, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17204, 'Chevillon-sur-Huillard', 1207, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17205, 'Cloyes-sur-le-Loir', 1207, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17206, 'Gellainville', 1207, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17207, 'La Chaussse-Saint-Victor', 1207, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17208, 'La Ville-aux-Clercs', 1207, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17209, 'Ladon', 1207, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17210, 'Le Chatelet', 1207, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17211, 'Angouleme', 1208, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17212, 'Cognac', 1208, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17213, 'Lencloitre', 1208, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17214, 'Soyaux', 1208, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17215, 'La Rochelle', 1209, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17216, 'Rochefort', 1209, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17217, 'Royan', 1209, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17218, 'Saintes', 1209, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17219, 'Bourges', 1210, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17220, 'Saint-Amand-Montrond', 1210, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17221, 'Saint-Doulchard', 1210, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17222, 'Vierzon', 1210, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17223, 'Brive-la-Gaillarde', 1211, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17224, 'Tulle', 1211, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17225, 'Ussel', 1211, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17226, 'Ajaccio', 1212, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17227, 'Porto-Vecchio', 1212, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17228, 'Beaune', 1213, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17229, 'Chenove', 1213, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17230, 'Dijon', 1213, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17231, 'Quetigny', 1213, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17232, 'Talant', 1213, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17233, 'Dinan', 1214, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17234, 'Lamballe', 1214, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17235, 'Lannion', 1214, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17236, 'Loudeac', 1214, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17237, 'Plerin', 1214, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17238, 'Ploufragan', 1214, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17239, 'Saint-Brieuc', 1214, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17240, 'Gueret', 1215, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17241, 'Crolles', 1216, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17242, 'Bressuire', 1217, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17243, 'Niort', 1217, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17244, 'Parthenay', 1217, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17245, 'Thouars', 1217, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17246, 'Bergerac', 1218, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17247, 'Perigueux', 1218, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17248, 'Sarlat-la-Caneda', 1218, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17249, 'Audincourt', 1219, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17250, 'Besancon', 1219, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17251, 'Beure', 1219, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17252, 'Montbeliard', 1219, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17253, 'Pontarlier', 1219, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17254, 'Valentigney', 1219, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17255, 'Bourg-les-Valence', 1220, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17256, 'Montelimar', 1220, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17257, 'Pierrelatte', 1220, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17258, 'Romans-sur-Isere', 1220, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17259, 'Valence', 1220, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17260, 'Athis-Mons', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17261, 'Bretigny-sur-Orge', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17262, 'Brunoy', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17263, 'Bures-sur-Yvette', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17264, 'Chilly-Mazarin', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17265, 'Corbeil-Essonnes', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17266, 'Courcouronnes', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17267, 'Dourdan', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17268, 'Draveil', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17269, 'Epinay-sous-Senart', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17270, 'Epinay-sur-Orge', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17271, 'Etampes', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17272, 'Evry', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17273, 'Fleury-Merogis', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17274, 'Gif-sur-Yvette', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17275, 'Grigny', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17276, 'Igny', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17277, 'Juvisy-sur-Orge', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17278, 'Les Ulis', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17279, 'Longjumeau', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17280, 'Massy', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17281, 'Mennecy', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17282, 'Montgeron', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17283, 'Morangis', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17284, 'Morsang-sur-Orge', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17285, 'Orsay', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17286, 'Palaiseau', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17287, 'Ris-Orangis', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17288, 'Saint-Michel-sur-Orge', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17289, 'Sainte-Genevieve-des-Bois', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17290, 'Savigny-sur-Orge', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17291, 'Verrieres-le-Buisson', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17292, 'Vigneux-sur-Seine', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17293, 'Villebon-sur-Yvette', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17294, 'Viry-Chatillon', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17295, 'Yerres', 1221, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17296, 'Bernay', 1222, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17297, 'Evreux', 1222, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17298, 'Gisors', 1222, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17299, 'Louviers', 1222, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17300, 'Pont-Audemer', 1222, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17301, 'Val-de-Reuil', 1222, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17302, 'Vernon', 1222, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17303, 'Chartres', 1223, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17304, 'Chateaudun', 1223, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17305, 'Dreux', 1223, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17306, 'Luce', 1223, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17307, 'Mainvillier', 1223, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17308, 'Nogent-le-Rotrou', 1223, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17309, 'Vernouillet', 1223, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17310, 'Feucherolles', 1224, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17311, 'Brest', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17312, 'Concarneau', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17313, 'Douarnenez', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17314, 'Guipavas', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17315, 'Landerneau', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17316, 'Le Relecq-Kerhoun', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17317, 'Morlaix', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17318, 'Plougastel-Daoulas', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17319, 'Plouzane', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17320, 'Quimper', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17321, 'Quimperle', 1225, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17322, 'Charquemont', 1226, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17323, 'Chemaudin', 1226, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17324, 'Pelousey', 1226, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17325, 'Perrigny', 1226, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17326, 'Pirey', 1226, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17327, 'Villers-le-Lac', 1226, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17328, 'Ales', 1227, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17329, 'Bagnols-sur-Ceze', 1227, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17330, 'Beaucaire', 1227, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17331, 'Nimes', 1227, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17332, 'Pont-Saint-Esprit', 1227, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17333, 'Saint-Gilles', 1227, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17334, 'Vauvert', 1227, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17335, 'Villeneuve-les-Avignon', 1227, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17336, 'Auch', 1228, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17337, 'Beraut', 1228, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17338, 'Ambares-et-Lagrave', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17339, 'Arcachon', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17340, 'Begles', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17341, 'Blanquefort', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17342, 'Bordeaux', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17343, 'Bruges', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17344, 'Cenon', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17345, 'Cestas', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17346, 'Eysines', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17347, 'Floirac', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17348, 'Gradignan', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17349, 'Gujan-Mestras', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17350, 'La Teste-de-Buch', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17351, 'Le Bouscat', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17352, 'Libourne', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17353, 'Lormont', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17354, 'Merignac', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17355, 'Pessac', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17356, 'Saint-Medard-en-Jalles', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17357, 'Talence', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17358, 'Villenave-d\'Ornon', 1229, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17359, 'Cernay', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17360, 'Colmar', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17361, 'Guebwiller', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17362, 'Illzach', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17363, 'Kingersheim', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17364, 'Mulhouse', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17365, 'Riediesheim', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17366, 'Rixheim', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17367, 'Saint-Louis', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17368, 'Wittelsheim', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17369, 'Wittenheim', 1230, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17370, 'Bastia', 1231, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17371, 'Balma', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17372, 'Blagnac', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17373, 'Colomiers', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17374, 'Cugnaux', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17375, 'L\'Union', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17376, 'Muret', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17377, 'Plaisance-du-Touch', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17378, 'Ramonville-Saint-Agne', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17379, 'Saint-Gaudens', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17380, 'Saint-Orens-de-Gameville', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17381, 'Toulouse', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17382, 'Tournefeuille', 1232, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17383, 'Blanzac', 1233, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17384, 'Le Puy-en-Velay', 1233, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17385, 'Chaumont', 1234, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17386, 'Langres', 1234, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17387, 'Saint-Dizier', 1234, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17388, 'Hericourt', 1235, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17389, 'Lure', 1235, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17390, 'Luxeuil-les-Bains', 1235, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17391, 'Vesoul', 1235, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17392, 'Annecy', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17393, 'Annecy-le-Vieux', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17394, 'Annemasse', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17395, 'Archamps', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17396, 'Bonneville', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17397, 'Chamonix-Mont-Blanc', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17398, 'Cluses', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17399, 'Contamine sur Arve', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17400, 'Cran-Gevrier', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17401, 'Passy', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17402, 'Rumilly', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17403, 'Sallanches', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17404, 'Seynod', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17405, 'Thonon-les-Bains', 1236, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17406, 'Gaillard', 1237, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17407, 'Limoges', 1237, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17408, 'Saint-Junien', 1237, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17409, 'Briancon', 1238, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17410, 'Gap', 1238, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17411, 'Lourdes', 1239, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17412, 'Tarbes', 1239, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17413, 'Antony', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17414, 'Asnieres-sur-Seine', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17415, 'Bagneux', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17416, 'Bois-Colombes', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17417, 'Boulogne-Billancourt', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17418, 'Bourg-la-Reine', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17419, 'Chatenay-Malabry', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17420, 'Chatillon', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17421, 'Chaville', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17422, 'Clamart', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17423, 'Clichy', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17424, 'Colombes', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17425, 'Courbevoie', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17426, 'Fontenay-aux-Roses', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17427, 'Garches', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17428, 'Gennevillers', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17429, 'Issy-les-Moulineaux', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17430, 'La Garenne-Colombes', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17431, 'Le Plessis-Robinson', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17432, 'Levallois-Perret', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17433, 'Malakoff', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17434, 'Meudon', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17435, 'Montrouge', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17436, 'Nanterre', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17437, 'Neuilly-sur-Seine', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17438, 'Puteaux', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17439, 'Rueil-Malmaison', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17440, 'Saint-Cloud', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17441, 'Sceaux', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17442, 'Sevres', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17443, 'Suresnes', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17444, 'Vanves', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17445, 'Ville-d\'Avray', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17446, 'Villeneuve-la-Garenne', 1240, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17447, 'Agde', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17448, 'Beziers', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17449, 'Castelnau-le-Lez', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17450, 'Frontignan', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17451, 'Lattes', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17452, 'Lunel', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17453, 'Mauguio', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17454, 'Montpellier', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17455, 'Sete', 1241, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17456, 'Champagne-sur-Oise', 1242, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17457, 'Croissy-Beaubourg', 1242, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17458, 'Gennevilliers', 1242, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17459, 'Le Mesnil-le-Roi', 1242, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17460, 'Le Plessis-Bouchard', 1242, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17461, 'Rebais', 1242, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17462, 'Saint-Thibault-des-Vignes', 1242, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17463, 'Cesson-Sevigne', 1243, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17464, 'Dinard', 1243, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(17465, 'Fougeres', 1243, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17466, 'Rennes', 1243, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17467, 'Saint-Malo', 1243, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17468, 'Vitre', 1243, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17469, 'Chateauroux', 1244, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17470, 'Issoudun', 1244, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17471, 'Amboise', 1245, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17472, 'Joue-les-Tours', 1245, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17473, 'Saint-Avertin', 1245, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17474, 'Saint-Cyr-sur-Loire', 1245, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17475, 'Saint-Pierre-des-Corps', 1245, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17476, 'Tours', 1245, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17477, 'Bourgoin-Jallieu', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17478, 'Crolles', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17479, 'Echirolles', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17480, 'Fontaine', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17481, 'Grenoble', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17482, 'Le Pont-de-Claix', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17483, 'Meylan', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17484, 'Saint-Egreve', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17485, 'Saint-Martin-d\'Heres', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17486, 'Seyssinet-Pariset', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17487, 'Vienne', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17488, 'Villefontaine', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17489, 'Voiron', 1246, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17490, 'Champagnole', 1247, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17491, 'Dole', 1247, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17492, 'Lons-le-Saunier', 1247, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17493, 'Saint-Claude', 1247, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17494, 'Sebastiangasse', 1248, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17495, 'Biscarrosse', 1249, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17496, 'Dax', 1249, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17497, 'Hagetmau', 1249, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17498, 'Landes', 1249, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17499, 'Mont-de-Marsan', 1249, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17500, 'Saint-Paul-les-Dax', 1249, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17501, 'Tarnos', 1249, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17502, 'Codolet', 1250, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17503, 'Cuxac-d\'Aude', 1250, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17504, 'Gigean', 1250, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17505, 'Grabels', 1250, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17506, 'Lamalou-les-Bains', 1250, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17507, 'Perols', 1250, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17508, 'Peyrens', 1250, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17509, 'Tuchan', 1250, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17510, 'Larcay', 1251, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17511, 'Voutezac', 1254, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17512, 'Blois', 1255, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17513, 'Romorantin-Lanthenay', 1255, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17514, 'Vendome', 1255, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17515, 'Andrezieux-Boutheon', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17516, 'Firminy', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17517, 'La Ricamarie', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17518, 'Le Chambon-Feugerolles', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17519, 'Montbrison', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17520, 'Riorges', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17521, 'Rive-de-Gier', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17522, 'Roanne', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17523, 'Roche-la-Moliere', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17524, 'Saint-Chamond', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17525, 'Saint-Etienne', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17526, 'Saint-Just-Saint-Rambert', 1256, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17527, 'Bouguenais', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17528, 'Carquefou', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17529, 'Chateaubriant', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17530, 'Coueron', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17531, 'Guerande', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17532, 'La Baule-Escoublac', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17533, 'La Chapelle-sur-Erdre', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17534, 'Nantes', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17535, 'Orvault', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17536, 'Reze', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17537, 'Saint Etienne de Mer Morte', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17538, 'Saint-Herblain', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17539, 'Saint-Nazaire', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17540, 'Saint-Sebastien-sur-Loire', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17541, 'Sainte-Luce-sur-Loire', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17542, 'Vertou', 1257, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17543, 'Amilly', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17544, 'Chalette-sur-Loing', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17545, 'Fleury-les-Aubrais', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17546, 'Gien', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17547, 'Montargis', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17548, 'Olivet', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17549, 'Orleans', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17550, 'Pithiviers', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17551, 'Saint-Jean-de-Braye', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17552, 'Saint-Jean-de-la-Ruelle', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17553, 'Saran', 1258, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17554, 'Montbronn', 1259, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17555, 'Cahors', 1260, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17556, 'Figeac', 1260, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17557, 'Agen', 1261, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17558, 'Le Passage', 1261, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17559, 'Marmande', 1261, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17560, 'Tonneins', 1261, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17561, 'Villeneuve-sur-Lot', 1261, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17562, 'Mende', 1263, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17563, 'Angers', 1264, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17564, 'Avrille', 1264, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17565, 'Cholet', 1264, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17566, 'Les Ponts-de-Ce', 1264, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17567, 'Saint-Barthelemy-d\'Anjou', 1264, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17568, 'Saumur', 1264, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17569, 'Torfou', 1264, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17570, 'Trelaze', 1264, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17571, 'Cherbourg', 1265, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17572, 'Coutances', 1265, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17573, 'Equeurdreville-Hainneville', 1265, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17574, 'Granville', 1265, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17575, 'Octeville', 1265, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17576, 'Saint-Lo', 1265, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17577, 'Tourlaville', 1265, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17578, 'Chalons-en-Champagne', 1266, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17579, 'Epernay', 1266, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17580, 'Reims', 1266, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17581, 'Tinqueux', 1266, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17582, 'Vitry-le-Francois', 1266, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17583, 'Chateau-Gontier', 1267, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17584, 'Laval', 1267, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17585, 'Mayenne', 1267, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17586, 'Montsurs', 1267, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17587, 'Dombasle-sur-Meurthe', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17588, 'Jarville-la-Malgrange', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17589, 'Laxou', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17590, 'Longwy', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17591, 'Luneville', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17592, 'Nancy', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17593, 'Pont-a-Mousson', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17594, 'Saint-Max', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17595, 'Toul', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17596, 'Vandoeuvre-les-Nancy', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17597, 'Villers-les-Nancy', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17598, 'Villerupt', 1268, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17599, 'Bar-le-Duc', 1269, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17600, 'Verdun', 1269, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17601, 'Boissezon', 1270, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17602, 'Hauterive', 1270, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17603, 'Launaguet', 1270, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17604, 'Mauleon', 1270, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17605, 'Maurens-Scopont', 1270, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17606, 'Auray', 1271, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17607, 'Guidel', 1271, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17608, 'Hennebont', 1271, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17609, 'Lanester', 1271, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17610, 'Lorient', 1271, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17611, 'Ploemeur', 1271, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17612, 'Pontivy', 1271, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17613, 'Vannes', 1271, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17614, 'Amneville', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17615, 'Behren-les-Forbach', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17616, 'Creutzwald', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17617, 'Fameck', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17618, 'Florange', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17619, 'Forbach', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17620, 'Freyming-Merlebach', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17621, 'Hagondange', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17622, 'Hayange', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17623, 'Hombourg-Haut', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17624, 'Maizieres-les-Metz', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17625, 'Marly', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17626, 'Metz', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17627, 'Montigny-les-Metz', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17628, 'Moyeuvre-Grande', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17629, 'Rombas', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17630, 'Saint-Avold', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17631, 'Sarrebourg', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17632, 'Sarreguemines', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17633, 'Stiring-Wendel', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17634, 'Thionville', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17635, 'Uckange', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17636, 'Woippy', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17637, 'Yutz', 1272, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17638, 'Cosne-Cours-sur-Loire', 1273, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17639, 'Nevers', 1273, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17640, 'Varennes-Vauzelles', 1273, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17641, 'Aniche', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17642, 'Annoeullin', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17643, 'Anzin', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17644, 'Armentieres', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17645, 'Aulnoye-Aymeries', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17646, 'Bailleul', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17647, 'Bondues', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17648, 'Bruay-sur-l\'Escaut', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17649, 'Cambrai', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17650, 'Cappelle-la-Grande', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17651, 'Caudry', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17652, 'Comines', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17653, 'Conde-sur-l\'Escaut', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17654, 'Coudekerque-Branche', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17655, 'Croix', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17656, 'Denain', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17657, 'Douai', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17658, 'Douchy-les-Mines', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17659, 'Dunkerque', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17660, 'Escaudain', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17661, 'Fache-Thumesnil', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17662, 'Fourmies', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17663, 'Grande-Synthe', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17664, 'Graveline', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17665, 'Halluin', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17666, 'Haubourdin', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17667, 'Hautmont', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17668, 'Hazebrouck', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17669, 'Hem', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17670, 'Hulluch', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17671, 'Jeumont', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17672, 'La Madeleine', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17673, 'Lambersart', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17674, 'Leers', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17675, 'Lille', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17676, 'Lomme', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17677, 'Loos', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17678, 'Lys-lez-Lannoy', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17679, 'Marcq-en-Baroeul', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17680, 'Marennes', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17681, 'Marly', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17682, 'Marquette-lez-Lille', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17683, 'Maubeuge', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17684, 'Merville', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17685, 'Mons-en-Baroeul', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17686, 'Mouvaux', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17687, 'Neuville-en-Ferrain', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17688, 'Onnaing', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17689, 'Raismes', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17690, 'Ronchin', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17691, 'Roncq', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17692, 'Roubaix', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17693, 'Saint-Amand-les-Eaux', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17694, 'Saint-Andre-lez-Lille', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17695, 'Saint-Pol-sur-Mer', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17696, 'Saint-Saulve', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17697, 'Seclin', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17698, 'Sin-le-Noble', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17699, 'Somain', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17700, 'Tourcoing', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17701, 'Valenciennes', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17702, 'Vieux-Conde', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17703, 'Villeneuve-d\'Ascq', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17704, 'Wasquehal', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17705, 'Wattignies', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17706, 'Wattrelos', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17707, 'Waziers', 1274, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17708, 'Esquelbecq', 1275, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17709, 'Beauvais', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17710, 'Chantilly', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17711, 'Clermont', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17712, 'Compiegne', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17713, 'Creil', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17714, 'Crepy-en-Valois', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17715, 'Gouvieux', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17716, 'Meru', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17717, 'Montataire', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17718, 'Nogent-sur-Oise', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17719, 'Noyon', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17720, 'Pont-Sainte-Maxence', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17721, 'Senlis', 1276, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17722, 'Alencon', 1277, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17723, 'Argentan', 1277, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17724, 'Flers', 1277, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17725, 'L\'Aigle', 1277, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17726, 'Paris', 1278, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17727, 'Aire-sur-la-Lys', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17728, 'Arras', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17729, 'Auchel', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17730, 'Avion', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17731, 'Berck', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17732, 'Bethune', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17733, 'Boulogne-sur-Mer', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17734, 'Bruay-la-Brussiere', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17735, 'Bully-les-Mines', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17736, 'Calais', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17737, 'Carvin', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17738, 'Courrieres', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17739, 'Etaples', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17740, 'Harnes', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17741, 'Henin-Beaumont', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17742, 'Le Portel', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17743, 'Lens', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17744, 'Libercourt', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17745, 'Lievin', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17746, 'Lillers', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17747, 'Longuenesse', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17748, 'Marck', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17749, 'Mericourt', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17750, 'Montigny-en-Gohelle', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17751, 'Noeux-les-Mines', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17752, 'Oignies', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17753, 'Outreau', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17754, 'Rouvroy', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17755, 'Saint-Martin-Boulogne', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17756, 'Saint-Omer', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17757, 'Sallaumines', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17758, 'Vendin-le-Vieil', 1279, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17759, 'Loiron', 1281, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17760, 'Marolles-les-Braults', 1281, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17761, 'Mortagne-sur-Sevre', 1281, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17762, 'Mouzillon', 1281, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17763, 'Noirmoutier-en-l\'Île', 1281, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17764, 'Friville', 1282, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17765, 'Liancourt', 1282, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17766, 'Maizy', 1282, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17767, 'Oust-Marest', 1282, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17768, 'Puiseux-le-Hauberger', 1282, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17769, 'Saint-Crepin-Ibouvillers', 1282, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17770, 'Aubiere', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17771, 'Beaumont', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17772, 'Chamalieres', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17773, 'Clermont-Ferrand', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17774, 'Cournon-d\'Auvergne', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17775, 'Gerzat', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17776, 'Issoire', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17777, 'Riom', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17778, 'Thiers', 1283, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17779, 'Anglet', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17780, 'Bayonne', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17781, 'Biarritz', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17782, 'Billere', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17783, 'Hendaye', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17784, 'Lons', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17785, 'Oloron-Sainte-Marie', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17786, 'Orthez', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17787, 'Pau', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17788, 'Saint-Jean-de-Luz', 1284, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17789, 'Perpignan', 1285, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17790, 'Saint-Esteve', 1285, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17791, 'Quelmes', 1286, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17792, 'Brignais', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17793, 'Bron', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17794, 'Caluire-et-Cuire', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17795, 'Decines-Charpieu', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17796, 'Ecully', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17797, 'Francheville', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17798, 'Genas', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17799, 'Genay', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17800, 'Givors', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17801, 'Lyon', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17802, 'Meyzieu', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17803, 'Mions', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17804, 'Oullins', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17805, 'Pierre-Benite', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17806, 'Rillieux-la-Pape', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17807, 'Saint-Fons', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17808, 'Saint-Genis-Laval', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17809, 'Saint-Priest', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17810, 'Sainte-Foy-les-Lyon', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17811, 'Tarare', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17812, 'Tassin-la-Demi-Lune', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17813, 'Vaulx-en-Velin', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17814, 'Venissieux', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17815, 'Villefranche-sur-Saone', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17816, 'Villeurbanne', 1287, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17817, 'Beauvoir-en-Royans', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17818, 'Belley', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17819, 'Bons-en-Chablais', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17820, 'Chalain-d\'Uzore', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17821, 'Chassieu', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17822, 'Chavanod', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17823, 'Chazay-d-Azergues', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17824, 'Chimilin', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17825, 'Civrieux-d Azergues', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17826, 'Corbas', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17827, 'Courzieu', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17828, 'Dardilly', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17829, 'Guereins', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17830, 'Izernore', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17831, 'La Talaudiere', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17832, 'La Tronche', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17833, 'La Verpilliere', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17834, 'Le Cheylard', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17835, 'Le Cheylas', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17836, 'Mery', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17837, 'Moirans', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17838, 'Montalieu-Vercieu', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17839, 'Montmiral', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17840, 'Peronnas', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17841, 'Poncin', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17842, 'Quincie-en-Beaujolais', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17843, 'Saint-Quentin-sur-Isere', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17844, 'Sainte Agathe la Bouteresse', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17845, 'Sainte-Consorce', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17846, 'Sisteron', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17847, 'Trevoux', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17848, 'Villard-Bonnot', 1288, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17849, 'Autun', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17850, 'Chalon-sur-Saone', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17851, 'Digoin', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17852, 'Gueugnon', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17853, 'Le Creusot', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17854, 'Macon', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17855, 'Montceau-les-Mines', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17856, 'Paray-le-Monial', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17857, 'Saint-Vallier', 1291, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17858, 'Allonnes', 1292, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17859, 'La Ferte-Bernard', 1292, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17860, 'La Fleche', 1292, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17861, 'Le Mans', 1292, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17862, 'Sable-sur-Sarthe', 1292, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17863, 'Aix-les-Bains', 1293, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17864, 'Albertville', 1293, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17865, 'Chambery', 1293, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17866, 'La Motte-Servolex', 1293, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17867, 'Saint-Jean-de-Maurienne', 1293, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17868, 'Barentin', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17869, 'Bihorel', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17870, 'Bois-Guillaume', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17871, 'Bolbec', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17872, 'Canteleu', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17873, 'Caudebec-les-Elbeuf', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17874, 'Darnetal', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17875, 'Deville-les-Rouen', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17876, 'Dieppe', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17877, 'Elbeuf', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17878, 'Fecamp', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17879, 'Gonfreville-l\'Orcher', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17880, 'Grand-Couronne', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17881, 'Harfleur', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17882, 'Le Grand-Quevilly', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17883, 'Le Havre', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17884, 'Le Petit-Quevilly', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17885, 'Lillebonne', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17886, 'Maromme', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17887, 'Mont-Saint-Aignan', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17888, 'Montivilliers', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17889, 'Notre-Dame-de-Gravenchon', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17890, 'Oissel', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17891, 'Rouen', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17892, 'Saint-Etienne-du-Rouvray', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17893, 'Sotteville-les-Rouen', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17894, 'Yvetot', 1294, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17895, 'Aubervillers', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17896, 'Aulnay-sous-Bois', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17897, 'Bagnolet', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17898, 'Bobigny', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17899, 'Bondy', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17900, 'Clichy-sous-Bois', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17901, 'Drancy', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17902, 'Epinay-sur-Seine', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17903, 'Gagny', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17904, 'La Courneuve', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17905, 'Le Blanc-Mesnil', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17906, 'Le Bourget', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17907, 'Le Pre-Saint-Gervais', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17908, 'Le Raincy', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17909, 'Les Lilas', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17910, 'Les Pavillons-sous-Bois', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17911, 'Livry-Gargan', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17912, 'Montfermeil', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17913, 'Montreuil', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17914, 'Neuilly-Plaisance', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17915, 'Neuilly-sur-Marne', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17916, 'Noisy-le-Grand', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17917, 'Noisy-le-Sec', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17918, 'Pantin', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17919, 'Pierrefitte-sur-Seine', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17920, 'Romainville', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17921, 'Rosny-sous-Bois', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17922, 'Saint-Denis', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17923, 'Saint-Ouen', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17924, 'Sevran', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17925, 'Stains', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17926, 'Tremblay-en-France', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17927, 'Villemomble', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17928, 'Villepinte', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17929, 'Villetaneuse', 1295, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17930, 'Avon', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17931, 'Brie-Comte-Robert', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17932, 'Champs-sur-Marne', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17933, 'Chelles', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17934, 'Claye-Souilly', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17935, 'Combs-la-Ville', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17936, 'Coulommiers', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17937, 'Dammarie-les-Lys', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17938, 'Fontainebleau', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17939, 'Lagny-sur-Marne', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17940, 'Le Mee-sur-Seine', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17941, 'Lognes', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17942, 'Meaux', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17943, 'Melun', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17944, 'Mitry-Mory', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17945, 'Moissy-Cramayel', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17946, 'Montereau-Fault-Yonne', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17947, 'Nemours', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17948, 'Noisiel', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17949, 'Ozoir-la-Ferriere', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17950, 'Pontault-Combault', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17951, 'Provins', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17952, 'Roissy-en-Brie', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17953, 'Saint-Fargeau-Ponthierry', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17954, 'Savigny-le-Temple', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17955, 'Torcy', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17956, 'Vaires-sur-Marne', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17957, 'Veneux', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17958, 'Villeparisis', 1296, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17959, 'Abbeville', 1297, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17960, 'Albert', 1297, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17961, 'Amiens', 1297, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17962, 'Souvans', 1299, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17963, 'Albi', 1300, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17964, 'Carmaux', 1300, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17965, 'Castres', 1300, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17966, 'Gaillac', 1300, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17967, 'Graulhet', 1300, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17968, 'Mazamet', 1300, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17969, 'Castelsarassin', 1301, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17970, 'Moissac', 1301, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17971, 'Montauban', 1301, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17972, 'Chamberet', 1303, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17973, 'Argenteuil', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17974, 'Arnouville-les-Gonesse', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17975, 'Beauchamps', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17976, 'Bezons', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17977, 'Cergy', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17978, 'Cormeilles-en-Parisis', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17979, 'Deuil-la-Barre', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17980, 'Domont', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17981, 'Eaubonne', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17982, 'Enghien-les-Bains', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17983, 'Eragny', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17984, 'Ermont', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17985, 'Ezanville', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17986, 'Fosses', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17987, 'Franconville', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17988, 'Garges-les-Gonesse', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17989, 'Gonesse', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17990, 'Goussainville', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17991, 'Herblay', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17992, 'Jouy-le-Moutier', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17993, 'L\'Isle-Adam', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17994, 'Montigny-les-Cormeilles', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17995, 'Montmagny', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17996, 'Montmorency', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17997, 'Osny', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17998, 'Persan', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(17999, 'Pontoise', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18000, 'Saint-Brice-sous-Foret', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18001, 'Saint-Gratien', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18002, 'Saint-Leu-la-Foret', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18003, 'Saint-Ouen-l\'Aumone', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18004, 'Sannois', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18005, 'Sarcelles', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18006, 'Soisy-sous-Montmorency', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18007, 'Taverny', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18008, 'Vaureal', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18009, 'Villiers-le-Bel', 1305, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18010, 'Alfortville', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18011, 'Arcueil', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18012, 'Boissy-Saint-Leger', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18013, 'Bonneuil', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18014, 'Bry-sur-Marne', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18015, 'Cachan', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18016, 'Champigny-sur-Marne', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18017, 'Charenton-le-Pont', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18018, 'Chennevieres-sur-Marne', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18019, 'Chevilly-Larue', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18020, 'Choisy-le-Roi', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18021, 'Creteil', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18022, 'Fontenay-sous-Bois', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18023, 'Fresnes', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18024, 'Gentilly', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18025, 'Ivry-sur-Seine', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(18026, 'Joinville-le-Pont', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18027, 'L\'Hay-les-Roses', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18028, 'La Queue-en-Brie', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18029, 'Le Kremlin-Bicetre', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18030, 'Le Perreux-sur-Marne', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18031, 'Le Plessis-Trevise', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18032, 'Limeil-Brevannes', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18033, 'Maisons-Alfort', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18034, 'Nogent-sur-Marne', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18035, 'Orly', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18036, 'Ormesson-sur-Marne', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18037, 'Saint-Mande', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18038, 'Saint-Maur-des-Fosses', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18039, 'Saint-Maurice', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18040, 'Sucy-en-Brie', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18041, 'Thiais', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18042, 'Valenton', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18043, 'Villejuif', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18044, 'Villeneuve-Saint-Georges', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18045, 'Villeneuve-le-Roi', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18046, 'Villiers-sur-Marne', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18047, 'Vincennes', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18048, 'Vitry-sur-Seine', 1306, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18049, 'Brignoles', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18050, 'Draguignan', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18051, 'Frejus', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18052, 'Hyeres', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18053, 'La Crau', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18054, 'La Garde', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18055, 'La Seyne-sur-Mer', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18056, 'La Valette-du-Var', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18057, 'Le Pradet', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18058, 'Ollioules', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18059, 'Roquebrune-sur-Argens', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18060, 'Saint-Maximin-la-Sainte-Baume', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18061, 'Saint-Raphael', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18062, 'Sainte-Maxime', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18063, 'Sanary-sur-Mer', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18064, 'Six-Fours-les-Plages', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18065, 'Sollies-Pont', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18066, 'Toulon', 1307, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18067, 'Apt', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18068, 'Avignon', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18069, 'Bollene', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18070, 'Carpentras', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18071, 'Cavaillon', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18072, 'L\'Isle-sur-la-Sorgue', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18073, 'Le Pontet', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18074, 'Orange', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18075, 'Pertuis', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18076, 'Sorgues', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18077, 'Valreas', 1308, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18078, 'Vellise', 1309, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18079, 'Challans', 1310, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18080, 'Chateau-d\'Olonne', 1310, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18081, 'Fontenay-le-Comte', 1310, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18082, 'La Chasnis', 1310, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18083, 'La Roche-sur-Yon', 1310, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18084, 'Les Herbiers', 1310, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18085, 'Les Sables-d\'Olonne', 1310, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18086, 'Longeville-sur-Mer', 1310, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18087, 'Chatellerault', 1311, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18088, 'Poitiers', 1311, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18089, 'Epinal', 1312, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18090, 'Gerardmer', 1312, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18091, 'Remiremont', 1312, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18092, 'Saint-Die', 1312, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18093, 'Auxerre', 1313, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18094, 'Avallon', 1313, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18095, 'Joigny', 1313, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18096, 'Sens', 1313, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18097, 'Acheres', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18098, 'Andresy', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18099, 'Aubergenville', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18100, 'Bois-d\'Arcy', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18101, 'Carrieres-sous-Poissy', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18102, 'Carrieres-sur-Seine', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18103, 'Chanteloup-les-Vignes', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18104, 'Chatou', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18105, 'Conflans-Sainte-Honorine', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18106, 'Croissy-sur-Seine', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18107, 'Elancourt', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18108, 'Fontenay-le-Fleury', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18109, 'Guyancourt', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18110, 'Houilles', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18111, 'La Celle-Saint-Cloud', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18112, 'Le Chesnay', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18113, 'Le Pecq', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18114, 'Le Vesinet', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18115, 'Les Clayes-sous-Bois', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18116, 'Les Mureaux', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18117, 'Limay', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18118, 'Maisons-Laffitte', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18119, 'Mantes-la-Jolie', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18120, 'Mantes-la-Ville', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18121, 'Marly-le-Roi', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18122, 'Maurepas', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18123, 'Montesson', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18124, 'Montigny-le-Bretonneux', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18125, 'Plaisir', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18126, 'Poissy', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18127, 'Rambouillet', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18128, 'Saint-Cyr-l\'Ecole', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18129, 'Saint-Germain-en-Laye', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18130, 'Sartrouville', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18131, 'Trappes', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18132, 'Triel-sur-Seine', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18133, 'Velizy-Villacoublay', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18134, 'Verneuil-sur-Seine', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18135, 'Versailles', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18136, 'Viroflay', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18137, 'Voisins-le-Bretonneux', 1314, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18138, 'Camopi', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18139, 'Cayenne', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18140, 'Iracoubo', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18141, 'Kourou', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18142, 'Macouria', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18143, 'Matoury', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18144, 'Remire-Montjoly', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18145, 'Roura', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18146, 'Saint-Georges', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18147, 'Sinnamary', 1315, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18148, 'Apatou', 1316, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18149, 'Grand-Santi', 1316, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18150, 'Mana', 1316, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18151, 'Maripasoula', 1316, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18152, 'Saint-Laurent-du-Maroni', 1316, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18153, 'Atuona', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18154, 'Fatu-Hiva', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18155, 'Hakahao', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18156, 'Hakamaii', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18157, 'Hatiheu', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18158, 'Tahuata', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18159, 'Taiohae', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18160, 'Taipivai', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18161, 'Ua-Huka', 1319, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18162, 'Ahe', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18163, 'Amanu', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18164, 'Anaa', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18165, 'Apataki', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18166, 'Arutua', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18167, 'Faaite', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18168, 'Fakahima', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18169, 'Fakarava', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18170, 'Fangatau', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18171, 'Hao', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18172, 'Hereheretue', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18173, 'Hikueru', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18174, 'Katiu', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18175, 'Kauehi', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18176, 'Kaukura', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18177, 'Makatea', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18178, 'Makemo', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18179, 'Manihi', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18180, 'Marokau', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18181, 'Napuka', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18182, 'Niau', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18183, 'Nukutavake', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18184, 'Puamau', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18185, 'Pukapuka', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18186, 'Pukarua', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18187, 'Rangiroa', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18188, 'Raroia', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18189, 'Reao', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18190, 'Rikitea', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18191, 'Taenga', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18192, 'Takapoto', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18193, 'Takaroa', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18194, 'Tatakoto', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18195, 'Tepoto', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18196, 'Tikehau', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18197, 'Tureia', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18198, 'Vahitahi', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18199, 'Vairaatea', 1320, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18200, 'Amaru', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18201, 'Anapoto', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18202, 'Anatonu', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18203, 'Auti', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18204, 'Avera', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18205, 'Mahu', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18206, 'Mataura', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18207, 'Moerai', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18208, 'Mutuaura', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18209, 'Rairua', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18210, 'Rapa', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18211, 'Taahuaia', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18212, 'Vaiuru', 1321, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18213, 'Martin-de-Vivies', 1322, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18214, 'Port-aux-Francais', 1324, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18215, 'Cocobeach', 1325, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18216, 'Kango', 1325, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18217, 'Libreville', 1325, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18218, 'Nkan', 1325, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18219, 'Ntoum', 1325, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18220, 'Lekoni', 1326, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18221, 'Masuku', 1326, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18222, 'Moanda', 1326, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18223, 'Mounana', 1326, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18224, 'Okandja', 1326, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18225, 'Lambarene', 1327, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18226, 'Ndjole', 1327, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18227, 'Fougamou', 1328, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18228, 'Mbigou', 1328, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18229, 'Mimongo', 1328, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18230, 'Mouila', 1328, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18231, 'Ndende', 1328, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18232, 'Mayumba', 1329, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18233, 'Tchibanga', 1329, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18234, 'Tsogni', 1329, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18235, 'Booue', 1330, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18236, 'Makokou', 1330, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18237, 'Mekambo', 1330, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18238, 'Koulamoutou', 1331, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18239, 'Lastoursville', 1331, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18240, 'Gamba', 1332, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18241, 'Omboue', 1332, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18242, 'Port-Gentil', 1332, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18243, 'Sette Cama', 1332, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18244, 'Bitam', 1333, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18245, 'Lalara', 1333, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18246, 'Medouneu', 1333, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18247, 'Minvoul', 1333, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18248, 'Mitzic', 1333, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18249, 'Oyem', 1333, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18250, 'Banjul', 1334, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18251, 'Basse', 1335, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18252, 'Gambissara', 1335, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18253, 'Sabi', 1335, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18254, 'Salikeni', 1335, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18255, 'Brikama', 1336, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18256, 'Brufut', 1336, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18257, 'Gunjur', 1336, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18258, 'Sukuta', 1336, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18259, 'Bansang', 1337, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18260, 'Janjanbureh', 1337, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18261, 'Bakau', 1338, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18262, 'Serekunda', 1338, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18263, 'Barra', 1339, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18264, 'Essau', 1339, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18265, 'Farafenni', 1339, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18266, 'Kerewan', 1339, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18267, 'Lamin', 1339, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18268, 'Kuntaur', 1340, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18269, 'Mansakonko', 1341, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18270, 'Ahali Atoni', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18271, 'Bihvinta', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18272, 'Gagra', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18273, 'Gali', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18274, 'Gudauta', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18275, 'Gulripshi', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18276, 'Ochamchira', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18277, 'Suhumi', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18278, 'Tkvarcheli', 1342, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18279, 'Batumi', 1343, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18280, 'Dioknisi', 1343, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18281, 'Kobuleti', 1343, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18282, 'Mahindzhauri', 1343, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18283, 'Lanchhuti', 1344, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18284, 'Ozurgeti', 1344, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18285, 'Bagdadi', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18286, 'Chaltubo', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18287, 'Chiatura', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18288, 'Honi', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18289, 'Kutaisi', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18290, 'Sachhere', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18291, 'Samtredia', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18292, 'Terzhola', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18293, 'Tkibuli', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18294, 'Vani', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18295, 'Zestaponi', 1345, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18296, 'Ahmeta', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18297, 'Cnori', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18298, 'Dedoplisckaro', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18299, 'Gurdzhaani', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18300, 'Kvareli', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18301, 'Lagodehi', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18302, 'Sagaredzho', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18303, 'Signahi', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18304, 'Telavi', 1346, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18305, 'Dusheti', 1348, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18306, 'Mcheta', 1348, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18307, 'Ambrolauri', 1349, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18308, 'Cageri', 1349, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18309, 'Oni', 1349, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18310, 'Ahalcihe', 1351, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18311, 'Ahalkalaki', 1351, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18312, 'Borzhomi', 1351, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18313, 'Ninocminda', 1351, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18314, 'Vale', 1351, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18315, 'Tbilisi', 1353, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18316, 'Aalen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18317, 'Achern', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18318, 'Aichtal', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18319, 'Albstadt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18320, 'Aldingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18321, 'Allmersbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18322, 'Alpirsbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18323, 'Altensteig', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18324, 'Altlussheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18325, 'Ammerbuch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18326, 'Appenweier', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18327, 'Asperg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18328, 'Backnang', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18329, 'Bad Durrheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18330, 'Bad Friedrichshall', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18331, 'Bad Krozingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18332, 'Bad Liebenzell', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18333, 'Bad Mergentheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18334, 'Bad Rappenau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18335, 'Bad Sackingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18336, 'Bad Schonborn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18337, 'Bad Urach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18338, 'Bad Waldsee', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18339, 'Bad Wurzach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18340, 'Baden-Baden', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18341, 'Bahlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18342, 'Baiersbronn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18343, 'Balgheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18344, 'Balingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18345, 'Ballrechten-Dottingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18346, 'Besigheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18347, 'Biberach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18348, 'Bietigheim-Bissingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18349, 'Binzen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18350, 'Birkenfeld', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18351, 'Bisingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18352, 'Bitz', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18353, 'Blaubeuren', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18354, 'Blaustein', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18355, 'Blumberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18356, 'Boblingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18357, 'Bodelshausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18358, 'Bonndorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18359, 'Bonnigheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18360, 'Bopfingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18361, 'Bottingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18362, 'Brackenheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18363, 'Breisach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18364, 'Bretten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18365, 'Bretzfeld', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18366, 'Bruchsal', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18367, 'Bruhl', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18368, 'Buchen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18369, 'Buchenbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18370, 'Buhl', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18371, 'Burgstetten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18372, 'Burladingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18373, 'Calw', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18374, 'Crailsheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18375, 'Denkendorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18376, 'Denzlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18377, 'Dettingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18378, 'Dietenheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18379, 'Ditzingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18380, 'Donaueschingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18381, 'Donzdorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18382, 'Dornhan', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18383, 'Dornstadt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18384, 'Dornstetten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18385, 'Dossenheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18386, 'Durbheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18387, 'Durmersheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18388, 'Eberbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18389, 'Ebersbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18390, 'Edingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18391, 'Edingen-Neckarhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18392, 'Eggenstein-Leopoldshafen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18393, 'Ehingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18394, 'Eislingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18395, 'Ellhofen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18396, 'Ellwangen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18397, 'Emmendingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18398, 'Emmingen-Liptingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18399, 'Engen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18400, 'Eningen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18401, 'Eppelheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18402, 'Eppingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18403, 'Erbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18404, 'Eriskirch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18405, 'Eschach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18406, 'Esslingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18407, 'Ettenheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18408, 'Ettlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18409, 'Fellbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18410, 'Filderstadt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18411, 'Freiberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18412, 'Freiburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18413, 'Freudenstadt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18414, 'Frickenhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18415, 'Fridingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18416, 'Friedrichshafen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18417, 'Friesenheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18418, 'Frittlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18419, 'Furtwangen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18420, 'Gaggenau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18421, 'Gaildorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18422, 'Gartringen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18423, 'Gaufelden', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18424, 'Geislingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18425, 'Gengenbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18426, 'Gerlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18427, 'Gernsbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18428, 'Gerstetten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18429, 'Giengen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18430, 'Goppingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18431, 'Gottmadingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18432, 'Graben-Neudorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18433, 'Grafenberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18434, 'Grafenhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18435, 'Grenzach-Wyhlen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18436, 'GroBbettlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18437, 'Grunkraut', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18438, 'Gschwend', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18439, 'Guglingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18440, 'Gundelfingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18441, 'Gutach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18442, 'Haigerloch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18443, 'Haiterbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18444, 'Harmersabch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18445, 'Hausach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18446, 'Hechingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18447, 'Heddesheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18448, 'Heidelberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18449, 'Heidenheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18450, 'Heilbronn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18451, 'Hemsbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18452, 'Herbrechtingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18453, 'Herrenberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18454, 'Heubach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18455, 'Hirschberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18456, 'Hockenheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18457, 'Holzgerlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18458, 'Horb', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18459, 'Hufingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18460, 'Huttlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18461, 'Isny', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18462, 'Ispringen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18463, 'Jungingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18464, 'Karlsbad', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18465, 'Karlsruhe', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18466, 'Kehl', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18467, 'Kernen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18468, 'Ketsch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18469, 'Kieselbronn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18470, 'Kirchberg an der Jagst', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18471, 'Kirchheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18472, 'Kirchzarten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18473, 'Kisslegg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18474, 'Klettgau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18475, 'Kongen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18476, 'Konigsbach-Stein', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18477, 'Konigsbronn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18478, 'Konstanz', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18479, 'Korb', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18480, 'Korntal-Munchingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18481, 'Kornwestheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18482, 'Kraichtal', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18483, 'Kressbronn an Bodensee', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18484, 'Kronau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18485, 'Kuessaberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18486, 'Kunzelsau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18487, 'Ladenburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18488, 'Lahr', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18489, 'Laichingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18490, 'Langenau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18491, 'Lauda-Konigshofen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18492, 'Lauffen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18493, 'Laupheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18494, 'Leimen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18495, 'Leinfelden-Echterdingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18496, 'Leingarten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18497, 'Lenningen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18498, 'Lenzkirch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18499, 'Leonberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18500, 'Leutenbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18501, 'Leutkirch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18502, 'Lichtenstein', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18503, 'Linkenheim-Hochstetten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18504, 'Lorch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18505, 'Lorrach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18506, 'Ludwigsburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18507, 'Malsch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18508, 'Mannheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18509, 'Marbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18510, 'Markdorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18511, 'Markgroningen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18512, 'Maulburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18513, 'MeBstetten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18514, 'Meckenbeuren', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18515, 'Meckesheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18516, 'Meersburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18517, 'Mengen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18518, 'Metzingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18519, 'Mockmuhl', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18520, 'Moglingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18521, 'Monsheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18522, 'Mosbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18523, 'Mossingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18524, 'Muhlacker', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18525, 'Mullheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18526, 'Munsingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18527, 'Murrhardt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18528, 'Nagold', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18529, 'Neckargemund', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18530, 'Neckarsulm', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18531, 'Neresheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18532, 'Neuenburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18533, 'Neuhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18534, 'Niederstetten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18535, 'Niefern-Oschelbronn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18536, 'NuBloch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18537, 'Nurtingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18538, 'Oberhausen-Rheinhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18539, 'Oberkirch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18540, 'Oberndorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18541, 'Oberstenfeld', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18542, 'Obersulm', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18543, 'Ochsenhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18544, 'Offenburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18545, 'Ofterdingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18546, 'Oftersheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18547, 'Oggelshausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18548, 'Ohringen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18549, 'Olbronn-Durrn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18550, 'Oppenweiler', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18551, 'Ostfildern', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18552, 'Ostringen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18553, 'Otisheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18554, 'Pfalzgrafenweiler', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18555, 'Pfinztal', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18556, 'Pforzheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18557, 'Pfullendorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18558, 'Pfullingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18559, 'Philippsburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18560, 'Plankstadt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18561, 'Pleidelsheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18562, 'Pliezhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18563, 'Plochingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18564, 'Pluderhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18565, 'Radolfzell', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18566, 'Rastatt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18567, 'Ravensburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18568, 'Reilingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18569, 'Remchingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18570, 'Remseck', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18571, 'Remshalden', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18572, 'Renchen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18573, 'Renningen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18574, 'Reutlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18575, 'Rheinau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18576, 'Rheinfelden', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18577, 'Rheinmunster', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18578, 'Rheinstetten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18579, 'Riederich', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18580, 'Riedlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18581, 'Rielasingen-Worblingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18582, 'Rosenfeld', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18583, 'Rottenburg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18584, 'Rottweil', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18585, 'Rudersberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18586, 'Rutesheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18587, 'Sachsenheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18588, 'Salem', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18589, 'Sandhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18590, 'Sankt Georgen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18591, 'Sankt Leon-Rot', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18592, 'Saulgau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18593, 'Scheer', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18594, 'Schlierbach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(18595, 'Schonaich', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18596, 'Schopfheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18597, 'Schorndorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18598, 'Schramberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18599, 'Schriesheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18600, 'Schwabisch Gmund', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18601, 'Schwabisch Hall', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18602, 'Schwaigern', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18603, 'Schwetzingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18604, 'Schwieberdingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18605, 'Seitingen-Oberflacht', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18606, 'Sexau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18607, 'Sigmaringen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18608, 'Sindelfingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18609, 'Singen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18610, 'Sinsheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18611, 'Sinzheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18612, 'Sonnenbuhl', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18613, 'Sontheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18614, 'Spaichingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18615, 'Stegen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18616, 'Steinen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18617, 'Steinheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18618, 'Steinmauern', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18619, 'Stockach', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18620, 'Straubenhardt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18621, 'Stutensee', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18622, 'Stuttgart', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18623, 'SuBen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18624, 'Sulz', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18625, 'Sulzfeld', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18626, 'Tamm', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18627, 'Tauberbischofsheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18628, 'Teningen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18629, 'Tettnang', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18630, 'Titisee-Neustadt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18631, 'Trossingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18632, 'Tubingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18633, 'Tuningen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18634, 'Tuttlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18635, 'Uberlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18636, 'Ubstadt-Weiher', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18637, 'Uhingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18638, 'Ulm', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18639, 'Umkirch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18640, 'Vaihingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18641, 'Villingen-Schwenningen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18642, 'Villingendorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18643, 'Waghausel', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18644, 'Waiblingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18645, 'Waldbronn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18646, 'Waldkirch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18647, 'Waldlaubersheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18648, 'Waldshut-Tiengen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18649, 'Walldorf', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18650, 'Walldurn', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18651, 'Walzbachtal', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18652, 'Wangen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18653, 'Wehr', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18654, 'Weikersheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18655, 'Weil', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18656, 'Weil am Rhein', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18657, 'Weil der Stadt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18658, 'Weil im Schonbuch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18659, 'Weilheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18660, 'Weingarten', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18661, 'Weinheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18662, 'Weinsberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18663, 'Weinstadt', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18664, 'Wellendingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18665, 'Welzheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18666, 'Wendlingen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18667, 'Wernau', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18668, 'Wertheim', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18669, 'Wiesloch', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18670, 'Wildbad', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18671, 'Wildberg', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18672, 'Winnenden', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18673, 'Wolpertshausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18674, 'Zuzenhausen', 1355, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18675, 'Ahorn', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18676, 'Allershausen', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18677, 'Attenhofen', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18678, 'Bad Birnbach', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18679, 'Bad Endorf', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18680, 'Bad Gronenbach', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18681, 'Barbing', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18682, 'Benediktbeuern', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18683, 'Breitenberg', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18684, 'Bruckberg', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18685, 'Brunnthal', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18686, 'Burgheim', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18687, 'Chiemsee', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18688, 'Emersacker', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18689, 'Eresing', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18690, 'Fahrenzhausen', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18691, 'Faulbach', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18692, 'Finning', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18693, 'Forstinning', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18694, 'Georgensgmund', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18695, 'Haldenwang', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18696, 'Heideck', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18697, 'Heimenkirch', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18698, 'Hergensweiler', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18699, 'Hirschau', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18700, 'Iffeldorf', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18701, 'Karlstein', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18702, 'Kleinheubach', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18703, 'Kleinwallstadt', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18704, 'Kotz', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18705, 'Krailling', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18706, 'Langenbach', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18707, 'Laudenbach', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18708, 'Leutershausen', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18709, 'Mammendorf', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18710, 'Mombris', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18711, 'Munnerstadt', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18712, 'Neu-Ulm', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18713, 'Niederlauer', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18714, 'Obernburg', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18715, 'Oberpfaffenhofen', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18716, 'Ostallgau', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18717, 'Prittriching', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18718, 'Prutting', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18719, 'Pullach', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18720, 'Putzbrunn', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18721, 'Randersacker', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18722, 'Rednitzhembach', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18723, 'Ronsberg', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18724, 'Ruckersdorf', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18725, 'Schaufling', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18726, 'Schonberg', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18727, 'Seefeld', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18728, 'Sengenthal', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18729, 'Sondheim v.d.Rhon', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18730, 'Steinwiesen', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18731, 'Stockheim', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18732, 'Tagmersheim', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18733, 'Uettingen', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18734, 'Unterfohring', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18735, 'Weibensberg', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18736, 'Wiesthal', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18737, 'Wildflecken', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18738, 'Wolfertschwenden', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18739, 'Zorneding', 1356, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18740, 'Abensberg', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18741, 'Aichach', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18742, 'Ainring', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18743, 'Altdorf', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18744, 'Altotting', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18745, 'Altusried', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18746, 'Alzenau', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18747, 'Amberg', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18748, 'Amerang', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18749, 'Ansbach', 1357, 0.00, 0, '2021-04-06 01:13:45', '2021-04-06 01:13:45', NULL), -(18750, 'Aschaffenburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18751, 'Augsburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18752, 'Bad Aibling', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18753, 'Bad Kissingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18754, 'Bad Neustadt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18755, 'Bad Reichenhall', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18756, 'Bad Tolz', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18757, 'Bad Windsheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18758, 'Bad Worishofen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18759, 'Bamberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18760, 'Bayreuth', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18761, 'Bobingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18762, 'Bogen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18763, 'Bruckmuhl', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18764, 'Buchloe', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18765, 'Burghausen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18766, 'Burgkirchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18767, 'Burglengenfeld', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18768, 'Burgthann', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18769, 'Buttenheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18770, 'Cadolzburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18771, 'Castell', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18772, 'Cham', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18773, 'Coburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18774, 'Dachau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18775, 'Deggendorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18776, 'DieBen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18777, 'Diedorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18778, 'Dietmannsried', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18779, 'Dietramszell', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18780, 'Dillingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18781, 'Dingolfing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18782, 'Dinkelsbuhl', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18783, 'Dombuhl', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18784, 'Donauworth', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18785, 'Dorfen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18786, 'Ebersberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18787, 'Eching', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18788, 'Eckental', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18789, 'Eggenfelden', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18790, 'Eichenau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18791, 'Eichstatt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18792, 'Elchingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18793, 'Erding', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18794, 'Ergolding', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18795, 'Erlangen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18796, 'Erlenbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18797, 'Essenbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18798, 'Feldafing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18799, 'Feldkirchen-Westerham', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18800, 'Feucht', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18801, 'Feuchtwangen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18802, 'Forchheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18803, 'Freilassing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18804, 'Freising', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18805, 'Fridolfing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18806, 'Friedberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18807, 'Furstenfeldbruck', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18808, 'Furth', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18809, 'Furth im Wald', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18810, 'Fussen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18811, 'Gachenbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18812, 'Gaimersheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18813, 'Garching', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18814, 'Garmisch-Partenkirchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18815, 'Gauting', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18816, 'Gemunden', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18817, 'Geretsried', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18818, 'Germering', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18819, 'Gersthofen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18820, 'Gilching', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18821, 'Goldbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18822, 'Grafelfing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18823, 'Grafenau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18824, 'Grafing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18825, 'GroBostheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18826, 'Grobenstadt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18827, 'Grobenzell', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18828, 'Grunwald', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18829, 'Gunzburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18830, 'Gunzenhausen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18831, 'HaBfurt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18832, 'Haar', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18833, 'Hammelburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18834, 'Hasloch', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18835, 'Hauzenberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18836, 'Helmbrechts', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18837, 'Henfenfeld', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18838, 'Hersbruck', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18839, 'Herzogenaurach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18840, 'Hilpoltstein', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18841, 'Hirschaid', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18842, 'Hochstadt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18843, 'Hof', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18844, 'Holzkirchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18845, 'Hosbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18846, 'Illertissen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18847, 'Immenstadt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18848, 'Ingolstadt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18849, 'Inning', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18850, 'Ismaning', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18851, 'Karlsfeld', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18852, 'Karlstadt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18853, 'Kaufbeuren', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18854, 'Kelheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18855, 'Kempten', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18856, 'Kiefersfelden', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18857, 'Kirchheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18858, 'Kissing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18859, 'Kitzingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18860, 'Kleinostheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18861, 'Klingenberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18862, 'Kolbermoor', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18863, 'Konigsbrunn', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18864, 'Kreuzwertheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18865, 'Kronach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18866, 'Krumbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18867, 'Kulmbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18868, 'Kummersbruck', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18869, 'Landau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18870, 'Landsberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18871, 'Landshut', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18872, 'Langenzenn', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18873, 'Lappersdorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18874, 'Lauf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18875, 'Lauingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18876, 'Leinburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18877, 'Lenggries', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18878, 'Lichtenfels', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18879, 'Lindach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18880, 'Lindau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18881, 'Lindenberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18882, 'Lohr', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18883, 'Mainburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18884, 'Maisach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18885, 'Manching', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18886, 'Markt Schwaben', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18887, 'Marktheidenfeld', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18888, 'Marktoberdorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18889, 'Marktredwitz', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18890, 'Maxhutte-Haidhof', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18891, 'Meitingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18892, 'Memmingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18893, 'Mering', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18894, 'Miesbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18895, 'Miltenberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18896, 'Mindelheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18897, 'Moosburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18898, 'Muhldorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18899, 'Munchberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18900, 'Munchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18901, 'Munningen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18902, 'Murnau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18903, 'Naila', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18904, 'Neubiberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18905, 'Neuburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18906, 'Neufahrn', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18907, 'Neumarkt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18908, 'Neuried', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18909, 'NeusaB', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18910, 'Neustadt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18911, 'Neutraubling', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18912, 'Nordlingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18913, 'Nuremberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18914, 'Nurnberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18915, 'Oberasbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18916, 'Oberhaching', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18917, 'OberschleiBheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18918, 'Oberstdorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18919, 'Ochsenfurt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18920, 'Olching', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18921, 'Osterhofen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18922, 'Ostheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18923, 'Ottobrunn', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18924, 'Parsberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18925, 'Passau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18926, 'Pegnitz', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18927, 'PeiBenberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18928, 'Peiting', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18929, 'Pentling', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18930, 'Penzberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18931, 'Pfaffenhofen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18932, 'Pfarrkirchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18933, 'Planegg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18934, 'Plattling', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18935, 'Pocking', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18936, 'Poing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18937, 'Polling', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18938, 'Pommelsbrunn', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18939, 'Prien', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18940, 'Puchheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18941, 'Rannersdorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18942, 'Raubling', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18943, 'Regen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18944, 'Regensburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18945, 'Regenstauf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18946, 'Rehau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18947, 'Rodental', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18948, 'Roding', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18949, 'Rosenheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18950, 'Roth', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18951, 'Rothenbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18952, 'Rothenburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18953, 'Ruhstorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18954, 'Schnelldorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18955, 'Schongau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18956, 'Schrobenhausen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18957, 'Schwabach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18958, 'Schwabmunchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18959, 'Schwandorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18960, 'Schwarzenbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18961, 'Schweinfurt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18962, 'Selb', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18963, 'Selbitz', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18964, 'Senden', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18965, 'Simbach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18966, 'Sonthofen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18967, 'Spalt', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18968, 'Stadtbergen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18969, 'Staffelstein', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18970, 'Starnberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18971, 'Stein', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18972, 'Stephanskirchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18973, 'Straubing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18974, 'Sulzbach-Rosenberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18975, 'Taufkirchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18976, 'Thansau', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18977, 'Tirschenreuth', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18978, 'Toging', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18979, 'Traunreut', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18980, 'Traunstein', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18981, 'Treuchtlingen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18982, 'Trostberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18983, 'Tutzing', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18984, 'Unterbergen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18985, 'Unterhaching', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18986, 'UnterschleiBheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18987, 'Valley', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18988, 'Vaterstetten', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18989, 'Veitshochheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18990, 'Viechtach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18991, 'Vilgertshofen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18992, 'Vilsbiburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18993, 'Vilshofen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18994, 'Vohringen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18995, 'Volkach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18996, 'Waldkirchen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18997, 'Waldkraiburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18998, 'Walkertshofen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(18999, 'Wasserburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19000, 'WeiBenburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19001, 'WeiBenhorn', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19002, 'Weiden', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19003, 'Weidenberg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19004, 'Weilheim', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19005, 'Wendelstein', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19006, 'Werneck', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19007, 'Wessling', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19008, 'Wolfratshausen', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19009, 'Wolnzach', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19010, 'Wunsiedel', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19011, 'Wurzburg', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19012, 'Zirndorf', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19013, 'Zwiesel', 1357, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19014, 'Berlin', 1359, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19015, 'Panketal', 1359, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19016, 'Steinfeld', 1359, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19017, 'Angermunde', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19018, 'Bad Freienwalde', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19019, 'Bad Liebenwerda', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19020, 'Barnim', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19021, 'Beeskow', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19022, 'Bernau', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19023, 'Blankenfelde', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19024, 'Brandenburg', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19025, 'Brieselang', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19026, 'Cottbus', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19027, 'Dahlewitz', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19028, 'Dahme', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19029, 'Eberswalde', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19030, 'Eisenhuttenstadt', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19031, 'Elsterwerda', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19032, 'Erkner', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19033, 'Falkensee', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19034, 'Finsterwalde', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19035, 'Forst', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19036, 'Frankfurt', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19037, 'Fredersdorf-Vogelsdorf', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19038, 'Furstenwalde', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19039, 'Glienicke', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19040, 'Gransee', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19041, 'GroBraschen', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19042, 'Guben', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19043, 'Heidesee', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19044, 'Hennigsdorf', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19045, 'Herzberg', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19046, 'Hohen Neuendorf', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19047, 'Jacobsdorf', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19048, 'Juterbog', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19049, 'Kleinmachnow', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19050, 'Kolkwitz', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19051, 'Konigs Wusterhausen', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19052, 'Kyritz', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19053, 'Lauchhammer', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19054, 'Lubben', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19055, 'Lubbenau', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19056, 'Luckenwalde', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19057, 'Ludwigsfelde', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19058, 'Nauen', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19059, 'Neuenhagen', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19060, 'Neuruppin', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19061, 'Oranienburg', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19062, 'Perleberg', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19063, 'Petershagen-Eggersdorf', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19064, 'Potsdam', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19065, 'Premnitz', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19066, 'Prenzlau', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19067, 'Pritzwalk', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19068, 'Rathenow', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19069, 'Rudersdorf', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19070, 'Schonefeld', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19071, 'Schoneiche', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19072, 'Schwedt', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19073, 'Schwielowsee', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19074, 'Senftenberg', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19075, 'Spremberg', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19076, 'Strausberg', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19077, 'Teltow', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19078, 'Templin', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19079, 'Velten', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19080, 'Werder', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19081, 'Wildau', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19082, 'Wittenberge', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19083, 'Wittstock', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19084, 'Zehdenick', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19085, 'Zepernick', 1360, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19086, 'Bremen', 1361, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19087, 'Bremerhaven', 1361, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19088, 'Berne', 1364, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19089, 'Hamburg', 1364, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19090, 'Diekholzen', 1365, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19091, 'Heroldstatt', 1366, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19092, 'ABlar', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19093, 'Alsbach-Hähnlein', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19094, 'Alsfeld', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19095, 'Altenstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19096, 'Angelburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19097, 'Arolsen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19098, 'Asslar', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19099, 'Babenhausen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19100, 'Bad Camberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19101, 'Bad Hersfeld', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19102, 'Bad Homburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19103, 'Bad Nauheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19104, 'Bad Orb', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19105, 'Bad Schwalbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19106, 'Bad Soden', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19107, 'Bad Soden-Salmunster', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19108, 'Bad Sooden-Allendorf', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19109, 'Bad Vilbel', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19110, 'Bad Wildungen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19111, 'Baunatal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19112, 'Bebra', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19113, 'Beerfelden', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19114, 'Bensheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19115, 'Berkatal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19116, 'Biblis', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19117, 'Bickenbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19118, 'Biebertal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19119, 'Biedenkopf', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19120, 'Birkenau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19121, 'Bischofsheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19122, 'Borken', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19123, 'Braunfels', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19124, 'Breidenbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19125, 'Bruchkobel', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19126, 'Budingen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19127, 'Burstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19128, 'Buseck', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19129, 'Buttelborn', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19130, 'Butzbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19131, 'Darmstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19132, 'Dautphetal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19133, 'Dieburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19134, 'Dietzenbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19135, 'Dillenburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19136, 'Dreieich', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19137, 'Egelsbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19138, 'Eichenzell', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19139, 'Eltville', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19140, 'Eppstein', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19141, 'Erbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19142, 'Erlensee', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19143, 'Erzhausen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19144, 'Eschborn', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19145, 'Eschenburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19146, 'Eschwege', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19147, 'Felsberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19148, 'Fernwald', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19149, 'Florsheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19150, 'Frankenberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19151, 'Frankfurt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19152, 'Freigericht', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19153, 'Friedberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19154, 'Friedrichsdorf', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19155, 'Fritzlar', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19156, 'Fulda', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19157, 'Fuldabruck', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19158, 'Fuldatal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19159, 'Geisenheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19160, 'Gelnhausen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19161, 'Gernsheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19162, 'GieBen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19163, 'Giessen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19164, 'Ginsheim-Gustavsburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(19165, 'Gladenbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19166, 'Griesheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19167, 'GroB-Gerau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19168, 'GroB-Umstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19169, 'GroB-Zimmern', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19170, 'Grossenluder', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19171, 'Gruenberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19172, 'Grunberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19173, 'Grundau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19174, 'Hadamar', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19175, 'Haiger', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19176, 'Hainburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19177, 'Hanau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19178, 'Hattersheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19179, 'Heppenheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19180, 'Herborn', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19181, 'Hessisch Lichtenau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19182, 'Heuchelheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19183, 'Heusenstamm', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19184, 'Hochheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19185, 'Hochst', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19186, 'Hofbieber', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19187, 'Hofgeismar', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19188, 'Hofheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19189, 'Homberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19190, 'Hunfeld', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19191, 'Hunfelden', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19192, 'Hungen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19193, 'Huttenberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19194, 'Idstein', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19195, 'Karben', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19196, 'Kassel', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19197, 'Kaufungen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19198, 'Kelkheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19199, 'Kelsterbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19200, 'Kirchhain', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19201, 'Konigstein', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19202, 'Korbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19203, 'Kriftel', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19204, 'Kronberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19205, 'Kunzell', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19206, 'Lahnau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19207, 'Lahntal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19208, 'Lampertheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19209, 'Langen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19210, 'Langenselbold', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19211, 'Langgons', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19212, 'Laubach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19213, 'Lauterbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19214, 'Lich', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19215, 'Limburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19216, 'Linden', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19217, 'Lindenholzhausen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19218, 'Linsengericht', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19219, 'Lohfelden', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19220, 'Lollar', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19221, 'Lorsch', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19222, 'Maintal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19223, 'Marburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19224, 'Melsungen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19225, 'Mengerskirchen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19226, 'Michelstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19227, 'Morfelden-Walldorf', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19228, 'Morlenbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19229, 'Mucke', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19230, 'Muhlheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19231, 'Muhltal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19232, 'Munster', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19233, 'Nauheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19234, 'Neu-Anspach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19235, 'Neu-Isenburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19236, 'Neuhof', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19237, 'Neustadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19238, 'Nidda', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19239, 'Niddatal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19240, 'Nidderau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19241, 'Niederdorfelden', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19242, 'Niedernhausen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19243, 'Niestetal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19244, 'Ober-Ramstedt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19245, 'Obertshausen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19246, 'Oberursel', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19247, 'Oestrich-Winkel', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19248, 'Offenbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19249, 'Petersberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19250, 'Pfungstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19251, 'Pohlheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19252, 'Raunheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19253, 'Reichelsheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19254, 'Reinheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19255, 'Reiskirchen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19256, 'Riedstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19257, 'Rimbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19258, 'RoBdorf', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19259, 'Rodenbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19260, 'Rodermark', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19261, 'Rodgau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19262, 'Rosbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19263, 'Rotenburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19264, 'Rudesheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19265, 'Runkel', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19266, 'Russelsheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19267, 'Schauenburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19268, 'Schlangenbad', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19269, 'Schlitz', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19270, 'Schluchtern', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19271, 'Schoneck', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19272, 'Schotten', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19273, 'Schwalbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19274, 'Schwalbach am Taunus', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19275, 'Schwalmstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19276, 'Seeheim-Jugenheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19277, 'Seligenstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19278, 'Selters', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19279, 'Sinntal', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19280, 'Solms', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19281, 'Sontra', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19282, 'Spangenberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19283, 'Stadtallendorf', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19284, 'Steinau', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19285, 'Steinbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19286, 'Taunusstein', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19287, 'Trebur', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19288, 'Ulrichstein', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19289, 'Usingen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19290, 'Vellmar', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19291, 'Viernheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19292, 'Volkmarsen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19293, 'Wachtersbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19294, 'Wald-Michelbach', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19295, 'Waldbrunn', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19296, 'Waldems', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19297, 'Wehrheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19298, 'Weilburg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19299, 'Weilmunster', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19300, 'Weiterstadt', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19301, 'Wettenberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19302, 'Wetter', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19303, 'Wetzlar', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19304, 'Wiesbaden', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19305, 'Witzenhausen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19306, 'Wolfersheim', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19307, 'Wolfhagen', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19308, 'Zwingenberg', 1367, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19309, 'Kortenberg', 1368, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19310, 'Laasdorf', 1369, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19311, 'Anklam', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19312, 'Bad Doberan', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19313, 'Barth', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19314, 'Bergen', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19315, 'Boizenburg', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19316, 'Butzow', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19317, 'Demmin', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19318, 'Gagelow', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19319, 'Gallin', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19320, 'Grabow', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19321, 'Greifswald', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19322, 'Grevesmuhlen', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19323, 'Grimmen', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19324, 'Gustrow', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19325, 'Hagenow', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19326, 'Konigsee', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19327, 'Lubtheen', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19328, 'Ludersdorf', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19329, 'Ludwigslust', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19330, 'Malchin', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19331, 'Neubrandenburg', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19332, 'Neustrelitz', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19333, 'Parchim', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19334, 'Pasewalk', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19335, 'Ribnitz-Damgarten', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19336, 'Rostock', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19337, 'SaBnitz', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19338, 'Schweina', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19339, 'Schwerin', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19340, 'Selmsdorf', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19341, 'Stralsund', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19342, 'Teterow', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19343, 'Torgelow', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19344, 'Ueckermunde', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19345, 'Waren', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19346, 'Wismar', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19347, 'Wolgast', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19348, 'Zarrentin', 1381, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19349, 'Mulfingen', 1382, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19350, 'Grafing bei Munchen', 1383, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19351, 'Neubeuern', 1384, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19352, 'Achim', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19353, 'Adendorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19354, 'Aerzen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19355, 'Alfeld', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19356, 'Ankum', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19357, 'Apen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19358, 'Aurich', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19359, 'Bad Bentheim', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19360, 'Bad Bevensen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19361, 'Bad Essen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19362, 'Bad Gandersheim', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19363, 'Bad Harzburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19364, 'Bad Iburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19365, 'Bad Laer', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19366, 'Bad Lauterberg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19367, 'Bad Munder', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19368, 'Bad Nenndorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19369, 'Bad Pyrmont', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19370, 'Bad Sachsa', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19371, 'Bad Salzdetfurth', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19372, 'Bad Zwischenahn', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19373, 'BarBel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19374, 'Barsinghausen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19375, 'Bassum', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19376, 'Beesten', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19377, 'Belm', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19378, 'Bergen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19379, 'Bissendorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19380, 'Bleckede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19381, 'Bockenem', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19382, 'Bohmte', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19383, 'Bovenden', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19384, 'Brake', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19385, 'Bramsche', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19386, 'Braunschweig', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19387, 'Bremervorde', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19388, 'Brockel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19389, 'Brunswick', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19390, 'Buchholz', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19391, 'Buckeburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19392, 'Burgdorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19393, 'Burgwedel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19394, 'Buxtehude', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19395, 'Celle', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19396, 'Clausthal-Zellerfeld', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19397, 'Clenze', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19398, 'Cloppenburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19399, 'Cremlingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19400, 'Cuxhaven', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19401, 'Dahlenburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19402, 'Damme', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19403, 'Dannenberg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19404, 'Dassel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19405, 'Deinste', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19406, 'Delmenhorst', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19407, 'Diepholz', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19408, 'Dinklage', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19409, 'Dorverden', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19410, 'Dransfeld', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19411, 'Drochtersen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19412, 'Duderstadt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19413, 'Edemissen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19414, 'Edewecht', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19415, 'Einbeck', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19416, 'Elsfleth', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19417, 'Elze', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19418, 'Emden', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19419, 'Emlichheim', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19420, 'Emmerthal', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19421, 'Emsburen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19422, 'Eppendorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19423, 'Fallingbostel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19424, 'Frellstedt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19425, 'Friedeburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19426, 'Friedland', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19427, 'Friesoythe', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19428, 'Ganderkesee', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19429, 'Garbsen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19430, 'Garrel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19431, 'Geeste', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19432, 'Gehrden', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19433, 'Georgsmarienhutte', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19434, 'Gifhorn', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19435, 'Gleichen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19436, 'Goslar', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19437, 'Gottingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19438, 'GroBefehn', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19439, 'GroBenkneten', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19440, 'Hagen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19441, 'Hambergen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19442, 'Hameln', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19443, 'Hannover', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19444, 'Hannoversch Munden', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19445, 'Haren', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19446, 'Harsum', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19447, 'Hasbergen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19448, 'Haselunne', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19449, 'Hatten', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19450, 'Hauslingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19451, 'Helmstedt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19452, 'Hemmingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19453, 'Herzberg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19454, 'Hessisch Oldendorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19455, 'Hildesheim', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19456, 'Hilter', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19457, 'Hittfeld', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19458, 'Holzminden', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19459, 'Hoya', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19460, 'Hude', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19461, 'Ihlow', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19462, 'Ilsede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19463, 'Isernhagen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19464, 'Jade', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19465, 'Jever', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19466, 'Jork', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19467, 'Kalefeld', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19468, 'Kirchlinteln', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19469, 'Knesebeck', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19470, 'Konigslutter', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19471, 'Krummhorn', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19472, 'Laatzen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19473, 'Lahstedt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19474, 'Langelsheim', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19475, 'Langen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19476, 'Langenhagen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19477, 'Langwedel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19478, 'Lastrup', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19479, 'Leer', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19480, 'Lehre', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19481, 'Lehrte', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19482, 'Lemforde', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19483, 'Lengede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19484, 'Liebenburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19485, 'Lilienthal', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19486, 'Lingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19487, 'Lohne', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19488, 'Loningen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19489, 'Lorup', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19490, 'Loxstedt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19491, 'Luchow', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19492, 'Luneburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19493, 'Melle', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19494, 'Meppen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19495, 'Moormerland', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19496, 'Munster', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19497, 'Neu Wulmstorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19498, 'Neustadt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19499, 'Nienburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19500, 'Norden', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19501, 'Nordenham', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19502, 'Nordhorn', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19503, 'Nordstemmen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19504, 'Norten-Hardenberg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19505, 'Northeim', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19506, 'Obernkirchen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19507, 'Oldenburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19508, 'Osnabruck', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19509, 'Ostercappeln', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19510, 'Osterholz-Scharmbeck', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19511, 'Osterode', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19512, 'Ostrhauderfehn', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19513, 'Ottersberg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19514, 'Oyten', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19515, 'Papenburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19516, 'Pattensen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19517, 'Peine', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19518, 'Quakenbruck', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19519, 'Rastede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19520, 'Rehburg-Loccum', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19521, 'Rhauderfehn', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19522, 'Rinteln', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19523, 'Ritterhude', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19524, 'Ronnenberg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19525, 'Rosdorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19526, 'Rosengarten', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19527, 'Rotenburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19528, 'Salzgitter', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19529, 'Salzhemmendorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19530, 'Sarstedt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19531, 'Saterland', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19532, 'ScheeBel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19533, 'Schiffdorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19534, 'Schneverdingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19535, 'Schoningen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19536, 'Schortens', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19537, 'Schuttorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19538, 'Schwanewede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19539, 'Seelze', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19540, 'Seesen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19541, 'Seevetal', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19542, 'Sehnde', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19543, 'Soltau', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19544, 'Springe', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19545, 'Stade', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19546, 'Stadthagen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19547, 'Stadtoldendorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19548, 'Stelle', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19549, 'Stuhr', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19550, 'Sudbrookmerland', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19551, 'Sulingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19552, 'Syke', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19553, 'Tarmstedt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19554, 'Tostedt', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19555, 'Twistringen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19556, 'Uchte', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19557, 'Uelzen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19558, 'Uetze', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19559, 'Uplengen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19560, 'Uslar', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19561, 'Varel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19562, 'Vechelde', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19563, 'Vechta', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19564, 'Verden', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19565, 'Vienenburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19566, 'Visselhovede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19567, 'Walkenried', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19568, 'Wallenhorst', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19569, 'Walsrode', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19570, 'Wangerland', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19571, 'Wardenburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19572, 'Wedemark', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19573, 'Weener', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19574, 'Wendeburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19575, 'Wennigsen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19576, 'Westerstede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19577, 'Westoverledingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19578, 'Weyhe', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19579, 'Wiefelstede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19580, 'Wiesmoor', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19581, 'Wildeshausen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19582, 'Wilhelmshaven', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19583, 'Winsen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19584, 'Wittingen', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19585, 'Wittmund', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19586, 'Wolfenbuttel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19587, 'Wolfsburg', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19588, 'Worpswede', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19589, 'Wunstorf', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19590, 'Zetel', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19591, 'Zeven', 1385, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19592, 'Middenbeemster', 1386, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19593, 'Aachen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19594, 'Ahaus', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19595, 'Ahlen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19596, 'Aldenhoven', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19597, 'Alfter', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19598, 'Alpen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19599, 'Alsdorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19600, 'Altena', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19601, 'Altendorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19602, 'Anrochte', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19603, 'Arnsberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19604, 'Ascheberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19605, 'Attendorn', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19606, 'Augustdorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19607, 'Bad Berleburg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19608, 'Bad Driburg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19609, 'Bad Honnef', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19610, 'Bad Laasphe', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19611, 'Bad Lippspringe', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19612, 'Bad Munstereifel', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19613, 'Bad Oeynhausen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19614, 'Bad Salzuflen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19615, 'Bad Sassendorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19616, 'Baesweiler', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19617, 'Balve', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19618, 'Barntrup', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19619, 'Beckum', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19620, 'Bedburg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19621, 'Bedburg-Hau', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19622, 'Bergheim', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19623, 'Bergisch Gladbach', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19624, 'Bergkamen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19625, 'Bergneustadt', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19626, 'Bestwig', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19627, 'Beverungen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19628, 'Bielefeld', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19629, 'Billerbeck', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19630, 'Blomberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19631, 'Bocholt', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19632, 'Bochum', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19633, 'Bocket', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19634, 'Bonen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19635, 'Bonn', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19636, 'Borchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19637, 'Borgentreich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19638, 'Borgholzhausen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19639, 'Borken', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19640, 'Bornheim', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19641, 'Bottrop', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19642, 'Brakel', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19643, 'Brilon', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19644, 'Bruggen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19645, 'Bruhl', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19646, 'Bunde', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19647, 'Burbach', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19648, 'Buren', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19649, 'Burscheid', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19650, 'Castrop-Rauxel', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19651, 'Coesfeld', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19652, 'Cologne', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19653, 'Datteln', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19654, 'Delbruck', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19655, 'Denklingen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19656, 'Detmold', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19657, 'Dingden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19658, 'Dinslaken', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19659, 'Dormagen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19660, 'Dorsten', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19661, 'Dortmund', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19662, 'Drensteinfurt', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19663, 'Drolshagen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19664, 'Duisburg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19665, 'Dulmen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19666, 'Duren', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19667, 'Dusseldorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19668, 'Eitorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19669, 'Elsdorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19670, 'Emmerich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19671, 'Emsdetten', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19672, 'Engelskirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19673, 'Enger', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19674, 'Ennepetal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19675, 'Ennigerloh', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19676, 'Ense', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19677, 'Erftstadt', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19678, 'Erkelenz', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19679, 'Erkrath', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19680, 'Erwitte', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19681, 'Espelkamp', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19682, 'Essen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19683, 'Euskirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19684, 'Extertal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19685, 'Finnentrop', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19686, 'Frechen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19687, 'Freudenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19688, 'Frondenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19689, 'Gangelt', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19690, 'Geilenkirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19691, 'Geldern', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19692, 'Gelsenkirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19693, 'Gescher', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19694, 'Geseke', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19695, 'Gevelsberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19696, 'Gladbeck', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19697, 'Goch', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19698, 'Grefrath', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19699, 'Greven', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19700, 'Grevenbroich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19701, 'Gronau', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19702, 'Gummersbach', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19703, 'Gutersloh', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19704, 'Haan', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19705, 'Hagen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19706, 'Halle', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19707, 'Haltern', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19708, 'Halver', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19709, 'Hamm', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19710, 'Hamminkeln', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19711, 'Harsewinkel', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19712, 'Hattingen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19713, 'Havixbeck', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19714, 'Heiligenhaus', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19715, 'Heinsberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19716, 'Hemer', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19717, 'Hennef', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19718, 'Herdecke', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19719, 'Herford', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19720, 'Herne', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19721, 'Herten', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19722, 'Herzebrock-Clarholz', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19723, 'Herzogenrath', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19724, 'Hiddenhausen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19725, 'Hilchenbach', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19726, 'Hilden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19727, 'Hille', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19728, 'Holzwickede', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19729, 'Horn-Bad Meinberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19730, 'Horstel', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19731, 'Hovelhof', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19732, 'Hoxter', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19733, 'Huckelhoven', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19734, 'Huckeswagen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19735, 'Hullhorst', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19736, 'Hunxe', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19737, 'Hurth', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19738, 'Ibbenburen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19739, 'Iserlohn', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(19740, 'Isselburg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19741, 'Issum', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19742, 'Juchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19743, 'Julich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19744, 'Kaarst', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19745, 'Kalkar', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19746, 'Kall', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19747, 'Kalletal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19748, 'Kamen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19749, 'Kamp-Lintfort', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19750, 'Kempen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19751, 'Kerken', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19752, 'Kerpen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19753, 'Kevelaer', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19754, 'Kierspe', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19755, 'Kirchhundem', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19756, 'Kirchlengern', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19757, 'Kleve', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19758, 'Koln', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19759, 'Konigswinter', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19760, 'Korschenbroich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19761, 'Krefeld', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19762, 'Kreuzau', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19763, 'Kreuztal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19764, 'Kurten', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19765, 'Lage', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19766, 'Langenfeld', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19767, 'Langerwehe', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19768, 'Leichlingen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19769, 'Lemgo', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19770, 'Lengerich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19771, 'Lennestadt', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19772, 'Leopoldshohe', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19773, 'Leverkusen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19774, 'Lichtenau', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19775, 'Lindlar', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19776, 'Linnich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19777, 'Lippetal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19778, 'Lippstadt', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19779, 'Lohmar', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19780, 'Lohne', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19781, 'Lotte', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19782, 'Lubbecke', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19783, 'Ludenscheid', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19784, 'Ludinghausen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19785, 'Lugde', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19786, 'Lunen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19787, 'Marienheide', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19788, 'Marl', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19789, 'Marsberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19790, 'Mechernich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19791, 'Meckenheim', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19792, 'Meerbusch', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19793, 'Meinerzhagen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19794, 'Menden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19795, 'Meschede', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19796, 'Mettingen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19797, 'Mettmann', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19798, 'Minden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19799, 'Moers', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19800, 'Mohnesee', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19801, 'Monchengladbach', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19802, 'Monheim', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19803, 'Monschau', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19804, 'Morsbach', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19805, 'Much', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19806, 'Mulheim', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19807, 'Munster', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19808, 'Netphen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19809, 'Nettetal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19810, 'Neuenkirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19811, 'Neuenrade', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19812, 'Neukirchen-Vluyn', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19813, 'Neunkirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19814, 'Neunkirchen-Seelscheid', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19815, 'Neuss', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19816, 'Nideggen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19817, 'Niederkassel', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19818, 'Niederkruchten', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19819, 'Niederzier', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19820, 'Nordkirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19821, 'Norvenich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19822, 'Nottuln', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19823, 'Numbrecht', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19824, 'Oberhausen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19825, 'Ochtrup', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19826, 'Odenthal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19827, 'Oelde', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19828, 'Oer-Erkenschwick', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19829, 'Oerlinghausen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19830, 'Olfen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19831, 'Olpe', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19832, 'Olsberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19833, 'Overath', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19834, 'Paderborn', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19835, 'Petershagen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19836, 'Plettenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19837, 'Porta Westfalica', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19838, 'PreuBisch Oldendorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19839, 'Pulheim', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19840, 'Radevormwald', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19841, 'Raesfeld', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19842, 'Rahden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19843, 'Ratingen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19844, 'Recke', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19845, 'Recklinghausen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19846, 'Rees', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19847, 'Reichshof', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19848, 'Reken', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19849, 'Remscheid', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19850, 'Rheda-Wiedenbruck', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19851, 'Rhede', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19852, 'Rheinbach', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19853, 'Rheinberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19854, 'Rheine', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19855, 'Rietberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19856, 'Rommerskirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19857, 'Rosendahl', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19858, 'Rosrath', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19859, 'Ruthen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19860, 'Salzkotten', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19861, 'Sassenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19862, 'Schalksmuhle', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19863, 'Schermbeck', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19864, 'Schieder-Schwalenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19865, 'Schleiden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19866, 'SchloB Holte-Stukenbrock', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19867, 'Schmallenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19868, 'Schwalmtal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19869, 'Schwelm', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19870, 'Schwerte', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19871, 'Selm', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19872, 'Senden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19873, 'Sendenhorst', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19874, 'Siegburg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19875, 'Siegen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19876, 'Simmerath', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19877, 'Soest', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19878, 'Solingen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19879, 'Sonsbeck', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19880, 'Spenge', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19881, 'Sprockhovel', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19882, 'Stadtlohn', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19883, 'Steinfurt', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19884, 'Steinhagen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19885, 'Steinheim', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19886, 'Stemwede', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19887, 'Stolberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19888, 'Straelen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19889, 'Sundern', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19890, 'Swisttal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19891, 'Tecklenburg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19892, 'Telgte', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19893, 'Tonisvorst', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19894, 'Troisdorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19895, 'Ubach-Palenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19896, 'Unna', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19897, 'Velbert', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19898, 'Velen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19899, 'Verl', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19900, 'Versmold', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19901, 'Viersen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19902, 'Vlotho', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19903, 'Voerde', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19904, 'Vreden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19905, 'Wachtberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19906, 'Wachtendonk', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19907, 'Wadersloh', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19908, 'Waldbrol', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19909, 'Waltrop', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19910, 'Warburg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19911, 'Warendorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19912, 'Warstein', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19913, 'Wassenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19914, 'Weeze', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19915, 'Wegberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19916, 'Weilerswist', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19917, 'Welver', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19918, 'Wenden', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19919, 'Werdohl', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19920, 'Werl', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19921, 'Wermelskirchen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19922, 'Werne', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19923, 'Werther', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19924, 'Wesel', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19925, 'Wesseling', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19926, 'Westerkappeln', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19927, 'Wetter', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19928, 'Wickede', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19929, 'Wiehl', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19930, 'Willich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19931, 'Wilnsdorf', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19932, 'Windeck', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19933, 'Winterberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19934, 'Wipperfurth', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19935, 'Witten', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19936, 'Wulfrath', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19937, 'Wunnenberg', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19938, 'Wuppertal', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19939, 'Wurselen', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19940, 'Xanten', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19941, 'Zulpich', 1387, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19942, 'Herzberg am Harz', 1389, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19943, 'Alzey', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19944, 'Andernach', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19945, 'Bad Durkheim', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19946, 'Bad Ems', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19947, 'Bad Kreuznach', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19948, 'Bad Neuenahr-Ahrweiler', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19949, 'Bendorf', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19950, 'Betzdorf', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19951, 'Bingen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19952, 'Bitburg', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19953, 'Bobenheim-Roxheim', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19954, 'Bohl-Iggelheim', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19955, 'Boppard', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19956, 'Daun', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19957, 'Diez', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19958, 'Eisenberg', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19959, 'Essingen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19960, 'Frankenthal', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19961, 'Gau-Odernheim', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19962, 'Germersheim', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19963, 'Grunstadt', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19964, 'HaBloch', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19965, 'Hahnstatten', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19966, 'Hallschlag', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19967, 'Herschbach', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19968, 'Herxheim', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19969, 'Hirschhorn', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19970, 'Hohr-Grenzhausen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19971, 'Holzheim', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19972, 'Idar-Oberstein', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19973, 'Ingelheim', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19974, 'Kaisersesch', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19975, 'Kaiserslautern', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19976, 'Kastellaun', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19977, 'Kindsbach', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19978, 'Kirchen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19979, 'Kirn', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19980, 'Koblenz', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19981, 'Lahnstein', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19982, 'Landau', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19983, 'Limburgerhof', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19984, 'Luckenburg', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19985, 'Ludwigshafen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19986, 'Mainz', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19987, 'Mayen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19988, 'Montabaur', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19989, 'Morbach', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19990, 'Mulheim-Karlich', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19991, 'Mundersbach', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19992, 'Mutterstadt', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19993, 'Nassau', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19994, 'Neitersen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19995, 'Neustadt', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19996, 'Neuwied', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19997, 'Niederzissen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19998, 'Pirmasens', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(19999, 'Plaidt', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20000, 'Remagen', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20001, 'Schifferstadt', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20002, 'Schoenenberg Kuebelberg', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20003, 'Sinzig', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20004, 'Speyer', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20005, 'St. Goar', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20006, 'Trier', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20007, 'Vallendar', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20008, 'Winterbach', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20009, 'Wittlich', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20010, 'Worms', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20011, 'Worth', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20012, 'Zweibrucken', 1390, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20013, 'Adenau', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20014, 'Anhausen', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20015, 'Barbelroth', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20016, 'Berndroth', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20017, 'Bernkastel-Kues', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20018, 'Burgbrohl', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20019, 'Dieblich', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20020, 'Dierdorf', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20021, 'Dreisbach', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20022, 'Elsoff', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20023, 'Enkenbach-Alsenborn', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20024, 'Etzbach', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20025, 'Flonheim', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20026, 'Fohren', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20027, 'Grafschaft', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20028, 'Hochspeyer', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20029, 'Leiningen', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20030, 'Moschheim', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20031, 'Murlenbach', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20032, 'Neuhofen', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20033, 'Nievern', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20034, 'Norken', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20035, 'Oberlahr', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20036, 'Otterstadt', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20037, 'Rennerod', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20038, 'Rheinbreitbach', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20039, 'Rieschweiler-Muhlbach', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20040, 'Saarburg', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20041, 'Stahlhofen', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20042, 'Steinebach', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20043, 'Weinsheim', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20044, 'Winnweiler', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20045, 'Wissen', 1391, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20046, 'Beckingen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20047, 'Bexbach', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20048, 'Blieskastel', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20049, 'Dillingen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20050, 'Duppenweiler', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20051, 'Eppelborn', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20052, 'Friedrichsthal', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20053, 'GroBrosseln', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20054, 'Heusweiler', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20055, 'Homburg', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20056, 'Illingen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20057, 'Kirkel', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20058, 'Kleinblittersdorf', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20059, 'Lebach', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20060, 'Losheim', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20061, 'Mandelbachtal', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20062, 'Marpingen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20063, 'Merchweiler', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20064, 'Merzig', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20065, 'Mettlach', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20066, 'Nalbach', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20067, 'Neunkirchen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20068, 'Nohfelden', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20069, 'Nonnweiler', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20070, 'Oberthal', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20071, 'Ottweiler', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20072, 'Puttlingen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20073, 'Quierschied', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20074, 'Rehlingen-Siersburg', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20075, 'Riegelsberg', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20076, 'Saarbrucken', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20077, 'Saarlouis', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20078, 'Saarwellingen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20079, 'Sankt Ingbert', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20080, 'Sankt Wendel', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20081, 'Schiffweiler', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20082, 'Schmelz', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20083, 'Schwalbach', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20084, 'Spiesen-Elversberg', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20085, 'Sulzbach', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20086, 'Tholey', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20087, 'Uberherrn', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20088, 'Volklingen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20089, 'Wadern', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20090, 'Wadgassen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20091, 'Wallerfangen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20092, 'Weiskirchen', 1392, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20093, 'Annaberg-Buchholz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20094, 'Aue', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20095, 'Auerbach', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20096, 'Bautzen', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20097, 'Bischofswerda', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20098, 'Borna', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20099, 'Brand-Erbisdorf', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20100, 'Burgstadt', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20101, 'Chemnitz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20102, 'Coswig', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20103, 'Crimmitschau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20104, 'Delitzsch', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20105, 'Dobeln', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20106, 'Dresden', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20107, 'Ebersbach', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20108, 'Eilenburg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20109, 'Falkenstein', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20110, 'Floha', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20111, 'Frankenberg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20112, 'Freiberg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20113, 'Freital', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20114, 'Friedewald', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20115, 'Glauchau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20116, 'Gorlitz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20117, 'Grimma', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20118, 'GroBenhain', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20119, 'Groditz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20120, 'Hainichen', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20121, 'Heidenau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20122, 'Hirschstein', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20123, 'Hohenstein-Ernstthal', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20124, 'Hoyerswerda', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20125, 'Kamenz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20126, 'Klingenthal', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20127, 'Leipzig', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20128, 'Lichtenstein', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20129, 'Limbach-Oberfrohna', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20130, 'LoBnitz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20131, 'Lobau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20132, 'Lugau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20133, 'Marienberg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20134, 'Markkleeberg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20135, 'Meerane', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20136, 'MeiBen', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20137, 'Mittweida', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20138, 'Muldenhammer', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20139, 'Neustadt', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20140, 'Niesky', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20141, 'Oelsnitz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20142, 'Olbernhau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20143, 'Olbersdorf', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20144, 'Oschatz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20145, 'Pirna', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20146, 'Plauen', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20147, 'Radeberg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20148, 'Radebeul', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20149, 'Reichenbach', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20150, 'Riesa', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20151, 'Rietschen', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20152, 'Schkeuditz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20153, 'Schneeberg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20154, 'Schwarzenberg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20155, 'Sebnitz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20156, 'Stollberg', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20157, 'Taubenheim', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20158, 'Taucha', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20159, 'Thalheim', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20160, 'Torgau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20161, 'Waldheim', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20162, 'WeiBwasser', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20163, 'Werdau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20164, 'Wilkau-HaBlau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20165, 'Wurzen', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20166, 'Zittau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20167, 'Zschopau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20168, 'Zwickau', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20169, 'Zwonitz', 1393, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20170, 'Aken', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20171, 'Aschersleben', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20172, 'Bad Durrenberg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20173, 'Bebitz', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20174, 'Bernburg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20175, 'Bitterfeld', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20176, 'Blankenburg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20177, 'Braunsbedra', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20178, 'Burg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20179, 'Calbe', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20180, 'Coswig', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20181, 'Dessau', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20182, 'Eisleben', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20183, 'Gardelegen', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20184, 'Genthin', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20185, 'Gommern', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20186, 'Grafenhainichen', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20187, 'Halberstadt', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20188, 'Haldensleben', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20189, 'Halle', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20190, 'Hettstedt', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20191, 'Heyrothsberge', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20192, 'Hotensleben', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20193, 'Kothen', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20194, 'Leuna', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20195, 'Magdeburg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20196, 'Merseburg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20197, 'Naumburg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20198, 'Oschersleben', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20199, 'Osterburg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20200, 'Osterwieck', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20201, 'Quedlinburg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20202, 'Querfurt', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20203, 'Raguhn', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20204, 'RoBlau', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20205, 'Salzwedel', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20206, 'Sangerhausen', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20207, 'Schonebeck', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20208, 'StaBfurt', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20209, 'Stendal', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20210, 'Tangermunde', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20211, 'Thale', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20212, 'WeiBenfels', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20213, 'Wittenberg', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20214, 'Wolfen', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20215, 'Wolmirstedt', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20216, 'Zeitz', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20217, 'Zerbst', 1394, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20218, 'Bad Lausick', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20219, 'Bernsdorf', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20220, 'Borde-Hakel', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20221, 'Gelenau', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20222, 'Groberkmannsdorf ', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20223, 'Hartha', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20224, 'Kreischa', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20225, 'Malschwitz', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20226, 'Naunhof', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20227, 'Pausa', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20228, 'Seiffen', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20229, 'Stutzengrun', 1395, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20230, 'Ahrensbok', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20231, 'Ahrensburg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20232, 'Altenholz', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20233, 'Alveslohe', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20234, 'Ammersbek', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20235, 'Bad Bramstedt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20236, 'Bad Oldesloe', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20237, 'Bad Schwartau', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20238, 'Bad Segeberg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20239, 'Bargteheide', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20240, 'Barmstedt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20241, 'Barsbuttel', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20242, 'Bredstedt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20243, 'Brunsbuttel', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20244, 'Budelsdorf', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20245, 'Eckernforde', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20246, 'Eddelak', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20247, 'Elmshorn', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20248, 'Eutin', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20249, 'Flensburg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20250, 'Friedrichstadt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20251, 'Geesthacht', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20252, 'Glinde', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20253, 'Gluckstadt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20254, 'Grob Pampau', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20255, 'Halstenbek', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20256, 'Hamfelde', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20257, 'Harrislee', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20258, 'Hartenholm', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20259, 'Heide', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20260, 'Heiligenhafen', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20261, 'Henstedt-Ulzburg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20262, 'Honenwestedt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20263, 'Husum', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20264, 'Itzehoe', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20265, 'Kaltenkirchen', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20266, 'Kappeln', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20267, 'Kiel', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20268, 'Kronshagen', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20269, 'Lauenburg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20270, 'Lensahn', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20271, 'Lubeck', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20272, 'Malente', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20273, 'Mielkendorf', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20274, 'Molfsee', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20275, 'Molln', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20276, 'Neuenbrook', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20277, 'Neumunster', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20278, 'Neustadt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20279, 'Norderstedt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20280, 'Oldenburg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20281, 'Oststeinbek', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20282, 'Pinneberg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20283, 'Plon', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20284, 'Preetz', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20285, 'Quickborn', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20286, 'Ratekau', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20287, 'Ratzeburg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20288, 'Reinbek', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20289, 'Reinfeld', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20290, 'Rellingen', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20291, 'Rendsburg', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20292, 'Rethwisch', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20293, 'Satrup', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20294, 'Scharbeutz', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20295, 'Schenefeld', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20296, 'Schleswig', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20297, 'Schmalfeld', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20298, 'Schoenkirchen', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20299, 'Schwarzenbek', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20300, 'Seefeld', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20301, 'Sievershutten', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20302, 'Stockelsdorf', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20303, 'Tangstedt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20304, 'Timmendorfer Strand', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20305, 'Tornesch', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20306, 'Travemunde', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20307, 'Uetersen', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20308, 'Wahlstedt', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20309, 'Wedel', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20310, 'Wentorf', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20311, 'Westerland', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20312, 'Westerronfeld', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(20313, 'Wohltorf', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20314, 'Wotersen', 1396, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20315, 'Altenburg', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20316, 'Apolda', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20317, 'Arnstadt', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20318, 'Bad Frankenhausen', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20319, 'Bad Langensalza', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20320, 'Bad Salzungen', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20321, 'Cursdorf', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20322, 'Dornburg', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20323, 'Eisenach', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20324, 'Eisenberg', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20325, 'Erfurt', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20326, 'Gera', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20327, 'Geschwenda', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20328, 'Gotha', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20329, 'Greiz', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20330, 'Heiligenstadt', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20331, 'Hermsdorf', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20332, 'Hildburghausen', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20333, 'Ilmenau', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20334, 'Immelborn', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20335, 'Jena', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20336, 'Leinefelde', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20337, 'Leutenberg', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20338, 'Meiningen', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20339, 'Meuselwitz', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20340, 'Muhlhausen', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20341, 'Neustadt', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20342, 'Nordhausen', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20343, 'PoBneck', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20344, 'Rosenthal', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20345, 'Rositz', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20346, 'Rudolstadt', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20347, 'Ruhla', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20348, 'Saalfeld', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20349, 'Schmalkalden', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20350, 'Schmolln', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20351, 'Sommerda', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20352, 'Sondershausen', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20353, 'Sonneberg', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20354, 'Suhl', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20355, 'Triptis', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20356, 'Uhlstadt', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20357, 'Waltershausen', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20358, 'Weida', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20359, 'Weimar', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20360, 'Wernigerode', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20361, 'Wormstedt', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20362, 'Zella-Mehlis', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20363, 'Zeulenroda', 1397, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20364, 'Webling', 1398, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20365, 'Neustadt', 1399, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20366, 'Schlobborn', 1400, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20367, 'Agogo', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20368, 'Bekwai', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20369, 'Konongo', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20370, 'Kumasi', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20371, 'Mampong', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20372, 'Mankranso', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20373, 'Obuasi', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20374, 'Ofinso', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20375, 'Tafo', 1401, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20376, 'Bechem', 1402, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20377, 'Berekum', 1402, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20378, 'Duayaw Nkwanta', 1402, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20379, 'Kintampo', 1402, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20380, 'Sunyani', 1402, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20381, 'Techiman', 1402, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20382, 'Wenchi', 1402, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20383, 'Apam', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20384, 'Cape Coast', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20385, 'Dunkwa', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20386, 'Elmina', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20387, 'Foso', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20388, 'Komenda', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20389, 'Mauri', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20390, 'Mumford', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20391, 'Nyakrom', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20392, 'Okitsiu', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20393, 'Saltpond', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20394, 'Swedru', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20395, 'Winneba', 1403, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20396, 'Aburi', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20397, 'Ada', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20398, 'Akim Swedru', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20399, 'Akropong', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20400, 'Asamankese', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20401, 'Begoro', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20402, 'Kade', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20403, 'Kibi', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20404, 'Koforidua', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20405, 'Mpraeso', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20406, 'Nkawkaw', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20407, 'Nsawam', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20408, 'Oda', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20409, 'Somanya', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20410, 'Suhum', 1404, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20411, 'Kpandae', 1406, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20412, 'Salaga', 1406, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20413, 'Savelugu', 1406, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20414, 'Tamale', 1406, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20415, 'Yendi', 1406, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20416, 'Aflao', 1409, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20417, 'Anloga', 1409, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20418, 'Ho', 1409, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20419, 'Hohoe', 1409, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20420, 'Keta', 1409, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20421, 'Kete-Krachi', 1409, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20422, 'Kpandu', 1409, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20423, 'Aboso', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20424, 'Anomabu', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20425, 'Axim', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20426, 'Bibiani', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20427, 'Prestea', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20428, 'Sekondi', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20429, 'Shama', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20430, 'Takoradi', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20431, 'Tarkwa', 1410, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20432, 'Gibraltar', 1411, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20433, 'Elassonos', 1412, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20434, 'Aiyion', 1413, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20435, 'Patra', 1413, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20436, 'Argos', 1415, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20437, 'Navplion', 1415, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20438, 'Tripoli', 1416, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20439, 'Arta', 1417, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20440, 'Acharnes', 1418, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20441, 'Agios Ioannis Rentis', 1418, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20442, 'Drapetsona', 1418, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20443, 'Koropi', 1418, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20444, 'Lavrion', 1418, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20445, 'Mandra', 1418, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20446, 'Spata', 1418, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20447, 'Aharna', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20448, 'Aiyaleo', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20449, 'Alimos', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20450, 'Amarousion', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20451, 'Ano Liosia', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20452, 'Aryiroupoli', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20453, 'Aspropirgos', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20454, 'Athina', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20455, 'Athinai', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20456, 'Ayia Barbara', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20457, 'Ayia Paraskevi', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20458, 'Ayios Anaryiros', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20459, 'Ayios Dimitrios', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20460, 'Dafne', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20461, 'Elevsis', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20462, 'Ellenikon', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20463, 'Galatsion', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20464, 'Glifada', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20465, 'Haidarion', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20466, 'Halandrion', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20467, 'Holargos', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20468, 'Ilioupoli', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20469, 'Iraklion', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20470, 'Kaisariani', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20471, 'Kallithea', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20472, 'Kamateron', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20473, 'Keratea', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20474, 'Keratsinion', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20475, 'Kifisia', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20476, 'Koridallos', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20477, 'Kropion', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20478, 'Markopoulos Mesogaia', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20479, 'Maroussi', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20480, 'Megara', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20481, 'Melission', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20482, 'Metamorfosios', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20483, 'Moshatos', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20484, 'Nea Filedelfia', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20485, 'Nea Ionia', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20486, 'Nea Liosia', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20487, 'Nea Smirni', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20488, 'Nikaia', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20489, 'Palaion Faliron', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20490, 'Perama', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20491, 'Peristerion', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20492, 'Petroupoli', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20493, 'Pevka', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20494, 'Piraeus', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20495, 'Salamis', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20496, 'Tavros', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20497, 'Viron', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20498, 'Voula', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20499, 'Vrilission', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20500, 'Zografos', 1419, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20501, 'Heraklion', 1421, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20502, 'Arhangelos', 1422, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20503, 'Ialysos', 1422, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20504, 'Kos', 1422, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20505, 'Rodos', 1422, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20506, 'Drama', 1423, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20507, 'Chalkis', 1424, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20508, 'Karpenisi', 1425, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20509, 'Alexandroupoli', 1426, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20510, 'Orestias', 1426, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20511, 'Halkida', 1427, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20512, 'Florina', 1428, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20513, 'Amfissa', 1429, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20514, 'Lamia', 1430, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20515, 'Grevena', 1431, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20516, 'Halandri', 1432, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20517, 'Lakkoma', 1433, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20518, 'N. Kallikrateia', 1433, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20519, 'Poliyiros', 1433, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20520, 'Hania', 1434, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20521, 'Crete', 1435, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20522, 'Hios', 1436, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20523, 'Pirgos', 1437, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20524, 'Veroia', 1438, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20525, 'Ioannina', 1439, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20526, 'Karditsa', 1441, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20527, 'Kastoria', 1442, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20528, 'Kavala', 1443, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20529, 'Agioi Theodoroi', 1444, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20530, 'Argostolion', 1444, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20531, 'Kerkira', 1445, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20532, 'Ermoupoli', 1446, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20533, 'Fira', 1446, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20534, 'Mikonos', 1446, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20535, 'Kilkis', 1447, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20536, 'Korinthos', 1448, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20537, 'Kozani', 1449, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20538, 'Ptolemais', 1449, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20539, 'Sparti', 1450, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20540, 'Larisa', 1451, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20541, 'Larissa', 1451, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20542, 'Ayios Nikolaos', 1452, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20543, 'Ierapetra', 1452, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20544, 'Sitia', 1452, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20545, 'Mitilini', 1453, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20546, 'Levkas', 1454, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20547, 'Volos', 1455, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20548, 'Kalamata', 1456, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20549, 'Edessa', 1459, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20550, 'Yiannitsa', 1459, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20551, 'Katerini', 1460, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20552, 'Acharne', 1461, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20553, 'Pallini', 1461, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20554, 'Preveza', 1462, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20555, 'Rethimnon', 1463, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20556, 'Komotini', 1464, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20557, 'Samos', 1465, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20558, 'Serrai', 1466, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20559, 'Igoumenitsa', 1467, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20560, 'Ampelokipa', 1468, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20561, 'Kalamaria', 1468, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20562, 'Neapoli', 1468, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20563, 'Oristiada', 1468, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20564, 'Thessaloniki', 1468, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20565, 'Trikala', 1469, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20566, 'Levadia', 1470, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20567, 'Thivai', 1470, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20568, 'Xanthi', 1472, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20569, 'Zakinthos', 1473, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20570, 'Aasiaat', 1474, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20571, 'Akunnaaq', 1474, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20572, 'Kitsissuarsuit', 1474, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20573, 'Ikkatteq', 1475, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20574, 'Isortoq', 1475, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20575, 'Kulusuk', 1475, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20576, 'Kuumiut', 1475, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20577, 'Qernertuarssuit', 1475, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20578, 'Sermiligaaq', 1475, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20579, 'Tasiilaq', 1475, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20580, 'Tiniteqilaaq', 1475, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20581, 'Illoqqortoormiut', 1476, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20582, 'Itterajivit', 1476, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20583, 'Uunarteq', 1476, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20584, 'Ilimanaq', 1477, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20585, 'Ilulissat', 1477, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20586, 'Oqaatsut', 1477, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20587, 'Qeqertaq', 1477, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20588, 'Saqqaq', 1477, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20589, 'Ivittuut', 1478, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20590, 'Kangilinnguit', 1478, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20591, 'Attu', 1479, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20592, 'Iginniarfik', 1479, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20593, 'Ikerasaarsuk', 1479, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20594, 'Kangaatsiaq', 1479, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20595, 'Niaqornaarsuk', 1479, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20596, 'Atammik', 1480, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20597, 'Kangaamiut', 1480, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20598, 'Maniitsoq', 1480, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20599, 'Napasoq', 1480, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20600, 'Aappilattoq', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20601, 'Akuliaruseq', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20602, 'Alluitsoq', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20603, 'Alluitsup Paa', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20604, 'Ammassivik', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20605, 'Ikerasassuaq', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20606, 'Nanortalik', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20607, 'Narsarmijit', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20608, 'Nuugaarsuk', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20609, 'Qallimiut', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20610, 'Qortortorsuaq', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20611, 'Tasiusaq', 1481, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20612, 'Amannguit', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20613, 'Atarnaatsoq', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20614, 'Eqaluit Ilua', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20615, 'Igaliku', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20616, 'Igaliku Kujalleq', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20617, 'Inneruulalik', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20618, 'Issormiut', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20619, 'Iterlak', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20620, 'Kangerlua', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20621, 'Narsaq', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20622, 'Narsarsuaq', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20623, 'Nunataaq', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20624, 'Qassiarsuk', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20625, 'Qinngua', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20626, 'Qinngua Kangilleq', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20627, 'Qolortup Itinnera', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20628, 'Sillisit', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20629, 'Tasiusaq', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20630, 'Timerliit', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20631, 'Uummannartuuaraq', 1482, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20632, 'Kangerluarsoruseq', 1483, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20633, 'Kapisillit', 1483, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20634, 'Neriunaq', 1483, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20635, 'Nuuk', 1483, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20636, 'Qeqertarsuatsiaat', 1483, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20637, 'Qooqqut', 1483, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20638, 'Qoornoq', 1483, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20639, 'Arsuk', 1484, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20640, 'Paamiut', 1484, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20641, 'Moriusaq', 1485, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20642, 'Qaanaaq', 1485, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20643, 'Qeqertarsuaq', 1485, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20644, 'Qeqertat', 1485, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20645, 'Savissivik', 1485, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20646, 'Siorapaluk', 1485, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20647, 'Eqalugaarsuit', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20648, 'Illorsuit', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20649, 'Kangerluarsorujuk', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20650, 'Kangerluarsorujuup Qinngua', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20651, 'Qanisartuut', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20652, 'Qaqortokolook', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20653, 'Qaqortoq', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20654, 'Qassimiut', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20655, 'Saarloq', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20656, 'Saqqamiut', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20657, 'Tasiluk', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20658, 'Upernaviarsuk', 1486, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20659, 'Ikamiut', 1487, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20660, 'Qasigiannguit', 1487, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20661, 'Kangerluk', 1488, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20662, 'Qeqertarsuaq', 1488, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20663, 'Itilleq', 1489, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20664, 'Kangerlussuaq', 1489, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20665, 'Sarfannguit', 1489, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20666, 'Sisimiut', 1489, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20667, 'Aappilattoq', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20668, 'Ikerakuuk', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20669, 'Innarsuit', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20670, 'Kangersuatsiaq', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20671, 'Kullorsuaq', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20672, 'Naajaat', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20673, 'Nutaarmiut', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20674, 'Nuusuaq', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20675, 'Tasiusaq', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20676, 'Upernavik', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20677, 'Upernavik Kujalleq', 1491, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20678, 'Ikerasak', 1492, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20679, 'Illorsuit', 1492, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20680, 'Niaqornat', 1492, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20681, 'Nuugaatsiaq', 1492, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20682, 'Qaarsut', 1492, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20683, 'Saattut', 1492, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20684, 'Ukkusissat', 1492, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20685, 'Uummannaq', 1492, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20686, 'Baie-Mahault', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20687, 'Baillif', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20688, 'Basse-Terre', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20689, 'Bouillante', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20690, 'Capesterre-Belle-Eau', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20691, 'Gourbeyre', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20692, 'Lamentin', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20693, 'Petit-Bourg', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20694, 'Pointe-Noire', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20695, 'Saint-Claude', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20696, 'Sainte-Rose', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20697, 'Trois-Rivieres', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20698, 'Vieux-Habitants', 1500, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20699, 'Anse-Bertrand', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20700, 'Le Gosier', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20701, 'Le Moule', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20702, 'Les Abymes', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20703, 'Morne-a-l\'Eau', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20704, 'Petit-Canal', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20705, 'Point-a-Pitre', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20706, 'Port-Louis', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20707, 'Saint-Francois', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20708, 'Sainte-Anne', 1501, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20709, 'Grand-Bourg', 1504, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20710, 'Agat', 1508, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20711, 'Barrigada', 1509, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20712, 'Barrigada Heights', 1509, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20713, 'Chalan Pago', 1510, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20714, 'Ordot', 1510, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20715, 'Astumbo', 1511, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20716, 'Dededo', 1511, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20717, 'Finegayan Station', 1511, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20718, 'Agana', 1512, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20719, 'Agana Station', 1512, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20720, 'Inarajan', 1513, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20721, 'Mangilao', 1514, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20722, 'Merizo', 1515, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20723, 'Mongmong', 1516, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20724, 'Toto', 1516, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20725, 'Sinajana', 1518, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20726, 'Talofofo', 1519, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20727, 'Tamuning', 1520, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20728, 'Anderson Air Force Base', 1521, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20729, 'Yigo', 1521, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20730, 'Yona', 1522, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20731, 'Chimaltenango', 1525, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20732, 'Comalapa', 1525, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20733, 'Itzapa', 1525, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20734, 'Patzun', 1525, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20735, 'Chiquimula', 1526, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20736, 'Esquipulas', 1526, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20737, 'Cotzumalguapa', 1528, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20738, 'Escuintla', 1528, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20739, 'Palin', 1528, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20740, 'San Jose', 1528, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20741, 'Tiquisate', 1528, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20742, 'Amatitlan', 1529, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20743, 'Chinautla', 1529, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20744, 'Guatemala', 1529, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20745, 'Mixco', 1529, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20746, 'Petapa', 1529, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20747, 'Villa Nueva', 1529, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20748, 'Huehuetenango', 1530, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20749, 'Puerto Barrios', 1531, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20750, 'Jalapa', 1532, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20751, 'Asuncion Mita', 1533, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20752, 'Jutiapa', 1533, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20753, 'Flores', 1534, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20754, 'San Benito', 1534, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20755, 'Quezaltenango', 1535, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20756, 'Quiche', 1536, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20757, 'Retalhuleu', 1537, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20758, 'Antigua', 1538, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20759, 'Ciudad Vieja', 1538, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20760, 'Jocotenango', 1538, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20761, 'Santa Maria de Jesus', 1538, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20762, 'Sumpango', 1538, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20763, 'Atitlan', 1541, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20764, 'Solola', 1541, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20765, 'Mazatenango', 1542, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20766, 'Totonicapan', 1543, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20767, 'Zacapa', 1544, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20768, 'Saint Anne\'s', 1545, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20769, 'Castle', 1546, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20770, 'Forest', 1547, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20771, 'Sark', 1554, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20772, 'Torteval', 1555, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20773, 'Vale', 1556, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20774, 'Beyla', 1557, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20775, 'Boffa', 1558, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20776, 'Boke', 1559, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20777, 'Conakry', 1560, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20778, 'Coyah', 1561, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20779, 'Dabola', 1562, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20780, 'Dalaba', 1563, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20781, 'Dinguiraye', 1564, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20782, 'Faranah', 1565, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20783, 'Forecariah', 1566, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20784, 'Fria', 1567, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20785, 'Gaoual', 1568, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20786, 'Guekedou', 1569, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20787, 'Kankan', 1570, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20788, 'Kerouane', 1571, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20789, 'Kindia', 1572, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20790, 'Kissidougou', 1573, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20791, 'Koubia', 1574, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20792, 'Koundara', 1575, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20793, 'Kouroussa', 1576, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20794, 'Labe', 1577, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20795, 'Lola', 1578, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20796, 'Macenta', 1579, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20797, 'Mali', 1580, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20798, 'Mamou', 1581, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20799, 'Mandiana', 1582, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20800, 'Nzerekore', 1583, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20801, 'Pita', 1584, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20802, 'Siguiri', 1585, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20803, 'Telimele', 1586, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20804, 'Tougue', 1587, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20805, 'Yomou', 1588, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20806, 'Bafata', 1589, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20807, 'Bissau', 1590, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20808, 'Bolama', 1591, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20809, 'Bubaque', 1591, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20810, 'Cacheu', 1592, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20811, 'Canchungo', 1592, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20812, 'Gabu', 1593, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20813, 'Bissora', 1594, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20814, 'Farim', 1594, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20815, 'Mansoa', 1594, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20816, 'Buba', 1595, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20817, 'Fulacunda', 1595, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20818, 'Quebo', 1595, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20819, 'Catio', 1596, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20820, 'Mabaruma', 1597, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20821, 'Morawhanna', 1597, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20822, 'Bartica', 1598, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20823, 'Issano', 1598, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20824, 'Kamarang', 1598, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20825, 'Georgetown', 1599, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20826, 'Mahaica', 1599, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20827, 'Paradise', 1599, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20828, 'Queenstown', 1599, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20829, 'Fort Wellington', 1602, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20830, 'Mahaicony', 1602, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20831, 'Rosignol', 1602, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20832, 'Anna Regina', 1603, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20833, 'Charity', 1603, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20834, 'Suddie', 1603, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20835, 'Mahdia', 1604, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20836, 'Tumatumari', 1604, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20837, 'Desdunes', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20838, 'Dessalines', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20839, 'Gonaives', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20840, 'Gros-Morne', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20841, 'L\'Artibonite', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20842, 'Saint-Marc', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20843, 'Saint-Michel-de-l\'Atalaye', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20844, 'Saint-Raphael', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20845, 'Verrettes', 1607, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20846, 'Hinche', 1608, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20847, 'Mirebalais', 1608, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20848, 'Anse-d\'Hainault', 1609, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20849, 'Dame Marie', 1609, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20850, 'Jeremie', 1609, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20851, 'Miragoane', 1609, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20852, 'Cap-Haitien', 1610, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20853, 'Croix-des-Bouquets', 1610, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20854, 'Grande Riviere du Nord', 1610, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20855, 'Limbe', 1610, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20856, 'Pignon', 1610, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20857, 'Derac', 1611, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20858, 'Fort-Liberte', 1611, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20859, 'Ouanaminthe', 1611, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20860, 'Trou-du-Nord', 1611, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20861, 'Port-de-Paix', 1612, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20862, 'Saint-Louis-du-Nord', 1612, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20863, 'Anse-a-Galets', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20864, 'Carrefour', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20865, 'Delmas', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20866, 'Kenscoff', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20867, 'Lascahobas', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20868, 'Leogane', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20869, 'Petionville', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20870, 'Petit Goave', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20871, 'Port-au-Prince', 1613, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20872, 'Aquin', 1614, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20873, 'Les Cayes', 1614, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20874, 'Jacmel', 1615, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20875, 'La Ceiba', 1617, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20876, 'Olanchito', 1617, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20877, 'Tela', 1617, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20878, 'Choluteca', 1618, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20879, 'El Triunfo', 1618, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20880, 'Pespire', 1618, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20881, 'Sonaguera', 1619, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20882, 'Tocoa', 1619, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20883, 'Trujillo', 1619, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20884, 'Comayagua', 1620, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20885, 'Siguatepeque', 1620, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20886, 'Copan', 1621, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20887, 'Corquin', 1621, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(20888, 'Dulce Nombre', 1621, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20889, 'El Paraiso', 1621, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20890, 'San Antonio', 1621, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20891, 'San Nicolas', 1621, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20892, 'Santa Rosa de Copan', 1621, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20893, 'Choloma', 1622, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20894, 'La Lima', 1622, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20895, 'Omoa', 1622, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20896, 'Puerto Cortes', 1622, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20897, 'San Pedro Sula', 1622, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20898, 'Intibuca', 1627, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20899, 'La Esperanza', 1627, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20900, 'Utila', 1627, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20901, 'Gracias', 1630, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20902, 'Ocotepeque', 1631, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20903, 'San Marcos', 1631, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20904, 'Sinuapa', 1631, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20905, 'Catacamas', 1632, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20906, 'Juticalpa', 1632, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20907, 'Amapala', 1634, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20908, 'Langue', 1634, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20909, 'Nacaome', 1634, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20910, 'San Lorenzo', 1634, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20911, 'El Progreso', 1635, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20912, 'Morazan', 1635, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20913, 'Santa Rita', 1635, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20914, 'Yoro', 1635, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20915, 'Akaszto', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20916, 'Bacsalmas', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20917, 'Bacsbokod', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20918, 'Baja', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20919, 'Bugac', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20920, 'Davod', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20921, 'Dunapataj', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20922, 'Dunavecse', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20923, 'Fulopszallas', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20924, 'Hajos', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20925, 'Harta', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20926, 'Izsak', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20927, 'Jakabszallas', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20928, 'Janoshalma', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20929, 'Kalocsa', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20930, 'Kecel', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20931, 'Kecskemet', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20932, 'Kiskoros', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20933, 'Kiskunfelegyhaza', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20934, 'Kiskunhalas', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20935, 'Kiskunmajsa', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20936, 'Kunfeherto', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20937, 'Kunszentmiklos', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20938, 'Lajosmizse', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20939, 'Lakitelek', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20940, 'Madaras', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20941, 'Melykut', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20942, 'Nagybaracska', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20943, 'Orgovany', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20944, 'Palmonostora', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20945, 'Solt', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20946, 'Soltvadkert', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20947, 'Sukosd', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20948, 'Szabadszallas', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20949, 'Szalkszentmarton', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20950, 'Tass', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20951, 'Tiszakecske', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20952, 'Tompa', 1637, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20953, 'Beremend', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20954, 'Boly', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20955, 'Dunaszekcso', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20956, 'Harkany', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20957, 'Hosszuheteny', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20958, 'Komlo', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20959, 'Magocs', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20960, 'Mohacs', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20961, 'Pecs', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20962, 'Pecsvarad', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20963, 'Sasd', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20964, 'Sellye', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20965, 'Siklos', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20966, 'Szentlorinc', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20967, 'Szigetvar', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20968, 'Vajszlo', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20969, 'Villany', 1638, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20970, 'Battonya', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20971, 'Bekes', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20972, 'Bekescsaba', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20973, 'Bekessamson', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20974, 'Bekesszentandras', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20975, 'Csorvas', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20976, 'Devavanya', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20977, 'Doboz', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20978, 'Elek', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20979, 'Endrod', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20980, 'Fuzesgyarmat', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20981, 'Gyula', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20982, 'Ketegyhaza', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20983, 'Kondoros', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20984, 'Korosladany', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20985, 'Kunagota', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20986, 'Lokoshaza', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20987, 'Mezobereny', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20988, 'Mezohegyes', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20989, 'Mezokovacshaza', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20990, 'Nagyszenas', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20991, 'Oroshaza', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20992, 'Sarkad', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20993, 'Szabadkigyos', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20994, 'Szarvas', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20995, 'Szeghalom', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20996, 'Totkomlos', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20997, 'Veszto', 1639, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20998, 'Abaujszanto', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(20999, 'Arlo', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21000, 'Bogacs', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21001, 'Cigand', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21002, 'Edeleny', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21003, 'Emod', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21004, 'Encs', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21005, 'Gonc', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21006, 'Karcsa', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21007, 'Kazincbarcika', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21008, 'Mad', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21009, 'Megyaszo', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21010, 'Mezokeresztes', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21011, 'Mezokovesd', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21012, 'Miskolc', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21013, 'Monok', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21014, 'Nyekladhaza', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21015, 'Olaszliszka', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21016, 'Onod', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21017, 'Ozd', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21018, 'Putnok', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21019, 'Rudabanya', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21020, 'Sajokaza', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21021, 'Sajolad', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21022, 'Sajoszentpeter', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21023, 'Saly', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21024, 'Sarospatak', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21025, 'Satoraljaujhely', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21026, 'Szendro', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21027, 'Szentistvan', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21028, 'Szerencs', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21029, 'Szihalom', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21030, 'Szikszo', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21031, 'Taktaharkany', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21032, 'Taktaszada', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21033, 'Tallya', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21034, 'Tarcal', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21035, 'Tiszaluc', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21036, 'Tiszaujvaros', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21037, 'Tokaj', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21038, 'Tolcsva', 1640, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21039, 'Budapest', 1641, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21040, 'Csongrad', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21041, 'Fabiansebestyen', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21042, 'Foldeak', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21043, 'Hodmezovasarhely', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21044, 'Kiskundorozsma', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21045, 'Kistelek', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21046, 'Kiszombor', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21047, 'Mako', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21048, 'Mindszent', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21049, 'Morahalom', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21050, 'Pusztaszer', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21051, 'Roszke', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21052, 'Sandorfalva', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21053, 'Szatymaz', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21054, 'Szeged', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21055, 'Szegvar', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21056, 'Szekkutas', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21057, 'Szentes', 1642, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21058, 'Aba', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21059, 'Adony', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21060, 'Alap', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21061, 'Apostag', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21062, 'Bakonycsernye', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21063, 'Bicske', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21064, 'Bodajk', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21065, 'Cece', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21066, 'Csakvar', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21067, 'Deg', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21068, 'Dios', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21069, 'Dunaujvaros', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21070, 'Enying', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21071, 'Ercsi', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21072, 'Etyek', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21073, 'Fehervarcsurgo', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21074, 'Lovasbereny', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21075, 'Martonvasar', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21076, 'Mezofalva', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21077, 'Mezoszilas', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21078, 'Mor', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21079, 'Pazmand', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21080, 'Polgardi', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21081, 'Pusztavam', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21082, 'Rackeresztur', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21083, 'Sarbogard', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21084, 'Seregelyes', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21085, 'Soponya', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21086, 'Szabadbattyan', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21087, 'Szekesfehervar', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21088, 'Val', 1643, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21089, 'Asvanyraro', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21090, 'Beled', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21091, 'Bosarkany', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21092, 'Csorna', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21093, 'Fertod', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21094, 'Fertorakos', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21095, 'Fertoszentmiklos', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21096, 'Gyor', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21097, 'Gyorujbarat', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21098, 'Hunyadi u.', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21099, 'Kapuvar', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21100, 'Lebeny', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21101, 'Mihalyi', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21102, 'Mosonmagyarovar', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21103, 'Nyul', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21104, 'Pannonhalma', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21105, 'Rajka', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21106, 'Sopron', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21107, 'Szany', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21108, 'Tet', 1644, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21109, 'Balmazujvaros', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21110, 'Barand', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21111, 'Berettyoujfalu', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21112, 'Biharkeresztes', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21113, 'Biharnagybajom', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21114, 'Debrecen', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21115, 'Derecske', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21116, 'Egyek', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21117, 'Foldes', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21118, 'Hajduboszormeny', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21119, 'Hajdudorog', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21120, 'Hajduhadhaz', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21121, 'Hajdusamson', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21122, 'Hajduszoboszlo', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21123, 'Hajduszovat', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21124, 'Hortobagy', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21125, 'Hosszupalyi', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21126, 'Kaba', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21127, 'Komadi', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21128, 'Mikepercs', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21129, 'Monostorpalyi', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21130, 'Nadudvar', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21131, 'Nagyleta', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21132, 'Nyirabrany', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21133, 'Nyiracsad', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21134, 'Nyiradony', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21135, 'Polgar', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21136, 'Puspokladany', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21137, 'Sarretudvari', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21138, 'Tiszacsege', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21139, 'Ujfeherto', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21140, 'Vamospercs', 1645, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21141, 'Abasar', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21142, 'Andornaktalya', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21143, 'Belapatfalva', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21144, 'Domoszlo', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21145, 'Eger', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21146, 'Erdotelek', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21147, 'Felsotarkany', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21148, 'Fuzesabony', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21149, 'Gyongyos', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21150, 'Gyongyospata', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21151, 'Gyongyossolymos', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21152, 'Gyongyostarjan', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21153, 'Hatvan', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21154, 'Heves', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21155, 'Kal', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21156, 'Lorinci', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21157, 'Matraderecske', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21158, 'Parad', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21159, 'Petervasara', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21160, 'Recsk', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21161, 'Sirok', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21162, 'Tarnalelesz', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21163, 'Verpelet', 1646, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21164, 'Abadszalok', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21165, 'Besenyszog', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21166, 'Cserkeszolo', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21167, 'Fegyvernek', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21168, 'Hegyeshalom', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21169, 'Jaszalsoszentgyorgy', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21170, 'Jaszapati', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21171, 'Jaszarokszallas', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21172, 'Jaszbereny', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21173, 'Jaszfenyzaru', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21174, 'Jaszjakohalma', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21175, 'Jaszkiser', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21176, 'Jaszladany', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21177, 'Jaszszentandras', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21178, 'Karcag', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21179, 'Kenderes', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21180, 'Kisujszallas', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21181, 'Kunhegyes', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21182, 'Kunmadaras', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21183, 'Kunszentmarton', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21184, 'Martfu', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21185, 'Mezotur', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21186, 'Ocsod', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21187, 'Szolnok', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21188, 'Tiszabura', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21189, 'Tiszafoldvar', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21190, 'Tiszafured', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21191, 'Tiszapuspoki', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21192, 'Tiszaroff', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21193, 'Tiszasuly', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21194, 'Torokszentmiklos', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21195, 'Toszeg', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21196, 'Turkeve', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21197, 'Ujszasz', 1647, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21198, 'Acs', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21199, 'Almasfuzito', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21200, 'Babolna', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21201, 'Bajna', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21202, 'Dorog', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21203, 'Esztergom', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21204, 'Kesztolc', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21205, 'Kisber', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21206, 'Komarom', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21207, 'Kornye', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21208, 'Labatlan', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21209, 'Mocsa', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21210, 'Nagyigmand', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21211, 'Nyergesujfalu', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21212, 'Oroszlany', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21213, 'Sarisap', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21214, 'Tardos', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21215, 'Tarjan', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21216, 'Tata', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21217, 'Tatabanya', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21218, 'Tokod', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21219, 'Vertesszolos', 1648, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21220, 'Balassagyarmat', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21221, 'Batonyterenye', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21222, 'Bercel', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21223, 'Bujak', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21224, 'Diosjeno', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21225, 'Karancskeszi', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21226, 'Matraverebely', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21227, 'Nagyoroszi', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21228, 'Paszto', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21229, 'Retsag', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21230, 'Romhany', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21231, 'Salgotarjan', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21232, 'Szecseny', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21233, 'Tar', 1649, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21234, 'Abony', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21235, 'Albertirsa', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21236, 'Aszod', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21237, 'Biatorbagy', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21238, 'Budakalasz', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21239, 'Budakeszi', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21240, 'Budaors', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21241, 'Bugyi', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21242, 'Cegled', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21243, 'Csobanka', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21244, 'Dabas', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21245, 'Domsod', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21246, 'Dunabogdany', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21247, 'Dunaharaszti', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21248, 'Dunakeszi', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21249, 'Erd', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21250, 'Forro', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21251, 'Fot', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21252, 'Galgaheviz', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21253, 'God', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21254, 'Godollo', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21255, 'Gyomro', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21256, 'Hevizgyork', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21257, 'Isaszeg', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21258, 'Jaszkarajeno', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21259, 'Kiskunlachaza', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21260, 'Kocser', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21261, 'Koka', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21262, 'Kosd', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21263, 'Maglod', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21264, 'Monor', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21265, 'Nagykata', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21266, 'Nagykoros', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21267, 'Nagykovacsi', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21268, 'Nagymaros', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21269, 'Nagytarcsa', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21270, 'Nyaregyhaza', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21271, 'Ocsa', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21272, 'Orbottyan', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21273, 'Orkeny', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21274, 'Paty', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21275, 'Pecel', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21276, 'Perbal', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21277, 'Pilis', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21278, 'Pilisborosjeno', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21279, 'Piliscsaba', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21280, 'Pilisszanto', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21281, 'Pilisszentivan', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21282, 'Pilisszentkereszt', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21283, 'Pilisvorosvar', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21284, 'Pomaz', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21285, 'Racalmas', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21286, 'Rackeve', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21287, 'Solymar', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21288, 'Soskut', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21289, 'Szada', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21290, 'Szazhalombatta', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21291, 'Szentendre', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21292, 'Szentmartonkata', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21293, 'Szigetcsep', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21294, 'Szigetszentmiklos', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21295, 'Szigetujfalu', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21296, 'Szob', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21297, 'Tahitofalu', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21298, 'Tapiobicske', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21299, 'Tapioszecso', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21300, 'Tapioszele', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21301, 'Toalmas', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21302, 'Torokbalint', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21303, 'Tortel', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21304, 'Tura', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21305, 'Ullo', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21306, 'Uri', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21307, 'Urom', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21308, 'Vac', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21309, 'Vecses', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21310, 'Veresegyhaz', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21311, 'Verocemaros', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21312, 'Visegrad', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21313, 'Zsambek', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21314, 'Zsambok', 1650, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21315, 'Adand', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21316, 'Balatonfoldvar', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21317, 'Balatonoszod', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21318, 'Balatonszabadi', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21319, 'Balatonszarszo', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21320, 'Barcs', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21321, 'Berzence', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21322, 'Boglarlelle', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21323, 'Bohonye', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21324, 'Csurgo', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21325, 'Fonyod', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21326, 'Kaposvar', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21327, 'Karad', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21328, 'Kethely', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21329, 'Lengyeltoti', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21330, 'Marcali', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21331, 'Nagyatad', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21332, 'Nagybajom', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21333, 'Siofok', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21334, 'Somogyvar', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21335, 'Tab', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21336, 'Zamardi', 1651, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21337, 'Ajak', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21338, 'Baktaloranthaza', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21339, 'Balkany', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21340, 'Buj', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21341, 'Demecser', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21342, 'Dombrad', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21343, 'Fehergyarmat', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21344, 'Ibrany', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21345, 'Kemecse', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21346, 'Kisvarda', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21347, 'Kotaj', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21348, 'Mandok', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21349, 'Mariapocs', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21350, 'Mateszalka', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21351, 'Nagyecsed', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21352, 'Nagyhalasz', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21353, 'Nagykallo', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21354, 'Nyirbator', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21355, 'Nyirbeltek', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21356, 'Nyiregyhaza', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21357, 'Nyirmada', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21358, 'Nyirpazony', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21359, 'Nyirtelek', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21360, 'Ofeherto', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21361, 'Rakamaz', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21362, 'Tarpa', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21363, 'Tiszabercel', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21364, 'Tiszalok', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21365, 'Tiszavasvari', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21366, 'Tuzser', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21367, 'Vaja', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21368, 'Vasarosnameny', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21369, 'Zahony', 1652, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21370, 'Bataszek', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21371, 'Bonyhad', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21372, 'Decs', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21373, 'Dombovar', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21374, 'Dunafoldvar', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21375, 'Fadd', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21376, 'Gyonk', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21377, 'Hogyesz', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21378, 'Iregszemcse', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21379, 'Madocsa', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21380, 'Nagymagocs', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21381, 'Nagymanyok', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21382, 'Ozora', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21383, 'Paks', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21384, 'Pincehely', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21385, 'Simontornya', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21386, 'Szekszard', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21387, 'Szentgal', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21388, 'Tamasi', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21389, 'Tengelic', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21390, 'Tolna', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21391, 'Zomba', 1653, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21392, 'Buk', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21393, 'Celldomolk', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21394, 'Csepreg', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21395, 'Gencsapati', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21396, 'Jak', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21397, 'Janoshaza', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21398, 'Kormend', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21399, 'Koszeg', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21400, 'Sarvar', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21401, 'Szentgotthard', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21402, 'Szombathely', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21403, 'Vasvar', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21404, 'Vep', 1654, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21405, 'Ajka', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21406, 'Badacsonytomaj', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21407, 'Balatonalmadi', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21408, 'Balatonfured', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21409, 'Balatonfuzfo', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21410, 'Balatonkenese', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21411, 'Band', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21412, 'Berhida', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21413, 'Csabrendek', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21414, 'Devecser', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21415, 'Herend', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21416, 'Papa', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21417, 'Sumeg', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21418, 'Tapolca', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21419, 'Urkut', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21420, 'Varpalota', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21421, 'Veszprem', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21422, 'Zirc', 1655, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21423, 'Becsehely', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21424, 'Heviz', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21425, 'Keszthely', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21426, 'Lenti', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21427, 'Letenye', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21428, 'Nagykanizsa', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21429, 'Sarmellek', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21430, 'Turje', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21431, 'Zalaegerszeg', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21432, 'Zalakomar', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21433, 'Zalalovo', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21434, 'Zalaszentgrot', 1656, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21435, 'Bakkafjor ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21436, 'Borgarfjor ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21437, 'Brei dalsvik', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21438, 'Djupivogur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21439, 'Egilssta ir', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21440, 'Eskifjor ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21441, 'Faskru sfjor ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21442, 'Fellabar', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21443, 'Hallormssta ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21444, 'Hofn', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21445, 'Nesjakauptun', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21446, 'Neskaupsta ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21447, 'Rey arfjor ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21448, 'Sey isfjor ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21449, 'Sto varfjor ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21450, 'Vopnafjor ur', 1657, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21451, 'Akranes', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21452, 'Borgarnes', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21453, 'Bu ardalur', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21454, 'Grundarfjor ur', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21455, 'Hellissandur', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21456, 'Hvanneyri', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21457, 'Olafsvik', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21458, 'Rif', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21459, 'Stykkisholmur', 1665, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21460, 'Banda Aceh', 1666, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21461, 'Bireun', 1666, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21462, 'Langsa', 1666, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21463, 'Lhokseumawe', 1666, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(21464, 'Meulaboh', 1666, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21465, 'Denpasar', 1667, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21466, 'Karangasem', 1667, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21467, 'Klungkung', 1667, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21468, 'Kuta', 1667, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21469, 'Negara', 1667, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21470, 'Singaraja', 1667, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21471, 'Tabanan', 1667, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21472, 'Ubud', 1667, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21473, 'Manggar', 1668, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21474, 'Mentok', 1668, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21475, 'Pangkal Pinang', 1668, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21476, 'Sungai Liat', 1668, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21477, 'Tanjung Pandan', 1668, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21478, 'Toboali-Rias', 1668, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21479, 'Cikupa', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21480, 'Cilegon', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21481, 'Ciputat', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21482, 'Curug', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21483, 'Kresek', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21484, 'Labuhan', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21485, 'Pandegelang', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21486, 'Pondok Aren', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21487, 'Rangkasbitung', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21488, 'Serang', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21489, 'Serpong', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21490, 'Tangerang', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21491, 'Teluknaga', 1669, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21492, 'Bengkulu', 1670, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21493, 'Curup', 1670, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21494, 'Gandaria', 1671, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21495, 'Gorontalo', 1672, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21496, 'Cengkareng', 1673, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21497, 'Jakarta', 1673, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21498, 'Jambi', 1674, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21499, 'Kualatungka', 1674, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21500, 'Simpang', 1674, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21501, 'Sungaipenuh', 1674, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21502, 'Kendal', 1682, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21503, 'Bandar Lampung', 1683, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21504, 'Kota Bumi', 1683, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21505, 'Metro', 1683, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21506, 'Pringsewu', 1683, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21507, 'Terbanggi Besar', 1683, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21508, 'Amahai', 1684, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21509, 'Ambon', 1684, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21510, 'Tual', 1684, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21511, 'Amahai', 1685, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21512, 'Ambon', 1685, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21513, 'Tual', 1685, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21514, 'Aberpura', 1688, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21515, 'Biak', 1688, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21516, 'Jaya Pura', 1688, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21517, 'Manokwari', 1688, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21518, 'Merauke', 1688, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21519, 'Sorong', 1688, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21520, 'Balaipungut', 1689, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21521, 'Bengkalis', 1689, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21522, 'Dumai', 1689, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21523, 'Duri', 1689, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21524, 'Pekan Baru', 1689, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21525, 'Selatpanjang', 1689, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21526, 'Tanjung Balai-Meral', 1689, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21527, 'Tembilahan', 1689, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21528, 'Balaipungut', 1690, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21529, 'Bengkalis', 1690, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21530, 'Dumai', 1690, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21531, 'Duri', 1690, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21532, 'Pekan Baru', 1690, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21533, 'Selatpanjang', 1690, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21534, 'Tanjung Balai-Meral', 1690, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21535, 'Tembilahan', 1690, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21536, 'Solo', 1691, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21537, 'Bambanglipuro', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21538, 'Banguntapan', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21539, 'Bantul', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21540, 'Depok', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21541, 'Gamping', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21542, 'Godean', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21543, 'Jetis', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21544, 'Kasihan', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21545, 'Ngaglik', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21546, 'Pandak', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21547, 'Pundong', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21548, 'Sewon', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21549, 'Seyegan', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21550, 'Sleman', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21551, 'Srandakan', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21552, 'Wonosari', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21553, 'Yogyakarta', 1699, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21554, 'Ardabil', 1700, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21555, 'Garmi', 1700, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21556, 'Khalkhal', 1700, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21557, 'Meshkinshahr', 1700, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21558, 'Parsabad', 1700, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21559, 'Bandar-e Gonaveh', 1703, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21560, 'Borazjan', 1703, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21561, 'Bushehr', 1703, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21562, 'Dashti', 1703, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21563, 'Dir', 1703, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21564, 'Khormuj', 1703, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21565, 'Kongan', 1703, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21566, 'Tangestan', 1703, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21567, 'Ardistan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21568, 'Dorchehpiyaz', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21569, 'Dowlatabad', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21570, 'Esfahan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21571, 'Falavarjan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21572, 'Faridan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21573, 'Fereydunshahr', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21574, 'Fuladshahr', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21575, 'Golara', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21576, 'Golpayegan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21577, 'Kashan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21578, 'Kelishad', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21579, 'Khomeynishahr', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21580, 'Khonsar', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21581, 'Khuresgan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21582, 'Mobarakeh', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21583, 'Na\'in', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21584, 'Najafabad', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21585, 'Natnaz', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21586, 'Qahdarijan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21587, 'Rehnan', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21588, 'Semirom', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21589, 'Shahinshahr', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21590, 'Shahreza', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21591, 'Zarinshahr', 1705, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21592, 'Abadeh', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21593, 'Akbarabad', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21594, 'Darab', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21595, 'Eqlid', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21596, 'Estehban', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21597, 'Fasa', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21598, 'Firuzabad', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21599, 'Gerash', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21600, 'Jahrom', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21601, 'Kazerun', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21602, 'Lar', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21603, 'Marv Dasht', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21604, 'Neyriz', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21605, 'Nurabad', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21606, 'Qa\'emiyeh', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21607, 'Sepidan', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21608, 'Shiraz', 1706, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21609, 'Astaneh-ye Ashrafiyeh', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21610, 'Astara', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21611, 'Bandar-e Anzali', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21612, 'Faman', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21613, 'Hashtpar', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21614, 'Lahijan', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21615, 'Langarud', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21616, 'Rasht', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21617, 'Rudbar', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21618, 'Rudsar', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21619, 'Sawma\'eh Sara', 1707, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21620, 'Aq Qal\'eh', 1708, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21621, 'Azad Shahr', 1708, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21622, 'Bandar-e Torkaman', 1708, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21623, 'Gonbad-e Qabus', 1708, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21624, 'Gorgan', 1708, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21625, 'Asadabad', 1709, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21626, 'Bahar', 1709, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21627, 'Hamadan', 1709, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21628, 'Malayer', 1709, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21629, 'Nahavand', 1709, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21630, 'Tuysarkan', 1709, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21631, 'Bandar Abbas', 1710, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21632, 'Bandar-e \'Abbas', 1710, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21633, 'Bandar-e Lengeh', 1710, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21634, 'Gheshm', 1710, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21635, 'Jask', 1710, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21636, 'Kish', 1710, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21637, 'Kish Island', 1710, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21638, 'Minab', 1710, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21639, 'Abdanan', 1711, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21640, 'Darrehshahr', 1711, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21641, 'Dehloran', 1711, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21642, 'Ilam', 1711, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21643, 'Ivan', 1711, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21644, 'Mehran', 1711, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21645, 'Baft', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21646, 'Bam', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21647, 'Bardsir', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21648, 'Jiroft', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21649, 'Kahnuj', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21650, 'Kerman', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21651, 'Rafsanjan', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21652, 'Ravar', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21653, 'Shahr-e Babak', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21654, 'Sirjan', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21655, 'Zarand', 1712, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21656, 'Eslamabad', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21657, 'Gilan-e Garb', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21658, 'Harsin', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21659, 'Javanrud', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21660, 'Kangavar', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21661, 'Kermanshah', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21662, 'Paveh', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21663, 'Sahneh', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21664, 'Sar-e-Pol-e-Zohab', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21665, 'Sonqor', 1713, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21666, 'Birjand', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21667, 'Bojnurd', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21668, 'Chenaran', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21669, 'Darreh Gaz', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21670, 'Esfarayen', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21671, 'Fariman', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21672, 'Ferdus', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21673, 'Gha\'nat', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21674, 'Gonabad', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21675, 'Kashmar', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21676, 'Mashad', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21677, 'Mashhad', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21678, 'Neyshabur', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21679, 'Qayen', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21680, 'Quchan', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21681, 'Sabzevar', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21682, 'Sarakhs', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21683, 'Shirvan', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21684, 'Tabas', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21685, 'Tayyebat', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21686, 'Torbat-e Heydariyeh', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21687, 'Torbat-e Jam', 1714, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21688, 'Abadan', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21689, 'Agha Jari', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21690, 'Ahvaz', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21691, 'Ahwaz', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21692, 'Andimeshk', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21693, 'Bandar-e Emam Khomeyni', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21694, 'Bandar-e Mahshahr', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21695, 'Behbahan', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21696, 'Dezful', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21697, 'Ezeh', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21698, 'Hendijan', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21699, 'Khorramshahr', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21700, 'Masjed-e Soleyman', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21701, 'Omidiyeh', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21702, 'Ramhormoz', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21703, 'Ramshir', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21704, 'Shadegan', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21705, 'Shush', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21706, 'Shushtar', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21707, 'Susangerd', 1715, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21708, 'Baneh', 1717, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21709, 'Bijar', 1717, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21710, 'Kamyaran', 1717, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21711, 'Marivan', 1717, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21712, 'Qorveh', 1717, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21713, 'Sanandaj', 1717, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21714, 'Saqqez', 1717, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21715, 'Alashtar', 1718, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21716, 'Aligudarz', 1718, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21717, 'Azna', 1718, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21718, 'Borujerd', 1718, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21719, 'Do Rud', 1718, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21720, 'Khorramabad', 1718, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21721, 'Kuhdasht', 1718, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21722, 'Nurabad', 1718, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21723, 'Arak', 1719, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21724, 'Ashtian', 1719, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21725, 'Delijan', 1719, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21726, 'Khomeyn', 1719, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21727, 'Mahallat', 1719, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21728, 'Sarband', 1719, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21729, 'Saveh', 1719, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21730, 'Tafresh', 1719, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21731, 'Aliabad', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21732, 'Amir Kala', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21733, 'Amol', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21734, 'Babol', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21735, 'Babol Sar', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21736, 'Behshahr', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21737, 'Chalus', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21738, 'Fereydunkenar', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21739, 'Juybar', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21740, 'Kalaleh', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21741, 'Kordkuy', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21742, 'Mahmudabad', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21743, 'Minudasht', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21744, 'Neka', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21745, 'Nur', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21746, 'Nushahr', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21747, 'Qa\'emshahr', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21748, 'Ramsar', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21749, 'Sari', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21750, 'Savadkuh', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21751, 'Tonekabon', 1720, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21752, 'Abhar', 1722, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21753, 'Abyek', 1722, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21754, 'Qazvin', 1722, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21755, 'Takestan', 1722, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21756, 'Qom', 1723, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21757, 'Damghan', 1724, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21758, 'Garmsar', 1724, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21759, 'Semnan', 1724, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21760, 'Shahrud', 1724, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21761, 'Damavand', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21762, 'Eqbaliyeh', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21763, 'Eslamshahr', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21764, 'Hashtgerd', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21765, 'Karaj', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21766, 'Mahdasht', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21767, 'Malard', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21768, 'Mohammadiyeh', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21769, 'Nazarabad', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21770, 'Pakdasht', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21771, 'Pishva', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21772, 'Qarchak', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21773, 'Qods', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21774, 'Robat Karim', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21775, 'Shahriyar', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21776, 'Tehran', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21777, 'Varamin', 1726, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21778, 'Ardakan', 1727, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21779, 'Bafq', 1727, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21780, 'Mehriz', 1727, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21781, 'Meybod', 1727, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21782, 'Taft', 1727, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21783, 'Yazd', 1727, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21784, 'Alvand', 1728, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21785, 'Khorramdarreh', 1728, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21786, 'Zanjan', 1728, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21787, 'Jurf-as-Sakhr', 1729, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21788, 'Saddat-al-Hindiyah', 1729, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21789, 'al-Hillah', 1729, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21790, 'al-Madhatiyah', 1729, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21791, 'al-Musayyib', 1729, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21792, 'al-Qasim', 1729, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21793, 'Baghdad', 1730, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21794, 'Dahuk', 1731, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21795, 'Zakhu', 1731, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21796, 'Ba\'qubah', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21797, 'Hanaqin', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21798, 'Jalula\'\'', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21799, 'Kifri', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21800, 'Mandali', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21801, 'al-Fuhud', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21802, 'al-Khalis', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21803, 'al-Miqdadiyah', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21804, 'ash-Shatrah', 1733, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21805, 'Ankawa', 1734, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21806, 'Chaqalawa', 1735, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21807, 'Irbil', 1735, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21808, 'Rawanduz', 1735, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21809, 'Karbala', 1736, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21810, 'al-Hindiyah', 1736, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21811, 'Erbil', 1737, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21812, '\'Ali al Gharbi', 1738, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21813, 'al-\'Amarah', 1738, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21814, 'al-Majarr-al-Kabir', 1738, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21815, 'Qarah Qush', 1739, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21816, 'Sinjar', 1739, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21817, 'Tall \'Afar', 1739, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21818, 'Tall Kayf', 1739, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21819, 'al-Mawsil', 1739, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21820, 'ash-Shaykhan', 1739, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21821, 'Balad', 1740, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21822, 'Bayji', 1740, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21823, 'Dhalu\'iyah', 1740, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21824, 'Samarra', 1740, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21825, 'Tikrit', 1740, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21826, 'Tuz', 1740, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21827, 'ad-Dujayl', 1740, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21828, 'al-\'Aziziyah', 1741, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21829, 'al-Hayy', 1741, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21830, 'al-Kut', 1741, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21831, 'an-Nu\'maniyah', 1741, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21832, 'as-Suwayrah', 1741, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21833, '\'Anah', 1742, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21834, 'Hit', 1742, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21835, 'Rawah', 1742, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21836, 'al-Fallujah', 1742, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21837, 'al-Habbaniyah', 1742, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21838, 'al-Hadithah', 1742, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21839, 'ar-Ramadi', 1742, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21840, 'ar-Rutbah', 1742, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21841, 'Abu al-Khasib', 1743, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21842, 'Harithah', 1743, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21843, 'Shatt-al-\'Arab', 1743, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21844, 'al-Basrah', 1743, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21845, 'al-Faw', 1743, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21846, 'al-Qurnah', 1743, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21847, 'az-Zubayr', 1743, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21848, 'ar-Rumaythah', 1744, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21849, 'as-Samawah', 1744, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21850, '\'Afak', 1745, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21851, 'ad-Diwaniyah', 1745, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21852, 'al-Ghammas', 1745, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21853, 'al-Hamzah', 1745, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21854, 'ash-Shamiyah', 1745, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21855, 'ash-Shinafiyah', 1745, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21856, 'al-Kufah', 1746, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21857, 'al-Mishkhab', 1746, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21858, 'an-Najaf', 1746, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21859, 'Chamchamal', 1747, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21860, 'Halabjah', 1747, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21861, 'Kusanjaq', 1747, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21862, 'Panjwin', 1747, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21863, 'Qal\'at Dizeh', 1747, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21864, 'as-Sulaymaniyah', 1747, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21865, '\'Aqrah', 1748, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21866, 'Kirkuk', 1748, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21867, 'Moira', 1749, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21868, 'Bagenalstown', 1750, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21869, 'Carlow', 1750, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21870, 'Tullow', 1750, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21871, 'Bailieborough', 1751, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21872, 'Belturbet', 1751, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21873, 'Cavan', 1751, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21874, 'Coothill', 1751, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21875, 'Ennis', 1752, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21876, 'Kilkee', 1752, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21877, 'Kilrush', 1752, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21878, 'Newmarket-on-Fergus', 1752, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21879, 'Shannon', 1752, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21880, 'Bandon', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21881, 'Bantry', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21882, 'Blarney', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21883, 'Carrigaline', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21884, 'Charleville', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21885, 'Clonakilty', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21886, 'Cobh', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21887, 'Cork', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21888, 'Drishane', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21889, 'Dunmanway', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21890, 'Fermoy', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21891, 'Kanturk', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21892, 'Kinsale', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21893, 'Macroom', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21894, 'Mallow', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21895, 'Midleton', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21896, 'Millstreet', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21897, 'Mitchelstown', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21898, 'Passage West', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21899, 'Skibbereen', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21900, 'Youghal', 1753, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21901, 'Ballybofey', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21902, 'Ballyshannon', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21903, 'Buncrana', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21904, 'Bundoran', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21905, 'Carndonagh', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21906, 'Donegal', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21907, 'Killybegs', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21908, 'Letterkenny', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21909, 'Lifford', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21910, 'Moville', 1754, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21911, 'Balbriggan', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21912, 'Ballsbridge', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21913, 'Dublin', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21914, 'Leixlip', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21915, 'Lucan', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21916, 'Malahide', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21917, 'Portrane', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21918, 'Rathcoole', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21919, 'Rush', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21920, 'Skerries', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21921, 'Swords', 1755, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21922, 'Athenry', 1756, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21923, 'Ballinasloe', 1756, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21924, 'Clifden', 1756, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21925, 'Galway', 1756, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21926, 'Gort', 1756, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21927, 'Loughrea', 1756, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21928, 'Tuam', 1756, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21929, 'Ballybunion', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21930, 'Cahirciveen', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21931, 'Castleisland', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21932, 'Dingle', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21933, 'Kenmare', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21934, 'Killarney', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21935, 'Killorglin', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21936, 'Listowel', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21937, 'Tralee', 1757, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21938, 'Athy', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21939, 'Celbridge', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21940, 'Clane', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21941, 'Kilcock', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21942, 'Kilcullen', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21943, 'Kildare', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21944, 'Maynooth', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21945, 'Monasterevan', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21946, 'Naas', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21947, 'Newbridge', 1758, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21948, 'Callan', 1759, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21949, 'Castlecomer', 1759, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21950, 'Kilkenny', 1759, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21951, 'Thomastown', 1759, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21952, 'Abbeyleix', 1760, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21953, 'Mountmellick', 1760, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21954, 'Mountrath', 1760, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21955, 'Port Laoise', 1760, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21956, 'Portarlington', 1760, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21957, 'Meath', 1761, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21958, 'Carrick-on-Shannon', 1762, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21959, 'Abbeyfeale', 1763, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21960, 'Kilmallock', 1763, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21961, 'Limerick', 1763, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21962, 'Newcastle', 1763, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21963, 'Rathkeale', 1763, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21964, 'Granard', 1765, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21965, 'Longford', 1765, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21966, 'Moate', 1765, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21967, 'Ardee', 1766, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21968, 'Drogheda', 1766, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21969, 'Drumcar', 1766, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21970, 'Dundalk', 1766, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21971, 'Ballina', 1767, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21972, 'Ballinrobe', 1767, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21973, 'Ballyhaunis', 1767, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21974, 'Castlebar', 1767, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21975, 'Claremorris', 1767, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21976, 'Swinford', 1767, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21977, 'Westport', 1767, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21978, 'Ashbourne', 1768, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21979, 'Duleek', 1768, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21980, 'Dunboyne', 1768, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21981, 'Dunshaughlin', 1768, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21982, 'Kells', 1768, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21983, 'Laytown', 1768, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21984, 'Navan', 1768, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21985, 'Trim', 1768, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21986, 'Carrickmacross', 1769, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21987, 'Castleblayney', 1769, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21988, 'Clones', 1769, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21989, 'Monaghan', 1769, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21990, 'Banagher', 1770, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21991, 'Birr', 1770, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21992, 'Clara', 1770, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21993, 'Edenderry', 1770, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21994, 'Kilcormac', 1770, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21995, 'Tullamore', 1770, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21996, 'Ballaghaderreen', 1771, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21997, 'Boyle', 1771, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21998, 'Castlerea', 1771, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(21999, 'Roscommon', 1771, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22000, 'Sligo', 1772, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22001, 'Co Tyrone', 1775, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22002, 'Downpatrick', 1775, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22003, 'Dungarvan', 1776, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22004, 'Tramore', 1776, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22005, 'Waterford', 1776, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22006, 'Athlone', 1777, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22007, 'Mullingar', 1777, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22008, 'Enniscorthy', 1778, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22009, 'Gorey', 1778, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22010, 'New Ross', 1778, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22011, 'Wexford', 1778, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22012, 'Arklow', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22013, 'Baltinglass', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22014, 'Blessington', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22015, 'Bray', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22016, 'Greystones', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22017, 'Kilcoole', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22018, 'Newtownmountkennedy', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22019, 'Rathdrum', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22020, 'Wicklow', 1779, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22021, 'Bethlehem', 1782, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22022, 'Caesarea', 1783, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22023, 'Petach Tikva', 1784, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22024, 'Ramallah', 1784, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22025, 'Gaza', 1785, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22026, '\'Arad', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22027, '\'Omer', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22028, 'Ashdod', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22029, 'Ashqelon', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22030, 'Be\'er Sheva', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22031, 'Beersheba', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22032, 'Bene Ayish', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22033, 'Dimona', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22034, 'Elat', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22035, 'Gan Yavne', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22036, 'Nahal `Oz', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22037, 'Netivot', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22038, 'Ofaqim', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22039, 'Qiryat Gat', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22040, 'Qiryat Mal\'akhi', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22041, 'Sederot', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(22042, 'Yeroham', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22043, 'kiryat Malachi', 1786, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22044, 'Be\'er Ya\'aqov', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22045, 'Beit Shemesh', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22046, 'Bene Beraq', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22047, 'Bnei Brak', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22048, 'Even Yehuda', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22049, 'Fureidis', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22050, 'Gat Rimon', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22051, 'Gedera', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22052, 'Givat Shmuel', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22053, 'Hibat Zion', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22054, 'Hod HaSharon', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22055, 'Hogar', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22056, 'Jaljulye', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22057, 'Jatt', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22058, 'Kafar Qasem', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22059, 'Kefar Sava', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22060, 'Kefar Yona', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22061, 'Kfar Saba', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22062, 'Kiryag Bialik', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22063, 'Lod', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22064, 'Mazkeret Batya', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22065, 'Modi\'in', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22066, 'Nes Ziyyona', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22067, 'Ness Ziona', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22068, 'Netanya', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22069, 'Nordiya', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22070, 'Pardesiyya', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22071, 'Petakh Tiqwa', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22072, 'Qadima', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22073, 'Qalansawe', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22074, 'Qiryat \'Eqron', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22075, 'Ra\'anana', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22076, 'Ramla', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22077, 'Rehovot', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22078, 'Rekhovot', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22079, 'Rinnatya', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22080, 'Rishon LeZiyyon', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22081, 'Rosh HaAyin', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22082, 'Shoham', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22083, 'Tayibe', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22084, 'Tire', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22085, 'Tsur Igal', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22086, 'Udim', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22087, 'Yavne', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22088, 'Yehud', 1788, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22089, '\'Afula', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22090, '\'Akko', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22091, '\'Arrabe', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22092, '\'Ein Mahel', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22093, '\'Ilut', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22094, 'Abu Sinan', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22095, 'Basmat Tab\'un', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22096, 'Beit Jann', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22097, 'Bet She\'an', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22098, 'Bi\'ne', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22099, 'Bir-al-Maksur', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22100, 'Bu\'eine-Nujeidat', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22101, 'Dabburye', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22102, 'Dayr Hannah', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22103, 'Dayr-al-Asad', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22104, 'Hazor HaGelilit', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22105, 'I\'billin', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22106, 'Iksal', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22107, 'Judeide-Maker', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22108, 'Kabul', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22109, 'Kafar Kanna', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22110, 'Kafar Manda', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22111, 'Kafar Yasif', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22112, 'Karmiel', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22113, 'Kisra-Sumei', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22114, 'Ma\'alot Tarshikha', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22115, 'Majd-al-Kurum', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22116, 'Migdal Ha\'Emeq', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22117, 'Mugar', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22118, 'Nahariyya', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22119, 'Nahef', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22120, 'Nazerat', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22121, 'Nazerat \'Illit', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22122, 'Qiryat Shemona', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22123, 'Qiryat Tiv\'on', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22124, 'Rame', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22125, 'Reine', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22126, 'Sakhnin', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22127, 'Shefar\'am', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22128, 'Tamra', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22129, 'Tiberias', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22130, 'Tur\'an', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22131, 'Yirka', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22132, 'Yoqne\'am Illit', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22133, 'Zefat', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22134, 'Zur Yigal', 1789, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22135, 'Hebron', 1790, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22136, 'Sgula', 1791, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22137, 'Jerusalem', 1792, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22138, '\'Ar\'ara', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22139, '\'Isifya', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22140, 'Baqa al-Gharbiyyah', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22141, 'Binyamina', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22142, 'Daliyat-al-Karmil', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22143, 'Jizr-az-Zarqa', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22144, 'Khadera', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22145, 'Khefa', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22146, 'Nesher', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22147, 'Or \'Aqiva', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22148, 'Pardes Khanna-Karkur', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22149, 'Qiryat Atta', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22150, 'Qiryat Bialik', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22151, 'Qiryat Motzkin', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22152, 'Qiryat Yam', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22153, 'Rekhasim', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22154, 'Tirat Karmel', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22155, 'Umm-al-Fahm', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22156, 'Zikhron Ya\'aqov', 1793, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22157, 'Qalqilya', 1796, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22158, 'Hadera', 1799, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22159, 'Kiryag Bialik', 1799, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22160, 'Bet Shemesh', 1801, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22161, 'Mevasserat Ziyyon', 1801, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22162, 'Yerushalayim', 1801, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22163, 'Meta', 1802, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22164, 'Miano', 1802, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22165, 'Alba Adriatica', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22166, 'Atessa', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22167, 'Atri', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22168, 'Avezzano', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22169, 'Celano', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22170, 'Cepagatti', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22171, 'Chieti', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22172, 'Citta Sant\'Angelo', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22173, 'Francavilla al Mare', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22174, 'Giulianova', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22175, 'Guardiagrele', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22176, 'L\'Aquila', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22177, 'Lanciano', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22178, 'Martinsicuro', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22179, 'Montesilvano', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22180, 'Montorio al Vomano', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22181, 'Mosciano Sant\'Angelo', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22182, 'Ortona', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22183, 'Penne', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22184, 'Pescara', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22185, 'Pineto', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22186, 'Roseto degli Abruzzi', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22187, 'San Giovanni Teatino', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22188, 'San Salvo', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22189, 'Sant\'Egidio alla Vibrata', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22190, 'Silvi', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22191, 'Spoltore', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22192, 'Sulmona', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22193, 'Teramo', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22194, 'Vasto', 1803, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22195, 'Agrigento', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22196, 'Alessandria della Rocca', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22197, 'Aragona', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22198, 'Bivona', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22199, 'Burgio', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22200, 'Calamonaci', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22201, 'Caltabellotta', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22202, 'Camastra', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22203, 'Cammarata', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22204, 'Campobello di Licata', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22205, 'Canicattì', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22206, 'Casteltermini', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22207, 'Castrofilippo', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22208, 'Cattolica Eraclea', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22209, 'Cianciana', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22210, 'Comitini', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22211, 'Favara', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22212, 'Grotte', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22213, 'Joppolo Giancaxio', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22214, 'Lampedusa e Linosa', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22215, 'Licata', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22216, 'Lucca Sicula', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22217, 'Menfi', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22218, 'Montallegro', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22219, 'Montevago', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22220, 'Naro', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22221, 'Palma di Montechiaro', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22222, 'Porto Empedocle', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22223, 'Racalmuto', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22224, 'Raffadali', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22225, 'Ravanusa', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22226, 'Realmonte', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22227, 'Ribera', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22228, 'Sambuca di Sicilia', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22229, 'San Biagio Platani', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22230, 'San Giovanni Gemini', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22231, 'Sant Angelo Muxaro', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22232, 'Santa Elisabetta', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22233, 'Santa Margherita di Belice', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22234, 'Santo Stefano Quisquina', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22235, 'Sciacca', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22236, 'Siculiana', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22237, 'Villafranca Sicula', 1804, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22238, 'Castellazzo Bormida', 1805, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22239, 'Gavi', 1805, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22240, 'Villanova Monferrato', 1805, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22241, 'Camerano', 1806, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22242, 'Castelplanio', 1806, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22243, 'Capolona', 1807, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22244, 'Montevarchi', 1807, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22245, 'Subbiano', 1807, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22246, 'Buttigliera d\'Asti', 1809, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22247, 'Flumeri', 1810, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22248, 'Nusco', 1810, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22249, 'Prata di Principato Ultra', 1810, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22250, 'Villanova del Battista', 1810, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22251, 'Avigliano', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22252, 'Bernalda', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22253, 'Ferrandina', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22254, 'Lauria', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22255, 'Lavello', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22256, 'Matera', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22257, 'Melfi', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22258, 'Montescaglioso', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22259, 'Pisticci', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22260, 'Policoro', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22261, 'Potenza', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22262, 'Rionero in Vulture', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22263, 'Venosa', 1812, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22264, 'Belluno', 1813, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22265, 'D\'alpago', 1813, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22266, 'Longarone', 1813, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22267, 'Pedavena', 1813, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22268, 'San Bartolomeo', 1814, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22269, '', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22270, 'Bagnatica', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22271, 'Bergamo', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22272, 'Bolgare', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22273, 'Bottanuco', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22274, 'Brignano Gera d\'Adda', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22275, 'Calcio', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22276, 'Caravaggio', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22277, 'Chiuduno', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22278, 'Ciserano', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22279, 'Comun Nuovo', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22280, 'Costa di Mezzate', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22281, 'Gandino', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22282, 'Grassobbio', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22283, 'Grumello Del Monte', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22284, 'Grumello del Monte', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22285, 'Lallio', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22286, 'Levate', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22287, 'Lurano', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22288, 'Mapello', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22289, 'Pagazzano', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22290, 'Ponteranica', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22291, 'Pontida', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22292, 'Sant Omobono Imagna', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22293, 'Torre Pallavicina', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22294, 'Trescore Balneario', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22295, 'Verdellino', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22296, 'Zingonia', 1815, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22297, 'Camburzano', 1816, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22298, 'Crevacuore', 1816, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22299, 'Gaglianico', 1816, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22300, 'Sandigliano', 1816, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22301, 'Vigliano Biellese', 1816, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22302, 'Anzola dell\'Emilia', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22303, 'Bologna', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22304, 'Borgo Tossignano', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22305, 'Casalfiumanese', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22306, 'Castiglione Dei Pepoli ', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22307, 'Funo', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22308, 'Loiano', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22309, 'Monterenzio', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22310, 'Osteria Grande', 1817, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22311, 'Frangarto', 1818, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22312, 'Agnosine', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22313, 'Brescia', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22314, 'Capriano del Colle', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22315, 'Capriolo', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22316, 'Castegnato', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22317, 'Castelcovati', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22318, 'Cellatica', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22319, 'Coccaglio', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22320, 'Comezzano-Cizzago', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22321, 'Erbusco', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22322, 'Flero', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22323, 'Lavenone', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22324, 'Longhena', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22325, 'Maclodio', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22326, 'Muscoline', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22327, 'Padenghe sul Garda', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22328, 'Paderno Franciacorta', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22329, 'Paratico', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22330, 'Passirano', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22331, 'Polaveno', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22332, 'Poncarale', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22333, 'Prevalle', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22334, 'Provaglio dIseo', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22335, 'Roncadelle', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22336, 'Verolavecchia', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22337, 'Visano', 1819, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22338, 'San Donaci', 1820, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22339, 'Acri', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22340, 'Amantea', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22341, 'Bagnara Calabra', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22342, 'Belvedere Marittimo', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22343, 'Bisignano', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22344, 'Bovalino', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22345, 'Cariati', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22346, 'Cassano allo Ionio', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22347, 'Castrolibero', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22348, 'Castrovillari', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22349, 'Catanzaro', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22350, 'Cetraro', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22351, 'Ciro Marina', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22352, 'Cittanova', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22353, 'Corigliano Calabro', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22354, 'Cosenza', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22355, 'Crosia', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22356, 'Crotone', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22357, 'Cutro', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22358, 'Fuscaldo', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22359, 'Gioia Tauro', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22360, 'Isola di Capo Rizzuto', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22361, 'Lamezia Terme', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22362, 'Locri', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22363, 'Luzzi', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22364, 'Melito di Porto Salvo', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22365, 'Mendicino', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22366, 'Montalto Uffugo', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22367, 'Palmi', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22368, 'Paola', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22369, 'Petilia Policastro', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22370, 'Pizzo', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22371, 'Polistena', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22372, 'Reggio di Calabria', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22373, 'Rende', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22374, 'Rosarno', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22375, 'Rossano', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22376, 'San Giovanni in Fiore', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22377, 'Scalea', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22378, 'Sellia Marina', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22379, 'Siderno', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22380, 'Soverato', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22381, 'Taurianova', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22382, 'Trebisacce', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22383, 'Vibo Valentia', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22384, 'Villa San Giovanni', 1821, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22385, 'Acerra', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22386, 'Afragola', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22387, 'Agropoli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22388, 'Angri', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22389, 'Ariano Irpino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22390, 'Arzano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22391, 'Atripalda', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22392, 'Avellino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22393, 'Aversa', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22394, 'Bacoli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22395, 'Barano d\'Ischia', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22396, 'Baronissi', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22397, 'Battipaglia', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22398, 'Bellizzi', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22399, 'Benevento', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22400, 'Boscoreale', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22401, 'Boscotrecase', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22402, 'Brusciano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22403, 'Caivano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22404, 'Calvizzano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22405, 'Campagna', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22406, 'Capaccio', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22407, 'Capua', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22408, 'Cardito', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22409, 'Carinola', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22410, 'Casagiove', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22411, 'Casal di Principe', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22412, 'Casalnuovo di Napoli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22413, 'Casaluce', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22414, 'Casandrino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22415, 'Casavatore', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22416, 'Caserta', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22417, 'Casoria', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22418, 'Castel San Giorgio', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22419, 'Castel Volturno', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22420, 'Castellammare di Stabia', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22421, 'Cava de\' Tirreni', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22422, 'Cercola', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22423, 'Cervinara', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22424, 'Cicciano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22425, 'Crispano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22426, 'Eboli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22427, 'Ercolano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22428, 'Fisciano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22429, 'Forio', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22430, 'Frattamaggiore', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22431, 'Frattaminore', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22432, 'Frignano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22433, 'Giffoni Valle Piana', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22434, 'Giugliano in Campania', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22435, 'Gragnano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22436, 'Gricignano di Aversa', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22437, 'Grottaminarda', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22438, 'Grumo Nevano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22439, 'Ischia', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22440, 'Lusciano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22441, 'Macerata Campania', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22442, 'Maddaloni', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22443, 'Marano di Napoli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22444, 'Marcianise', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22445, 'Marigliano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22446, 'Massa Lubrense', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22447, 'Melito di Napoli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22448, 'Mercato San Severino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22449, 'Mercogliano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22450, 'Meta', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22451, 'Mirabella Eclano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22452, 'Mondragone', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22453, 'Monte di Procida', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22454, 'Montecorvino Rovella', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22455, 'Monteforte Irpino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22456, 'Montesarchio', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22457, 'Montoro Inferiore', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22458, 'Mugnano di Napoli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22459, 'Naples', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22460, 'Napoli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22461, 'Nocera Inferiore', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22462, 'Nocera Superiore', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22463, 'Nola', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22464, 'Orta di Atella', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22465, 'Ottaviano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22466, 'Pagani', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22467, 'Palma Campania', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22468, 'Parete', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22469, 'Pellezzano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22470, 'Piano di Sorrento', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22471, 'Piedimonte Matese', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22472, 'Poggiomarino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22473, 'Pollena Trocchia', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22474, 'Pomigliano d\'Arco', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22475, 'Pompei', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22476, 'Pontecagnano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22477, 'Portici', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22478, 'Positano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22479, 'Pozzuoli', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22480, 'Procida', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22481, 'Qualiano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22482, 'Quarto', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22483, 'Roccapiemonte', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22484, 'Sala Consilina', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22485, 'Salerno', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22486, 'San Cipriano d\'Aversa', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22487, 'San Felice a Cancello', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22488, 'San Gennaro Vesuviano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22489, 'San Giorgio a Cremano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22490, 'San Giorgio del Sannio', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22491, 'San Giuseppe Vesuviano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22492, 'San Marcellino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22493, 'San Marzano sul Sarno', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22494, 'San Nicola', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22495, 'San Prisco', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22496, 'San Sebastiano al Vesuvio', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22497, 'San Valentino Torio', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22498, 'Sant Antimo', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22499, 'Sant\'Agata de\' Goti', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22500, 'Sant\'Agnello', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22501, 'Sant\'Anastasia', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22502, 'Sant\'Antonio Abate', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22503, 'Sant\'Arpino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22504, 'Sant\'Egidio del Monte Albino', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22505, 'Santa Maria Capua Vetere', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22506, 'Santa Maria a Vico', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22507, 'Santa Maria la Carita', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22508, 'Sarno', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22509, 'Saviano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22510, 'Scafati', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22511, 'Sessa Aurunca', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22512, 'Siano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22513, 'Solofra', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22514, 'Somma Vesuviana', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22515, 'Sorrento', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22516, 'Teano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22517, 'Teggiano', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22518, 'Terzigno', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22519, 'Teverola', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22520, 'Torre Annunziata', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22521, 'Torre del Greco', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22522, 'Trecase', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22523, 'Trentola-Ducenta', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22524, 'Vallo della Lucania', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22525, 'Vico Equense', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22526, 'Vietri sul Mare', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22527, 'Villa Literno', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22528, 'Villaricca', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22529, 'Volla', 1822, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22530, 'Cartoceto', 1823, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22531, 'Carinaro', 1824, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22532, 'San Marco Evangelista', 1824, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22533, 'Fiandaca Di Acireale', 1825, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22534, 'San Cono', 1825, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22535, 'Altino', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22536, 'Archi', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22537, 'Ari', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22538, 'Arielli', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22539, 'Atessa', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22540, 'Bomba', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22541, 'Borrello', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22542, 'Bucchianico', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22543, 'Canosa Sannita', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22544, 'Carpineto Sinello', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22545, 'Carunchio', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22546, 'Casacanditella', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22547, 'Casalanguida', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22548, 'Casalbordino', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22549, 'Casalincontrada', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22550, 'Casoli', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22551, 'Castel Frentano', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22552, 'Castelguidone', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22553, 'Castiglione Messer Marino', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22554, 'Celenza sul Trigno', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22555, 'Chieti', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22556, 'Civitaluparella', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22557, 'Civitella Messer Raimondo', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22558, 'Colledimacine', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22559, 'Colledimezzo', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22560, 'Crecchio', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22561, 'Cupello', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22562, 'Dogliola', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22563, 'Fallo', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22564, 'Fara Filiorum Petri', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22565, 'Fara San Martino', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22566, 'Filetto', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22567, 'Fossacesia', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22568, 'Fraine', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22569, 'Francavilla al Mare', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22570, 'Fresagrandinaria', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22571, 'Frisa', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22572, 'Furci', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22573, 'Gamberale', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22574, 'Gessopalena', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22575, 'Gissi', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22576, 'Giuliano Teatino', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22577, 'Guardiagrele', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22578, 'Guilmi', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22579, 'Lama dei Peligni', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22580, 'Lanciano', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22581, 'Lentella', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22582, 'Lettopalena', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22583, 'Liscia', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22584, 'Miglianico', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22585, 'Montazzoli', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22586, 'Montebello sul Sangro', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22587, 'Monteferrante', 1826, 0.00, 0, '2021-04-06 01:13:46', '2021-04-06 01:13:46', NULL), -(22588, 'Montelapiano', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22589, 'Montenerodomo', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22590, 'Monteodorisio', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22591, 'Mozzagrogna', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22592, 'Orsogna', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22593, 'Ortona', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22594, 'Paglieta', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22595, 'Palena', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22596, 'Palmoli', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22597, 'Palombaro', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22598, 'Pennadomo', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22599, 'Pennapiedimonte', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22600, 'Perano', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22601, 'Pietraferrazzana', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22602, 'Pizzoferrato', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(22603, 'Poggiofiorito', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22604, 'Pollutri', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22605, 'Pretoro', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22606, 'Quadri', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22607, 'Rapino', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22608, 'Ripa Teatina', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22609, 'Rocca San Giovanni', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22610, 'Roccamontepiano', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22611, 'Roccascalegna', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22612, 'Roccaspinalveti', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22613, 'Roio del Sangro', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22614, 'Rosello', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22615, 'San Buono', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22616, 'San Giovanni Lipioni', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22617, 'San Giovanni Teatino', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22618, 'San Martino sulla Marrucina', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22619, 'San Salvo', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22620, 'San Vito Chietino', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22621, 'Sant Eusanio del Sangro', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22622, 'Santa Maria Imbaro', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22623, 'Scerni', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22624, 'Schiavi di Abruzzo', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22625, 'Taranta Peligna', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22626, 'Tollo', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22627, 'Torino di Sangro', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22628, 'Tornareccio', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22629, 'Torrebruna', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22630, 'Torrevecchia Teatina', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22631, 'Torricella Peligna', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22632, 'Treglio', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22633, 'Tufillo', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22634, 'Vacri', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22635, 'Vasto', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22636, 'Villa Santa Maria', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22637, 'Villalfonsina', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22638, 'Villamagna', 1826, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22639, 'Albavilla', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22640, 'Cadorago', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22641, 'Carimate', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22642, 'Castelmarte', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22643, 'Cavaria', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22644, 'Cernobbio', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22645, 'Comocrea', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22646, 'Dongo', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22647, 'Gironico', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22648, 'Grandate', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22649, 'Lurago dErba', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22650, 'Mozzate', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22651, 'Novedrate', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22652, 'Orsenigo', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22653, 'Turate', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22654, 'Uggiate', 1827, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22655, 'Corso del Tirreno', 1828, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22656, 'Mangone', 1828, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22657, 'Casalbuttano', 1829, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22658, 'Casalmaggiore', 1829, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22659, 'Castelverde', 1829, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22660, 'Madignano', 1829, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22661, 'Pieve San Giacomo', 1829, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22662, 'Bandito', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22663, 'Bra', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22664, 'Casalgrasso', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22665, 'Cossano Belbo', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22666, 'Magliano Alpi', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22667, 'Mondovi', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22668, 'Roddi', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22669, 'Santa Vittoria d\'Alba', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22670, 'Verduno', 1830, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22671, 'Alfonsine', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22672, 'Argelato', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22673, 'Argenta', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22674, 'Bagnacavallo', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22675, 'Bagnolo in Piano', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22676, 'Bellaria-Igea Marina', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22677, 'Bertinoro', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22678, 'Bologna', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22679, 'Bondeno', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22680, 'Budrio', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22681, 'Calderara di Reno', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22682, 'Carpi', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22683, 'Casalecchio di Reno', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22684, 'Casalgrande', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22685, 'Castel Bolognese', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22686, 'Castel Maggiore', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22687, 'Castel San Giovanni', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22688, 'Castel San Pietro Terme', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22689, 'Castelfranco Emilia', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22690, 'Castellarano', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22691, 'Castelnovo ne\' Monti', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22692, 'Castelnuovo Rangone', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22693, 'Castelvetro di Modena', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22694, 'Castenaso', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22695, 'Cattolica', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22696, 'Cavriago', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22697, 'Cento', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22698, 'Cervia', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22699, 'Cesena', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22700, 'Cesenatico', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22701, 'Codigoro', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22702, 'Collecchio', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22703, 'Comacchio', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22704, 'Concordia sulla Secchia', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22705, 'Conselice', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22706, 'Copparo', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22707, 'Coriano', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22708, 'Correggio', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22709, 'Crespellano', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22710, 'Crevalcore', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22711, 'Faenza', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22712, 'Ferrara', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22713, 'Fidenza', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22714, 'Finale Emilia', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22715, 'Fiorano Modenese', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22716, 'Fiorenzuola d\'Arda', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22717, 'Forli', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22718, 'Forlimpopoli', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22719, 'Formigine', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22720, 'Gambettola', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22721, 'Granarolo dell\'Emilia', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22722, 'Guastalla', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22723, 'Imola', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22724, 'Langhirano', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22725, 'Lugo', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22726, 'Luzzara', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22727, 'Maranello', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22728, 'Massa Lombarda', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22729, 'Medesano', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22730, 'Medicina', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22731, 'Meldola', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22732, 'Mirandola', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22733, 'Misano Adriatico', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22734, 'Modena', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22735, 'Molinella', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22736, 'Monte San Pietro', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22737, 'Montecchio Emilia', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22738, 'Montechiarugolo', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22739, 'Noceto', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22740, 'Nonantola', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22741, 'Novellara', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22742, 'Novi di Modena', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22743, 'Ozzano dell\'Emilia', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22744, 'Parma', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22745, 'Pavullo nel Frignano', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22746, 'Piacenza', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22747, 'Pianoro', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22748, 'Ponticino', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22749, 'Portomaggiore', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22750, 'Quattro Castella', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22751, 'Ravenna', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22752, 'Reggio nell\'Emilia', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22753, 'Reggiolo', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22754, 'Riccione', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22755, 'Rimini', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22756, 'Rottofreno', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22757, 'Rubiera', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22758, 'Russi', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22759, 'Salsomaggiore Terme', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22760, 'San Felice sul Panaro', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22761, 'San Giovanni in Persiceto', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22762, 'San Lazzaro di Savena', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22763, 'San Mauro Pascoli', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22764, 'San Pietro in Casale', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22765, 'Sant\'Ilario d\'Enza', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22766, 'Santarcangelo di Romagna', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22767, 'Sasso Marconi', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22768, 'Sassuolo', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22769, 'Savignano sul Panaro', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22770, 'Savignano sul Rubicone', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22771, 'Scandiano', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22772, 'Soliera', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22773, 'Sorbolo', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22774, 'Spilamberto', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22775, 'Verucchio', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22776, 'Vignola', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22777, 'Zola Predosa', 1831, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22778, 'Saint Agostino', 1832, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22779, 'Capalle', 1833, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22780, 'Firenze', 1833, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22781, 'Pelago', 1833, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22782, 'San Donnino', 1833, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22783, 'Scarperia', 1833, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22784, 'Scandicci', 1834, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22785, 'Sesto Fiorentino', 1834, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22786, 'Casalvieri', 1837, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22787, 'Frosinone', 1837, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22788, 'Sgurgola', 1837, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22789, 'Genoa', 1838, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22790, 'Moneglia', 1838, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22791, 'Romans d\'Isonzo', 1839, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22792, 'Savogna d\'Isonzo', 1839, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22793, 'Magliano de Marsi', 1840, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22794, 'Alatri', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22795, 'Albano Laziale', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22796, 'Anagni', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22797, 'Anguillara Sabazia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22798, 'Anzio', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22799, 'Aprilia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22800, 'Ardea', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22801, 'Ariccia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22802, 'Artena', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22803, 'Boville Ernica', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22804, 'Bracciano', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22805, 'Campagnano di Roma', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22806, 'Cassino', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22807, 'Cave', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22808, 'Ceccano', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22809, 'Ceprano', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22810, 'Cerveteri', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22811, 'Ciampino', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22812, 'Cisterna', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22813, 'Civita Castellana', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22814, 'Civitavecchia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22815, 'Colleferro', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22816, 'Cori', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22817, 'Fara in Sabina', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22818, 'Ferentino', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22819, 'Fiano Romano', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22820, 'Fiuggi', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22821, 'Fiumicino', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22822, 'Fondi', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22823, 'Fonte Nuova', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22824, 'Formello', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22825, 'Formia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22826, 'Frascati', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22827, 'Frosinone', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22828, 'Gaeta', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22829, 'Genzano di Roma', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22830, 'Grottaferrata', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22831, 'Guidonia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22832, 'Isola del Liri', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22833, 'Itri', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22834, 'Ladispoli', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22835, 'Lanuvio', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22836, 'Lariano', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22837, 'Latina', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22838, 'Marino', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22839, 'Mentana', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22840, 'Minturno', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22841, 'Monte San Giovanni Campano', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22842, 'Montefiascone', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22843, 'Monterotondo', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22844, 'Nettuno', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22845, 'Palestrina', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22846, 'Palombara Sabina', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22847, 'Pomezia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22848, 'Pontecorvo', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22849, 'Pontinia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22850, 'Priverno', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22851, 'Rieti', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22852, 'Rocca Priora', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22853, 'Rocca di Papa', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22854, 'Roma', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22855, 'Rome', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22856, 'Sabaudia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22857, 'San Cesareo', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22858, 'Santa Marinella', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22859, 'Segni', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22860, 'Sezze', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22861, 'Sora', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22862, 'Soriano nel Cimino', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22863, 'Subiaco', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22864, 'Tarquinia', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22865, 'Terracina', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22866, 'Tivoli', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22867, 'Valmontone', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22868, 'Velletri', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22869, 'Veroli', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22870, 'Vetralla', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22871, 'Viterbo', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22872, 'Zagarolo', 1841, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22873, 'Acquarica del Capo', 1842, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22874, 'Airuno', 1843, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22875, 'Bosisio Parini', 1843, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22876, 'Lecco', 1843, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22877, 'Margno', 1843, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22878, 'Osnago', 1843, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22879, 'Sirone', 1843, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22886, 'Alassio', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22887, 'Albenga', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22888, 'Albisola Superiore', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22889, 'Arcola', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22890, 'Arenzano', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22891, 'Bordighera', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22892, 'Borgonuovo', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22893, 'Cairo Montenotte', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22894, 'Chiavari', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22895, 'Cogoleto', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22896, 'Finale Ligure', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22897, 'Genova', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22898, 'Imperia', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22899, 'La Spezia', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22900, 'Lavagna', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22901, 'Lerici', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22902, 'Loano', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22903, 'Ortonovo', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22904, 'Pietra Ligure', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22905, 'Rapallo', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22906, 'Recco', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22907, 'San Remo', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22908, 'Santa Margherita Ligure', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22909, 'Santo Stefano di Magra', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22910, 'Sarzana', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22911, 'Savona', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22912, 'Sestri Levante', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22913, 'Taggia', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22914, 'Varazze', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22915, 'Ventimiglia', 1845, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22916, 'Somaglia', 1846, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22917, 'Abbiategrasso', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22918, 'Agrate Brianza', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22919, 'Albiate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22920, 'Albino', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22921, 'Albizzate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22922, 'Alzano Lombardo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22923, 'Arcisate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22924, 'Arconate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22925, 'Arcore', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22926, 'Arese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22927, 'Arluno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22928, 'Asola', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22929, 'Bagnolo Mella', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22930, 'Ballabio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22931, 'Bareggio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22932, 'Basiglio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22933, 'Bedizzole', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22934, 'Bergamo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22935, 'Bernareggio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22936, 'Besana in Brianza', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22937, 'Besozzo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22938, 'Biassono', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22939, 'Bienate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22940, 'Bollate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22941, 'Botticino', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22942, 'Bovisio-Masciago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22943, 'Brembilla', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22944, 'Brescia', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22945, 'Bresso', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22946, 'Broni', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22947, 'Brugherio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22948, 'Buccinasco', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22949, 'Bussero', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22950, 'Busto Arsizio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22951, 'Busto Garolfo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22952, 'Cairate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22953, 'Calcinato', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22954, 'Calolziocorte', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22955, 'Calusco d\'Adda', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22956, 'Canegrate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22957, 'Cantu', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22958, 'Capriolo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22959, 'Carate Brianza', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22960, 'Caravaggio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22961, 'Cardano al Campo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22962, 'Caronno Pertusella', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22963, 'Carpenedolo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22964, 'Carugate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22965, 'Carvico', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22966, 'Casalmaggiore', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22967, 'Casalpusterlengo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22968, 'Casatenovo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22969, 'Casazza', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22970, 'Casnigo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22971, 'Cassano Magnago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22972, 'Cassano d\'Adda', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22973, 'Cassina de\' Pecchi', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22974, 'Castano Primo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22975, 'Castel Goffredo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22976, 'Castel Mella', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22977, 'Castellanza', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22978, 'Castelleone', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22979, 'Castelli Calepio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22980, 'Castenedolo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22981, 'Castiglione delle Stiviere', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22982, 'Cazzago San Martino', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22983, 'Cene', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22984, 'Cermenate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22985, 'Cernusco sul Naviglio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22986, 'Cerro Maggiore', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22987, 'Cesano Boscone', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22988, 'Cesano Maderno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22989, 'Cesate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22990, 'Chiari', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22991, 'Cilavegna', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22992, 'Cinisello Balsamo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22993, 'Cislago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22994, 'Clusone', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22995, 'Codogno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22996, 'Cologno Monzese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22997, 'Cologno al Serio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22998, 'Como', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(22999, 'Concesio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23000, 'Concorezzo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23001, 'Corbetta', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23002, 'Cormano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23003, 'Cornaredo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23004, 'Cornate d\'Adda', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23005, 'Corsico', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23006, 'Corte dei Cortesi', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23007, 'Costa Volpino', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23008, 'Crema', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23009, 'Cremona', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23010, 'Crocetta', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23011, 'Curtatone', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23012, 'Cusano Milanino', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23013, 'Dalmine', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23014, 'Darfo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23015, 'Desenzano del Garda', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23016, 'Desio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23017, 'Erba', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23018, 'Fagnano Olona', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23019, 'Fino Mornasco', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23020, 'Gaggiano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23021, 'Galbiate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23022, 'Gallarate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23023, 'Gambolo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23024, 'Garbagnate Milanese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23025, 'Gardone Val Trompia', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23026, 'Garlasco', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23027, 'Gavardo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23028, 'Gavirate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23029, 'Gerenzano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23030, 'Ghedi', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23031, 'Giussano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23032, 'Goito', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23033, 'Gonzaga', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23034, 'Gorgonzola', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23035, 'Gussago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23036, 'Gussola', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23037, 'Induno Olona', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23038, 'Inveruno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23039, 'Inzago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23040, 'Iseo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23041, 'Isola Dovarese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23042, 'Lacchiarella', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23043, 'Lainate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23044, 'Laveno-Mombello', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23045, 'Lecco', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23046, 'Leffe', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23047, 'Legnano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23048, 'Leno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23049, 'Lentate sul Seveso', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23050, 'Limbiate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23051, 'Lissone', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23052, 'Locate di Triulzi', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23053, 'Lodi', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23054, 'Lomazzo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23055, 'Lonate Pozzolo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23056, 'Lonato', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23057, 'Luino', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23058, 'Lumezzane', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23059, 'Lurate Caccivio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23060, 'Magenta', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23061, 'Malnate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23062, 'Mandello del Lario', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23063, 'Manerbio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23064, 'Mantova', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23065, 'Mariano Comense', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23066, 'Martinengo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23067, 'Mazzano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23068, 'Meda', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23069, 'Mediglia', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23070, 'Melegnano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23071, 'Melzo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23072, 'Merate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23073, 'Milano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23074, 'Molteno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23075, 'Montichiari', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23076, 'Monza', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23077, 'Morbegno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23078, 'Mornago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23079, 'Mortara', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23080, 'Muggio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23081, 'Nave', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23082, 'Nembro', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23083, 'Nerviano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23084, 'Nova Milanese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23085, 'Novate Milanese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23086, 'Olgiate Comasco', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23087, 'Olgiate Olona', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23088, 'Opera', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23089, 'Orzinuovi', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23090, 'Osio Sotto', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23091, 'Ospitaletto', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23092, 'Paderno Dugnano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23093, 'Palazzolo sull\'Oglio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23094, 'Pandino', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23095, 'Parabiago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23096, 'Paullo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23097, 'Pavia', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23098, 'Pero', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23099, 'Peschiera Borromeo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23100, 'Pessano con Bornago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23101, 'Pieve Emanuele', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23102, 'Pioltello', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23103, 'Ponte Nossa', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23104, 'Ponte San Pietro', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23105, 'Porto Mantovano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23106, 'Pozzolengo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23107, 'Rescaldina', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23108, 'Rezzato', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23109, 'Rho', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23110, 'Rivarolo Mantovano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23111, 'Rodano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23112, 'Romano di Lombardia', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23113, 'Rovato', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23114, 'Rozzano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23115, 'Saletto', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23116, 'Salo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23117, 'Samarate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23118, 'San Donato Milanese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23119, 'San Giuliano Milanese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23120, 'Sant\'Angelo Lodigiano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23121, 'Sarezzo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23122, 'Saronno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23123, 'Scanzorosciate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23124, 'Sedriano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23125, 'Segrate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23126, 'Senago', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23127, 'Seregno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23128, 'Seriate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23129, 'Sesto Calende', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23130, 'Sesto San Giovanni', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23131, 'Settimo Milanese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23132, 'Seveso', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23133, 'Sirmione', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23134, 'Solaro', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23135, 'Somma Lombardo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23136, 'Sondrio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23137, 'Soresina', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23138, 'Sorisole', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23139, 'Stezzano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23140, 'Stradella', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23141, 'Suzzara', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23142, 'Tirano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23143, 'Tornata', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23144, 'Tradate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23145, 'Travagliato', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23146, 'Treviglio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23147, 'Treviolo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23148, 'Trezzano sul Naviglio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23149, 'Trezzo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23150, 'Tromello', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23151, 'Uboldo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23152, 'Urgnano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23153, 'Usmate Velate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23154, 'Valmadrera', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23155, 'Varedo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23156, 'Varese', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23157, 'Verano Brianza', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23158, 'Vergiate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23159, 'Viadana', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23160, 'Vigevano', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23161, 'Vignate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23162, 'Villa Carcina', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23163, 'Villa Guardia', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23164, 'Villasanta', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23165, 'Vimercate', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23166, 'Vimodrone', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23167, 'Virgilio', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23168, 'Voghera', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23169, 'Zibido San Giacomo', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23170, 'Zogno', 1847, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23171, 'Barasso', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23172, 'Bergamo', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23173, 'Bolladello', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(23174, 'Capergnanica', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23175, 'Costa Masnaga', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23176, 'Medolago', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23177, 'Nibionno', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23178, 'Rodano', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23179, 'Sordio', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23180, 'Torre d\'Isola', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23181, 'Varese', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23182, 'Villongo', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23183, 'milan', 1848, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23184, 'Colmurano', 1849, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23185, 'Monte San Giusto', 1849, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23186, 'Castel', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23187, 'Gazoldo', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23188, 'Marmirolo', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23189, 'Monzambano', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23190, 'Ostiglia', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23191, 'Pegognaga', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23192, 'Poggio Rusco', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23193, 'Quistello', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23194, 'Roverbella', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23195, 'Suzzara', 1850, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23196, 'Ancona', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23197, 'Ascoli Piceno', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23198, 'Barchi', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23199, 'Cagli', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23200, 'Castelfidardo', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23201, 'Chiaravalle', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23202, 'Cingoli', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23203, 'Civitanova Marche', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23204, 'Corridonia', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23205, 'Fabriano', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23206, 'Falconara Marittima', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23207, 'Fano', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23208, 'Fermo', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23209, 'Filottrano', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23210, 'Folignano', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23211, 'Fossombrone', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23212, 'Grottammare', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23213, 'Jesi', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23214, 'Loreto', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23215, 'Macerata', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23216, 'Matelica', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23217, 'Mondavio', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23218, 'Mondolfo', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23219, 'Montappone', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23220, 'Montecosaro', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23221, 'Montegranaro', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23222, 'Montemarciano', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23223, 'Monteprandone', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23224, 'Morrovalle', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23225, 'Osimo', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23226, 'Pesaro', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23227, 'Polverigi', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23228, 'Porto Recanati', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23229, 'Porto San Giorgio', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23230, 'Porto Sant\'Elpidio', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23231, 'Potenza Picena', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23232, 'Recanati', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23233, 'San Benedetto del Tronto', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23234, 'San Severino Marche', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23235, 'Sant\'Elpidio a Mare', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23236, 'Senigallia', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23237, 'Tolentino', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23238, 'Treia', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23239, 'Urbino', 1851, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23240, 'Cumiana', 1852, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23241, 'Giammoro', 1852, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23242, 'Assago', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23243, 'Besana in Brianza', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23244, 'Biassono', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23245, 'Burago Molgora', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23246, 'Cernusco Sul Naviglio', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23247, 'Cologno Monzese', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23248, 'Concorezzo', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23249, 'Cornaredo', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23250, 'Cuggiono', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23251, 'Cusago', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23252, 'Foro Buonaparte', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23253, 'Gessate', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23254, 'Gorgonzola', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23255, 'Liscate', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23256, 'Magenta', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23257, 'Milan', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23258, 'Noviglio', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23259, 'Passirana Di Rho', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23260, 'Pregnana Milane', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23261, 'San Donato Milanese', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23262, 'Seregno', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23263, 'Trezzo Sull\'adda', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23264, 'Tribiano', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23265, 'Vaprio d\'Adda', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23266, 'Vermezzo', 1853, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23267, 'Bomporto', 1854, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23268, 'Campogalliano', 1854, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23269, 'Cavezzo', 1854, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23270, 'Medolla', 1854, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23271, 'Nonantola', 1854, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23272, 'San Possidonio', 1854, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23273, 'Sassuolo', 1854, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23274, 'Spilamberto', 1854, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23275, 'Bojano', 1855, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23276, 'Campobasso', 1855, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23277, 'Cantalupo', 1855, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23278, 'Isernia', 1855, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23279, 'Termoli', 1855, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23280, 'Venafro', 1855, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23281, 'Montenegro', 1857, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23282, 'Forio d\'Ischia', 1859, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23283, 'Bogogno', 1860, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23284, 'Invorio', 1860, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23285, 'Pombia', 1860, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23286, 'Bagnoli di Sopra', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23287, 'Bovolenta', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23288, 'Casale Di Scodosia', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23289, 'Cervarese Santa Croce', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23290, 'Fontaniva', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23291, 'Galliera Veneta', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23292, 'Legnaro', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23293, 'Limena', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23294, 'Loreggia', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23295, 'Massanzago', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23296, 'Onara', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23297, 'Ponso', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23298, 'Portogallo', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23299, 'Tribano', 1861, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23300, 'Baganzola', 1862, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23301, 'Busseto', 1862, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23302, 'Casale Di Mezzani', 1862, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23303, 'Fontevivo', 1862, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23304, 'Solignano', 1862, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23305, 'Torrile', 1862, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23306, 'Codevilla', 1863, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23307, 'Marcignago', 1863, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23308, 'Pavia', 1863, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23309, 'Siziano', 1863, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23310, 'Pianello', 1864, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23311, 'Ponte Felcino', 1864, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23312, 'Zanica', 1864, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23313, 'Gradara', 1865, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23314, 'Monte Porzio', 1865, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23315, 'Pergola', 1865, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23316, 'Tavullia', 1865, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23317, 'Alseno', 1866, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23318, 'Gossolengo', 1866, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23319, 'Vigolzone', 1866, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23320, 'Armeno', 1867, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23321, 'Bergamasco', 1867, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23322, 'Caselette', 1867, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23323, 'Rosta', 1867, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23324, 'San Damiano', 1867, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23325, 'Spinetta Marengo', 1867, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23326, 'Acqui Terme', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23327, 'Alba', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23328, 'Alessandria', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23329, 'Alpignano', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23330, 'Andezeno', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23331, 'Andonno', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23332, 'Arona', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23333, 'Asti', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23334, 'Avigliana', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23335, 'Baveno', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23336, 'Beinasco', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23337, 'Bellinzago Novarese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23338, 'Biella', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23339, 'Borgaro Torinese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23340, 'Borgo San Dalmazzo', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23341, 'Borgomanero', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23342, 'Borgosesia', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23343, 'Boves', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23344, 'Bra', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23345, 'Busca', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23346, 'Cameri', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23347, 'Canelli', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23348, 'Carignano', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23349, 'Carmagnola', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23350, 'Casale Monferrato', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23351, 'Caselle Torinese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23352, 'Castellamonte', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23353, 'Castelletto sopra Ticino', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23354, 'Chieri', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23355, 'Chivasso', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23356, 'Cirie', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23357, 'Collegno', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23358, 'Cossato', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23359, 'Cuneo', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23360, 'Cuorgne', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23361, 'Domodossola', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23362, 'Druento', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23363, 'Fossano', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23364, 'Galliate', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23365, 'Gassino Torinese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23366, 'Gattinara', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23367, 'Giaveno', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23368, 'Grugliasco', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23369, 'Ivrea', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23370, 'Leini', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23371, 'Lusigliè', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23372, 'Marano Ticino', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23373, 'Mergozzo', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23374, 'Moncalieri', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23375, 'Mondovi', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23376, 'Mongrando', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23377, 'Nichelino', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23378, 'Nizza Monferrato', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23379, 'Novara', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23380, 'Novi Ligure', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23381, 'Oleggio', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23382, 'Omegna', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23383, 'Orbassano', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23384, 'Ovada', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23385, 'Pianezza', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23386, 'Pinerolo', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23387, 'Pino Torinese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23388, 'Piossasco', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23389, 'Poirino', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23390, 'Racconigi', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23391, 'Rivalta di Torino', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23392, 'Rivarolo Canavese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23393, 'Rivoli', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23394, 'Saluzzo', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23395, 'San Maurizio', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23396, 'San Mauro Torinese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23397, 'Sandigliano', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23398, 'Santena', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23399, 'Santhia', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23400, 'Savigliano', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23401, 'Settimo Torinese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23402, 'Torino', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23403, 'Tortona', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23404, 'Trecate', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23405, 'Trofarello', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23406, 'Valduggia', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23407, 'Valenza', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23408, 'Venaria Reale', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23409, 'Verbania', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23410, 'Vercelli', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23411, 'Vigliano Biellese', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23412, 'Vinovo', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23413, 'Volpiano', 1868, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23414, 'Perignano', 1869, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23415, 'Ponte a Egola', 1869, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23416, 'San Quirino', 1870, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23417, 'Latronico', 1871, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23418, 'Acquaviva delle Fonti', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23419, 'Adelfia', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23420, 'Alberobello', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23421, 'Altamura', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23422, 'Andria', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23423, 'Apricena', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23424, 'Aradeo', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23425, 'Bari', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23426, 'Barletta', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23427, 'Bisceglie', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23428, 'Bitetto', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23429, 'Bitonto', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23430, 'Bitritto', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23431, 'Brindisi', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23432, 'Campi Salentina', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23433, 'Canosa di Puglia', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23434, 'Capurso', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23435, 'Carmiano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23436, 'Carovigno', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23437, 'Casamassima', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23438, 'Casarano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23439, 'Cassano delle Murge', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23440, 'Castellana Grotte', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23441, 'Castellaneta', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23442, 'Cavallino', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23443, 'Ceglie Messapica', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23444, 'Cerignola', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23445, 'Cisternino', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23446, 'Conversano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23447, 'Copertino', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23448, 'Corato', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23449, 'Crispiano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23450, 'Cutrofiano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23451, 'Erchie', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23452, 'Fasano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23453, 'Foggia', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23454, 'Francavilla Fontana', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23455, 'Galatina', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23456, 'Galatone', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23457, 'Gallipoli', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23458, 'Ginosa', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23459, 'Gioia del Colle', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23460, 'Giovinazzo', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23461, 'Gravina in Puglia', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23462, 'Grottaglie', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23463, 'Grumo Appula', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23464, 'Laterza', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23465, 'Latiano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23466, 'Lecce', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23467, 'Leverano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23468, 'Lizzanello', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23469, 'Lizzano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23470, 'Locorotondo', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23471, 'Lucera', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23472, 'Maglie', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23473, 'Manduria', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23474, 'Manfredonia', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23475, 'Margherita di Savoia', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23476, 'Martano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23477, 'Martina Franca', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23478, 'Massafra', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23479, 'Matino', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23480, 'Melendugno', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23481, 'Mesagne', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23482, 'Minervino Murge', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23483, 'Modugno', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23484, 'Mola di Bari', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23485, 'Molfetta', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23486, 'Monopoli', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23487, 'Monte Sant\'Angelo', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23488, 'Monteroni di Lecce', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23489, 'Mottola', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23490, 'Nardo', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23491, 'Neviano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23492, 'Noci', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23493, 'Noicattaro', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23494, 'Novoli', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23495, 'Oria', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23496, 'Orta Nova', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23497, 'Ostuni', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23498, 'Palagiano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23499, 'Palo del Colle', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23500, 'Parabita', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23501, 'Polignano a Mare', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23502, 'Pulsano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23503, 'Putignano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23505, 'Racale', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23506, 'Ruffano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23507, 'Rutigliano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23508, 'Ruvo di Puglia', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23509, 'Salice Salentino', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23510, 'San Ferdinando di Puglia', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23511, 'San Giorgio Ionico', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23512, 'San Giovanni Rotondo', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23513, 'San Marco in Lamis', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23514, 'San Marzano di San Giuseppe', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23515, 'San Nicandro Garganico', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23516, 'San Pancrazio Salentino', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23517, 'San Pietro Vernotico', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23518, 'San Severo', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23519, 'San Vito dei Normanni', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23520, 'Sannicandro di Bari', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23521, 'Santeramo in Colle', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23522, 'Sava', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23523, 'Squinzano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23524, 'Statte', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23525, 'Surbo', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23526, 'Taranto', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23527, 'Taurisano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23528, 'Taviano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23529, 'Terlizzi', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23530, 'Toritto', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23531, 'Torre Santa Susanna', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23532, 'Torremaggiore', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23533, 'Trani', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23534, 'Trepuzzi', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23535, 'Tricase', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23536, 'Triggiano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23537, 'Trinitapoli', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23538, 'Turi', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23539, 'Ugento', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23540, 'Valenzano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23541, 'Veglie', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23542, 'Vico del Gargano', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23543, 'Vieste', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23544, 'Villa Castelli', 1872, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23545, 'San Giovanni in Marignano', 1874, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23546, 'Torriana', 1874, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23547, 'Anzio', 1875, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23548, 'Atena Lucana', 1876, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23549, 'Castel San Giorgio', 1876, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23550, 'Fisciano', 1876, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23551, 'Giungano', 1876, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23552, 'Omignano', 1876, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23553, 'Alghero', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23554, 'Arzachena', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23555, 'Assemini', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23556, 'Cabras', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23557, 'Cagliari', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23558, 'Capoterra', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23559, 'Carbonia', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23560, 'Dorgali', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23561, 'Guspini', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23562, 'Iglesias', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23563, 'Ittiri', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23564, 'La Maddalena', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23565, 'Macomer', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23566, 'Monserrato', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23567, 'Nuoro', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23568, 'Olbia', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23569, 'Oristano', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23570, 'Ozieri', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23571, 'Porto Torres', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23572, 'Quartu Sant\'Elena', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23573, 'Quartucciu', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23574, 'San Gavino Monreale', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23575, 'Sanluri', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23576, 'Sant\'Antioco', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23577, 'Sassari', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23578, 'Selargius', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23579, 'Serramanna', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23580, 'Sestu', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23581, 'Siniscola', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23582, 'Sinnai', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23583, 'Sorso', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23584, 'Tempio Pausania', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23585, 'Terralba', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23586, 'Tortoli', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23587, 'Villacidro', 1877, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23588, 'Nule', 1878, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23589, 'Altare', 1879, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23590, 'Aci Castello', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23591, 'Aci Catena', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23592, 'Aci Sant\'Antonio', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23593, 'Acireale', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23594, 'Adrano', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23595, 'Agira', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23596, 'Agrigento', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23597, 'Alcamo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23598, 'Altofonte', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23599, 'Aragona', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23600, 'Augusta', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23601, 'Avola', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23602, 'Bagheria', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23603, 'Barcellona', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23604, 'Barrafranca', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23605, 'Belmonte Mezzagno', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23606, 'Belpasso', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23607, 'Biancavilla', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23608, 'Bronte', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23609, 'Caccamo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23610, 'Caltagirone', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23611, 'Caltanissetta', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23612, 'Campobello di Licata', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23613, 'Campobello di Mazara', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23614, 'Canicatti', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23615, 'Capaci', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23616, 'Capo d\'Orlando', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23617, 'Carini', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23618, 'Carlentini', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23619, 'Castelbuono', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23620, 'Casteldaccia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23621, 'Castellammare del Golfo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23622, 'Casteltermini', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23623, 'Castelvetrano', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23624, 'Catania', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23625, 'Catenanuova', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23626, 'Cefalu', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23627, 'Chiaramonte Gulfi', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23628, 'Cinisi', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23629, 'Comiso', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23630, 'Corleone', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23631, 'Enna', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23632, 'Erice', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23633, 'Favara', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23634, 'Ficarazzi', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23635, 'Fiumefreddo di Sicilia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23636, 'Floridia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23637, 'Francofonte', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23638, 'Gela', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23639, 'Giardini-Naxos', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23640, 'Giarre', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23641, 'Grammichele', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23642, 'Gravina di Catania', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23643, 'Ispica', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23644, 'Lentini', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23645, 'Leonforte', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23646, 'Licata', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23647, 'Lipari', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23648, 'Marsala', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23649, 'Mascali', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23650, 'Mascalucia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23651, 'Mazara del Vallo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23652, 'Mazzarino', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23653, 'Melilli', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23654, 'Menfi', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23655, 'Messina', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23656, 'Milazzo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23657, 'Militello in Val di Catania', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23658, 'Misilmeri', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23659, 'Misterbianco', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23660, 'Modica', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23661, 'Monreale', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23662, 'Motta Sant\'Anastasia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23663, 'Mussomeli', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23664, 'Naro', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23665, 'Nicosia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23666, 'Niscemi', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23667, 'Noto', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23668, 'Paceco', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23669, 'Pachino', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23670, 'Palagonia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23671, 'Palazzolo Acreide', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23672, 'Palermo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23673, 'Palma di Montechiaro', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23674, 'Partanna', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23675, 'Partinico', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23676, 'Paterno', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23677, 'Patti', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23678, 'Pedara', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23679, 'Piazza Armerina', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23680, 'Porto Empedocle', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23681, 'Pozzallo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23682, 'Priolo Gargallo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23683, 'Racalmuto', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23684, 'Raffadali', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23685, 'Ragusa', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23686, 'Ramacca', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23687, 'Randazzo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23688, 'Ravanusa', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23689, 'Ribera', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23690, 'Riesi', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23691, 'Riposto', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23692, 'Rosolini', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23693, 'Salemi', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23694, 'San Cataldo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23695, 'San Giovanni Gemini', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23696, 'San Giovanni la Punta', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23697, 'San Giuseppe Jato', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23698, 'San Gregorio di Catania', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23699, 'Sant\'Agata di Militello', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23700, 'Sant\'Agata li Battiati', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23701, 'Santa Croce Camerina', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23702, 'Santa Flavia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23703, 'Santa Teresa di Riva', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23704, 'Sciacca', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23705, 'Scicli', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23706, 'Scordia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23707, 'Siracusa', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23708, 'Sortino', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23709, 'Taormina', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23710, 'Termini Imerese', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23711, 'Terrasini', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23712, 'Trabia', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23713, 'Trapani', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23714, 'Trecastagni', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23715, 'Tremestieri Etneo', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23716, 'Troina', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23717, 'Valderice', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23718, 'Valguarnera Caropepe', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23719, 'Villabate', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23720, 'Villafranca Tirrena', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23721, 'Vittoria', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23722, 'Zafferana Etnea', 1880, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23723, 'Monteriggioni', 1881, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23724, 'Monteroni d Arbia', 1881, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23725, 'Delebio', 1882, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23726, 'Talamona', 1882, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23727, 'Faggiano', 1884, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23728, 'Riva del Garda', 1884, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23729, 'Castilenti', 1885, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23730, 'Controguerra', 1885, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23731, 'Bruino', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23732, 'Busano', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23733, 'Buttigliera Alta', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23734, 'Cavour', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23735, 'Chieri', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23736, 'Colleretto Giacosa', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23737, 'Cuceglio', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23738, 'Giaveno', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23739, 'Mazze', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23740, 'Mercenasco', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23741, 'Piobesi', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(23742, 'Rivoli', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23743, 'Robassomero', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23744, 'Scarmagno', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23745, 'Strambino', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23746, 'Turin', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23747, 'Villar Perosa', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23748, 'Volpiano', 1886, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23749, 'Agliana', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23750, 'Altopascio', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23751, 'Anghiari', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23752, 'Arezzo', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23753, 'Aulla', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23754, 'Bagno a Ripoli', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23755, 'Barberino di Mugello', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23756, 'Barga', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23757, 'Bibbiena', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23758, 'Borgo San Lorenzo', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23759, 'Bucine', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23760, 'Buggiano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23761, 'Calcinaia', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23762, 'Calenzano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23763, 'Camaiore', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23764, 'Campi Bisenzio', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23765, 'Campiglia Marittima', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23766, 'Capannori', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23767, 'Cappelle', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23768, 'Capraia', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23769, 'Carmignano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23770, 'Carrara', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23771, 'Cascina', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23772, 'Castagneto Carducci', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23773, 'Castelfiorentino', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23774, 'Castelfranco di Sotto', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23775, 'Castiglion Fiorentino', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23776, 'Cecina', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23777, 'Cerreto Guidi', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23778, 'Certaldo', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23779, 'Chiesina Uzzanese', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23780, 'Chiusi', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23781, 'Civitella in Val di Chiana', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23782, 'Colle di Val d\'Elsa', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23783, 'Collesalvetti', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23784, 'Cortona', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23785, 'Empoli', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23786, 'Fiesole', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23787, 'Figline Valdarno', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23788, 'Firenze', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23789, 'Fivizzano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23790, 'Florence', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23791, 'Foiano della Chiana', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23792, 'Follonica', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23793, 'Forte dei Marmi', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23794, 'Fucecchio', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23795, 'Gavorrano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23796, 'Greve in Chianti', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23797, 'Grosseto', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23798, 'Impruneta', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23799, 'Lari', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23800, 'Lastra a Signa', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23801, 'Livorno', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23802, 'Lucca', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23803, 'Massa', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23804, 'Massa Marittima', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23805, 'Massarosa', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23806, 'Monsummano Terme', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23807, 'Montale', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23808, 'Monte Argentario', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23809, 'Monte San Savino', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23810, 'Montecatini-Terme', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23811, 'Montelupo Fiorentino', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23812, 'Montemurlo', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23813, 'Montepulciano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23814, 'Montespertoli', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23815, 'Montevarchi', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23816, 'Montignoso', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23817, 'Montopoli in Val d\'Arno', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23818, 'Orbetello', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23819, 'Pescia', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23820, 'Pietrasanta', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23821, 'Pieve a Nievole', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23822, 'Piombino', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23823, 'Pisa', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23824, 'Pistoia', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23825, 'Poggibonsi', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23826, 'Poggio a Caiano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23827, 'Ponsacco', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23828, 'Pontassieve', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23829, 'Pontedera', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23830, 'Ponticino', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23831, 'Pontremoli', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23832, 'Portoferraio', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23833, 'Prato', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23834, 'Quarrata', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23835, 'Reggello', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23836, 'Rignano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23837, 'Roccastrada', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23838, 'Rosignano Marittimo', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23839, 'San Casciano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23840, 'San Giovanni Valdarno', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23841, 'San Giuliano Terme', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23842, 'San Miniato', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23843, 'Sansepolcro', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23844, 'Santa Croce sull\'Arno', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23845, 'Santa Maria a Monte', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23846, 'Scandicci', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23847, 'Seravezza', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23848, 'Serravalle Pistoiese', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23849, 'Sesto Fiorentino', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23850, 'Siena', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23851, 'Signa', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23852, 'Sinalunga', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23853, 'Sovicille', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23854, 'Terranuova Bracciolini', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23855, 'Vaiano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23856, 'Varna', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23857, 'Vecchiano', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23858, 'Viareggio', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23859, 'Vinci', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23860, 'Volterra', 1887, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23861, 'Guarrato', 1888, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23862, ' San Giorgio', 1890, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23863, 'Dro', 1890, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23864, 'Asolo', 1891, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23865, 'Conegliano', 1891, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23866, 'Cordignano', 1891, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23867, 'Gaiarine', 1891, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23868, 'Ormelle', 1891, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23869, 'Possagno', 1891, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23870, 'Revine Lago', 1891, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23871, 'Basiliano', 1892, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23872, 'Bicinicco', 1892, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23873, 'Buttrio', 1892, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23874, 'Coseano', 1892, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23875, 'Pradamano', 1892, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23876, 'San Giovanni al Natisone', 1892, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23877, 'Torreano', 1892, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23878, 'Amelia', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23879, 'Assisi', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23880, 'Bastia Umbra', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23881, 'Castiglione del Lago', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23882, 'Citta di Castello', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23883, 'Corciano', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23884, 'Deruta', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23885, 'Foligno', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23886, 'Gualdo Tadino', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23887, 'Gubbio', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23888, 'Magione', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23889, 'Marsciano', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23890, 'Narni', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23891, 'Orvieto', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23892, 'Perugia', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23893, 'San Giustino', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23894, 'Spello', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23895, 'Spoleto', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23896, 'Terni', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23897, 'Todi', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23898, 'Umbertide', 1893, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23899, 'Arsago Seprio', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23900, 'Busto Arsizio', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23901, 'Cassano Magnago', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23902, 'Gazzada', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23903, 'Oggiona Con Santo Stefano', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23904, 'Solbiate Arno', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23905, 'Solbiate Olona', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23906, 'Ternate', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23907, 'Venegono Inferiore', 1895, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23908, 'Abano Terme', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23909, 'Adria', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23910, 'Albignasego', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23911, 'Altavilla Vicentina', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23912, 'Arzignano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23913, 'Badia Polesine', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23914, 'Bassano del Grappa', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23915, 'Belfiore', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23916, 'Belluno', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23917, 'Borso del Grappa', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23918, 'Bovolone', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23919, 'Bussolengo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23920, 'Cadoneghe', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23921, 'Caldogno', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23922, 'Camisano Vicentino', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23923, 'Campodarsego', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23924, 'Campolongo Maggiore', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23925, 'Camponogara', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23926, 'Camposampiero', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23927, 'Caorle', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23928, 'Carbonera', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23929, 'Casale sul Sile', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23930, 'Casier', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23931, 'Cassola', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23932, 'Castel d\'Azzano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23933, 'Castelfranco Veneto', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23934, 'Castello di Godego', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23935, 'Castelnuovo del Garda', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23936, 'Cavallino-Treporti', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23937, 'Cavarzere', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23938, 'Cerea', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23939, 'Chiampo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23940, 'Chioggia', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23941, 'Cittadella', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23942, 'Colombano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23943, 'Concordia Sagittaria', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23944, 'Conegliano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23945, 'Conselve', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23946, 'Cornedo Vicentino', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23947, 'Creazzo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23948, 'Dolo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23949, 'Due Carrare', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23950, 'Dueville', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23951, 'Eraclea', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23952, 'Este', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23953, 'Feltre', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23954, 'Galzignano Terme', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23955, 'Grezzana', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23956, 'Iesolo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23957, 'Isola Vicentina', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23958, 'Isola della Scala', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23959, 'Jesolo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23960, 'Legnago', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23961, 'Lendinara', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23962, 'Lonigo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23963, 'Malo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23964, 'Marano Vicentino', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23965, 'Marcon', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23966, 'Marostica', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23967, 'Martellago', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23968, 'Mestrino', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23969, 'Mira', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23970, 'Mirano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23971, 'Mogliano Veneto', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23972, 'Monselice', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23973, 'Montagnana', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23974, 'Montebelluna', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23975, 'Montecchio Maggiore', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23976, 'Montegrotto Terme', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23977, 'Monticello Conte Otto', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23978, 'Motta di Livenza', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23979, 'Murano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23980, 'Musile di Piave', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23981, 'Mussolente', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23982, 'Negrar', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23983, 'Noale', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23984, 'Noventa Padovana', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23985, 'Noventa Vicentina', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23986, 'Occhiobello', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23987, 'Oderzo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23988, 'Ormelle', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23989, 'Padova', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23990, 'Padua', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23991, 'Paese', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23992, 'Pescantina', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23993, 'Peschiera del Garda', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23994, 'Pianiga', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23995, 'Piazzola sul Brenta', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23996, 'Pieve di Soligo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23997, 'Pievebelvicino', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23998, 'Piombino Dese', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(23999, 'Piove di Sacco', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24000, 'Ponte San Nicolo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24001, 'Ponzano Veneto', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24002, 'Porto Tolle', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24003, 'Porto Viro', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24004, 'Portogruaro', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24005, 'Preganziol', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24006, 'Quinto di Treviso', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24007, 'Riese Pio X', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24008, 'Romano dEzzelino', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24009, 'Roncade', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24010, 'Rosa', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24011, 'Rovigo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24012, 'Rubano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24013, 'Salzano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24014, 'San Biagio di Callalta', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24015, 'San Bonifacio', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24016, 'San Dona di Piave', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24017, 'San Giovanni Lupatoto', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24018, 'San Martino Buon Albergo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24019, 'San Martino di Lupari', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24020, 'San Michele al Tagliamento', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24021, 'San Pietro in Cariano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24022, 'San Vendemiano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24023, 'Sant\'Ambrogio', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24024, 'Santa Maria di Sala', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24025, 'Santo Stino di Livenza', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24026, 'Santorso', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24027, 'Saonara', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24028, 'Sarcedo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24029, 'Schio', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24030, 'Scorze', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24031, 'Sedico', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24032, 'Selvazzano Dentro', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24033, 'Silea', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24034, 'Sivizzo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24035, 'Sommacampagna', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24036, 'Sona', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24037, 'Spinea', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24038, 'Spresiano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24039, 'Susegana', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24040, 'Taglio di Po', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24041, 'Teolo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24042, 'Tezze sul Brenta', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24043, 'Thiene', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24044, 'Torri di Quartesolo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24045, 'Trebaseleghe', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24046, 'Trevignano', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24047, 'Treviso', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24048, 'Trissino', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24049, 'Valdagno', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24050, 'Valdobbiadene', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24051, 'Valeggio sul Mincio', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24052, 'Vedelago', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24053, 'Venezia', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24054, 'Venice', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24055, 'Verona', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24056, 'Vicenza', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24057, 'Vigodarzere', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24058, 'Vigonovo', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24059, 'Vigonza', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24060, 'Villafranca di Verona', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24061, 'Villorba', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24062, 'Vittorio Veneto', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24063, 'Volpago del Montello', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24064, 'Zane', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24065, 'Zero Branco', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24066, 'Zevio', 1896, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24067, 'Cona', 1897, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24068, 'Marghera', 1897, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24069, 'Oriago di Mira', 1897, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24070, 'Tessera', 1897, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24071, 'Piedimulera', 1898, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24072, 'Crescentino', 1899, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24073, 'Moncrivello', 1899, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24074, 'Rovasenda', 1899, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24075, 'Trino', 1899, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24076, ' Valeggio Sul Mincio', 1900, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24077, 'Cadidavid', 1900, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24078, 'Colognola ai Colli', 1900, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24079, 'Pastrengo', 1900, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24080, 'Valgatara', 1900, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24081, ' Montebello Vicentino', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24082, 'Alonte', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24083, 'Arcugnano', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24084, 'Arzignano', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24085, 'Barbarano Vicentino', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24086, 'Breganze', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24087, 'Brendola', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24088, 'Bressanvido', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24089, 'Carre', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24090, 'Castelgomberto', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24091, 'Costabissara', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24092, 'Grumolo delle Abbadesse', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24093, 'Piovene Rocchette', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24094, 'Povolaro', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24095, 'Rossano Veneto', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24096, 'San Pietro di Rosa', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24097, 'San Vito di Leguzzano', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24098, 'Sandrigo', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24099, 'Thiene', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24100, 'Torrebelvicino', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24101, 'Torri di Quartesolo', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24102, 'Villaverla', 1901, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24103, 'Nepi', 1902, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24104, 'May Pen', 1904, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24105, 'Lucea', 1905, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24106, 'Kingston', 1906, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24107, 'Mandeville', 1907, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24108, 'Port Antonio', 1908, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24109, 'Albert Town', 1916, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24110, 'Falmouth', 1916, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24111, 'Savanna la Mar', 1917, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24112, 'Agui', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24113, 'Anjo', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24114, 'Atsumi', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24115, 'Bisai', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24116, 'Chiryu', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24117, 'Chita', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24118, 'Fujioka', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24119, 'Fuso', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24120, 'Gamagori', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24121, 'Handa', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24122, 'Hekinan', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24123, 'Higashiura', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24124, 'Ichinomiya', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24125, 'Inazawa', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24126, 'Inuyama', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24127, 'Isshiki', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24128, 'Iwakura', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24129, 'Jimokuji', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24130, 'Kanie', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24131, 'Kariya', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24132, 'Kasugai', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24133, 'Kira', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24134, 'Kisogawa', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24135, 'Komaki', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24136, 'Konan', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24137, 'Kota', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24138, 'Kozakai', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24139, 'Mihama', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24140, 'Minamichita', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24141, 'Miwa', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24142, 'Miyoshi', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24143, 'Nagakute', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24144, 'Nagoya', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24145, 'Nishiharu', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24146, 'Nishio', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24147, 'Nisshin', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24148, 'Obu', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24149, 'Oharu', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24150, 'Okazaki', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24151, 'Owariashi', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24152, 'Saori', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24153, 'Saya', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24154, 'Seto', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24155, 'Shikatsu', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24156, 'Shinshiro', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24157, 'Shippo', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24158, 'Sobue', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24159, 'Tahara', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24160, 'Takahama', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24161, 'Taketoyo', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24162, 'Togo', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24163, 'Tokai', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24164, 'Tokoname', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24165, 'Toyoake', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24166, 'Toyohashi', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24167, 'Toyokawa', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24168, 'Toyota', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24169, 'Tsushima', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24170, 'Yatomi', 1918, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24171, 'Akita', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24172, 'Honjo', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24173, 'Kazuno', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24174, 'Noshiro', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24175, 'Odate', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24176, 'Oga', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24177, 'Omagari', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24178, 'Takanosu', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24179, 'Tenno', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24180, 'Ugo', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24181, 'Yokote', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24182, 'Yuzawa', 1919, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24183, 'Aomori', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24184, 'Goshogawara', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24185, 'Hachinohe', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24186, 'Hiraka', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24187, 'Hirosaki', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24188, 'Kizukuri', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24189, 'Kuroishi', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24190, 'Misawa', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24191, 'Mutsu', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24192, 'Namioka', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24193, 'Towada', 1920, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24194, 'Abiko', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24195, 'Asahi', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24196, 'Chiba', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24197, 'Choshi', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24198, 'Funabashi', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24199, 'Fussa', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24200, 'Futtsu', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24201, 'Ichihara', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24202, 'Ichikawa', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24203, 'Inzai', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24204, 'Kamagaya', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24205, 'Kamogawa', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24206, 'Kashiwa', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24207, 'Katsuura', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24208, 'Kimitsu', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24209, 'Kisarazu', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24210, 'Kujukuri', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24211, 'Matsudo', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24212, 'Mobara', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24213, 'Nagareyama', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24214, 'Narashino', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24215, 'Narita', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24216, 'Naruto', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24217, 'Noda', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24218, 'Oamishirasato', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24219, 'Ohara', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24220, 'Omigawa', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24221, 'Sakae', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24222, 'Sakura', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24223, 'Sambu', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24224, 'Sawara', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24225, 'Sekiyado', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24226, 'Shiroi', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24227, 'Shisui', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24228, 'Shonan', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24229, 'Sodegaura', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24230, 'Tateyama', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24231, 'Togane', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24232, 'Tomisato', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24233, 'Urayasu', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24234, 'Yachimata', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24235, 'Yachiyo', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24236, 'Yokaichiba', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24237, 'Yotsukaido', 1921, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24238, 'Hojo', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24239, 'Imabari', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24240, 'Iyo', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24241, 'Iyomishima', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24242, 'Kawanoe', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24243, 'Masaki', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24244, 'Matsuyama', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24245, 'Niihama', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24246, 'Ozu', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24247, 'Saijo', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24248, 'Shigenobu', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24249, 'Tobe', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24250, 'Toyo', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24251, 'Uwajima', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24252, 'Yawatahama', 1922, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24253, 'Fukui', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24254, 'Harue', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24255, 'Katsuyama', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24256, 'Maruoka', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24257, 'Mikuni', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24258, 'Obama', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24259, 'Ono', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24260, 'Sabae', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24261, 'Takefu', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24262, 'Tsuruga', 1923, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24263, 'Amagi', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24264, 'Buzen', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24265, 'Chikugo', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24266, 'Chikushino', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24267, 'Dazaifu', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24268, 'Fukuma', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24269, 'Fukuoka', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24270, 'Hirokawa', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24271, 'Honami', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24272, 'Iizuka', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24273, 'Inatsuki', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24274, 'Kanda', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24275, 'Kasuga', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24276, 'Kasuya', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24277, 'Kawasaki', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24278, 'Kitakyushu', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24279, 'Koga', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24280, 'Kurate', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24281, 'Kurume', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24282, 'Maebaru', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24283, 'Miyata', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24284, 'Mizumaki', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24285, 'Munakata', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24286, 'Nakagawa', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24287, 'Nakama', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24288, 'Nogata', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24289, 'Ogori', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24290, 'Okagaki', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24291, 'Okawa', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24292, 'Omuta', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24293, 'Onojo', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24294, 'Sasaguri', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24295, 'Setaka', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24296, 'Shime', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24297, 'Shingu', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24298, 'Sue', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24299, 'Tagawa', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24300, 'Tanushimaru', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24301, 'Umi', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24302, 'Yamada', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24303, 'Yame', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24304, 'Yanagawa', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24305, 'Yukuhashi', 1924, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24306, 'Aizubange', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24307, 'Aizuwakamatsu', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24308, 'Fukushima', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24309, 'Funehiki', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24310, 'Haramachi', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24311, 'Hobara', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(24312, 'Inawashiro', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24313, 'Ishikawa', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24314, 'Iwaki', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24315, 'Kawamata', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24316, 'Kitakata', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24317, 'Koriyama', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24318, 'Miharu', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24319, 'Motomiya', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24320, 'Namie', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24321, 'Nihommatsu', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24322, 'Shirakawa', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24323, 'Soma', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24324, 'Sukagawa', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24325, 'Yanagawa', 1925, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24326, 'Ena', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24327, 'Gifu', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24328, 'Ginan', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24329, 'Godo', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24330, 'Hashima', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24331, 'Hozumi', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24332, 'Ibigawa', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24333, 'Ikeda', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24334, 'Kakamigahara', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24335, 'Kani', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24336, 'Kasamatsu', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24337, 'Mino', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24338, 'Minokamo', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24339, 'Mitake', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24340, 'Mizunami', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24341, 'Nakatsugawa', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24342, 'Ogaki', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24343, 'Ono', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24344, 'Seki', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24345, 'Tajimi', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24346, 'Takayama', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24347, 'Tarui', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24348, 'Toki', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24349, 'Yoro', 1926, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24350, 'Annaka', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24351, 'Azuma', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24352, 'Fujimi', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24353, 'Fujioka', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24354, 'Gumma', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24355, 'Haruna', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24356, 'Isesaki', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24357, 'Kasakake', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24358, 'Kiryu', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24359, 'Maebashi', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24360, 'Nakanojo', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24361, 'Nitta', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24362, 'Numata', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24363, 'Oizumi', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24364, 'Omama', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24365, 'Ora', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24366, 'Ota', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24367, 'Sakai', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24368, 'Shibukawa', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24369, 'Takasaki', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24370, 'Tamamura', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24371, 'Tatebayashi', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24372, 'Tomioka', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24373, 'Yoshii', 1927, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24374, 'Fuchu', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24375, 'Fukuyama', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24376, 'Hatsukaichi', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24377, 'Higashihiroshima', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24378, 'Hiroshima', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24379, 'Innoshima', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24380, 'Kaita', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24381, 'Kannabe', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24382, 'Kumano', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24383, 'Kure', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24384, 'Kurose', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24385, 'Mihara', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24386, 'Miyoshi', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24387, 'Ono', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24388, 'Onomichi', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24389, 'Otake', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24390, 'Shinichi', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24391, 'Shobara', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24392, 'Takehara', 1928, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24393, 'Abashiri', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24394, 'Akabira', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24395, 'Asahikawa', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24396, 'Ashibetsu', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24397, 'Bibai', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24398, 'Bihoro', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24399, 'Chitose', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24400, 'Date', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24401, 'Ebetsu', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24402, 'Eniwa', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24403, 'Fukagawa', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24404, 'Furano', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24405, 'Hakodate', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24406, 'Hokkaido', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24407, 'Hyogo', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24408, 'Ishikari', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24409, 'Iwamizawa', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24410, 'Iwanai', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24411, 'Kamiiso', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24412, 'Kitahiroshima', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24413, 'Kitami', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24414, 'Kushiro', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24415, 'Makubetsu', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24416, 'Mikasa', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24417, 'Mombetsu', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24418, 'Muroran', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24419, 'Nakashibetsu', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24420, 'Nanae', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24421, 'Nayoro', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24422, 'Nemuro', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24423, 'Noboribetsu', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24424, 'Obihiro', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24425, 'Otaru', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24426, 'Otofuke', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24427, 'Rumoi', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24428, 'Sapporo', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24429, 'Shibetsu', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24430, 'Shiraoi', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24431, 'Shizunai', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24432, 'Sunagawa', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24433, 'Takikawa', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24434, 'Tobetsu', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24435, 'Tomakomai', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24436, 'Utashinai', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24437, 'Wakkanai', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24438, 'Yoichi', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24439, 'Yubari', 1929, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24440, 'Aioi', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24441, 'Akashi', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24442, 'Ako', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24443, 'Amagasaki', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24444, 'Ashiya', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24445, 'Fukusaki', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24446, 'Harima', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24447, 'Himeji', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24448, 'Inagawa', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24449, 'Inami', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24450, 'Itami', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24451, 'Kakogawa', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24452, 'Kasai', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24453, 'Kawanishi', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24454, 'Kobe', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24455, 'Kodera', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24456, 'Miki', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24457, 'Nandan', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24458, 'Nishinomiya', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24459, 'Nishiwaki', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24460, 'Ono', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24461, 'Sanda', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24462, 'Sasayama', 1930, 0.00, 0, '2021-04-06 01:13:47', '2021-04-06 01:13:47', NULL), -(24463, 'Sumoto', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24464, 'Taishi', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24465, 'Takarazuka', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24466, 'Takasago', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24467, 'Tatsuno', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24468, 'Toyooka', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24469, 'Yamasaki', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24470, 'Yashiro', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24471, 'Yumesaki', 1930, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24472, 'Ami', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24473, 'Chiyoda', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24474, 'Daigo', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24475, 'Edosaki', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24476, 'Fujishiro', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24477, 'Hasaki', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24478, 'Hitachi', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24479, 'Hitachinaka', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24480, 'Hitachiota', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24481, 'Hokota', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24482, 'Ibaraki', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24483, 'Ina', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24484, 'Ishige', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24485, 'Ishioka', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24486, 'Itako', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24487, 'Iwai', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24488, 'Iwase', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24489, 'Kamisu', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24490, 'Kasama', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24491, 'Kashima', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24492, 'Kasumigaura', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24493, 'Kitaibaraki', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24494, 'Koga', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24495, 'Kukizaki', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24496, 'Makabe', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24497, 'Minori', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24498, 'Mito', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24499, 'Mitsukaido', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24500, 'Moriya', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24501, 'Naka', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24502, 'Oarai', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24503, 'Omiya', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24504, 'Ryugasaki', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24505, 'Sakai', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24506, 'Sanwa', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24507, 'Shimodate', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24508, 'Shimotsuma', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24509, 'Sowa', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24510, 'Takahagi', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24511, 'Tokai', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24512, 'Tomobe', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24513, 'Tone', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24514, 'Toride', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24515, 'Tsukuba', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24516, 'Ushiku', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24517, 'Yachiyo', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24518, 'Yasato', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24519, 'Yuki', 1931, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24520, 'Hakui', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24521, 'Kaga', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24522, 'Kanazawa', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24523, 'Komatsu', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24524, 'Matto', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24525, 'Nanao', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24526, 'Nonoichi', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24527, 'Suzu', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24528, 'Tsubata', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24529, 'Tsurugi', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24530, 'Uchinada', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24531, 'Wajima', 1932, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24532, 'Daito', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24533, 'Esashi', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24534, 'Hanamaki', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24535, 'Ichinohe', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24536, 'Ichinoseki', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24537, 'Iwate', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24538, 'Kamaishi', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24539, 'Kitakami', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24540, 'Kuji', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24541, 'Miyako', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24542, 'Mizusawa', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24543, 'Morioka', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24544, 'Ninohe', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24545, 'Ofunato', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24546, 'Otsuchi', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24547, 'Rikuzentakata', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24548, 'Shiwa', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24549, 'Shizukuishi', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24550, 'Takizawa', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24551, 'Tono', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24552, 'Yahaba', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24553, 'Yamada', 1933, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24554, 'Kagawa', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24555, 'Kanonji', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24556, 'Kokubunji', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24557, 'Marugame', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24558, 'Miki', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24559, 'Ryonan', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24560, 'Sakaide', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24561, 'Shido', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24562, 'Tadotsu', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24563, 'Takamatsu', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24564, 'Tonosho', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24565, 'Zentsuji', 1934, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24566, 'Aira', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24567, 'Akune', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24568, 'Hayato', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24569, 'Ibusuki', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24570, 'Ijuin', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24571, 'Izumi', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24572, 'Kagoshima', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24573, 'Kajiki', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24574, 'Kanoya', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24575, 'Kaseda', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24576, 'Kokubu', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24577, 'Kushikino', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24578, 'Makurazaki', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24579, 'Naze', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24580, 'Nishinoomote', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24581, 'Okuchi', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24582, 'Sendai', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24583, 'Shibushi', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24584, 'Sueyoshi', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24585, 'Tarumizu', 1935, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24586, 'Aikawa', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24587, 'Atsugi', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24588, 'Ayase', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24589, 'Chigasaki', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24590, 'Ebina', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24591, 'Fujisawa', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24592, 'Hadano', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24593, 'Hakone', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24594, 'Hayama', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24595, 'Hiratsuka', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24596, 'Isehara', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24597, 'Kamakura', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24598, 'Kawasaki', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24599, 'Minamiashigara', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24600, 'Miura', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24601, 'Ninomiya', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24602, 'Odawara', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24603, 'Oiso', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24604, 'Sagamihara', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24605, 'Samukawa', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24606, 'Shiroyama', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24607, 'Takatsu-Ku', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24608, 'Tsukui', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24609, 'Yamato', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24610, 'Yokohama', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24611, 'Yokosuka', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24612, 'Yugawara', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24613, 'Zama', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24614, 'Zushi', 1936, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24615, 'Gunma', 1937, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24616, 'Saitama', 1937, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24617, 'Aki', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24618, 'Ino', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24619, 'Kochi', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24620, 'Muroto', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24621, 'Nakamura', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24622, 'Nankoku', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24623, 'Sukumo', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24624, 'Susaki', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24625, 'Tosa', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24626, 'Tosashimizu', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24627, 'Tosayamada', 1938, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24628, 'Arao', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24629, 'Ashikita', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24630, 'Aso', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24631, 'Hitoyoshi', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24632, 'Hondo', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24633, 'Jonan', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24634, 'Kikuchi', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24635, 'Kikuyo', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24636, 'Koshi', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24637, 'Kumamoto', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24638, 'Mashiki', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24639, 'Matsubase', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24640, 'Minamata', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24641, 'Nishigoshi', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24642, 'Ozu', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24643, 'Tamana', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24644, 'Ueki', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24645, 'Ushibuka', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24646, 'Uto', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24647, 'Yamaga', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24648, 'Yatsushiro', 1939, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24649, 'Ayabe', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24650, 'Fukuchiyama', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24651, 'Joyo', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24652, 'Kameoka', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24653, 'Kizu', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24654, 'Kumiyama', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24655, 'Kyotanabe', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24656, 'Kyoto', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24657, 'Maizuru', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24658, 'Miyazu', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24659, 'Muko', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24660, 'Nagaokakyo', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24661, 'Seika', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24662, 'Uji', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24663, 'Yawata', 1940, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24664, 'Ago', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24665, 'Hisai', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24666, 'Ise', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24667, 'Kameyama', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24668, 'Komono', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24669, 'Kumano', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24670, 'Kuwana', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24671, 'Matsusaka', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24672, 'Meiwa', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24673, 'Nabari', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24674, 'Owase', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24675, 'Suzuka', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24676, 'Toba', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24677, 'Toin', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24678, 'Tsu', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24679, 'Ueno', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24680, 'Yokkaichi', 1941, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24681, 'Furukawa', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24682, 'Hasama', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24683, 'Ishinomaki', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24684, 'Iwanuma', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24685, 'Kakuda', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24686, 'Kesennuma', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24687, 'Kogota', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24688, 'Marumori', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24689, 'Natori', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24690, 'Ogawara', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24691, 'Rifu', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24692, 'Sendai', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24693, 'Shibata', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24694, 'Shichigahama', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24695, 'Shiogama', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24696, 'Shiroishi', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24697, 'Tagajo', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24698, 'Taiwa', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24699, 'Tomiya', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24700, 'Wakuya', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24701, 'Watari', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24702, 'Yamoto', 1942, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24703, 'Ebino', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24704, 'Hyuga', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24705, 'Kiyotake', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24706, 'Kobayashi', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24707, 'Kunitomi', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24708, 'Kushima', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24709, 'Mimata', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24710, 'Miyakonojo', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24711, 'Miyazaki', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24712, 'Nichinan', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24713, 'Nobeoka', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24714, 'Sadowara', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24715, 'Saito', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24716, 'Shintomi', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24717, 'Takanabe', 1943, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24718, 'Chino', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24719, 'Hotaka', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24720, 'Iida', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24721, 'Iiyama', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24722, 'Ina', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24723, 'Komagane', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24724, 'Komoro', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24725, 'Koshoku', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24726, 'Maruko', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24727, 'Matsumoto', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24728, 'Minowa', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24729, 'Nagano', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24730, 'Nakano', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24731, 'Okaya', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24732, 'Omachi', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24733, 'Saku', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24734, 'Shimosuwa', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24735, 'Shiojiri', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24736, 'Suwa', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24737, 'Suzaka', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24738, 'Tatsuno', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24739, 'Tobu', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24740, 'Toyoshina', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24741, 'Ueda', 1944, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24742, 'Fukue', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24743, 'Hirado', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24744, 'Isahaya', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24745, 'Matsuura', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24746, 'Nagasaki', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24747, 'Nagayo', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24748, 'Omura', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24749, 'Sasebo', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24750, 'Shimabara', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24751, 'Togitsu', 1945, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24752, 'Gojo', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24753, 'Gose', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24754, 'Haibara', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24755, 'Heguri', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24756, 'Ikagura', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24757, 'Ikoma', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24758, 'Kammaki', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24759, 'Kashiba', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24760, 'Kashihara', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24761, 'Kawai', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24762, 'Koryo', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24763, 'Nara', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24764, 'Oji', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24765, 'Oyodo', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24766, 'Sakurai', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24767, 'Sango', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24768, 'Tawaramoto', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24769, 'Tenri', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24770, 'Yamatokoriyama', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24771, 'Yamatotakada', 1946, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24772, 'Arai', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24773, 'Fuchu', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24774, 'Gosen', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24775, 'Itoigawa', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24776, 'Joetsu', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24777, 'Kameda', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24778, 'Kamo', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24779, 'Kashiwazaki', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24780, 'Kurosaki', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24781, 'Maki', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24782, 'Mitsuke', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24783, 'Muika', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24784, 'Murakami', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24785, 'Muramatsu', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24786, 'Nagaoka', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24787, 'Nakajo', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24788, 'Niigata', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24789, 'Niitsu', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24790, 'Ojiya', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24791, 'Ryotsu', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24792, 'Sanjo', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24793, 'Shibata', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24794, 'Shiozawa', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24795, 'Shirone', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24796, 'Suibara', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24797, 'Tochio', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24798, 'Tokamachi', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24799, 'Toyosaka', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24800, 'Tsubame', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24801, 'Yoshida', 1947, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24802, 'Beppu', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24803, 'Bungotakada', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24804, 'Hiji', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24805, 'Hita', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24806, 'Kitsuki', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24807, 'Kusu', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24808, 'Nakatsu', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24809, 'Oita', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24810, 'Saiki', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24811, 'Taketa', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24812, 'Tsukumi', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24813, 'Usa', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24814, 'Usuki', 1948, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24815, 'Bizen', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24816, 'Ibara', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24817, 'Kamogata', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24818, 'Kasaoka', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24819, 'Kurashiki', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24820, 'Mabi', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24821, 'Niimi', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24822, 'Okayama', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24823, 'Sanyo', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24824, 'Soja', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24825, 'Takahashi', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24826, 'Tamano', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24827, 'Tsuyama', 1949, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24828, 'Chatan', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24829, 'Ginowan', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24830, 'Gushikawa', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24831, 'Haebaru', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24832, 'Hirara', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24833, 'Ishigaki', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24834, 'Ishikawa', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24835, 'Itoman', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24836, 'Nago', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24837, 'Naha', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24838, 'Nishihara', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24839, 'Okinawa', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24840, 'Tomigusuku', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24841, 'Urasoe', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24842, 'Yomitan', 1950, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24843, 'Daito', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24844, 'Fujiidera', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24845, 'Habikino', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24846, 'Hannan', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24847, 'Higashiosaka', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24848, 'Hirakata', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24849, 'Ibaraki', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24850, 'Ikeda', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24851, 'Izumi', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24852, 'Izumiotsu', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24853, 'Izumisano', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24854, 'Kadoma', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24855, 'Kaizuka', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24856, 'Kashiwara', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24857, 'Katano', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24858, 'Kawachinagano', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24859, 'Kishiwada', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24860, 'Kobe', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24861, 'Kumatori', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24862, 'Matsubara', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24863, 'Mihara', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24864, 'Mino', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24865, 'Misaki', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24866, 'Moriguchi', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24867, 'Neyagawa', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24868, 'Osaka', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24869, 'Osakasayama', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24870, 'Sakai', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24871, 'Sennan', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24872, 'Settsu', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24873, 'Shijonawate', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24874, 'Shimamoto', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24875, 'Suita', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24876, 'Takaishi', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24877, 'Takatsuki', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24878, 'Tondabayashi', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24879, 'Toyonaka', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24880, 'Toyono', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24881, 'Yao', 1951, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24882, 'Imari', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24883, 'Kanzaki', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24884, 'Karatsu', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24885, 'Kashima', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24886, 'Kawasoe', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24887, 'Saga', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24888, 'Takeo', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24889, 'Taku', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24890, 'Tosu', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24891, 'Ureshino', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24892, 'Yamato', 1952, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24893, 'Ageo', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24894, 'Asaka', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24895, 'Chichibu', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24896, 'Fujimi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24897, 'Fukaya', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24898, 'Fukiage', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24899, 'Gyoda', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24900, 'Hanno', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(24901, 'Hanyu', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24902, 'Hasuda', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24903, 'Hatogaya', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24904, 'Hatoyama', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24905, 'Hidaka', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24906, 'Higashimatsuyama', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24907, 'Honjo', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24908, 'Ina', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24909, 'Iruma', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24910, 'Iwatsuki', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24911, 'Kamifukuoka', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24912, 'Kamisato', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24913, 'Kasukabe', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24914, 'Kawagoe', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24915, 'Kawaguchi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24916, 'Kawajima', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24917, 'Kazo', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24918, 'Kisai', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24919, 'Kitamoto', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24920, 'Kodama', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24921, 'Konosu', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24922, 'Koshigaya', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24923, 'Kuki', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24924, 'Kumagaya', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24925, 'Kurihashi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24926, 'Matsubushi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24927, 'Menuma', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24928, 'Misato', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24929, 'Miyashiro', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24930, 'Miyoshi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24931, 'Moroyama', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24932, 'Niiza', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24933, 'Ogawa', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24934, 'Oi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24935, 'Okegawa', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24936, 'Omiya', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24937, 'Saitma-Shi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24938, 'Sakado', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24939, 'Satte', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24940, 'Sayama', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24941, 'Shiki', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24942, 'Shiraoka', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24943, 'Shobu', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24944, 'Showa', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24945, 'Soka', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24946, 'Sugito', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24947, 'Toda', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24948, 'Tokorozawa', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24949, 'Tsurugashima', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24950, 'Urawa', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24951, 'Wako', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24952, 'Warabi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24953, 'Washimiya', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24954, 'Yashio', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24955, 'Yono', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24956, 'Yorii', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24957, 'Yoshikawa', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24958, 'Yoshimi', 1953, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24959, 'Hikone', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24960, 'Hino', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24961, 'Konan', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24962, 'Kosei', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24963, 'Kusatsu', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24964, 'Minakuchi', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24965, 'Moriyama', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24966, 'Nagahama', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24967, 'Notogawa', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24968, 'Omihachiman', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24969, 'Otsu', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24970, 'Ritto', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24971, 'Shiga', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24972, 'Yasu', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24973, 'Yokaichi', 1954, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24974, 'Gotsu', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24975, 'Hamada', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24976, 'Hikawa', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24977, 'Hirata', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24978, 'Izumo', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24979, 'Masuda', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24980, 'Matsue', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24981, 'Oda', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24982, 'Yasugi', 1955, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24983, 'Asaba', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24984, 'Atami', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24985, 'Daito', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24986, 'Fuji', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24987, 'Fujieda', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24988, 'Fujinomiya', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24989, 'Fukuroi', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24990, 'Gotemba', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24991, 'Haibara', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24992, 'Hamakita', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24993, 'Hamamatsu', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24994, 'Hamaoka', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24995, 'Hosoe', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24996, 'Ito', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24997, 'Iwata', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24998, 'Kakegawa', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(24999, 'Kanaya', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25000, 'Kannami', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25001, 'Kikugawa', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25002, 'Kosai', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25003, 'Mishima', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25004, 'Mori', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25005, 'Nagaizumi', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25006, 'Numazu', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25007, 'Oigawa', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25008, 'Oyama', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25009, 'Ryuyo', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25010, 'Sagara', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25011, 'Shimada', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25012, 'Shimizu', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25013, 'Shimoda', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25014, 'Shizuoka', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25015, 'Susono', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25016, 'Tenryu', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25017, 'Toyoda', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25018, 'Yaizu', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25019, 'Yoshida', 1956, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25020, 'Ashikaga', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25021, 'Fujioka', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25022, 'Imaichi', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25023, 'Iwafune', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25024, 'Kaminokawa', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25025, 'Kanuma', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25026, 'Karasuyama', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25027, 'Kawachi', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25028, 'Kuroiso', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25029, 'Mashiko', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25030, 'Mibu', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25031, 'Minamikawachi', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25032, 'Moka', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25033, 'Motegi', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25034, 'Nasu', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25035, 'Nikko', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25036, 'Nishinasuno', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25037, 'Nogi', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25038, 'Ohira', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25039, 'Otawara', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25040, 'Oyama', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25041, 'Sano', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25042, 'Takanezawa', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25043, 'Tanuma', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25044, 'Tochigi', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25045, 'Ujiie', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25046, 'Utsunomiya', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25047, 'Yaita', 1957, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25048, 'Aizumi', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25049, 'Anan', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25050, 'Ikeda', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25051, 'Ishii', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25052, 'Kamojima', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25053, 'Kitajima', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25054, 'Komatsushima', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25055, 'Naruto', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25056, 'Tokushima', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25057, 'Waki', 1958, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25058, 'Akiruno', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25059, 'Akishima', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25060, 'Chofu', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25061, 'Fuchu', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25062, 'Hachioji', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25063, 'Hamura', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25064, 'Higashikurume', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25065, 'Higashimurayama', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25066, 'Higashiyamato', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25067, 'Hino', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25068, 'Hoya', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25069, 'Inagi', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25070, 'Kiyose', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25071, 'Kodaira', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25072, 'Koganei', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25073, 'Kokubunji', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25074, 'Komae', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25075, 'Kunitachi', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25076, 'Machida', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25077, 'Mitaka', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25078, 'Mizuho', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25079, 'Musashimurayama', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25080, 'Musashino', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25081, 'Ome', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25082, 'Tachikawa', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25083, 'Tama', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25084, 'Tanashi', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25085, 'Tokyo', 1959, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25086, 'Kurayoshi', 1960, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25087, 'Sakaiminato', 1960, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25088, 'Tottori', 1960, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25089, 'Yonago', 1960, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25090, 'Fukumitsu', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25091, 'Himi', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25092, 'Kamiichi', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25093, 'Kosugi', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25094, 'Kurobe', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25095, 'Namerikawa', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25096, 'Nyuzen', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25097, 'Osawano', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25098, 'Oyabe', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25099, 'Shimminato', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25100, 'Takaoka', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25101, 'Tateyama', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25102, 'Tonami', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25103, 'Toyama', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25104, 'Uozu', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25105, 'Yatsuo', 1961, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25106, 'Arida', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25107, 'Gobo', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25108, 'Hashimoto', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25109, 'Iwade', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25110, 'Kainan', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25111, 'Katsuragi', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25112, 'Kishigawa', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25113, 'Nachikatsuura', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25114, 'Shingu', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25115, 'Tanabe', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25116, 'Wakayama', 1962, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25117, 'Higashine', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25118, 'Kahoku', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25119, 'Kaminoyama', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25120, 'Kawanishi', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25121, 'Murayama', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25122, 'Nagai', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25123, 'Nanyo', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25124, 'Obanazawa', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25125, 'Sagae', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25126, 'Sakata', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25127, 'Shinjo', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25128, 'Takahata', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25129, 'Tendo', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25130, 'Tsuchiura', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25131, 'Tsuruoka', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25132, 'Yamagata', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25133, 'Yonezawa', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25134, 'Yuza', 1963, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25135, 'Hagi', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25136, 'Hikari', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25137, 'Hofu', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25138, 'Iwakuni', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25139, 'Kudamatsu', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25140, 'Mine', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25141, 'Nagato', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25142, 'Ogori', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25143, 'Onoda', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25144, 'Sanyo', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25145, 'Shimonoseki', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25146, 'Shinnanyo', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25147, 'Tokuyama', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25148, 'Toyoura', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25149, 'Ube', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25150, 'Yamaguchi', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25151, 'Yanai', 1964, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25152, 'Enzan', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25153, 'Fujiyoshida', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25154, 'Isawa', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25155, 'Kofu', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25156, 'Nirasaki', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25157, 'Otsuki', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25158, 'Ryuo', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25159, 'Tsuru', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25160, 'Uenohara', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25161, 'Yamanashi', 1965, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25162, 'Grouville', 1966, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25163, 'Trinity', 1976, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25164, '\'Abbin', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25165, '\'Ajlun', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25166, '\'Anjarah', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25167, '\'Arjan', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25168, '\'Ayn Janna', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25169, 'Halawah', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25170, 'Kharbat al-Wahadnah', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25171, 'Kufranjah', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25172, 'Sakhrah', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25173, 'al-Hashamiyah', 1977, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25174, 'Abu \'Alanda', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25175, 'Amman', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25176, 'Askan Abu Nusayr', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25177, 'Jawa', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25178, 'Khalda wa Tila\'-al-\'Ali', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25179, 'Khraybat As-Suq', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25180, 'Marj al-Hammam', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25181, 'Na\'ur', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25182, 'Nuzhat Sahab', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25183, 'Sahab', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25184, 'Shafa Badran', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25185, 'Suwaylih', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25186, 'Tariq', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25187, 'Umm As-Summaq', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25188, 'Umm Nuwarah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25189, 'Umm Qusayr wal Muqabalin', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25190, 'Umm al-Basatin', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25191, 'Wadi as-Sir', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25192, 'al-\'Abdaliyah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25193, 'al-Binayat', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25194, 'al-Faysaliyah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25195, 'al-Jizah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25196, 'al-Jubayhah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25197, 'al-Juwaydah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25198, 'al-Quwaysimah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25199, 'al-Yadudah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25200, 'ar-Rawdah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25201, 'at-Talbiyah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25202, 'at-Taybah', 1978, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25203, '\'Al\'al', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25204, '\'Anbah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25205, 'Arhaba', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25206, 'Aydun', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25207, 'Bayt Idas', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25208, 'Bayt Ras', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25209, 'Bayt Yafa', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25210, 'Bushra', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25211, 'Dayr Abi Sa\'id', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25212, 'Dayr Yusif', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25213, 'Dayr as-Sa\'anah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25214, 'Duwaqarah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25215, 'Hakama', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25216, 'Hartha', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25217, 'Hatam', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25218, 'Hawwarah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25219, 'Irbid', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25220, 'Jasar ash-Shaykh Hussayn', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25221, 'Judayta', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25222, 'Katam', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25223, 'Kharja', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25224, 'Kufur \'Awan', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25225, 'Kufur Abil', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25226, 'Kufur Asad', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25227, 'Kufur Rakab', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25228, 'Kufur Sum', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25229, 'Kufur Yuba', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25230, 'Kufur al-Ma\'', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25231, 'Kuraymah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25232, 'Malka', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25233, 'Mukhayyam al-Husun', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25234, 'Qumaym', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25235, 'Saham', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25236, 'Sal', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25237, 'Samma', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25238, 'Sammaw\'', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25239, 'Sum', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25240, 'Tabnah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25241, 'Umm Qays', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25242, 'Wadi al-Yabas', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25243, 'Waqqas', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25244, 'Zahar', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25245, 'al-Ashrafiyah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25246, 'al-Balawnah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25247, 'al-Buwaydah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25248, 'al-Husun', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25249, 'al-Manshiyah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25250, 'al-Mashari\'a', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25251, 'al-Mazar ash-Shamaliyah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25252, 'al-Mughayyar', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25253, 'an-Nu\'aymeh', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25254, 'ar-Ramtha', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25255, 'as-Sarih', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25256, 'ash-Shajarah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25257, 'ash-Shunah ash-Shamaliyah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25258, 'at-Taybah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25259, 'at-Turrah', 1979, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25260, 'Balila', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25261, 'Burma', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25262, 'Jarash', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25263, 'Kufur Khall', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25264, 'Mukhayyam Ghazzah', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25265, 'Mukhayyam Suf', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25266, 'Qafqafa', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25267, 'Raymun', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25268, 'Sakab', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25269, 'Suf', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25270, 'al-Kattah', 1980, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25271, 'Bayar', 1981, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25272, 'Ma\'an', 1981, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25273, 'Wadi Musa', 1981, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25274, 'al-Hussayniyah', 1981, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25275, 'al-Jafar', 1981, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25276, 'at-Taybah', 1981, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25277, 'Dhiban', 1982, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25278, 'Ma\'in', 1982, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25279, 'Madaba', 1982, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25280, 'Mulayh', 1982, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25281, 'al-Faysaliyah', 1982, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25282, 'al-\'Aqabah', 1983, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25283, 'al-Quwayrah', 1983, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25284, '\'Ayn al-Basha', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25285, 'Darar', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25286, 'Juwafat al-Kafrayn', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25287, 'Ma\'addi', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25288, 'Mahas', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25289, 'Safut', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25290, 'Suknat ash-Shunah', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25291, 'Yarqa', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25292, 'al-Baq\'ah', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25293, 'al-Fuhays', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25294, 'al-Karamah', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25295, 'ar-Rawdah', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25296, 'as-Salt', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25297, 'as-Sawalhah', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25298, 'as-Subayhi', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25299, 'at-Tawal al-Janubi', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25300, 'at-Tuwal ash-Shamali', 1984, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25301, '\'Ayy', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25302, 'Adar', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25303, 'Faqqu\'', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25304, 'Ghawr al-Mazra\'ah', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25305, 'Ghawr as-Safi', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25306, 'Maw\'tah', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25307, 'Sirfa', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25308, 'al-Hussayniyah', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25309, 'al-Karak', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25310, 'al-Mazar', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25311, 'al-Qasr', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25312, 'al-Qitranah', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25313, 'ar-Rabbah', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25314, 'ash-Shahabiyah', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25315, 'at-Taybah', 1985, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25316, 'Badiyat ar-Ruwayshid', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25317, 'Bal\'ama', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25318, 'Manshiyat Bani Hassan', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25319, 'Mugayyar as-Sarhan', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25320, 'Sabha', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25321, 'Sama as-Sarhan', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25322, 'Umm al-Quttayn', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25323, 'al-Hamra\'', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25324, 'al-Khaldiyah al-Jadidah', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25325, 'al-Mabrukah', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25326, 'al-Mafraq', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25327, 'ar-Ruwayshid', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25328, 'az-Za\'tari', 1986, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25329, 'Busayrah', 1987, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25330, 'al-\'Ayn al-Bayda', 1987, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25331, 'al-Hasa', 1987, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25332, 'al-Qadisiyah', 1987, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25333, 'at-Tafilah', 1987, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25334, 'Iskan al-Hashamiyah', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25335, 'Mushayrfat Ras al-\'Ayn', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25336, 'Shnillar', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25337, 'ad-Dulayl', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25338, 'al-Azraq ash-Shamali', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25339, 'al-Hashamiyah', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25340, 'ar-Russayfah', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25341, 'as-Sukhnah', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25342, 'az-Zarqa\'', 1988, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25343, 'Akmecet', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25344, 'Aral', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25345, 'Baykonir', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25346, 'Canakazali', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25347, 'Canakorgan', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25348, 'Cosali', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25349, 'Kazali', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25350, 'Sieli', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25351, 'Tasboget', 1989, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25352, 'Aksu', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25353, 'Alekseevka', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25354, 'Astana', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25355, 'Atbasar', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25356, 'Bestobe', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25357, 'Caltir', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25358, 'Colimbet', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25359, 'Ereymentau', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25360, 'Koksetau', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25361, 'Makin', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25362, 'Stepnogorsk', 1990, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25363, 'Aktobe', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25364, 'Alka', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25365, 'Batamsi', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25366, 'Embi', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25367, 'Hromtau', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25368, 'Kandagac', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25369, 'Salkar', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25370, 'Subarkudik', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25371, 'Subarsi', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25372, 'Temir', 1991, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25373, 'Almati', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25374, 'Almaty', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25375, 'Boralday', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25376, 'Carkant', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25377, 'Energetyceskiy', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25378, 'Esik', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25379, 'Fabrichniy', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25380, 'Kapsagay', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25381, 'Karabulak', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25382, 'Kaskelen', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25383, 'Kirov', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25384, 'Sariozek', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25385, 'Sarkand', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25386, 'Selek', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25387, 'Taldikorgan', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25388, 'Talgar', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25389, 'Tekeli', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25390, 'Ustobe', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25391, 'Uzunagac', 1992, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25392, 'Atirau', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25393, 'Atyrau', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25394, 'Dossor', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25395, 'Inderbor', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25396, 'Karaton', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25397, 'Kulsari', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25398, 'Makat', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25399, 'Oporni', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25400, 'Sumisker', 1993, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25401, 'Abay', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25402, 'Akadir', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25403, 'Aktas', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25404, 'Aktau', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25405, 'Atasu', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25406, 'Balkas', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25407, 'Cayrem', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25408, 'Cezkazgan', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25409, 'Gulsat', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25410, 'Karacal', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25411, 'Karaganda', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25412, 'Karkarali', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25413, 'Karsakbay', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25414, 'Konrat', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25415, 'Novodolinskiy', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25416, 'Osakarovka', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25417, 'Sahti', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25418, 'Saran', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25419, 'Sarisagan', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25420, 'Satpaev', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25421, 'Temirtau', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25422, 'Tokaryovka', 1996, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25423, 'Arkalik', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25424, 'Borovskoy', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25425, 'Cetikara', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25426, 'Derjavinsk', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25427, 'Esil', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25428, 'Fodorov', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25429, 'Kacar', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25430, 'Komsomol', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25431, 'Kostanay', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25432, 'Kusmurin', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25433, 'Lisakovsk', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25434, 'Rudni', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25435, 'Tobol', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25436, 'Uritsk', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25437, 'Zatobolsk', 1997, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25438, 'Aktau', 1998, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25439, 'Beyneu', 1998, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25440, 'Canaozen', 1998, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25441, 'Cetibay', 1998, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25442, 'Fort-Sevcenko', 1998, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25443, 'Kurik', 1998, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25444, 'Mangyslak', 1998, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25445, 'Setpe', 1998, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25446, 'Ekibastuz', 2000, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25447, 'Ermak', 2000, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25448, 'Ertis', 2000, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25449, 'Kaciri', 2000, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25450, 'Maykain', 2000, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25451, 'Pavlodar', 2000, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25452, 'Sarbakti', 2000, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25453, 'Canatas', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25454, 'Georgiyev', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25455, 'Karatau', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25456, 'Lugovoy', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25457, 'Merke', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25458, 'Mihaylov', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25459, 'Oytal', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25460, 'Su', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25461, 'Taraz', 2003, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25462, 'Gilgil', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25463, 'Karatina', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25464, 'Kiambu', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25465, 'Kijabe', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25466, 'Kikuyu', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25467, 'Limuru', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25468, 'Maragua', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25469, 'Muranga', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25470, 'Nyeri', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25471, 'Ruiru', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25472, 'Sagana', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25473, 'Thika', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25474, 'Vanga', 2004, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25475, 'Changamwe', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25476, 'Garsen', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25477, 'Gazi', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25478, 'Hola', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25479, 'Kaloleni', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25480, 'Kilifi', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(25481, 'Kinango', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25482, 'Kipini', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25483, 'Kwale', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25484, 'Lamu', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25485, 'Malindi', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25486, 'Mambrui', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25487, 'Mombasa', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25488, 'Sawasawa', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25489, 'Shimoni', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25490, 'Takaungu', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25491, 'Taveta', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25492, 'Voi', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25493, 'Witu', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25494, 'Wundanyi', 2005, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25495, 'Athi River', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25496, 'Chuka', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25497, 'Embu', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25498, 'Isiolo', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25499, 'Kangonde', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25500, 'Kitui', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25501, 'Machakos', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25502, 'Mado Gashi', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25503, 'Marsabit', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25504, 'Meru', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25505, 'Moyale', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25506, 'Mutomo', 2006, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25507, 'Nairobi', 2007, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25508, 'Homa Bay', 2009, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25509, 'Kisii', 2009, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25510, 'Kisumu', 2009, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25511, 'Migori', 2009, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25512, 'Bungoma', 2011, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25513, 'Busia', 2011, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25514, 'Kakamega', 2011, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25515, 'Mumias', 2011, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25516, 'Webuye', 2011, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25517, 'Taburao', 2012, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25518, 'Binoinano', 2013, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25519, 'Takaeang', 2014, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25520, 'Roreti', 2015, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25521, 'Ooma', 2016, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25522, 'Tabukiniberu', 2017, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25523, 'Butaritari', 2018, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25524, 'London', 2019, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25525, 'Tabontebike', 2020, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25526, 'Tabiauea', 2021, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25527, 'Makin', 2022, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25528, 'Rawannawi', 2023, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25529, 'Rungata', 2024, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25530, 'Temaraia', 2025, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25531, 'Ijaki', 2026, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25532, 'Nabari', 2030, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25533, 'Abaokoro', 2031, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25534, 'Washington', 2034, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25535, 'Kanggye', 2035, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25536, 'Cheongjin', 2036, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25537, 'Kimchaek', 2036, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25538, 'Najin', 2036, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25539, 'Hamheung', 2037, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25540, 'Sariweon', 2038, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25541, 'Seongnim', 2038, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25542, 'Haeju', 2039, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25543, 'Kaeseong', 2040, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25544, 'Weonsan', 2041, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25545, 'Nampo', 2042, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25546, 'Sineuiju', 2043, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25547, 'Phyeongseong', 2044, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25548, 'Pyeongyang', 2045, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25549, 'Pyongyang', 2045, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25550, 'Hyesan', 2046, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25551, 'Busan', 2047, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25552, 'Aeweol', 2048, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25553, 'Cheju', 2048, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25554, 'Seogwipo', 2048, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25555, 'Cheonju', 2049, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25556, 'Chongup', 2049, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25557, 'Iksan', 2049, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25558, 'Kimje', 2049, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25559, 'Kochang', 2049, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25560, 'Kunsan', 2049, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25561, 'Namwon', 2049, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25562, 'Puan', 2049, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25563, 'Haenam', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25564, 'Hwasun', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25565, 'Kwangyang', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25566, 'Kwangyang Up', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25567, 'Mokpo', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25568, 'Naju', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25569, 'Peolgyo', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25570, 'Suncheon', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25571, 'Yeocheon', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25572, 'Yeosu', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25573, 'Yonggwang', 2050, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25574, 'Cheongwon-gun', 2051, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25575, 'Eumsung-Kun', 2051, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25576, 'Jinchunkun', 2051, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25577, 'Okcheon-gun', 2051, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25578, 'Um Sung Gun', 2051, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25579, 'Chechon', 2052, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25580, 'Cheongju', 2052, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25581, 'Chincheon', 2052, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25582, 'Chungju', 2052, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25583, 'Jincheon-gun', 2052, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25584, 'Okchon', 2052, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25585, 'Yongdong', 2052, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25586, 'Asan', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25587, 'Cheonan', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25588, 'Chochiwon', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25589, 'Geumsan-Gun', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25590, 'Hongseong', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25591, 'Kongju', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25592, 'Kumsan', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25593, 'Nonsan', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25594, 'Poryong', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25595, 'Puyeo', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25596, 'Seonghwan', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25597, 'Seosan', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25598, 'Taean', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25599, 'Taesan', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25600, 'Tangjin', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25601, 'Yesan', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25602, 'Yonmu', 2053, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25603, 'Chonan', 2054, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25604, 'Danjin-gun', 2054, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25605, 'Gongjusi', 2054, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25606, 'Daegu', 2055, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25607, 'Dalseo-gu', 2055, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25608, 'Chungcheong', 2056, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25609, 'Hoengseong', 2056, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25610, 'Mummakeup', 2056, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25611, 'Wonju', 2056, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25612, 'Gimhae', 2057, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25613, 'Goyang-si', 2057, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25614, 'Ansan', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25615, 'Anyang', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25616, 'Anyang-Si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25617, 'Anyangsi', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25618, 'Buchon', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25619, 'Buchun-Si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25620, 'Byeoryangdong', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25621, 'Dongan-gu', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25622, 'Gimpo City', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25623, 'Goyang', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25624, 'Gupo-si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25625, 'Guri-Si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25626, 'Gwacheon Si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25627, 'Gwangju-Si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25628, 'Hwaseong-si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25629, 'Icheon-si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25630, 'Iljuk-myeon', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25631, 'Kwangju', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25632, 'Pocheon-Si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25633, 'Seongnam', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25634, 'Shihung-Si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25635, 'Siheung', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25636, 'Sihung-si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25637, 'Suwon', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25638, 'Uijeongbu-dong', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25639, 'Uiwang', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25640, 'Yangju', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25641, 'Yangpyeong-Gun', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25642, 'Yeokbuk-Dong-Si', 2058, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25643, 'Changwon', 2060, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25644, 'Gimhae-si', 2060, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25645, 'Incheon', 2061, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25646, 'Kanghwa', 2061, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25647, 'Namdongku', 2061, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25648, 'Jeju', 2062, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25649, 'Yeongpyeong-Dong', 2062, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25650, 'Jeonju-Si', 2063, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25651, 'Chuncheon', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25652, 'Hongcheon', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25653, 'Kangneung', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25654, 'Samchok', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25655, 'Seokcho', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25656, 'Taebaek', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25657, 'Tonghae', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25658, 'Weonju', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25659, 'Yeongweol', 2064, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25660, 'Kwangju', 2065, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25661, 'Ansan', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25662, 'Anseong', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25663, 'Anyang', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25664, 'Chongok', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25665, 'Euijeongbu', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25666, 'Euiwang', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25667, 'Hanam', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25668, 'Hoechon', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25669, 'Hwado', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25670, 'Hwasung', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25671, 'Ichon', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25672, 'Kihung', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25673, 'Kimpo', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25674, 'Koyang', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25675, 'Kumchon', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25676, 'Kunpo', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25677, 'Kuri', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25678, 'Kwacheon', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25679, 'Kwangju', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25680, 'Kwangmyeong', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25681, 'Munsan', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25682, 'Namyangju', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25683, 'Osan', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25684, 'Paengseong', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25685, 'Pochon', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25686, 'Pubal', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25687, 'Pucheon', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25688, 'Pyeongtaek', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25689, 'Seongnam', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25690, 'Shiheung', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25691, 'Suweon', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25692, 'Taean', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25693, 'Tongducheon', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25694, 'Wabu', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25695, 'Yeoju', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25696, 'Yongin', 2066, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25697, 'Andong', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25698, 'Angang', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25699, 'Hayang', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25700, 'Heunghae', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25701, 'Kimcheon', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25702, 'Kumi', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25703, 'Kyeongju', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25704, 'Kyeongsan', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25705, 'Mungyong', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25706, 'Ochon', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25707, 'Oedong', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25708, 'Pohang', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25709, 'Sangju', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25710, 'Seonsan', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25711, 'Waegwan', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25712, 'Yechon', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25713, 'Yeongcheon', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25714, 'Yeongju', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25715, 'Yeonil', 2067, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25716, 'Changweon', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25717, 'Chinhae', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25718, 'Chinju', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25719, 'Chinyeong', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25720, 'Keoje', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25721, 'Kimhae', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25722, 'Kochang', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25723, 'Koseong', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25724, 'Masan', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25725, 'Miryang', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25726, 'Naeso', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25727, 'Sacheon', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25728, 'Sinhyeon', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25729, 'Tongyong', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25730, 'Ungsang', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25731, 'Yangju', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25732, 'Yangsan', 2068, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25733, 'Anyang-Si', 2069, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25734, 'Bucheon', 2069, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25735, 'Paju', 2069, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25736, 'Sungnamshi', 2069, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25737, 'Suwon', 2069, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25738, 'Uijongbu', 2069, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25739, 'Yangju', 2069, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25740, 'Gumi-Shi', 2070, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25741, 'Kyungsan', 2070, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25742, 'Youngcheon-Si', 2070, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25743, 'Bundang', 2071, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25744, 'Gunpo', 2071, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25745, 'Yangu', 2071, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25746, 'Pochun', 2072, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25747, 'Yangju', 2072, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25748, 'Yonggi', 2072, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25749, 'Kijang', 2073, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25750, 'Pusan', 2073, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25751, 'Seoul', 2074, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25752, 'Paju', 2075, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25753, 'Hwawon', 2076, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25754, 'Taegu', 2076, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25755, 'Taejeon', 2077, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25756, 'Daejeon', 2078, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25757, 'Nongso', 2079, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25758, 'Ulsan', 2079, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25759, 'Heungup-Myun', 2080, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25760, 'Inchon', 2081, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25761, 'Pusan', 2081, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25762, 'Taejon', 2081, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25763, 'Bayan', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25764, 'Hawalli', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25765, 'Massilah', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25766, 'Mushrif', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25767, 'Salwa\'', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25768, 'Sha\'\'ab', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25769, 'Subbah-as-Salim', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25770, 'al-Funaytis', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25771, 'al-Funaytis-al-Garbiyah', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25772, 'al-Jabiriyah', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25773, 'al-Karim', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25774, 'ar-Rumaythiyah', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25775, 'as-Salimiyah', 2083, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25776, 'Mishref', 2084, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25777, 'Qadesiya', 2085, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25778, 'Safat', 2086, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25779, 'Salmiya', 2087, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25780, 'A\'qaylah', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25781, 'Abu Hulayfah', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25782, 'Dahar', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25783, 'Desert Area', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25784, 'Hadiyah', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25785, 'Jabbar-al-\'Ali', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25786, 'Shu\'aybah', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25787, 'al-Ahmadi', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25788, 'al-Fintas', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25789, 'al-Fuhayhil', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25790, 'al-Mahbulah', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25791, 'al-Manqaf', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25792, 'al-Wafrah', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25793, 'ar-Riqqah', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25794, 'as-Sabahiyah', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25795, 'az-Zawr', 2088, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25796, '\'Umayriyah', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25797, 'Abraq Khitan', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25798, 'Ardiyah', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25799, 'Fardaws', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25800, 'Jalib ash-Shuyuh', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25801, 'Janub-as-Surrah', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25802, 'Khitan-al-Janubiyah', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25803, 'Qartaba', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25804, 'Ray', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25805, 'Riqay', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25806, 'Sabhan', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25807, 'Sarbah-an-Nasr', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25808, 'Warmawk', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25809, 'al-Andalus', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25810, 'al-Farwaniyah', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25811, 'ar-Rabbiyah', 2089, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25812, 'Amgarah', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25813, 'Desert Area', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25814, 'Nasim', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25815, 'Tayma\'', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25816, 'Uyawn', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25817, 'Waha', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25818, 'al-Jahra', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25819, 'al-Qusayr', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25820, 'as-Sulaybiyah', 2090, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25821, '\'Abullah-as-Salam', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25822, 'Ardhiyah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25823, 'Banayd-al-Qar', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25824, 'Health District', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25825, 'Kayfan', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25826, 'Khalidiyah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25827, 'Mansuriyah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25828, 'Nuzha', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25829, 'Qarnadah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25830, 'Shamiyah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25831, 'ad-Da\'iyah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25832, 'ad-Dasma', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25833, 'ad-Dawhah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25834, 'al-\'Udayliyah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25835, 'al-Fayha', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25836, 'al-Kuwayt', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25837, 'al-Qadisiyah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25838, 'ar-Rawdah', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25839, 'as-Sulaybihat', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25840, 'ash-Shuwaykh Industrial', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25841, 'ash-Shuwaykh Reservoir', 2091, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25842, 'Batken', 2092, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25843, 'Isfana', 2092, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25844, 'Khaidarkan', 2092, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25845, 'Kyzyl-Kiya', 2092, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25846, 'Ravat', 2092, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25847, 'Sulukta', 2092, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25848, 'Bishkek', 2093, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25849, 'Ak-Suu', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25850, 'Belovodskoye', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25851, 'Boroldoy', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25852, 'Chaldovar', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25853, 'Chatkyol', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25854, 'Chui', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25855, 'Don Arik', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25856, 'Ivanovka', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25857, 'Jangyjar', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25858, 'Jangypakhtar', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25859, 'Kalininskoye', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25860, 'Kalinovka', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25861, 'Kant', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25862, 'Kara-Suu', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25863, 'Karabalta', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25864, 'Kayingdi', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25865, 'Kegety', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25866, 'Kemin', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25867, 'Kosh Tegirmen', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25868, 'Krasnaya Rechka', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25869, 'Orlovka', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25870, 'Sokuluk', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25871, 'Sopokov', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25872, 'Sosnovka', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25873, 'Tokmok', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25874, 'Tunuk', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25875, 'Yuryevka', 2094, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25876, 'Ak-Bulok', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25877, 'Ak-Terek', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25878, 'Ananyevo', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25879, 'Balykchy', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25880, 'Barskoon', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25881, 'Cholpon-Ata', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25882, 'Darkhon', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25883, 'Enilchek', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25884, 'Grigoryevka', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25885, 'Jyrgolon', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25886, 'Kara-Say', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25887, 'Karako', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25888, 'Karakol', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25889, 'Kuturgu', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25890, 'Mikhaylovka', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25891, 'Novovoznesenovka', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25892, 'Ottuk', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25893, 'Semyonovka', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25894, 'Taldy-Suu', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25895, 'Teploklyuchenka', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25896, 'Tyup', 2095, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25897, 'Ala Buka', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25898, 'Bazarkurgon', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25899, 'Jalal-Abad', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25900, 'Jangybazar', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25901, 'Karavan', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25902, 'Kochkor-Ata', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25903, 'Kok-Jangak', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25904, 'Mailuu-Suu', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25905, 'Tash-Kumyr', 2096, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25906, 'At-Bashi', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25907, 'Chaiek', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25908, 'Kara-Suu', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25909, 'Kayirma', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25910, 'Kek-Algyp', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25911, 'Kochkorka', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25912, 'Kulanak', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25913, 'Mingbulok', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25914, 'Mingkush', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25915, 'Naryn', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25916, 'Ugyut', 2097, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25917, 'Daraut-Korgan', 2098, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25918, 'Gulcha', 2098, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25919, 'Kara-Suu', 2098, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25920, 'Leninskoye', 2098, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25921, 'Osh', 2098, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25922, 'Uzgen', 2098, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25923, 'Chat-Bazar', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25924, 'Groznoye', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25925, 'Kara-Kul', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25926, 'Klyuchevka', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25927, 'Kyzyl-Adyr', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25928, 'Leninopol', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25929, 'Maimak', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25930, 'Talas', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25931, 'Toktogul', 2099, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25932, 'Samakhixai', 2100, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25933, 'Huayxay', 2101, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25934, 'Pakxan', 2102, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25935, 'Champasak', 2103, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25936, 'Muang Khong', 2103, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25937, 'Muang Khongxedon', 2103, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25938, 'Pakxe', 2103, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25939, 'Xam Nua', 2104, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25940, 'Thakek', 2105, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25941, 'Ban Nahin', 2108, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25942, 'Phongsaly', 2109, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25943, 'Saravan', 2110, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25944, 'Savannakhet', 2111, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25945, 'Sekong', 2112, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25946, 'Xaignabury', 2115, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25947, 'Aizkraukle', 2117, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25948, 'Jaunjelgava', 2117, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25949, 'Plavinas', 2117, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25950, 'Aluksne', 2118, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25951, 'Ape', 2118, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25952, 'Balvi', 2119, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25953, 'Vilaka', 2119, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25954, 'Bauska', 2120, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25955, 'Cesis', 2121, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25956, 'Ligatne', 2121, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25957, 'Ilukste', 2122, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25958, 'Subate', 2122, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25959, 'Ilukste', 2123, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25960, 'Subate', 2123, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25961, 'Auce', 2124, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25962, 'Dobele', 2124, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25963, 'Gulbene', 2125, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25964, 'Akniste', 2126, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25965, 'Jekabspils', 2126, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25966, 'Viesite', 2126, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25967, 'Jelgava', 2127, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25968, 'Kalnciems', 2128, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25969, 'Dagda', 2130, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25970, 'Kraslava', 2130, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25971, 'Kuldiga', 2131, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25972, 'Skrunda', 2131, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25973, 'Liepaja', 2132, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25974, 'Aizpute', 2133, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25975, 'Durbe', 2133, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25976, 'Grobina', 2133, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25977, 'Pavilosta', 2133, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25978, 'Priekule', 2133, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25979, 'Ainazhi', 2134, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25980, 'Aloja', 2134, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25981, 'Limbazhi', 2134, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25982, 'Salacgriva', 2134, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25983, 'Staicele', 2134, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25984, 'Karsava', 2135, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25985, 'Ludza', 2135, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25986, 'Zilupe', 2135, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25987, 'Cesvaine', 2136, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25988, 'Lubana', 2136, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25989, 'Madona', 2136, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25990, 'Varaklani', 2136, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25991, 'Ikskile', 2137, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25992, 'Kegums', 2137, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25993, 'Les Hautes-Rivieres', 2137, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25994, 'Lielvarde', 2137, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25995, 'Ogre', 2137, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25996, 'Livani', 2138, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25997, 'Preili', 2138, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25998, 'Rezekne', 2139, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(25999, 'Vilani', 2140, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26000, 'Riga', 2141, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26001, 'Baldone', 2142, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26002, 'Balozhi', 2142, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26003, 'Olaine', 2142, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26004, 'Salaspils', 2142, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26005, 'Saulkrasti', 2142, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26006, 'Sigulda', 2142, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26007, 'Vangazhi', 2142, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26008, 'Broceni', 2143, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26009, 'Saldus', 2143, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26010, 'Sabile', 2144, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26011, 'Stende', 2144, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26012, 'Talsi', 2144, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26013, 'Valdemarpils', 2144, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26014, 'Kandava', 2145, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26015, 'Tukums', 2145, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26016, 'Seda', 2146, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26017, 'Smiltene', 2146, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26018, 'Strenchi', 2146, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26019, 'Valka', 2146, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26020, 'Mazsalaca', 2147, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26021, 'Rujiena', 2147, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26022, 'Valmiera', 2147, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26023, 'Piltene', 2148, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26024, 'Piltene', 2149, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26025, 'Beirut', 2150, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26026, 'Jdeidet el Metn', 2150, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26027, 'Jnaah', 2150, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26028, 'Sidon', 2154, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26029, 'Ba\'labakk', 2155, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26030, 'Jubb Jannin', 2155, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26031, 'Rashayya', 2155, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26032, 'Riyak', 2155, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26033, 'Zahlah', 2155, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26034, 'al-Hirmil', 2155, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26035, 'Jazzin', 2156, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26036, 'Juwayya', 2156, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26037, 'Sayda\'', 2156, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26038, 'Sur', 2156, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26039, 'Marj \'Uyun', 2157, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26040, 'Nabatieh', 2157, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26041, 'an-Nabatiyat-at-Tahta', 2157, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26042, 'Tarabulus ash-Sham', 2158, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26043, 'al-Batrun', 2158, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26044, 'Teyateyaneng', 2159, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26045, 'Butha Buthe', 2160, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26046, 'Hlotse', 2161, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26047, 'Maputsoa', 2161, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26048, 'Mafeteng', 2162, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26049, 'Maseru', 2163, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26050, 'Mokhotlong', 2165, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26051, 'Quthing', 2167, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26052, 'Thaba-Tseka', 2168, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26053, 'Tubmanburg', 2169, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26054, 'Gbarnga', 2170, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26055, 'Voinjama', 2174, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26056, 'Harbel', 2175, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26057, 'Kakata', 2175, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26058, 'Bensonville', 2177, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26059, 'Monrovia', 2177, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26060, 'Ganta', 2178, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(26061, 'Sanniquellie', 2178, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26062, 'Yekepa', 2178, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26063, 'Rivercess', 2179, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26064, 'Greenville', 2180, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26065, 'Ajdabiya', 2181, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26066, 'Awjilah', 2181, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26067, 'Marsa al-Burayqah', 2181, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26068, 'az-Zuwaytinah', 2181, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26069, 'Awbari', 2182, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26070, 'Ghat', 2182, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26071, 'Banghazi', 2183, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26072, 'Suluq', 2183, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26073, 'al-Quriyah', 2183, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26074, 'Darnah', 2184, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26075, 'Ghadamis', 2185, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26076, 'Nalut', 2185, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26077, 'Gharyan', 2186, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26078, 'Mizdah', 2186, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26079, 'al-Qaryah-ash-Sharqiyah', 2186, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26080, 'Misratah', 2187, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26081, 'Murzuq', 2188, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26082, 'Sabha', 2189, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26083, 'Bani Walid', 2190, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26084, 'Surt', 2191, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26085, 'Tarabulus', 2192, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26086, 'Tripoli', 2192, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26087, 'Tarhunah', 2193, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26088, 'Misrata', 2194, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26089, 'Bardiyah', 2195, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26090, 'Tubruq', 2195, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26091, 'Yafran', 2196, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26092, 'Zlitan', 2197, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26093, 'al-Aziziyah', 2198, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26094, 'al-Abyar', 2199, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26095, 'al-Marj', 2199, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26096, 'Waddan', 2201, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26097, 'al-Khums', 2202, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26098, 'al-Jawf', 2203, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26099, 'Birak', 2205, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26100, 'az-Zawiyah', 2206, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26101, 'Balzers', 2207, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26102, 'Eschen', 2208, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26103, 'Gamprin', 2209, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26104, 'Mauren', 2210, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26105, 'Planken', 2211, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26106, 'Ruggell', 2212, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26107, 'Schaan', 2213, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26108, 'Schellenberg', 2214, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26109, 'Triesen', 2215, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26110, 'Triesenberg', 2216, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26111, 'Vaduz', 2217, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26112, 'Alytus', 2218, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26113, 'Daugai', 2218, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26114, 'Druskininkai', 2218, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26115, 'Lazdijai', 2218, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26116, 'Simnas', 2218, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26117, 'Varena', 2218, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26118, 'Veisiejai', 2218, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26119, 'Anyksciai', 2219, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26120, 'Ariogala', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26121, 'Birshtonas', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26122, 'Dotnuva', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26123, 'Ezherelis', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26124, 'Garliava', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26125, 'Jieznas', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26126, 'Jonava', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26127, 'Kachergine', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26128, 'Kaishiadorys', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26129, 'Kaunas', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26130, 'Kedainiai', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26131, 'Kulautuva', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26132, 'Prienai', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26133, 'Raseiniai', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26134, 'Vilkija', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26135, 'Zhiezhmariai', 2220, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26136, 'Gargzhdai', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26137, 'Klaipeda', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26138, 'Kretinga', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26139, 'Neringa', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26140, 'Pagegiai', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26141, 'Palanga', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26142, 'Panemune', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26143, 'Priekule', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26144, 'Rusne', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26145, 'Salantai', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26146, 'Shilute', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26147, 'Skuodas', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26148, 'Zhemaichiu Naumiestis', 2221, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26149, 'Gelgaudishkis', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26150, 'Kalvarija', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26151, 'Kazlu Ruda', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26152, 'Kudirkos Naumiestis', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26153, 'Kybartai', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26154, 'Marijampole', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26155, 'Shakiai', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26156, 'Vilkavishkis', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26157, 'Virbalis', 2222, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26158, 'Birzhai', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26159, 'Jonishkelis', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26160, 'Juodupe', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26161, 'Kupishkis', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26162, 'Obeliai', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26163, 'Pandelys', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26164, 'Panevezhys', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26165, 'Panevezio', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26166, 'Pasvalys', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26167, 'Ramygala', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26168, 'Rokishkis', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26169, 'Subachius', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26170, 'Vabalninkas', 2223, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26171, 'Panevezys', 2224, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26172, 'Akmene', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26173, 'Jonishkis', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26174, 'Kelme', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26175, 'Kurshenai', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26176, 'Linkuva', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26177, 'Naujoji Akmene', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26178, 'Pakruojis', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26179, 'Radvilishkis', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26180, 'Sheduva', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26181, 'Shiauliai', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26182, 'Siauliai', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26183, 'Tyruliai', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26184, 'Tytuvenai', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26185, 'Uzhventis', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26186, 'Venta', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26187, 'Viekshniai', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26188, 'Zhagare', 2225, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26189, 'Jurbarkas', 2226, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26190, 'Shilale', 2226, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26191, 'Skaudvile', 2226, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26192, 'Smalininkai', 2226, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26193, 'Taurage', 2226, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26194, 'Guglingen', 2227, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26195, 'Mazheikiai', 2227, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26196, 'Plunge', 2227, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26197, 'Rietavas', 2227, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26198, 'Seda', 2227, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26199, 'Telshiai', 2227, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26200, 'Varniai', 2227, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26201, 'Mazeikiai', 2228, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26202, 'Anykshchiai', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26203, 'Dukshtas', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26204, 'Dusetos', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26205, 'Ignalina', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26206, 'Kavarskas', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26207, 'Moletai', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26208, 'Troshkunai', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26209, 'Turmantas', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26210, 'Utena', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26211, 'Visaginas', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26212, 'Zarasai', 2229, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26213, 'Baltoji Voke', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26214, 'Eishishkes', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26215, 'Elektrenai', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26216, 'Grigishkes', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26217, 'Lentvaris', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26218, 'Nemenchine', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26219, 'Pabrade', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26220, 'Rudishkes', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26221, 'Shalchininkai', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26222, 'Shirvintos', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26223, 'Shvenchioneliai', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26224, 'Shvenchionys', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26225, 'Trakai', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26226, 'Ukmerge', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26227, 'Vievis', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26228, 'Vilnius', 2230, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26229, 'Bascharage', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26230, 'Bettange-sur-Mess', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26231, 'Bridel', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26232, 'Capellen', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26233, 'Clemency', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26234, 'Dahlem', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26235, 'Dippach', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26236, 'Dondelange', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26237, 'Eischen', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26238, 'Fingig', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26239, 'Garnich', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26240, 'Goeblange', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26241, 'Goetzingen', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26242, 'Grass', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26243, 'Greisch', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26244, 'Hagen', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26245, 'Hautcharage', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26246, 'Hivange', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26247, 'Hobscheid', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26248, 'Holzem', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26249, 'Kahler', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26250, 'Kehlen', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26251, 'Keispelt', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26252, 'Kleinbettingen', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26253, 'Koerich', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26254, 'Kospstal', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26255, 'Linger', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26256, 'Mamer', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26257, 'Meispelt', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26258, 'Nospelt', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26259, 'Olm', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26260, 'Roodt', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26261, 'Schouweiler', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26262, 'Septfontaines', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26263, 'Sprinkange', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26264, 'Steinfort', 2231, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26265, 'Allerborn', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26266, 'Asselborn', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26267, 'Basbellain', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26268, 'Beiler', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26269, 'Binsfeld', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26270, 'Biwisch', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26271, 'Bockholtz', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26272, 'Boevange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26273, 'Boxhorn', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26274, 'Brachtenbach', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26275, 'Breidfeld', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26276, 'Cinqfontaines', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26277, 'Clervaux', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26278, 'Consthum', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26279, 'Crendal', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26280, 'Deiffelt-Lentzweiler', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26281, 'Derenbach', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26282, 'Doennange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26283, 'Dorscheid', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26284, 'Drauffelt', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26285, 'Drinklange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26286, 'Eisenbach', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26287, 'Eselborn', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26288, 'Fischbach', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26289, 'Goedange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26290, 'Grindhausen', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26291, 'Hachiville', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26292, 'Hamiville', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26293, 'Hautbellain', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26294, 'Heinerscheid', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26295, 'Hoffelt', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26296, 'Holler', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26297, 'Holzthum', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26298, 'Hosingen', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26299, 'Huldange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26300, 'Hupperdange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26301, 'Kalborn', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26302, 'Leithum', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26303, 'Lieler', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26304, 'Lullange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26305, 'Marnach', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26306, 'Maulusmuehle', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26307, 'Munshausen', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26308, 'Neidhausen', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26309, 'Niederwampach-Schimpach', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26310, 'Oberwampach', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26311, 'Reuler', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26312, 'Roder', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26313, 'Rodershausen', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26314, 'Rumlange-Lentzweiler', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26315, 'Sassel', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26316, 'Siebenaler', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26317, 'Stockem', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26318, 'Troine-Hinterhasselt', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26319, 'Troine-Route', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26320, 'Troisvierges', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26321, 'Urspelt', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26322, 'Wahlhausen', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26323, 'Weicherdange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26324, 'Weiler', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26325, 'Weiswampach', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26326, 'Wilwerdange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26327, 'Wincrange', 2232, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26328, 'Bastendorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26329, 'Bettendorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26330, 'Bigelbach', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26331, 'Bourscheid', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26332, 'Brandenbourg', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26333, 'Burden', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26334, 'Diekirch', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26335, 'Eppeldorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26336, 'Ermsdorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26337, 'Erpeldange', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26338, 'Ettelbruck', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26339, 'Folkendange', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26340, 'Gilsdorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26341, 'Hoesdorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26342, 'Hoscheid', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26343, 'Hoscheid-Dickt', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26344, 'Ingeldorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26345, 'Kehmen-Scheidel', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26346, 'Landscheid', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26347, 'Lipperscheid', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26348, 'Medernach', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26349, 'Mertzig', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26350, 'Michelau', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26351, 'Moestroff', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26352, 'Niederfeulen', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26353, 'Oberfeulen', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26354, 'Reisdorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26355, 'Savelborn + Fermes', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26356, 'Schieren', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26357, 'Schlindermanderscheid', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26358, 'Stegen', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26359, 'Tandel', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26360, 'Wallendorf', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26361, 'Warken', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26362, 'Welscheid', 2233, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26363, 'Altrier', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26364, 'Beaufort', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26365, 'Bech', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26366, 'Berdorf', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26367, 'Bollendorf-Pont', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26368, 'Born', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26369, 'Boursdorf', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26370, 'Breidweiler', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26371, 'Christnach', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26372, 'Consdorf', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26373, 'Dickweiler', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26374, 'Dillingen', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26375, 'Echternach', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26376, 'Girst', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26377, 'Girsterklaus', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26378, 'Givenich', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26379, 'Grundhof', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26380, 'Haller', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26381, 'Hemstal', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26382, 'Herborn', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26383, 'Hersberg-Kobenbour-Graulinster', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26384, 'Hinkel', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26385, 'Moersdorf', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26386, 'Mompach', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26387, 'Mullerthal', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26388, 'Osweiler', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26389, 'Rippig', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26390, 'Rosport', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26391, 'Scheidgen', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26392, 'Steinheim', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26393, 'Waldbillig', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26394, 'Weilerbach', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26395, 'Zittig', 2234, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26396, 'Abweiler', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26397, 'Aspelt', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26398, 'Belvaux', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26399, 'Berchem', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26400, 'Bergem', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26401, 'Bettembourg', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26402, 'Bivange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26403, 'Crauthem', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26404, 'Differdange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26405, 'Dudelange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26406, 'Ehlange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26407, 'Ehlerange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26408, 'Esch-Alzette', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26409, 'Fennange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26410, 'Foetz', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26411, 'Fousbann', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26412, 'Frisange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26413, 'Hellange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26414, 'Huncherange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26415, 'Kayl', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26416, 'Kockelscheuer', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26417, 'Lamadelaine', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26418, 'Lasauvage', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26419, 'Leudelange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26420, 'Limpach', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26421, 'Livange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26422, 'Mondercange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26423, 'Niedercorn', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26424, 'Noertzange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26425, 'Obercorn', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26426, 'Peppange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26427, 'Petange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26428, 'Pissange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26429, 'Pontpierre', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26430, 'Reckange-sur-Mess', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26431, 'Rodange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26432, 'Roedgen', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26433, 'Roeser', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26434, 'Rumelange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26435, 'Sanem', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26436, 'Schifflange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26437, 'Soleuvre', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26438, 'Tetange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26439, 'Wickrange', 2235, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26440, 'Ahn-Dreiborn', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26441, 'Altlinster', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26442, 'Beidweiler', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26443, 'Berbourg', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26444, 'Berg', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26445, 'Betzdorf', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26446, 'Beyren', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26447, 'Biwer', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26448, 'Biwerbach', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26449, 'Boudler', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26450, 'Boudlerbach', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26451, 'Bourglinster', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26452, 'Breinert', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26453, 'Brouch', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26454, 'Ehnen', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26455, 'Eisenborn', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26456, 'Eschweiler', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26457, 'Flaxweiler', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26458, 'Godbrange', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26459, 'Gonderange', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26460, 'Gostingen', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26461, 'Graulinster-Blumenthal', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26462, 'Grevenmacher', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26463, 'Hagelsdorf', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26464, 'Imbringen', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26465, 'Junglinster', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26466, 'Lellig', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26467, 'Machtum', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26468, 'Manternach', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26469, 'Mensdorf', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26470, 'Mertert', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26471, 'Munschecker', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26472, 'Niederdonven', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26473, 'Oberdonven', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26474, 'Olingen', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26475, 'Rodenbourg', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26476, 'Roodt-sur-Syr', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26477, 'Wasserbillig', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26478, 'Wecker', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26479, 'Wecker-Gare', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26480, 'Weydig', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26481, 'Wormeldange', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26482, 'Wormeldange-Haut', 2236, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26483, 'Alzingen', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26484, 'Bereldange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26485, 'Bertrange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26486, 'Contern', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26487, 'Ernster', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26488, 'Fentange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26489, 'Findel', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26490, 'Hassel', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26491, 'Heisdorf', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26492, 'Helmsange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26493, 'Hesperange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26494, 'Hostert', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26495, 'Howald', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26496, 'Itzig', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26497, 'Luxembourg', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26498, 'Medingen', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26499, 'Moutfort', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26500, 'Mullendorf', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26501, 'Munsbach', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26502, 'Neuhaeusgen', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26503, 'Niederanven', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26504, 'Oberanven', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26505, 'Oetrange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26506, 'Rameldange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26507, 'Sandweiler', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26508, 'Schrassig', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26509, 'Schuttrange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26510, 'Senningen', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26511, 'Senningerberg', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26512, 'Steinsel', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26513, 'Strassen', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26514, 'Syren', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26515, 'Uebersyren', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26516, 'Waldhof', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26517, 'Walferdange', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26518, 'Weiler-la-Tour', 2237, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26519, 'Angelsberg', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26520, 'Ansembourg', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26521, 'Beringen', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26522, 'Bissen', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26523, 'Blaschette', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26524, 'Boevange-Attert', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26525, 'Bofferdange', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26526, 'Bour', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26527, 'Brouch', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26528, 'Buschdorf', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26529, 'Colmar-Berg', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26530, 'Cruchten', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26531, 'Ernzen', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26532, 'Essingen', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26533, 'Fischbach', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26534, 'Glabach', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26535, 'Gosseldange', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26536, 'Grevenknapp-Bill-Finsterthal', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26537, 'Heffingen', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26538, 'Helmdange', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26539, 'Hollenfels', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26540, 'Hunsdorf', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26541, 'Larochette', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26542, 'Lintgen', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26543, 'Lorentzweiler', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26544, 'Marienthal', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26545, 'Mersch', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26546, 'Moesdorf', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26547, 'Nommern', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26548, 'Pettingen', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26549, 'Prettange', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26550, 'Reckange', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26551, 'Reuland', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26552, 'Rollingen', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26553, 'Scherbach', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26554, 'Scherfenhof', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26555, 'Schiltzberg', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26556, 'Schoenfels', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26557, 'Schoos', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26558, 'Schrondweiler', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26559, 'Tuntange', 2238, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26560, 'Arsdorf', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26561, 'Beckerich', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26562, 'Bettborn', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26563, 'Bigonville', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26564, 'Bilsdorf', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26565, 'Brattert-Rindschleiden', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26566, 'Buschrodt', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26567, 'Calmus', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26568, 'Colpach-Bas', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26569, 'Colpach-Haut', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26570, 'Dellen-Lehrhof-Grevels', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26571, 'Ehner', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26572, 'Ell', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26573, 'Eltz', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26574, 'Elvange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26575, 'Eschette', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26576, 'Everlange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26577, 'Folschette', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26578, 'Grevels', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26579, 'Grosbous', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26580, 'Haut-Martelange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26581, 'Heispelt', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26582, 'Holtz', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26583, 'Hostert', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26584, 'Hovelange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26585, 'Huttange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26586, 'Kapweiler', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26587, 'Koetschette', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26588, 'Kuborn', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26589, 'Lannen', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26590, 'Levelange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26591, 'Michelbouch', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26592, 'Nagem', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26593, 'Niederpallen', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26594, 'Noerdange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26595, 'Oberpallen', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26596, 'Ospern', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26597, 'Perle', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26598, 'Petit-Nobressart', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26599, 'Platen', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26600, 'Pratz', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26601, 'Rambrouch', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26602, 'Redange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26603, 'Reichlange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26604, 'Reimberg', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26605, 'Rippweiler', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26606, 'Rombach', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26607, 'Roodt', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26608, 'Saeul', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26609, 'Schandel', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26610, 'Schwebach', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26611, 'Schweich', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26612, 'Useldange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26613, 'Vichten', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26614, 'Wahl', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26615, 'Wolwelange', 2239, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26616, 'Altwies', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26617, 'Assel', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26618, 'Bech-Kleinmacher', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26619, 'Bous', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26620, 'Burmerange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26621, 'Canach', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26622, 'Dalheim', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26623, 'Ellange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26624, 'Elvange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26625, 'Emerange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26626, 'Erpeldange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26627, 'Filsdorf', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26628, 'Greiveldange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26629, 'Lenningen', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26630, 'Mondorf-les-Bains', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26631, 'Remerschen', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26632, 'Remich', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26633, 'Rolling', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26634, 'Schengen', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(26635, 'Schwebsingen', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26636, 'Stadtbredimus', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26637, 'Trintange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26638, 'Trintange-Ersange-Roedt', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26639, 'Waldbredimus', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26640, 'Welfrange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26641, 'Wellenstein', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26642, 'Wintrange', 2240, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26643, 'Bettel', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26644, 'Bivels', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26645, 'Fouhren', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26646, 'Gralingen', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26647, 'Longsdorf', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26648, 'Merscheid', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26649, 'Nachtmanderscheid', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26650, 'Putscheid', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26651, 'Stolzembourg', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26652, 'Vianden', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26653, 'Walsdorf', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26654, 'Weiler', 2241, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26655, 'Alscheid', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26656, 'Baschleiden', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26657, 'Bavigne', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26658, 'Berle', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26659, 'Bockholtz', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26660, 'Boulaide', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26661, 'Buderscheid', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26662, 'Dahl', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26663, 'Doncols', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26664, 'Enscherange', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26665, 'Erpeldange', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26666, 'Esch-sur-Sure', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26667, 'Eschdorf', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26668, 'Eschweiler', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26669, 'Goesdorf', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26670, 'Grumelscheid', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26671, 'Harlange', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26672, 'Heiderscheid', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26673, 'Heiderscheid-Fond', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26674, 'Hierheck', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26675, 'Insenborn', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26676, 'Kaundorf', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26677, 'Kautenbach', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26678, 'Knaphoscheid', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26679, 'Lellingen', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26680, 'Liefrange', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26681, 'Lultzhausen', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26682, 'Masseler', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26683, 'Mecher', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26684, 'Merckholtz', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26685, 'Merscheid', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26686, 'Neunhausen', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26687, 'Nocher', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26688, 'Nocher-Route', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26689, 'Noertrange', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26690, 'Nothum', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26691, 'Pintsch', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26692, 'Pommerloch', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26693, 'Schleif', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26694, 'Selscheid', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26695, 'Sonlez', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26696, 'Surre', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26697, 'Tadler-Ringel-Dirbach', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26698, 'Tarchamps', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26699, 'Watrange', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26700, 'Wiltz', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26701, 'Wilwerwiltz', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26702, 'Winseler', 2242, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26703, 'Macau', 2243, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26704, 'Berovo', 2244, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26705, 'Pehchevo', 2244, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26706, 'Bach', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26707, 'Bistrica', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26708, 'Bitola', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26709, 'Capari', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26710, 'Dobrushevo', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26711, 'Kukurechani', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26712, 'Mogila', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26713, 'Novaci', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26714, 'Staravina', 2245, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26715, 'Brod', 2246, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26716, 'Plasnica', 2246, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26717, 'Samokov', 2246, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26718, 'Debar', 2247, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26719, 'Zhupa', 2247, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26720, 'Delchevo', 2248, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26721, 'Kamenica', 2248, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26722, 'Bogdanci', 2250, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26723, 'Gevgelija', 2250, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26724, 'Miravci', 2250, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26725, 'Star Dojran', 2250, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26726, 'Chegrane', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26727, 'Dolna Banjica', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26728, 'Gostivar', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26729, 'Mavrovi Anovi', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26730, 'Negotino-Poloshko', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26731, 'Rostusha', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26732, 'Srbinovo', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26733, 'Vrapchishte', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26734, 'Vrutok', 2251, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26735, 'Kavadarci', 2252, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26736, 'Konopishte', 2252, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26737, 'Rosoman', 2252, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26738, 'Drugovo', 2253, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26739, 'Kichevo', 2253, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26740, 'Oslomej', 2253, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26741, 'Vraneshtica', 2253, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26742, 'Zajas', 2253, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26743, 'Cheshinovo', 2254, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26744, 'Kochani', 2254, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26745, 'Obleshevo', 2254, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26746, 'Zletovo', 2254, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26747, 'Kratovo', 2255, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26748, 'Krushevo', 2257, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26749, 'Zhitoshe', 2257, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26750, 'Izvor', 2258, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26751, 'Klechevce', 2258, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26752, 'Kumanovo', 2258, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26753, 'Lipkovo', 2258, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26754, 'Orashac', 2258, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26755, 'Staro Nagorichane', 2258, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26756, 'Demir Kapija', 2259, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26757, 'Negotino', 2259, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26758, 'Belchishta', 2260, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26759, 'Kosel', 2260, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26760, 'Mesheishta', 2260, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26761, 'Ohrid', 2260, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26762, 'Dolneni', 2261, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26763, 'Krivogashtani', 2261, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26764, 'Prilep', 2261, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26765, 'Topolchani', 2261, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26766, 'Vitolishte', 2261, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26767, 'Probishtip', 2262, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26768, 'Konche', 2263, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26769, 'Podaresh', 2263, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26770, 'Radovish', 2263, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26771, 'Resen', 2264, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26772, 'Karbinci', 2265, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26773, 'Shtip', 2265, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26774, 'Stip', 2265, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26775, 'Arachinovo', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26776, 'Chucher', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26777, 'Ilinden', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26778, 'Kondovo', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26779, 'Petrovec', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26780, 'Saraj', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26781, 'Skopje', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26782, 'Sopishte', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26783, 'Studenichani', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26784, 'Zelenikovo', 2266, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26785, 'Delogozhdi', 2267, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26786, 'Labunishta', 2267, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26787, 'Lukovo', 2267, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26788, 'Struga', 2267, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26789, 'Veleshta', 2267, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26790, 'Vevchani', 2267, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26791, 'Bosilovo', 2268, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26792, 'Kuklish', 2268, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26793, 'Murtino', 2268, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26794, 'Novo Selo', 2268, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26795, 'Strumica', 2268, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26796, 'Vasilevo', 2268, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26797, 'Bogovinje', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26798, 'Brvenica', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26799, 'Dzhepchishte', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26800, 'Jegunovce', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26801, 'Kamenjance', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26802, 'Shipkovica', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26803, 'Tearce', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26804, 'Tetovo', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26805, 'Vratnica', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26806, 'Zhelino', 2270, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26807, 'Valandovo', 2271, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26808, 'Bogomila', 2272, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26809, 'Chashka', 2272, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26810, 'Gradsko', 2272, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26811, 'Veles', 2272, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26812, 'Blatec', 2273, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26813, 'Orizari', 2273, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26814, 'Vinica', 2273, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26815, 'Zrnovci', 2273, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26816, 'Ambatolampy', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26817, 'Anjozorobe', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26818, 'Ankazobe', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26819, 'Antananarivo', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26820, 'Antanifotsy', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26821, 'Antsirabe', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26822, 'Arivonimamo', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26823, 'Betafo', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26824, 'Faratsiho', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26825, 'Fenoarivo', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26826, 'Manjakandriana', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26827, 'Soavinandriana', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26828, 'Tsiroanomandidy', 2274, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26829, 'Ambanja', 2275, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26830, 'Ambilobe', 2275, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26831, 'Andapa', 2275, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26832, 'Antalaha', 2275, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26833, 'Antsirambazaha', 2275, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26834, 'Antsiranana', 2275, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26835, 'Sambava', 2275, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26836, 'Ambalavao', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26837, 'Ambatofinandrahana', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26838, 'Ambositra', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26839, 'Fandriana', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26840, 'Farafangana', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26841, 'Fianarantsoa', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26842, 'Ifanadiana', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26843, 'Ihosy', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26844, 'Ikalamavony', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26845, 'Ikongo', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26846, 'Manakara', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26847, 'Manandriana', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26848, 'Mananjary', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26849, 'Nosy Varika', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26850, 'Vangaindrano', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26851, 'Vondrozo', 2276, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26852, 'Ambato Boina', 2277, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26853, 'Antsohihy', 2277, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26854, 'Bealanana', 2277, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26855, 'Mahajanga', 2277, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26856, 'Marovoay', 2277, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26857, 'Tsaratanana', 2277, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26858, 'Ambatondrazaka', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26859, 'Ambodifototra', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26860, 'Amparafaravola', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26861, 'Andevoranto', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26862, 'Andilamena', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26863, 'Anosibe An\'ala', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26864, 'Fenoarivo Atsinanana', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26865, 'Mahanoro', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26866, 'Mananara', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26867, 'Maroantsetra', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26868, 'Marolambo', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26869, 'Moramanga', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26870, 'Soanierana Ivongo', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26871, 'Toamasina', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26872, 'Vavatenina', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26873, 'Vohibinany', 2278, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26874, 'Amboasary', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26875, 'Ambovombe', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26876, 'Ampanihy', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26877, 'Ankazoabo', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26878, 'Beloha', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26879, 'Belon\'i Tsiribihina', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26880, 'Beroroha', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26881, 'Betioky', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26882, 'Miandrivazo', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26883, 'Morondava', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26884, 'Sakaraha', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26885, 'Taolanaro', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26886, 'Toliary', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26887, 'Tsihombe', 2279, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26888, 'Balaka', 2280, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26889, 'Chikwawa', 2282, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26890, 'Chiradzulu', 2283, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26891, 'Chitipa', 2284, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26892, 'Chipoka', 2285, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26893, 'Dedza', 2285, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26894, 'Dowa', 2286, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26895, 'Mponela', 2286, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26896, 'Chilumba', 2287, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26897, 'Karonga', 2287, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26898, 'Livingstonia', 2287, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26899, 'Kasungu', 2288, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26900, 'Liwonde', 2290, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26901, 'Machinga', 2290, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26902, 'Mangochi', 2291, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26903, 'Monkey Bay', 2291, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26904, 'Mchinji', 2292, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26905, 'Mulanje', 2293, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26906, 'Mwanza', 2294, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26907, 'Mzimba', 2295, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26908, 'Nkhotakota', 2298, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26909, 'Nsanje', 2299, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26910, 'Ntcheu', 2300, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26911, 'Ntchisi', 2301, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26912, 'Phalombe', 2302, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26913, 'Rumphi', 2303, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26914, 'Salima', 2304, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26915, 'Luchenza', 2305, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26916, 'Thyolo', 2305, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26917, 'Bandar Maharani', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26918, 'Bandar Penggaram', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26919, 'Bukit Bakri', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26920, 'Buloh Kasap', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26921, 'Chaah', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26922, 'Johor Bahru', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26923, 'Kelapa Sawit', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26924, 'Kluang', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26925, 'Kota Tinggi', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26926, 'Kulai', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26927, 'Labis', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26928, 'Ledang', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26929, 'Masai', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26930, 'Mersing', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26931, 'Parit Raja', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26932, 'Pasir Gudang', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26933, 'Pekan Nenas', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26934, 'Pontian Kecil', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26935, 'Segamat', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26936, 'Sekudai', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26937, 'Senai', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26938, 'Simpang Rengam', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26939, 'Tangkak', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26940, 'Ulu Tiram', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26941, 'Yong Peng', 2307, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26942, 'Alor Setar', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26943, 'Bailing', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26944, 'Bedong', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26945, 'Gurun', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26946, 'Jitra', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26947, 'Kuah', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26948, 'Kuala Kedah', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26949, 'Kulim', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26950, 'Langgar', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26951, 'Sungai Petani', 2308, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26952, 'Gua Musang', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26953, 'Kadok', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26954, 'Kota Bahru', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26955, 'Kuala Krai', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26956, 'Pangkal Kalong', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26957, 'Pasir Mas', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26958, 'Peringat', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26959, 'Tanah Merah', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26960, 'Tumpat', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26961, 'Wakaf Baru', 2309, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26962, 'Labuan', 2311, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26963, 'Alor Gajah', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26964, 'Ayer Keroh', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26965, 'Ayer Molek', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26966, 'Batu Berendam', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26967, 'Bemban', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26968, 'Bukit Baru', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26969, 'Bukit Rambai', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26970, 'Klebang', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26971, 'Kuala Sungai Baru', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26972, 'Malacca', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26973, 'Masjid Tanah', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26974, 'Melaka', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26975, 'Pulau Sebang', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26976, 'Sungai Udang', 2312, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26977, 'Bandar Jengka Pusat', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26978, 'Bentong', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26979, 'Bukit Tinggi', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26980, 'Jerantut', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26981, 'Karak', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26982, 'Kuala Lipis', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26983, 'Kuantan', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26984, 'Mentakab', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26985, 'Pekan', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26986, 'Pulau Pinang', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26987, 'Raub', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26988, 'Temerloh', 2315, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26989, 'Bayan Lepas', 2316, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26990, 'Church Town', 2316, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26991, 'George Town', 2316, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26992, 'Ayer Tawar', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26993, 'Bagan Serai', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26994, 'Batu Gajah', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26995, 'Bidor', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26996, 'Ipoh', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26997, 'Jelapang', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26998, 'Kampar', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(26999, 'Kampong Koh', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27000, 'Kuala Kangsar', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27001, 'Lawan Kuda Baharu', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27002, 'Lumut', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27003, 'Pantai Remis', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27004, 'Parit Buntar', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27005, 'Perak', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27006, 'Pusing', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27007, 'Simpang Empat', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27008, 'Sungai Siput Utara', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27009, 'Taiping', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27010, 'Tanjong Malim', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27011, 'Tapah', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27012, 'Teluk Intan', 2317, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27013, 'Kangar', 2318, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27014, 'Kuala Perlis', 2318, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27015, 'Beaufort', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27016, 'Donggongon', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27017, 'Keningau', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27018, 'Kinarut', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27019, 'Kota Belud', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27020, 'Kota Kinabalu', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27021, 'Kudat', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27022, 'Kunak', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27023, 'Lahad Datu', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27024, 'Papar', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27025, 'Putatan', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27026, 'Ranau', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27027, 'Sandakan', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27028, 'Semporna', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27029, 'Tawau', 2320, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27030, 'Batu Delapan Bazaar', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27031, 'Bintulu', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27032, 'Kapit', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27033, 'Kota Samarahan', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27034, 'Kuching', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27035, 'Limbang', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27036, 'Miri', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27037, 'Sarawak', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27038, 'Sarikel', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27039, 'Sibu', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27040, 'Sri Aman', 2321, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27041, 'Ampang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27042, 'Ampang Jaya', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27043, 'Balakong', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27044, 'Bandar Baru Bangi', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27045, 'Bandar Baru Salak Tinggi', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27046, 'Bander Baro Bangi', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27047, 'Banting', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27048, 'Batang Berjuntai', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27049, 'Batu Arang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27050, 'Batu Sembilan Cheras', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27051, 'Beranang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27052, 'Bukit Beruntung', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27053, 'Cyberjaya', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27054, 'Darul Ehsan', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27055, 'Dungun', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27056, 'Gombak Setia', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27057, 'Jenjarom', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27058, 'Kajang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27059, 'Kajang-Sungai Chua', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27060, 'Klang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27061, 'Kuala Kubu Baru', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27062, 'Kuala Selangor', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27063, 'Kuang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27064, 'Pengkalan Kundang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27065, 'Petaling Jaya', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27066, 'Port Klang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27067, 'Puchong', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27068, 'Rawang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27069, 'Sabak', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27070, 'Sekinchan', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27071, 'Selayang Baru', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27072, 'Semenyih', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27073, 'Serendah', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27074, 'Seri Kembangan', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27075, 'Shah Alam', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27076, 'Subang Jaya', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27077, 'Sungai Besar', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27078, 'Sungai Buloh', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27079, 'Sungai Pelek', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27080, 'Taman Greenwood', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27081, 'Tanjong Karang', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27082, 'Tanjong Sepat', 2322, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27083, 'Bahaiyah', 2323, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27084, 'Langkap', 2323, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27085, 'Cukai', 2324, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27086, 'Jertih', 2324, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27087, 'Kemaman', 2324, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27088, 'Kerteh', 2324, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27089, 'Kuala Terengganu', 2324, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27090, 'Marang', 2324, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27091, 'Paka', 2324, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27092, 'Serdang', 2324, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27093, 'Dharavandhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27094, 'Dhonfanu', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27095, 'Eydhafushi', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27096, 'Fehendhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27097, 'Fulhadhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27098, 'Goidhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27099, 'Hithaadhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27100, 'Kamadhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27101, 'Kendhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27102, 'Kihaadhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27103, 'Kudarikilu', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27104, 'Maalhos', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27105, 'Thulhaadhoo', 2327, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27106, 'Badidhoo', 2328, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27107, 'Gemendhoo', 2328, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27108, 'Hulhudheli', 2328, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27109, 'Kudahuvadhoo', 2328, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27110, 'Maaeboodhoo', 2328, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27111, 'Meedhoo', 2328, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27112, 'Ribudhoo', 2328, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27113, 'Vaanee', 2328, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27114, 'Biledhdhoo', 2329, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27115, 'Dharaboodhoo', 2329, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27116, 'Feeali', 2329, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27117, 'Magoodhoo', 2329, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27118, 'Nilandhoo', 2329, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27119, 'Fuvammulah', 2332, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27120, 'Dhiffushi', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27121, 'Gaafaru', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27122, 'Gulhi', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27123, 'Guraidhoo', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27124, 'Himmafushi', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27125, 'Huraa', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27126, 'Kaashidhoo', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27127, 'Maafushi', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27128, 'Thulusdhoo', 2335, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27129, 'Dhabidhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27130, 'Fonadhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27131, 'Gaadhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27132, 'Gamu', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27133, 'Hithadhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27134, 'Isdhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27135, 'Kalhaidhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27136, 'Kunahandhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27137, 'Maabaidhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27138, 'Maamendhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27139, 'Maavah', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27140, 'Mundhoo', 2336, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27141, 'Hinnavaru', 2337, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27142, 'Kurendhoo', 2337, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27143, 'Maafilaafushi', 2337, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27144, 'Naifaru', 2337, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27145, 'Olhuvelifushi', 2337, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27146, 'Dhiggaru', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27147, 'Kolhufushi', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27148, 'Madifushi', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27149, 'Maduvvari', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27150, 'Mulah', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27151, 'Muli', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27152, 'Naalaafushi', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27153, 'Raimandhoo', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27154, 'Veyvah', 2339, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27155, 'Fodhdhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27156, 'Hebadhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27157, 'Holhudhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27158, 'Kedhikolhudhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27159, 'Kudafari', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27160, 'Landhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27161, 'Lhohi', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27162, 'Maafaru', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27163, 'Maalhendhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27164, 'Magoodhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27165, 'Manadhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27166, 'Miladhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27167, 'Velidhoo', 2340, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27168, 'Agolhitheemu', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27169, 'Alifushi', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27170, 'Fainu', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27171, 'Hulhudhuffaaru', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27172, 'Iguraidhoo', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27173, 'Innamaadhoo', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27174, 'Kadholhudhoo', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27175, 'Kinolhas', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27176, 'Maakurathu', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27177, 'Maduvvari', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27178, 'Meedhoo', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27179, 'Rasgetheemu', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27180, 'Rasmaadhoo', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27181, 'Ugoofaaru', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27182, 'Vaadhoo', 2341, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27183, 'Bilehffahi', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27184, 'Feevah', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27185, 'Feydhoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27186, 'Firubaidhoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27187, 'Foakaidhoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27188, 'Funadhoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27189, 'Goidhoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27190, 'Kaditheemu', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27191, 'Komandoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27192, 'Lhaimagu', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27193, 'Maakandoodhoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27194, 'Maaugoodhoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27195, 'Maroshi', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27196, 'Narudhoo', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27197, 'Noomaraa', 2342, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27198, 'Feydhoo', 2343, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27199, 'Hithadhoo', 2343, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27200, 'Hulhudhoo', 2343, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27201, 'Maradhoo', 2343, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27202, 'Maradhoo-Feydhoo', 2343, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27203, 'Meedhoo', 2343, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27204, 'Buruni', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27205, 'Dhiyamigili', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27206, 'Gaadhiffushi', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27207, 'Guraidhoo', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(27208, 'Hirilandhoo', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27209, 'Kadoodhoo', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27210, 'Kibidhoo', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27211, 'Madifushi', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27212, 'Omadhoo', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27213, 'Thimarafushi', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27214, 'Vandhoo', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27215, 'Veymandhoo', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27216, 'Vilufushi', 2344, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27217, 'Felidhoo', 2345, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27218, 'Fulidhoo', 2345, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27219, 'Keyodhoo', 2345, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27220, 'Rakeedhoo', 2345, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27221, 'Thinadhoo', 2345, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27222, 'Bamako', 2346, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27223, 'Gao', 2347, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27224, 'Bafoulabe', 2348, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27225, 'Kayes', 2348, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27226, 'Kita', 2348, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27227, 'Nioro', 2348, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27228, 'Kidal', 2349, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27229, 'Tessalit', 2349, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27230, 'Banamba', 2350, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27231, 'Kangaba', 2350, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27232, 'Kati', 2350, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27233, 'Kolokani', 2350, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27234, 'Koulikoro', 2350, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27235, 'Nara', 2350, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27236, 'Bandiagara', 2351, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27237, 'Djenne', 2351, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27238, 'Douentza', 2351, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27239, 'Koro', 2351, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27240, 'Mopti', 2351, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27241, 'Tenenkou', 2351, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27242, 'Ke-Massina', 2352, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27243, 'Kimparana', 2352, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27244, 'Markala', 2352, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27245, 'Niono', 2352, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27246, 'San', 2352, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27247, 'Segou', 2352, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27248, 'Sokolo', 2352, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27249, 'Bougouni', 2353, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27250, 'Kolondieba', 2353, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27251, 'Koutiala', 2353, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27252, 'Sikasso', 2353, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27253, 'Yorosso', 2353, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27254, 'Araouane', 2354, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27255, 'Dire', 2354, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27256, 'Goundam', 2354, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27257, 'Niafunke', 2354, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27258, 'Taoudenni', 2354, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27259, 'Tombouctou', 2354, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27260, 'Gharghur', 2357, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27261, 'Mellieha', 2357, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27262, 'Mgarr', 2357, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27263, 'Mosta', 2357, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27264, 'Naxxar', 2357, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27265, 'San Pawl il-Bahar', 2357, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27266, 'L-Iklin', 2360, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27267, 'Attard', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27268, 'Balzan', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27269, 'Dingli', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27270, 'Iklin', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27271, 'Lija', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27272, 'Mdina', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27273, 'Rabat', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27274, 'Sighghiewi', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27275, 'Zebbug', 2361, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27276, 'Castletown', 2362, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27277, 'Douglas', 2363, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27278, 'Laxey', 2364, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27279, 'Onchan', 2365, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27280, 'Peel', 2366, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27281, 'Ramsey', 2369, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27282, 'Aerok', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27283, 'Beran', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27284, 'Bikeer', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27285, 'Buoj', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27286, 'Enewe', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27287, 'Jabwan', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27288, 'Jah', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27289, 'Jeh', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27290, 'Kattiej', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27291, 'Mejajok', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27292, 'Mejil', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27293, 'Tobomaro', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27294, 'Woja', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27295, 'Wolar', 2370, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27296, 'Ailuk', 2371, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27297, 'Ajelep', 2371, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27298, 'Aliej', 2371, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27299, 'Biken', 2371, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27300, 'Enejabrok', 2371, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27301, 'Enejelar', 2371, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27302, 'Kapen', 2371, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27303, 'Arno Arno', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27304, 'Bikarej', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27305, 'Bikonele', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27306, 'Boken', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27307, 'Eneaidrik', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27308, 'Enirik', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27309, 'Ijoen', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27310, 'Ine', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27311, 'Japo', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27312, 'Jilane', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27313, 'Kejbwe', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27314, 'Kilange', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27315, 'Kilemman', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27316, 'Kinajon', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27317, 'Langor', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27318, 'Lukoj', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27319, 'Malel', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27320, 'Manrar', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27321, 'Matolen', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27322, 'Meetdik', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27323, 'Mian', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27324, 'Najaj', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27325, 'Namwi', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27326, 'Neenkotkot', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27327, 'Taklep', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27328, 'Tinak', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27329, 'Tutu', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27330, 'Ulien', 2372, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27331, 'Aur', 2373, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27332, 'Tabal', 2373, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27333, 'Eneu', 2374, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27334, 'Emej', 2375, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27335, 'Enearmij', 2375, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27336, 'Enekoion', 2375, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27337, 'Enilok', 2375, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27338, 'Jittaken', 2375, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27339, 'Jittoen', 2375, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27340, 'Rerok', 2375, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27341, 'Toka', 2375, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27342, 'Enewetak', 2376, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27343, 'Japtan', 2376, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27344, 'Medren', 2376, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27345, 'Jabat', 2377, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27346, 'Ae', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27347, 'Ajejen', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27348, 'Anilep', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27349, 'Arreen', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27350, 'Bokanake', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27351, 'Bokkan', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27352, 'Bukantorak', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27353, 'Dede', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27354, 'Ewo', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27355, 'Imiej', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27356, 'Imroj', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27357, 'Jabnoren', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27358, 'Jabwor', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27359, 'Jaluit', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27360, 'Lonone', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27361, 'Mejatto', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27362, 'Mejrirok', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27363, 'Menge', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27364, 'Nabbe', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27365, 'Narmej', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27366, 'Urbaj', 2378, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27367, 'Kili', 2379, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27368, 'Arbwa', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27369, 'Ebadon', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27370, 'Ebeye', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27371, 'Ebjadik', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27372, 'Ebwaj', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27373, 'Ennilabegan', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27374, 'Enubirr', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27375, 'Enubuj', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27376, 'Gugeegue', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27377, 'Mejatto', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27378, 'Ningi', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27379, 'North Loi', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27380, 'Orpap', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27381, 'South Loi', 2380, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27382, 'Enerein', 2381, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27383, 'Lae', 2381, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27384, 'Lejab', 2381, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27385, 'Lib', 2382, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27386, 'Jebal', 2383, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27387, 'Likiep', 2383, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27388, 'Liklal', 2383, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27389, 'Melang', 2383, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27390, 'Ajeltake', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27391, 'Aneenwudej', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27392, 'Aneko', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27393, 'Arrak', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27394, 'Biken', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27395, 'Bokaetoktok', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27396, 'Denmeo', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27397, 'Didej', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27398, 'Ejit', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27399, 'Enemanet', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27400, 'Jelter', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27401, 'Kalalen', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27402, 'Kemman', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27403, 'Laura', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27404, 'Pikiriin', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27405, 'Rita', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27406, 'Rongrong', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27407, 'Woja', 2384, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27408, 'Airok', 2385, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27409, 'Jang', 2385, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27410, 'Kaben', 2385, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27411, 'Tarawa', 2385, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27412, 'Wolot', 2385, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27413, 'Mejit', 2386, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27414, 'Aeloneo', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27415, 'Anel', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27416, 'Arbar', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27417, 'Bar', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27418, 'Bikonel', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27419, 'Enajet', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27420, 'Eoo', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27421, 'Jabonwod', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27422, 'Loen', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27423, 'Lukoj', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27424, 'Lukonwor', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27425, 'Mae', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27426, 'Majkin', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27427, 'Mili', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27428, 'Nad', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27429, 'Nallu', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27430, 'Tokewa', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27431, 'Wau', 2387, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27432, 'Namorik', 2388, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27433, 'Namu', 2389, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27434, 'Rongelap', 2390, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27435, 'Ujae', 2391, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27436, 'Utirik', 2392, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27437, 'Wotho', 2393, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27438, 'Didi', 2394, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27439, 'Nibun', 2394, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27440, 'Wormej', 2394, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27441, 'Wotje', 2394, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27442, 'Fort-de-France', 2395, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27443, 'Le Lamentin', 2395, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27444, 'Saint-Joseph', 2395, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27445, 'Schoelcher', 2395, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27446, 'Le Morne-Rouge', 2398, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27447, 'Saint-Pierre', 2398, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27448, 'Atar', 2399, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27449, 'Shingati', 2399, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27450, 'Kifah', 2400, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27451, 'Alaq', 2401, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27452, 'Buqah', 2401, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27453, 'Magta\' Lahjar', 2401, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27454, '\'Ayun-al-\'Atrus', 2403, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27455, 'Kubanni', 2403, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27456, 'Timbedra', 2404, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27457, 'Walatah', 2404, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27458, 'an-Na\'mah', 2404, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27459, 'Aqjawajat', 2405, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27460, 'Nawakshut', 2406, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27461, 'Hsay Walad \'Ali Babi', 2407, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27462, 'Kayhaydi', 2408, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27463, 'Tijiqjah', 2409, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27464, 'Rusu', 2411, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27465, 'Bel Air', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27466, 'Bon Accueil', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27467, 'Brisee Verdiere', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27468, 'Camp Ithier', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27469, 'Camp de Masque', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27470, 'Camp de Masque Pave', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27471, 'Central Flacq', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27472, 'Clemencia', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27473, 'Ecroignard', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27474, 'Grand River South East', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27475, 'Lalmatie', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27476, 'Laventure', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27477, 'Mare La Chaux', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27478, 'Medine-Camp de Masque', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27479, 'Olivia', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27480, 'Poste de Flacq', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27481, 'Quatre Cocos', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27482, 'Quatre Soeurs', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27483, 'Queen Victoria', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27484, 'Saint Julien', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27485, 'Saint Julien d\'Hotman', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27486, 'Sebastopol', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27487, 'Trou d\'Eau Douce', 2414, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27488, 'Floreal', 2415, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27489, 'Camp Thorel', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27490, 'Dagotiere', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27491, 'Dubreuil', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27492, 'Esperance', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27493, 'L\'Avenir', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27494, 'La Laura-Malenga', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27495, 'Melrose', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27496, 'Moka', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27497, 'Montagne Blanche', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27498, 'Pailles', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27499, 'Providence', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27500, 'Quartier Militaire', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27501, 'Ripailles', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27502, 'Saint Pierre', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27503, 'Verdun', 2417, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27504, 'Arsenal', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27505, 'Baie du Tombeau', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27506, 'Calebasses', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27507, 'Congomah', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27508, 'Creve Coeur', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27509, 'D\'Epinay', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27510, 'Fond du Sac', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27511, 'La Tour Koenig', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27512, 'Le Hochet', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27513, 'Long Mountain', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27514, 'Morcellement Saint Andre', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27515, 'Notre Dame', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27516, 'Pamplemousse', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27517, 'Plaines des Papayes', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27518, 'Pointe aux Piments', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27519, 'Terre Rouge', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27520, 'Triolet', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27521, 'Villebague', 2418, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27522, 'Baie Malgache', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27523, 'Coromandel-Graviers', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27524, 'Grand Baie-Montagne Goyaves', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27525, 'La Ferme', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27526, 'Lataniers-Mont Lubin', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27527, 'Mangues-Quatre Vents', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27528, 'Oyster Bay', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27529, 'Petit Gabriel', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27530, 'Piments-Baie Topaze', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27531, 'Plaine Corail-La Fouche Corail', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27532, 'Port Mathurin', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27533, 'Port Sud-Est', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27534, 'Riviere Cocos', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27535, 'Roche Bon Dieu-Trefles', 2422, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27536, 'Baie du Cap', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27537, 'Bel Ombre', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27538, 'Benares', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27539, 'Bois Cheri', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27540, 'Britannia', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27541, 'Camp Diable', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27542, 'Chamouny', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27543, 'Chemin Grenier', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27544, 'Grand Bois', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27545, 'Riviere des Anguilles', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27546, 'Saint Aubin', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27547, 'Souillac', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27548, 'Surinam', 2424, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27549, 'Acoua', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27550, 'Bandraboua', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27551, 'Bandrele', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27552, 'Boueni', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27553, 'Chiconi', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27554, 'Chirongui', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27555, 'Dembeni', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27556, 'Kanikeli', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27557, 'Koungou', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27558, 'Mamoudzou', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27559, 'Mtsamboro', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27560, 'Mtsangamouji', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27561, 'Ouangani', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27562, 'Sada', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27563, 'Tsingoni', 2425, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27564, 'Dzaoudzi', 2426, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27565, 'Pamanzi', 2426, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27566, 'Aguascalientes', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27567, 'Asientos', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27568, 'Calvillo', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27569, 'Cosio', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27570, 'Margaritas', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27571, 'Ojocaliente', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27572, 'Pabellon de Arteaga', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27573, 'Pabellon de Hidalgo', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27574, 'Palo Alto', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27575, 'Rincon de Romos', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27576, 'San Francisco de los Romo', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27577, 'San Jose de Gracia', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27578, 'Tepezala', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27579, 'Villa Juarez', 2427, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27580, 'Becal', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27581, 'Bolonchen', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27582, 'Calkini', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27583, 'Campeche', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27584, 'Candelaria', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27585, 'Carmen', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27586, 'Champoton', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27587, 'China', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27588, 'Dzitbalche', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27589, 'Escarcega', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27590, 'Hecelchakan', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27591, 'Hopelchen', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27592, 'Isla Aguada', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27593, 'Nuevo Progreso', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27594, 'Nunkini', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27595, 'Palizada', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27596, 'Pomuch', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27597, 'Sabancuy', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27598, 'Seybaplaya', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27599, 'Tenabo', 2430, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27600, 'Acacoyagua', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27601, 'Acala', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27602, 'Acapetahua', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27603, 'Altamirano', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27604, 'Alvaro Obregon', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27605, 'Amatan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27606, 'Amatenango del Valle', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27607, 'Arriaga', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27608, 'Benemerito de las Americas', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27609, 'Berriozabal', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27610, 'Bochil', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27611, 'Cacahoatan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27612, 'Cancuc', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27613, 'Catazaja', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27614, 'Chalchihiutan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27615, 'Chanal', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27616, 'Chiapa', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27617, 'Chiapilla', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27618, 'Chicomuselo', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27619, 'Chilon', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27620, 'Cintalapa', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27621, 'Comaltitlan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27622, 'Comitan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27623, 'Copainala', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27624, 'Copoya', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27625, 'Cristobal Obregon', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27626, 'El Bosque', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27627, 'El Parral', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27628, 'Escuintla', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27629, 'Frontera Comalapa', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27630, 'Frontera Corozal', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27631, 'Frontera Hidalgo', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27632, 'Huehuetan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27633, 'Huehuetan Estacion', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27634, 'Huixtla', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27635, 'Ixhuatan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27636, 'Ixtacomitan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27637, 'Ixtapa', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27638, 'Jaltenango', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27639, 'Jesus Maria Garza', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27640, 'Jiquipilas', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27641, 'Jitotol', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27642, 'Juarez', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27643, 'La Concordia', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27644, 'La Libertad', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27645, 'La Trinitaria', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27646, 'Las Margaritas', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27647, 'Las Rosas', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27648, 'Mapastepec', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27649, 'Mazatan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27650, 'Motozintla', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27651, 'Navenchauc', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27652, 'Nicolas Ruiz', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27653, 'Ocosingo', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27654, 'Ocotepec', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27655, 'Ocozocoautla', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27656, 'Ostuacan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27657, 'Oxchuc', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27658, 'Palenque', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27659, 'Palestina', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27660, 'Pantelho', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27661, 'Paredon', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27662, 'Petalcingo', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27663, 'Pichucalco', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27664, 'Pijijiapan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27665, 'Pueblo Nuevo Solistahuacan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27666, 'Puerto Madero', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27667, 'Pujiltic', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27668, 'Raudales Malpaso', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27669, 'Rayon', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27670, 'Reforma', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27671, 'Revolucion Mexicana', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27672, 'Rincon Chamula', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27673, 'Salto de Agua', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27674, 'San Cristobal de las Casas', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27675, 'San Fernando', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27676, 'San Lucas', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27677, 'San Pedro Buenavista', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27678, 'Simojovel', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27679, 'Socoltenango', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27680, 'Soyalo', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27681, 'Suchiapa', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27682, 'Suchiate', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27683, 'Tapachula', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27684, 'Tapilula', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27685, 'Tecpatan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27686, 'Tenango', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27687, 'Teopisca', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27688, 'Tila', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27689, 'Tonala', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27690, 'Totolapa', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27691, 'Tres Picos', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27692, 'Tuxtla Chico', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27693, 'Tuxtla Gutierrez', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27694, 'Tzimol', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27695, 'Veinte de Noviembre', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27696, 'Venustiano Carranza', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27697, 'Villa Corzo', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27698, 'Villaflores', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27699, 'Yajalon', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27700, 'Zinacantan', 2431, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27701, 'Adolfo Lopez Mateos', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27702, 'Ahumada', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27703, 'Anahuac', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27704, 'Ascension', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27705, 'Benito Juarez', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27706, 'Camargo', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27707, 'Carichi', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27708, 'Casas Grandes', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27709, 'Chihuahua', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27710, 'Colonia Municipio Libre', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27711, 'Creel', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27712, 'Cuauhtemoc', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27713, 'Delicias', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27714, 'El Largo', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27715, 'Guachochi', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27716, 'Guadalupe', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27717, 'Guadalupe y Calvo', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27718, 'Hermenegildo Galeana', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27719, 'Hidalgo', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27720, 'Ignacio Zaragoza', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27721, 'Jimenez', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27722, 'Juan Aldama', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27723, 'Juarez', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27724, 'Lazaro Cardenas', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27725, 'Madera', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27726, 'Majimachi', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27727, 'Meoqui', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27728, 'Naica', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27729, 'Nuevo Casas Grandes', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27730, 'Octaviano Lopez', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27731, 'Ojinaga', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27732, 'Praxedis Guerrero', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27733, 'Puerto Palomas', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27734, 'Puerto de Anapra', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27735, 'San Buenaventura', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27736, 'San Francisco el Oro', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27737, 'Santa Barbara', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27738, 'Santa Cruz de Rosales', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27739, 'Saucillo', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27740, 'Valentin Gomez Farias', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27741, 'Valle de Allende', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27742, 'Vicente Guerrero', 2432, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27743, 'Acuna', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27744, 'Allende', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27745, 'Arteaga', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27746, 'Castanos', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27747, 'Concordia', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27748, 'Cuatrocienagas', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27749, 'El Coyote', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27750, 'Frontera', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27751, 'General Cepeda', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27752, 'Hercules', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27753, 'Matamoros', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27754, 'Minas de Barroteran', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27755, 'Monclova', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27756, 'Muzquiz', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27757, 'Nadadores', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27758, 'Nava', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27759, 'Nueva Rosita', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27760, 'Ocampo', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27761, 'Palau', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27762, 'Parras', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27763, 'Piedras Negras', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27764, 'Ramos Arizpe', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27765, 'Sabinas', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27766, 'Saltillo', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27767, 'San Buenaventura', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27768, 'San Pedro', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27769, 'Torreon', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27770, 'Venustiano Carranza', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27771, 'Viesca', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27772, 'Villa Madero', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27773, 'Villa Union', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27774, 'Zaragoza', 2433, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27775, 'Armeria', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27776, 'Cofradia', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27777, 'Colima', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27778, 'Colonia Bayardo', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27779, 'Comala', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27780, 'Coquimatlan', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(27781, 'Cuauhtemoc', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27782, 'El Colomo', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27783, 'Madrid', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27784, 'Manzanillo', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27785, 'Minatitlan', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27786, 'Queseria', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27787, 'Suchitlan', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27788, 'Tecoman', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27789, 'Villa de Alvarez', 2434, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27790, 'Bermejillo', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27791, 'Canatlan', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27792, 'Cuencame', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27793, 'Durango', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27794, 'Gomez Palacio', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27795, 'Guadalupe Victoria', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27796, 'Juarez', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27797, 'Lerdo', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27798, 'Mapimi', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27799, 'Nazareno', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27800, 'Nazas', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27801, 'Nombre de Dios', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27802, 'Nuevo Ideal', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27803, 'Ocampo', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27804, 'Panuco', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27805, 'Papasquiaro', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27806, 'Penon Blanco', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27807, 'Poanas', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27808, 'Pueblo Nuevo', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27809, 'Rodeo', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27810, 'Santa Catarina de Tepehuanes', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27811, 'Santa Clara', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27812, 'Santa Maria del Oro', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27813, 'Suchil', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27814, 'Tayoltita', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27815, 'Tlahualilo', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27816, 'Vicente Guerrero', 2436, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27817, 'Abasolo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27818, 'Acambaro', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27819, 'Aldama', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27820, 'Allende', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27821, 'Antonio Rodriguez', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27822, 'Apaseo el Alto', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27823, 'Apaseo el Grande', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27824, 'Celaya', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27825, 'Centro Familiar la Soledad', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27826, 'Cerano', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27827, 'Cerro Gordo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27828, 'Colonias Nuevo Mexico', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27829, 'Comonfort', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27830, 'Coroneo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27831, 'Cortazar', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27832, 'Cueramaro', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27833, 'Doctor Mora', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27834, 'Dolores Hidalgo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27835, 'Duarte', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27836, 'El Sabino', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27837, 'Escobedo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27838, 'Guanajuato', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27839, 'Huanimaro', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27840, 'Iramuco', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27841, 'Irapuato', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27842, 'Jaral del Progreso', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27843, 'Jerecuaro', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27844, 'Juventino Rosas', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27845, 'La Aldea', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27846, 'La Calera', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27847, 'La Ermita', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27848, 'La Moncada', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27849, 'Leon', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27850, 'Loma Pelada', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27851, 'Manuel Doblado', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27852, 'Maravatio', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27853, 'Marfil', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27854, 'Medina', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27855, 'Mexicanos', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27856, 'Moroleon', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27857, 'Ocampo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27858, 'Octopan', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27859, 'Pacueco', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27860, 'Palo Verde', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27861, 'Paracuaro', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27862, 'Penjamo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27863, 'Plan de Ayala', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27864, 'Pueblo Nuevo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27865, 'Purisima de Bustos', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27866, 'Rincon de Tamayo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27867, 'Romita', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27868, 'Salamanca', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27869, 'Salvatierra', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27870, 'San Bartolo de Berrios', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27871, 'San Cristobal', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27872, 'San Diego de la Union', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27873, 'San Felipe', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27874, 'San Francisco del Rincon', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27875, 'San Jose Agua Azul', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27876, 'San Jose Iturbide', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27877, 'San Jose Temascatio', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27878, 'San Juan de la Vega', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27879, 'San Luis de la Paz', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27880, 'San Nicolas de los Agustinos', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27881, 'San Pedro de los Naranjos', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27882, 'San Roque', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27883, 'Santa Teresa', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27884, 'Santiago de Cuenda', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27885, 'Sarabia', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27886, 'Silao', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27887, 'Tarandacuao', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27888, 'Tarimoro', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27889, 'Teneria del Santuario', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27890, 'Uriangato', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27891, 'Urireo', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27892, 'Valle de Santiago', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27893, 'Valtierrilla', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27894, 'Victoria', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27895, 'Villagran', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27896, 'Villas de Irapuato', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27897, 'Yerbabuena', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27898, 'Yuriria', 2438, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27899, 'Acamixtla', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27900, 'Acapulco', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27901, 'Acatlan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27902, 'Ajuchitlan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27903, 'Alpoyeca', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27904, 'Altamirano', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27905, 'Apango', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27906, 'Apaxtla', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27907, 'Arcelia', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27908, 'Atliaca', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27909, 'Atoyac', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27910, 'Ayutla', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27911, 'Azoyu', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27912, 'Bajos de Ejido', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27913, 'Buenavista', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27914, 'Chichihualco', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27915, 'Chilapa', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27916, 'Chilpancingo', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27917, 'Coacoyul', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27918, 'Cocula', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27919, 'Copala', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27920, 'Copalillo', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27921, 'Coyuca', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27922, 'Cruz Grande', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27923, 'Cuajinicuilapa', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27924, 'Cuautepec', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27925, 'Cutzamala', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27926, 'El Ocotito', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27927, 'El Paraiso', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27928, 'El Suchil', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27929, 'Huamuxtitlan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27930, 'Huitziltepec', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27931, 'Huitzuco', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27932, 'Iguala', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27933, 'Ixtapa', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27934, 'Kilometro Treinta', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27935, 'La Loma', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27936, 'La Union', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27937, 'Las Petaquillas', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27938, 'Las Vigas', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27939, 'Marquelia', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27940, 'Mazatlan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27941, 'Mochitlan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27942, 'Olinala', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27943, 'Ometepec', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27944, 'Petatlan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27945, 'Pilcaya', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27946, 'Quechultenango', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27947, 'San Jeronimito', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27948, 'San Jeronimo', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27949, 'San Jose Ixtapa', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27950, 'San Luis San Pedro', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27951, 'San Marcos', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27952, 'Taxco', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27953, 'Taxco de Alarcon', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27954, 'Tecoanapa', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27955, 'Tecpan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27956, 'Teloloapan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27957, 'Tepecoacuilco', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27958, 'Tierra Colorada', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27959, 'Tixtla', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27960, 'Tlacoachistlahuaca', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27961, 'Tlacotepec', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27962, 'Tlalchapa', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27963, 'Tlamacazapa', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27964, 'Tlapa', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27965, 'Tlapehuala', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27966, 'Totolapan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27967, 'Tres Palos', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27968, 'Xalpatlahuac', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27969, 'Xaltianguis', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27970, 'Xochihuehuetlan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27971, 'Xochistlahuaca', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27972, 'Zacualpan', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27973, 'Zihuatanejo', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27974, 'Zirandaro', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27975, 'Zitlala', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27976, 'Zumpango', 2439, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27977, 'Acaxochitlan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27978, 'Acayuca', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27979, 'Actopan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27980, 'Ajacuba', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27981, 'Almoloya', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27982, 'Apan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27983, 'Atengo', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27984, 'Atitalaquia', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27985, 'Atotonilco de Tula', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27986, 'Atotonilco el Grande', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27987, 'Calnali', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27988, 'Cardonal', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27989, 'Chapulhuacan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27990, 'Cuautepec', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27991, 'Doxey', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27992, 'El Arenal', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27993, 'El Llano', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27994, 'El Rosario', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27995, 'Emiliano Zapata', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27996, 'Huautla', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27997, 'Huejutla', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27998, 'Hueytlalpan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(27999, 'Huichapan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28000, 'Ixmiquilpan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28001, 'Jacala', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28002, 'Jaltocan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28003, 'Los Reyes', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28004, 'Mineral del Monte', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28005, 'Mixquiahuala', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28006, 'Molango', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28007, 'Orizatlan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28008, 'Pachuca', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28009, 'Pachuquilla', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28010, 'Progreso', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28011, 'Sahagun', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28012, 'San Ildefonso', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28013, 'San Juan Tepa', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28014, 'San Marcos', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28015, 'Singuilucan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28016, 'Tasquillo', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28017, 'Tecozautla', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28018, 'Tepatepec', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28019, 'Tepeapulco', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28020, 'Tepeji', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28021, 'Tepepa', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28022, 'Tetepango', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28023, 'Tezontepec', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28024, 'Tizayuca', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28025, 'Tlahuelilpan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28026, 'Tlanalapa', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28027, 'Tlanchinol', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28028, 'Tlaxcoapan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28029, 'Tlaxiaca', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28030, 'Tolcayuca', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28031, 'Tula de Allende', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28032, 'Tulancingo', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28033, 'Tulantepec', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28034, 'Vindho', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28035, 'Zacualtipan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28036, 'Zapotlan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28037, 'Zempoala', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28038, 'Zimapan', 2440, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28039, 'Acatic', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28040, 'Acatlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28041, 'Ahualulco', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28042, 'Ajijic', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28043, 'Alejandria', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28044, 'Amatitan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28045, 'Ameca', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28046, 'Antonio Escobedo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28047, 'Arandas', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28048, 'Atemajac', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28049, 'Atequiza', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28050, 'Atotonilco el Alto', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28051, 'Atotonilquillo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28052, 'Atoyac', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28053, 'Autlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28054, 'Ayotlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28055, 'Ayutla', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28056, 'Bellavista', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28057, 'Cajititlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28058, 'Capilla de Guadalupe', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28059, 'Casimiro Castillo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28060, 'Centro de Readaptacion Social', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28061, 'Chapala', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28062, 'Chiquilistlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28063, 'Cihuatlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28064, 'Cocula', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28065, 'Colotlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28066, 'Concepcion de Buenos Aires', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28067, 'Cosala', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28068, 'Coyula', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28069, 'Cuitzeo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28070, 'Cuqio', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28071, 'Cuyutlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28072, 'Degollado', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28073, 'El Arenal', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28074, 'El Grullo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28075, 'El Limon', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28076, 'El Quince', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28077, 'El Refugio', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28078, 'El Salto', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28079, 'El Verde', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28080, 'Encarnacion', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28081, 'Etzatlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28082, 'Guadalajara', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28083, 'Guzman', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28084, 'Hidalgo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28085, 'Hostotipaquillo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28086, 'Huejucar', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28087, 'Huejuquilla el Alto', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28088, 'Itzican', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28089, 'Ixtapa', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28090, 'Ixtlahuacan de los Membrillos', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28091, 'Ixtlahuacan del Rio', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28092, 'Ixtlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28093, 'Jalostotitlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28094, 'Jamay', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28095, 'Jesus Maria', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28096, 'Jocotepec', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28097, 'Juanacatlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28098, 'Juchitlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28099, 'La Barca', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28100, 'La Huerta', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28101, 'La Ribera', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28102, 'La Tijera', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28103, 'La Venta del Astillero', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28104, 'Lagos de Moreno', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28105, 'Las Juntas', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28106, 'Las Pintas', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28107, 'Las Pintitas', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28108, 'Lo Arado', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28109, 'Magdalena', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28110, 'Mascota', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28111, 'Mazamitla', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28112, 'Mexticacan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28113, 'Mezcala', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28114, 'Nuevo Mexico', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28115, 'Ocotlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28116, 'Ojuelos de Jalisco', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28117, 'Pihuamo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28118, 'Poncitlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28119, 'Puente Grande', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28120, 'Puerto Vallarta', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28121, 'Purificacion', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28122, 'San Agustin', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28123, 'San Francisco de Asis', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28124, 'San Gabriel', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28125, 'San Jose de Gracia', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28126, 'San Jose del Castillo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28127, 'San Juan de los Lagos', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28128, 'San Julian', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28129, 'San Marcos', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28130, 'San Martin de Hidalgo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28131, 'San Miguel el Alto', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28132, 'San Patricio', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28133, 'San Sebastian del Sur', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28134, 'San Sebastian el Grande', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28135, 'Santa Anita', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28136, 'Santa Cruz de las Flores', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28137, 'Santa Cruz del Valle', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28138, 'Sayula', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28139, 'Tala', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28140, 'Talpa', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28141, 'Tamazula', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28142, 'Tapalpa', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28143, 'Tecalitlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28144, 'Tecolotlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28145, 'Tenamaxtlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28146, 'Teocaltiche', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28147, 'Teocuitatlan de Corona', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28148, 'Tepatitlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28149, 'Tequila', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28150, 'Tesistan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28151, 'Teuchitlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28152, 'Tizapan el Alto', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28153, 'Tlajomulco', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28154, 'Tlaquepaque', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28155, 'Tomatlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28156, 'Tonala', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28157, 'Tonaya', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28158, 'Tonila', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28159, 'Tototlan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28160, 'Tuxpan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28161, 'Union de San Antonio', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28162, 'Union de Tula', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28163, 'Usmajac', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28164, 'Valle de Guadalupe', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28165, 'Valle de Juarez', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28166, 'Villa Corona', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28167, 'Villa Guerrero', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28168, 'Yahualica', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28169, 'Zacoalco', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28170, 'Zapopan', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28171, 'Zapote', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28172, 'Zapotiltic', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28173, 'Zapotlanejo', 2441, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28174, 'Acahualco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28175, 'Acambay', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28176, 'Acazulco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28177, 'Acolman', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28178, 'Acuautla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28179, 'Acutzilapan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28180, 'Ajoloapan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28181, 'Alborada', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28182, 'Almaya', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28183, 'Almoloya', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28184, 'Almoloya del Rio', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28185, 'Amanalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28186, 'Amecameca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28187, 'Ameyalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28188, 'Apaxco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28189, 'Atarasquillo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28190, 'Atenco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28191, 'Atizapan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28192, 'Atlacomulco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28193, 'Atlatlahuca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28194, 'Atlatongo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28195, 'Atlautla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28196, 'Atlazalpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28197, 'Autopan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28198, 'Axapusco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28199, 'Ayotuzco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28200, 'Ayotzingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28201, 'Azcatepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28202, 'Balderas', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28203, 'Bocanegra', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28204, 'Boreje', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28205, 'Buenavista', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28206, 'Cacalomacan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28207, 'Cahuacan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28208, 'Calimaya', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28209, 'Calixtlahuaca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28210, 'Capulhuac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28211, 'Carbon', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28212, 'Cautzingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28213, 'Chalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28214, 'Chapultepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28215, 'Chiautla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28216, 'Chicoloapan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28217, 'Chiconautla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28218, 'Chiconcuac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28219, 'Chimalhuacan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28220, 'Chimalpa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28221, 'Cholula', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28222, 'Citendeje', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28223, 'Coacalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28224, 'Coachochitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28225, 'Coacomulco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28226, 'Coapango', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28227, 'Coatepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28228, 'Coatepec Harinas', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28229, 'Coatlinchan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28230, 'Cocotitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28231, 'Colorines', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28232, 'Concepcion Jolalpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28233, 'Coyotepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28234, 'Cuauhtemoc', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28235, 'Cuauhtenco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28236, 'Cuautitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28237, 'Cuautitlan Izcalli', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28238, 'Cuautlalpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28239, 'Cuaxustenco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28240, 'Cuexontitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28241, 'Cuijingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28242, 'Ecatepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28243, 'Ecatzingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28244, 'Ejido Cahuacan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28245, 'Ejido Veinte de Noviembre la C', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28246, 'Ejido de la Y Seccion Siete a ', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28247, 'El Coporo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28248, 'El Oro', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28249, 'Enchisi', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28250, 'Enthavi', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28251, 'Fuentes del Valle', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28252, 'Huehuetoca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28253, 'Huexoculco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28254, 'Hueypoxtla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28255, 'Huilango', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28256, 'Huitzilzingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28257, 'Huixquilucan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28258, 'Huixquilucan de Degollado', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28259, 'Huixtoco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28260, 'Ixlahuaca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28261, 'Ixtacalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28262, 'Ixtapaluca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28263, 'Ixtapan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28264, 'Ixtlahuatzingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28265, 'Jajalpa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28266, 'Jaltenco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28267, 'Jaltepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28268, 'Jesus del Monte', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28269, 'Jicaltepec Autopan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28270, 'Jilotepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28271, 'Jilotzingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28272, 'Jocotitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28273, 'Joquicingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28274, 'Jorge Jimenez Cantu', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28275, 'Juchitepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28276, 'La Concepcion los Banos', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28277, 'La Constitucion', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28278, 'La Magdalema', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28279, 'Lerma', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28280, 'Loma de Juarez', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28281, 'Lomas de Zacamulpa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28282, 'Lopez Mateos', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28283, 'Los Esparragos', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28284, 'Los Reyes', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28285, 'Los Reyes Acozac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28286, 'Luvianos', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28287, 'Malinalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28288, 'Melchor Ocampo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28289, 'Metepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28290, 'Mexicaltzingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28291, 'Mextepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28292, 'Montecillo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28293, 'Nativitas', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28294, 'Naucalpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28295, 'Nexquipayac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28296, 'Nextlalpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28297, 'Nezahualcoyotl', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28298, 'Nicolas Romero', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28299, 'Nopaltepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28300, 'Ocotitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28301, 'Ocotlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28302, 'Ocoyoacac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28303, 'Ojo de Agua', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28304, 'Otumba', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28305, 'Otzacatipan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28306, 'Oyamel', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28307, 'Oztolotepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28308, 'Ozumba', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28309, 'Papalotla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28310, 'Progreso Industrial', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28311, 'Pueblo Nuevo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28312, 'Rayon', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28313, 'Rio Frio', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28314, 'Salitrillo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28315, 'San Antonio Buenavista', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28316, 'San Antonio La Isla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28317, 'San Bartolo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28318, 'San Bartolo del Llano', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28319, 'San Bernardino', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28320, 'San Buenaventura', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28321, 'San Felipe del Progreso', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28322, 'San Jeronimo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28323, 'San Jose Guadalupe', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28324, 'San Jose el Vidrio', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28325, 'San Juan Tilapa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28326, 'San Juan de las Huertas', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28327, 'San Juan y San Pedro Tezompa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28328, 'San Lorenzo Cuauhtenco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28329, 'San Martin de las Piramides', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28330, 'San Miguel la Labor', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28331, 'San Nicolas Guadalupe', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28332, 'San Nicolas Tolentino', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28333, 'San Pablo de las Salinas', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28334, 'San Pedro Abajo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28335, 'San Pedro Arriba', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28336, 'San Pedro el Alto', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28337, 'San Pedro los Banos', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28338, 'San Simon de la Laguna', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28339, 'Santa Catarina del Monte', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28340, 'Santa Cruz del Monte', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(28341, 'Santa Gertrudis', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28342, 'Santa Maria del Monte', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28343, 'Santo Domingo de Guzman', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28344, 'Soyaniquilpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28345, 'Sultepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28346, 'Tecalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28347, 'Tecamac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28348, 'Techuchulco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28349, 'Tecuahutitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28350, 'Tehuixtitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28351, 'Tejupilco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28352, 'Temamatla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28353, 'Temascalapa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28354, 'Temascalcingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28355, 'Temoaya', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28356, 'Tenancingo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28357, 'Tenango de Arista', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28358, 'Tenango del Aire', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28359, 'Tenochtitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28360, 'Teoloyucan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28361, 'Teotihuacan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28362, 'Tepeolulco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28363, 'Tepetitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28364, 'Tepetlaoxtoc', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28365, 'Tepetlixpa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28366, 'Tepexpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28367, 'Tepotzotlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28368, 'Tequexquinahuac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28369, 'Tequisistlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28370, 'Tequixquiac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28371, 'Texcalyacac', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28372, 'Texcoco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28373, 'Teyahualco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28374, 'Tezoquipan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28375, 'Tezoyuca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28376, 'Tianguistenco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28377, 'Tilapa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28378, 'Tlachaloya Segunda Seccion', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28379, 'Tlachihualpa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28380, 'Tlacotepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28381, 'Tlahuelilpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28382, 'Tlaixpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28383, 'Tlalcilalcalli', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28384, 'Tlalcilalcalpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28385, 'Tlalmanalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28386, 'Tlalmimilolpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28387, 'Tlalnepantla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28388, 'Tlaltelulco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28389, 'Tlaltizapan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28390, 'Tlanisco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28391, 'Toluca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28392, 'Tonanitla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28393, 'Tonatico', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28394, 'Totocuitlapilco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28395, 'Totoltepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28396, 'Tulantongo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28397, 'Tultepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28398, 'Tultitlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28399, 'Valle de Bravo', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28400, 'Victoria', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28401, 'Villa Guerrero', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28402, 'Vista Hermosa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28403, 'Xalatlaco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28404, 'Xalpa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28405, 'Xico', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28406, 'Xochimanca', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28407, 'Xolalpa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28408, 'Xoloc', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28409, 'Xometla', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28410, 'Xonacatlan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28411, 'Yachihuacaltepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28412, 'Yancuitlalpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28413, 'Zacacalco', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28414, 'Zacamulpa', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28415, 'Zacualpan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28416, 'Zaragoza', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28417, 'Zictepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28418, 'Zinacantepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28419, 'Zolotepec', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28420, 'Zumpahuacan', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28421, 'Zumpango', 2442, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28422, 'Acuitzio', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28423, 'Aguililla', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28424, 'Alvaro Obregon', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28425, 'Angahuan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28426, 'Angamacutiro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28427, 'Angangueo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28428, 'Antunez', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28429, 'Apatzingan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28430, 'Ario', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28431, 'Arteaga', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28432, 'Benito Juarez', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28433, 'Brisenas', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28434, 'Buenavista', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28435, 'Buenos Aires', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28436, 'Caltzontzin', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28437, 'Capacuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28438, 'Capula', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28439, 'Caracuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28440, 'Charapan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28441, 'Charo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28442, 'Chavinda', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28443, 'Cheran', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28444, 'Chilchota', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28445, 'Churintzio', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28446, 'Churumuco', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28447, 'Coahuayana', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28448, 'Coalcoman', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28449, 'Coeneo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28450, 'Cojumatlan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28451, 'Comachuen', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28452, 'Contepec', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28453, 'Copandaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28454, 'Cotija', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28455, 'Cuanajo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28456, 'Cuitareo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28457, 'Cuitzeo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28458, 'Ecuandureo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28459, 'Hidalgo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28460, 'Huandacareo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28461, 'Huetamo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28462, 'Indaparapeo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28463, 'Irimbo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28464, 'Ixtlan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28465, 'Jacona', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28466, 'Jiquilpan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28467, 'Jungapeo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28468, 'La Huacana', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28469, 'La Mira', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28470, 'La Orilla', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28471, 'La Piedad', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28472, 'La Ruana', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28473, 'Las Guacamayas', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28474, 'Lazaro Cardenas', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28475, 'Lombardia', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28476, 'Los Reyes', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28477, 'Madero', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28478, 'Maravatio', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28479, 'Maya', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28480, 'Morelia', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28481, 'Morelos', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28482, 'Nahuatzen', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28483, 'Nocupetaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28484, 'Nueva Italia de Ruiz', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28485, 'Nuevo San Juan Parangaricutiro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28486, 'Numaran', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28487, 'Ocampo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28488, 'Opopeo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28489, 'Pajacuaran', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28490, 'Panindicuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28491, 'Paracho', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28492, 'Paracuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28493, 'Pastor Ortiz', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28494, 'Patzcuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28495, 'Pedernales', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28496, 'Penjamillo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28497, 'Periban', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28498, 'Pichataro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28499, 'Purepero', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28500, 'Puruandiro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28501, 'Puruaran', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28502, 'Querendaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28503, 'Quiroga', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28504, 'Rincon de Nicolas Romero', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28505, 'Riva Palacio', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28506, 'Sahuayo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28507, 'San Jose de Gracia', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28508, 'San Lucas', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28509, 'San Matias Grande', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28510, 'Santa Clara de Valladares', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28511, 'Santa Clara del Cobre', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28512, 'Santa Fe de la Laguna', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28513, 'Tacambaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28514, 'Tancitaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28515, 'Tangamandapio', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28516, 'Tangancicuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28517, 'Tanhuato', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28518, 'Tarecuato', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28519, 'Taretan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28520, 'Tarimbaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28521, 'Tejaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28522, 'Tepalcatepec', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28523, 'Tingambato', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28524, 'Tinguindin', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28525, 'Tiquicheo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28526, 'Tlalpujahua', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28527, 'Tlazazalca', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28528, 'Tungareo', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28529, 'Tuxpan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28530, 'Tzintzuntzan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28531, 'Uruapan', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28532, 'Venustiano Carranza', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28533, 'Villa Jimenez', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28534, 'Villachuato', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28535, 'Villamar', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28536, 'Vista Hermosa', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28537, 'Yurecuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28538, 'Zacapu', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28539, 'Zamora', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28540, 'Zinapecuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28541, 'Zitacuaro', 2443, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28542, 'Alpuyeca', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28543, 'Amacuzac', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28544, 'Amayuca', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28545, 'Anenecuilco', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28546, 'Apatlaco', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28547, 'Atlatlahucan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28548, 'Axochiapan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28549, 'Ayala', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28550, 'Calera Chica', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28551, 'Chiconcuac', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28552, 'Coatetelco', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28553, 'Cocoyoc', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28554, 'Cuautla', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28555, 'Cuernavaca', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28556, 'Emiliano Zapata', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28557, 'Higueron', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28558, 'Hueyapan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28559, 'Huiztilac', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28560, 'Independencia', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28561, 'Jantetelco', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28562, 'Jiutepec', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28563, 'Jojutla', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28564, 'Jonacatepec', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28565, 'Juan Morales', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28566, 'La Joya', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28567, 'Los Arcos', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28568, 'Mazatepec', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28569, 'Miacatlan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28570, 'Oaxtepec', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28571, 'Ocuituco', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28572, 'Pedro Amaro', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28573, 'Progreso', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28574, 'Puente de Ixtla', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28575, 'San Jose Vista Hermosa', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28576, 'San Nicolas Galeana', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28577, 'Santa Catarina', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28578, 'Santa Rosa Treinta', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28579, 'Tehuixtla', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28580, 'Telixtac', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28581, 'Temixco', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28582, 'Temoac', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28583, 'Tenextepango', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28584, 'Tepalcingo', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28585, 'Tepoztlan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28586, 'Tetecala', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28587, 'Tetela del Volcan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28588, 'Tilzapotla', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28589, 'Tlacotepec', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28590, 'Tlalnepantla', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28591, 'Tlaltizapan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28592, 'Tlaquiltenango', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28593, 'Tlatenchi', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28594, 'Tlayacapan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28595, 'Totolapan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28596, 'Tres Marias', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28597, 'Unidad Habitacional Jose Maria', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28598, 'Xochitepec', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28599, 'Xoxocotla', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28600, 'Yautepec', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28601, 'Yecapixtla', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28602, 'Zacatepec', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28603, 'Zacualpan', 2444, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28604, 'Acaponeta', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28605, 'Ahuacatlan', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28606, 'Amatlan', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28607, 'Aztatan', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28608, 'Bucerias', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28609, 'Carmen', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28610, 'Cerralvo', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28611, 'Compostela', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28612, 'Hidalgo', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28613, 'Ixcuintla', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28614, 'Ixtlan del Rio', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28615, 'Jala', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28616, 'Jalcocotan', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28617, 'La Penita de Jaltemba', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28618, 'La Presa', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28619, 'Lagunillas', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28620, 'Las Jarretaderas', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28621, 'Las Varas', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28622, 'Puga', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28623, 'Rosamorada', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28624, 'Ruiz', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28625, 'San Blas', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28626, 'San Jose del Valle', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28627, 'San Juan de Abajo', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28628, 'San Vicente', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28629, 'Santa Maria del Oro', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28630, 'Tecuala', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28631, 'Tepic', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28632, 'Tuxpan', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28633, 'Valle de Banderas', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28634, 'Xalisco', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28635, 'Yago', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28636, 'Zacualpan', 2445, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28637, 'Acatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28638, 'Amatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28639, 'Amilpas', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28640, 'Amuzgos', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28641, 'Asuncion Ixtaltepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28642, 'Asuncion Nochixtlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28643, 'Asuncion Ocotlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28644, 'Atempa', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28645, 'Atzompa', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28646, 'Ayautla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28647, 'Ayoquezco', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28648, 'Ayotzintepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28649, 'Bajos de Chila', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28650, 'Brisas de Zicatela', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28651, 'Cacahuatepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28652, 'Cacaotepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28653, 'Chahuites', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28654, 'Chichicapam', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28655, 'Chiltepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28656, 'Cienaga de Zimatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28657, 'Coatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28658, 'Comitancillo', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28659, 'Cosolapa', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28660, 'Coyotepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28661, 'Crucecita', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28662, 'Cuicatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28663, 'Cuilapam', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28664, 'Ejutla de Crespo', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28665, 'El Espinal', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28666, 'Etla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28667, 'Fraccionamiento el Rosario', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28668, 'Guelavia', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28669, 'Guichicovi', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28670, 'Huajuapan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28671, 'Huatulco', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28672, 'Huautla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28673, 'Huaxpaltepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28674, 'Huayapam', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28675, 'Huazolotitlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28676, 'Huitzo', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28677, 'Huixtepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28678, 'Ingenio', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28679, 'Ixcatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28680, 'Ixhuatan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28681, 'Ixtepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28682, 'Jalapa', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28683, 'Jamiltepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28684, 'Jicayan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28685, 'Juchitan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28686, 'Juquila', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28687, 'Juxtlahuaca', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28688, 'Loma Bonita', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28689, 'Magdalena Teitipac', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28690, 'Magdalena Tequisistlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28691, 'Matatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28692, 'Matias Romero', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28693, 'Mechoacan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28694, 'Miahuatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28695, 'Mitla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28696, 'Mixtepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28697, 'Mixtequilla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28698, 'Nazareno Etla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28699, 'Niltepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28700, 'Oaxaca', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28701, 'Ocotepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28702, 'Ocotlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28703, 'Ojitlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28704, 'Palomares', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28705, 'Panixtlahuaca', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28706, 'Petapa', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28707, 'Pinotepa Nacional', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28708, 'Pinotepa de Don Luis', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28709, 'Pochutla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28710, 'Puerto Escondido', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28711, 'Putla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28712, 'Quetzaltepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28713, 'Rincon Viejo', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28714, 'Rio Grande', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28715, 'Salina Cruz', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28716, 'San Agustin de las Juntas', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28717, 'San Antonio Castillo Velasco', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28718, 'San Antonio de la Cal', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28719, 'San Dionisio del Mar', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28720, 'San Francisco del Mar', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28721, 'San Jose del Progreso', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28722, 'San Juan Colorado', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28723, 'San Mateo del Mar', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28724, 'Santa Lucia del Camino', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28725, 'Santa Maria del Tule', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28726, 'Santiago Apostol', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28727, 'Santos Reyes Nopala', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28728, 'Soyaltepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28729, 'Suchilquitongo', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28730, 'Tamazulapam', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28731, 'Tapanatepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28732, 'Tehuantepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28733, 'Teitipac', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28734, 'Telixtlahuaca', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28735, 'Teotitlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28736, 'Teotitlan den Valle', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28737, 'Tilquiapam', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28738, 'Tlacolula', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28739, 'Tlalixtac', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28740, 'Tlaxiaco', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28741, 'Tutla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28742, 'Tuxtepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28743, 'Union Hidalgo', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28744, 'Usila', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28745, 'Valle Nacional', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28746, 'Vicente Camalote', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28747, 'Vicente Guerrero', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28748, 'Xadani', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28749, 'Xitla', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28750, 'Xoxocotlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28751, 'Yaitepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28752, 'Yatareni', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28753, 'Zaachila', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28754, 'Zacatepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28755, 'Zanatepec', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28756, 'Zimatlan', 2447, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28757, 'Acajete', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28758, 'Acateno', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28759, 'Acatlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28760, 'Acatzingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28761, 'Actipan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28762, 'Acuexcomac', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28763, 'Ahuatempan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28764, 'Ajalpan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28765, 'Aljojuca', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28766, 'Almecatla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28767, 'Alseseca', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28768, 'Altepexi', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28769, 'Amecac', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28770, 'Amozoc', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28771, 'Aparicio', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28772, 'Atempan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28773, 'Atencingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28774, 'Atlixco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28775, 'Atoyatempan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28776, 'Atzitzintla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28777, 'Atzompa', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28778, 'Ayutla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28779, 'Azumiatla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28780, 'Benito Juarez', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28781, 'Buenos Aires', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28782, 'Cacaloxuchitl', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28783, 'Calipan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28784, 'Calmeca', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28785, 'Calpan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28786, 'Caltenco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28787, 'Canada', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28788, 'Canoa', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28789, 'Caxhuacan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28790, 'Chalchihuapan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28791, 'Chapulco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28792, 'Chautla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28793, 'Chiapa', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28794, 'Chiautla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28795, 'Chiautzingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28796, 'Chiconquiac', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28797, 'Chietla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28798, 'Chignahuapan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28799, 'Chignautla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28800, 'Chilac', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28801, 'Chilchotla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28802, 'Cholula', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28803, 'Citlaltepetl', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28804, 'Coatepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28805, 'Coronango', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28806, 'Coxcatlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28807, 'Coyula', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28808, 'Cuacnopalan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28809, 'Cuanala', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28810, 'Cuapiaxtla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28811, 'Cuautlancingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28812, 'Cuayucatepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28813, 'Cuetzalan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28814, 'Domingo Arenas', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28815, 'Escape', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28816, 'Esperanza', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28817, 'Guadalupe Victoria', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28818, 'Huaquechula', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28819, 'Huauchinango', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28820, 'Huehuetlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28821, 'Huejotzingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28822, 'Hueyapan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28823, 'Hueyotlipan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28824, 'Hueytamalco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28825, 'Huixcolotla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28826, 'Ixcaquixtla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28827, 'Ixtiyucan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28828, 'Izucar', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28829, 'Jolalpan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28830, 'La Ceiba', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28831, 'La Galarza', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28832, 'La Resureccion', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28833, 'Lazaro Cardenas', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28834, 'Libres', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28835, 'Los Ranchos', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28836, 'Los Reyes de Juarez', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28837, 'Malacatepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28838, 'Metlaltoyuca', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28839, 'Miahuatlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28840, 'Mihuacan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28841, 'Momoxpan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28842, 'Moyotzingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28843, 'Nealtican', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28844, 'Necaxa', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28845, 'Nopalucan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28846, 'Ocotitlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28847, 'Ocotlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28848, 'Ocoyucan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28849, 'Oriental', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28850, 'Pahuatlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28851, 'Palmar de Bravo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28852, 'Puebla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28853, 'Quecholac', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28854, 'Raboso', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28855, 'Rafael Lara Grajales', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28856, 'San Gabriel Casa Blanca', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28857, 'San Lucas el Grande', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28858, 'San Salvador el Seco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28859, 'San Sebastian Villanueva', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28860, 'Sanctorum', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28861, 'Santa Maria la Alta', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28862, 'Serdan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28863, 'Soltepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28864, 'Tatoxcac', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28865, 'Tecali', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28866, 'Tecamachalco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28867, 'Tehuacan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28868, 'Tehuitzingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28869, 'Tenango', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28870, 'Tenango de las Flores', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28871, 'Tenextatiloyan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28872, 'Teontepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28873, 'Teopantlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28874, 'Teotlalcingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28875, 'Tepango', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28876, 'Tepatlaxco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28877, 'Tepeaca', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28878, 'Tepeojuma', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28879, 'Tepexi', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28880, 'Tepulco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28881, 'Tetela Morelos', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28882, 'Tetela de Ocampo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28883, 'Teteles', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28884, 'Tetzoyocan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28885, 'Texmelucan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28886, 'Teziutlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28887, 'Tianguismanalco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28888, 'Tlachichuca', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28889, 'Tlacotepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28890, 'Tlacoyalco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28891, 'Tlahuapan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28892, 'Tlaixpan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28893, 'Tlalancaleca', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28894, 'Tlaltenango', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28895, 'Tlanalapan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28896, 'Tlancualpican', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28897, 'Tlanepantla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28898, 'Tlapanala', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28899, 'Tlatlauquitepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28900, 'Tlaxcalancingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28901, 'Tlaxco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28902, 'Tochapan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28903, 'Tochimilco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28904, 'Tochtepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(28905, 'Tulcingo', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28906, 'Tuxco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28907, 'Venustiano Carranza', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28908, 'Xalmimilulco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28909, 'Xaltepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28910, 'Xicotepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28911, 'Xiutetelco', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28912, 'Xochiltenango', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28913, 'Xochitlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28914, 'Xonatepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28915, 'Xoxtla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28916, 'Yaonahuac', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28917, 'Yehualtepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28918, 'Zacapechpan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28919, 'Zacapoaxtla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28920, 'Zacatepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28921, 'Zacatlan', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28922, 'Zaragoza', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28923, 'Zinacatepec', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28924, 'Zongozotla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28925, 'Zozutla', 2448, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28926, 'Ajuchitlan', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28927, 'Amazcala', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28928, 'Amealco', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28929, 'Cadereyta', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28930, 'Candiles', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28931, 'Colon', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28932, 'El Colorado', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28933, 'El Pueblito', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28934, 'El Sauz', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28935, 'Ezequiel Montes', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28936, 'Huimilpan', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28937, 'Jalpan', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28938, 'Jauregui', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28939, 'La Canada', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28940, 'La Estancia', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28941, 'La Lira', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28942, 'La Llave', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28943, 'Paso de Mata', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28944, 'Pedro Escobedo', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28945, 'Queretaro', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28946, 'San Jose de los Olvera', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28947, 'San Jose el Alto', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28948, 'San Juan del Rio', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28949, 'San Nicolas', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28950, 'San Pedro Martir', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28951, 'Santa Maria Magdalena', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28952, 'Tequisquiapan', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28953, 'Tlacote el Bajo', 2449, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28954, 'Adolfo Ruiz Cortines', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28955, 'Agua Verde', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28956, 'Ahome', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28957, 'Angostura', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28958, 'Badiraguato', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28959, 'Bagojo', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28960, 'Benito Juarez', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28961, 'Campo Gobierno', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28962, 'Choix', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28963, 'Compuertas', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28964, 'Concordia', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28965, 'Constancia', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28966, 'Cosala', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28967, 'Costa Rica', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28968, 'Culiacan', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28969, 'Culiacancito', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28970, 'El Burrion', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28971, 'El Carrizo', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28972, 'El Diez', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28973, 'El Estero', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28974, 'El Fuerte', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28975, 'El Rosario', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28976, 'El Tamarindo', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28977, 'Eldorado', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28978, 'Escuinapa', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28979, 'Estacion Naranjo', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28980, 'Estancia Bamoa', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28981, 'Gabriel Leyva Solano', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28982, 'Guamuchil', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28983, 'Guasave', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28984, 'Higuera', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28985, 'Isla del Bosque', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28986, 'Jahuara Segundo', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28987, 'Juan Jose Rios', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28988, 'La Cruz', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28989, 'La Palma', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28990, 'La Reforma', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28991, 'La Trinidad', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28992, 'Los Mochis', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28993, 'Mazatlan', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28994, 'Mochicahui', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28995, 'Mocorito', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28996, 'Navolato', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28997, 'Pericos', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28998, 'Pueblos Unidos', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(28999, 'Quila', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29000, 'San Blas', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29001, 'San Ignacio', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29002, 'Sinaloa', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29003, 'Teacapan', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29004, 'Topolobampo', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29005, 'Villa Union', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29006, 'Zapotitlan', 2452, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29007, 'Agua Prieta', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29008, 'Alamos', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29009, 'Altar', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29010, 'Bacobampo', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29011, 'Bacum', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29012, 'Bahia de Kino', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29013, 'Benjamin Hill', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29014, 'Caborca', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29015, 'Campo Sesenta', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29016, 'Cananea', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29017, 'Carbo', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29018, 'Cocorit', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29019, 'Cumpas', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29020, 'Empalme', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29021, 'Esperanza', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29022, 'Esqueda', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29023, 'Etchojoa', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29024, 'Etchoropo', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29025, 'Guaymas', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29026, 'Hermosillo', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29027, 'Huatabampo', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29028, 'Imuris', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29029, 'Juarez', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29030, 'Kino', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29031, 'La Doce', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29032, 'La Union', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29033, 'Moctezuma', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29034, 'Naco', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29035, 'Nacozari', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29036, 'Navajoa', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29037, 'Nogales', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29038, 'Obregon', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29039, 'Pitiquito', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29040, 'Potam', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29041, 'Providencia', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29042, 'Puerto Penasco', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29043, 'Rio Muerto', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29044, 'Sahuaripa', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29045, 'San Jose de Bacum', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29046, 'San Luis Rio Colorado', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29047, 'Sanchez', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29048, 'Santa Ana', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29049, 'Sonoita', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29050, 'Tobarito', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29051, 'Ures', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29052, 'Vicam', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29053, 'Yaqui', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29054, 'Yavaros', 2453, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29055, 'Aquiles Serdan', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29056, 'Ayapa', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29057, 'Balancan', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29058, 'Barra de Santa Ana', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29059, 'Belen', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29060, 'Bosque de Saloya', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29061, 'Buenavista', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29062, 'Campo Magellanes', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29063, 'Cardenas', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29064, 'Chichicapa', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29065, 'Chontalpa', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29066, 'Comalcalco', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29067, 'Cunduacan', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29068, 'El Triunfo', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29069, 'Emiliano Zapata', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29070, 'Fraccionamiento la Selva', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29071, 'Frontera', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29072, 'Huimanguillo', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29073, 'Jalapa', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29074, 'Jalpa', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29075, 'Jonuta', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29076, 'La Curva', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29077, 'La Venta', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29078, 'Luis Gil Perez', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29079, 'Macultepec', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29080, 'Macuspana', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29081, 'Magana', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29082, 'Miguel Hidalgo', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29083, 'Nacajuca', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29084, 'Ocuiltzapotlan', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29085, 'Once de Febrero', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29086, 'Paraiso', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29087, 'Parrilla', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29088, 'Pemex', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29089, 'Playas del Rosario', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29090, 'Rio Viejo', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29091, 'San Carlos', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29092, 'Santa Rosalia', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29093, 'Simon Sarlat', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29094, 'Tacotalpa', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29095, 'Tamulte', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29096, 'Teapa', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29097, 'Tecolutilla', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29098, 'Tenosique', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29099, 'Vicente Guerrero', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29100, 'Villa Aldama', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29101, 'Villahermosa', 2454, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29102, 'Abasolo', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29103, 'Aldama', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29104, 'Altamira', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29105, 'Antiguo Morelos', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29106, 'Camargo', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29107, 'Cuauhtemoc', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29108, 'El Mante', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29109, 'Estacion Manuel', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29110, 'Gonzalez', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29111, 'Graciano Sanchez', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29112, 'Guerrero', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29113, 'Gustavo Diaz Ordaz', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29114, 'Hidalgo', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29115, 'Jaumave', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29116, 'Llerca', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29117, 'Los Guerra', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29118, 'Madero', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29119, 'Matamoros', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29120, 'Mier', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29121, 'Miguel Aleman', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29122, 'Miramar', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29123, 'Nuevo Laredo', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29124, 'Nuevo Progreso', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29125, 'Ocampo', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29126, 'Padilla', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29127, 'Reynosa', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29128, 'Rio Bravo', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29129, 'San Fernando', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29130, 'Santa Engracia', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29131, 'Santander Jimenez', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29132, 'Soto la Marina', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29133, 'Tampico', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29134, 'Tula', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29135, 'Valle Hermoso', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29136, 'Victoria', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29137, 'Xicotencatl', 2455, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29138, 'Ahuashuatepec', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29139, 'Altzayanca', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29140, 'Amaxac', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29141, 'Apetatitlan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29142, 'Apizaco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29143, 'Apizaquito', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29144, 'Atexcatzingo', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29145, 'Axocomanitla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29146, 'Ayometla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29147, 'Benito Juarez', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29148, 'Buen Suceso', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29149, 'Calpulalpan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29150, 'Chiautempan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29151, 'Contla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29152, 'Cuapiaxtla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29153, 'Huactzinco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29154, 'Huamantla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29155, 'Hueyotlipan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29156, 'Huiloac', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29157, 'Ignacio Zaragoza', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29158, 'Ixtacuixtla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29159, 'Ixtenco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29160, 'Mazatecochco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29161, 'Nanacamilpa', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29162, 'Nativitas', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29163, 'Nopalucan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29164, 'Panotla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29165, 'Papalotla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29166, 'Quilehtla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29167, 'Sanctorum', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29168, 'Teacalco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29169, 'Tenancingo', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29170, 'Teolocholco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29171, 'Tepetitla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29172, 'Tepeyanco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29173, 'Tequixquitla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29174, 'Terrenate', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29175, 'Tetla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29176, 'Tetlanohcan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29177, 'Tetlatlahuca', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29178, 'Texcalac', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29179, 'Texoloc', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29180, 'Tlaltelulco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29181, 'Tlaxcala', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29182, 'Tlaxco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29183, 'Tocatlan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29184, 'Totolac', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29185, 'Vicente Guerrero', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29186, 'Villa Alta', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29187, 'Xaloztoc', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29188, 'Xaltocan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29189, 'Xicohtzinco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29190, 'Xicotencatl', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29191, 'Xiloxoxtla', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29192, 'Yauhquemecan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29193, 'Zacatelco', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29194, 'Zacualpan', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29195, 'Zitlaltepec', 2456, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29196, 'Acayucan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29197, 'Actopan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29198, 'Acultzingo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29199, 'Agua Dulce', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29200, 'Alamo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29201, 'Allende', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29202, 'Altamirano', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29203, 'Alto Lucero', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29204, 'Altotonga', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29205, 'Alvarado', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29206, 'Amatlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29207, 'Anahuac', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29208, 'Anton Lizardo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29209, 'Atzacan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29210, 'Azueta', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29211, 'Banderilla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29212, 'Benito Juarez', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29213, 'Boca del Monte', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29214, 'Boca del Rio', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29215, 'Cabada', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29216, 'Cabezas', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29217, 'Carrillo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29218, 'Castillo de Teayo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29219, 'Catemaco', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29220, 'Cazones', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29221, 'Cerro Azul', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29222, 'Chacaltianguis', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29223, 'Chicontepec', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29224, 'Chinameca', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29225, 'Chinampa', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29226, 'Chocaman', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29227, 'Citlaltepetl', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29228, 'Clara', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29229, 'Coacoatzintla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29230, 'Coacotla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29231, 'Coatepec', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29232, 'Coatzacoalcos', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29233, 'Coatzintla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29234, 'Comoapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29235, 'Cordoba', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29236, 'Corral Nuevo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29237, 'Cosamaloapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29238, 'Cosautlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29239, 'Coscomatepec', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29240, 'Cosoleacaque', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29241, 'Covarrubias', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29242, 'Coxquihui', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29243, 'Coyutla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29244, 'Cuauhtemoc', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29245, 'Cuautlapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29246, 'Cuichapa', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29247, 'Cuitlahuac', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29248, 'El Castillo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29249, 'El Higo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29250, 'El Naranjito', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29251, 'El Pueblito', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29252, 'El Tejar', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29253, 'Emilio Carranza', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29254, 'Estacion Juanita', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29255, 'Estacion del Idolo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29256, 'Filomeno Mata', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29257, 'Fortin', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29258, 'Gabino Barreda', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29259, 'Guadalupe Victoria', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29260, 'Gutierrez Zamora', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29261, 'Hidalgo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29262, 'Hidalgotitlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29263, 'Huatusco', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29264, 'Huayacoctla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29265, 'Hueyapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29266, 'Huiloapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29267, 'Ignacio de la Llave', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29268, 'Isla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29269, 'Ixcatepec', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29270, 'Ixhuatlan del Cafe', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29271, 'Ixhuatlan del Sureste', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29272, 'Ixhuatlancillo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29273, 'Ixtaczoquitlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29274, 'Jalacingo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29275, 'Jalapilla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29276, 'Jaltipan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29277, 'Jamapa', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29278, 'Jesus Carranza', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29279, 'Jilotepec', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29280, 'La Antigua', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29281, 'La Estanzuela', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29282, 'La Pena', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29283, 'La Perla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29284, 'La Poza', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29285, 'Las Amapolas', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29286, 'Las Choapas', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29287, 'Las Vigas', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29288, 'Lerdo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29289, 'Lomas de Barillas', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29290, 'Los Altos', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29291, 'Los Mangos', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29292, 'Maltrata', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29293, 'Mariano Escobedo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29294, 'Martinez', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29295, 'Mecatlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29296, 'Mecayapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29297, 'Mendoza', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29298, 'Minatitlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29299, 'Misantla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29300, 'Monte Blanco', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29301, 'Moralillo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29302, 'Motzorongo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29303, 'Mundo Nuevo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29304, 'Nanchital', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29305, 'Naolinco', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29306, 'Naranjos', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29307, 'Nautla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29308, 'Nogales', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29309, 'Oluta', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29310, 'Omealca', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29311, 'Orizaba', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29312, 'Otatitlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29313, 'Oteapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29314, 'Ozuluama', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29315, 'Pajapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29316, 'Palmira', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29317, 'Panuco', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29318, 'Papantla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29319, 'Paraje Nuevo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29320, 'Paso de Ovejas', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29321, 'Paso del Macho', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29322, 'Paso del Toro', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29323, 'Penuela', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29324, 'Perote', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29325, 'Piedras Negras', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29326, 'Plan de Ayala', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29327, 'Platon Sanchez', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29328, 'Playa Vicente', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29329, 'Potrero Nuevo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29330, 'Potrero del Llano', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29331, 'Poza Rica', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29332, 'Puntilla Aldama', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29333, 'Rafael Delgado', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29334, 'Rafael Lucio', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29335, 'Rinconada', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29336, 'Saltabarranca', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29337, 'San Juan Evangelista', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29338, 'San Marcos', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29339, 'San Rafael', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29340, 'San Roman', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29341, 'Santiago Tuxtla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29342, 'Sayula', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29343, 'Soconusco', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29344, 'Soledad', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29345, 'Soteapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29346, 'Tamalin', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29347, 'Tamiahua', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29348, 'Tantoyuca', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29349, 'Tatahuicapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29350, 'Tecolutla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29351, 'Tempoal', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29352, 'Tenango de Rio Blanco', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29353, 'Teocelo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29354, 'Tepetzintla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29355, 'Tequila', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29356, 'Tetelzingo', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29357, 'Texistepec', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29358, 'Tezonapa', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29359, 'Tierra Blanca', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29360, 'Tihuatlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29361, 'Tlacojalpan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29362, 'Tlacotalpan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29363, 'Tlaltetela', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29364, 'Tlapacoyan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29365, 'Tocuila', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29366, 'Tomatlan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29367, 'Totolapa', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29368, 'Totula', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29369, 'Tres Valles', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29370, 'Tuxpam', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29371, 'Tuxtla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29372, 'Tuzamapan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29373, 'Union y Progreso', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29374, 'Ursulo Galvan', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29375, 'Valente Diaz', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29376, 'Vega de Alatorre', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29377, 'Veracruz', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29378, 'Xalapa', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29379, 'Xico', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29380, 'Xocotla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29381, 'Yanga', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29382, 'Yecuatla', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29383, 'Zaragoza', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29384, 'Zempoala', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29385, 'Zongolica', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29386, 'Zozocolco', 2457, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29387, 'Acanceh', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29388, 'Akil', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29389, 'Baca', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29390, 'Buctzotz', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29391, 'Cacalchen', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29392, 'Cansahcab', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29393, 'Caucel', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29394, 'Celestun', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29395, 'Cenotillo', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29396, 'Chemax', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29397, 'Chichimila', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29398, 'Chicxulub', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29399, 'Chochola', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29400, 'Cholul', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29401, 'Chumayel', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29402, 'Conkal', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29403, 'Cuzama', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29404, 'Dzan', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29405, 'Dzemul', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29406, 'Dzidzantun', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29407, 'Dzilam Gonzalez', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29408, 'Dzitas', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29409, 'Espita', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29410, 'Halacho', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29411, 'Hocaba', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29412, 'Hoctun', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29413, 'Homun', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29414, 'Huhi', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29415, 'Hunucma', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29416, 'Itzincab', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29417, 'Ixil', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29418, 'Izamal', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29419, 'Kanasin', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29420, 'Kantunil', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29421, 'Kinchil', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29422, 'Mama', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29423, 'Mani', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29424, 'Maxcanu', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29425, 'Merida', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29426, 'Motul', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29427, 'Muna', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29428, 'Opichen', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29429, 'Oxkutzcab', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29430, 'Panaba', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29431, 'Peto', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29432, 'Piste', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29433, 'Progreso', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29434, 'Sacalum', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29435, 'Santa Elena', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29436, 'Seye', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29437, 'Sotuta', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29438, 'Sucila', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29439, 'Tahmek', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29440, 'Teabo', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29441, 'Tecoh', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29442, 'Tekanto', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29443, 'Tekax', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29444, 'Tekit', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29445, 'Telchac', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29446, 'Temax', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29447, 'Temozon', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29448, 'Tetiz', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29449, 'Ticul', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29450, 'Timucuy', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29451, 'Tixkokob', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29452, 'Tixpehual', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29453, 'Tizimin', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29454, 'Tunkas', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29455, 'Tzucacab', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29456, 'Uman', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29457, 'Valladolid', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29458, 'X-Can', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29459, 'Yucatan', 2458, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29460, 'Apozol', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29461, 'Banon', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29462, 'Canitas', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29463, 'Chalchihuites', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29464, 'Concepcion del Oro', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29465, 'Cos', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29466, 'Estrada', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29467, 'Fresnillo', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29468, 'Garcia', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29469, 'Gonzalez Ortega', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29470, 'Guadalupe', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29471, 'Hidalgo', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29472, 'Jalpa', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29473, 'Jerez', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29474, 'Juan Aldama', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(29475, 'Juchipila', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29476, 'Loreto', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29477, 'Lourdes', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29478, 'Luis Moya', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29479, 'Miguel Auza', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29480, 'Monte Escobedo', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29481, 'Morelos', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29482, 'Natera', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29483, 'Nieves', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29484, 'Nochistlan', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29485, 'Ojo Caliente', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29486, 'Piedra Gorda', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29487, 'Pinos', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29488, 'Plateros', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29489, 'Pozo de Gamboa', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29490, 'Rio Grande', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29491, 'Sain Alto', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29492, 'Sombrerete', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29493, 'Tabasco', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29494, 'Tacoaleche', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29495, 'Tepechitlan', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29496, 'Teul', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29497, 'Tlaltenango', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29498, 'Toribio', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29499, 'Trancoso', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29500, 'Valparaiso', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29501, 'Victor Rosales', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29502, 'Villa Gonzalez Ortega', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29503, 'Villanueva', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29504, 'Zacatecas', 2459, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29505, 'Tol', 2460, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29506, 'Weno', 2460, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29507, 'Lelu', 2461, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29508, 'Kolonia', 2462, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29509, 'Palikir', 2462, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29510, 'Colonia', 2463, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29511, 'Balti', 2464, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29512, 'Falesti', 2464, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29513, 'Glodeni', 2464, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29514, 'Rascani', 2464, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29515, 'Cahul', 2465, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29516, 'Straseni', 2466, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29517, 'Straseni', 2467, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29518, 'Briceni', 2468, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29519, 'Donduseni', 2468, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29520, 'Edinet', 2468, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29521, 'Ocnita', 2468, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29522, 'Ciadar Lunga', 2469, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29523, 'Comrat', 2469, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29524, 'Vulcanesti', 2469, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29525, 'Basarabeasca', 2470, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29526, 'Cimislia', 2470, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29527, 'Hancesti', 2470, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29528, 'Leova', 2470, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29529, 'Orhei', 2471, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29530, 'Rezina', 2471, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29531, 'Telenesti', 2471, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29532, 'Drochia', 2472, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29533, 'Floresti', 2472, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29534, 'Soroca', 2472, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29535, 'Taraclia', 2473, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29536, 'Causani', 2474, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29537, 'Camenca', 2475, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29538, 'Dnestrovsc', 2475, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29539, 'Dubasari', 2475, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29540, 'Griguriopol', 2475, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29541, 'Rabnita', 2475, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29542, 'Slobozia', 2475, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29543, 'Tighina', 2475, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29544, 'Tiraspol\'', 2475, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29545, 'Calarasi', 2476, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29546, 'Nisporeni', 2476, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29547, 'Ungheni', 2476, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29548, 'Fontvieille', 2477, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29549, 'Monaco-Ville', 2479, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29550, 'Cecerleg', 2481, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29551, 'Olgij', 2482, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29552, 'Bajanhongor', 2483, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29553, 'Bulgan', 2484, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29554, 'Darhan', 2485, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29555, 'Chojbalsan', 2486, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29556, 'Sajnshand', 2487, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29557, 'Mandalgovi', 2488, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29558, 'Altaj', 2489, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29559, 'Chojr', 2490, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29560, 'Ondorhaan', 2491, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29561, 'Hovd', 2492, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29562, 'Moron', 2493, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29563, 'Dalanzadgad', 2494, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29564, 'Erdenet', 2495, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29565, 'Arvajheer', 2496, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29566, 'Suhbaatar', 2497, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29567, 'Zuunharaa', 2497, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29568, 'Baruun-Urt', 2498, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29569, 'Nalajh', 2499, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29570, 'Zuunmod', 2499, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29571, 'Ulaanbaatar', 2500, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29572, 'Ulaangom', 2501, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29573, 'Tosoncengel', 2502, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29574, 'Uliastaj', 2502, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29575, 'Montserrat', 2503, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29576, 'Agadir', 2504, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29577, 'Mohammedia', 2505, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29578, 'ad-Dar-al-Bayda', 2505, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29579, 'Bin Sulayman', 2506, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29580, 'Bir Rashid', 2506, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29581, 'Bu-al-Jad', 2506, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29582, 'Buznika', 2506, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29583, 'Khuribghah', 2506, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29584, 'Sattat', 2506, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29585, 'Wad Zam', 2506, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29586, 'Asfi', 2507, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29587, 'Azimur', 2507, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29588, 'Sidi Binnur', 2507, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29589, 'Sidi Isma\'il', 2507, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29590, 'Yussufiyah', 2507, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29591, 'al-Jadidah', 2507, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29592, 'Fas', 2508, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29593, 'Fes', 2508, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29594, 'Safru', 2508, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29595, 'Ghulimim', 2510, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29596, 'Sidi Ifni', 2510, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29597, 'Tafraut', 2510, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29598, 'Tantan', 2510, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29599, 'Kenitra', 2511, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29600, 'Amalu Ighriban', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29601, 'Azru', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29602, 'Jama\'at-al-Marirt', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29603, 'Khanifrah', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29604, 'Meknes', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29605, 'Midalt', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29606, 'Miknas', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29607, 'Mulay Idris', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29608, 'al-Hajab', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29609, 'ar-Rasidiyah', 2513, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29610, 'Ahfir', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29611, 'Bin Ansar', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29612, 'Birkan', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29613, 'Fijij', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29614, 'Jaradah', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29615, 'Tawrirt', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29616, 'Ujdah', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29617, 'Zayu', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29618, 'al-Arwi', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29619, 'al-Ayun Sidi Malluk', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29620, 'an-Nadur', 2514, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29621, 'Oujda', 2515, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29622, 'Khamissat', 2517, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29623, 'Sakhirat', 2517, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29624, 'Tiflat', 2517, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29625, 'ar-Ribat', 2517, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29626, 'Settat', 2519, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29627, 'Bani Mallal', 2521, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29628, 'Beni Mellal', 2521, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29629, 'Qasbat Tadlah', 2521, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29630, 'Suq Sabt Awlat Nama', 2521, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29631, 'al-Faqih Bin Salah', 2521, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29632, 'Asilah', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29633, 'Finidiq', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29634, 'Martil', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29635, 'Midiq', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29636, 'Shifshawn', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29637, 'Tangier', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29638, 'Tanjah', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29639, 'Tittawin', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29640, 'Titwan', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29641, 'al-\'Ara\'ish', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29642, 'al-Qasr-al-Kabir', 2522, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29643, 'Chibuto', 2527, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29644, 'Chidenguele', 2527, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29645, 'Chokwe', 2527, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29646, 'Chongoene', 2527, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29647, 'Guija', 2527, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29648, 'Macia', 2527, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29649, 'Manjacaze', 2527, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29650, 'Xai-Xai', 2527, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29651, 'Homoine', 2528, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29652, 'Inhambane', 2528, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29653, 'Inharrime', 2528, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29654, 'Jangamo', 2528, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29655, 'Maxixe', 2528, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29656, 'Panda', 2528, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29657, 'Quissico', 2528, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29658, 'Chimoio', 2529, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29659, 'Manica', 2529, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29660, 'Maputo', 2530, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29661, 'Maputo', 2531, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29662, 'Angoche', 2532, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29663, 'Lumbo', 2532, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29664, 'Mocambique', 2532, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29665, 'Nacala', 2532, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29666, 'Nampula', 2532, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29667, 'Cuamba', 2533, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29668, 'Lichinga', 2533, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29669, 'Mandimba', 2533, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29670, 'Maniamba', 2533, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29671, 'Marrupa', 2533, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29672, 'Beira', 2534, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29673, 'Dondo', 2534, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29674, 'Tete', 2535, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29675, 'Zumbo', 2535, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29676, 'Garue', 2536, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29677, 'Mocuba', 2536, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29678, 'Quelimane', 2536, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29679, 'Bogale', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29680, 'Henzada', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29681, 'Kyaiklat', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29682, 'Labutta', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29683, 'Maubin', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29684, 'Moulmeingyun', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29685, 'Myanaung', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29686, 'Pathein', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29687, 'Pyapon', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29688, 'Wakema', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29689, 'Yandoon', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29690, 'Ye', 2537, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29691, 'Bago', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29692, 'Letpadan', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29693, 'Nyaunglebin', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29694, 'Paungde', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29695, 'Pyay', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29696, 'Pyu', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29697, 'Thanatpin', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29698, 'Tharrawaddy', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29699, 'Toungoo', 2538, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29700, 'Falam', 2539, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29701, 'Banmo', 2540, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29702, 'Myitkyina', 2540, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29703, 'Loikaw', 2541, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29704, 'Hpa-an', 2542, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29705, 'Allanmyo', 2543, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29706, 'Chauk', 2543, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29707, 'Magway', 2543, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29708, 'Minbu', 2543, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29709, 'Pakokku', 2543, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29710, 'Taungdwingyi', 2543, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29711, 'Thayetmyo', 2543, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29712, 'Yenangyaung', 2543, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29713, 'Kyaukse', 2544, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29714, 'Mandalay', 2544, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29715, 'Maymyo', 2544, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29716, 'Meiktila', 2544, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29717, 'Mogok', 2544, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29718, 'Myingyan', 2544, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29719, 'Pyinmana', 2544, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29720, 'Yamethin', 2544, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29721, 'Kyaikkami', 2545, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29722, 'Kyaikto', 2545, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29723, 'Martaban', 2545, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29724, 'Mawlamyine', 2545, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29725, 'Mudon', 2545, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29726, 'Thaton', 2545, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29727, 'Akyab', 2547, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29728, 'Arakan', 2547, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29729, 'Kalay', 2548, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29730, 'Katha', 2548, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29731, 'Mawlaik', 2548, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29732, 'Monywa', 2548, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29733, 'Sagaing', 2548, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29734, 'Shwebo', 2548, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29735, 'Keng Tung', 2549, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29736, 'Lashio', 2549, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29737, 'Taunggyi', 2549, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29738, 'Dawei', 2550, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29739, 'Mergui', 2550, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29740, 'Kanbe', 2551, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29741, 'Kayan', 2551, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29742, 'Syriam', 2551, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29743, 'Thongwa', 2551, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29744, 'Twante', 2551, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29745, 'Yangon', 2551, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29746, 'Katima Mulilo', 2552, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29747, 'Henties Bay', 2553, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29748, 'Karibib', 2553, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29749, 'Kuisebmond', 2553, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29750, 'Omaruru', 2553, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29751, 'Otjimbingwe', 2553, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29752, 'Swakopmund', 2553, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29753, 'Usakos', 2553, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29754, 'Walvis Bay', 2553, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29755, 'Aranos', 2554, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29756, 'Maltahohe', 2554, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29757, 'Mariental', 2554, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29758, 'Rehoboth', 2554, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29759, 'Bethanien', 2555, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29760, 'Karasburg', 2555, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29761, 'Keetmanshoop', 2555, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29762, 'Luderitz', 2555, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29763, 'Oranjemund', 2555, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29764, 'Warmbad', 2555, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29765, 'Rundu', 2556, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29766, 'Windhoek', 2557, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29767, 'Arandis', 2558, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29768, 'Khorixas', 2558, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29769, 'Opuwo', 2558, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29770, 'Outjo', 2558, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29771, 'Oshikango', 2559, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29772, 'Gobabis', 2560, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29773, 'Leonardville', 2560, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29774, 'Ongandjera', 2561, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29775, 'Ongwediva', 2562, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29776, 'Oshakati', 2562, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29777, 'Ondangwa', 2563, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29778, 'Otavi', 2563, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29779, 'Tsumeb', 2563, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29780, 'Grootfontein', 2564, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29781, 'Okahandja', 2564, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29782, 'Okakarara', 2564, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29783, 'Otjiwarongo', 2564, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29784, 'Yaren', 2565, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29785, 'Banepa', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29786, 'Bhaktapur', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29787, 'Bidur', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29788, 'Bishalter', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29789, 'Dhulikhel', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29790, 'Kathmandu', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29791, 'Kirtipur', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29792, 'Lalitpur', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29793, 'Madhyapur Thimi', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29794, 'Panauti', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29795, 'Tribuvannagar', 2566, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29796, 'Birendranagar', 2567, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29797, 'Gulariya', 2567, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29798, 'Narayan', 2567, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29799, 'Nepalganj', 2567, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29800, 'Surkhet', 2567, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29801, 'Baglung', 2568, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29802, 'Weni', 2568, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29803, 'Byas', 2569, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29804, 'Leknath', 2569, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29805, 'Pokhara', 2569, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29806, 'Prithivinarayan', 2569, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29807, 'Putalibazar', 2569, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29808, 'Waling', 2569, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29809, 'Bhimeshwar', 2570, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29810, 'Jaleshwar', 2570, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29811, 'Janakpur', 2570, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29812, 'Kamalamai', 2570, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29813, 'Malangwa', 2570, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29814, 'Sinduli Marhi', 2570, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29815, 'Jumla', 2571, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29816, 'Biratnagar', 2572, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29817, 'Dhankuta', 2572, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29818, 'Dharan', 2572, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29819, 'Inaruwa', 2572, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29820, 'Itahari', 2572, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29821, 'Khandbari', 2572, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29822, 'Butwal', 2573, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29823, 'Kapilwastu', 2573, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29824, 'Ramgram', 2573, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29825, 'Sidharthanagar', 2573, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29826, 'Tansen', 2573, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29827, 'Wahadurganj', 2573, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29828, 'Amargadhi', 2574, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29829, 'Dashrathchand', 2574, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29830, 'Mahendranagar', 2574, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29831, 'Bhadrapur', 2575, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29832, 'Damak', 2575, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29833, 'Ilam', 2575, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29834, 'Mechinagar', 2575, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29835, 'Bharatpur', 2576, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29836, 'Birganj', 2576, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29837, 'Chitwan', 2576, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29838, 'Gaur', 2576, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29839, 'Hetauda', 2576, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29840, 'Kalaiya', 2576, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29841, 'Ratnanagar', 2576, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29842, 'Salyan', 2577, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29843, 'Tulsipur', 2577, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29844, 'Lahan', 2578, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29845, 'Rajbiraj', 2578, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29846, 'Siraha', 2578, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29847, 'Triyuga', 2578, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29848, 'Dhangadi', 2579, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29849, 'Dipayal', 2579, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29850, 'Tikapur', 2579, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29851, 'Kralendijk', 2580, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29852, 'Curacao', 2581, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29853, 'Willemstad', 2581, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29854, 'The Bottom', 2582, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29855, 'SchipolRijk', 2585, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29856, 'Amstelveen', 2586, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29857, 'Aa en Hunze', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29858, 'Assen', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29859, 'Borger-Odoorn', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29860, 'Coevorden', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29861, 'De Wolden', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29862, 'Den Oever', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29863, 'Emmen', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29864, 'Gasteren', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29865, 'Hoogeveen', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29866, 'Menterwolde', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29867, 'Meppel', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29868, 'Midden-Drenthe', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29869, 'Noordenveld', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29870, 'Stadskanaal', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29871, 'Tynaarlo', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29872, 'Veenoord', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29873, 'Westerveld', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29874, 'Zuidlaren', 2587, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29875, 'Almere', 2588, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29876, 'Dronten', 2588, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29877, 'Lelystad', 2588, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29878, 'Noordoostpolder', 2588, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29879, 'Urk', 2588, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29880, 'Zeewolde', 2588, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29881, 'Achtkarspelen', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29882, 'Ameland', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29883, 'Boarnsterhim', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29884, 'Bolsward', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29885, 'Dantumadeel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29886, 'Dongeradeel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29887, 'Drachten', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29888, 'Ferwerderadiel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29889, 'Franekeradeel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29890, 'Gaasterlan-Sleat', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29891, 'Gorredijk', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29892, 'Harlingen', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29893, 'Heerenveen', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29894, 'Het Bildt', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29895, 'Kollumerland', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29896, 'Leeuwarden', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29897, 'Leeuwarderadeel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29898, 'Lemsterland', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29899, 'Littenseradiel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29900, 'Menaldumadeel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29901, 'Nijefurd', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29902, 'Oostrum', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29903, 'Ooststellingwerf', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29904, 'Opsterland', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29905, 'Schiermonnikoog', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29906, 'Skasterlan', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29907, 'Smallingerland', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29908, 'Sneek', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29909, 'Terschelling', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29910, 'Tytsjerksteradiel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29911, 'Ureterp', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29912, 'Weststellingwerf', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29913, 'Wolvega', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29914, 'Wunseradiel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29915, 'Wymbritseradiel', 2589, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29916, 'Aalten', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29917, 'Angerlo', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29918, 'Apeldoorn', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29919, 'Appeldoorn', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29920, 'Arnhem', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29921, 'Barneveld', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29922, 'Bemmel', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29923, 'Bergh', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29924, 'Beuningen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29925, 'Borculo', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29926, 'Brummen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29927, 'Buren', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29928, 'Culemborg', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29929, 'Delden', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29930, 'Didam', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29931, 'Dieren', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29932, 'Dinxperlo', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29933, 'Dodewaard', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29934, 'Doesburg', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29935, 'Doetinchem', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29936, 'Druten', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29937, 'Duiven', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29938, 'Ede', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29939, 'Eerbeek', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29940, 'Eibergen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29941, 'Elburg', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29942, 'Epe', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29943, 'Ermelo', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29944, 'Geldermalsen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29945, 'Gendringen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29946, 'Giesbeek', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29947, 'Gorssel', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29948, 'Groenlo', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29949, 'Groesbeek', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29950, 'Harderwijk', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29951, 'Hattem', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29952, 'Heerde', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29953, 'Hengelo', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29954, 'Heumen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29955, 'Huisen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29956, 'Hummelo en Keppel', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29957, 'Kesteren', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29958, 'Kootwijkerbroek', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29959, 'Leerdam', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29960, 'Leeuwen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29961, 'Lichtenvoorde', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29962, 'Lingewaal', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29963, 'Lochem', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29964, 'Loppersum', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29965, 'Maasdriel', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29966, 'Malden', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29967, 'Millingen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29968, 'Molenhoek', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29969, 'Neede', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29970, 'Neerijnen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29971, 'Nijkerk', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29972, 'Nijmegen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29973, 'Nunspeet', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29974, 'Oldebroek', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29975, 'Oosterbeek', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29976, 'Overbetuwe', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29977, 'Putten', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29978, 'Renkum', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29979, 'Rheden', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29980, 'Rijnwaarden', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29981, 'Rozendaal', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29982, 'Ruurlo', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29983, 'Scherpenzeel', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29984, 'Steenderen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29985, 'Terborg', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29986, 'Tiel', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29987, 'Twello', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29988, 'Ubbergen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29989, 'Vaassen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29990, 'Varsseveld', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29991, 'Voorst', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29992, 'Vorden', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29993, 'Waardenburg', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29994, 'Wageningen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29995, 'Warmsveld', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29996, 'Wehl', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29997, 'Westervoort', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29998, 'Wijchen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(29999, 'Winterswijk', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30000, 'Wisch', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30001, 'Zaltbommel', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30002, 'Zelhem', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30003, 'Zevenaar', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30004, 'Zutphen', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30005, 's-Heerenberg', 2590, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30006, 'Appingedam', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30007, 'Bedum', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30008, 'Bellingwedde', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30009, 'De Marne', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30010, 'Delfzijl', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30011, 'Eemsmond', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30012, 'Groningen', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30013, 'Grootegast', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30014, 'Haren', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30015, 'Hoogezand-Sappemeer', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30016, 'Leek', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30017, 'Marum', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30018, 'Midwolda', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30019, 'Muntendam', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30020, 'Pekela', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30021, 'Reiderland', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30022, 'Scheemda', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30023, 'Slochteren', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30024, 'Ten Boer', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30025, 'Tolbert', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30026, 'Veendam', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30027, 'Vlagtwedde', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30028, 'Winschoten', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30029, 'Winsum', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30030, 'Zuidhorn', 2591, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30031, 'Ambt Montfort', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30032, 'Arcen en Velden', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30033, 'Beek', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30034, 'Beesel', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30035, 'Bergen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30036, 'Blerick', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30037, 'Brunssum', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30038, 'Echt', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30039, 'Eijsden', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30040, 'Gennep', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30041, 'Gulpen-Wittem', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30042, 'Haelen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30043, 'Heel', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30044, 'Heerlen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30045, 'Helden', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30046, 'Heythuysen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30047, 'Horst', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30048, 'Hunsel', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30049, 'Kerkrade', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30050, 'Kessel', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30051, 'Landgraaf', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30052, 'Maasbracht', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(30053, 'Maasbree', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30054, 'Maastricht', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30055, 'Margraten', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30056, 'Meerlo-Wanssum', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30057, 'Meerssen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30058, 'Meijel', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30059, 'Mook en Middelaar', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30060, 'Nederweert', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30061, 'Nuth', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30062, 'Onderbanken', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30063, 'Roerdalen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30064, 'Roermond', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30065, 'Roggel', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30066, 'Roggel en Neer', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30067, 'Schinnen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30068, 'Sevenum', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30069, 'Simpelveld', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30070, 'Sittard', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30071, 'Sittard-Geleen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30072, 'Stein', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30073, 'Stramproy', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30074, 'Susteren', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30075, 'Swalmen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30076, 'Tegelen', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30077, 'Thorn', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30078, 'Vaals', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30079, 'Valkenburg', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30080, 'Venlo', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30081, 'Venray', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30082, 'Vilt Limburg', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30083, 'Voerendaal', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30084, 'Weert', 2592, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30085, '\'s-Hertogenbosch', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30086, 'Aalburg', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30087, 'Alphen-Chaam', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30088, 'Asten', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30089, 'Baarle-Nassau', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30090, 'Bergeijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30091, 'Bergen op Zoom', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30092, 'Berghem', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30093, 'Bernheze', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30094, 'Bernisse', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30095, 'Best', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30096, 'Bladel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30097, 'Boekel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30098, 'Boxmeer', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30099, 'Boxtel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30100, 'Breda', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30101, 'Budel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30102, 'Cranendonck', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30103, 'Cuijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30104, 'Den Bosch', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30105, 'Den Dungen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30106, 'Deurne', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30107, 'Dongen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30108, 'Drimmelen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30109, 'Drunen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30110, 'Duizel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30111, 'Eersel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30112, 'Eindhoven', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30113, 'Etten-Leur', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30114, 'Geertruidenberg', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30115, 'Geldrop', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30116, 'Gemert-Bakel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30117, 'Gilze en Rijen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30118, 'Goirle', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30119, 'Grave', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30120, 'Haaren', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30121, 'Halderberge', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30122, 'Heeze-Leende', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30123, 'Heijningen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30124, 'Helmond', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30125, 'Heusden', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30126, 'Hilvarenbeek', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30127, 'Hoeven', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30128, 'Hoogerheide', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30129, 'Kaatsheuvel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30130, 'Korendijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30131, 'Laarbeek', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30132, 'Landerd', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30133, 'Lith', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30134, 'Loon op Zand', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30135, 'Maarheeze', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30136, 'Maasdonk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30137, 'Mierlo', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30138, 'Mill en Sint Hubert', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30139, 'Moerdijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30140, 'Nieuwkuijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30141, 'Nuenen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30142, 'Oirschot', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30143, 'Oisterwijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30144, 'Oosterhout', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30145, 'Oss', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30146, 'Raamsdonksveer', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30147, 'Ravenstein', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30148, 'Reusel-De Mierden', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30149, 'Roosendaal', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30150, 'Rosmalen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30151, 'Rucphen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30152, 'Schaijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30153, 'Schijndel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30154, 'Sint Anthonis', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30155, 'Sint Willebrord', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30156, 'Sint-Michielsgestel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30157, 'Sint-Oedenrode', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30158, 'Sleeuwijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30159, 'Someren', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30160, 'Son en Breugel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30161, 'Steenbergen', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30162, 'Tilburg', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30163, 'Uden', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30164, 'Valkenswaard', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30165, 'Veghel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30166, 'Veldhoven', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30167, 'Vinkel', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30168, 'Vught', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30169, 'Waalre', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30170, 'Waalwijk', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30171, 'Werkendam', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30172, 'Woensdrecht', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30173, 'Woudrichem', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30174, 'Zundert', 2593, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30175, 'Aalsmeer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30176, 'Alkmaar', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30177, 'Amstelveen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30178, 'Amsterdam', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30179, 'Andijk', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30180, 'Ankeveen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30181, 'Anna Paulowna', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30182, 'Assendelft', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30183, 'Badhoevedorp', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30184, 'Beemster', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30185, 'Bennebroek', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30186, 'Bergen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30187, 'Beverwijk', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30188, 'Blaricum', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30189, 'Bloemendaal', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30190, 'Bovenkarspel', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30191, 'Bussum', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30192, 'Castricum', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30193, 'Den Helder', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30194, 'Diemen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30195, 'Drechterland', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30196, 'Edam-Volendam', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30197, 'Enkhuizen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30198, 'Graft-De Rijp', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30199, 'Haarlem', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30200, 'Haarlemmerliede', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30201, 'Haarlemmermeer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30202, 'Harenkarspel', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30203, 'Heemskerk', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30204, 'Heemstede', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30205, 'Heerhugowaard', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30206, 'Heiloo', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30207, 'Hillegom', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30208, 'Hilversum', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30209, 'Hoofddorp', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30210, 'Hoorn', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30211, 'Huizen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30212, 'Ijmuiden', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30213, 'Katwijk', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30214, 'Krommenie', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30215, 'Landsmeer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30216, 'Langedijk', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30217, 'Laren', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30218, 'Loosdrecht', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30219, 'Medemblik', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30220, 'Middenbeemster', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30221, 'Muiden', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30222, 'Naarden', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30223, 'Niedorp', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30224, 'Nieuw-Vennep', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30225, 'Noorder-Koggenland', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30226, 'Obdam', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30227, 'Oostzaan', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30228, 'Opmeer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30229, 'Oude Meer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30230, 'Ouder-Amstel', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30231, 'Oudkarspel', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30232, 'Purmerend', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30233, 'Rozenburg', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30234, 'Schagen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30235, 'Schermer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30236, 'Stede Broec', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30237, 'Texel', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30238, 'Tuitjenhorn', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30239, 'Uitgeest', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30240, 'Uithoorn', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30241, 'Velsen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30242, 'Venhuizen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30243, 'Vijfhuizen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30244, 'Waarland', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30245, 'Waterland', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30246, 'Weesp', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30247, 'Wervershoof', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30248, 'Wester-Koggenland', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30249, 'Westwoud', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30250, 'Wieringen', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30251, 'Wieringermeer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30252, 'Wognum', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30253, 'Wormer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30254, 'Wormerland', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30255, 'Wormerveer', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30256, 'Zaandam', 2594, 0.00, 0, '2021-04-06 01:13:48', '2021-04-06 01:13:48', NULL), -(30257, 'Zaanstad', 2594, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30258, 'Zandvoort', 2594, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30259, 'Zeevang', 2594, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30260, 'Zwaag', 2594, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30261, 'Zwanenburg', 2594, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30262, 'Almelo', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30263, 'Bathmen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30264, 'Borne', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30265, 'Dalfsen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30266, 'Dedemsvaart', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30267, 'Denekamp', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30268, 'Deventer', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30269, 'Diepenheim', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30270, 'Enschede', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30271, 'Genemuiden', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30272, 'Haaksbergen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30273, 'Hardenberg', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30274, 'Hasselt', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30275, 'Hellendoorn', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30276, 'Hengelo', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30277, 'Hof van Twente', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30278, 'IJsselmuiden', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30279, 'Kampen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30280, 'Lemelerveld', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30281, 'Losser', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30282, 'Nieuwleusen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30283, 'Nijverdal', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30284, 'Oldenzaal', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30285, 'Olst', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30286, 'Ommen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30287, 'Ootmarsum', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30288, 'Raalte', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30289, 'Rijssen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30290, 'Staphorst', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30291, 'Steenwijk', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30292, 'Tubbergen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30293, 'Vriezenveen', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30294, 'Vroomshoop', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30295, 'Weerselo', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30296, 'Wierden', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30297, 'Zwartewaterland', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30298, 'Zwolle', 2595, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30299, 'Abcoude', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30300, 'Amerongen', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30301, 'Amersfoort', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30302, 'Baarn', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30303, 'Benschop', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30304, 'Breukelen', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30305, 'Bunnik', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30306, 'Bunschoten', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30307, 'De Bilt', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30308, 'De Ronde Venen', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30309, 'Den Dolder', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30310, 'Doorn', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30311, 'Driebergen-Rijsenburg', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30312, 'Eemnes', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30313, 'Houten', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30314, 'IJsselstein', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30315, 'Kockengen', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30316, 'Leersum', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30317, 'Leusden', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30318, 'Loenen', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30319, 'Lopik', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30320, 'Maarn', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30321, 'Maarsen', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30322, 'Mijdrecht', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30323, 'Montfoort', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30324, 'Nieuwegein', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30325, 'Nigtevecht', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30326, 'Odijk', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30327, 'Oudewater', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30328, 'Renswoude', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30329, 'Rhenen', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30330, 'Soest', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30331, 'Soesterberg', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30332, 'Utrecht', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30333, 'Veenendaal', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30334, 'Vianen', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30335, 'Wijdemeren', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30336, 'Wijk', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30337, 'Wilnis', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30338, 'Woerden', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30339, 'Woudenberg', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30340, 'Zeist', 2597, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30341, 'Axel', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30342, 'Borsele', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30343, 'Goes', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30344, 'Hontenisse', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30345, 'Hulst', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30346, 'Kapelle', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30347, 'Middelburg', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30348, 'Noord-Beveland', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30349, 'Oostburg', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30350, 'Reimerswaal', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30351, 'Sas van Gent', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30352, 'Schouwen-Duiveland', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30353, 'Sluis-Aardenburg', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30354, 'Terneuzen', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30355, 'Tholen', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30356, 'Veere', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30357, 'Vlissingen', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30358, 'Zierikzee', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30359, 'Zijpe', 2598, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30360, '\'s-Gravendeel', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30361, '\'s-Gravenhage', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30362, '\'s-Gravenzande', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30363, 'Alblasserdam', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30364, 'Albrandswaard', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30365, 'Alkemade', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30366, 'Alphen', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30367, 'Alphen aan den Rijn', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30368, 'Barendrecht', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30369, 'Bergambacht', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30370, 'Bergschenhoek', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30371, 'Berkel en Rodenrijs', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30372, 'Binnenmaas', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30373, 'Bleiswijk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30374, 'Bodegraven', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30375, 'Boskoop', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30376, 'Brielle', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30377, 'Capelle', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30378, 'Cromstrijen', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30379, 'De Lier', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30380, 'Delft', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30381, 'Dirksland', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30382, 'Dordrecht', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30383, 'Giessenlanden', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30384, 'Goedereede', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30385, 'Gorinchem', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30386, 'Gouda', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30387, 'Graafstroom', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30388, 'Hardinxveld-Giessendam', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30389, 'Heerjansdam', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30390, 'Hellevoetsluis', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30391, 'Hendrik-Ido-Ambacht', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30392, 'Jacobswoude', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30393, 'Katwijk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30394, 'Kinderdijk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30395, 'Krimpen', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30396, 'Leiden', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30397, 'Leiderdorp', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30398, 'Leidschendam-Voorburg', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30399, 'Liemeer', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30400, 'Liesveld', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30401, 'Lisse', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30402, 'Maasland', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30403, 'Maassluis', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30404, 'Middelharnis', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30405, 'Monster', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30406, 'Moordrecht', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30407, 'Naaldwijk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30408, 'Nederlek', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30409, 'Nieuw-Lekkerland', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30410, 'Nieuwekerk aan den IJssel', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30411, 'Nieuwkoop', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30412, 'Noordwijk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30413, 'Noordwijkerhout', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30414, 'Oegestgeest', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30415, 'Oostflakkee', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30416, 'Oud-Beijerland', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30417, 'Ouderkerk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30418, 'Papendrecht', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30419, 'Pijnacker-Nootdorp', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30420, 'Reeuwijk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30421, 'Ridderkerk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30422, 'Rijnsburg', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30423, 'Rijnwoude', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30424, 'Rijswijk', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30425, 'Rotterdam', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30426, 'Sassenheim', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30427, 'Schiedam', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30428, 'Schipluiden', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30429, 'Schoonhoven', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30430, 'Sliedrecht', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30431, 'Spijkenisse', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30432, 'Strijen', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30433, 'Ter Aar', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30434, 'The Hague', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30435, 'Valkenburg', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30436, 'Vierpolders', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30437, 'Vlaardingen', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30438, 'Vlist', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30439, 'Voorhout', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30440, 'Voorschoten', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30441, 'Waddinxveen', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30442, 'Warmond', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30443, 'Wassenaar', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30444, 'Wateringen', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30445, 'West Maas en Waal', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30446, 'Westvoorne', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30447, 'Zederik', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30448, 'Zevenhuizen-Moerkapelle', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30449, 'Zoetermeer', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30450, 'Zoeterwoude', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30451, 'Zwijndrecht', 2599, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30452, 'Belep', 2600, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30453, 'Fayaoue', 2600, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30454, 'Tadine', 2600, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30455, 'Vao', 2600, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30456, 'We', 2600, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30457, 'Canala', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30458, 'Hienghene', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30459, 'Houailu', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30460, 'Kaala Gomen', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30461, 'Kone', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30462, 'Koumac', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30463, 'Ouegoa', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30464, 'Poindimie', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30465, 'Ponerihouen', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30466, 'Pouebo', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30467, 'Pouembout', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30468, 'Poum', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30469, 'Poya', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30470, 'Touho', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30471, 'Voh', 2601, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30472, 'Bouloupari', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30473, 'Bourail', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30474, 'Dumbea', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30475, 'Farino', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30476, 'La Foa', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30477, 'Moindou', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30478, 'Mont-Dore', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30479, 'Noumea', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30480, 'Paita', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30481, 'Sarramea', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30482, 'Thio', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30483, 'Yate', 2602, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30484, 'Auckland', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30485, 'Helensville', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30486, 'Henderson', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30487, 'Hillsborough', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30488, 'Lynfield', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30489, 'Manukau', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30490, 'Manurewa', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30491, 'Mt. Roskill', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30492, 'North Shore', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30493, 'Onehunga', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30494, 'Orewa', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30495, 'Otahuhu', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30496, 'Panmure', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30497, 'Papakura', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30498, 'Papatoetoe', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30499, 'Ponsonby', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30500, 'Royal Oak', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30501, 'Sandringham', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30502, 'Snells Beach', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30503, 'Takanini', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30504, 'Waiheke', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30505, 'Waitakere', 2604, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30506, 'Amberley', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30507, 'Ashburton', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30508, 'Christchurch', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30509, 'Fairlie', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30510, 'Geraldine', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30511, 'Kaikoura', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30512, 'Leeston', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30513, 'Lyttelton', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30514, 'Oamaru', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30515, 'Rangiora', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30516, 'Temuka', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30517, 'Timaru', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30518, 'Waimate', 2606, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30519, 'Gisborne', 2608, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30520, 'Dannevirke', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30521, 'Feilding', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30522, 'Foxton', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30523, 'Levin', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30524, 'Marton', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30525, 'Palmerston North', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30526, 'Picton', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30527, 'Taumarunui', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30528, 'Wanganui', 2610, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30529, 'Blenheim', 2611, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30530, 'Havelock', 2611, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30531, 'Nelson', 2612, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30532, 'Dargaville', 2613, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30533, 'Kaikohe', 2613, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30534, 'Kaitaia', 2613, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30535, 'Kerikeri', 2613, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30536, 'Maungatapere', 2613, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30537, 'Whangarei', 2613, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30538, 'Alexandra', 2614, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30539, 'Balclutha', 2614, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30540, 'Dunedin', 2614, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30541, 'Queenstown', 2614, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30542, 'Wanaka', 2614, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30543, 'Warkworth', 2615, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30544, 'Gore', 2616, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30545, 'Invercargill', 2616, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30546, 'Eltham', 2617, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30547, 'Hawera', 2617, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30548, 'Inglewood', 2617, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30549, 'New Plymouth', 2617, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30550, 'Oakura', 2617, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30551, 'Stratford', 2617, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30552, 'Waitara', 2617, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30553, 'Motueka', 2618, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30554, 'Richmond', 2618, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30555, 'Cambridge', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30556, 'Coromandel', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30557, 'Hamilton', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30558, 'Hillcrest', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30559, 'Huntly', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30560, 'Matamata', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30561, 'Morrinsville', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30562, 'Ngaruawahia', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30563, 'Otorohanga', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30564, 'Paeroa', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30565, 'Pukekohe', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30566, 'Putaruru', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30567, 'Taupo', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30568, 'Te Aroha', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30569, 'Te Awamutu', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30570, 'Te Kuiti', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30571, 'Thames', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30572, 'Tokoroa', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30573, 'Turangi', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30574, 'Waiuku', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30575, 'Whangamata', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30576, 'Whitianga', 2619, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30577, 'Carterton', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30578, 'Kapiti', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30579, 'Lower Hutt', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30580, 'Martinborough', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30581, 'Masterton', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30582, 'Otaki', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30583, 'Paraparaumu', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30584, 'Porirua', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30585, 'Upper Hutt', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30586, 'Wairarapa', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30587, 'Wellington', 2620, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30588, 'Boaco', 2624, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30589, 'Camoapa', 2624, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30590, 'San Lorenzo', 2624, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30591, 'Diriamba', 2625, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30592, 'Dolores', 2625, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30593, 'Jinotepe', 2625, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30594, 'Masatepe', 2625, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30595, 'San Marcos', 2625, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30596, 'Santa Teresa', 2625, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30597, 'Chichigalpa', 2626, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30598, 'Chinandega', 2626, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30599, 'Corinto', 2626, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30600, 'El Viejo', 2626, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30601, 'Puerto Morazan', 2626, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30602, 'Somotillo', 2626, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30603, 'Acoyapa', 2627, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30604, 'Juigalpa', 2627, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30605, 'Santo Domingo', 2627, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30606, 'Santo Tomas', 2627, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30607, 'Villa Sandino', 2627, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30608, 'Condega', 2628, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30609, 'Esteli', 2628, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30610, 'La Trinidad', 2628, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30611, 'Diriomo', 2629, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30612, 'Granada', 2629, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30613, 'Nandaime', 2629, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30614, 'Jinotega', 2630, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30615, 'Wiwili', 2630, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30616, 'El Sauce', 2631, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30617, 'La Paz Centro', 2631, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30618, 'Larreynaga', 2631, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30619, 'Leon', 2631, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30620, 'Nagarote', 2631, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30621, 'Telica', 2631, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30622, 'Somoto', 2632, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30623, 'Managua', 2633, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30624, 'Mateare', 2633, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30625, 'San Rafael del Sur', 2633, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30626, 'Ticuantepe', 2633, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(30627, 'Tipitapa', 2633, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30628, 'La Concepcion', 2634, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30629, 'Masaya', 2634, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30630, 'Nandasmo', 2634, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30631, 'Nindiri', 2634, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30632, 'Niquinohomo', 2634, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30633, 'Ciudad Dario', 2635, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30634, 'Esquipulas', 2635, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30635, 'Matagalpa', 2635, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30636, 'Matiguas', 2635, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30637, 'Rio Blanco', 2635, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30638, 'San Isidro', 2635, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30639, 'Sebaco', 2635, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30640, 'Belen', 2638, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30641, 'Rivas', 2638, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30642, 'San Jorge', 2638, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30643, 'San Juan del Sur', 2638, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30644, 'Agadez', 2639, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30645, 'Arlit', 2639, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30646, 'Bilma', 2639, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30647, 'Fachi', 2639, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30648, 'Ingall', 2639, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30649, 'Tchirozerine', 2639, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30650, 'Diffa', 2640, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30651, 'Maine-Soroa', 2640, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30652, 'N\'Guigmi', 2640, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30653, 'Birni N\'Gaoure', 2641, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30654, 'Boboye', 2641, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30655, 'Dogondoutchi', 2641, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30656, 'Dosso', 2641, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30657, 'Gaya', 2641, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30658, 'Loga', 2641, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30659, 'Aguie', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30660, 'Dakoro', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30661, 'Gazaoua', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30662, 'Guidan Roumdji', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30663, 'Madarounfa', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30664, 'Maradi', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30665, 'Mayahi', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30666, 'Tessaoua', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30667, 'Tibiri', 2642, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30668, 'Niamey', 2643, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30669, 'Birni N\'Konni', 2644, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30670, 'Bouza', 2644, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30671, 'Illela', 2644, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30672, 'Keita', 2644, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30673, 'Madaoua', 2644, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30674, 'Malbaza\'uzine', 2644, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30675, 'Tahoua', 2644, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30676, 'Tchintabaraden', 2644, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30677, 'Ayorou', 2645, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30678, 'Filingue', 2645, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30679, 'Kollo', 2645, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30680, 'Ouallam', 2645, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30681, 'Say', 2645, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30682, 'Tera', 2645, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30683, 'Tillabery', 2645, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30684, 'Goure', 2646, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30685, 'Kantche', 2646, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30686, 'Magaria', 2646, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30687, 'Matameye', 2646, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30688, 'Mirriah', 2646, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30689, 'Tanout', 2646, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30690, 'Zinder', 2646, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30691, 'Aba', 2647, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30692, 'Amaigbo', 2647, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30693, 'Arochukwu', 2647, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30694, 'Bende', 2647, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30695, 'Ohafia', 2647, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30696, 'Okwe', 2647, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30697, 'Umuahia', 2647, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30698, 'Demsa', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30699, 'Ganye', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30700, 'Girei', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30701, 'Gombi', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30702, 'Jada', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30703, 'Jimeta', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30704, 'Lamurde', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30705, 'Madagala', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30706, 'Maiha', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30707, 'Mubi', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30708, 'Ngurore', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30709, 'Numan', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30710, 'Shelleng', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30711, 'Song', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30712, 'Toungo', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30713, 'Yola', 2649, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30714, 'Aguata', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30715, 'Agulu', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30716, 'Anambra', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30717, 'Awka', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30718, 'Enugu Ukwu', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30719, 'Igbo Ukwu', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30720, 'Ihiala', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30721, 'Nkpor', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30722, 'Nnewi', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30723, 'Obosi', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30724, 'Okija', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30725, 'Okpoko', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30726, 'Onitsha', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30727, 'Ozubulu', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30728, 'Uga', 2651, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30729, 'Alkaleri', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30730, 'Azare', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30731, 'Bauchi', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30732, 'Bogoro', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30733, 'Bununu Dass', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30734, 'Darazo', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30735, 'Gamawa', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30736, 'Ganjuwa', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30737, 'Jamari', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30738, 'Katagum', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30739, 'Misau', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30740, 'Ningi', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30741, 'Tafawa Balewa', 2652, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30742, 'Brass', 2653, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30743, 'Ekeremor', 2653, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30744, 'Nembe', 2653, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30745, 'Yenagoa', 2653, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30746, 'Aliade', 2654, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30747, 'Gboko', 2654, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30748, 'Katsina-Ala', 2654, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30749, 'Makurdi', 2654, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30750, 'Otukpo', 2654, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30751, 'Ukum', 2654, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30752, 'Zaki Biam', 2654, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30753, 'Abadan', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30754, 'Askira', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30755, 'Bama', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30756, 'Biu', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30757, 'Chibok', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30758, 'Damboa', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30759, 'Dikwa', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30760, 'Gamboru', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30761, 'Gubio', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30762, 'Gwoza', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30763, 'Kaga', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30764, 'Kala', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30765, 'Konduga', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30766, 'Kukawa', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30767, 'Mafa', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30768, 'Magumeri', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30769, 'Maiduguri', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30770, 'Marte', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30771, 'Monguno', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30772, 'Ngala', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30773, 'Shani', 2655, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30774, 'Agbor', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30775, 'Asaba', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30776, 'Bomadi', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30777, 'Burutu', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30778, 'Okpe', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30779, 'Patani', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30780, 'Sapele', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30781, 'Ughelli', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30782, 'Warri', 2657, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30783, 'Abakaliki', 2658, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30784, 'Afikpo', 2658, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30785, 'Effium', 2658, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30786, 'Ezza', 2658, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30787, 'Ishieke', 2658, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30788, 'Uburu', 2658, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30789, 'Auchi', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30790, 'Benin', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30791, 'Ekpoma', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30792, 'Igarra', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30793, 'Ikpoba', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30794, 'Irrua', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30795, 'Sabongida', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30796, 'Ubiaja', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30797, 'Uromi', 2659, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30798, 'Ado', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30799, 'Aramoko', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30800, 'Efon Alaye', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30801, 'Emure', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30802, 'Igbara Odo', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30803, 'Igede', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30804, 'Ijero', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30805, 'Ikere', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30806, 'Ikole', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30807, 'Ilawe', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30808, 'Ipoti', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30809, 'Ise', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30810, 'Ode', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30811, 'Omuo', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30812, 'Osi', 2660, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30813, 'Agwa', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30814, 'Aku', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30815, 'Awgu', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30816, 'Eha Amufu', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30817, 'Enugu', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30818, 'Enugu Ezike', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30819, 'Enugu Ngwo', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30820, 'Ezeagu', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30821, 'Mberubu', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30822, 'Nsukka', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30823, 'Oji', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30824, 'Udi', 2661, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30825, 'Ako', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30826, 'Deba', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30827, 'Duku', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30828, 'Garko', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30829, 'Gombe', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30830, 'Kaltungo', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30831, 'Kumo', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30832, 'Nafada', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30833, 'Pindiga', 2662, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30834, 'Aboh', 2663, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30835, 'Etiti', 2663, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30836, 'Ihite', 2663, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30837, 'Nkwerre', 2663, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30838, 'Oguta', 2663, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30839, 'Okigwe', 2663, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30840, 'Owerri', 2663, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30841, 'Babura', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30842, 'Birnin Kudu', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30843, 'Buji', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30844, 'Dutse', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30845, 'Garki', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30846, 'Gumel', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30847, 'Gwaram', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30848, 'Gwiwa', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30849, 'Hadejia', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30850, 'Jahun', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30851, 'Kaugama', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30852, 'Kazaure', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30853, 'Keffin Hausa', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30854, 'Kiyawa', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30855, 'Maigatari', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30856, 'Malammaduri', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30857, 'Ringim', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30858, 'Sule Tankarkar', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30859, 'Taura', 2664, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30860, 'Birnin Gwari', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30861, 'Doka', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30862, 'Giwa', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30863, 'Gwagwada', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30864, 'Hunkuyi', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30865, 'Igabi', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30866, 'Ikara', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30867, 'Jemaa', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30868, 'Kachia', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30869, 'Kaduna', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30870, 'Kafanchan', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30871, 'Kagarko', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30872, 'Kagoro', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30873, 'Kaura', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30874, 'Kudan', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30875, 'Lere', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30876, 'Makarfi', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30877, 'Sabon Birnin Gwari', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30878, 'Sabongari', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30879, 'Sanga', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30880, 'Soba', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30881, 'Tudun Wada', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30882, 'Zangon Katab', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30883, 'Zaria', 2665, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30884, 'Ajingi', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30885, 'Albasu', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30886, 'Bagwai', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30887, 'Bebeji', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30888, 'Bichi', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30889, 'Bunkure', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30890, 'Dambarta', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30891, 'Dawakin Tofe', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30892, 'Fagge', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30893, 'Garko', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30894, 'Garun Mallam', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30895, 'Gaya', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30896, 'Gezawa', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30897, 'Gwarzo', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30898, 'Kabo', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30899, 'Kano', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30900, 'Karaye', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30901, 'Kibiya', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30902, 'Kiru', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30903, 'Kumbotso', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30904, 'Kunchi', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30905, 'Kura', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30906, 'Madobi', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30907, 'Makoda', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30908, 'Nassarawa', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30909, 'Rano', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30910, 'Rimin Gado', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30911, 'Shanono', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30912, 'Sumaila', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30913, 'Takai', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30914, 'Tofa', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30915, 'Tudun Wada', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30916, 'Wudil', 2666, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30917, 'Bakori', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30918, 'Batsari', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30919, 'Bindawa', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30920, 'Cheranchi', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30921, 'Dan Dume', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30922, 'Danja', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30923, 'Daura', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30924, 'Dutsi', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30925, 'Dutsin Ma', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30926, 'Faskari', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30927, 'Funtua', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30928, 'Ingawa', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30929, 'Jibiya', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30930, 'Kangiwa', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30931, 'Kankara', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30932, 'Kankiya', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30933, 'Katsina', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30934, 'Kurfi', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30935, 'Malumfashi', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30936, 'Mani', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30937, 'Mashi', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30938, 'Musawa', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30939, 'Rimi', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30940, 'Sandamu', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30941, 'Zango', 2667, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30942, 'Argungu', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30943, 'Augie', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30944, 'Bagudo', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30945, 'Birnin Kebbi', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30946, 'Birnin Yauri', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30947, 'Bunza', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30948, 'Fakai', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30949, 'Gwandu', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30950, 'Jega', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30951, 'Kalgo', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30952, 'Koko', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30953, 'Maiyema', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30954, 'Sakaba', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30955, 'Shanga', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30956, 'Suru', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30957, 'Wasagu', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30958, 'Zuru', 2668, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30959, 'Ajaokuta', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30960, 'Ankpa', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30961, 'Dekina', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30962, 'Idah', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30963, 'Kabba', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30964, 'Koton-Karifi', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30965, 'Kuroro', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30966, 'Lokoja', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30967, 'Mopa', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30968, 'Ogaminana', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30969, 'Ogori', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30970, 'Okene', 2669, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30971, 'Ajasse', 2670, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30972, 'Ilorin', 2670, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30973, 'Jebba', 2670, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30974, 'Kaiama', 2670, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30975, 'Lafiagi', 2670, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30976, 'Offa', 2670, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30977, 'Pategi', 2670, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30978, 'Apapa', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30979, 'Badagri', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30980, 'Epe', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30981, 'Ibeju', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30982, 'Iganmi', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30983, 'Ikeja', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30984, 'Ikorodu', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30985, 'Lagos', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30986, 'Ojo', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30987, 'Surulere', 2671, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30988, 'Akwanga', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30989, 'Awe', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30990, 'Doma', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30991, 'Keana', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30992, 'Keffi', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30993, 'Lafia', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30994, 'Nassarawa', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30995, 'Obi', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30996, 'Toto', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30997, 'Wamba', 2672, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30998, 'Agale', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(30999, 'Babana', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31000, 'Bida', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31001, 'Bosso', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31002, 'Chanchaga', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31003, 'Gbako', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31004, 'Kontagora', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31005, 'Lapai', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31006, 'Minna', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31007, 'Mokwa', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31008, 'New Bussa', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31009, 'Rijau', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31010, 'Shiroro', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31011, 'Suleja', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31012, 'Wushishi', 2673, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31013, 'Abeokuta', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31014, 'Ado Odo', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31015, 'Agbara', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31016, 'Aiyetoro', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31017, 'Ewekoro', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31018, 'Ifo', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31019, 'Ijebu Igbo', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31020, 'Ijebu Ode', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31021, 'Ikene', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31022, 'Ilaro', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31023, 'Ipokia', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31024, 'Odogbolu', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31025, 'Owode', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31026, 'Sango Ota', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31027, 'Shagamu', 2674, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31028, 'Akure', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31029, 'Idanre', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31030, 'Ikare', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31031, 'Irele', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31032, 'Odigbo', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31033, 'Oka', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31034, 'Okitipupa', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31035, 'Ondo', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31036, 'Owo', 2675, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31037, 'Apomu', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31038, 'Ede', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31039, 'Ejigbo', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31040, 'Erin-Oshogbo', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31041, 'Gbongan', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31042, 'Ife', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31043, 'Ifon Osun', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31044, 'Ijesha', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31045, 'Ikire', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31046, 'Ikirun', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31047, 'Ila', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31048, 'Ilesha', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31049, 'Ilobu', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31050, 'Inisa', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31051, 'Iwo', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31052, 'Modakeke', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31053, 'Oke-Mesi', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31054, 'Olorunda', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31055, 'Olupona', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31056, 'Ore', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31057, 'Orolu', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31058, 'Oshogbo', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31059, 'Oyan', 2676, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31060, 'Akinyele', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31061, 'Egbeda', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31062, 'Eruwa', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31063, 'Fiditi', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31064, 'Ibadan', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31065, 'Ibeto', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31066, 'Igbo Ora', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31067, 'Igboho', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31068, 'Iseyin', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31069, 'Kajola', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31070, 'Kishi', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31071, 'Lalupon', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31072, 'Ogbomosho', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31073, 'Ogo', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31074, 'Oke-Iho', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31075, 'Oyo', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31076, 'Shaki', 2677, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31077, 'Barakin', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31078, 'Bassa', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31079, 'Bokkos', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31080, 'Bukuru', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31081, 'Jos', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31082, 'Langtang', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31083, 'Pankshin', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31084, 'Riyom', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31085, 'Shendam', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31086, 'Vom', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31087, 'Wase', 2678, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31088, 'Abonnema', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31089, 'Abua', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31090, 'Ahoada', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31091, 'Bonny', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31092, 'Bugama', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31093, 'Degema', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31094, 'Egbema', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31095, 'Ogu', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31096, 'Okrika', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31097, 'Omoko', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31098, 'Opobo', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31099, 'Oyigbo', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31100, 'Port Harcourt', 2679, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31101, 'Binji', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31102, 'Bodinga', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31103, 'Dange', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31104, 'Gada', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31105, 'Goronyo', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31106, 'Gwadabawa', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31107, 'Illela', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31108, 'Kebbe', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31109, 'Kware', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31110, 'Rabah', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31111, 'Raka', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31112, 'Sabon Birni', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31113, 'Sokoto', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31114, 'Tambawel', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31115, 'Tureta', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31116, 'Wamako', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31117, 'Wurno', 2680, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31118, 'Bali', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31119, 'Gashaka', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31120, 'Gassol', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31121, 'Ibi', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31122, 'Jalingo', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31123, 'Lau', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31124, 'Takum', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31125, 'Wukari', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31126, 'Yorro', 2681, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31127, 'Damaturu', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31128, 'Fika', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31129, 'Gashua', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31130, 'Geidam', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31131, 'Gorgoram', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31132, 'Gujba', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31133, 'Gulani', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31134, 'Jakusko', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31135, 'Matsena', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31136, 'Nguru', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31137, 'Potiskum', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31138, 'Yusufari', 2682, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31139, 'Anka', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31140, 'Bungudu', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31141, 'Chafe', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31142, 'Gummi', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31143, 'Gusau', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31144, 'Isa', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31145, 'Kaura Namoda', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31146, 'Kiyawa', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31147, 'Maradun', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31148, 'Maru', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31149, 'Shinkafe', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31150, 'Talata Mafara', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31151, 'Zurmi', 2683, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31152, 'Niue', 2684, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31153, 'Songsong', 2687, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31154, 'Capital Hill', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31155, 'Chalan Kanoa', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31156, 'Dandan', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31157, 'Garapan', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31158, 'Gualo Rai', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31159, 'Kagman', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31160, 'Koblerville', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31161, 'San Antonio', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31162, 'San Jose', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31163, 'San Roque', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31164, 'San Vicente', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31165, 'Susupe', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31166, 'Tanapag', 2688, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31167, 'San Jose', 2689, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31168, 'Asker', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31169, 'Billingstad', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31170, 'Haslum', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31171, 'Hosle', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31172, 'Kjeller', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31173, 'Lillestrom', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31174, 'Lorenskog', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31175, 'Lysaker', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31176, 'Lørenskog', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31177, 'Rud', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31178, 'Sandvika', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31179, 'Strommen', 2690, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31180, 'Kokstad', 2692, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31181, 'Drammen', 2693, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31182, 'Hokksund', 2693, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31183, 'Honefoss', 2693, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31184, 'Kongsberg', 2693, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31185, 'Lyngdal', 2693, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31186, 'Nærsnes', 2693, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31187, 'Vestby', 2693, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31188, 'Baatsfjord', 2694, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31189, 'Hammerfest', 2694, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31190, 'Brumunddal', 2695, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31191, 'Elverum', 2695, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31192, 'Hamar', 2695, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31193, 'Ilseng', 2695, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31194, 'Rena', 2695, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31195, 'Trysil', 2695, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31196, 'Bergen', 2696, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31197, 'Høylandsbygd', 2696, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31198, 'Lonevag', 2696, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31199, 'Straume', 2696, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31200, 'Tysnes', 2696, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31201, 'Voss', 2696, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31202, 'Bodo', 2699, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31203, 'Mosjoen', 2699, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31204, 'Narvik', 2699, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31205, 'Nesna', 2699, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31206, 'Saltdal', 2699, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31207, 'Sortland', 2699, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31208, 'Steigen', 2699, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31209, 'Askim', 2700, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31210, 'Fredrikstad', 2700, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31211, 'Halden', 2700, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31212, 'Hovik', 2700, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31213, 'Moss', 2700, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31214, 'Mysen', 2700, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31215, 'Sarpsborg', 2700, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31216, 'Tistedal', 2700, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31217, 'Lena', 2701, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(31218, 'Lillehammer', 2701, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31219, 'Oslo', 2702, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31220, 'Skedsmo', 2702, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31221, 'Skjetten', 2702, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31222, 'Egersund', 2703, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31223, 'Haugesund', 2703, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31224, 'Kleppe', 2703, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31225, 'Sandnes', 2703, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31226, 'Sola', 2703, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31227, 'Stavanger', 2703, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31228, 'Stavern', 2706, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31229, 'Sykkylven', 2707, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31230, 'Notodden', 2708, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31231, 'Skien', 2708, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31232, 'Harstad', 2709, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31233, 'Troms', 2709, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31234, 'Tromsø', 2709, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31235, 'Horten', 2711, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31236, 'Husøysund', 2711, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31237, 'Larvik', 2711, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31238, 'Rygge', 2711, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31239, 'Sandefjord', 2711, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31240, 'Tønsberg', 2711, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31241, 'Salalah', 2714, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31242, 'Azaiba', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31243, 'Bawshar', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31244, 'Madinat Qabus', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31245, 'Masqat', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31246, 'Matrah', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31247, 'Muscat', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31248, 'Muttrah', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31249, 'Qurayyat', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31250, 'Qurm', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31251, 'Ruwi', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31252, 'Wadi Al Kabir', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31253, 'as-Sib', 2715, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31254, 'Khasab', 2716, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31255, 'Rusayl', 2717, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31256, 'Bahla\'', 2719, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31257, 'Nizwa', 2719, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31258, 'Sumayl', 2719, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31259, '\'Ibri', 2720, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31260, 'al-Buraymi', 2720, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31261, 'Al khuwair', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31262, 'Barkah', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31263, 'Saham', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31264, 'Shinas', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31265, 'Suhar', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31266, 'al-Khaburah', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31267, 'al-Masna\'ah', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31268, 'ar-Rustaq', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31269, 'as-Suwayq', 2721, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31270, 'Ibra', 2722, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31271, 'Sur', 2722, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31272, 'al-Mudaybi', 2722, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31273, 'Barkhan', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31274, 'Bela', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31275, 'Bhag', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31276, 'Chaman', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31277, 'Chitkan', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31278, 'Dalbandin', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31279, 'Dera Allah Yar', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31280, 'Dera Bugti', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31281, 'Dera Murad Jamali', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31282, 'Dhadar', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31283, 'Duki', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31284, 'Gaddani', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31285, 'Gwadar', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31286, 'Harnai', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31287, 'Hub', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31288, 'Jiwani', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31289, 'Kalat', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31290, 'Kharan', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31291, 'Khuzdar', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31292, 'Kohlu', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31293, 'Loralai', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31294, 'Mach', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31295, 'Mastung', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31296, 'Nushki', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31297, 'Ormara', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31298, 'Pasni', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31299, 'Pishin', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31300, 'Quetta', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31301, 'Sibi', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31302, 'Sohbatpur', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31303, 'Surab', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31304, 'Turbat', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31305, 'Usta Muhammad', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31306, 'Uthal', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31307, 'Wadh', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31308, 'Winder', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31309, 'Zehri', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31310, 'Zhob', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31311, 'Ziarat', 2723, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31312, '\'Abdul Hakim', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31313, 'Ahmadpur East', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31314, 'Ahmadpur Lumma', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31315, 'Ahmadpur Sial', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31316, 'Ahmedabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31317, 'Alipur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31318, 'Alipur Chatha', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31319, 'Arifwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31320, 'Attock', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31321, 'Baddomalhi', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31322, 'Bagh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31323, 'Bahawalnagar', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31324, 'Bahawalpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31325, 'Bai Pheru', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31326, 'Basirpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31327, 'Begowala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31328, 'Bhakkar', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31329, 'Bhalwal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31330, 'Bhawana', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31331, 'Bhera', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31332, 'Bhopalwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31333, 'Burewala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31334, 'Chak Azam Sahu', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31335, 'Chak Jhumra', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31336, 'Chak Sarwar Shahid', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31337, 'Chakwal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31338, 'Chawinda', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31339, 'Chichawatni', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31340, 'Chiniot', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31341, 'Chishtian Mandi', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31342, 'Choa Saidan Shah', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31343, 'Chuhar Kana', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31344, 'Chunian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31345, 'Dajal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31346, 'Darya Khan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31347, 'Daska', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31348, 'Daud Khel', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31349, 'Daultala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31350, 'Dera Din Panah', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31351, 'Dera Ghazi Khan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31352, 'Dhanote', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31353, 'Dhonkal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31354, 'Dijkot', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31355, 'Dina', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31356, 'Dinga', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31357, 'Dipalpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31358, 'Dullewala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31359, 'Dunga Bunga', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31360, 'Dunyapur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31361, 'Eminabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31362, 'Faisalabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31363, 'Faqirwali', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31364, 'Faruka', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31365, 'Fateh Jang', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31366, 'Fatehpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31367, 'Fazalpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31368, 'Ferozwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31369, 'Fort Abbas', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31370, 'Garh Maharaja', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31371, 'Ghakar', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31372, 'Ghurgushti', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31373, 'Gojra', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31374, 'Gujar Khan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31375, 'Gujranwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31376, 'Gujrat', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31377, 'Hadali', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31378, 'Hafizabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31379, 'Harnoli', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31380, 'Harunabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31381, 'Hasan Abdal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31382, 'Hasilpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31383, 'Haveli', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31384, 'Hazro', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31385, 'Hujra Shah Muqim', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31386, 'Isa Khel', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31387, 'Jahanian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31388, 'Jalalpur Bhattian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31389, 'Jalalpur Jattan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31390, 'Jalalpur Pirwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31391, 'Jalla Jeem', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31392, 'Jamke Chima', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31393, 'Jampur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31394, 'Jand', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31395, 'Jandanwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31396, 'Jandiala Sherkhan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31397, 'Jaranwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31398, 'Jatoi', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31399, 'Jauharabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31400, 'Jhang', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31401, 'Jhawarian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31402, 'Jhelum', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31403, 'Kabirwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31404, 'Kahna Nau', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31405, 'Kahror Pakka', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31406, 'Kahuta', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31407, 'Kalabagh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31408, 'Kalaswala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31409, 'Kaleke', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31410, 'Kalur Kot', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31411, 'Kamalia', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31412, 'Kamar Mashani', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31413, 'Kamir', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31414, 'Kamoke', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31415, 'Kamra', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31416, 'Kanganpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31417, 'Karampur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31418, 'Karor Lal Esan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31419, 'Kasur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31420, 'Khairpur Tamewali', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31421, 'Khanewal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31422, 'Khangah Dogran', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31423, 'Khangarh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31424, 'Khanpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31425, 'Kharian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31426, 'Khewra', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31427, 'Khundian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31428, 'Khurianwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31429, 'Khushab', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31430, 'Kot Abdul Malik', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31431, 'Kot Addu', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31432, 'Kot Mithan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31433, 'Kot Moman', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31434, 'Kot Radha Kishan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31435, 'Kot Samaba', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31436, 'Kotli Loharan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31437, 'Kundian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31438, 'Kunjah', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31439, 'Lahore', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31440, 'Lalamusa', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31441, 'Lalian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31442, 'Liaqatabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31443, 'Liaqatpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31444, 'Lieah', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31445, 'Liliani', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31446, 'Lodhran', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31447, 'Ludhewala Waraich', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31448, 'Mailsi', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31449, 'Makhdumpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31450, 'Makhdumpur Rashid', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31451, 'Malakwal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31452, 'Mamu Kanjan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31453, 'Mananwala Jodh Singh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31454, 'Mandi Bahauddin', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31455, 'Mandi Sadiq Ganj', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31456, 'Mangat', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31457, 'Mangla', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31458, 'Mankera', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31459, 'Mian Channun', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31460, 'Miani', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31461, 'Mianwali', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31462, 'Minchinabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31463, 'Mitha Tiwana', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31464, 'Multan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31465, 'Muridke', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31466, 'Murree', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31467, 'Mustafabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31468, 'Muzaffargarh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31469, 'Nankana Sahib', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31470, 'Narang', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31471, 'Narowal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31472, 'Noorpur Thal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31473, 'Nowshera', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31474, 'Nowshera Virkan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31475, 'Okara', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31476, 'Pakpattan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31477, 'Pasrur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31478, 'Pattoki', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31479, 'Phalia', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31480, 'Phularwan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31481, 'Pind Dadan Khan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31482, 'Pindi Bhattian', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31483, 'Pindi Gheb', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31484, 'Pirmahal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31485, 'Qadirabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31486, 'Qadirpur Ran', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31487, 'Qila Disar Singh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31488, 'Qila Sobha Singh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31489, 'Quaidabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31490, 'Rabwah', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31491, 'Rahim Yar Khan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31492, 'Raiwind', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31493, 'Raja Jang', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31494, 'Rajanpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31495, 'Rasulnagar', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31496, 'Rawalpindi', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31497, 'Renala Khurd', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31498, 'Rojhan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31499, 'Saddar Gogera', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31500, 'Sadiqabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31501, 'Safdarabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31502, 'Sahiwal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31503, 'Samasatta', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31504, 'Sambrial', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31505, 'Sammundri', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31506, 'Sangala Hill', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31507, 'Sanjwal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31508, 'Sarai Alamgir', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31509, 'Sarai Sidhu', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31510, 'Sargodha', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31511, 'Shadiwal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31512, 'Shahkot', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31513, 'Shahpur City', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31514, 'Shahpur Saddar', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31515, 'Shakargarh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31516, 'Sharqpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31517, 'Shehr Sultan', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31518, 'Shekhupura', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31519, 'Shujaabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31520, 'Sialkot', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31521, 'Sillanwali', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31522, 'Sodhra', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31523, 'Sohawa', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31524, 'Sukheke', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31525, 'Talagang', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31526, 'Tandlianwala', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31527, 'Taunsa', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31528, 'Taxila', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31529, 'Tibba Sultanpur', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31530, 'Toba Tek Singh', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31531, 'Tulamba', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31532, 'Uch', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31533, 'Vihari', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31534, 'Wah', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31535, 'Warburton', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31536, 'Wazirabad', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31537, 'Yazman', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31538, 'Zafarwal', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31539, 'Zahir Pir', 2728, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31540, 'Adilpur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31541, 'Badah', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31542, 'Badin', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31543, 'Bagarji', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31544, 'Bakshshapur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31545, 'Bandhi', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31546, 'Berani', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31547, 'Bhan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31548, 'Bhiria City', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31549, 'Bhiria Road', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31550, 'Bhit Shah', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31551, 'Bozdar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31552, 'Bulri', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31553, 'Chak', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31554, 'Chambar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31555, 'Chohar Jamali', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31556, 'Chor', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31557, 'Dadu', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31558, 'Daharki', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31559, 'Daro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31560, 'Darya Khan Mari', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31561, 'Daulatpur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31562, 'Daur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31563, 'Dhoronaro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31564, 'Digri', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31565, 'Diplo', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31566, 'Dokri', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31567, 'Faqirabad', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31568, 'Gambat', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31569, 'Garello', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31570, 'Garhi Khairo', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31571, 'Garhi Yasin', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31572, 'Gharo', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31573, 'Ghauspur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31574, 'Ghotki', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31575, 'Golarchi', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31576, 'Guddu', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31577, 'Gulistan-E-Jauhar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31578, 'Hala', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31579, 'Hingorja', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31580, 'Hyderabad', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31581, 'Islamkot', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31582, 'Jacobabad', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31583, 'Jam Nawaz Ali', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31584, 'Jam Sahib', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31585, 'Jati', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31586, 'Jhol', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31587, 'Jhudo', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31588, 'Johi', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31589, 'Kadhan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31590, 'Kambar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31591, 'Kandhra', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31592, 'Kandiari', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31593, 'Kandiaro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31594, 'Karachi', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31595, 'Karampur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31596, 'Kario Ghanwar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31597, 'Karoondi', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31598, 'Kashmor', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31599, 'Kazi Ahmad', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31600, 'Keti Bandar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31601, 'Khadro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31602, 'Khairpur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31603, 'Khairpur Nathan Shah', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31604, 'Khandh Kot', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31605, 'Khanpur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31606, 'Khipro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31607, 'Khoski', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31608, 'Khuhra', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31609, 'Khyber', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31610, 'Kot Diji', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31611, 'Kot Ghulam Mohammad', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31612, 'Kotri', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31613, 'Kumb', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31614, 'Kunri', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31615, 'Lakhi', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31616, 'Larkana', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31617, 'Madeji', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31618, 'Matiari', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31619, 'Matli', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31620, 'Mehar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31621, 'Mehrabpur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31622, 'Miro Khan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31623, 'Mirpur Bathoro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31624, 'Mirpur Khas', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31625, 'Mirpur Mathelo', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31626, 'Mirpur Sakro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31627, 'Mirwah', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31628, 'Mithi', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31629, 'Moro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31630, 'Nabisar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31631, 'Nasarpur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31632, 'Nasirabad', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31633, 'Naudero', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31634, 'Naukot', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31635, 'Naushahro Firoz', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31636, 'Nawabshah', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31637, 'Oderolal Station', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31638, 'Pacca Chang', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31639, 'Padidan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31640, 'Pano Aqil', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31641, 'Perumal', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31642, 'Phulji', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31643, 'Pirjo Goth', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31644, 'Piryaloi', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31645, 'Pithoro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31646, 'Radhan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31647, 'Rajo Khanani', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31648, 'Ranipur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31649, 'Ratodero', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31650, 'Rohri', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31651, 'Rustam', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31652, 'Saeedabad', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31653, 'Sakrand', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31654, 'Samaro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31655, 'Sanghar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31656, 'Sann', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31657, 'Sarhari', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31658, 'Sehwan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31659, 'Setharja', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31660, 'Shah Dipalli', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31661, 'Shahdadkot', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31662, 'Shahdadpur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31663, 'Shahpur Chakar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31664, 'Shahpur Jahania', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31665, 'Shikarpur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31666, 'Sinjhoro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31667, 'Sita Road', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31668, 'Sobhodero', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31669, 'Sujawal', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31670, 'Sukkur', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31671, 'Talhar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31672, 'Tando Adam', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31673, 'Tando Allah Yar', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31674, 'Tando Bagho', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31675, 'Tando Ghulam Ali', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31676, 'Tando Jam', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31677, 'Tando Jan Mohammad', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31678, 'Tando Mitha Khan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31679, 'Tando Muhammad Khan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31680, 'Tangwani', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31681, 'Thano Bula Khan', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31682, 'Thari Mirwah', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31683, 'Tharushah', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31684, 'Thatta', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31685, 'Ther I', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31686, 'Ther I Mohabat', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31687, 'Thul', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31688, 'Ubauro', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31689, 'Umarkot', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31690, 'Warah', 2729, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31691, 'Ulimang', 2730, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31692, 'Airai', 2731, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31693, 'Ngaramash', 2732, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31694, 'Hatohobei', 2733, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31695, 'Kayangel', 2734, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31696, 'Koror', 2735, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31697, 'Meyungs', 2735, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31698, 'Melekeok', 2736, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31699, 'Ngermechau', 2737, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31700, 'Chol', 2738, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31701, 'Ollei', 2739, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31702, 'Oikul', 2740, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31703, 'Ngerkeai', 2741, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31704, 'Imeong', 2742, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31705, 'Ngetkip', 2743, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31706, 'Kloulklubed', 2744, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31707, 'Dongosaru', 2745, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31708, 'Ariha', 2746, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31709, 'Beit Jala', 2748, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31710, 'Dayr-al-Balah', 2749, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31711, 'al-Burayj', 2749, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31712, 'al-Insayrat', 2749, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31713, 'al-Maghazi', 2749, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31714, 'Ghazzah', 2750, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31715, 'Ghazzah', 2751, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31716, 'Janin', 2752, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31717, 'Qabatiyah', 2752, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31718, 'Nabulus', 2754, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31719, 'Qalqilyah', 2755, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31720, 'Rafah', 2756, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31721, 'Tall as-Sultan', 2756, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31722, 'Salfit', 2758, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31723, 'Tubas', 2759, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31724, 'Tulkarm', 2760, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31725, 'Dura', 2761, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31726, 'Halhul', 2761, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31727, 'Yattah', 2761, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31728, 'ad-Dahiriyah', 2761, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31729, 'al-Khalil', 2761, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31730, 'Ma\'ale Adummim', 2762, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31731, 'al-Quds', 2762, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31732, 'Alanje', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31733, 'Bajo Boquete', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31734, 'Boqueron', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31735, 'Bugaba', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31736, 'David', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31737, 'Dolega', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31738, 'Gualaca', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31739, 'Horconcitos', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31740, 'Las Lajas', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31741, 'Puerto Armuelles', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31742, 'Remedios', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31743, 'Rio Sereno', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31744, 'Tole', 2764, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31745, 'Aguadulce', 2765, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31746, 'Anton', 2765, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31747, 'La Pintada', 2765, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31748, 'Nata', 2765, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31749, 'Ola', 2765, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31750, 'Penonome', 2765, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31751, 'Colon', 2766, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31752, 'Miguel de la Borda', 2766, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31753, 'Nuevo Chagres', 2766, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31754, 'Portobelo', 2766, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31755, 'Santa Isabel', 2766, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31756, 'El Real de Santa Maria', 2767, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31757, 'La Palma', 2767, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31758, 'Cirilo Guainora', 2768, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31759, 'Rio Sabalo', 2768, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31760, 'Chitre', 2769, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31761, 'Las Minas', 2769, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31762, 'Los Pozos', 2769, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31763, 'Ocu', 2769, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31764, 'Parita', 2769, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31765, 'Pese', 2769, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31766, 'Santa Maria', 2769, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31767, 'Arraijan', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31768, 'Capira', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31769, 'Chame', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31770, 'Chepo', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31771, 'Chiman', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31772, 'La Chorrera', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31773, 'Panama', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31774, 'San Carlos', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31775, 'San Miguel', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31776, 'San Miguelito', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31777, 'Taboga', 2773, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31778, 'Atalaya', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31779, 'Calobre', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31780, 'Canazas', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31781, 'La Mesa', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31782, 'Las Palmas', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31783, 'Montijo', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31784, 'Rio de Jesus', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31785, 'San Francisco', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31786, 'Santa Fe', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31787, 'Santiago', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31788, 'Sona', 2774, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31789, 'Laiagam', 2778, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31790, 'Porgera', 2778, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31791, 'Wabag', 2778, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31792, 'Kerema', 2780, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31793, 'Finschhafen', 2781, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31794, 'Madang', 2781, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(31795, 'Lorengau', 2782, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31796, 'Bulolo', 2784, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31797, 'Lae', 2784, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31798, 'Wau', 2784, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31799, 'Kokoda', 2788, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31800, 'Popondetta', 2788, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31801, 'Vanimo', 2789, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31802, 'Kundiawa', 2790, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31803, 'Bella Vista', 2796, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31804, 'Capitan Bado', 2796, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31805, 'Pedro Juan Caballero', 2796, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31806, 'Asuncion', 2797, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31807, 'Doctor Pedro P. Pena', 2798, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31808, 'Filadelfia', 2798, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31809, 'Marechal Estigarribia', 2798, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31810, 'Menno', 2798, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31811, 'Neuland', 2798, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31812, 'Caaguazu', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31813, 'Carayao', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31814, 'Coronel Oviedo', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31815, 'Doctor Cecilio Baez', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31816, 'Doctor Eulogio Estigarribia', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31817, 'Doctor Juan Manuel Frutos', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31818, 'Jose Ocampos', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31819, 'La Pastoria', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31820, 'Marechal Francisco Solano Lope', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31821, 'Mbutuy', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31822, 'Nueva Londres', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31823, 'Raul Arsenio Oviedo', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31824, 'Repatriacion', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31825, 'San Joaquin', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31826, 'San Jose de los Arroyos', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31827, 'Simon Bolivar', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31828, 'Tres Corrales', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31829, 'Tres de Febrero', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31830, 'Vaqueria', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31831, 'Yhu', 2799, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31832, 'Abai', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31833, 'Buena Vista', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31834, 'Caazapa', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31835, 'Doctor Moises Bertoni', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31836, 'General Higinio Morinigo', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31837, 'Maciel', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31838, 'San Juan Nepomuceno', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31839, 'Tavai', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31840, 'Yegros', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31841, 'Yuty', 2800, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31842, 'Corpus Christi', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31843, 'Curuguaty', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31844, 'General Francisco Alvarez', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31845, 'Itanara', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31846, 'Katuete', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31847, 'La Paloma', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31848, 'Nueva Esperanza', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31849, 'Salto del Guaira', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31850, 'Ygatimi', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31851, 'Ypehu', 2801, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31852, 'Aregua', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31853, 'Capiata', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31854, 'Fernando de la Mora', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31855, 'Guarambare', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31856, 'Ita', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31857, 'Itaugua', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31858, 'Juan Augusto Saldivar', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31859, 'Lambare', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31860, 'Limpio', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31861, 'Luque', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31862, 'Nemby', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31863, 'Nueva Italia', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31864, 'San Antonio', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31865, 'San Lorenzo', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31866, 'Villa Elisa', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31867, 'Villeta', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31868, 'Ypacarai', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31869, 'Ypane', 2802, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31870, 'Belen', 2803, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31871, 'Concepcion', 2803, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31872, 'Horqueta', 2803, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31873, 'Loreto', 2803, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31874, 'San Carlos', 2803, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31875, 'San Lazaro', 2803, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31876, 'Altos', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31877, 'Arroyos y Esteros', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31878, 'Atyra', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31879, 'Caacupe', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31880, 'Caraguatay', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31881, 'Emboscada', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31882, 'Eusebio Ayala', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31883, 'Isla Pucu', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31884, 'Itacurubi de la Cordillera', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31885, 'Juan de Mena', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31886, 'Loma Grande', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31887, 'Mbocayty del Yhaguy', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31888, 'Nueva Colombia', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31889, 'Piribebuy', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31890, 'Primero de Marzo', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31891, 'San Bernardino', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31892, 'San Jose Obrero', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31893, 'Santa Elena', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31894, 'Tobati', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31895, 'Valenzuela', 2804, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31896, 'Borja', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31897, 'Capitan Mauricio Jose Troche', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31898, 'Coronel Martinez', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31899, 'Doctor Botrell', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31900, 'Felix Perez Cardozo', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31901, 'General Eugenio Alejandrino Ga', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31902, 'Independencia', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31903, 'Itape', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31904, 'Iturbe', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31905, 'Jose Fasardi', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31906, 'Mbocayaty', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31907, 'Natalicio Talavera', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31908, 'Numi', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31909, 'Paso Yobai', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31910, 'San Salvador', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31911, 'Villarrica', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31912, 'Yataity', 2805, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31913, 'Alto Vera', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31914, 'Bella Vista', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31915, 'Cambyreta', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31916, 'Capitan Meza', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31917, 'Capitan Miranda', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31918, 'Carlos Antonio Lopez', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31919, 'Carmen del Parana', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31920, 'Coronel Bogado', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31921, 'Edelira', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31922, 'Encarnacion', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31923, 'Fram', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31924, 'General Artigas', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31925, 'General Delgado', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31926, 'Hohenau', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31927, 'Itapua Poty', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31928, 'Jesus', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31929, 'La Paz', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31930, 'Leandro Oviedo', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31931, 'Mayor Otano', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31932, 'Natalio', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31933, 'Nueva Alborada', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31934, 'Obligado', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31935, 'Pirapo', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31936, 'San Cosme y Damian', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31937, 'San Juan del Parana', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31938, 'San Pedro del Parana', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31939, 'San Rafael del Parana', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31940, 'Tomas Romero Pereira', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31941, 'Trinidad', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31942, 'Yatytay', 2806, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31943, 'Ayolas', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31944, 'San Ignacio', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31945, 'San Juan Bautista', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31946, 'San Miguel', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31947, 'San Patricio', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31948, 'Santa Maria', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31949, 'Santa Rosa', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31950, 'Santiago', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31951, 'Villa Florida', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31952, 'Yabebyry', 2807, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31953, 'Alberdi', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31954, 'Cerrito', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31955, 'Desmochados', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31956, 'General Jose Eduvigis Diaz', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31957, 'Guazu Cua', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31958, 'Humaita', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31959, 'Isla Umbu', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31960, 'Laureles', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31961, 'Mayor Jose Dejesus Martinez', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31962, 'Paso de Patria', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31963, 'Pilar', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31964, 'San Juan Bautista de Neembucu', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31965, 'Tacuaras', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31966, 'Villa Franca', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31967, 'Villa Oliva', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31968, 'Villalbin', 2808, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31969, 'Acahay', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31970, 'Caapucu', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31971, 'Carapegua', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31972, 'Escobar', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31973, 'General Bernardino Caballero', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31974, 'La Colmena', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31975, 'Mbuyapey', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31976, 'Paraguari', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31977, 'Pirayu', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31978, 'Quiindy', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31979, 'Quyquyho', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31980, 'San Roque Gonzalez de Santa Cr', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31981, 'Sapucai', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31982, 'Tebicuarymi', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31983, 'Yaguaron', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31984, 'Ybycui', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31985, 'Ybytimi', 2809, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31986, 'Bagua Grande', 2812, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31987, 'Cajaruro', 2812, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31988, 'Chachapoyas', 2812, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31989, 'Jazan', 2812, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31990, 'La Peca', 2812, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31991, 'Ancash', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31992, 'Caraz', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31993, 'Carhuaz', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31994, 'Casma', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31995, 'Chimbote', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31996, 'Choishco', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31997, 'Huallanca', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31998, 'Huaraz', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(31999, 'Huari', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32000, 'Huarmey', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32001, 'Pomabamba', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32002, 'Santa', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32003, 'Yungay', 2813, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32004, 'Abancay', 2814, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32005, 'Andahuaylas', 2814, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32006, 'San Jeronimo', 2814, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32007, 'Talavera', 2814, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32008, 'Acari', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32009, 'Arequipa', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32010, 'Camana', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32011, 'Chivay', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32012, 'Cocachacra', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32013, 'Dean Valdivia', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32014, 'Lluta', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32015, 'Mollendo', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32016, 'Nicolas de Pierola', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32017, 'Orcopampa', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32018, 'Punta de Bombon', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32019, 'Rio Grande', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32020, 'Yura', 2815, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32021, 'Ayacucho', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32022, 'Ayna', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32023, 'Coracora', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32024, 'Huanta', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32025, 'Puquio', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32026, 'San Miguel', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32027, 'Santa Rosa', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32028, 'Silvia', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32029, 'Tambo', 2816, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32030, 'Bambamarca', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32031, 'Bellavista', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32032, 'Cajabamba', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32033, 'Cajamarca', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32034, 'Celendin', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32035, 'Chota', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32036, 'Cutervo', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32037, 'Jaen', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32038, 'Pedro Galvez', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32039, 'Pucara', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32040, 'San Ignacio', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32041, 'Santa Cruz', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32042, 'Yonan', 2817, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32043, 'Anta', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32044, 'Calca', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32045, 'Cusco', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32046, 'Espinar', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32047, 'Oropesa', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32048, 'Quillabamba', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32049, 'Santa Ana', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32050, 'Santo Tomas', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32051, 'Sicuani', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32052, 'Urcos', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32053, 'Urubamba', 2818, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32054, 'Huancavelica', 2819, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32055, 'Lircay', 2819, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32056, 'Pampas', 2819, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32057, 'Ambos', 2820, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32058, 'Huanuco', 2820, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32059, 'Jose Crespo y Castillo', 2820, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32060, 'La Union', 2820, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32061, 'Llata', 2820, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32062, 'Rupa-Rupa', 2820, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32063, 'San Miguel de Cauri', 2820, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32064, 'Tingo Maria', 2820, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32065, 'Chincha Alta', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32066, 'Ica', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32067, 'Los Aquijes', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32068, 'Marcona', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32069, 'Nazca', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32070, 'Pachacutec', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32071, 'Palpa', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32072, 'Pisco', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32073, 'Salas', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32074, 'San Andres', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32075, 'San Clemente', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32076, 'San Juan Bautista', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32077, 'Santiago', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32078, 'Subtanjalla', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32079, 'Tupac Amaru Inca', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32080, 'Vista Alegre', 2821, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32081, 'Acobamba', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32082, 'Acolla', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32083, 'Carhuamayo', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32084, 'Chanchamayo', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32085, 'Chupaca', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32086, 'Concepcion', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32087, 'Huancayo', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32088, 'Huasahuasi', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32089, 'Huayucachi', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32090, 'Jauja', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32091, 'Junin', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32092, 'La Oroya', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32093, 'Mazamari', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32094, 'Morococha', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32095, 'Orcotuna', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32096, 'Pangoa', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32097, 'Perene', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32098, 'Pichanaqui', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32099, 'Pilcomayo', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32100, 'San Agustin', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32101, 'San Jeronimo de Tunan', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32102, 'San Pedro de Cajas', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32103, 'San Ramon', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32104, 'Santa Rosa de Saco', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32105, 'Satipo', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32106, 'Sicaya', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32107, 'Tarma', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32108, 'Yauli', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32109, 'Yauya', 2822, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32110, 'Chiclayo', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32111, 'Chongoyape', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32112, 'Eten', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32113, 'Ferrenafe', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32114, 'Illimo', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32115, 'Jayanca', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32116, 'Lagunas', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32117, 'Lambayeque', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32118, 'Manuel Mesones Muro', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32119, 'Mochumi', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32120, 'Monsefu', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32121, 'Morrope', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32122, 'Motupe', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32123, 'Olmos', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32124, 'Oyotun', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32125, 'Picsi', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32126, 'Pimentel', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32127, 'Pueblo Nuevo', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32128, 'Reque', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32129, 'San Jose', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32130, 'Sana', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32131, 'Santa Rosa', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32132, 'Tucume', 2824, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32133, 'Barranca', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32134, 'Contamana', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32135, 'Fernando Lores', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32136, 'Iquitos', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32137, 'Lagunas', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32138, 'Nauta', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32139, 'Paucarpata', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32140, 'Ramon Castilla', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32141, 'Requena', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32142, 'Saquena', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32143, 'Vargas Guerra', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32144, 'Yurimaguas', 2826, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32145, 'Ilo', 2828, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32146, 'Moquegua', 2828, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32147, 'Pacocha', 2828, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32148, 'Torata', 2828, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32149, 'Cerro de Pasco', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32150, 'Chaupimarca', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32151, 'Oxapampa', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32152, 'Paucartambo', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32153, 'Simon Bolivar', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32154, 'Tinyahuarco', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32155, 'Villa Rica', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32156, 'Yanacancha', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32157, 'Yanahuanca', 2829, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32158, 'Ayabaca', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32159, 'Bernal', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32160, 'Buenos Aires', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32161, 'Catacaos', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32162, 'Chulucanas', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32163, 'Colan', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32164, 'Cura Mori', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32165, 'El Alto', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32166, 'Huancabamba', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32167, 'Ignacio Escudero', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32168, 'La Arena', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32169, 'La Brea', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32170, 'La Huaca', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32171, 'La Matanza', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32172, 'La Union', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32173, 'Las Lomas', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32174, 'Los Organos', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32175, 'Mancora', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32176, 'Marcavelica', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32177, 'Morropon', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32178, 'Paita', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32179, 'Piura', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32180, 'Querecotillo', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32181, 'Salitral', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32182, 'San Juan de Bigote', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32183, 'Sechura', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32184, 'Sullana', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32185, 'Talara', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32186, 'Tamarindo', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32187, 'Tambo Grande', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32188, 'Vice', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32189, 'Vichayal', 2830, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32190, 'Ayaviri', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32191, 'Azangaro', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32192, 'Desaguadero', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32193, 'Huancane', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32194, 'Ilave', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32195, 'Juli', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32196, 'Juliaca', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32197, 'Lampa', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32198, 'Macusani', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32199, 'Nunoa', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32200, 'Puno', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32201, 'Putina', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32202, 'Santa Lucia', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32203, 'Yanahuara', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32204, 'Yunguyo', 2831, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32205, 'Ilabaya', 2833, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32206, 'Tacna', 2833, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32207, 'Tarata', 2833, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32208, 'Aguas Verdes', 2834, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32209, 'Corrales', 2834, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32210, 'La Cruz', 2834, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32211, 'Papayal', 2834, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32212, 'San Jacinto', 2834, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32213, 'Tumbes', 2834, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32214, 'Zarumilla', 2834, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32215, 'Zorritos', 2834, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32216, 'Campoverde', 2835, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32217, 'Padre Abad', 2835, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32218, 'Pucallpa', 2835, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32219, 'Raymondi', 2835, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32220, 'San Juan', 2836, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32221, 'Albay', 2837, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32222, 'Daet', 2837, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32223, 'Iriga', 2837, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32224, 'Legaspi', 2837, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32225, 'Naga', 2837, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32226, 'Sorsogon', 2837, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32227, 'Bulacan', 2838, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32228, 'Marilao', 2838, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32229, 'Cagayan de Oro', 2839, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32230, 'Santiago', 2839, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32231, 'Solano', 2839, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32232, 'Tuguegarao', 2839, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32233, 'Bislig', 2840, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32234, 'Butuan', 2840, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32235, 'Surigao', 2840, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32236, 'Baguio', 2844, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32237, 'Bangued', 2844, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32238, 'Davao', 2845, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32239, 'Dagupan', 2848, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32240, 'Laoag', 2848, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32241, 'Manaoag', 2848, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32242, 'Mangaldan', 2848, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32243, 'San Fernando', 2848, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32244, 'Urdaneta', 2848, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32245, 'Vigan', 2848, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32246, 'Binan', 2849, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32247, 'Laguna', 2849, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32248, 'Pangil', 2849, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32249, 'San Pedro', 2849, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32250, 'Manila', 2850, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32251, 'Marikina', 2850, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32252, 'Mactan', 2851, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32253, 'Fabryczna', 2861, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32254, 'Bielawa', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32255, 'Bogatynia', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32256, 'Boguszow-Gorce', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32257, 'Boleslawiec', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32258, 'Brzeg Dolny', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32259, 'Bystrzyca Klodzka', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32260, 'Chojnow', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32261, 'Dzierzoniow', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32262, 'Glogow', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32263, 'Gora', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32264, 'Jawor', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32265, 'Jelcz-Laskowice', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32266, 'Jelenia Gora', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32267, 'Kamienna Gora', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32268, 'Klodzko', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32269, 'Kowary', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32270, 'Kudowa-Zdroj', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32271, 'Legnica', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32272, 'Luban', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32273, 'Lubin', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32274, 'Lwowek Slaski', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32275, 'Milicz', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32276, 'Nowa Ruda', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32277, 'Olawa', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32278, 'Olesnica', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32279, 'Piechowice', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32280, 'Pieszyce', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32281, 'Polkowice', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32282, 'Strzegom', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32283, 'Strzelin', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32284, 'Swidnica', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32285, 'Swiebodzice', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32286, 'Sycow', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32287, 'Trzebnica', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32288, 'Walbrzych', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32289, 'Wolow', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32290, 'Wroclaw', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32291, 'Zabkowice Slaskie', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32292, 'Zgorzelec', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32293, 'Ziebice', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32294, 'Zlotoryja', 2862, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32295, 'Hopowo', 2864, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32296, 'Chwaszczyno', 2865, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32297, 'Smigiel', 2866, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32298, 'Jerzmanowice', 2867, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32299, 'Zabierzow', 2867, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32300, 'Aleksandrow Kujawski', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32301, 'Brodnica', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32302, 'Bydgoszcz', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32303, 'Chelmno', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32304, 'Chelmza', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32305, 'Ciechocinek', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32306, 'Golub-Dobrzyn', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32307, 'Grudziadz', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32308, 'Inowroclaw', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32309, 'Janikowo', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32310, 'Koronowo', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32311, 'Kruszwica', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32312, 'Lipno', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32313, 'Mogilno', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32314, 'Naklo nad Notecia', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32315, 'Radziejow', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32316, 'Rypin', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32317, 'Sepolno Krajenskie', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32318, 'Solec Kujawski', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32319, 'Swiecie', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32320, 'Szubin', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32321, 'Torun', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32322, 'Tuchola', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32323, 'Wabrzezno', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32324, 'Wloclawek', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32325, 'Znin', 2868, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32326, 'Aleksandrow Lodzki', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32327, 'Belchatow', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32328, 'Bratoszewice', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32329, 'Brzeziny', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32330, 'Glowno', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32331, 'Koluszki', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32332, 'Konstantynow Lodzki', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32333, 'Kutno', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32334, 'Lask', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32335, 'Leczyca', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32336, 'Lodz', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32337, 'Lowicz', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32338, 'Opoczno', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32339, 'Ozorkow', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32340, 'Pabianice', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32341, 'Piotrkow Trybunalski', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32342, 'Radomsko', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32343, 'Rawa Mazowiecka', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32344, 'Sieradz', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32345, 'Skierniewice', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32346, 'Tomaszow Mazowiecki', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32347, 'Tuszyn', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32348, 'Wielun', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32349, 'Zdunska Wola', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32350, 'Zgierz', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32351, 'Zychlin', 2869, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32352, 'Biala Podlaska', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32353, 'Bilgoraj', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32354, 'Chelm', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32355, 'Deblin', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32356, 'Hrubieszow', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32357, 'Janow Lubelski', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32358, 'Krasnik', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32359, 'Krasnystaw', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32360, 'Leczna', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32361, 'Lubartow', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32362, 'Lublin', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32363, 'Lukow', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32364, 'Miedzyrzec Podlaski', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(32365, 'Opole Lubelskie', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32366, 'Parczew', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32367, 'Poniatowa', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32368, 'Pulawy', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32369, 'Radzyn Podlaski', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32370, 'Ryki', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32371, 'Swidnik', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32372, 'Tomaszow Lubelski', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32373, 'Wlodawa', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32374, 'Zamosc', 2870, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32375, 'Drezdenko', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32376, 'Gorzow Wielkopolski', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32377, 'Gubin', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32378, 'Kostrzyn', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32379, 'Kozuchow', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32380, 'Krosno Odrzanskie', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32381, 'Lubsko', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32382, 'Miedzyrzecz', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32383, 'Nowa Sol', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32384, 'Skwierzyna', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32385, 'Slubice', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32386, 'Strzelce Krajenskie', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32387, 'Sulechow', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32388, 'Sulecin', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32389, 'Swiebodzin', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32390, 'Szprotawa', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32391, 'Wschowa', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32392, 'Zagan', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32393, 'Zary', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32394, 'Zielona Gora', 2871, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32395, 'Malomice', 2872, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32396, 'Andrychow', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32397, 'Bochnia', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32398, 'Brzesko', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32399, 'Brzeszcze', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32400, 'Bukowno', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32401, 'Chelmek', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32402, 'Chrzanow', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32403, 'Dabrowa Tarnowska', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32404, 'Gorlice', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32405, 'Kety', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32406, 'Krakow', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32407, 'Krynica', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32408, 'Krzeszowice', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32409, 'Libiaz', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32410, 'Limanowa', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32411, 'Miechow', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32412, 'Myslenice', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32413, 'Nowy Sacz', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32414, 'Nowy Targ', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32415, 'Olkusz', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32416, 'Oswiecim', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32417, 'Poronin', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32418, 'Rabka', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32419, 'Skawina', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32420, 'Stary Sacz', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32421, 'Sucha Beskidzka', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32422, 'Tarnow', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32423, 'Trzebinia', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32424, 'Wadowice', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32425, 'Wieliczka', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32426, 'Wolbrom', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32427, 'Zakopane', 2873, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32428, 'Blonie', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32429, 'Brwinow', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32430, 'Ciechanow', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32431, 'Garwolin', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32432, 'Gora Kalwaria', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32433, 'Gostynin', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32434, 'Grodzisk Mazowiecki', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32435, 'Grojec', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32436, 'Jozefow', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32437, 'Karczew', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32438, 'Kobylka', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32439, 'Konstancin-Jeziorna', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32440, 'Kozienice', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32441, 'Legionowo', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32442, 'Lomianki', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32443, 'Makow Mazowiecki', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32444, 'Marki', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32445, 'Milanowek', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32446, 'Minsk Mazowiecki', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32447, 'Mlawa', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32448, 'Nowy Dwor Mazowiecki', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32449, 'Ostroleka', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32450, 'Ostrow Mazowiecka', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32451, 'Otwock', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32452, 'Piaseczno', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32453, 'Piastow', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32454, 'Pionki', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32455, 'Plock', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32456, 'Plonsk', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32457, 'Pruszkow', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32458, 'Przasnysz', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32459, 'Pultusk', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32460, 'Radom', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32461, 'Siedlce', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32462, 'Sierpc', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32463, 'Sochaczew', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32464, 'Sokolow Podlaski', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32465, 'Sulejowek', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32466, 'Szydlowiec', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32467, 'Warka', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32468, 'Warszawa', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32469, 'Wegrow', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32470, 'Wesola', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32471, 'Wolomin', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32472, 'Wyszkow', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32473, 'Zabki', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32474, 'Zielonka', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32475, 'Zyrardow', 2874, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32476, 'Dlugoteka', 2875, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32477, 'Brzeg', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32478, 'Glubczyce', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32479, 'Glucholazy', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32480, 'Grodkow', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32481, 'Kedzierzyn-Kozle', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32482, 'Kluczbork', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32483, 'Krapkowice', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32484, 'Namyslow', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32485, 'Niemodlin', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32486, 'Nysa', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32487, 'Olesno', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32488, 'Opole', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32489, 'Ozimek', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32490, 'Prudnik', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32491, 'Strzelce Opolskie', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32492, 'Zawadzkie', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32493, 'Zdzieszowice', 2876, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32494, 'Cmielow', 2877, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32495, 'Debica', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32496, 'Jaroslaw', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32497, 'Jaslo', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32498, 'Krosno', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32499, 'Lancut', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32500, 'Lezajsk', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32501, 'Lubaczow', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32502, 'Mielec', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32503, 'Nisko', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32504, 'Nowa Deba', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32505, 'Przemysl', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32506, 'Przeworsk', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32507, 'Ropczyce', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32508, 'Rzeszow', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32509, 'Sanok', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32510, 'Stalowa Wola', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32511, 'Tarnobrzeg', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32512, 'Ustrzyki Dolne', 2878, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32513, 'Augustow', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32514, 'Bialystok', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32515, 'Bielsk Podlaski', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32516, 'Czarna Bialostocka', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32517, 'Grajewo', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32518, 'Hajnowka', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32519, 'Kolno', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32520, 'Lapy', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32521, 'Lomza', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32522, 'Monki', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32523, 'Siemiatycze', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32524, 'Sokolka', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32525, 'Suwalki', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32526, 'Wysokie Mazowieckie', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32527, 'Zambrow', 2879, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32528, 'Bogumilowice', 2880, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32529, 'Bytow', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32530, 'Chojnice', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32531, 'Czersk', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32532, 'Czluchow', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32533, 'Gdansk', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32534, 'Gdynia', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32535, 'Kartuzy', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32536, 'Koscierzyna', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32537, 'Kwidzyn', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32538, 'Lebork', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32539, 'Malbork', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32540, 'Miastko', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32541, 'Nowy Dwor Gdanski', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32542, 'Pruszcz Gdanski', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32543, 'Puck', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32544, 'Reda', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32545, 'Rumia', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32546, 'Slupsk', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32547, 'Sopot', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32548, 'Starogard Gdanski', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32549, 'Sztum', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32550, 'Tczew', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32551, 'Ustka', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32552, 'Wejherowo', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32553, 'Wladyslawowo', 2881, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32554, 'Komorniki', 2882, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32555, 'Steszew', 2882, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32556, 'Raszyn', 2883, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32557, 'Rymanowska', 2884, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32558, 'Glogow Malopolski', 2885, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32559, 'Bedzin', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32560, 'Bielsko-Biala', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32561, 'Bierun', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32562, 'Blachowania', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32563, 'Bytom', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32564, 'Chorzow', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32565, 'Cieszyn', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32566, 'Czechowice-Dziedzice', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32567, 'Czeladz', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32568, 'Czerwionka-Leszczyny', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32569, 'Czestochowa', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32570, 'Dabrowa Gornicza', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32571, 'Gliwice', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32572, 'Jastrzebie-Zdroj', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32573, 'Jaworzno', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32574, 'Kalety', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32575, 'Katowice', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32576, 'Klobuck', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32577, 'Knurow', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32578, 'Laziska Gorne', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32579, 'Ledziny', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32580, 'Lubliniec', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32581, 'Mikolow', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32582, 'Myslowice', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32583, 'Myszkow', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32584, 'Orzesze', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32585, 'Piekary Slaskie', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32586, 'Poreba', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32587, 'Pszczyna', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32588, 'Pszow', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32589, 'Pyskowice', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32590, 'Raciborz', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32591, 'Radlin', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32592, 'Radzionkow', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32593, 'Ruda Slaska', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32594, 'Rybnik', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32595, 'Rydultowy', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32596, 'Siemianowice Slaskie', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32597, 'Skoczow', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32598, 'Sosnowiec', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32599, 'Swietochlowice', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32600, 'Tarnowskie Gory', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32601, 'Tychy', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32602, 'Ustron', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32603, 'Wisla', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32604, 'Wodzislaw Slaski', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32605, 'Wojkowice', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32606, 'Zabrze', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32607, 'Zawiercie', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32608, 'Zory', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32609, 'Zywiec', 2886, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32610, 'Busko-Zdroj', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32611, 'Jedrzejow', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32612, 'Kielce', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32613, 'Konskie', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32614, 'Ostrowiec Swietokrzyski', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32615, 'Pinczow', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32616, 'Polaniec', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32617, 'Sandomierz', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32618, 'Skarzysko-Kamienna', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32619, 'Starachowice', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32620, 'Staszow', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32621, 'Suchedniow', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32622, 'Wloszczowa', 2888, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32623, 'Bartoszyce', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32624, 'Biskupiec', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32625, 'Braniewo', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32626, 'Dobre Miasto', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32627, 'Dzialdowo', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32628, 'Elblag', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32629, 'Elk', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32630, 'Gizycko', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32631, 'Goldap', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32632, 'Ilawa', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32633, 'Ketrzyn', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32634, 'Lidzbark Warminski', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32635, 'Lubawa', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32636, 'Morag', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32637, 'Mragowo', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32638, 'Nidzica', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32639, 'Nowe Miasto Lubawskie', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32640, 'Olecko', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32641, 'Olsztyn', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32642, 'Orneta', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32643, 'Ostroda', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32644, 'Paslek', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32645, 'Pisz', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32646, 'Szczytno', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32647, 'Wegorzewo', 2889, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32648, 'Nadarzyn', 2890, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32649, 'Szemud', 2890, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32650, 'Warsaw', 2890, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32651, 'Goscicino', 2891, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32652, 'Chodziez', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32653, 'Czarnkow', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32654, 'Gniezno', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32655, 'Gostyn', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32656, 'Grodzisk Wielkopolski', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32657, 'Jarocin', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32658, 'Kalisz', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32659, 'Kepno', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32660, 'Kolo', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32661, 'Konin', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32662, 'Koscian', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32663, 'Krotoszyn', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32664, 'Leszno', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32665, 'Lubon', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32666, 'Miedzychod', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32667, 'Mosina', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32668, 'Murowana Goslina', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32669, 'Nowy Tomysl', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32670, 'Oborniki', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32671, 'Opalenica', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32672, 'Ostrow Wielkopolski', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32673, 'Ostrzeszow', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32674, 'Pila', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32675, 'Pleszew', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32676, 'Poznan', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32677, 'Rawicz', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32678, 'Rogozno', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32679, 'Slupca', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32680, 'Srem', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32681, 'Sroda Wielkopolska', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32682, 'Swarzedz', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32683, 'Szamotuly', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32684, 'Trzcianka', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32685, 'Tuliszkow', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32686, 'Turek', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32687, 'Wagrowiec', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32688, 'Wolsztyn', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32689, 'Wronki', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32690, 'Wrzesnia', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32691, 'Zlotow', 2892, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32692, 'Borowa', 2893, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32693, 'Barlinek', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32694, 'Bialogard', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32695, 'Choszczno', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32696, 'Darlowo', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32697, 'Debno', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32698, 'Drawsko Pomorskie', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32699, 'Goleniow', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32700, 'Gryfice', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32701, 'Gryfino', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32702, 'Kamien Pomorski', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32703, 'Kolobrzeg', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32704, 'Koszalin', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32705, 'Lobez', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32706, 'Mysliborz', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32707, 'Nowogard', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32708, 'Polczyn-Zdroj', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32709, 'Police', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32710, 'Pyrzyce', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32711, 'Slawno', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32712, 'Stargard Szczecinski', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32713, 'Swidwin', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32714, 'Swinoujscie', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32715, 'Szczecin', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32716, 'Szczecinek', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32717, 'Trzebiatow', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32718, 'Walcz', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32719, 'Zlocieniec', 2894, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32720, 'Zukowskie', 2895, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32721, 'Tramagal', 2896, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32722, 'Angra', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32723, 'Arrifes', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32724, 'Faja de Baixo', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32725, 'Horta', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32726, 'Lagoa', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32727, 'Ponta Delgada', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32728, 'Praia da Vitoria', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32729, 'Rabo de Peixe', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32730, 'Ribeira Grande', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32731, 'Rosto do Cao', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32732, 'Vila Franca do Campo', 2897, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32733, 'Alcacer do Sal', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32734, 'Aljustrel', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32735, 'Beja', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32736, 'Borba', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32737, 'Caia e Sao Pedro', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32738, 'Campo Maior', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32739, 'Castro Verde', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32740, 'Cercal', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32741, 'Elvas', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32742, 'Estremoz', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32743, 'Evora', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32744, 'Ferreira do Alentejo', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32745, 'Grandola', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32746, 'Montemor-o-Novo', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32747, 'Moura', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32748, 'Odemira', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32749, 'Ponte de Sor', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32750, 'Portalegre', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32751, 'Redondo', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32752, 'Reguengos de Monsaraz', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32753, 'Santiago do Cacem', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32754, 'Santo Andre', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32755, 'Sao Teotonio', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32756, 'Serpa', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32757, 'Sines', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32758, 'Vendas Novas', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32759, 'Vila Nova de Milfontes', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32760, 'Vila Vicosa', 2898, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32761, 'Albufeira', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32762, 'Aljezur', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32763, 'Almancil', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32764, 'Alvor', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32765, 'Armacao de Pera', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32766, 'Boliqueime', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32767, 'Castro Marim', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32768, 'Estombar', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32769, 'Faro', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32770, 'Ferreiras', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32771, 'Guia', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32772, 'Lagoa', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32773, 'Lagos', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32774, 'Loule', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32775, 'Luz', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32776, 'Moncarapacho', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32777, 'Monchique', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32778, 'Monte Gordo', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32779, 'Montenegro', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32780, 'Olhao', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32781, 'Portimao', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32782, 'Quarteira', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32783, 'Santa Barbara de Nexe', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32784, 'Sao Bartolomeu de Messines', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32785, 'Sao Bras de Alportel', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32786, 'Silves', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32787, 'Tavira', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32788, 'Vila Real de Santo Antonio', 2899, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32789, 'Fafe', 2900, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32790, 'Forjaes', 2900, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32791, 'Vianna do Castello', 2900, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32792, 'Abraveses', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32793, 'Aguada de Cima', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32794, 'Agueda', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32795, 'Albergaria-A-Velha', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32796, 'Alcains', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32797, 'Alhadas', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32798, 'Amor', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32799, 'Aradas', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32800, 'Arazede', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32801, 'Arcos', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32802, 'Arganil', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32803, 'Avanca', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32804, 'Aveiro', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32805, 'Batalha', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32806, 'Beduido', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32807, 'Branca', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32808, 'Buarcos', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32809, 'Campo', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32810, 'Cantanhede', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32811, 'Caranguejeira', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32812, 'Castanheira de Pera', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32813, 'Castelo Branco', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32814, 'Castro Daire', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32815, 'Coimbra', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32816, 'Condeixa-A-Nova', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32817, 'Cortegaca', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32818, 'Covilha', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32819, 'Eixo', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32820, 'Esmoriz', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32821, 'Figueira da Foz', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32822, 'Fundao', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32823, 'Gafanha da Encarnacao', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32824, 'Gafanha da Nazare', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32825, 'Guarda', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32826, 'Ilhavo', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32827, 'Lavos', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32828, 'Leiria', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32829, 'Lorvao', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32830, 'Lourical', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32831, 'Lousa', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32832, 'Maceira', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32833, 'Mangualde', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32834, 'Marinha Grande', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32835, 'Mealhada', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32836, 'Mira', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32837, 'Mira de Aire', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32838, 'Miranda do Corvo', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32839, 'Monte Redondo', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32840, 'Nelas', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32841, 'Oia', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32842, 'Oliveira do Bairro', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32843, 'Oliveira do Hospital', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32844, 'Oliveirinha', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32845, 'Ovar', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32846, 'Pampilhosa', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32847, 'Pardilho', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32848, 'Poiares', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32849, 'Pombal', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32850, 'Porto de Mos', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32851, 'Proenca-A-Nova', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32852, 'Rio de Loba', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32853, 'Salreu', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32854, 'Sangalhos', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32855, 'Santa Catarina da Serra', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32856, 'Sao Joao', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32857, 'Sao Pedro do Sul', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32858, 'Satao', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32859, 'Seia', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32860, 'Serta', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32861, 'Soure', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32862, 'Souto da Carpalhosa', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32863, 'Tavarede', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32864, 'Teixoso', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32865, 'Tondela', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32866, 'Tortosendo', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32867, 'Vagos', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32868, 'Valega', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32869, 'Valongo do Vouga', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32870, 'Vieira de Leiria', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32871, 'Viseu', 2901, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32872, 'Camacha', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32873, 'Camara de Lobos', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32874, 'Campanario', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32875, 'Canico', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32876, 'Funchal', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32877, 'Machico', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32878, 'Ponta do Sol', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32879, 'Porto Santo', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32880, 'Ribeira Brava', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32881, 'Santa Cruz', 2907, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32882, 'A Ver-o-Mar', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32883, 'Adaufe', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32884, 'Aguas Santas', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32885, 'Agucadoura', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32886, 'Alfena', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32887, 'Alpendurada e Matos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32888, 'Amarante', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32889, 'Anta', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32890, 'Antas', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32891, 'Apulia', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32892, 'Arcozelo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32893, 'Areosa', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32894, 'Argoncilhe', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32895, 'Aroes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32896, 'Arrifana', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32897, 'Arvore', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32898, 'Aves', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32899, 'Avintes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32900, 'Baguim do Monte', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32901, 'Baltar', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32902, 'Barcelos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32903, 'Barrosas', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32904, 'Bougado', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32905, 'Braga', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32906, 'Braganca', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32907, 'Brito', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32908, 'Caldas de Vizela', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32909, 'Caldelas', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32910, 'Calendario', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32911, 'Campo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32912, 'Candoso', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32913, 'Canedo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32914, 'Canelas', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32915, 'Canidelo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32916, 'Carvalhosa', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32917, 'Casteloes de Cepeda', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32918, 'Chaves', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32919, 'Coronado', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32920, 'Couto', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32921, 'Custoias', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32922, 'Darque', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32923, 'Ermesinde', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32924, 'Espinho', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32925, 'Fafe', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32926, 'Fanzeres', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32927, 'Feira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32928, 'Ferreira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32929, 'Ferreiros', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32930, 'Fiaes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32931, 'Figueiro', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32932, 'Foz do Sousa', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32933, 'Frazao', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32934, 'Freamunde', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32935, 'Galegos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32936, 'Gandra', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32937, 'Gemunde', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32938, 'Godim', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(32939, 'Gondomar', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32940, 'Grijo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32941, 'Gueifaes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32942, 'Guifoes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32943, 'Guimaraes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32944, 'Gulpilhares', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32945, 'Joane', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32946, 'Jovim', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32947, 'Lamego', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32948, 'Lavra', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32949, 'Leca da Palmeira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32950, 'Leca do Bailio', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32951, 'Lobao', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32952, 'Lordelo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32953, 'Lourosa', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32954, 'Lustosa', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32955, 'Macedo de Cavaleiros', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32956, 'Macieira de Cambra', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32957, 'Madalena', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32958, 'Maia', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32959, 'Margaride', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32960, 'Marinhas', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32961, 'Matosinhos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32962, 'Meadela', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32963, 'Meinedo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32964, 'Milheiros', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32965, 'Milheiros de Poiares', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32966, 'Mirandela', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32967, 'Mogadouro', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32968, 'Moreira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32969, 'Moreira de Conegos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32970, 'Mozelos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32971, 'Negrelos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32972, 'Nogueira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32973, 'Nogueira da Regedoura', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32974, 'Olival', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32975, 'Oliveira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32976, 'Oliveira de Azemeis', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32977, 'Oliveira do Douro', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32978, 'Pacos de Brandao', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32979, 'Pacos de Ferreira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32980, 'Pedroso', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32981, 'Pedroucos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32982, 'Penafiel', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32983, 'Perafita', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32984, 'Perozinho', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32985, 'Peso da Regua', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32986, 'Ponte', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32987, 'Porto', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32988, 'Povoa de Lanhoso', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32989, 'Povoa de Varzim', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32990, 'Real', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32991, 'Rebordosa', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32992, 'Recarei', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32993, 'Refojos de Basto', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32994, 'Ribeirao', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32995, 'Rio Meao', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32996, 'Rio Tinto', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32997, 'Ronfe', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32998, 'Sande', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(32999, 'Sandim', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33000, 'Santa Cruz do Bispo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33001, 'Santa Maria de Lamas', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33002, 'Santiago da Riba-Ul', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33003, 'Santo Tirso', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33004, 'Sao Felix da Marinha', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33005, 'Sao Joao da Madeira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33006, 'Sao Joao de Ver', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33007, 'Sao Mamede de Infesta', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33008, 'Sao Pedro da Cova', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33009, 'Sao Pedro de Casteloes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33010, 'Sao Roque', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33011, 'Selho', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33012, 'Senhora da Hora', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33013, 'Seroa', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33014, 'Serzedelo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33015, 'Serzedo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33016, 'Silvalde', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33017, 'Sobrado', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33018, 'Sobreira', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33019, 'Souto', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33020, 'Teloes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33021, 'Urgezes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33022, 'Valadares', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33023, 'Valbom', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33024, 'Vale', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33025, 'Valongo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33026, 'Valpacos', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33027, 'Viana do Castelo', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33028, 'Vila Cha', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33029, 'Vila Frescainha', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33030, 'Vila Nova da Telha', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33031, 'Vila Nova de Famalicao', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33032, 'Vila Nova de Gaia', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33033, 'Vila Praia de Ancora', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33034, 'Vila Real', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33035, 'Vila Verde', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33036, 'Vila de Cucujaes', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33037, 'Vila de Prado', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33038, 'Vila do Conde', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33039, 'Vilar de Andorinho', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33040, 'Vilar do Paraiso', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33041, 'Vilarinho', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33042, 'Vilela', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33043, 'Vizela', 2908, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33044, 'Paivas', 2909, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33045, 'Arecibo', 2910, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33046, 'Barceloneta', 2910, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33047, 'Camuy', 2910, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33048, 'Dorado', 2910, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33049, 'Isabela', 2910, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33050, 'Manati', 2910, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33051, 'Vega Alta', 2910, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33052, 'Vega Baja', 2910, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33053, 'Bayamon', 2911, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33054, 'Catano', 2911, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33055, 'Guaynabo', 2911, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33056, 'Levittown', 2911, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33057, 'Valencia', 2911, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33058, 'Canovanas', 2912, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33059, 'Carolina', 2912, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33060, 'Trujillo Alto', 2912, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33061, 'Florida', 2913, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33062, 'Aibonito', 2914, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33063, 'Arroyo', 2914, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33064, 'Barranquitas', 2914, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33065, 'Cayey', 2914, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33066, 'Coamo', 2914, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33067, 'Corozal', 2914, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33068, 'Guayama', 2914, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33069, 'Juana Diaz', 2914, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33070, 'Aguas Buenas', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33071, 'Caguas', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33072, 'Culebra', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33073, 'Fajardo', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33074, 'Gurabo', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33075, 'Humacao', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33076, 'Juncos', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33077, 'Rio Grande', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33078, 'Vieques', 2915, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33079, 'Aguada', 2916, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33080, 'Aguadilla', 2916, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33081, 'Anasco', 2916, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33082, 'Cabo Rojo', 2916, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33083, 'Hormigueros', 2916, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33084, 'Mayaguez', 2916, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33085, 'San German', 2916, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33086, 'San Sebastian', 2916, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33087, 'Adjuntas', 2917, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33088, 'Guanica', 2917, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33089, 'Ponce', 2917, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33090, 'Utuado', 2917, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33091, 'Yauco', 2917, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33092, 'Salinas', 2918, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33093, 'Doha', 2920, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33094, 'Umm Bab', 2921, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33095, 'ad-Dawhah', 2923, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33096, 'al-Ghuwayriyah', 2924, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33097, 'Dukhan', 2925, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33098, 'al-Jumayliyah', 2925, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33099, 'al-Khawr', 2926, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33100, 'Musay\'id', 2927, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33101, 'al-Wakrah', 2927, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33102, 'al-Wukayr', 2927, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33103, 'ar-Rayyan', 2928, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33104, 'ash-Shahaniyah', 2928, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33105, 'ar-Ruways', 2929, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33106, 'Bras-Panon', 2930, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33107, 'Saint-Andre', 2930, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33108, 'Saint-Benoit', 2930, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33109, 'Sainte-Rose', 2930, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33110, 'Salazie', 2930, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33111, 'La Possession', 2931, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33112, 'Le Port', 2931, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33113, 'Saint-Denis', 2931, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33114, 'Sainte-Marie', 2931, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33115, 'Sainte-Suzanne', 2931, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33116, 'L\'Etang-Sale', 2932, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33117, 'Les Aviron', 2932, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33118, 'Les Trois-Bassins', 2932, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33119, 'Saint-Leu', 2932, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33120, 'Saint-Paul', 2932, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33121, 'Cilaos', 2933, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33122, 'Entre-Deux', 2933, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33123, 'Le Tampon', 2933, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33124, 'Petite-Ile', 2933, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33125, 'Saint-Joseph', 2933, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33126, 'Saint-Louis', 2933, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33127, 'Saint-Philippe', 2933, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33128, 'Saint-Pierre', 2933, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33129, 'Abrud', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33130, 'Aiud', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33131, 'Alba Iulia', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33132, 'Albac', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33133, 'Almasu Mare', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33134, 'Arieseni', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33135, 'Avram Iancu', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33136, 'Baia de Aries', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33137, 'Berghin', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33138, 'Bistra', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33139, 'Blaj', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33140, 'Blandiana', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33141, 'Bucium', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33142, 'Calnic', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33143, 'Campeni', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33144, 'Cenade', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33145, 'Cergau', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33146, 'Ceru-Bacainti', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33147, 'Cetatea de Balta', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33148, 'Ciugud', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33149, 'Ciuruleasa', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33150, 'Craciunelu de Jos', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33151, 'Cricau', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33152, 'Cugir', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33153, 'Daia Romana', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33154, 'Dostat', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33155, 'Farau', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33156, 'Galda de Jos', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33157, 'Garbova', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33158, 'Garda de Sus', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33159, 'Hoparta', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33160, 'Horea', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33161, 'Ighiu', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33162, 'Intregalde', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33163, 'Jidvei', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33164, 'Livezile', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33165, 'Lopadea Noua', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33166, 'Lunca Muresului', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33167, 'Lupsa', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33168, 'Metes', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33169, 'Mihalt', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33170, 'Miraslau', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33171, 'Mogos', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33172, 'Noslac', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33173, 'Ocna Mures', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33174, 'Ocolis', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33175, 'Ohaba', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33176, 'Pianu', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33177, 'Poiana Vadului', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33178, 'Ponor', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33179, 'Posaga', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33180, 'Radesti', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33181, 'Ramet', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33182, 'Rimetea', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33183, 'Rosia Montana', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33184, 'Rosia de Secas', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33185, 'Salciua', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33186, 'Salistea', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33187, 'Sancel', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33188, 'Santimbru', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33189, 'Sasciori', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33190, 'Scarisoara', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33191, 'Sebes', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33192, 'Sibot', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33193, 'Sohodol', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33194, 'Sona', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33195, 'Spring', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33196, 'Stremt', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33197, 'Sugag', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33198, 'Teius', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33199, 'Unirea', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33200, 'Vadu Motilor', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33201, 'Valea Lunga', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33202, 'Vidra', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33203, 'Vintu de Jos', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33204, 'Zlatna', 2934, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33205, 'Almas', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33206, 'Apateu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33207, 'Arad', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33208, 'Archis', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33209, 'Barsa', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33210, 'Barzava', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33211, 'Bata', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33212, 'Beliu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33213, 'Birchis', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33214, 'Bocsig', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33215, 'Brazii', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33216, 'Buteni', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33217, 'Carand', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33218, 'Cermei', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33219, 'Chisindia', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33220, 'Chisineu Cris', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33221, 'Conop', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33222, 'Covasint', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33223, 'Craiva', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33224, 'Curtici', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33225, 'Dezna', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33226, 'Dieci', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33227, 'Dorgos', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33228, 'Fantanele', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33229, 'Felnac', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33230, 'Ghioroc', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33231, 'Graniceri', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33232, 'Gurahont', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33233, 'Halmagel', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33234, 'Halmagiu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33235, 'Hasmas', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33236, 'Ignesti', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33237, 'Ineu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33238, 'Iratosu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33239, 'Lipova', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33240, 'Livada', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33241, 'Macea', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33242, 'Masca', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33243, 'Moneasa', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33244, 'Nadlac', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33245, 'Olari', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33246, 'Pancota', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33247, 'Paulis', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33248, 'Pecica', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33249, 'Peregu Mare', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33250, 'Petris', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33251, 'Pilu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33252, 'Plescuta', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33253, 'Sagu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33254, 'Santana', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33255, 'Savarsin', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33256, 'Sebis', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33257, 'Secusigiu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33258, 'Seitin', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33259, 'Seleus', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33260, 'Semlac', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33261, 'Sepreus', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33262, 'Sicula', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33263, 'Silindia', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33264, 'Simand', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33265, 'Sintea Mare', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33266, 'Siria', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33267, 'Sistarovat', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33268, 'Socodor', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33269, 'Sofronea', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33270, 'Tarnova', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33271, 'Taut', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33272, 'Varadia de Mures', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33273, 'Varfurile', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33274, 'Vinga', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33275, 'Vladimirescu', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33276, 'Zabrani', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33277, 'Zarand', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33278, 'Zerind', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33279, 'Zimandu Nou', 2935, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33280, 'Albesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33281, 'Albestii-Pamanteni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33282, 'Albota', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33283, 'Aninoasa', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33284, 'Arefu', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33285, 'Babana', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33286, 'Baiculesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33287, 'Balilesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33288, 'Barla', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33289, 'Bascov', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33290, 'Beleti-Negresti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33291, 'Berevoesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33292, 'Bogati', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33293, 'Boteni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33294, 'Botesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33295, 'Bradu', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33296, 'Bradulet', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33297, 'Budeasa', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33298, 'Bughea de Jos', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33299, 'Buzoesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33300, 'Caldararu', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33301, 'Calinesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33302, 'Campulung', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33303, 'Cateasca', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33304, 'Cepari', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33305, 'Cetateni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33306, 'Cicanesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33307, 'Ciofrangeni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33308, 'Ciomagesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33309, 'Cocu', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33310, 'Corbeni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33311, 'Corbi', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33312, 'Cosesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33313, 'Costesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33314, 'Cotmeana', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33315, 'Cuca', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33316, 'Curtea de Arges', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33317, 'Dambovicioara', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33318, 'Darmanesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33319, 'Davidesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33320, 'Dobresti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33321, 'Domnesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33322, 'Draganu', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33323, 'Dragoslavele', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33324, 'Godeni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33325, 'Harsesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33326, 'Hartiesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33327, 'Izvoru', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33328, 'Leordeni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33329, 'Leresti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33330, 'Lunca Corbului', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33331, 'Malureni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33332, 'Maracineni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33333, 'Merisani', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33334, 'Micesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33335, 'Mihaesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33336, 'Mioarele', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33337, 'Mioveni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33338, 'Mirosi', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33339, 'Moraresti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33340, 'Mosoaia', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33341, 'Mozaceni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33342, 'Musatesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33343, 'Negrasi', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33344, 'Nucsoara', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33345, 'Oarja', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33346, 'Pietrosani', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33347, 'Pitesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33348, 'Poenari', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33349, 'Poiana Lacului', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33350, 'Popesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33351, 'Priboieni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33352, 'Ratesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33353, 'Recea', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33354, 'Rociu', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33355, 'Rucar', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33356, 'Salatrucu', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33357, 'Sapata', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33358, 'Schitu-Golesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33359, 'Slobozia', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33360, 'Stalpeni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33361, 'Stefan cel Mare', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33362, 'Stefanesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33363, 'Stoenesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33364, 'Stolnici', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33365, 'Suici', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33366, 'Suseni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33367, 'Teiu', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33368, 'Tigveni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33369, 'Titesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33370, 'Topoloveni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33371, 'Uda', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33372, 'Ungheni', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33373, 'Valea Danului', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33374, 'Valea Iasului', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33375, 'Valea Mare-Pravat', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33376, 'Vedea', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33377, 'Vladesti', 2936, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33378, 'Agas', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33379, 'Ardeoani', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33380, 'Asau', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33381, 'Bacau', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33382, 'Balcani', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33383, 'Barsanesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33384, 'Beresti-Bistrita', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33385, 'Beresti-Tazlau', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33386, 'Berzunti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33387, 'Blagesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33388, 'Bogdanesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33389, 'Brusturoasa', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33390, 'Buhoci', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33391, 'Buhusi', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33392, 'Caiuti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33393, 'Casin', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33394, 'Cleja', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33395, 'Colonesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33396, 'Comanesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33397, 'Corbasca', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33398, 'Cotofanesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33399, 'Damienesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33400, 'Darmanesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33401, 'Dealu Morii', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33402, 'Dofteana', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33403, 'Faraoani', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33404, 'Filipeni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33405, 'Filipesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33406, 'Gaiceana', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33407, 'Garleni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33408, 'Ghimes-Faget', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33409, 'Glavanesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33410, 'Gura Vaii', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33411, 'Helegiu', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33412, 'Hemeius', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33413, 'Horgesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33414, 'Huruesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33415, 'Izvoru Berheciului', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33416, 'Letea Veche', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33417, 'Lipova', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33418, 'Livezi', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33419, 'Luizi-Calugara', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33420, 'Magiresti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33421, 'Magura', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33422, 'Manastirea Casin', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33423, 'Margineni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33424, 'Moinesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33425, 'Motoseni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33426, 'Negri', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33427, 'Nicolae Balcescu', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33428, 'Oituz', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33429, 'Oncesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33430, 'Onesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33431, 'Orbeni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33432, 'Palanca', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33433, 'Pancesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33434, 'Parava', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33435, 'Pargaresti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33436, 'Parincea', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33437, 'Parjol', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33438, 'Plopana', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33439, 'Podu Turcului', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33440, 'Poduri', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33441, 'Racaciuni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33442, 'Rachitoasa', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33443, 'Racova', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33444, 'Rosiori', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33445, 'Sanduleni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33446, 'Sascut', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33447, 'Saucesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33448, 'Scorteni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33449, 'Secuieni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33450, 'Slanic-Moldova', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33451, 'Solont', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33452, 'Stanisesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33453, 'Stefan cel Mare', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33454, 'Strugari', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33455, 'Tamasi', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33456, 'Targu Ocna', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33457, 'Targu-Trotus', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33458, 'Tatarasti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33459, 'Traian', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33460, 'Ungureni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33461, 'Urechesti', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33462, 'Valea Seaca', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33463, 'Vultureni', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33464, 'Zemes', 2937, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33465, 'Abram', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33466, 'Abramut', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33467, 'Alesd', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33468, 'Astileu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33469, 'Auseu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33470, 'Avram Iancu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33471, 'Balc', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33472, 'Batar', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33473, 'Beius', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33474, 'Biharia', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33475, 'Boianu Mare', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33476, 'Borod', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33477, 'Bors', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33478, 'Bratca', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33479, 'Brusturi', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33480, 'Budureasa', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33481, 'Buduslau', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33482, 'Bulz', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33483, 'Buntesti', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33484, 'Cabesti', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33485, 'Campani', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33486, 'Capalna', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33487, 'Carpinet', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33488, 'Cefa', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33489, 'Ceica', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33490, 'Cetariu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33491, 'Cherechiu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33492, 'Chislaz', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33493, 'Ciuhoiu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33494, 'Ciumeghiu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33495, 'Cociuba Mare', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33496, 'Copacel', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33497, 'Cristioru de Jos', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33498, 'Curatele', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33499, 'Curtuiseni', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33500, 'Derna', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33501, 'Diosig', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33502, 'Dobresti', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33503, 'Draganesti', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33504, 'Dragesti', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33505, 'Finis', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33506, 'Girisu de Cris', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33507, 'Hidiselu de Sus', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33508, 'Holod', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33509, 'Husasau de Tinca', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33510, 'Ineu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33511, 'Lazareni', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33512, 'Lazuri de Beius', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33513, 'Lugasu de Jos', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33514, 'Lunca', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(33515, 'Madaras', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33516, 'Magesti', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33517, 'Marghita', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33518, 'Nojorid', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33519, 'Nucet', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33520, 'Olcea', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33521, 'Oradea', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33522, 'Osorheiu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33523, 'Pietroasa', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33524, 'Pocola', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33525, 'Pomezeu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33526, 'Popesti', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33527, 'Rabagani', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33528, 'Remetea', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33529, 'Rieni', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33530, 'Rosia', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33531, 'Sacadat', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33532, 'Sacueni', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33533, 'Salacea', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33534, 'Salard', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33535, 'Salonta', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33536, 'Sambata', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33537, 'Sanmartin', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33538, 'Santandrei', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33539, 'Sarbi', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33540, 'Simian', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33541, 'Sinteu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33542, 'Soimi', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33543, 'Spinus', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33544, 'Stei', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33545, 'Suncuius', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33546, 'Suplacu de Barcau', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33547, 'Tarcaia', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33548, 'Tarcea', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33549, 'Tauteu', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33550, 'Tetchea', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33551, 'Tileagd', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33552, 'Tinca', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33553, 'Tulca', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33554, 'Uileacu de Beius', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33555, 'Vadu Crisului', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33556, 'Valea lui Mihai', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33557, 'Varciorog', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33558, 'Vascau', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33559, 'Viisoara', 2938, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33560, 'Beclean', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33561, 'Bistrita', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33562, 'Bistrita Bargaului', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33563, 'Branistea', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33564, 'Budacu de Jos', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33565, 'Budesti', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33566, 'Caianu Mic', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33567, 'Cetate', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33568, 'Chiochis', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33569, 'Chiuza', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33570, 'Ciceu-Giurgesti', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33571, 'Cosbuc', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33572, 'Dumitra', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33573, 'Feldru', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33574, 'Galatii Bistritei', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33575, 'Ilva Mare', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33576, 'Ilva Mica', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33577, 'Josenii Bargaului', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33578, 'Lechinta', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33579, 'Lesu', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33580, 'Livezile', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33581, 'Lunca Ilvei', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33582, 'Magura Ilvei', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33583, 'Maieru', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33584, 'Mariselu', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33585, 'Matei', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33586, 'Micestii de Campie', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33587, 'Milas', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33588, 'Monor', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33589, 'Nasaud', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33590, 'Nimigea', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33591, 'Nuseni', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33592, 'Parva', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33593, 'Petru Rares', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33594, 'Prundu Bargaului', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33595, 'Rebra', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33596, 'Rebrisoara', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33597, 'Rodna', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33598, 'Romuli', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33599, 'Salva', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33600, 'Sangeorz-Bai', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33601, 'Sanmihaiu de Campie', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33602, 'Sant', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33603, 'Sieu', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33604, 'Sieu-Magherus', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33605, 'Sieu-Odorhei', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33606, 'Sieut', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33607, 'Silvasu de Campie', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33608, 'Sintereag', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33609, 'Spermezeu', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33610, 'Tarlisua', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33611, 'Teaca', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33612, 'Telciu', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33613, 'Tiha Bargaului', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33614, 'Uriu', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33615, 'Urmenis', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33616, 'Zagra', 2939, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33617, 'Albesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33618, 'Avrameni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33619, 'Baluseni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33620, 'Botosani', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33621, 'Braesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33622, 'Broscauti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33623, 'Bucecea', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33624, 'Calarasi', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33625, 'Concesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33626, 'Copalau', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33627, 'Cordareni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33628, 'Corlateni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33629, 'Corni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33630, 'Cotusca', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33631, 'Cristesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33632, 'Cristinesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33633, 'Curtesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33634, 'Dangeni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33635, 'Darabani', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33636, 'Dersca', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33637, 'Dobarceni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33638, 'Dorohoi', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33639, 'Draguseni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33640, 'Durnesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33641, 'Flamanzi', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33642, 'Frumusica', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33643, 'George Enescu', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33644, 'Gorbanesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33645, 'Hanesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33646, 'Havarna', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33647, 'Hiliseu-Horia', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33648, 'Hlipiceni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33649, 'Hudesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33650, 'Ibanesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33651, 'Leorda', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33652, 'Lunca', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33653, 'Manoleasa', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33654, 'Mihail Eminescu', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33655, 'Mihaileni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33656, 'Mihalaseni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33657, 'Mileanca', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33658, 'Mitoc', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33659, 'Nicseni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33660, 'Paltinis', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33661, 'Pomarla', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33662, 'Prajeni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33663, 'Rachiti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33664, 'Radauti-Prut', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33665, 'Rauseni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33666, 'Ripiceni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33667, 'Roma', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33668, 'Romanesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33669, 'Santa-Maria', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33670, 'Saveni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33671, 'Sendriceni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33672, 'Stauceni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33673, 'Stefanesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33674, 'Stiubieni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33675, 'Suharau', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33676, 'Sulita', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33677, 'Todireni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33678, 'Trusesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33679, 'Tudora', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33680, 'Ungureni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33681, 'Unteni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33682, 'Vaculesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33683, 'Varfu Campului', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33684, 'Viisoara', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33685, 'Vladeni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33686, 'Vlasinesti', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33687, 'Vorniceni', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33688, 'Vorona', 2940, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33689, 'Baraganul', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33690, 'Bertestii de Jos', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33691, 'Bordei Verde', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33692, 'Braila', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33693, 'Chiscani', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33694, 'Ciocile', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33695, 'Ciresu', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33696, 'Dudesti', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33697, 'Faurei', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33698, 'Frecatei', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33699, 'Galbenu', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33700, 'Gemenele', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33701, 'Gradistea', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33702, 'Gropeni', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33703, 'Ianca', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33704, 'Insuratei', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33705, 'Jirlau', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33706, 'Marasu', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33707, 'Maxineni', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33708, 'Mircea Voda', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33709, 'Movila Miresei', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33710, 'Racovita', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33711, 'Ramnicelu', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33712, 'Romanu', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33713, 'Rosiori', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33714, 'Salcia Tudor', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33715, 'Scortaru Nou', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33716, 'Silistea', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33717, 'Stancuta', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33718, 'Surdila-Gaiseanca', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33719, 'Surdila-Greci', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33720, 'Sutesti', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33721, 'Tichilesti', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33722, 'Traian', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33723, 'Tudor Vladimirescu', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33724, 'Tufesti', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33725, 'Ulmu', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33726, 'Unirea', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33727, 'Vadeni', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33728, 'Victoria', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33729, 'Visani', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33730, 'Viziru', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33731, 'Zavoaia', 2941, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33732, 'Apata', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33733, 'Beclean', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33734, 'Bod', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33735, 'Bran', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33736, 'Brasov', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33737, 'Budila', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33738, 'Bunesti', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33739, 'Cata', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33740, 'Cincu', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33741, 'Codlea', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33742, 'Comana', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33743, 'Cristian', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33744, 'Dumbravita', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33745, 'Fagaras', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33746, 'Feldioara', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33747, 'Fundata', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33748, 'Ghimbav', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33749, 'Halchiu', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33750, 'Harman', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33751, 'Harseni', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33752, 'Hoghiz', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33753, 'Homorod', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33754, 'Jibert', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33755, 'Lisa', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33756, 'Maierus', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33757, 'Mandra', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33758, 'Moeciu', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33759, 'Ormenis', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33760, 'Parau', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33761, 'Poiana Marului', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33762, 'Predeal', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33763, 'Prejmer', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33764, 'Racos', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33765, 'Rasnov', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33766, 'Recea', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33767, 'Rupea', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33768, 'Sacele', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33769, 'Sanpetru', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33770, 'Sercaia', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33771, 'Sinca', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33772, 'Soars', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33773, 'Tarlungeni', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33774, 'Teliu', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33775, 'Ticusul', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33776, 'Ucea', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33777, 'Ungra', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33778, 'Vama Buzaului', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33779, 'Victoria', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33780, 'Vistea', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33781, 'Voila', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33782, 'Vulcan', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33783, 'Zarnesti', 2942, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33784, 'Bucharest', 2943, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33785, 'Bucuresti', 2943, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33786, 'Amaru', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33787, 'Balaceanu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33788, 'Balta Alba', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33789, 'Beceni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33790, 'Berca', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33791, 'Bisoca', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33792, 'Blajani', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33793, 'Boldu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33794, 'Bozioru', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33795, 'Bradeanu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33796, 'Braesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33797, 'Breaza', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33798, 'Buda', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33799, 'Buzau', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33800, 'Calvini', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33801, 'Canesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33802, 'Catina', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33803, 'Cernatesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33804, 'Chiliile', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33805, 'Chiojdu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33806, 'Cilibia', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33807, 'Cislau', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33808, 'Cochirleanca', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33809, 'Colti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33810, 'Constantin Rosetti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33811, 'Costesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33812, 'Cozieni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33813, 'Galbinasi', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33814, 'Gheraseni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33815, 'Ghergheasa', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33816, 'Glodeanu-Silistea', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33817, 'Glodeanul Sarat', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33818, 'Grebanu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33819, 'Gura Teghii', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33820, 'Largu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33821, 'Lopatari', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33822, 'Luciu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33823, 'Magura', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33824, 'Manzalesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33825, 'Maracineni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33826, 'Margaritesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33827, 'Merei', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33828, 'Mihailesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33829, 'Movila Banului', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33830, 'Murgesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33831, 'Naeni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33832, 'Nehoiu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33833, 'Odaile', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33834, 'Padina', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33835, 'Panatau', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33836, 'Pardosi', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33837, 'Parscov', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33838, 'Patarlagele', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33839, 'Pietroasele', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33840, 'Podgoria', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33841, 'Pogoanele', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33842, 'Posta Calnau', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33843, 'Puiesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33844, 'Racoviteni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33845, 'Ramnicelu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33846, 'Ramnicu Sarat', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33847, 'Robeasca', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33848, 'Rusetu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33849, 'Sageata', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33850, 'Sahateni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33851, 'Sapoca', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33852, 'Sarulesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33853, 'Scortoasa', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33854, 'Scutelnici', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33855, 'Siriu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33856, 'Smeeni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33857, 'Stalpu', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33858, 'Tintesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33859, 'Tisau', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33860, 'Topliceni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33861, 'Ulmeni', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33862, 'Vadu Pasii', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33863, 'Valcelele', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33864, 'Valea Ramnicului', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33865, 'Valea Salciei', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33866, 'Vernesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33867, 'Vintila Voda', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33868, 'Viperesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33869, 'Zarnesti', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33870, 'Ziduri', 2944, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33871, 'Alexandru Odobescu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33872, 'Belciugatele', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33873, 'Borcea', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33874, 'Budesti', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33875, 'Calarasi', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33876, 'Cascioarele', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33877, 'Chirnogi', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33878, 'Chiselet', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33879, 'Ciocanesti', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33880, 'Curcani', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33881, 'Cuza Voda', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33882, 'Dichiseni', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33883, 'Dor Marunt', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33884, 'Dorobantu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33885, 'Dragalina', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33886, 'Dragos Voda', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33887, 'Frasinet', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33888, 'Frumusani', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33889, 'Fundeni', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33890, 'Fundulea', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33891, 'Gradistea', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33892, 'Gurbanesti', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33893, 'Ileana', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33894, 'Independenta', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33895, 'Jegalia', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33896, 'Lehliu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33897, 'Lehliu-Gara', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33898, 'Luica', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33899, 'Lupsanu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33900, 'Manastirea', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33901, 'Mitreni', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33902, 'Modelu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33903, 'Nana', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33904, 'Nicolae Balcescu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33905, 'Oltenita', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33906, 'Perisoru', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33907, 'Plataresti', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33908, 'Radovanu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33909, 'Roseti', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33910, 'Sarulesti', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33911, 'Sohatu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33912, 'Soldanu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33913, 'Spantov', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33914, 'Stefan Voda', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33915, 'Stefan cel Mare', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33916, 'Tamadau Mare', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33917, 'Ulmeni', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33918, 'Ulmu', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33919, 'Unirea', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33920, 'Valcelele', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33921, 'Valea Argovei', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33922, 'Vasilati', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33923, 'Vlad Tepes', 2945, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33924, 'Anina', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33925, 'Armenis', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33926, 'Baile Herculane', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33927, 'Bania', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33928, 'Bautar', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33929, 'Berliste', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33930, 'Berzasca', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33931, 'Berzovia', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33932, 'Bocsa', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33933, 'Bolvasnita', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33934, 'Bozovici', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33935, 'Brebu', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33936, 'Brebu Nou', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33937, 'Buchin', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33938, 'Bucosnita', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33939, 'Caransebes', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33940, 'Carasova', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33941, 'Carbunari', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33942, 'Ciclova Romana', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33943, 'Ciuchici', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33944, 'Ciudanovita', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33945, 'Constantin Daicoviciu', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33946, 'Copacele', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33947, 'Cornea', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33948, 'Cornereva', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33949, 'Coronini', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33950, 'Dalboset', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33951, 'Doclin', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33952, 'Dognecea', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33953, 'Domasnea', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33954, 'Eftimie Murgu', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33955, 'Ezeris', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33956, 'Farliug', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33957, 'Forotic', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33958, 'Garnic', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33959, 'Glimboca', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33960, 'Goruia', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33961, 'Gradinari', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33962, 'Iablanita', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33963, 'Lapusnicel', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33964, 'Lapusnicu Mare', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33965, 'Luncavita', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33966, 'Lupac', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33967, 'Marga', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33968, 'Maureni', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33969, 'Mehadia', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33970, 'Mehadica', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33971, 'Moldova Noua', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33972, 'Naidas', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33973, 'Obreja', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33974, 'Ocna de Fier', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33975, 'Oravita', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33976, 'Otelu Rosu', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33977, 'Paltinis', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33978, 'Pojejena', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33979, 'Prigor', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33980, 'Racasdia', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33981, 'Ramna', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33982, 'Resita', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33983, 'Rusca Montana', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33984, 'Sacu', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33985, 'Sasca Montana', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33986, 'Sichevita', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33987, 'Slatina-Timis', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33988, 'Socol', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33989, 'Sopotu Nou', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33990, 'Tarnova', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33991, 'Teregova', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33992, 'Ticvaniu Mare', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33993, 'Toplet', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33994, 'Turnu Ruieni', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33995, 'Valiug', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33996, 'Varadia', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33997, 'Vermes', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33998, 'Vrani', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(33999, 'Zavoi', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34000, 'Zorlentu Mare', 2946, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34001, 'Aghiresu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34002, 'Aiton', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34003, 'Alunis', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34004, 'Apahida', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34005, 'Aschileu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34006, 'Baciu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34007, 'Baisoara', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34008, 'Belis', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34009, 'Bobalna', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34010, 'Bontida', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34011, 'Borsa', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34012, 'Buza', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34013, 'Caianu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34014, 'Calarasi', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34015, 'Calatele', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34016, 'Camarasu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34017, 'Campia Turzii', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34018, 'Capusu Mare', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34019, 'Caseiu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34020, 'Catcau', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34021, 'Catina', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34022, 'Ceanu Mare', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34023, 'Chinteni', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34024, 'Chiuiesti', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34025, 'Ciucea', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34026, 'Ciurila', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34027, 'Cluj-Napoca', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34028, 'Cojocna', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34029, 'Cornesti', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34030, 'Cuzdrioara', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34031, 'Dabaca', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34032, 'Dej', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34033, 'Feleacu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34034, 'Fizesu Gherlii', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34035, 'Floresti', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34036, 'Frata', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34037, 'Garbau', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34038, 'Geaca', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34039, 'Gherla', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34040, 'Gilau', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34041, 'Huedin', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34042, 'Iara', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34043, 'Iclod', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34044, 'Izvoru Crisului', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34045, 'Jichisu de Jos', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34046, 'Jucu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34047, 'Luna', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34048, 'Maguri-Racatau', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34049, 'Manastireni', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34050, 'Margau', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34051, 'Marisel', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34052, 'Mica', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34053, 'Mihai Viteazu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34054, 'Mintiu Gherlii', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34055, 'Mociu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34056, 'Moldovenesti', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34057, 'Palatca', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34058, 'Panticeu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34059, 'Petrestii de Jos', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34060, 'Ploscos', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34061, 'Poieni', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34062, 'Rasca', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34063, 'Recea Cristur', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34064, 'Sacuieu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34065, 'Sancraiu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34066, 'Sandulesti', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34067, 'Sanmartin', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34068, 'Sanpaul', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34069, 'Savadisla', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34070, 'Sic', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34071, 'Suatu', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34072, 'Taga', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34073, 'Tritenii de Jos', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34074, 'Turda', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34075, 'Tureni', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34076, 'Unguras', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34077, 'Vad', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34078, 'Valea Ierii', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34079, 'Viisoara', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34080, 'Vultureni', 2947, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34081, 'Adamclisi', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34082, 'Agigea', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34083, 'Albesti', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34084, 'Aliman', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34085, 'Amzacea', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34086, 'Baneasa', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34087, 'Basarabi', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34088, 'Castelu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34089, 'Cerchezu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34090, 'Cernavoda', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34091, 'Chirnogeni', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34092, 'Ciobanu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34093, 'Ciocarlia', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(34094, 'Cobadin', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34095, 'Cogealac', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34096, 'Comana', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34097, 'Constanta', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34098, 'Corbu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34099, 'Costinesti', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34100, 'Crucea', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34101, 'Cumpana', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34102, 'Deleni', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34103, 'Dobromir', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34104, 'Douazeci si Trei August', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34105, 'Dumbraveni', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34106, 'Eforie', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34107, 'Garliciu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34108, 'Ghindaresti', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34109, 'Harsova', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34110, 'Horia', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34111, 'Independenta', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34112, 'Ion Corvin', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34113, 'Istria', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34114, 'Limanu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34115, 'Lipnita', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34116, 'Lumina', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34117, 'Mangalia', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34118, 'Medgidia', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34119, 'Mereni', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34120, 'Mihai Viteazu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34121, 'Mihail Kogalniceanu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34122, 'Mircea Voda', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34123, 'Navodari', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34124, 'Negru Voda', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34125, 'Nicolae Balcescu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34126, 'Oltina', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34127, 'Ostrov', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34128, 'Ovidiu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34129, 'Pantelimon', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34130, 'Pecineaga', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34131, 'Pestera', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34132, 'Poarta Alba', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34133, 'Rasova', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34134, 'Sacele', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34135, 'Saraiu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34136, 'Seimeni', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34137, 'Silistea', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34138, 'Targusor', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34139, 'Techirghiol', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34140, 'Topalu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34141, 'Topraisar', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34142, 'Tortoman', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34143, 'Tuzla', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34144, 'Valu lui Traian', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34145, 'Vulturu', 2948, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34146, 'Aita Mare', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34147, 'Baraolt', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34148, 'Barcani', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34149, 'Batani', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34150, 'Belin', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34151, 'Bodoc', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34152, 'Borosneu Mare', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34153, 'Bradut', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34154, 'Brates', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34155, 'Bretcu', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34156, 'Catalina', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34157, 'Cernat', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34158, 'Chichis', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34159, 'Comandau', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34160, 'Covasna', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34161, 'Dobarlau', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34162, 'Ghelinta', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34163, 'Ghidfalau', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34164, 'Haghig', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34165, 'Ilieni', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34166, 'Intorsura Buzaului', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34167, 'Lemnia', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34168, 'Malnas', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34169, 'Moacsa', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34170, 'Ojdula', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34171, 'Ozun', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34172, 'Poian', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34173, 'Reci', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34174, 'Sanzieni', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34175, 'Sfantu Gheorghe', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34176, 'Sita Buzaului', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34177, 'Targu Secuiesc', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34178, 'Turia', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34179, 'Valcele', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34180, 'Valea Crisului', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34181, 'Valea Mare', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34182, 'Varghis', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34183, 'Zabala', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34184, 'Zagon', 2949, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34185, 'Aninoasa', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34186, 'Baleni', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34187, 'Barbuletu', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34188, 'Bezdead', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34189, 'Bilciuresti', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34190, 'Branesti', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34191, 'Branistea', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34192, 'Brezoaiele', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34193, 'Buciumeni', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34194, 'Bucsani', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34195, 'Butimanu', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34196, 'Candesti', 2950, 0.00, 0, '2021-04-06 01:13:49', '2021-04-06 01:13:49', NULL), -(34197, 'Ciocanesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34198, 'Cobia', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34199, 'Cojasca', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34200, 'Comisani', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34201, 'Contesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34202, 'Corbii Mari', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34203, 'Cornatelu', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34204, 'Cornesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34205, 'Costestii din Vale', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34206, 'Crangurile de Sus', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34207, 'Crevedia', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34208, 'Darmanesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34209, 'Dobra', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34210, 'Doicesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34211, 'Dragodana', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34212, 'Dragomiresti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34213, 'Edera de Jos', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34214, 'Fieni', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34215, 'Finta', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34216, 'Gaesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34217, 'Glodeni', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34218, 'Gura Foii', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34219, 'Gura Ocnitei', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34220, 'Gura Sutii', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34221, 'Hulubesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34222, 'Ion luca Caragiale', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34223, 'Lucieni', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34224, 'Ludesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34225, 'Lunguletu', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34226, 'Malu cu Flori', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34227, 'Manesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34228, 'Matasaru', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34229, 'Mogosani', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34230, 'Moreni', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34231, 'Moroeni', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34232, 'Morteni', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34233, 'Motaeni', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34234, 'Niculesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34235, 'Nucet', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34236, 'Ocnita', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34237, 'Odobesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34238, 'Petresti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34239, 'Pietrosita', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34240, 'Poiana', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34241, 'Potlogi', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34242, 'Produlesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34243, 'Pucheni', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34244, 'Pucioasa', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34245, 'Racari', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34246, 'Razvad', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34247, 'Runcu', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34248, 'Salcioara', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34249, 'Selaru', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34250, 'Slobozia Moara', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34251, 'Sotanga', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34252, 'Targoviste', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34253, 'Tartasesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34254, 'Tatarani', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34255, 'Titu', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34256, 'Uliesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34257, 'Ulmi', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34258, 'Vacaresti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34259, 'Valea Lunga', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34260, 'Valea Mare', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34261, 'Valeni-Dambovita', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34262, 'Varfuri', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34263, 'Visina', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34264, 'Visinesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34265, 'Voinesti', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34266, 'Vulcana Bai', 2950, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34267, 'Afumati', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34268, 'Almajiu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34269, 'Amarastii de Jos', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34270, 'Amarastii de Sus', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34271, 'Apele Vii', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34272, 'Argetoaia', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34273, 'Bailesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34274, 'Barca', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34275, 'Bechet', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34276, 'Bistret', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34277, 'Botosesti-Paia', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34278, 'Brabova', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34279, 'Bradesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34280, 'Bralostita', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34281, 'Bratovoesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34282, 'Breasta', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34283, 'Bucovat', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34284, 'Bulzesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34285, 'Calafat', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34286, 'Calarasi', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34287, 'Calopar', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34288, 'Caraula', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34289, 'Carpen', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34290, 'Castra-Nova', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34291, 'Celaru', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34292, 'Ceratu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34293, 'Cernatesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34294, 'Cetate', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34295, 'Cioroiasiu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34296, 'Ciupercenii Noi', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34297, 'Cosoveni', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34298, 'Cotofenii din Dos', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34299, 'Craiova', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34300, 'Dabuleni', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34301, 'Daneti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34302, 'Desa', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34303, 'Diosti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34304, 'Dobresti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34305, 'Dragotesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34306, 'Dranic', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34307, 'Farcasu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34308, 'Filiasi', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34309, 'Galicea Mare', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34310, 'Gangiova', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34311, 'Ghercesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34312, 'Gighera', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34313, 'Giubega', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34314, 'Giurgita', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34315, 'Gogosu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34316, 'Goicea', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34317, 'Goiesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34318, 'Grecesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34319, 'Isalnita', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34320, 'Izvoare', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34321, 'Leu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34322, 'Lipovu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34323, 'Macesu de Jos', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34324, 'Macesu de Sus', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34325, 'Maglavit', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34326, 'Malu Mare', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34327, 'Marsani', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34328, 'Melinesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34329, 'Mischii', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34330, 'Motatei', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34331, 'Murgasi', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34332, 'Negoi', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34333, 'Orodel', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34334, 'Ostroveni', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34335, 'Perisor', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34336, 'Pielesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34337, 'Piscu Vechi', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34338, 'Plenita', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34339, 'Podari', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34340, 'Poiana Mare', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34341, 'Predesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34342, 'Radovan', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34343, 'Rastu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34344, 'Robanesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34345, 'Sadova', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34346, 'Salcuta', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34347, 'Scaesti', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34348, 'Seaca de Camp', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34349, 'Seaca de Padure', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34350, 'Secu', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34351, 'Segarcea', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34352, 'Silistea Crucii', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34353, 'Simnicu de Sus', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34354, 'Sopot', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34355, 'Teasc', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34356, 'Terpezita', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34357, 'Teslui', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34358, 'Tuglui', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34359, 'Unirea', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34360, 'Urzicuta', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34361, 'Valea Stanciului', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34362, 'Vartop', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34363, 'Varvoru', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34364, 'Vela', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34365, 'Verbita', 2951, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34366, 'Balabanesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34367, 'Balasesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34368, 'Baleni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34369, 'Baneasa', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34370, 'Barcea', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34371, 'Beresti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34372, 'Beresti-Sat', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34373, 'Brahasesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34374, 'Branistea', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34375, 'Buciumeni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34376, 'Cavadinesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34377, 'Certesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34378, 'Corni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34379, 'Corod', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34380, 'Cosmesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34381, 'Costache Negri', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34382, 'Cuca', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34383, 'Cudalbi', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34384, 'Draganesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34385, 'Draguseni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34386, 'Fartanesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34387, 'Foltesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34388, 'Frumusita', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34389, 'Fundeni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34390, 'Galati', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34391, 'Ghidigeni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34392, 'Gohor', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34393, 'Grivita', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34394, 'Independenta', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34395, 'Ivesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34396, 'Jorasti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34397, 'Liesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34398, 'Mastacani', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34399, 'Matca', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34400, 'Movileni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34401, 'Munteni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34402, 'Namoloasa', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34403, 'Nicoresti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34404, 'Oancea', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34405, 'Pechea', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34406, 'Piscu', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34407, 'Priponesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34408, 'Rediu', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34409, 'Scanteiesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34410, 'Schela', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34411, 'Sendreni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34412, 'Slobozia-Conachi', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34413, 'Smardan', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34414, 'Smulti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34415, 'Suceveni', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34416, 'Targu Bujor', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34417, 'Tecuci', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34418, 'Tepu', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34419, 'Tudor Vladimirescu', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34420, 'Tulucesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34421, 'Umbraresti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34422, 'Valea Marului', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34423, 'Vanatori', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34424, 'Varlezi', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34425, 'Vladesti', 2952, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34426, 'Adunatii-Copaceni', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34427, 'Baneasa', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34428, 'Bolintin Deal', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34429, 'Bolintinu-din-Vale', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34430, 'Bucsani', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34431, 'Bulbucata', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34432, 'Buturugeni', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34433, 'Calugareni', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34434, 'Clejani', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34435, 'Colibasi', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34436, 'Comana', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34437, 'Crevedia Mare', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34438, 'Daia', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34439, 'Floresti-Stoenesti', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34440, 'Fratesti', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34441, 'Gaiseni', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34442, 'Gaujani', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34443, 'Ghimpati', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34444, 'Giurgiu', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34445, 'Gogosari', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34446, 'Gostinari', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34447, 'Gostinu', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34448, 'Gradinari', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34449, 'Greaca', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34450, 'Hotarele', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34451, 'Iepuresti', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34452, 'Izvoarele', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34453, 'Joita', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34454, 'Letca Noua', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34455, 'Marsa', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34456, 'Mihai Bravu', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34457, 'Mihailesti', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34458, 'Ogrezeni', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34459, 'Oinacu', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34460, 'Prundu', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34461, 'Putineiu', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34462, 'Rasuceni', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34463, 'Roata de Jos', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34464, 'Schitu', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34465, 'Singureni', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34466, 'Slobozia', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34467, 'Stanesti', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34468, 'Stoenesti', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34469, 'Toporu', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34470, 'Ulmi', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34471, 'Valea Dragului', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34472, 'Vanatorii Mici', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34473, 'Varasti', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34474, 'Vedea', 2953, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34475, 'Albeni', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34476, 'Alimpesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34477, 'Aninoasa', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34478, 'Arcani', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34479, 'Baia de Fier', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34480, 'Balanesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34481, 'Balesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34482, 'Balteni', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34483, 'Barbatesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34484, 'Bengesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34485, 'Berlesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34486, 'Bolbosi', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34487, 'Borascu', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34488, 'Branesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34489, 'Bumbesti-Jiu', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34490, 'Bumbesti-Piticu', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34491, 'Bustuchin', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34492, 'Calnic', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34493, 'Capreni', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34494, 'Catunele', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34495, 'Ciuperceni', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34496, 'Crasna', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34497, 'Crusetu', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34498, 'Danciulesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34499, 'Danesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34500, 'Dragotesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34501, 'Dragutesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34502, 'Farcasesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34503, 'Glogova', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34504, 'Godinesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34505, 'Hurezani', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34506, 'Ionesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34507, 'Jupanesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34508, 'Lelesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34509, 'Licuriciu', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34510, 'Logresti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34511, 'Matasari', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34512, 'Motru', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34513, 'Musetesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34514, 'Negomiru', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34515, 'Novaci', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34516, 'Pades', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34517, 'Pestisani', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34518, 'Plopsoru', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34519, 'Polovragi', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34520, 'Prigoria', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34521, 'Rosia de Amaradia', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34522, 'Rovinari', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34523, 'Runcu', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34524, 'Sacelu', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34525, 'Samarinesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34526, 'Saulesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34527, 'Schela', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34528, 'Scoarta', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34529, 'Slivilesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34530, 'Stanesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34531, 'Stejari', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34532, 'Stoina', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34533, 'Tantareni', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34534, 'Targu Carbunesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34535, 'Targu Jiu', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34536, 'Telesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34537, 'Ticleni', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34538, 'Tismana', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34539, 'Turburea', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34540, 'Turceni', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34541, 'Turcinesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34542, 'Urdari', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34543, 'Vagiulesti', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34544, 'Vladimir', 2954, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34545, 'Atid', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34546, 'Avramesti', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34547, 'Baile Tusnad', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34548, 'Balan', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34549, 'Bilbor', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34550, 'Borsec', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34551, 'Bradesti', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34552, 'Capalnita', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34553, 'Carta', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34554, 'Ciucsangeorgiu', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34555, 'Ciumani', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34556, 'Corbu', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34557, 'Corund', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34558, 'Cristuru Secuiesc', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34559, 'Danesti', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34560, 'Darjiu', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34561, 'Dealu', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34562, 'Ditrau', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34563, 'Feliceni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34564, 'Frumoasa', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34565, 'Galautas', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34566, 'Gheorgheni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34567, 'Joseni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34568, 'Lazarea', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34569, 'Lueta', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34570, 'Lunca de Jos', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34571, 'Lunca de Sus', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34572, 'Lupeni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34573, 'Martinis', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34574, 'Meresti', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34575, 'Miercurea-Ciuc', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34576, 'Mihaileni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34577, 'Mugeni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34578, 'Ocland', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34579, 'Odorheiu Secuiesc', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34580, 'Pauleni-Ciuc', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34581, 'Plaiesii-de-Jos', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34582, 'Praid', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34583, 'Remetea', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34584, 'Sacel', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34585, 'Sancraieni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34586, 'Sandominic', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34587, 'Sanmartin', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34588, 'Sansimion', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34589, 'Sarmas', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34590, 'Secuieni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34591, 'Siculeni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34592, 'Simonesti', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34593, 'Subcetate', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34594, 'Suseni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34595, 'Toplita', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34596, 'Tulghes', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34597, 'Tusnad', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34598, 'Ulies', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34599, 'Varsag', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34600, 'Vlahita', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34601, 'Voslobeni', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34602, 'Zetea', 2955, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34603, 'Aninoasa', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34604, 'Bacia', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34605, 'Baia de Cris', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34606, 'Baita', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34607, 'Balsa', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34608, 'Banita', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34609, 'Baru', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34610, 'Batrana', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34611, 'Beriu', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34612, 'Berthelot', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34613, 'Blajeni', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34614, 'Bosorod', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34615, 'Brad', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34616, 'Branisca', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34617, 'Bretea Romana', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34618, 'Buces', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34619, 'Bucuresci', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34620, 'Bulzesti', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34621, 'Bunila', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34622, 'Burjuc', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34623, 'Calan', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34624, 'Carjiti', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34625, 'Cerbal', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34626, 'Certeju de Sus', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34627, 'Criscior', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34628, 'Densus', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34629, 'Deva', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34630, 'Dobra', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34631, 'Geoagiu', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34632, 'Ghelari', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34633, 'Gurasada', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34634, 'Harau', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34635, 'Hateg', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34636, 'Hunedoara', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34637, 'Ilia', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34638, 'Lapugiu de Jos', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34639, 'Lelese', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34640, 'Lunca Cernii de Jos', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34641, 'Luncoiu de Jos', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34642, 'Lupeni', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34643, 'Martinesti', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34644, 'Orastie', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34645, 'Orastioara de Sus', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34646, 'Pestisu Mic', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34647, 'Petrila', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34648, 'Petrosani', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34649, 'Pui', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34650, 'Rachitova', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34651, 'Rapoltu Mare', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34652, 'Rau de Mori', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34653, 'Ribita', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34654, 'Romos', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34655, 'Salasu de Sus', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34656, 'Santamaria Orlea', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34657, 'Sarmizegetusa', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34658, 'Simeria', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34659, 'Soimus', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34660, 'Teliucu Inferior', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34661, 'Tomesti', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34662, 'Toplita', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34663, 'Totesti', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34664, 'Turdas', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34665, 'Uricani', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34666, 'Valisoara', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34667, 'Vata de Jos', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34668, 'Vetel', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34669, 'Vorta', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34670, 'Vulcan', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34671, 'Zam', 2956, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(34672, 'Adancata', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34673, 'Albesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34674, 'Alexeni', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34675, 'Amara', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34676, 'Andrasesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34677, 'Armasesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34678, 'Axintele', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34679, 'Balaciu', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34680, 'Barcanesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34681, 'Bordusani', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34682, 'Brazii', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34683, 'Bucu', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34684, 'Cazanesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34685, 'Ciocarlia', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34686, 'Ciochina', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34687, 'Ciulnita', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34688, 'Cocora', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34689, 'Cosambesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34690, 'Cosereni', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34691, 'Dragoesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34692, 'Dridu', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34693, 'Facaeni', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34694, 'Fetesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34695, 'Fierbinti-Targ', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34696, 'Garbovi', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34697, 'Gheorghe Doja', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34698, 'Gheorghe Lazar', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34699, 'Giurgeni', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34700, 'Grindu', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34701, 'Grivita', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34702, 'Ion Roata', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34703, 'Jilavele', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34704, 'Manasia', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34705, 'Mihail Kogalniceanu', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34706, 'Milosesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34707, 'Movila', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34708, 'Movilita', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34709, 'Munteni Buzau', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34710, 'Perieti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34711, 'Reviga', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34712, 'Salcioara', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34713, 'Saveni', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34714, 'Scanteia', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34715, 'Sfantu Gheorghe', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34716, 'Sinesti', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34717, 'Slobozia', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34718, 'Stelnica', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34719, 'Suditi', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34720, 'Tandarei', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34721, 'Urziceni', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34722, 'Valea Ciorii', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34723, 'Valea Macrisului', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34724, 'Vladeni', 2957, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34725, 'Alexandru Ioan Cuza', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34726, 'Andrieseni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34727, 'Aroneanu', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34728, 'Baltati', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34729, 'Barnova', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34730, 'Belcesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34731, 'Bivolari', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34732, 'Braesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34733, 'Butea', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34734, 'Ceplenita', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34735, 'Ciortesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34736, 'Ciurea', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34737, 'Coarnele Caprei', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34738, 'Comarna', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34739, 'Costuleni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34740, 'Cotnari', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34741, 'Cozmesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34742, 'Cristesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34743, 'Cucuteni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34744, 'Dagata', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34745, 'Deleni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34746, 'Dobrovat', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34747, 'Dolhesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34748, 'Dumesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34749, 'Erbiceni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34750, 'Focuri', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34751, 'Golaesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34752, 'Gorban', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34753, 'Grajduri', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34754, 'Gropnita', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34755, 'Grozesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34756, 'Halaucesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34757, 'Harlau', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34758, 'Helesteni Harmaneasa', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34759, 'Holboca', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34760, 'Horlesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34761, 'Iasi', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34762, 'Ipatele', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34763, 'Lespezi', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34764, 'Letcani', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34765, 'Lungani', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34766, 'Madarjac', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34767, 'Mircesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34768, 'Mironeasa', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34769, 'Miroslava', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34770, 'Miroslovesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34771, 'Mogosesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34772, 'Mogosesti-Siret', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34773, 'Mosna', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34774, 'Motca', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34775, 'Movileni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34776, 'Oteleni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34777, 'Pascani', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34778, 'Plugari', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34779, 'Podu Iloaiei', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34780, 'Popesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34781, 'Popricani', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34782, 'Prisacani', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34783, 'Probota', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34784, 'Raducaneni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34785, 'Rediu', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34786, 'Romanesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34787, 'Ruginoasa', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34788, 'Scanteia', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34789, 'Scheia', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34790, 'Schitu-Duca', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34791, 'Scobinti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34792, 'Sinesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34793, 'Sipote', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34794, 'Siretel', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34795, 'Stolniceni-Prajescu', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34796, 'Strunga', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34797, 'Tansa', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34798, 'Targu Gangiulesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34799, 'Tatarusi', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34800, 'Tibana', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34801, 'Tibanesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34802, 'Tiganasi', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34803, 'Todiresti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34804, 'Tomesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34805, 'Trifesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34806, 'Tutora', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34807, 'Ungheni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34808, 'Valea Seaca', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34809, 'Vanatori', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34810, 'Victoria', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34811, 'Vladeni', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34812, 'Voinesti', 2958, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34813, 'Afumati', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34814, 'Balotesti', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34815, 'Berceni', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34816, 'Bragadiru', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34817, 'Branesti', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34818, 'Buftea', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34819, 'Cernica', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34820, 'Chiajna', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34821, 'Chitila', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34822, 'Ciolpani', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34823, 'Ciorogarla', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34824, 'Clinceni', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34825, 'Corbeanca', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34826, 'Cornetu', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34827, 'Darasti-Ilfov', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34828, 'Dascalu', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34829, 'Dobroesti', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34830, 'Domnesti', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34831, 'Dragomiresti-Vale', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34832, 'Ganeasa', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34833, 'Glina', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34834, 'Gradistea', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34835, 'Gruiu', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34836, 'Jilava', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34837, 'Magurele', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34838, 'Moara Vlasiei', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34839, 'Mogosoaia', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34840, 'Nuci', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34841, 'Otopeni', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34842, 'Pantelimon', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34843, 'Peris', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34844, 'Petrachioaia', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34845, 'Popesti-Leordeni', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34846, 'Prim Decembrie', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34847, 'Snagov', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34848, 'Stefanestii de Jos', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34849, 'Tunari', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34850, 'Vidra', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34851, 'Voluntari', 2959, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34852, 'Ardusat', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34853, 'Arinis', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34854, 'Asuaju de Sus', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34855, 'Baia Mare', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34856, 'Baia-Sprie', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34857, 'Baita de sub Codru', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34858, 'Baiut', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34859, 'Barsana', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34860, 'Basesti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34861, 'Bicaz', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34862, 'Bistra', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34863, 'Bocicoiu Mare', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34864, 'Bogdan Voda', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34865, 'Boiu Mare', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34866, 'Borsa', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34867, 'Botiza', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34868, 'Budesti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34869, 'Calinesti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34870, 'Campulung la Tisa', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34871, 'Cavnic', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34872, 'Cernesti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34873, 'Cicarlau', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34874, 'Copalnic Manastur', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34875, 'Coroieni', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34876, 'Cupseni', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34877, 'Desesti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34878, 'Dragomiresti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34879, 'Dumbravita', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34880, 'Farcasa', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34881, 'Giulesti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34882, 'Grosi', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34883, 'Ieud', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34884, 'Lapus', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34885, 'Leordina', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34886, 'Miresu Mare', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34887, 'Moisei', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34888, 'Oarta de Jos', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34889, 'Ocna Sugatag', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34890, 'Petrova', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34891, 'Poienile Izei', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34892, 'Poienile de sub Munte', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34893, 'Recea', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34894, 'Remetea Chioarului', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34895, 'Remeti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34896, 'Repedea', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34897, 'Rona de Jos', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34898, 'Rona de Sus', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34899, 'Rozavlea', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34900, 'Ruscova', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34901, 'Sacalaseni', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34902, 'Sacel', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34903, 'Salistea de Sus', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34904, 'Salsig', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34905, 'Sapanta', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34906, 'Sarasau', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34907, 'Sasar', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34908, 'Satulung', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34909, 'Seini', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34910, 'Sighetu Marmatiei', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34911, 'Sisesti', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34912, 'Somcuta Mare', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34913, 'Stramtura', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34914, 'Suciu de Sus', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34915, 'Targu-Lapus', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34916, 'Tautii Margheraus', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34917, 'Ulmeni', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34918, 'Vadu Izei', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34919, 'Valea Chioarului', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34920, 'Vima Mica', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34921, 'Viseu de Jos', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34922, 'Viseu de Sus', 2960, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34923, 'Baclesu', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34924, 'Baia de Arama', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34925, 'Bala', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34926, 'Balacita', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34927, 'Balta', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34928, 'Balvanesti', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34929, 'Breznita Ocol', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34930, 'Breznita-Motru', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34931, 'Brosteni', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34932, 'Burila Mare', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34933, 'Butoiesti', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34934, 'Cazanesti', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34935, 'Ciresu', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34936, 'Corcova', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34937, 'Corlatel', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34938, 'Cujmir', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34939, 'Darvari', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34940, 'Devesel', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34941, 'Drobeta-Turnu Severin', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34942, 'Dubova', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34943, 'Dumbrava', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34944, 'Eselnita', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34945, 'Floresti', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34946, 'Garla Mare', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34947, 'Godeanu', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34948, 'Gogosu', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34949, 'Greci', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34950, 'Grozesti', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34951, 'Gruia', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34952, 'Hinova', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34953, 'Husnicioara', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34954, 'Ilovat', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34955, 'Ilovita', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34956, 'Isverna', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34957, 'Izvoru Barzii', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34958, 'Jiana', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34959, 'Livezile', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34960, 'Malovat', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34961, 'Obarsia Noua', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34962, 'Obarsia-Closani', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34963, 'Oprisor', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34964, 'Orsova', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34965, 'Padina', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34966, 'Patulele', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34967, 'Podeni', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34968, 'Ponoarele', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34969, 'Poroina Mare', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34970, 'Pristol', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34971, 'Prunisor', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34972, 'Punghina', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34973, 'Rogova', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34974, 'Salcia', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34975, 'Simian', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34976, 'Sisesti', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34977, 'Sovarna', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34978, 'Stangaceaua', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34979, 'Strehaia', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34980, 'Svinita', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34981, 'Tamna', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34982, 'Vanatori', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34983, 'Vanju Mare', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34984, 'Vanjulet', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34985, 'Vladaia', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34986, 'Voloiac', 2961, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34987, 'Acatari', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34988, 'Adamus', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34989, 'Albesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34990, 'Alunis', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34991, 'Apold', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34992, 'Atintis', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34993, 'Bagaciu', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34994, 'Bahnea', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34995, 'Bala', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34996, 'Balauseri', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34997, 'Band', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34998, 'Batos', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(34999, 'Beica de Jos', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35000, 'Bichis', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35001, 'Bogata', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35002, 'Brancovenesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35003, 'Breaza', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35004, 'Ceuasul-de Campie', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35005, 'Chetani', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35006, 'Chiheru de Jos', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35007, 'Coroisanmartin', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35008, 'Cozma', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35009, 'Craciunesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35010, 'Craiesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35011, 'Cristesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35012, 'Cucerdea', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35013, 'Cuci', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35014, 'Danes', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35015, 'Deda', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35016, 'Eremitu', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35017, 'Ernei', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35018, 'Fantanele', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35019, 'Faragau', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35020, 'Galesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35021, 'Ganesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35022, 'Gheorghe Doja', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35023, 'Ghindari', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35024, 'Glodeni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35025, 'Gornesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35026, 'Grebenisu de Campie', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35027, 'Gurghiu', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35028, 'Hodac', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35029, 'Hodosa', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35030, 'Ibanesti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35031, 'Iclanzel', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35032, 'Ideciu de Jos', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35033, 'Iernut', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35034, 'Livezeni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35035, 'Ludus', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35036, 'Lunca', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35037, 'Lunca Bradului', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35038, 'Magherani', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35039, 'Mica', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35040, 'Miercurea Nirajului', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35041, 'Mihesu de Campie', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35042, 'Nades', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35043, 'Neaua', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35044, 'Ogra', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35045, 'Panet', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35046, 'Papiu Ilarian', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35047, 'Pasareni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35048, 'Petelea', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35049, 'Pogaceaua', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35050, 'Raciu', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35051, 'Rastolita', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35052, 'Reghin', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35053, 'Rusii Munti', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35054, 'Sancraiul-de-Mures', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35055, 'Sangeorg-de Mures', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35056, 'Sangeorgiu-de-Padure', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35057, 'Sanger', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35058, 'Sanpaul', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35059, 'Sanpetru-de-Campie', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35060, 'Santana-de-Mures', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35061, 'Sarmasu', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35062, 'Saschiz', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35063, 'Saulia', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35064, 'Sighisoara', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35065, 'Sincai', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35066, 'Solovastru', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35067, 'Sovata', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35068, 'Stanceni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35069, 'Suplac', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35070, 'Suseni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35071, 'Targu-Mures', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35072, 'Tarnaveni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35073, 'Taureni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35074, 'Ungheni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35075, 'Valea Larga', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35076, 'Vanatori', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35077, 'Vargata', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35078, 'Vatava', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35079, 'Vetca', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35080, 'Viisoara', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35081, 'Voivodeni', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35082, 'Zagar', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35083, 'Zau de Campie', 2962, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35084, 'Agapia', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35085, 'Bahna', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35086, 'Baltatesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35087, 'Bara', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35088, 'Bargaoani', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35089, 'Bicaz', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35090, 'Bicaz Chei', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35091, 'Bicazu Ardelean', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35092, 'Bodesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35093, 'Borca', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35094, 'Borlesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35095, 'Botesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35096, 'Bozieni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35097, 'Brusturi-Draganesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35098, 'Candesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35099, 'Ceahlau', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35100, 'Cordun', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35101, 'Costisa', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35102, 'Cracaoani', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35103, 'Damuc', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35104, 'Dobreni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35105, 'Doljesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35106, 'Dragomiresti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35107, 'Dulcesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35108, 'Dumbrava Rosie', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35109, 'Farcasa', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35110, 'Faurei', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35111, 'Garcina', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35112, 'Gheraesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35113, 'Girov', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35114, 'Grinties', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35115, 'Grumazesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35116, 'Hangu', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35117, 'Horia', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35118, 'Icusesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35119, 'Ion Creanga', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35120, 'Margineni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35121, 'Moldoveni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35122, 'Oniceni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35123, 'Pangarati', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35124, 'Pastraveni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35125, 'Petricani', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35126, 'Piatra Neamt', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35127, 'Piatra Soimului', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35128, 'Pipirig', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35129, 'Podoleni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35130, 'Poiana Teiului', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35131, 'Poienari', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35132, 'Raucesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35133, 'Razboieni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35134, 'Rediu', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35135, 'Roman', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35136, 'Romani', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35137, 'Roznov', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35138, 'Sabaoani', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35139, 'Sagna', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35140, 'Savinesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35141, 'Secuieni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35142, 'Stanita', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35143, 'Stefan cel Mare', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35144, 'Tamaseni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35145, 'Tarcau', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35146, 'Targu-Neamt', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35147, 'Tasca', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35148, 'Tazlau', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35149, 'Tibucani', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35150, 'Timisesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35151, 'Trifesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35152, 'Tupilati', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35153, 'Urecheni', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35154, 'Valea Ursului', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35155, 'Vanatori-Neamt', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35156, 'Viisoara', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35157, 'Zanesti', 2963, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35158, 'Babiciu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35159, 'Baldovinesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35160, 'Bals', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35161, 'Barasti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35162, 'Barza', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35163, 'Bobicesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35164, 'Brancoveni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35165, 'Brastavatu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35166, 'Brebeni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35167, 'Bucinisu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35168, 'Caracal', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35169, 'Carlogani', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35170, 'Cezieni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35171, 'Cilieni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35172, 'Colonesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35173, 'Corabia', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35174, 'Corbu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35175, 'Coteana', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35176, 'Crampoaia', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35177, 'Cungrea', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35178, 'Curtisoara', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35179, 'Daneasa', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35180, 'Deveselu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35181, 'Dobretu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35182, 'Dobrosloveni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35183, 'Dobroteasa', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35184, 'Dobrun', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35185, 'Draganesti-Olt', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35186, 'Draghiceni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35187, 'Fagetelu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35188, 'Falcoiu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35189, 'Farcasele', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35190, 'Ganeasa', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35191, 'Garcovu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35192, 'Giuvarasti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35193, 'Gostavatu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35194, 'Gradinari', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35195, 'Grojdibodu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35196, 'Ianca', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35197, 'Iancu Jianu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35198, 'Icoana', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35199, 'Izbiceni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35200, 'Izvoarele', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35201, 'Leleasca', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35202, 'Maruntei', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35203, 'Mihaesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35204, 'Milcov', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35205, 'Morunglav', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35206, 'Movileni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35207, 'Nicolae Titulescu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35208, 'Obarsia', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35209, 'Oboga', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35210, 'Oporelu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35211, 'Optasi', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35212, 'Orlea', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35213, 'Osica de Sus', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35214, 'Parscoveni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35215, 'Perieti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35216, 'Piatra Olt', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35217, 'Plesoiu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35218, 'Poboru', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35219, 'Potcoava', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35220, 'Priseaca', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35221, 'Radomiresti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35222, 'Redea', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35223, 'Rotunda', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35224, 'Rusanesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35225, 'Samburesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35226, 'Scarisoara', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35227, 'Schitu', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35228, 'Scornicesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35229, 'Seaca', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35230, 'Serbanesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35231, 'Slatina', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35232, 'Slatioara', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35233, 'Spineni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35234, 'Sprancenata', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35235, 'Stefan cel Mare', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35236, 'Stoenesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35237, 'Stoicanesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35238, 'Strejesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35239, 'Studina', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35240, 'Tatulesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35241, 'Teslui', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35242, 'Tia Mare', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35243, 'Topana', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35244, 'Traian', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35245, 'Tufeni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35246, 'Urzica', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35247, 'Vadastra', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(35248, 'Vadastrita', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35249, 'Valcele', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35250, 'Valea Mare', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35251, 'Valeni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35252, 'Verguleasa', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35253, 'Visina', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35254, 'Vitomiresti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35255, 'Vladila', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35256, 'Voineasa', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35257, 'Vulpeni', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35258, 'Vulturesti', 2964, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35259, 'Adunati', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35260, 'Albesti-Paleologu', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35261, 'Alunis', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35262, 'Apostolache', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35263, 'Aricestii-Rahtivani', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35264, 'Aricestii-Zeletin', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35265, 'Azuga', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35266, 'Baba Ana', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35267, 'Baicoi', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35268, 'Balta Doamnei', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35269, 'Baltesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35270, 'Banesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35271, 'Barcanesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35272, 'Berceni', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35273, 'Bertea', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35274, 'Blejoi', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35275, 'Boldesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35276, 'Boldesti-Scaeni', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35277, 'Brazi', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35278, 'Breaza', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35279, 'Brebu', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35280, 'Bucov', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35281, 'Busteni', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35282, 'Calugareni', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35283, 'Campina', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35284, 'Carbunesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35285, 'Ceptura', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35286, 'Cerasu', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35287, 'Chiojdeanca', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35288, 'Ciorani', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35289, 'Cocorastii-Misli', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35290, 'Colceag', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35291, 'Comarnic', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35292, 'Cornu', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35293, 'Cosminele', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35294, 'Doftana', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35295, 'Draganesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35296, 'Drajna', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35297, 'Dumbrava', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35298, 'Dumbravesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35299, 'Fantanele', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35300, 'Filipestii de Padure', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35301, 'Filipestii de Targ', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35302, 'Floresti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35303, 'Fulga', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35304, 'Gherghita', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35305, 'Gorgota', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35306, 'Gornet', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35307, 'Gornet-Cricov', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35308, 'Gura Vadului', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35309, 'Gura Vitioarei', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35310, 'Iordacheanu', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35311, 'Izvoarele', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35312, 'Jugureni', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35313, 'Lapos', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35314, 'Lipanesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35315, 'Magurele', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35316, 'Magureni', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35317, 'Maneciu', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35318, 'Manesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35319, 'Mizil', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35320, 'Pacureti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35321, 'Paulesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35322, 'Ploiesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35323, 'Plopeni', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35324, 'Plopu', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35325, 'Podenii Noi', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35326, 'Poenarii-Burchi', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35327, 'Poiana Campina', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35328, 'Posesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35329, 'Predeal-Sarari', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35330, 'Provita de Jos', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35331, 'Provita de Sus', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35332, 'Puchenii Mari', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35333, 'Rafov', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35334, 'Salcia', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35335, 'Salciile', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35336, 'Sangeru', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35337, 'Scorteni', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35338, 'Secaria', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35339, 'Sinaia', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35340, 'Sirna', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35341, 'Slanic', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35342, 'Soimari', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35343, 'Sotrile', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35344, 'Starchiojd', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35345, 'Stefesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35346, 'Surani', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35347, 'Talea', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35348, 'Targsorul-Vechi', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35349, 'Tataru', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35350, 'Teisani', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35351, 'Telega', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35352, 'Tinosu', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35353, 'Tomsani', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35354, 'Urlati', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35355, 'Valcanesti', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35356, 'Valea Calugareasca', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35357, 'Valenii de Munte', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35358, 'Varbilau', 2965, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35359, 'Agrij', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35360, 'Almasu', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35361, 'Babeni', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35362, 'Balan', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35363, 'Banisor', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35364, 'Benesat', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35365, 'Bobota', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35366, 'Bocsa', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35367, 'Buciumi', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35368, 'Camar', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35369, 'Carastelec', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35370, 'Cehu Silvaniei', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35371, 'Chiesd', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35372, 'Cizer', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35373, 'Coseiu', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35374, 'Crasna', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35375, 'Creaca', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35376, 'Criseni', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35377, 'Cristolt', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35378, 'Cuzaplac', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35379, 'Dobrin', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35380, 'Dragu', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35381, 'Fildu de Jos', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35382, 'Galgau', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35383, 'Garbou', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35384, 'Halmasd', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35385, 'Hereclean', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35386, 'Hida', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35387, 'Horoatu Crasnei', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35388, 'Ileanda', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35389, 'Ip', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35390, 'Jibou', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35391, 'Letca', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35392, 'Lozna', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35393, 'Maeriste', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35394, 'Marca', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35395, 'Mesesenii de Jos', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35396, 'Mirsid', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35397, 'Napradea', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35398, 'Nusfalau', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35399, 'Periceiu', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35400, 'Plopis', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35401, 'Poiana Blenchii', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35402, 'Romanasi', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35403, 'Rus', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35404, 'Sag', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35405, 'Salatig', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35406, 'Samsud', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35407, 'Sanmihaiul-Almasului', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35408, 'Sarmasag', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35409, 'Simleu Silvaniei', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35410, 'Somes-Odorhei', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35411, 'Surduc', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35412, 'Treznea', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35413, 'Valcau de Jos', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35414, 'Varsolt', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35415, 'Zalau', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35416, 'Zalha', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35417, 'Zimbor', 2966, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35418, 'Agnita', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35419, 'Altina', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35420, 'Apoldu de Jos', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35421, 'Arpasu de Jos', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35422, 'Atel', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35423, 'Avrig', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35424, 'Axente Sever', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35425, 'Barghis', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35426, 'Bazna', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35427, 'Biertan', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35428, 'Blajel', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35429, 'Bradeni', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35430, 'Brateiu', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35431, 'Bruiu', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35432, 'Carta', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35433, 'Cartisoara', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35434, 'Chirpar', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35435, 'Cisnadie', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35436, 'Copsa Mica', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35437, 'Cristian', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35438, 'Darlos', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35439, 'Dumbraveni', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35440, 'Gura Raului', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35441, 'Hoghilag', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35442, 'Iacobeni', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35443, 'Jina', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35444, 'Laslea', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35445, 'Loamnes', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35446, 'Ludos', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35447, 'Marpod', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35448, 'Medias', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35449, 'Merghindeal', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35450, 'Micasasa', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35451, 'Miercurea Sibiului', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35452, 'Mihaileni', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35453, 'Mosna', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35454, 'Nocrich', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35455, 'Ocna Sibiului', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35456, 'Orlat', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35457, 'Pauca', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35458, 'Poiana Sibiului', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35459, 'Poplaca', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35460, 'Porumbacu de Jos', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35461, 'Racovita', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35462, 'Rasinari', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35463, 'Rau Sadului', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35464, 'Rosia', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35465, 'Sadu', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35466, 'Saliste', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35467, 'Seica Mare', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35468, 'Seica Mica', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35469, 'Selimbar', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35470, 'Sibiu', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35471, 'Slimnic', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35472, 'Sura Mare', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35473, 'Sura Mica', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35474, 'Talmaciu', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35475, 'Tarnava', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35476, 'Tilisca', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35477, 'Turnu Rosu', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35478, 'Valea Viilor', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35479, 'Vurpar', 2968, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35480, 'Sondelor', 2969, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35481, 'Adancata', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35482, 'Arbore', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35483, 'Baia', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35484, 'Balcauti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35485, 'Bilca', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35486, 'Bogdanesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35487, 'Boroaia', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35488, 'Bosanci', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35489, 'Botosana', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35490, 'Breaza', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35491, 'Brodina', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35492, 'Brosteni', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35493, 'Bunesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35494, 'Cacica', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35495, 'Cajvana', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35496, 'Calafindesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35497, 'Campulung Moldovenesc', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35498, 'Carlibaba', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35499, 'Ciprian Porumbescu', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35500, 'Cornu Luncii', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35501, 'Crucea', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35502, 'Darmanesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35503, 'Dolhasca', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35504, 'Dolhesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35505, 'Dorna', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35506, 'Dorna Candrenilor', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35507, 'Dornesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35508, 'Dragoesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35509, 'Draguseni', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35510, 'Dumbraveni', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35511, 'Falticeni', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35512, 'Fantanele', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35513, 'Forasti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35514, 'Frasin', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35515, 'Fratautii Noi', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35516, 'Fratautii Vechi', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35517, 'Frumosu', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35518, 'Fundu Moldovei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35519, 'Galanesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35520, 'Gramesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35521, 'Granicesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35522, 'Gura Humorului', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35523, 'Horodniceni', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35524, 'Horodnicu', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35525, 'Iacobeni', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35526, 'Ipotesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35527, 'Izvoarele Sucevei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35528, 'Liteni', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35529, 'Malini', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35530, 'Manastirea Homorului', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35531, 'Marginea', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35532, 'Milisauti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35533, 'Mitocu Dragomirnei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35534, 'Moara', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35535, 'Moldova Sulita', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35536, 'Moldovita', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35537, 'Musenita', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35538, 'Ostra', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35539, 'Paltinoasa', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35540, 'Panaci', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35541, 'Partestii de Jos', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35542, 'Patrauti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35543, 'Poiana Stampei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35544, 'Pojorata', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35545, 'Preutesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35546, 'Putna', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35547, 'Radaseni', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35548, 'Radauti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35549, 'Rasca', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35550, 'Sadova', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35551, 'Salcea', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35552, 'Saru Dornei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35553, 'Satu Mare', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35554, 'Scheia', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35555, 'Siminicea', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35556, 'Siret', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35557, 'Slatina', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35558, 'Solca', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35559, 'Straja', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35560, 'Stroiesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35561, 'Stulpicani', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35562, 'Suceava', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35563, 'Sucevita', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35564, 'Todiresti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35565, 'Udesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35566, 'Ulma', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35567, 'Vadu Moldovei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35568, 'Valea Moldovei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35569, 'Vama', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35570, 'Vatra Dornei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35571, 'Vatra Moldovitei', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35572, 'Veresti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35573, 'Vicovu de Jos', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35574, 'Vicovu de Sus', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35575, 'Volovat', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35576, 'Vulturesti', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35577, 'Zamostea', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35578, 'Zvoristea', 2970, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35579, 'Alexandria', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35580, 'Babaita', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35581, 'Balaci', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35582, 'Blejesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35583, 'Bogdana', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35584, 'Botoroaga', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35585, 'Bragadiru', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35586, 'Branceni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35587, 'Bujoreni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35588, 'Bujoru', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35589, 'Buzescu', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35590, 'Calinesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35591, 'Calmatuiu', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35592, 'Cervenia', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35593, 'Ciolanesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35594, 'Ciuperceni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35595, 'Contesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35596, 'Cosmesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35597, 'Crangeni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35598, 'Crangu', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35599, 'Crevenicu', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35600, 'Didesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35601, 'Dobrotesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35602, 'Dracsenei', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35603, 'Draganesti de Vede', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35604, 'Draganesti-Vlasca', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35605, 'Frumoasa', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35606, 'Furculesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35607, 'Galateni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35608, 'Gratia', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35609, 'Islaz', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35610, 'Izvoarele', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35611, 'Lisa', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35612, 'Lita', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35613, 'Lunca', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35614, 'Magura', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35615, 'Maldaeni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35616, 'Marzanesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35617, 'Mavrodin', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35618, 'Mereni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35619, 'Mosteni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35620, 'Nanov', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35621, 'Nasturelu', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35622, 'Necsesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35623, 'Olteni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35624, 'Orbeasca', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35625, 'Peretu', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35626, 'Piatra', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35627, 'Pietrosani', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35628, 'Plopii Slavitesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35629, 'Plosca', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35630, 'Poeni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35631, 'Poroschia', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35632, 'Putineiu', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35633, 'Radoiesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35634, 'Rasmiresti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35635, 'Rosiori de Vede', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35636, 'Saceni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35637, 'Salcia', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35638, 'Sarbeni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35639, 'Scrioastea', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35640, 'Scurtu Mare', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35641, 'Seaca', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35642, 'Segarcea Vale', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35643, 'Sfintesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35644, 'Silistea', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35645, 'Silistea-Gumesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35646, 'Slobozia-Mandra', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35647, 'Smardioasa', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35648, 'Stejaru', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35649, 'Storobaneasa', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35650, 'Suhaia', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35651, 'Talpa', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35652, 'Tatarastii de Jos', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35653, 'Tatarastii de Sus', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35654, 'Tiganesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35655, 'Traian', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35656, 'Trivalea-Mosteni', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35657, 'Troianul', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35658, 'Turnu Magurele', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35659, 'Vartoapele-de-Jos', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35660, 'Vedea', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35661, 'Videle', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35662, 'Viisoara', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35663, 'Vitanesti', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35664, 'Zambreasca', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35665, 'Zimnicea', 2971, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35666, 'Balint', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35667, 'Banloc', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35668, 'Bara', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35669, 'Barna', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35670, 'Beba Veche', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35671, 'Becicherecu Mic', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35672, 'Belint', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35673, 'Bethausen', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35674, 'Biled', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35675, 'Bogda', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35676, 'Boldur', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35677, 'Brestovat', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35678, 'Buzias', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35679, 'Carpinis', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35680, 'Cenad', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35681, 'Cenei', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35682, 'Cheveresu Mare', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35683, 'Ciacova', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35684, 'Comlosu Mare', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35685, 'Costeiu', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35686, 'Criciova', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35687, 'Curtea', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35688, 'Darova', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35689, 'Denta', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35690, 'Deta', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35691, 'Dudestii Vechi', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35692, 'Dumbrava', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35693, 'Dumbravita', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35694, 'Faget', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35695, 'Fardea', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35696, 'Foeni', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35697, 'Gataia', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35698, 'Gavojdia', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35699, 'Ghiroda', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35700, 'Ghizela', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35701, 'Giarmata', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35702, 'Giera', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35703, 'Giroc', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35704, 'Giulvaz', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35705, 'Jamu Mare', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35706, 'Jebel', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35707, 'Jimbolia', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35708, 'Lenauheim', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35709, 'Liebling', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35710, 'Lovrin', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35711, 'Lugoj', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35712, 'Manastiur', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35713, 'Margina', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35714, 'Masloc', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35715, 'Moravita', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35716, 'Mosnita Noua', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35717, 'Nadrag', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35718, 'Nitchidorf', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35719, 'Ohaba Lunga', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35720, 'Ortisoara', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35721, 'Peciu Nou', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35722, 'Periam', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35723, 'Pietroasa', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35724, 'Pischia', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35725, 'Racovita', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35726, 'Recas', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35727, 'Remetea Mare', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35728, 'Sacalaz', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35729, 'Sacosu Turcesc', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35730, 'Sag', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35731, 'Sanandrei', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35732, 'Sanmihaiu Roman', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35733, 'Sannicolaul Mare', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35734, 'Sanpetrul-Mare', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35735, 'Satchinez', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35736, 'Secas', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35737, 'Stiuca', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35738, 'Teremia Mare', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35739, 'Timisoara', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35740, 'Tomesti', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35741, 'Topolovatu Mare', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35742, 'Tormac', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35743, 'Traian Vuia', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35744, 'Uivar', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35745, 'Varias', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35746, 'Victor Vlad Delamarina', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35747, 'Voiteg', 2972, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35748, 'Babadag', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35749, 'Baia', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35750, 'Beidaud', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35751, 'Carcaliu', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35752, 'Casimcea', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35753, 'Ceamurlia de Jos', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35754, 'Ceatalchioi', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35755, 'Cerna', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35756, 'Chilia Veche', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35757, 'Ciucurova', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35758, 'Constantin Rosetti', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35759, 'Crisan', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35760, 'Daeni', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35761, 'Dorobantu', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35762, 'Frecatei', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35763, 'Greci', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35764, 'Grindu', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35765, 'Hamcearca', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35766, 'Horia', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35767, 'Ion Bratianu', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35768, 'Isaccea', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35769, 'Izvoarele', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35770, 'Jijila', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35771, 'Jurilovca', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35772, 'Luncavita', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35773, 'Macin', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35774, 'Mahmudia', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35775, 'Malnas', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35776, 'Mihai Bravu', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35777, 'Mihail Kogalniceanu', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35778, 'Murighiol', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35779, 'Nalbant', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35780, 'Niculitel', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35781, 'Nufaru', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35782, 'Ostrov', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35783, 'Pardina', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35784, 'Peceneaga', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35785, 'Sarichioi', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35786, 'Sfantu Gheorghe', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35787, 'Slava Cercheza', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35788, 'Smardan', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35789, 'Somova', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35790, 'Stejaru', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35791, 'Sulina', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35792, 'Topolog', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35793, 'Tulcea', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35794, 'Turcoaia', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35795, 'Valea Nucarilor', 2973, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35796, 'Alunu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35797, 'Amarasti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35798, 'Babeni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35799, 'Baile Govora', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35800, 'Baile Olanesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35801, 'Balcesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35802, 'Barbatesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35803, 'Berbesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35804, 'Berislavesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35805, 'Boisoara', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35806, 'Brezoi', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35807, 'Budesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35808, 'Bujoreni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35809, 'Bunesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35810, 'Caineni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35811, 'Calimanesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35812, 'Cernisoara', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35813, 'Copaceni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35814, 'Costesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35815, 'Creteni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35816, 'Daesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35817, 'Danicei', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35818, 'Dragasani', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35819, 'Dragoesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35820, 'Fartatesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35821, 'Fauresti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35822, 'Francesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35823, 'Galicea', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(35824, 'Ghioroiu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35825, 'Glavile', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35826, 'Golesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35827, 'Gradistea', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35828, 'Gusoeni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35829, 'Horezu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35830, 'Ionesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35831, 'Ladesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35832, 'Lalosu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35833, 'Lapusata', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35834, 'Livezi', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35835, 'Lungesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35836, 'Maciuca', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35837, 'Madulari', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35838, 'Malaia', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35839, 'Maldaresti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35840, 'Mateesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35841, 'Mihaesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35842, 'Milcoiu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35843, 'Muereasca', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35844, 'Nicolae Balcescu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35845, 'Ocnele Mari', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35846, 'Olanu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35847, 'Orlesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35848, 'Otesani', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35849, 'Pausesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35850, 'Pausesti-Maglasi', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35851, 'Perisani', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35852, 'Pesceana', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35853, 'Pietrari', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35854, 'Popesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35855, 'Prundeni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35856, 'Racovita', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35857, 'Ramnicu Valcea', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35858, 'Roesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35859, 'Rosiile', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35860, 'Runcu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35861, 'Salatrucel', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35862, 'Scundu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35863, 'Sinesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35864, 'Sirineasa', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35865, 'Slatioara', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35866, 'Stanesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35867, 'Stefanesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35868, 'Stoenesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35869, 'Stoilesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35870, 'Stroesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35871, 'Susani', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35872, 'Sutesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35873, 'Tetoiu', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35874, 'Tomsani', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35875, 'Vaideeni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35876, 'Valea Mare', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35877, 'Vladesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35878, 'Voicesti', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35879, 'Voineasa', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35880, 'Zatreni', 2974, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35881, 'Albesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35882, 'Alexandru Vlahuta', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35883, 'Arsura', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35884, 'Bacani', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35885, 'Bacesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35886, 'Balteni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35887, 'Banca', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35888, 'Barlad', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35889, 'Berezeni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35890, 'Blagesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35891, 'Bogdana', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35892, 'Bogdanesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35893, 'Bogdanita', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35894, 'Botesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35895, 'Bunesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35896, 'Codaesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35897, 'Coroiesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35898, 'Costesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35899, 'Cretesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35900, 'Danesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35901, 'Deleni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35902, 'Delesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35903, 'Dimitrie Cantemir', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35904, 'Dragomiresti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35905, 'Dranceni Sat', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35906, 'Duda', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35907, 'Dumesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35908, 'Epureni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35909, 'Falciu', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35910, 'Gagesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35911, 'Garceni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35912, 'Gherghesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35913, 'Grivita', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35914, 'Hoceni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35915, 'Husi', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35916, 'Iana', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35917, 'Ivanesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35918, 'Ivesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35919, 'Laza', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35920, 'Lipovat', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35921, 'Lunca Banului', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35922, 'Malusteni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35923, 'Miclesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35924, 'Muntenii de Jos', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35925, 'Murgeni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35926, 'Negresti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35927, 'Oltenesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35928, 'Osesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35929, 'Padureni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35930, 'Perieni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35931, 'Pogana', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35932, 'Poienesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35933, 'Puiesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35934, 'Pungesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35935, 'Rebricea', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35936, 'Rosiesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35937, 'Solesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35938, 'Stanilesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35939, 'Stefan cel Mare', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35940, 'Suletea', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35941, 'Tacuta', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35942, 'Tanacu', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35943, 'Tatarani', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35944, 'Todiresti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35945, 'Tutova', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35946, 'Valeni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35947, 'Vaslui', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35948, 'Vetrisoaia', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35949, 'Viisoara', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35950, 'Vinderei', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35951, 'Voinesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35952, 'Vulturesti', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35953, 'Vutcani', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35954, 'Zapodeni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35955, 'Zorleni', 2975, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35956, 'Adjud', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35957, 'Andreiasu de Jos', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35958, 'Balesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35959, 'Barsesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35960, 'Boghesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35961, 'Bolotesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35962, 'Bordesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35963, 'Brosteni', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35964, 'Campineanca', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35965, 'Campuri', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35966, 'Carligele', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35967, 'Chiojdeni', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35968, 'Ciorasti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35969, 'Corbita', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35970, 'Cotesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35971, 'Dumbraveni', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35972, 'Dumitresti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35973, 'Fitionesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35974, 'Focsani', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35975, 'Garoafa', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35976, 'Golesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35977, 'Gugesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35978, 'Gura Calitei', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35979, 'Homocea', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35980, 'Jaristea', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35981, 'Jitia', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35982, 'Maicanesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35983, 'Marasesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35984, 'Mera', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35985, 'Milcovul', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35986, 'Movilita', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35987, 'Nanesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35988, 'Naruja', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35989, 'Nereju', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35990, 'Nistoresti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35991, 'Odobesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35992, 'Paltin', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35993, 'Panciu', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35994, 'Paunesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35995, 'Poiana Cristei', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35996, 'Pufesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35997, 'Racoasa', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35998, 'Reghiu', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(35999, 'Ruginesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36000, 'Sihlea', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36001, 'Slobozia Bradului', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36002, 'Slobozia-Ciorasti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36003, 'Soveja', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36004, 'Straoane', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36005, 'Suraia', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36006, 'Tamboesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36007, 'Tanasoaia', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36008, 'Tataranu', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36009, 'Tifesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36010, 'Tulnici', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36011, 'Urechesti', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36012, 'Valea Sarii', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36013, 'Vanatori', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36014, 'Vartescoiu', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36015, 'Vidra', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36016, 'Vintileasca', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36017, 'Vizantea', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36018, 'Vrancioaia', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36019, 'Vulturu', 2976, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36020, 'Adygejsk', 2977, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36021, 'Enem', 2977, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36022, 'Jablonovskij', 2977, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36023, 'Kamennomostskij', 2977, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36024, 'Majkop', 2977, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36025, 'Tulskij', 2977, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36026, 'Aginskoje', 2978, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36027, 'Alagir', 2979, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36028, 'Ardon', 2979, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36029, 'Beslan', 2979, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36030, 'Digora', 2979, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36031, 'Mozdok', 2979, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36032, 'Vladikavkaz', 2979, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36033, 'Zavodskoj', 2979, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36034, 'Alejsk', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36035, 'Barnaul', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36036, 'Belojarsk', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36037, 'Belokuriha', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36038, 'Bijsk', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36039, 'Blagoveshchenka', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36040, 'Gornjak', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36041, 'Jarovoe', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36042, 'Juzhnyj', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36043, 'Kamen-na-Obi', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36044, 'Novoaltajsk', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36045, 'Novosilikatnyj', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36046, 'Rubcovsk', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36047, 'Sibirskiy', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36048, 'Slavgorod', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36049, 'Talmenka', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36050, 'Zarinsk', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36051, 'Zmeinogorsk', 2980, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36052, 'Arhara', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36053, 'Belogorsk', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36054, 'Blagoveshchensk', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36055, 'Jerofej Pavlovich', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36056, 'Magdagachi', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36057, 'Novoburejskij', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36058, 'Progress', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36059, 'Rajchihinsk', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36060, 'Seryshevo', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36061, 'Shimanovsk', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36062, 'Skovorodino', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36063, 'Svobodnyj', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36064, 'Tynda', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36065, 'Urusha', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36066, 'Zavitinsk', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36067, 'Zeja', 2981, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36068, 'Arhangelsk', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36069, 'Jemca', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36070, 'Jercevo', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36071, 'Kargopol', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36072, 'Konosha', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36073, 'Korjazhma', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36074, 'Kotlas', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36075, 'Kuloj', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36076, 'Maloshujka', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36077, 'Mirnyj', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36078, 'Njandoma', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36079, 'Novodvinsk', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36080, 'Obozjorskij', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36081, 'Oktjabrskij', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36082, 'Onega', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36083, 'Plesetsk', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36084, 'Podjuga', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36085, 'Puksoozero', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36086, 'Samoded', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36087, 'Savinskij', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36088, 'Severodvinsk', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36089, 'Shenkursk', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36090, 'Udimskij', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36091, 'Urdoma', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36092, 'Velsk', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36093, 'Vychegodskij', 2982, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36094, 'Ahtubinsk', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36095, 'Astrahan', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36096, 'Harabali', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36097, 'Kamyzjak', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36098, 'Kapustin Jar', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36099, 'Liman', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36100, 'Narimanov', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36101, 'Verhnij Baskunchak', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36102, 'Volodarskij', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36103, 'Znamensk', 2983, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36104, 'Agidel', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36105, 'Bajmak', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36106, 'Belebej', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36107, 'Beloreck', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36108, 'Birsk', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36109, 'Blagoveshchensk', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36110, 'Chishmy', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36111, 'Davlekanovo', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36112, 'Djurtjuli', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36113, 'Iglino', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36114, 'Ishimbaj', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36115, 'Janaul', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36116, 'Jermolajevo', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36117, 'Kandry', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36118, 'Krasnousolskij', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36119, 'Kumertau', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36120, 'Meleuz', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36121, 'Mezhgorje', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36122, 'Neftekamsk', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36123, 'Oktjabrskij', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36124, 'Oktyabrsky', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36125, 'Prijutovo', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36126, 'Rajevskij', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36127, 'Salavat', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36128, 'Serafimovskij', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36129, 'Sibaj', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36130, 'Sterlitamak', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36131, 'Tujmazy', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36132, 'Uchaly', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36133, 'Ufa', 2984, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36134, 'Aleksejevka', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36135, 'Belgorod', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36136, 'Borisovka', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36137, 'Chernjanka', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36138, 'Grajvoron', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36139, 'Gubkin', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36140, 'Novyj Oskol', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36141, 'Rakitnoe', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36142, 'Razumnoe', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36143, 'Shebekino', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36144, 'Staryj Oskol', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36145, 'Stroitel', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36146, 'Tomarovka', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36147, 'Valujki', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36148, 'Volokonovka', 2985, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36149, 'Belye Berega', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36150, 'Brjansk', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36151, 'Djatkovo', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36152, 'Fokino', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36153, 'Karachev', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36154, 'Kletnja', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36155, 'Klimovo', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36156, 'Klincy', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36157, 'Lokot', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36158, 'Navlja', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36159, 'Novozybkov', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36160, 'Pochjop', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36161, 'Pogar', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36162, 'Selco', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36163, 'Starodub', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36164, 'Surazh', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36165, 'Suzjomka', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36166, 'Trubchjovsk', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36167, 'Unecha', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36168, 'Zhukovka', 2986, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36169, 'Gusinoozjorsk', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36170, 'Kamensk', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36171, 'Kjahta', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36172, 'Novyj Uojan', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36173, 'Onohoj', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36174, 'Selenginsk', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36175, 'Severobajkalsk', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36176, 'Taksimo', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36177, 'Ulan-Ude', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36178, 'Zakamensk', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36179, 'Zarechnyj', 2987, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36180, 'Groznyj', 2988, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36181, 'Gudermes', 2988, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36182, 'Malgobek', 2988, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36183, 'Urus-Martan', 2988, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36184, 'Asha', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36185, 'Bakal', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36186, 'Bazhovo', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36187, 'Berdjaush', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36188, 'Chebarkul', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36189, 'Cheljabinsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36190, 'Chelyabinsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36191, 'Gornjak', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36192, 'Jemanzhelinsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36193, 'Jurjuzan', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36194, 'Juznouralsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36195, 'Karabash', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36196, 'Kartaly', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36197, 'Kasli', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36198, 'Katav-Ivanovsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36199, 'Kopejsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36200, 'Korkino', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36201, 'Krasnogorskij', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36202, 'Kusa', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36203, 'Kyshtym', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36204, 'Lokomotivnyj', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36205, 'Magnitka', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36206, 'Magnitogorsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36207, 'Miass', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36208, 'Minjar', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36209, 'Njazepetrovsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36210, 'Novosineglazovskij', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36211, 'Ozjorsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36212, 'Pervomajskij', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36213, 'Plast', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36214, 'Roza', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36215, 'Satka', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36216, 'Sim', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36217, 'Snezhinsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36218, 'Starokamyshinsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36219, 'Suleja', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36220, 'Trjohgornij', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36221, 'Troick', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36222, 'Ust-Katav', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36223, 'Verhneuralsk', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36224, 'Verhnij Ufalej', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36225, 'Zlatoust', 2989, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36226, 'Atamanovka', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36227, 'Balej', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36228, 'Borzja', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36229, 'Bukachacha', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36230, 'Chernyshevsk', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36231, 'Chita', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36232, 'Darasun', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36233, 'Gornyy', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36234, 'Hilok', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36235, 'Karymskoje', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36236, 'Krasnokamensk', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36237, 'Mogocha', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36238, 'Nerchinsk', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36239, 'Novaja Chara', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36240, 'Novokruchuninskij', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36241, 'Olovjannaja', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36242, 'Pervomajskij', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36243, 'Petrovsk-Zabajkalskij', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36244, 'Sherlovaja Gora', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36245, 'Shilka', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36246, 'Sretensk', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36247, 'Vershino-Darasunskij', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36248, 'Zabajkalsk', 2990, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36249, 'Anadyr', 2991, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36250, 'Bilibino', 2991, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36251, 'Pevek', 2991, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36252, 'Ugolnyje Kopi', 2991, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36253, 'Alatyr', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36254, 'Cheboksary', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36255, 'Civilsk', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36256, 'Ibresi', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36257, 'Jadrin', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36258, 'Kanash', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36259, 'Kozlovka', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36260, 'Kugesy', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36261, 'Mariinskij Posad', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36262, 'Novocheboksarsk', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36263, 'Shumerlja', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36264, 'Vurnary', 2992, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36265, 'Belidzhi', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36266, 'Bujnaksk', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36267, 'Dagestanskije Ogni', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36268, 'Derbent', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36269, 'Hasavjurt', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36270, 'Izberbash', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36271, 'Juzhno-Suhokumsk', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36272, 'Kaspijsk', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36273, 'Kiziljurt', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36274, 'Kizljar', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36275, 'Mahackala', 2993, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36276, 'Tura', 2994, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36277, 'Gorno-Altajsk', 2995, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36278, 'Amursk', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36279, 'Bikin', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36280, 'Chegdomyn', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36281, 'Cherdomyn', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36282, 'Habarovsk', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36283, 'Hor', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36284, 'Jelban', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36285, 'Komsomolsk-na-Amure', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36286, 'Litovko', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36287, 'Nikolajevsk-na-Amure', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36288, 'Ohotsk', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36289, 'Perejaslavka', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36290, 'Solnechnyj', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36291, 'Sovetskaja Gavan', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36292, 'Uglegorsk', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36293, 'Vanino', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36294, 'Vjazemskij', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36295, 'Zavety Iljicha', 2996, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36296, 'Abakan', 2997, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36297, 'Abaza', 2997, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36298, 'Cherjomushki', 2997, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36299, 'Chernogorsk', 2997, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36300, 'Sajanogorsk', 2997, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36301, 'Shira', 2997, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36302, 'Sorsk', 2997, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36303, 'Ust-Abakan', 2997, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36304, 'Belojarskij', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36305, 'Belyj Jar', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36306, 'Fjodorovskij', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36307, 'Hanty-Mansijsk', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36308, 'Igrim', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36309, 'Izluchinsk', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36310, 'Jugorsk', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36311, 'Kogalym', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36312, 'Langepas', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36313, 'Ljantor', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36314, 'Megion', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36315, 'Mezhdurechenskij', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36316, 'Neftejugansk', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36317, 'Nizhnevartovsk', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36318, 'Njagan', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36319, 'Novoagansk', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36320, 'Pojkovskij', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36321, 'Pokachi', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36322, 'Raduzhnyj', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36323, 'Sovetskij', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36324, 'Surgut', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36325, 'Uraj', 2998, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36326, 'Karabulak', 2999, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36327, 'Nazran', 2999, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36328, 'Angarsk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36329, 'Bajkalsk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36330, 'Balagansk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36331, 'Birjusinsk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36332, 'Bodajbo', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36333, 'Bratsk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36334, 'Cheremhovo', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36335, 'Chunskij', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36336, 'Irkutsk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36337, 'Kirensk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36338, 'Kujtun', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36339, 'Mihajlovka', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36340, 'Nizhneudinsk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36341, 'Novaja Igirma', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36342, 'Sajansk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36343, 'Shelehov', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36344, 'Sljudjanka', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36345, 'Svirsk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36346, 'Tajshet', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36347, 'Tulun', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36348, 'Usolje-Sibirskoje', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36349, 'Ust-Ilimsk', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36350, 'Ust-Kut', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36351, 'Vihorevka', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36352, 'Zalari', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36353, 'Zheleznodorozhnyj', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36354, 'Zheleznogorsk-Ilimskij', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36355, 'Zima', 3000, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36356, 'Furmanov', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36357, 'Ivanovo', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36358, 'Jurjevec', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36359, 'Juzha', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36360, 'Kineshma', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36361, 'Kohma', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36362, 'Komsomolsk', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36363, 'Lezhnjovo', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36364, 'Navoloki', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36365, 'Privolzhsk', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36366, 'Puchezh', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36367, 'Rodniki', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36368, 'Shuja', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36369, 'Tejkovo', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36370, 'Vichuga', 3001, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36371, 'Gubkinskij', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36372, 'Korotchajevo', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36373, 'Labytnangi', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36374, 'Muravlenko', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36375, 'Nadym', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36376, 'Nojabrsk', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36377, 'Novyj Urengoj', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36378, 'Pangody', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36379, 'Salehard', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36380, 'Tarko-Sale', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36381, 'Urengoj', 3002, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36382, 'Danilov', 3003, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36383, 'Gavrilov-Jam', 3003, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36384, 'Jaroslavl', 3003, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36385, 'Pereslavl-Zalesskij', 3003, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36386, 'Rostov', 3003, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36387, 'Rybinsk', 3003, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36388, 'Tutajev', 3003, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36389, 'Uglich', 3003, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36390, 'Birakan', 3004, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36391, 'Birobidzhan', 3004, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36392, 'Imeni Telmana', 3004, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36393, 'Izvestkovyj', 3004, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36394, 'Londoko', 3004, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36395, 'Obluchje', 3004, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36396, 'Teploozjorsk', 3004, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36397, 'Baksan', 3005, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36398, 'Chegem Pervyj', 3005, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36399, 'Majskij', 3005, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(36400, 'Nalchik', 3005, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36401, 'Nartkala', 3005, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36402, 'Prohladnyj', 3005, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36403, 'Terek', 3005, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36404, 'Tyrnyauz', 3005, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36405, 'Bagrationovsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36406, 'Baltijsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36407, 'Chernjahovsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36408, 'Gurjevsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36409, 'Gusev', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36410, 'Gvardejsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36411, 'Kaliningrad', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36412, 'Mamonovo', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36413, 'Neman', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36414, 'Nesterov', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36415, 'Ozjorsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36416, 'Pionerskij', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36417, 'Sovetsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36418, 'Svetlogorsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36419, 'Svetlyj', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36420, 'Zeljenogradsk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36421, 'Znamensk', 3006, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36422, 'Elista', 3007, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36423, 'Gorodovikovsk', 3007, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36424, 'Lagan', 3007, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36425, 'Balabanovo', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36426, 'Belousovo', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36427, 'Borovsk', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36428, 'Jermolino', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36429, 'Kaluga', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36430, 'Kirov', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36431, 'Kondrovo', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36432, 'Kozelsk', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36433, 'Kremenki', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36434, 'Ljudinovo', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36435, 'Malojaroslavec', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36436, 'Obninsk', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36437, 'Sosenskij', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36438, 'Suhinichi', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36439, 'Tarusa', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36440, 'Tovarkovo', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36441, 'Zhukov', 3008, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36442, 'Jelizovo', 3009, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36443, 'Kljuchi', 3009, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36444, 'Mohovaja', 3009, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36445, 'Petropavlovsk-Kamchatskij', 3009, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36446, 'Ust-Kamchatsk', 3009, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36447, 'Viljuchinsk', 3009, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36448, 'Vulkannyj', 3009, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36449, 'Cherkessk', 3010, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36450, 'Karachajevsk', 3010, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36451, 'Ust-Dzheguta', 3010, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36452, 'Belomorsk', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36453, 'Kem', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36454, 'Kondopoga', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36455, 'Kostomuksha', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36456, 'Lahdenpohja', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36457, 'Medvezhjegorsk', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36458, 'Nadvoicy', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36459, 'Olonec', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36460, 'Petrozavodsk', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36461, 'Pitkjaranta', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36462, 'Pudozh', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36463, 'Segezha', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36464, 'Sortavala', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36465, 'Suojarvi', 3011, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36466, 'Anzhero-Sudzhensk', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36467, 'Bachatskij', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36468, 'Belovo', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36469, 'Berjozovskij', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36470, 'Gramoteino', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36471, 'Gurjevsk', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36472, 'Inskoj', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36473, 'Jashkino', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36474, 'Jurga', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36475, 'Kaltan', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36476, 'Kedrovka', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36477, 'Kemerovo', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36478, 'Kiseljovsk', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36479, 'Krasnobrodskij', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36480, 'Leninsk-Kuzneckij', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36481, 'Malinovka', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36482, 'Mariinsk', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36483, 'Mezhdurechensk', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36484, 'Myski', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36485, 'Novokuzneck', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36486, 'Novokuznetsk', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36487, 'Novyj Gorodok', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36488, 'Osinniki', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36489, 'Polsaevo', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36490, 'Prokopjevsk', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36491, 'Promyshlennaja', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36492, 'Promyshlennovskij', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36493, 'Salair', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36494, 'Starobachaty', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36495, 'Tajga', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36496, 'Tajzhina', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36497, 'Tashtagol', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36498, 'Temirtau', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36499, 'Tisul', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36500, 'Tjazhinskij', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36501, 'Topki', 3012, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36502, 'Belaja Holunica', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36503, 'Jaransk', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36504, 'Jurja', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36505, 'Kirov', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36506, 'Kirovo-Chepeck', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36507, 'Kirs', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36508, 'Kotelnich', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36509, 'Ljangasovo', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36510, 'Luza', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36511, 'Malmyzh', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36512, 'Murashi', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36513, 'Nolinsk', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36514, 'Omutninsk', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36515, 'Orichi', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36516, 'Orlov', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36517, 'Pervomajskij', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36518, 'Peskovka', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36519, 'Slobodskoj', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36520, 'Sosnovka', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36521, 'Sovetsk', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36522, 'Urzhum', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36523, 'Vahrushi', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36524, 'Vjatskije Poljany', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36525, 'Zujevka', 3014, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36526, 'Blagoevo', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36527, 'Inta', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36528, 'Jarega', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36529, 'Jeletskij', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36530, 'Jemva', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36531, 'Komsomolskij', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36532, 'Krasnozatonskij', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36533, 'Mikun', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36534, 'Nizhnij Odes', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36535, 'Pechora', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36536, 'Promyshlennyj', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36537, 'Severnyj', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36538, 'Sosnogorsk', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36539, 'Syktyvkar', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36540, 'Troicko-Pechorsk', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36541, 'Uhta', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36542, 'Usinsk', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36543, 'Usogorsk', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36544, 'Vorgashor', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36545, 'Vorkuta', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36546, 'Vuktyl', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36547, 'Zheshart', 3015, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36548, 'Kudymkar', 3016, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36549, 'Palana', 3017, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36550, 'Buj', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36551, 'Galich', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36552, 'Kostroma', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36553, 'Makarjev', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36554, 'Manturovo', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36555, 'Neja', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36556, 'Nerehta', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36557, 'Sharja', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36558, 'Vetluzhskij', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36559, 'Volgorechensk', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36560, 'Zavolzhsk', 3018, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36561, 'Abinsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36562, 'Achujevo', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36563, 'Afipskij', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36564, 'Ahtyrskij', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36565, 'Anapa', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36566, 'Apsheronsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36567, 'Armavir', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36568, 'Belorechensk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36569, 'Gelendzhik', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36570, 'Gorjachi Kljuch', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36571, 'Gulkevichi', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36572, 'Hadyzhensk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36573, 'Ilskij', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36574, 'Jejsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36575, 'Kalinino', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36576, 'Korenovsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36577, 'Krasnodar', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36578, 'Kropotkin', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36579, 'Krymsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36580, 'Kurganinsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36581, 'Labinsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36582, 'Mostovskoj', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36583, 'Neftegorsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36584, 'Novokubansk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36585, 'Novomihajlovskij', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36586, 'Novorossijsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36587, 'Pashkovskij', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36588, 'Primorsko-Ahtarsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36589, 'Psebaj', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36590, 'Slavjansk-na-Kubani', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36591, 'Sochi', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36592, 'Srednjaja Ahtuba', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36593, 'Temrjuk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36594, 'Tihoreck', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36595, 'Timashevsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36596, 'Tuapse', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36597, 'Ust-Labinsk', 3019, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36598, 'Aban', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36599, 'Achinsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36600, 'Artjomovsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36601, 'Berjozovka', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36602, 'Bogotol', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36603, 'Borodino', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36604, 'Divnogorsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36605, 'Dubinino', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36606, 'Igarka', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36607, 'Ilanskij', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36608, 'Jemeljanovo', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36609, 'Jenisejsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36610, 'Kajerkan', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36611, 'Kansk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36612, 'Kedrovyj', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36613, 'Kodinsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36614, 'Krasnojarsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36615, 'Kuragino', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36616, 'Lesosibirsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36617, 'Minusinsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36618, 'Nazarovo', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36619, 'Nizhnjaja Pojma', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36620, 'Norilsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36621, 'Podgornyj', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36622, 'Sharypovo', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36623, 'Shushenskoe', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36624, 'Solnechnyj', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36625, 'Sosnovoborsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36626, 'Talnah', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36627, 'Ujar', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36628, 'Uzhur', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36629, 'Zaozjornyj', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36630, 'Zelenogorsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36631, 'Zheleznogorsk', 3020, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36632, 'Dalmatovo', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36633, 'Kargapolje', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36634, 'Katajsk', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36635, 'Kurgan', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36636, 'Kurtamysh', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36637, 'Makushino', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36638, 'Petuhovo', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36639, 'Shadrinsk', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36640, 'Shumiha', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36641, 'Vargashi', 3022, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36642, 'Dmitriev Lgovskij', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36643, 'Imeni Karla Libknehta', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36644, 'Kurchatov', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36645, 'Kursk', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36646, 'Lgov', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36647, 'Obojan', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36648, 'Rylsk', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36649, 'Shchigry', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36650, 'Shchuchje', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36651, 'Sudzha', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36652, 'Zheleznogorsk', 3023, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36653, 'Boksitogorsk', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36654, 'Dubrovka', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36655, 'Gatchina', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36656, 'Imeni Morozova', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36657, 'Ivangorod', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36658, 'Kingisepp', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36659, 'Kirishi', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36660, 'Kirovsk', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36661, 'Kolpino', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36662, 'Kommunar', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36663, 'Kuzmolovskiy', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36664, 'Lodejnoje Pole', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36665, 'Luga', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36666, 'Nikolskoe', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36667, 'Novaja Ladoga', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36668, 'Otradnoe', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36669, 'Pikaljovo', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36670, 'Podporozhje', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36671, 'Priozjorsk', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36672, 'Sertolovo', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36673, 'Shlisselburg', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36674, 'Siverskij', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36675, 'Sjasstroj', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36676, 'Slancy', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36677, 'Sosnovyj Bor', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36678, 'Svetogorsk', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36679, 'Tihvin', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36680, 'Tosno', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36681, 'Uljanovka', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36682, 'Volhov', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36683, 'Volosovo', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36684, 'Vsevolozhsk', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36685, 'Vyborg', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36686, 'Vyrica', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36687, 'Zarskoje Selo', 3024, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36688, 'Chaplygin', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36689, 'Dankov', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36690, 'Dobrinka', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36691, 'Grjazi', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36692, 'Jelec', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36693, 'Lebedjan', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36694, 'Lipeck', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36695, 'Usman', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36696, 'Zadonsk', 3025, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36697, 'Jagodnoje', 3026, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36698, 'Magadan', 3026, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36699, 'Ola', 3026, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36700, 'Omsukchan', 3026, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36701, 'Palatka', 3026, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36702, 'Sinegorje', 3026, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36703, 'Susuman', 3026, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36704, 'Ust-Omchug', 3026, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36705, 'Ardatov', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36706, 'Chamzinka', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36707, 'Insar', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36708, 'Komsomolskij', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36709, 'Kovylkino', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36710, 'Krasnoslobodsk', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36711, 'Luhovka', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36712, 'Romodanovo', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36713, 'Ruzajevka', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36714, 'Saransk', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36715, 'Temnikov', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36716, 'Torbeevo', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36717, 'Zubova Poljana', 3028, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36718, 'Moscow', 3029, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36719, 'Moskva', 3032, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36720, 'Vostochnyj', 3032, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36721, 'Zeljenograd', 3032, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36722, 'Apatity', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36723, 'Gadzhievo', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36724, 'Kandalaksha', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36725, 'Kirovsk', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36726, 'Kola', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36727, 'Kovdor', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36728, 'Monchegorsk', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36729, 'Murmansk', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36730, 'Murmashi', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36731, 'Nikel', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36732, 'Olenegorsk', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36733, 'Ostrovnoj', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36734, 'Poljarnye Zory', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36735, 'Poljarnyj', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36736, 'Revda', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36737, 'Severomorsk', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36738, 'Snezhnogorsk', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36739, 'Zaozjorsk', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36740, 'Zapoljarnyj', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36741, 'Zeljenoborskij', 3033, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36742, 'Narjan-Mar', 3034, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36743, 'Borovichi', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36744, 'Chudovo', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36745, 'Krestcy', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36746, 'Malaja Vishera', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36747, 'Okulovka', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36748, 'Pestovo', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36749, 'Proletarij', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36750, 'Solcy', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36751, 'Staraja Russa', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36752, 'Uglovka', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36753, 'Valdaj', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36754, 'Velikij Novgorod', 3036, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36755, 'Novokusnezk', 3037, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36756, 'Barabinsk', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36757, 'Berdsk', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36758, 'Bolotnoe', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36759, 'Chany', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36760, 'Cherepanovo', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36761, 'Chulym', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36762, 'Iskitim', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36763, 'Karasuk', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36764, 'Kargat', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36765, 'Kochenjovo', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36766, 'Kolcovo', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36767, 'Kolyvan', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36768, 'Krasnoobsk', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36769, 'Krasnozerskoe', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36770, 'Kujbyshev', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36771, 'Kupino', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36772, 'Linjovo', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36773, 'Masljanino', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36774, 'Novosibirsk', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36775, 'Ob', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36776, 'Suzun', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36777, 'Tatarsk', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36778, 'Toguchin', 3038, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36779, 'Bolsherechje', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36780, 'Cherlak', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36781, 'Isilkul', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36782, 'Kalachinsk', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36783, 'Kormilovka', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36784, 'Ljubinskij', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36785, 'Moskaljoni', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36786, 'Muromcevo', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36787, 'Nazyvajevsk', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36788, 'Omsk', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36789, 'Tara', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36790, 'Tavricheskoje', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36791, 'Tjukalinsk', 3039, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36792, 'Abdulino', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36793, 'Buguruslan', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36794, 'Buzuluk', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36795, 'Jasnyj', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36796, 'Komarovskiy', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36797, 'Kuvandyk', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36798, 'Mednogorsk', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36799, 'Novotroick', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36800, 'Orenburg', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36801, 'Orsk', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36802, 'Sol-Ileck', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36803, 'Sorochinsk', 3040, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36804, 'Bolhov', 3041, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36805, 'Gaj', 3041, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36806, 'Livny', 3041, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36807, 'Mcensk', 3041, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36808, 'Orjol', 3041, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36809, 'Znamenka', 3041, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36810, 'Bashmakovo', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36811, 'Bekovo', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36812, 'Belinskiy', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36813, 'Kamenka', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36814, 'Kolyshlej', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36815, 'Kuzneck', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36816, 'Mokshan', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36817, 'Nikolsk', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36818, 'Nizhnij Lomov', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36819, 'Pachelma', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36820, 'Penza', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36821, 'Serdobsk', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36822, 'Sursk', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36823, 'Zarechnyj', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36824, 'Zemetchino', 3042, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36825, 'Aleksandrovsk', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36826, 'Berezniki', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36827, 'Chajkovskij', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36828, 'Chermoz', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36829, 'Chernushka', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36830, 'Chusovoj', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36831, 'Dobrjanka', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36832, 'Gornozavodsk', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36833, 'Gremjachinsk', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36834, 'Gubaha', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36835, 'Jajva', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36836, 'Kizel', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36837, 'Komsomolsky', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36838, 'Krasnokamsk', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36839, 'Krasnovishersk', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36840, 'Kungur', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36841, 'Lysva', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36842, 'Novye Ljady', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36843, 'Nytva', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36844, 'Ocher', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36845, 'Oktjabrskij', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36846, 'Osa', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36847, 'Pashija', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36848, 'Perm', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36849, 'Polazna', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36850, 'Skalnyj', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36851, 'Solikamsk', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36852, 'Ugleuralskij', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36853, 'Uralskij', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36854, 'Usolje', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36855, 'Vereshchagino', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36856, 'Zvjozdnyj', 3043, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36857, 'Arsenjev', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36858, 'Artjom', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36859, 'Artjomovskij', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36860, 'Bolshoj Kamen', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36861, 'Dalnegorsk', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36862, 'Dalnerechensk', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36863, 'Dunaj', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36864, 'Fokino', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36865, 'Jaroslavskij', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36866, 'Kavalerovo', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36867, 'Kirovskiy', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36868, 'Lesozavodsk', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36869, 'Lipovcy', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36870, 'Livadija', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36871, 'Luchegorsk', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36872, 'Nahodka', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36873, 'Novoshahtinskij', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36874, 'Partizansk', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36875, 'Pogranichnyj', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36876, 'Preobrazhenie', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36877, 'Putjatin', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36878, 'Sibircevo', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36879, 'Slavjanka', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36880, 'Spassk-Dalnij', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36881, 'Tavrichanka', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36882, 'Trudovoe', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36883, 'Uglekamensk', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36884, 'Uglovoe', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36885, 'Ussurijsk', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36886, 'Vladivostok', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36887, 'Vrangel', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36888, 'Zavodskoj', 3044, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36889, 'Dedovichi', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36890, 'Dno', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36891, 'Nevel', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36892, 'Novosokolniki', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36893, 'Opochka', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36894, 'Ostrov', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36895, 'Pechory', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36896, 'Porhov', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36897, 'Pskov', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36898, 'Sebezh', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36899, 'Strugi-Krasnye', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36900, 'Velikije Luki', 3045, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36901, 'Kasimov', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36902, 'Korablino', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36903, 'Mihajlov', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36904, 'Novomichurinsk', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36905, 'Rjazan', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36906, 'Rjazhsk', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36907, 'Rybnoje', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36908, 'Sasovo', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36909, 'Shilovo', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36910, 'Skopin', 3047, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36911, 'Ajutinskij', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36912, 'Aksaj', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36913, 'Azov', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36914, 'Batajsk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36915, 'Belaja Kalitva', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36916, 'Cimljansk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36917, 'Doneck', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36918, 'Donskoj', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36919, 'Gigant', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36920, 'Glubokij', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36921, 'Gornjackij', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36922, 'Gukovo', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36923, 'Kamenolomni', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36924, 'Kamensk-Shahtinskij', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36925, 'Konstantinovsk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36926, 'Krasnyj Sulin', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36927, 'Lihovskoj', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36928, 'Majskij', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36929, 'Millerovo', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36930, 'Morozovsk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36931, 'Novocherkassk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36932, 'Novoshahtinsk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36933, 'Proletarsk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36934, 'Rostov', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36935, 'Rostov-na-Donu', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36936, 'Salsk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36937, 'Semikarakorsk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36938, 'Shahty', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36939, 'Sholohovskij', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36940, 'Sinegorskij', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36941, 'Sokolovo', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36942, 'Taganrog', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36943, 'Ust-Doneckij', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36944, 'Volgodonsk', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36945, 'Zernograd', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36946, 'Zhirnov', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36947, 'Zverevo', 3048, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36948, 'Ajhan', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36949, 'Aldan', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36950, 'Cherskij', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36951, 'Chulman', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36952, 'Deputatskij', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36953, 'Jakutsk', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36954, 'Lensk', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36955, 'Marha', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36956, 'Mirnyj', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36957, 'Nerjungri', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36958, 'Njurba', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36959, 'Oljokminsk', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36960, 'Pokrovsk', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36961, 'Sangar', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36962, 'Serebrjanyj Bor', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36963, 'Tiksi', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36964, 'Tommot', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36965, 'Udachnyj', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36966, 'Ust-Nera', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36967, 'Verhojansk', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36968, 'Viljujsk', 3049, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36969, 'Aleksandrovsk-Sahalinskij', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36970, 'Dolinsk', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36971, 'Gornozavodsk', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36972, 'Holmsk', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36973, 'Juzhno-Sahalinsk', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36974, 'Korsakov', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(36975, 'Makarov', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36976, 'Nevelsk', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36977, 'Nogliki', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36978, 'Oha', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36979, 'Poronajsk', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36980, 'Shahtjorsk', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36981, 'Tymovskoje', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36982, 'Uglegorsk', 3050, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36983, 'Aleksejevka', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36984, 'Bezenchuk', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36985, 'Chapajevsk', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36986, 'Fjodorovka', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36987, 'Kinel', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36988, 'Mirnyj', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36989, 'Novokujbyshevsk', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36990, 'Novosemejkino', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36991, 'Oktjabrsk', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36992, 'Otradnyj', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36993, 'Pohvistnevo', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36994, 'Povolzhskij', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36995, 'Pribrezhnyj', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36996, 'Roscinskij', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36997, 'Samara', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36998, 'Smyshljaevka', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(36999, 'Suhodol', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37000, 'Syzran', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37001, 'Timashjovo', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37002, 'Toljatti', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37003, 'Zhigulevsk', 3051, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37004, 'Togliatti', 3052, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37005, 'Saint Petersburg', 3053, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37006, 'Sankt Peterburg', 3053, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37007, 'Arkadak', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37008, 'Atkarsk', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37009, 'Balakovo', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37010, 'Balashov', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37011, 'Bazarnyj Karabulak', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37012, 'Dergachi', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37013, 'Engels', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37014, 'Hvalynsk', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37015, 'Jershov', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37016, 'Kalininsk', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37017, 'Krasnoarmejsk', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37018, 'Krasnyj Kut', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37019, 'Marks', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37020, 'Novouzensk', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37021, 'Ozinki', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37022, 'Petrovsk', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37023, 'Privolzhskij', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37024, 'Pugachjov', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37025, 'Rtishchevo', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37026, 'Saratov', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37027, 'Shihany', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37028, 'Stepnoe', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37029, 'Svetlyj', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37030, 'Tatishchevo', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37031, 'Volsk', 3054, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37032, 'Demidov', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37033, 'Desnogorsk', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37034, 'Dorogobuzh', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37035, 'Gagarin', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37036, 'Hislavichi', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37037, 'Jarcevo', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37038, 'Jelnja', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37039, 'Pochinok', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37040, 'Roslavl', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37041, 'Rudnja', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37042, 'Safonovo', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37043, 'Smolensk', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37044, 'Verhnedneprovskij', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37045, 'Vjazma', 3055, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37046, 'Blagodarnyj', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37047, 'Budjonnovsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37048, 'Georgijevsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37049, 'Gorjachevodskij', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37050, 'Inozemcevo', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37051, 'Ipatovo', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37052, 'Izobilnyj', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37053, 'Jessentuki', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37054, 'Kislovodsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37055, 'Lermontov', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37056, 'Mihajlovsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37057, 'Mineralnyje Vody', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37058, 'Neftekumsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37059, 'Nevinnomyssk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37060, 'Novoaleksandrovsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37061, 'Novopavlovsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37062, 'Pjatigorsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37063, 'Solnechnodolsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37064, 'Stavropol', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37065, 'Svetlograd', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37066, 'Svobody', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37067, 'Zeljenokumsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37068, 'Zheleznovodsk', 3056, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37069, 'Alapajevsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37070, 'Aramil', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37071, 'Arti', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37072, 'Artjomovskij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37073, 'Asbest', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37074, 'Baranchinskij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37075, 'Belojarskij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37076, 'Berjozovskij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37077, 'Bisert', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37078, 'Bogdanovich', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37079, 'Bulanash', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37080, 'Degtjarsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37081, 'Ekaterinburg', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37082, 'Irbit', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37083, 'Ivdel', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37084, 'Izumrud', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37085, 'Jekaterinburg', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37086, 'Kachkanar', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37087, 'Kamensk-Uralskij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37088, 'Kamyshlov', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37089, 'Karpinsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37090, 'Kirovgrad', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37091, 'Kolcovo', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37092, 'Krasnoturinsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37093, 'Krasnoufimsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37094, 'Krasnouralsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37095, 'Kushva', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37096, 'Lesnoj', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37097, 'Leviha', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37098, 'Lobva', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37099, 'Malysheva', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37100, 'Mihajlovsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37101, 'Monetnyj', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37102, 'Nevjansk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37103, 'Nizhnie Sergi', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37104, 'Nizhnij Tagil', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37105, 'Nizhnjaja Salda', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37106, 'Nizhnjaja Tura', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37107, 'Novaja Ljalja', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37108, 'Novouralsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37109, 'Pervouralsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37110, 'Polevskoj', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37111, 'Pyshma', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37112, 'Pyt-Jah', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37113, 'Reftinskij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37114, 'Revda', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37115, 'Rezh', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37116, 'Serov', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37117, 'Severouralsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37118, 'Sosva', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37119, 'Sredneuralsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37120, 'Suhoj Log', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37121, 'Svobodnyj', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37122, 'Sysert', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37123, 'Talica', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37124, 'Tavda', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37125, 'Troickij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37126, 'Turinsk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37127, 'Uralskij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37128, 'Verhnij Tagil', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37129, 'Verhnjaja Pyshma', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37130, 'Verhnjaja Salda', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37131, 'Verhnjaja Sinyachiha', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37132, 'Verhnjaja Tura', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37133, 'Verhoturje', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37134, 'Volchansk', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37135, 'Yekaterinburg', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37136, 'Zarechnyj', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37137, 'Zjuzelskij', 3057, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37138, 'Dudinka', 3058, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37139, 'Dmitrievka', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37140, 'Inzhavino', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37141, 'Kirsanov', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37142, 'Kotovsk', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37143, 'Michurinsk', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37144, 'Morshansk', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37145, 'Pervomajskij', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37146, 'Rasskazovo', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37147, 'Sosnovka', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37148, 'Tambov', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37149, 'Uvarovo', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37150, 'Zherdevka', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37151, 'Znamenka', 3059, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37152, 'Agryz', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37153, 'Aksubajevo', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37154, 'Aktjubinskij', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37155, 'Aleksejevskoje', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37156, 'Almetjevsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37157, 'Arsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37158, 'Aznakajevo', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37159, 'Bavly', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37160, 'Bugulma', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37161, 'Buinsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37162, 'Chistopol', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37163, 'Dzhalil', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37164, 'Jelabuga', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37165, 'Kamskie Poljany', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37166, 'Kazan', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37167, 'Kukmor', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37168, 'Leninogorsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37169, 'Mamadysh', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37170, 'Mendelejevsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37171, 'Menzelinsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37172, 'Naberezhnyje Chelny', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37173, 'Nizhnekamsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37174, 'Niznjaja Maktama', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37175, 'Nurlat', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37176, 'Tetjushi', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37177, 'Urussu', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37178, 'Vasiljevo', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37179, 'Zainsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37180, 'Zeljonodolsk', 3060, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37181, 'Bogandinskij', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37182, 'Borovskij', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37183, 'Golyshmanovo', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37184, 'Ishim', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37185, 'Jalutorovosk', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37186, 'Tjumen', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37187, 'Tobolsk', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37188, 'Vinzili', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37189, 'Zavodoukovsk', 3061, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37190, 'Asino', 3062, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37191, 'Jaja', 3062, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37192, 'Kolpashevo', 3062, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37193, 'Seversk', 3062, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37194, 'Strezhevoj', 3062, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37195, 'Tomsk', 3062, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37196, 'Agejevo', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37197, 'Aleksin', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37198, 'Beljov', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37199, 'Bogoroditsk', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37200, 'Bolohovo', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37201, 'Donskoj', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37202, 'Dubovka', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37203, 'Jasnogorsk', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37204, 'Jefremov', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37205, 'Kimovsk', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37206, 'Kirejevsk', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37207, 'Kosaja Gora', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37208, 'Leninskij', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37209, 'Lipki', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37210, 'Mendelejevskij', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37211, 'Novomoskovsk', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37212, 'Pervomajskij', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37213, 'Plavsk', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37214, 'Severo-Zadonsk', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37215, 'Shchjokino', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37216, 'Skuratovskij', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37217, 'Sokolniki', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37218, 'Sovetsk', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37219, 'Suvorov', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37220, 'Tovarkovskij', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37221, 'Tula', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37222, 'Uzlovaja', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37223, 'Venjov', 3063, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37224, 'Andreapol', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37225, 'Bezheck', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37226, 'Bologoe', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37227, 'Kaljazin', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37228, 'Kashin', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37229, 'Kimry', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37230, 'Konakovo', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37231, 'Kuvshinovo', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37232, 'Lihoslavl', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37233, 'Maksatiha', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37234, 'Ostashkov', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37235, 'Ozjornyj', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37236, 'Pelidovo', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37237, 'Rameshki', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37238, 'Redkino', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37239, 'Rzhev', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37240, 'Solnechnyj', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37241, 'Starica', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37242, 'Toropec', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37243, 'Torzhok', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37244, 'Tver', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37245, 'Udomlja', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37246, 'Vyshnij Volochok', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37247, 'Zapadnaja Dvina', 3064, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37248, 'Ak-Dovurak', 3065, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37249, 'Kyzyl', 3065, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37250, 'Balezino', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37251, 'Glazov', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37252, 'Igra', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37253, 'Izhevsk', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37254, 'Kambarka', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37255, 'Kez', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37256, 'Kizner', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37257, 'Mozhga', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37258, 'Sarapul', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37259, 'Uva', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37260, 'Votkinsk', 3066, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37261, 'Barysh', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37262, 'Cherdakly', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37263, 'Dimitrovgrad', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37264, 'Inza', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37265, 'Isheevka', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37266, 'Novospasskoe', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37267, 'Novouljanovsk', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37268, 'Sengilej', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37269, 'Uljanovsk', 3067, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37270, 'Ust-Ordynskij', 3069, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37271, 'Aleksandrov', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37272, 'Balakirevo', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37273, 'Gorohovec', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37274, 'Gus-Hrustalnyj', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37275, 'Jurjev Polskij', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37276, 'Kameshkovo', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37277, 'Karabanovo', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37278, 'Kirzhach', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37279, 'Kolchugino', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37280, 'Kosterovo', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37281, 'Kovrov', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37282, 'Krasnaja Gorbatka', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37283, 'Krasnyj Oktjabr', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37284, 'Lakinsk', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37285, 'Melenki', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37286, 'Murom', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37287, 'Novovjazniki', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37288, 'Pokrov', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37289, 'Raduzhnyj', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37290, 'Sobinka', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37291, 'Strunino', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37292, 'Sudogda', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37293, 'Suzdal', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37294, 'Vjazniki', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37295, 'Vladimir', 3070, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37296, 'Dubovka', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37297, 'Frolovo', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37298, 'Gorkovskij', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37299, 'Gorodishche', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37300, 'Ilovlja', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37301, 'Jelan', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37302, 'Kalach-na-Donu', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37303, 'Kamyshin', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37304, 'Kotelnikovo', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37305, 'Kotovo', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37306, 'Krasnoslobodsk', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37307, 'Leninsk', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37308, 'Mihajlovka', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37309, 'Nikolajevsk', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37310, 'Nizhny Novgorod', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37311, 'Novoanninskij', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37312, 'Novonikolajevskij', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37313, 'Pallasovka', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37314, 'Petrov Val', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37315, 'Serafimovich', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37316, 'Surovikino', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37317, 'Svetlyj Jar', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37318, 'Urjupinsk', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37319, 'Volgograd', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37320, 'Volzhskij', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37321, 'Zhirnovsk', 3071, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37322, 'Babajevo', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37323, 'Belozjorsk', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37324, 'Cherepovec', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37325, 'Grjazovec', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37326, 'Harovsk', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37327, 'Kaduj', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37328, 'Krasavino', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37329, 'Sheksna', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37330, 'Sokol', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37331, 'Totma', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37332, 'Velikij Ustjug', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37333, 'Vologda', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37334, 'Vytegra', 3072, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37335, 'Anna', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37336, 'Bobrov', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37337, 'Boguchar', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37338, 'Borisoglebsk', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37339, 'Buturlinovka', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37340, 'Ertil', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37341, 'Gribanovskij', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37342, 'Kalach', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37343, 'Kamenka', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37344, 'Kantemirovka', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37345, 'Liski', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37346, 'Novohopjorsk', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37347, 'Novovoronezh', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37348, 'Ostrogozhsk', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37349, 'Pavlovsk', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37350, 'Povorino', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37351, 'Pridonskij', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37352, 'Rossosh', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37353, 'Semiluki', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37354, 'Somovo', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37355, 'Talovaja', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37356, 'Voronezh', 3073, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37357, 'Butare', 3074, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37358, 'Nyanza', 3074, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37359, 'Byumba', 3075, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37360, 'Cyangugu', 3076, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37361, 'Gikongoro', 3077, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37362, 'Gisenyi', 3078, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37363, 'Gitarama', 3079, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37364, 'Kibungo', 3080, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37365, 'Rwamagana', 3080, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37366, 'Kibuye', 3081, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37367, 'Kigali', 3082, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37368, 'Ruhengeri', 3083, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37369, 'Georgetown', 3084, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37370, 'Anse-la-Raye', 3102, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37371, 'Canaries', 3103, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37372, 'Castries', 3104, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37373, 'Choc', 3104, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37374, 'Choiseul', 3105, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37375, 'Dennery', 3106, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37376, 'Laborie', 3108, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37377, 'Micoud', 3109, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37378, 'Soufriere', 3110, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37379, 'Miquelon', 3112, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37380, 'Saint-Pierre', 3113, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37381, 'Biabou', 3114, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37382, 'Byera', 3114, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37383, 'Georgetown', 3114, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37384, 'Dovers', 3115, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37385, 'Hamilton', 3115, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37386, 'Port Elizabeth', 3115, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37387, 'Falelatai', 3120, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37388, 'Mulifanua', 3121, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37389, 'Solosolo', 3122, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37390, 'Safotulafai', 3123, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37391, 'Samalae\'ulu', 3124, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37392, 'A\'opo', 3125, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37393, 'Taga', 3126, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37394, 'Gautavai', 3127, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37395, 'Apia', 3128, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37396, 'Samamea', 3129, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37397, 'Neiafu', 3130, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37398, 'Acquaviva', 3131, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37399, 'Chiesanuova', 3133, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37400, 'Domagnano', 3134, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37401, 'Faetano', 3135, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37402, 'Fiorentino', 3136, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37403, 'Montegiardino', 3137, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37404, 'Serravalle', 3139, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37405, 'Santana', 3141, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37406, 'Neves', 3142, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37407, 'Santo Amaro', 3143, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37408, 'Trindade', 3144, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37409, 'Santo Antonio', 3145, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37410, 'Mahayel', 3147, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37411, 'Abha', 3149, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37412, 'Abu \'Aris', 3149, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37413, 'Khamis Mushayt', 3149, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37414, 'Qal\'at Bishah', 3149, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37415, 'Ha\'il', 3152, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37416, 'Jawf', 3153, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37417, 'Sakakah', 3153, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37418, 'Jizan', 3154, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37419, 'Sabya', 3154, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37420, 'Makkah', 3155, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37421, 'Rabig', 3155, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37422, 'al-Hawiyah', 3155, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37423, 'at-Ta\'if', 3155, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37424, 'Dar\'iyah', 3156, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37425, 'Najran', 3156, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37426, 'Sharurah', 3156, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37427, '\'Unayzah', 3157, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37428, 'Buraydah', 3157, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37429, 'ar-Rass', 3157, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37430, 'Tabuk', 3158, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37431, 'Umm Lajj', 3158, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37432, 'al-Bahah', 3160, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37433, 'Ara\'ar', 3161, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37434, 'Rafha', 3161, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37435, 'Turayf', 3161, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37436, 'al-Qurayyat', 3161, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37437, 'Yanbu', 3162, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37438, 'al-Madinah', 3162, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37439, '\'Afif', 3163, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37440, 'ad-Dawadimi', 3163, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37441, 'ad-Dilam', 3163, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37442, 'al-Kharj', 3163, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37443, 'al-Majma\'ah', 3163, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37444, 'ar-Riyad', 3163, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37445, 'az-Zulfi', 3163, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37446, 'Dakar', 3164, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37447, 'Bambey', 3165, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37448, 'Diourbel', 3165, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37449, 'Mbacke', 3165, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37450, 'Touba', 3165, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37451, 'Diofior', 3166, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37452, 'Fatick', 3166, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37453, 'Foundiougne', 3166, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37454, 'Gossas', 3166, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37455, 'Guinguineo', 3166, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37456, 'Kahone', 3166, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37457, 'Passy', 3166, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37458, 'Sokone', 3166, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37459, 'Gandiaye', 3167, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37460, 'Kaffrine', 3167, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37461, 'Kaolack', 3167, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37462, 'Koungheul', 3167, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37463, 'Medina', 3167, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37464, 'Ndoffane Lagheme', 3167, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37465, 'Nioro du Rip', 3167, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37466, 'Toubakouta', 3167, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37467, 'Dabo', 3168, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37468, 'Goudomp', 3168, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37469, 'Kolda', 3168, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37470, 'Marsassoum', 3168, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37471, 'Medina Gounas', 3168, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37472, 'Sedhiou', 3168, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37473, 'Velingara', 3168, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37474, 'Wassadou', 3168, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37475, 'Dahra', 3169, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37476, 'Kebemer', 3169, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37477, 'Linguere', 3169, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37478, 'Louga', 3169, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37479, 'Dagana', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37480, 'Gollere', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37481, 'Kanel', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37482, 'Matam', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37483, 'Ndioum', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37484, 'Ourossogui', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37485, 'Podor', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37486, 'Richard Toll', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37487, 'Saint-Louis', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37488, 'Semme', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37489, 'Thilogne', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37490, 'Waounde', 3170, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37491, 'Bakel', 3171, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37492, 'Kedougou', 3171, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37493, 'Tambacounda', 3171, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37494, 'Joal-Fadiouth', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37495, 'Kayar', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37496, 'Khombole', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37497, 'Mbour', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37498, 'Meckhe', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37499, 'Nguekhokh', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37500, 'Pout', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37501, 'Thiadiaye', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37502, 'Thies', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37503, 'Tivaouane', 3172, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37504, 'Bignona', 3173, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37505, 'Oussouye', 3173, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37506, 'Thionck-Essyl', 3173, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37507, 'Ziguinchor', 3173, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37508, 'Cascade', 3179, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37509, 'Takamaka', 3180, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37510, 'Mahe', 3181, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37511, 'Biama', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37512, 'Daru', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37513, 'Kailahun', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37514, 'Kenema', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37515, 'Koidu', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37516, 'Koindu', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37517, 'Pendembu', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37518, 'Sefadu', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37519, 'Segbwema', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37520, 'Yengema', 3182, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37521, 'Kabala', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37522, 'Kambia', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37523, 'Lungi', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37524, 'Lunsar', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37525, 'Magburaka', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37526, 'Makeni', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37527, 'Mambolo', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37528, 'Moyamba', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37529, 'Pepel', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37530, 'Port Loko', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37531, 'Yele', 3183, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37532, 'Binkolo', 3184, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37533, 'Bo', 3184, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37534, 'Bonthe', 3184, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37535, 'Bumpe', 3184, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37536, 'Matru', 3184, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37537, 'Pujehun', 3184, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37538, 'Taiama', 3184, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37539, 'Freetown', 3185, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37540, 'York', 3185, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37541, 'Singapore', 3186, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37542, 'Banska Bystrica', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37543, 'Banska Shtiavnica', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37544, 'Brezno', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37545, 'Chierny Balog', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37546, 'Detva', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37547, 'Fil\'akovo', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37548, 'Hnusht\'a', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37549, 'Hrinova', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37550, 'Kremnica', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(37551, 'Krupina', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37552, 'Luchenec', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37553, 'Nova Bana', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37554, 'Podbrezova', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37555, 'Poltar', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37556, 'Revuca', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37557, 'Rimavska Sobota', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37558, 'Sliach', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37559, 'Tisovec', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37560, 'Tornal\'a', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37561, 'Vel\'ky Krtish', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37562, 'Vlkanova', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37563, 'Zharnovica', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37564, 'Zhiar', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37565, 'Ziar nad Hronom', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37566, 'Zvolen', 3187, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37567, 'Bernolakovo', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37568, 'Bratislava', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37569, 'Ivanka pri Dunaji', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37570, 'Malacky', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37571, 'Modra', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37572, 'Pezinok', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37573, 'Senec', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37574, 'Shenkvice', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37575, 'Stupava', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37576, 'Svaty Jur', 3188, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37577, 'Chana', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37578, 'Chierna nad Tisou', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37579, 'Dobshina', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37580, 'Gelnica', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37581, 'Kosice', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37582, 'Kral\'ovsky Chlmec', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37583, 'Krompachy', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37584, 'Medzev', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37585, 'Michalovce', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37586, 'Moldava nad Bodvou', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37587, 'Pavlovce nad Uhom', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37588, 'Rozhnava', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37589, 'Sechovce', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37590, 'Smizhany', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37591, 'Sobrance', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37592, 'Strazhske', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37593, 'Trebishov', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37594, 'Vel\'ke Kapushany', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37595, 'Vranov', 3189, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37596, 'Dvory nad Zhitavou', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37597, 'Hurbanovo', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37598, 'Kolarovo', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37599, 'Komarno', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37600, 'Komjatice', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37601, 'Levice', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37602, 'Levocha', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37603, 'Mocenok', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37604, 'Nesvady', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37605, 'Nitra', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37606, 'Nove Zamky', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37607, 'Palarikovo', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37608, 'Shahy', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37609, 'Shal\'a', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37610, 'Shturovo', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37611, 'Shurany', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37612, 'Svodin', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37613, 'Tlmache', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37614, 'Tvrdoshovce', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37615, 'Vrable', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37616, 'Zlate Moravce', 3190, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37617, 'Bardejov', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37618, 'Giraltovce', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37619, 'Humenne', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37620, 'Jarovnice', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37621, 'Kezhmarok', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37622, 'Lipany', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37623, 'Medzilaborce', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37624, 'Podolinec', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37625, 'Poprad', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37626, 'Preshov', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37627, 'Presov', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37628, 'Sabinov', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37629, 'Snina', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37630, 'Spishska Bela', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37631, 'Spishska Nova Ves', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37632, 'Spishske Podhradie', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37633, 'Stara L\'ubovna', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37634, 'Stropkov', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37635, 'Svidnik', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37636, 'Svit', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37637, 'Vel\'ky Sharish', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37638, 'Vysoke Tatry', 3191, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37639, 'Banovce', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37640, 'Belusha', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37641, 'Bojnice', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37642, 'Boshany', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37643, 'Dubnica', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37644, 'Handlova', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37645, 'Ilava', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37646, 'Lednicke Rovne', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37647, 'Lendak', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37648, 'Myjava', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37649, 'Nemshova', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37650, 'Nova Dubnica', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37651, 'Novaky', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37652, 'Nove Mesto', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37653, 'Partizanske', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37654, 'Povazhska Bystrica', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37655, 'Prievidza', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37656, 'Puchov', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37657, 'Stara Tura', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37658, 'Topol\'chany', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37659, 'Trenchianske Teplice', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37660, 'Trenchin', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37661, 'Trencin', 3192, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37662, 'Brezova pod Bradlom', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37663, 'Dunajska Streda', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37664, 'Gabchikovo', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37665, 'Galanta', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37666, 'Gbely', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37667, 'Hlohovec', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37668, 'Holich', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37669, 'Kuty', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37670, 'Leopoldov', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37671, 'Piesht\'any', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37672, 'Piestany', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37673, 'Senica', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37674, 'Sered\'', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37675, 'Shamorin', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37676, 'Shashtin-Strazhe', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37677, 'Shoporna', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37678, 'Skalica', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37679, 'Sladkovichovo', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37680, 'Trnava', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37681, 'Vel\'ke Ul\'any', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37682, 'Vel\'ky Meder', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37683, 'Vrbove', 3193, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37684, 'Bytcha', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37685, 'Chadca', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37686, 'Chierne', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37687, 'Dolny Kubin', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37688, 'Krasno nad Kysucou', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37689, 'Kysucke Nove Mesto', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37690, 'Liptovsky Hradok', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37691, 'Liptovsky Mikulash', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37692, 'Martin', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37693, 'Namestovo', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37694, 'Nizhna', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37695, 'Oshchadnica', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37696, 'Rabcha', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37697, 'Rajec', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37698, 'Rakova', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37699, 'Ruzhomberok', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37700, 'Ruzomberok', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37701, 'Shtiavnik', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37702, 'Skalite', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37703, 'Suchany', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37704, 'Terchova', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37705, 'Trstena', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37706, 'Turany', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37707, 'Turchianske Teplice', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37708, 'Turzovka', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37709, 'Tvrdoshin', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37710, 'Vel\'ke Rovne', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37711, 'Vrutky', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37712, 'Zakamenne', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37713, 'Zhilina', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37714, 'Zilina', 3194, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37715, 'Semic', 3195, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37716, 'Skofljica', 3195, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37717, 'Zelezniki', 3195, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37718, 'Begunje na Gorenjskem', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37719, 'Bistrica ob Trzhichu', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37720, 'Bled', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37721, 'Blejska Dobrava', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37722, 'Bohinjska Bistrica', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37723, 'Britof', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37724, 'Cerklje na Gorenjskem', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37725, 'Golnik', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37726, 'Gorenja Vas', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37727, 'Hrastje', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37728, 'Hrushica', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37729, 'Jesenice', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37730, 'Kokrica', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37731, 'Koroshka Bela', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37732, 'Kranj', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37733, 'Kranjska Gora', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37734, 'Krizhe', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37735, 'Kropa', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37736, 'Lesce', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37737, 'Mlaka pri Kranju', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37738, 'Mojstrana', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37739, 'Preddvor', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37740, 'Predoslje', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37741, 'Pristava', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37742, 'Radovljica', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37743, 'Shenchur', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37744, 'Shkofja Loka', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37745, 'Slovenski Javornik', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37746, 'Spodnja Besnica', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37747, 'Spodnje Gorje', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37748, 'Stara Loka', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37749, 'Sveti Duh', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37750, 'Trzhich', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37751, 'Visoko', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37752, 'Zasip', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37753, 'Zgornje Bitnje', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37754, 'Zhelezniki', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37755, 'Zhiri', 3196, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37756, 'Ajdovshchina', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37757, 'Bilje', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37758, 'Bovec', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37759, 'Branik', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37760, 'Cerkno', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37761, 'Deskle', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37762, 'Idrija', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37763, 'Kanal', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37764, 'Kobarid', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37765, 'Kromberk', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37766, 'Lokavec', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37767, 'Miren', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37768, 'Nova Gorica', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37769, 'Prvachina', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37770, 'Renche', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37771, 'Rozhna Dolina', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37772, 'Shempas', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37773, 'Shempeter', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37774, 'Solkan', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37775, 'Spodnja Idrija', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37776, 'Tolmin', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37777, 'Vipava', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37778, 'Vrtojba', 3197, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37779, 'Chrna na Koroshkem', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37780, 'Dravograd', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37781, 'Legen', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37782, 'Mezhica', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37783, 'Mislinja', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37784, 'Muta', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37785, 'Otishki Vrh', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37786, 'Pameche', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37787, 'Podgorje', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37788, 'Prevalje', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37789, 'Radlje ob Dravi', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37790, 'Ravne', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37791, 'Shmartno pri Slovenj Gradcu', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37792, 'Slovenj Gradec', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37793, 'Vuhred', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37794, 'Vuzenica', 3199, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37795, 'Cerknica', 3200, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37796, 'Ilirska Bistrica', 3200, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37797, 'Pivka', 3200, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37798, 'Postojna', 3200, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37799, 'Rakek', 3200, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37800, 'Stari trg pri Lozhu', 3200, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37801, 'Ankaran', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37802, 'Bertoki', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37803, 'Dekani', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37804, 'Divacha', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37805, 'Hrvatni', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37806, 'Izola', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37807, 'Jagodje', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37808, 'Koper', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37809, 'Lucija', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37810, 'Pareceg', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37811, 'Piran', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37812, 'Pobegi', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37813, 'Portorozh', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37814, 'Prade', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37815, 'Secha', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37816, 'Sezhana', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37817, 'Spodnje Shkofije', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37818, 'Sveti Anton', 3201, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37819, 'Borovnica', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37820, 'Brezovica pri Ljubljani', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37821, 'Dob', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37822, 'Dobrova', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37823, 'Domzhale', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37824, 'Dragomer', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37825, 'Grosuplje', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37826, 'Horjul', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37827, 'Ig', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37828, 'Ivanchna Gorica', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37829, 'Kamnik', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37830, 'Komenda', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37831, 'Lavrica', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37832, 'Litija', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37833, 'Ljubljana', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37834, 'Log pri Brezovici', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37835, 'Logatec', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37836, 'Medvode', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37837, 'Mekinje', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37838, 'Mengesh', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37839, 'Moravche', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37840, 'Notranje', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37841, 'Podgorje', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37842, 'Preserje pri Radomljah', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37843, 'Radomlje', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37844, 'Rovte', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37845, 'Shentvid pri Stichni', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37846, 'Shkofljica', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37847, 'Shmarca', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37848, 'Shmartno pri Litiji', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37849, 'Smarje-Sap', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37850, 'Trzin', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37851, 'Verd', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37852, 'Vir', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37853, 'Vishnja Gora', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37854, 'Vnanje Gorice', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37855, 'Vodice', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37856, 'Vrhnika', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37857, 'Zgornje Pirniche', 3204, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37858, 'Bistrica ob Dravi', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37859, 'Bresternica', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37860, 'Bukovci', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37861, 'Dogoshe', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37862, 'Dornava', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37863, 'Fram', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37864, 'Hotinja Vas', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37865, 'Kamnica', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37866, 'Kidrichevo', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37867, 'Koshaki', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37868, 'Krchevina pri Vurbergu', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37869, 'Lenart', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37870, 'Limbush', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37871, 'Lovrenc na Pohorju', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37872, 'Maribor', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37873, 'Miklavzh na Dravskem Polju', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37874, 'Ormozh', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37875, 'Pekre', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37876, 'Pesnica pri Mariboru', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37877, 'Pobrezhje', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37878, 'Podvinci', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37879, 'Poljchane', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37880, 'Pragersko', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37881, 'Ptuj', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37882, 'Rache', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37883, 'Radizel', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37884, 'Razvanje', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37885, 'Rogoza', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37886, 'Rushe', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37887, 'Selnica ob Dravi', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37888, 'Selnica ob Muri', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37889, 'Shentilj', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37890, 'Skoke', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37891, 'Slovenska Bistrica', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37892, 'Spodnja Polskava', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37893, 'Spodnje Hoche', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37894, 'Spodnji Duplek', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37895, 'Spuhlja', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37896, 'Sredishche ob Dravi', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37897, 'Stojnci', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37898, 'Zgornja Polskava', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37899, 'Zgornje Poljchane', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37900, 'Zgornji Duplek', 3205, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37901, 'Bakovci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37902, 'Beltinci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37903, 'Chernelavci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37904, 'Chrenshovci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37905, 'Dobrovnik', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37906, 'Doklezhovje', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37907, 'Ganchani', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37908, 'Gornja Radgona', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37909, 'Izhakovci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37910, 'Krog', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37911, 'Lendava', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37912, 'Lipovci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37913, 'Ljutomer', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37914, 'Melinci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37915, 'Murska Sobota', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37916, 'Odranci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37917, 'Petishovci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37918, 'Radenci', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37919, 'Rakichan', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37920, 'Turnishche', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37921, 'Velika Polana', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37922, 'Verzej', 3206, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37923, 'Breg pri Polzeli', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37924, 'Celje', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37925, 'Gornji Grad', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37926, 'Gotovlje', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37927, 'Kasaze', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37928, 'Lashko', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37929, 'Ljubechna', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37930, 'Ljubno ob Savinji', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37931, 'Loka pri Zusmu', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37932, 'Lokovica', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37933, 'Mozirje', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37934, 'Naklo', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37935, 'Nazarje', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37936, 'Oplotnica', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37937, 'Petrovche', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37938, 'Polzela', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37939, 'Prebold', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37940, 'Radeche', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37941, 'Ravne', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37942, 'Rimske Toplica', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37943, 'Rogashka Slatina', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37944, 'Rogatec', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37945, 'Sentjernej', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37946, 'Shempeter', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37947, 'Shentjur', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37948, 'Shkale', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37949, 'Shmarje pri Jelshah', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37950, 'Shoshtanj', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37951, 'Shtore', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37952, 'Slovenske Konjice', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37953, 'Topolshica', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37954, 'Trnovlje pri Celju', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37955, 'Velenje', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37956, 'Vitanje', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37957, 'Vojnik', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37958, 'Zabukovica', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37959, 'Zadobrova', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37960, 'Zhalec', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37961, 'Zreche', 3207, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37962, 'Brestanica', 3209, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37963, 'Brezhice', 3209, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37964, 'Krshko', 3209, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37965, 'Leskovac pri Krshkem', 3209, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37966, 'Senovo', 3209, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37967, 'Sevnica', 3209, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37968, 'Dol pri Hrastniku', 3210, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37969, 'Hrastnik', 3210, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37970, 'Izlake', 3210, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37971, 'Kisovec', 3210, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37972, 'Trbovlje', 3210, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37973, 'Zagorje ob Savi', 3210, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37974, 'Adamstown', 3211, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37975, 'Tulagi', 3212, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37976, 'Taro Island', 3213, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37977, 'Honiara', 3214, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37978, 'Buala', 3215, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37979, 'Auki', 3217, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37980, 'Lata', 3219, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37981, 'Gizo', 3220, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37982, 'Baki', 3221, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37983, 'Borama', 3221, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37984, 'Gebilay', 3221, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37985, 'Sayla\'', 3221, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37986, 'Tayeglo', 3222, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37987, 'Xuddur', 3222, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37988, 'Yet', 3222, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37989, 'Muqdisho', 3223, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37990, '\'Alula', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37991, 'Bandarbeyla', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37992, 'Bandarmu\'ayo', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37993, 'Bargal', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37994, 'Bereda', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37995, 'Bosaso', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37996, 'Iskushuban', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37997, 'Qandala', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37998, 'Qardho', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(37999, 'Xafun', 3224, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38000, 'Baydhabo', 3225, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38001, 'Bur Hakkaba', 3225, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38002, 'Dinsor', 3225, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38003, '\'Elbur', 3226, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38004, '\'Eldhere', 3226, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38005, 'Dhusa Marreb', 3226, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38006, 'Bardhere', 3227, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38007, 'Dolaw', 3227, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38008, 'Dujuma', 3227, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38009, 'Garbaharey', 3227, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38010, 'Luq', 3227, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38011, 'Sa\'o', 3227, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38012, 'Wajid', 3227, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38013, 'Bal\'ad', 3228, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38014, 'Beled Weyne', 3228, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38015, 'Bulobarde', 3228, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38016, 'Jalalassi', 3228, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38017, 'Galka\'yo', 3231, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38018, 'Hobyo', 3231, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38019, 'Xarardhere', 3231, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38020, 'Eyl', 3232, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38021, 'Garowe', 3232, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38022, 'Las\'anod', 3232, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38023, '\'Erigabo', 3233, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38024, 'Lasqoray', 3233, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38025, '\'Ek', 3236, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38026, 'Bur\'o', 3236, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38027, 'Odweyne', 3236, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38028, 'Alberton', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38029, 'Alrode', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38030, 'Benmore', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38031, 'Benoni', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38032, 'Boksburg', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38033, 'Booysens', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38034, 'Brakpan', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38035, 'Bronkhorstspruit', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38036, 'Bryanston', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38037, 'Carltonville', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38038, 'Centurion', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38039, 'Cullinan', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38040, 'Dainfern', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38041, 'Edenvale', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38042, 'Ferndale', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38043, 'Fourways', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38044, 'Gardenview', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38045, 'Gauteng', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38046, 'Grant Park', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38047, 'Heidelberg', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38048, 'Isando', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38049, 'Johannesburg', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38050, 'Kelvin', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38051, 'Krugersdorp', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38052, 'Linmeyer', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38053, 'Maraisburg', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38054, 'Midrand', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38055, 'Nigel', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38056, 'Northmead', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38057, 'Petervale', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38058, 'Pinegowrie', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38059, 'Pretoria', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38060, 'Primrose', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38061, 'Randburg', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38062, 'Randfontein', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38063, 'Randvaal', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38064, 'Rivonia', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38065, 'Robertville', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38066, 'Soweto', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38067, 'Springs', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38068, 'Temba', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38069, 'Tembisa', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38070, 'Troyeville', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38071, 'Vanderbijlpark', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38072, 'Vereeniging', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38073, 'Verwoerdburg', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38074, 'Vorna Valley', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38075, 'Wadeville', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38076, 'Westonaria', 3240, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38077, 'Sandton', 3242, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38078, 'Bela-Bela', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38079, 'Dendron', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38080, 'Duiwelskloof', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38081, 'Ellisras', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38082, 'Giyani', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38083, 'Lebowakgomo', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38084, 'Louis Trichardt', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38085, 'Lulekani', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38086, 'Mankweng', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38087, 'Messina', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38088, 'Mogalakwena', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38089, 'Mutale', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38090, 'Nkowakowa', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38091, 'Nylstroom', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38092, 'Phalaborwa', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38093, 'Pietersburg', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38094, 'Polokwane', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38095, 'Soekmekaar', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38096, 'Southdale', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38097, 'Thabazimbi', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38098, 'Thohoyandou', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38099, 'Thulamahashe', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38100, 'Tzaneen', 3244, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38101, 'Botleng', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38102, 'Ekangala', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38103, 'Embalenhle', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38104, 'Emjindini', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38105, 'Empuluzi', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38106, 'Emzinoni', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38107, 'Ermelo', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38108, 'Ethandakukhanja', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38109, 'Groblersdal', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38110, 'Komatipoort', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38111, 'Kriel', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38112, 'KwaZanele', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38113, 'Kwazamokuhle', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38114, 'Lebohang', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38115, 'Marblehall', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38116, 'Mashishing', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38117, 'Mhluzi', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38118, 'Nelspruit', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38119, 'Phola', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38120, 'Sakhile', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38121, 'Secunda', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38122, 'Siyabuswa', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38123, 'Siyathemba', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(38124, 'Siyathuthuka', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38125, 'Vukuzakhe', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38126, 'Witbank', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38127, 'Witrivier', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38128, 'eLukwatini', 3245, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38129, 'Parow', 3248, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38130, 'Umtentweni', 3250, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38131, 'ALbatera', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38132, 'Alacant', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38133, 'Alcoi', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38134, 'Almoradi', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38135, 'Altea', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38136, 'Aspe', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38137, 'Benidorm', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38138, 'Benissa', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38139, 'Callosa de Segura', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38140, 'Calp', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38141, 'Cocentaina', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38142, 'Crevillent', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38143, 'Denia', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38144, 'El Campello', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38145, 'Elda', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38146, 'Elx', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38147, 'Guardamar del Segura', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38148, 'Ibi', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38149, 'L\'Alfas del Pi', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38150, 'La Vila Joiosa', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38151, 'Monover', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38152, 'Mutxamel', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38153, 'Novelda', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38154, 'Orihuela', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38155, 'Pedreguer', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38156, 'Pego', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38157, 'Petrer', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38158, 'Pilar de la Horadada', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38159, 'Pinoso', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38160, 'Rojales', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38161, 'Sant Joan d\'Alacant', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38162, 'Sant Vicent del Raspeig', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38163, 'Santa Pola', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38164, 'Sax', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38165, 'Teulada', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38166, 'Torrevieja', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38167, 'Villena', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38168, 'Xabia', 3255, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38169, 'Amurrio', 3256, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38170, 'Llodio', 3256, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38171, 'Vitoria', 3256, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38172, 'Albacete', 3257, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38173, 'Almansa', 3257, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38174, 'Caudete', 3257, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38175, 'Hellin', 3257, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38176, 'La Roda', 3257, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38177, 'Villarrobledo', 3257, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38178, 'Adra', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38179, 'Albox', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38180, 'Almeria', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38181, 'Berja', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38182, 'Cuevas del Almanzora', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38183, 'El Ejido', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38184, 'Huercal de Almeria', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38185, 'Huercal-Overa', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38186, 'Nijar', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38187, 'Roquetas de Mar', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38188, 'Vicar', 3258, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38189, 'Benalmadena', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38190, 'Aller', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38191, 'Aviles', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38192, 'C/ Pena Salon', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38193, 'Cangas del Narcea', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38194, 'Carreno', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38195, 'Castrillon', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38196, 'Corvera de Asturias', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38197, 'Gijon', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38198, 'Gozon', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38199, 'Grado', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38200, 'Langreo', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38201, 'Laviana', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38202, 'Lena', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38203, 'Llanera', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38204, 'Llanes', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38205, 'Mieres', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38206, 'Navia', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38207, 'Oviedo', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38208, 'Pilona', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38209, 'Pravia', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38210, 'San Martin del Rey Aurelio', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38211, 'Siero', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38212, 'Tineo', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38213, 'Valdes', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38214, 'Villaviciosa', 3260, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38215, 'Avila', 3261, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38216, 'Almendralejo', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38217, 'Azuaga', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38218, 'Badajoz', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38219, 'Don Benito', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38220, 'Jerez de los Caballeros', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38221, 'Merida', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38222, 'Montijo', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38223, 'Olivenza', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38224, 'Villafranca de los Barros', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38225, 'Villanueva de la Serena', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38226, 'Zafra', 3262, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38227, 'Alayor-Menorca', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38228, 'Alcudia', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38229, 'Calvia', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38230, 'Capdepera', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38231, 'Ciutadella de Menorca', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38232, 'Eivissa', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38233, 'Felanitx', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38234, 'Inca', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38235, 'Llucmajor', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38236, 'Mahon', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38237, 'Manacor', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38238, 'Marratxi', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38239, 'Palma', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38240, 'Pollenca', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38241, 'Sa Pobla', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38242, 'Sant Antoni de Portmany', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38243, 'Sant Josep de sa Talaia', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38244, 'Santa Eulalia del Rio', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38245, 'Santanyi', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38246, 'Soller', 3263, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38247, 'Abrera', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38248, 'Alella', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38249, 'Arenys de Mar', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38250, 'Argentona', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38251, 'Badalona', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38252, 'Badia del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38253, 'Barbera del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38254, 'Barcelona', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38255, 'Berga', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38256, 'Cabrera de Mar', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38257, 'Caldes de Montbui', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38258, 'Calella', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38259, 'Canet de Mar', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38260, 'Canovelles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38261, 'Cardedeu', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38262, 'Castellar del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38263, 'Castellbisbal', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38264, 'Castelldefels', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38265, 'Cerdanyola', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38266, 'Corbera de Llobregat', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38267, 'Cornella', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38268, 'El Masnou', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38269, 'El Prat de Llobregat', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38270, 'Esparreguera', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38271, 'Esplugues de Llobregat', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38272, 'Gava', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38273, 'Granollers', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38274, 'Igualada', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38275, 'L\'Hospitalet de Llobregat', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38276, 'La Garriga', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38277, 'La Llagosta', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38278, 'Les Franquesas del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38279, 'Llica d\'Amunt', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38280, 'Malgrat de Mar', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38281, 'Manlleu', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38282, 'Manresa', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38283, 'Martorell', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38284, 'Mataro', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38285, 'Molins de Rei', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38286, 'Mollet del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38287, 'Montcada i Reixac', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38288, 'Montgat', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38289, 'Montmelo', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38290, 'Montornes del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38291, 'Olesa de Montserrat', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38292, 'Palau-solita i Plegamans', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38293, 'Palleja', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38294, 'Parets del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38295, 'Piera', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38296, 'Pineda de Mar', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38297, 'Premia de Dalt', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38298, 'Premia de Mar', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38299, 'Ripollet', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38300, 'Rubi', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38301, 'Sabadell', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38302, 'Sant Adria de Besos', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38303, 'Sant Andreu de la Barca', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38304, 'Sant Boi de Llobregat', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38305, 'Sant Celoni', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38306, 'Sant Cugat del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38307, 'Sant Feliu de Llobregat', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38308, 'Sant Joan Despi', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38309, 'Sant Joan de Vilatorrada', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38310, 'Sant Just Desvern', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38311, 'Sant Pere de Ribes', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38312, 'Sant Quirze del Valles', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38313, 'Sant Sadurni d\'Anoia', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38314, 'Sant Vicenc dels Horts', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38315, 'Santa Coloma de Gramenet', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38316, 'Santa Margarida de Montbui', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38317, 'Santa Perpetua de Mogoda', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38318, 'Sitges', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38319, 'Son Servera', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38320, 'Terrassa', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38321, 'Tordera', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38322, 'Torello', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38323, 'Vallirana', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38324, 'Vic', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38325, 'Viladecans', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38326, 'Viladecavalls', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38327, 'Vilafranca del Penedes', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38328, 'Vilanova del Cami', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38329, 'Vilanova i la Geltru', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38330, 'Vilassar del Mar', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38331, 'Bertamirans', 3254, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38332, 'Berriatua', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38333, 'Derio', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38334, 'Elorio', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38335, 'Loiu', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38336, 'Aranda de Duero', 3267, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38337, 'Burgos', 3267, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38338, 'Miranda de Ebro', 3267, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38339, 'Caceres', 3268, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38340, 'Coria', 3268, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38341, 'Miajadas', 3268, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38342, 'Navalmoral de la Mata', 3268, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38343, 'Plasencia', 3268, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38344, 'Talayuela', 3268, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38345, 'Trujillo', 3268, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38346, 'Algeciras', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38347, 'Arcos de la Frontera', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38348, 'Barbate', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38349, 'Cadiz', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38350, 'Chiclana', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38351, 'Chipiona', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38352, 'Conil', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38353, 'El Puerto de Santa Maria', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38354, 'Jerez', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38355, 'Jimena de la Frontera', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38356, 'La Linea', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38357, 'Los Barrios', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38358, 'Medina-Sidonia', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38359, 'Olvera', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38360, 'Puerto Real', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38361, 'Rota', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38362, 'San Fernando', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38363, 'San Roque', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38364, 'Sanlucar de Barrameda', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38365, 'Tarifa', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38366, 'Ubrique', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38367, 'Vejer de la Frontera', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38368, 'Villamartin', 3269, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38369, 'Camargo', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38370, 'Castro-Urdiales', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38371, 'El Astillero', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38372, 'Laredo', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38373, 'Los Corrales de Buelna', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38374, 'Pielagos', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38375, 'Reinosa', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38376, 'San Felices De Buelna', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38377, 'Santa Cruz de Bezana', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38378, 'Santander', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38379, 'Santona', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38380, 'Torrelavega', 3270, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38381, 'Almassora', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38382, 'Benicarlo', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38383, 'Benicassim', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38384, 'Burriana', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38385, 'Castello', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38386, 'L\'Alcora', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38387, 'La Vall d\'Uixo', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38388, 'Nules', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38389, 'Onda', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38390, 'Segorbe', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38391, 'Vila-real', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38392, 'Vinaros', 3271, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38393, 'Barcelona', 3264, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38394, 'Ceuta', 3273, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38395, 'Aguilar de la Frontera', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38396, 'Baena', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38397, 'Bujalance', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38398, 'Cabra', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38399, 'Cordoba', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38400, 'Fernan-Nunez', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38401, 'Fuente Palmera', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38402, 'La Carlota', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38403, 'Lucena', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38404, 'Luque', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38405, 'Montilla', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38406, 'Montoro', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38407, 'Palma del Rio', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38408, 'Penarroya-Pueblonuevo', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38409, 'Pozoblanco', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38410, 'Priego de Cordoba', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38411, 'Puente Genil', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38412, 'Rute', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38413, 'Villanueva de Cordoba', 3281, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38414, 'Cuenca', 3282, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38415, 'Tarancon', 3282, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38416, 'Aduna', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38417, 'Lazakao', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38418, 'Banyoles', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38419, 'Blanes', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38420, 'Empuriabrava', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38421, 'Figueres', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38422, 'Girona', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38423, 'La Bisbal d\'Emporda', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38424, 'Lloret de Mar', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38425, 'Massanet de la Selva', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38426, 'Olot', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38427, 'Palafrugell', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38428, 'Palamos', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38429, 'Ripoll', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38430, 'Roses', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38431, 'Salt', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38432, 'Sant Feliu de Guixols', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38433, 'Santa Coloma de Farners', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38434, 'Torroella de Montgri', 3284, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38435, 'Albolote', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38436, 'Almunecar', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38437, 'Armilla', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38438, 'Atarfe', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38439, 'Baza', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38440, 'Granada', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38441, 'Guadix', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38442, 'Huescar', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38443, 'Huetor Tajar', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38444, 'Huetor Vega', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38445, 'Illora', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38446, 'La Zubia', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38447, 'Las Gabias', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38448, 'Loja', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38449, 'Maracena', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38450, 'Motril', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38451, 'Ogijares', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38452, 'Peligros', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38453, 'Pinos Puente', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38454, 'Salobrena', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38455, 'Santa Fe', 3285, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38456, 'Azuqueca de Henares', 3286, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38457, 'Guadalajara', 3286, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38458, 'Andoain', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38459, 'Anoeta', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38460, 'Arrasate', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38461, 'Azkoitia', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38462, 'Azpeitia', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38463, 'Beasain', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38464, 'Bergara', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38465, 'Donostia', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38466, 'Eibar', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38467, 'Elgoibar', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38468, 'Errenteria', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38469, 'Guipuuzcoa', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38470, 'Hernani', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38471, 'Hondarribia', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38472, 'Irun', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38473, 'Legazpi', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38474, 'Mendaro', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38475, 'Mondragon', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38476, 'Oiartzun', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38477, 'Onati', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38478, 'Ordizia', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38479, 'Oria', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38480, 'Pasaia', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38481, 'Tolosa', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38482, 'Zarautz', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38483, 'Zumaia', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38484, 'Zumarraga', 3287, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38485, 'Aljaraque', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38486, 'Almonte', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38487, 'Ayamonte', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38488, 'Bollullos Par del Condado', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38489, 'Cartaya', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38490, 'Gibraleon', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38491, 'Huelva', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38492, 'Isla Cristina', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38493, 'La Palma del Condado', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38494, 'Lepe', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38495, 'Moguer', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38496, 'Punta Umbria', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38497, 'Valverde del Camino', 3288, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38498, 'Barbastro', 3289, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38499, 'Binefar', 3289, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38500, 'Fraga', 3289, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38501, 'Huesca', 3289, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38502, 'Jaca', 3289, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38503, 'Monzon', 3289, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38504, 'Sabinanigo', 3289, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38505, 'Alcala la Real', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38506, 'Alcaudete', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38507, 'Andujar', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38508, 'Baeza', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38509, 'Bailen', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38510, 'Cazorla', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38511, 'Jaen', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38512, 'Jodar', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38513, 'La Carolina', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38514, 'Linares', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38515, 'Mancha Real', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38516, 'Martos', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38517, 'Mengibar', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38518, 'Torre del Campo', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38519, 'Torredonjimeno', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38520, 'Ubeda', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38521, 'Villacarrillo', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38522, 'Villanueva del Arzobispo', 3290, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38523, 'Astorga', 3293, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38524, 'Bembibre', 3293, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38525, 'La Baneza', 3293, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38526, 'Leon', 3293, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38527, 'Ponferrada', 3293, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38528, 'San Andres del Rabanedo', 3293, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38529, 'Villablino', 3293, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38530, 'Villaquilambre', 3293, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38531, 'Tora', 3295, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38532, 'Balaguer', 3295, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38533, 'La Seu d\'Urgell', 3295, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38534, 'Lleida', 3295, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38535, 'Mollerussa', 3295, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38536, 'Tarrega', 3295, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38537, 'Burela', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38538, 'Cervo', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38539, 'Chantada', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38540, 'Foz', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38541, 'Lugo', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38542, 'Monforte de Lemos', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38543, 'Ribadeo', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38544, 'Sarria', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38545, 'Vilalba', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38546, 'Viveiro', 3296, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38547, 'Alcala de Henares', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38548, 'Alcobendas', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38549, 'Alcorcon', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38550, 'Algete', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38551, 'Alpedrete', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38552, 'Aranjuez', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38553, 'Arganda del Rey', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38554, 'Boadilla del Monte', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38555, 'Ciempozuelos', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38556, 'Collado Villalba', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38557, 'Colmenar Viejo', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38558, 'Coslada', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38559, 'El Escorial', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38560, 'Fuenlabrada', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38561, 'Galapagar', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38562, 'Getafe', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38563, 'Guadarrama', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38564, 'Humanes de Madrid', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38565, 'Las Rozas de Madrid', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38566, 'Leganes', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38567, 'Madrid', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38568, 'Majadahonda', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38569, 'Meco', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38570, 'Mejorada del Campo', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38571, 'Mostoles', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38572, 'Navalcarnero', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38573, 'Parla', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38574, 'Pinto', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38575, 'Pozuelo de Alarcon', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38576, 'Rivas-Vaciamadrid', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38577, 'San Fernando de Henares', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38578, 'San Lorenzo de El Escorial', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38579, 'San Martin de la Vega', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38580, 'San Sebastian de los Reyes', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38581, 'Torrejon de Ardoz', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38582, 'Torrelodones', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38583, 'Tres Cantos', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38584, 'Valdemoro', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38585, 'Velilla de San Antonio', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38586, 'Villanueva de la Canada', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38587, 'Villaviciosa de Odon', 3297, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38588, 'Alhaurin de la Torre', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38589, 'Alhaurin el Grande', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38590, 'Alora', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38591, 'Antequera', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38592, 'Apartado', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38593, 'Archidona', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38594, 'Benalmadena', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38595, 'Cartama', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38596, 'Coin', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38597, 'Estepona', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38598, 'Fuengirola', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38599, 'Malaga', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38600, 'Marbella', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38601, 'Mijas', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38602, 'Nerja', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38603, 'Rincon de la Victoria', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38604, 'Ronda', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38605, 'Torremolinos', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38606, 'Torrox', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38607, 'Velez-Malaga', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38608, 'maro', 3298, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38609, 'Melilla', 3299, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38610, 'Abaran', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38611, 'Aguilas', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38612, 'Alcantarilla', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38613, 'Alhama de Murcia', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38614, 'Archena', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38615, 'Beniel', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38616, 'Bullas', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38617, 'Calasparra', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38618, 'Caravaca de la Cruz', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38619, 'Cartagena', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38620, 'Cehegin', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38621, 'Cieza', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38622, 'Fuente Alamo de Murcia', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38623, 'Jumilla', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38624, 'La Union', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38625, 'Las Torres de Cotillas', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38626, 'Lorca', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38627, 'Los Alcazares', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38628, 'Mazarron', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38629, 'Molina de Segura', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38630, 'Moratella', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38631, 'Mula', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38632, 'Murcia', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38633, 'Puerto Lumbreras', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38634, 'San Javier', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38635, 'San Pedro del Pinatar', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38636, 'Santomera', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38637, 'Torre Pacheco', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38638, 'Torre-Pacheco', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38639, 'Totana', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38640, 'Yecla', 3300, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38641, 'Ansoain', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38642, 'Atarrabia', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38643, 'Baranain', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38644, 'Burlata', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38645, 'Iruna', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38646, 'Lizarra', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38647, 'Navarra', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38648, 'Orkoien', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38649, 'Tafalla', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38650, 'Tudela', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38651, 'Zizur Nagusia', 3301, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38652, 'O Barco de Valdeorras', 3302, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38653, 'O Carballino', 3302, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38654, 'Ourense', 3302, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38655, 'Verin', 3302, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38656, 'Xinzo de Limia', 3302, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38657, 'Guardo', 3304, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38658, 'Palencia', 3304, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38659, 'A Estrada', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38660, 'A Guarda', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38661, 'Baiona', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38662, 'Bueu', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38663, 'Caldas de Reis', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38664, 'Cambados', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38665, 'Cangas', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38666, 'Cangas De Morrazo', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38667, 'Gondomar', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38668, 'Lalin', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38669, 'Marin', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38670, 'Moana', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38671, 'Mos', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38672, 'Nigran', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38673, 'O Grove', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38674, 'O Porrino', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38675, 'Poio', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38676, 'Ponteareas', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38677, 'Pontevedra', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38678, 'Redondela', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38679, 'Salvaterra de Mino', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38680, 'Sanxenxo', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38681, 'Silleda', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38682, 'Tomino', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38683, 'Tui', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38684, 'Vigo', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38685, 'Vilagarcia de Arousa', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38686, 'Vilanova de Arousa', 3305, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38687, 'Bejar', 3306, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38688, 'Ciudad Rodrigo', 3306, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(38689, 'Salamanca', 3306, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38690, 'Santa Marta de Tormes', 3306, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38691, 'Cuellar', 3308, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38692, 'Segovia', 3308, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38693, 'Alcala de Guadaira', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38694, 'Alcala del Rio', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38695, 'Arahal', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38696, 'Bormujos', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38697, 'Brenes', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38698, 'Camas', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38699, 'Cantillana', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38700, 'Carmona', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38701, 'Castilleja de la Cuesta', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38702, 'Coria del Rio', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38703, 'Dos Hermanas', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38704, 'Ecija', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38705, 'El Viso del Alcor', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38706, 'Estepa', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38707, 'Gines', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38708, 'Guillena', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38709, 'La Algaba', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38710, 'La Puebla de Cazalla', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38711, 'La Puebla del Rio', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38712, 'La Rinconada', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38713, 'Las Cabezas de San Juan', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38714, 'Lebrija', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38715, 'Lora del Rio', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38716, 'Los Palacios y Villafranca', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38717, 'Mairena del Alcor', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38718, 'Mairena del Aljarafe', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38719, 'Marchena', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38720, 'Moron de la Frontera', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38721, 'Olivares', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38722, 'Osuna', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38723, 'Pilas', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38724, 'San Juan de Aznalfarache', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38725, 'Sanlucar la Mayor', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38726, 'Sevilla', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38727, 'Tocina', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38728, 'Tomares', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38729, 'Utrera', 3309, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38730, 'Soria', 3310, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38731, 'Alcanar', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38732, 'Amposta', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38733, 'Calafell', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38734, 'Cambrils', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38735, 'Deltrebe', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38736, 'El Vendrell', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38737, 'Reus', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38738, 'Salou', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38739, 'Sant Carles de la Rapita', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38740, 'Tarragona', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38741, 'Torredembarra', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38742, 'Tortosa', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38743, 'Valls', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38744, 'Vila-seca', 3311, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38745, 'Tenerife', 3312, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38746, 'Alcaniz', 3313, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38747, 'Teruel', 3313, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38748, 'Consuegra', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38749, 'Illescas', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38750, 'Madridejos', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38751, 'Mora', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38752, 'Pepino', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38753, 'Quintanar de la Orden', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38754, 'Sonseca', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38755, 'Talavera de la Reina', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38756, 'Toledo', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38757, 'Torrijos', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38758, 'Villacanas', 3314, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38759, 'Agullent', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38760, 'Alaquas', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38761, 'Albal', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38762, 'Alberic', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38763, 'Alboraya', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38764, 'Aldaia', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38765, 'Alfafar', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38766, 'Algemesi', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38767, 'Alginet', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38768, 'Alzira', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38769, 'Benaguasil', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38770, 'Benetusser', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38771, 'Benifaio', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38772, 'Beniparrell', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38773, 'Betera', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38774, 'Bunol', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38775, 'Burjassot', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38776, 'Canals', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38777, 'Carcaixent', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38778, 'Carlet', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38779, 'Catarroja', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38780, 'Chiva', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38781, 'Cullera', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38782, 'Elche', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38783, 'Gandia', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38784, 'Godella', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38785, 'L\'Alcudia', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38786, 'L\'Eliana', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38787, 'La Pobla de Vallbona', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38788, 'Lliria', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38789, 'Los Montesinos', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38790, 'Manises', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38791, 'Massamagrell', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38792, 'Meliana', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38793, 'Mislata', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38794, 'Moncada', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38795, 'Oliva', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38796, 'Ontinyent', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38797, 'Paiporta', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38798, 'Paterna', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38799, 'Picanya', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38800, 'Picassent', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38801, 'Pucol', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38802, 'Quart de Poblet', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38803, 'Requena', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38804, 'Riba-roja de Turia', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38805, 'Sagunt', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38806, 'Sedavi', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38807, 'Silla', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38808, 'Sueca', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38809, 'Tavernes Blanques', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38810, 'Tavernes de la Valldigna', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38811, 'Torrent', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38812, 'Utiel', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38813, 'Valencia', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38814, 'Xativa', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38815, 'Xirivella', 3315, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38816, 'Laguna de Duero', 3316, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38817, 'Medina del Campo', 3316, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38818, 'Tordesillas', 3316, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38819, 'Valladolid', 3316, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38820, 'Abadiano', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38821, 'Abanto Zierbena', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38822, 'Amorebieta', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38823, 'Arrigorriaga', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38824, 'Barakaldo', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38825, 'Basauri', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38826, 'Bermeo', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38827, 'Berriz', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38828, 'Bilbao', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38829, 'Durango', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38830, 'Erandio', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38831, 'Ermua', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38832, 'Etxano', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38833, 'Galdakao', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38834, 'Gernika-Lumo', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38835, 'Getxo', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38836, 'Igorre', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38837, 'Leioa', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38838, 'Mungia', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38839, 'Ondarroa', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38840, 'Ortuella', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38841, 'Portugalete', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38842, 'Santurtzi', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38843, 'Sestao', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38844, 'Sopelana', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38845, 'Trapagaran', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38846, 'Zamudio', 3317, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38847, 'Benavente', 3318, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38848, 'Toro', 3318, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38849, 'Zamora', 3318, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38850, 'Calatayud', 3319, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38851, 'Ejea de los Caballeros', 3319, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38852, 'Tarazona', 3319, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38853, 'Utebo', 3319, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38854, 'Zaragoza', 3319, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38855, 'Amparai', 3320, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38856, 'Galmune', 3320, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38857, 'Anuradhapuraya', 3321, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38858, 'Badulla', 3322, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38859, 'Bandarawela', 3322, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38860, 'Haputale', 3322, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38861, 'Boralesgamuwa', 3323, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38862, 'Battaramulla', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38863, 'Colombo', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38864, 'Dehiwala-Mount Lavinia', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38865, 'Homagama', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38866, 'Jayawardanapura', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38867, 'Kolonnawa', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38868, 'Kotikawatta', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38869, 'Maharagama', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38870, 'Moratuwa', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38871, 'Mulleriyawa', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38872, 'Ratmalana', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38873, 'Seethawakapura', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38874, 'Sri Jayawardanapura', 3324, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38875, 'Ambalamgoda', 3325, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38876, 'Galla', 3325, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38877, 'Daluguma', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38878, 'Gampaha', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38879, 'Hendala', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38880, 'Jaela', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38881, 'Kandana', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38882, 'Katunayaka', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38883, 'Kelaniya', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38884, 'Migamuwa', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38885, 'Minuwangoda', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38886, 'Peliyagoda', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38887, 'Ragama', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38888, 'Wattala', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38889, 'Welesara', 3326, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38890, 'Hambantota', 3327, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38891, 'Tanggalla', 3327, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38892, 'Beruwala', 3328, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38893, 'Horana', 3328, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38894, 'Kalutara', 3328, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38895, 'Keselwatta', 3328, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38896, 'Panadraya', 3328, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38897, 'Kegalla', 3329, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38898, 'Kilinochchi', 3330, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38899, 'Kuliyapitiya', 3331, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38900, 'Kurunegala', 3331, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38901, 'Polgahawela', 3331, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38902, 'Eravur', 3332, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38903, 'Katankudi', 3332, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38904, 'Madakalpuwa', 3332, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38905, 'Malwana', 3334, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38906, 'Mannarama', 3335, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38907, 'Dambulla', 3336, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38908, 'Matale', 3336, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38909, 'Sigiriya', 3336, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38910, 'Matara', 3337, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38911, 'Weligama', 3337, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38912, 'Monaragala', 3338, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38913, 'Wattegama', 3338, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38914, 'Mullaitivu', 3339, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38915, 'Polonnaruwa', 3343, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38916, 'Halawata', 3344, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38917, 'Puttalama', 3344, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38918, 'Balangoda', 3345, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38919, 'Ratnapuraya', 3345, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38920, 'Tirikunamalaya', 3347, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38921, 'Querceta', 3348, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38922, 'Vavuniyawa', 3349, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38923, 'Chavakachcheri', 3351, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38924, 'Peduru Tuduwa', 3351, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38925, 'Valvedditturai', 3351, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38926, 'Yapanaya', 3351, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38927, 'Mahara', 3352, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38928, 'Kodok', 3353, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38929, 'Malakal', 3353, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38930, 'Nasir', 3353, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38931, 'ar-Rank', 3353, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38932, 'Juba', 3354, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38933, 'Yei', 3354, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38934, 'Maridi', 3359, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38935, 'Nzara', 3359, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38936, 'Tambura', 3359, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38937, 'Yambio', 3359, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38938, 'Bur', 3362, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38939, 'Aruma', 3363, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38940, 'Halfa al-Jadidah', 3363, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38941, 'Kassala', 3363, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38942, 'Khashm-al-Qirbah', 3363, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38943, 'Wagar', 3363, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38944, 'al-Masnah', 3363, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38945, '\'Atbarah', 3364, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38946, 'Barbar', 3364, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38947, 'Kabushiyah', 3364, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38948, 'Shandi', 3364, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38949, 'ad-Damir', 3364, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38950, 'al-Bawga', 3364, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38951, 'al-Matammah', 3364, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38952, 'Kapoeta', 3368, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38953, 'Torit', 3368, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38954, 'Abu Hijar', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38955, 'Galgani', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38956, 'Hajj \'Abdallah', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38957, 'Karkawj', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38958, 'Mayurnu', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38959, 'Sinjah', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38960, 'Sinnar', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38961, 'Sinnar-at-Tagatu', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38962, 'Umm Shawkah', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38963, 'ad-Dindar', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38964, 'as-Suki', 3369, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38965, 'Mashra ar-Raqq', 3370, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38966, 'Tonj', 3370, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38967, 'Warab', 3370, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38968, 'Bur Sudan', 3372, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38969, 'Gabait', 3372, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38970, 'Sawakin', 3372, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38971, 'Sinkat', 3372, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38972, 'Tawkar', 3372, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38973, 'Rumbik', 3373, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38974, 'Yirol', 3373, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38975, 'Abu \'Usar', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38976, 'Arba\'atun wa \'Ishrun-al-Qurash', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38977, 'Maharaybah', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38978, 'Miallayab', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38979, 'Rufa\'a', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38980, 'Sharafat', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38981, 'Tabat', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38982, 'Tambul', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38983, 'Wad Madani', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38984, 'Wad Rawah', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38985, 'al-Hawsh', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38986, 'al-Hilaliyah', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38987, 'al-Huda', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38988, 'al-Husayhisah', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38989, 'al-Kamilin', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38990, 'al-Karaymat', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38991, 'al-Manaqil', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38992, 'al-Mu\'sadiyah', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38993, 'al-Musallamiyah', 3374, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38994, 'Umm Dawm', 3375, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38995, 'Umm Durman', 3375, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38996, 'al-Khartum', 3375, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38997, 'al-Khartum Bahri', 3375, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38998, 'Doka', 3376, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(38999, 'Qala\'-an-Nahl', 3376, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39000, 'Shuwak', 3376, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39001, 'al-Faw', 3376, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39002, 'al-Hawatah', 3376, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39003, 'al-Qadarif', 3376, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39004, 'Bentiu', 3377, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39005, 'Ler', 3377, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39006, 'Asalaya', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39007, 'Bufi', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39008, 'Gulli', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39009, 'Kinanah', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39010, 'Kusti', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39011, 'Marabba', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39012, 'Rabak', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39013, 'Shabashah', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39014, 'Tandalti', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39015, 'Umm Jarr', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39016, 'Wad-az-Zaki', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39017, 'ad-Duwaym', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39018, 'al-Jazirah', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39019, 'al-Kawah', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39020, 'al-Qutaynah', 3378, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39021, 'ad-Damazin', 3379, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39022, 'al-Kurumuk', 3379, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39023, 'al-Quwaysi', 3379, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39024, 'ar-Rusayris', 3379, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39025, 'Argu', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39026, 'Dalqu', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39027, 'Dunqulah', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39028, 'Kanisah', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39029, 'Karmah-an-Nuzul', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39030, 'Kuraymah', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39031, 'Kurti', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39032, 'Marawi', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39033, 'Tangasi-ar-Ru\'ays', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39034, 'Wadi Halfa', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39035, 'ad-Dabbah', 3380, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39036, 'Brokopondo', 3381, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39037, 'Brownsweg', 3381, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39038, 'Marienburg', 3382, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39039, 'Meerzorg', 3382, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39040, 'Nieuw Amsterdam', 3382, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39041, 'Totness', 3383, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39042, 'Albina', 3384, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39043, 'Moengo', 3384, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39044, 'Nieuw Nickerie', 3385, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39045, 'Wageningen', 3385, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39046, 'Onverwacht', 3386, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39047, 'Paramaribo', 3387, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39048, 'Groningen', 3388, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39049, 'Lelydorp', 3389, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39050, 'Barentsburg', 3390, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39051, 'Hornsund', 3390, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39052, 'Isfjord Radio', 3390, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39053, 'Longyearbyen', 3390, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39054, 'Ny-Alesund', 3390, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39055, 'Bulembu', 3391, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39056, 'Ezulwini', 3391, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39057, 'Mbabane', 3391, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39058, 'Ngwenya', 3391, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39059, 'Pigg\'s Peak', 3391, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39060, 'Big Bend', 3392, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39061, 'Mhlume', 3392, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39062, 'Mpaka', 3392, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39063, 'Nsoko', 3392, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39064, 'Simunye', 3392, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39065, 'Siteki', 3392, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39066, 'Tshaneni', 3392, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39067, 'Bhunya', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39068, 'Kwaluseni', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39069, 'Lobamba', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39070, 'Malkerns', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39071, 'Mankayane', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39072, 'Manzini', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39073, 'Matsapha', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39074, 'Mhlambanyatsi', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39075, 'Sidvokodvo', 3393, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39076, 'Hlatikulu', 3394, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39077, 'Hluti', 3394, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39078, 'Kubuta', 3394, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39079, 'Lavumisa', 3394, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39080, 'Nhlangano', 3394, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39081, 'Karlshamn', 3397, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39082, 'Karlskrona', 3397, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39083, 'Ronneby', 3397, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39084, 'Stenungsund', 3398, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39085, 'Avesta', 3399, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39086, 'Borlange', 3399, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39087, 'Falun', 3399, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39088, 'Hedemora', 3399, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39089, 'Ludvika', 3399, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39090, 'Malung', 3399, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39091, 'Bollnas', 3400, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39092, 'Bro', 3400, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39093, 'Gavle', 3400, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39094, 'Hudiksvall', 3400, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39095, 'Sandviken', 3400, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39096, 'Soderhamn', 3400, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39097, 'Skara', 3402, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39098, 'Visby', 3402, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39099, 'Anderstorp', 3403, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39100, 'Falkenberg', 3403, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39101, 'Halmstad', 3403, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39102, 'Ullared', 3403, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39103, 'Varberg', 3403, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39104, 'Farjestaden', 3404, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39105, 'Ostersund', 3404, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39106, 'Gislaved', 3405, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39107, 'Jonkoping', 3405, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39108, 'Nassjo', 3405, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39109, 'Tranas', 3405, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39110, 'Varnamo', 3405, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39111, 'Vetlanda', 3405, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39112, 'Blomstermala', 3406, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39113, 'Kalmar', 3406, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39114, 'Nybro', 3406, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39115, 'Oskarshamn', 3406, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39116, 'Solna', 3406, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39117, 'Torsas', 3406, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39118, 'Vastervik', 3406, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39119, 'Habo', 3407, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39120, 'Limhamn', 3407, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39121, 'Segeltorp', 3407, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39122, 'Svedala', 3407, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39123, 'Ljungby', 3408, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39124, 'Vaxjo', 3408, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39125, 'Boden', 3409, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39126, 'Kiruna', 3409, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39127, 'Lulea', 3409, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39128, 'Pitea', 3409, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39129, 'Askersund', 3410, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39130, 'Karlskoga', 3410, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39131, 'Kumla', 3410, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39132, 'Orebro', 3410, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39133, 'Finspang', 3411, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39134, 'Follinge', 3411, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39135, 'Kisa', 3411, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39136, 'Linkoping', 3411, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39137, 'Mjolby', 3411, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39138, 'Motala', 3411, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39139, 'Norrkoping', 3411, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39140, 'Vadstena', 3411, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39141, 'Skarpovagen', 3412, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39142, 'Angelholm', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39143, 'Arlov', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39144, 'Bastad', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39145, 'Eslov', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39146, 'Hassleholm', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39147, 'Helsingborg', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39148, 'Hjarup', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39149, 'Hoganas', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39150, 'Horby', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39151, 'Jonstorp', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39152, 'Klagstorp', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39153, 'Kristianstad', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39154, 'Landskrona', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39155, 'Lund', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39156, 'Malmo', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39157, 'Skanor', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39158, 'Staffanstorp', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39159, 'Trelleborg', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39160, 'Ystad', 3413, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39161, 'Hillerstorp', 3414, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39162, 'Markaryd', 3414, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39163, 'Smalandsstenar', 3414, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39164, 'Eskilstuna', 3415, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39165, 'Gnesta', 3415, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39166, 'Katrineholm', 3415, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39167, 'Nacka Strand', 3415, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39168, 'Nykoping', 3415, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39169, 'Strangnas', 3415, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39170, 'Vingaker', 3415, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39171, 'Akersberga', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39172, 'Boo', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39173, 'Bromma', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39174, 'Djursholm', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39175, 'Hallstavik', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39176, 'Jarfalla', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39177, 'Johannesfred', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39178, 'Lidingo', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39179, 'Marsta', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39180, 'Norrtalje', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39181, 'Norsborg', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39182, 'Nynashamn', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39183, 'Rosersberg', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39184, 'Sodertalje', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39185, 'Sollentuna', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39186, 'Stockholm', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39187, 'Sundbyberg', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39188, 'Taby', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39189, 'Tumba', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39190, 'Upplands-Vasby', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39191, 'Vallentuna', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39192, 'Vasterhaninge', 3416, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39193, 'Balsta', 3417, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39194, 'Enkoping', 3417, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39195, 'Knivsta', 3417, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39196, 'Skyttorp', 3417, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39197, 'Storvreta', 3417, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39198, 'Uppsala', 3417, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39199, 'Arvika', 3418, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39200, 'Hammaro', 3418, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39201, 'Karlstad', 3418, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39202, 'Kristinehamn', 3418, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39203, 'Skoghall', 3418, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39204, 'Guglingen', 3419, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39205, 'Robertsfors', 3419, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39206, 'Skelleftea', 3419, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39207, 'Umea', 3419, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39208, 'Gothenburg', 3420, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39209, 'Kallered', 3420, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39210, 'Kvanum', 3420, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39211, 'Timmersdala', 3420, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39212, 'Harnosand', 3421, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39213, 'Ornskoldsvik', 3421, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39214, 'Sundsvall', 3421, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39215, 'Arboga', 3422, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39216, 'Fagersta', 3422, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39217, 'Hallstahammar', 3422, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39218, 'Koping', 3422, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39219, 'Sala', 3422, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39220, 'Vasteras', 3422, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39221, 'Aarau', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39222, 'Aarburg', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39223, 'Baden', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39224, 'Bevilard', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39225, 'Bremgarten', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39226, 'Brugg', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39227, 'Buchs', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39228, 'Chevenez', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39229, 'Fislisbach', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39230, 'Granichen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39231, 'Hagglingen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39232, 'Kaiseraugst', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39233, 'Kleindoettingen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39234, 'Klingnau', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39235, 'Kuttigen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39236, 'Lenzburg', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39237, 'Menziken', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39238, 'Mohlin', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39239, 'Mumpf', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39240, 'Muri', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39241, 'Neuenhof', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39242, 'Niederlenz', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39243, 'Niederwangen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39244, 'Niederwil', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39245, 'Oberentfelden', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39246, 'Obersiggenthal', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39247, 'Oftringen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39248, 'Reinach', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39249, 'Rheinfelden', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39250, 'Rosshausern', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39251, 'Rothrist', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39252, 'Rupperswil', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39253, 'Schmitten', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39254, 'Seon', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39255, 'Spreitenbach', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39256, 'Stein', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39257, 'Suhr', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39258, 'Trogen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39259, 'Untersiggenthal', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39260, 'Villmergen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39261, 'Wettingen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39262, 'Windisch', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39263, 'Wohlen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(39264, 'Wurenlos', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39265, 'Zofingen', 3424, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39266, 'Aesch', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39267, 'Allschwil', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39268, 'Arlesheim', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39269, 'Binningen', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39270, 'Birsfelden', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39271, 'Bottmingen', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39272, 'Ettingen', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39273, 'Frenkendorf', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39274, 'Gelterkinden', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39275, 'Laufen', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39276, 'Lausen', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39277, 'Liestal', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39278, 'Munchenstein', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39279, 'Muttenz', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39280, 'Oberwil', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39281, 'Pratteln', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39282, 'Reinach', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39283, 'Sissach', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39284, 'Therwil', 3427, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39285, 'Basel', 3428, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39286, 'Riehen', 3428, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39287, 'Belp', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39288, 'Bern', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39289, 'Berne', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39290, 'Biel', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39291, 'Biel-Bienne', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39292, 'Bolligen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39293, 'Burgdorf', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39294, 'Frutigen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39295, 'Heimberg', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39296, 'Herzogenbuchsee', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39297, 'Huttwil', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39298, 'Interlaken', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39299, 'Ittigen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39300, 'Kirchberg', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39301, 'Koniz', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39302, 'Konolfingen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39303, 'Langenthal', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39304, 'Langnau', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39305, 'Lengnau', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39306, 'Lyss', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39307, 'Meiringen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39308, 'Moutier', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39309, 'Munchenbuchsee', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39310, 'Munsingen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39311, 'Muri', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39312, 'Nidau', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39313, 'Orpund', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39314, 'Ostermundingen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39315, 'Pieterlen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39316, 'Saanen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39317, 'Saint-Imier', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39318, 'Sonceboz', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39319, 'Spiez', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39320, 'Steffisburg', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39321, 'Sumiswald', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39322, 'Thun', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39323, 'Uetendorf', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39324, 'Unterseen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39325, 'Urtenen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39326, 'Vechingen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39327, 'Wahlern', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39328, 'Wohlen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39329, 'Worb', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39330, 'Zollikofen', 3429, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39331, 'Bulle', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39332, 'Dudingen', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39333, 'Fribourg', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39334, 'Granges-Paccot', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39335, 'Marly', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39336, 'Muntelier', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39337, 'Murten', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39338, 'Remaufens', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39339, 'Villars-sur-Glane', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39340, 'Villaz-Saint-Pierre', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39341, 'Wunnewil-Flamatt', 3431, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39342, 'Bernex', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39343, 'Carouge', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39344, 'Chene-Bougeries', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39345, 'Chene-Bourg', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39346, 'Collonge-Bellerive', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39347, 'Cologny', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39348, 'Geneva', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39349, 'Geneve', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39350, 'Lancy', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39351, 'Le Grand-Saconnex', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39352, 'Meyrin', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39353, 'Onex', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39354, 'Plan-les-Ouates', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39355, 'Thonex', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39356, 'Vernier', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39357, 'Versoix', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39358, 'Veyrier', 3432, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39359, 'Glarus', 3433, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39360, 'Nafels', 3433, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39361, 'Arosa', 3434, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39362, 'Chur', 3434, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39363, 'Davos', 3434, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39364, 'Domat', 3434, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39365, 'Igis', 3434, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39366, 'Landquart', 3434, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39367, 'Maienfeld', 3434, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39368, 'Sankt Moritz', 3434, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39369, 'Heerbrugg', 3435, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39370, 'Delemont', 3436, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39371, 'Glovelier', 3436, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39372, 'Le Noirmont', 3436, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39373, 'Porrentruy', 3436, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39374, 'Adligenswil', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39375, 'Ballwil', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39376, 'Buchrain', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39377, 'Ebikon', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39378, 'Emmen', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39379, 'Hochdorf', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39380, 'Horw', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39381, 'Kriens', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39382, 'Littau', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39383, 'Luzern', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39384, 'Malters', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39385, 'Meggen', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39386, 'Neuenkirch', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39387, 'Perlern', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39388, 'Rothenburg', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39389, 'Ruswil', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39390, 'Sursee', 3438, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39391, 'Muhen', 3440, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39392, 'Bole', 3441, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39393, 'Boudry', 3441, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39394, 'Colombier', 3441, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39395, 'La Chaux-de-Fonds', 3441, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39396, 'Le Locle', 3441, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39397, 'Neuchatel', 3441, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39398, 'Peseux', 3441, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39399, 'Buochs', 3442, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39400, 'Hergiswil', 3442, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39401, 'Stans', 3442, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39402, 'Stansstad', 3442, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39403, 'Alpnach', 3443, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39404, 'Kerns', 3443, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39405, 'Sachseln', 3443, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39406, 'Sarnen', 3443, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39407, 'Neuhausen', 3445, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39408, 'Schaffhausen', 3445, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39409, 'Altendorf', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39410, 'Arth', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39411, 'Buron', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39412, 'Einsiedeln', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39413, 'Feusisberg', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39414, 'Freienbach', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39415, 'Ingenbohl', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39416, 'Kussnacht', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39417, 'Lachen', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39418, 'Schubelbach', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39419, 'Schwyz', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39420, 'Wangen', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39421, 'Wollerau', 3446, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39422, 'Balsthal', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39423, 'Bellach', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39424, 'Bettlach', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39425, 'Biberist', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39426, 'Derendingen', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39427, 'Dornach', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39428, 'Dulliken', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39429, 'Feldbrunnen', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39430, 'Gerlafingen', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39431, 'Grenchen', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39432, 'Hagendorf', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39433, 'Olten', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39434, 'Schonenwerd', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39435, 'Solothurn', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39436, 'Trimbach', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39437, 'Wangen', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39438, 'Zuchwil', 3447, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39439, 'Aadorf', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39440, 'Amriswil', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39441, 'Arbon', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39442, 'Bischofszell', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39443, 'Felben-Wellhausen', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39444, 'Frauenfeld', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39445, 'Guttingen', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39446, 'Kreuzlingen', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39447, 'Romanshorn', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39448, 'Sirnach', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39449, 'Sulgen', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39450, 'Tagerwilen', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39451, 'Weinfelden', 3448, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39452, 'Ascona', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39453, 'Bellinzona', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39454, 'Biasca', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39455, 'Breganzona', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39456, 'Cadempino', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39457, 'Chiasso', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39458, 'Giubiasco', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39459, 'Locarno', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39460, 'Losone', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39461, 'Lugano', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39462, 'Massagno', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39463, 'Melide', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39464, 'Mendrisio', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39465, 'Mezzovico', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39466, 'Minusio', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39467, 'Porza', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39468, 'Pregassona', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39469, 'Viganello', 3449, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39470, 'Altdorf', 3450, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39471, 'Schattdorf', 3450, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39472, 'Bagnes', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39473, 'Brig-Glis', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39474, 'Collombey-Muraz', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39475, 'Conthey', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39476, 'Evionnaz', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39477, 'Fully', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39478, 'Martigny', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39479, 'Monthey', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39480, 'Naters', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39481, 'Nendaz', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39482, 'Niederwald', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39483, 'Saviese', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39484, 'Sierre', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39485, 'Sion', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39486, 'Visp', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39487, 'Vouvry', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39488, 'Zermatt', 3451, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39489, 'Aigle', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39490, 'Ballaigues', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39491, 'Bex', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39492, 'Blonay', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39493, 'Bussigny', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39494, 'Chavannes', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39495, 'Crissier', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39496, 'Ecublens', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39497, 'Epalinges', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39498, 'Gland', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39499, 'La Tour-de-Peilz', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39500, 'Lausanne', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39501, 'Le Mont-sur-Lausanne', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39502, 'Lucerne', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39503, 'Lutry', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39504, 'Montreux', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39505, 'Morges', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39506, 'Nyon', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39507, 'Ollon', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39508, 'Orbe', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39509, 'Payerne', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39510, 'Prilly', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39511, 'Puidoux', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39512, 'Pully', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39513, 'Renens', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39514, 'Romainmotier', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39515, 'Saint Sulpice', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39516, 'Vevey', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39517, 'Yverdon', 3452, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39518, 'Vauffelin', 3453, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39519, 'Baar', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39520, 'Cham', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39521, 'Hunenberg', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39522, 'Menzingen', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39523, 'Neuheim', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39524, 'Oberageri', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39525, 'Risch', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39526, 'Risch-Rotkreuz', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39527, 'Steinhausen', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39528, 'Unterageri', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39529, 'Zug', 3454, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39530, 'Adliswil', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39531, 'Affoltern', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39532, 'Bachenbulach', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39533, 'Bassersdorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39534, 'Birmensdorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39535, 'Bubikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39536, 'Bulach', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39537, 'Dielsdorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39538, 'Dietikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39539, 'Dietlikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39540, 'Dubendorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39541, 'Durnten', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39542, 'Ebmatingen', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39543, 'Egg', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39544, 'Embrach', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39545, 'Erlenbach', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39546, 'Fallanden', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39547, 'Fehraltdorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39548, 'Geroldswil', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39549, 'Gossau', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39550, 'Greifensee', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39551, 'Herrliberg', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39552, 'Hinwil', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39553, 'Hombrechtikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39554, 'Horgen', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39555, 'Illnau-Effretikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39556, 'Kilchberg', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39557, 'Kloten', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39558, 'Kusnacht', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39559, 'Langnau', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39560, 'Mannedorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39561, 'Maur', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39562, 'Meilen', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39563, 'Neftenbach', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39564, 'Niederhasli', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39565, 'Nurensdorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39566, 'Oberengstringen', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39567, 'Oberglatt', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39568, 'Oberrieden', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39569, 'Opfikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39570, 'Pfaffikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39571, 'Rafz', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39572, 'Regensdorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39573, 'Richterswil', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39574, 'Rumlang', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39575, 'Ruschlikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39576, 'Ruti', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39577, 'Schlieren', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39578, 'Schwerzenbach', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39579, 'Seuzach', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39580, 'Stafa', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39581, 'Thalwil', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39582, 'Uetikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39583, 'Urdorf', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39584, 'Uster', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39585, 'Volketswil', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39586, 'Wadenswil', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39587, 'Wald', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39588, 'Wallisellen', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39589, 'Wangen-Bruttisellen', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39590, 'Weiningen', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39591, 'Wetzikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39592, 'Winterthur', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39593, 'Zell', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39594, 'Zollikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39595, 'Zumikon', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39596, 'Zurich', 3455, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39597, 'Aleppo', 3456, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39598, 'Dar\'a', 3457, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39599, 'Nawa', 3457, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39600, 'Abu Kamal', 3458, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39601, 'Dayr az-Zawr', 3458, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39602, 'al-Mayadin', 3458, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39603, 'Damascus', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39604, 'Darayya', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39605, 'Duma', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39606, 'Hajar Aswad', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39607, 'Harasta al-Bas', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39608, 'Jaramanah', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39609, 'Kabir-as-Sit', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39610, 'Kesweh', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39611, 'Qatana', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39612, 'Yabrud', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39613, 'al-Qutayfah', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39614, 'an-Nabk', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39615, 'at-Tall', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39616, 'az-Zabadani', 3459, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39617, '\'Afrin', 3460, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39618, '\'Ayn-al-\'Arab', 3460, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39619, 'A\'zaz', 3460, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39620, 'Halab', 3460, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39621, 'Manbij', 3460, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39622, 'al-Bab', 3460, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39623, 'as-Safirah', 3460, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39624, 'Hamah', 3461, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39625, 'Masyaf', 3461, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39626, 'Muhradah', 3461, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39627, 'Salamiyah', 3461, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39628, 'Hims', 3462, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39629, 'Homs', 3462, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39630, 'Tudmur', 3462, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39631, 'al-Qusayr', 3462, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39632, 'ar-Rastan', 3462, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39633, 'Ariha', 3463, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39634, 'Idlib', 3463, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39635, 'Jisr-ash-Shughur', 3463, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39636, 'Ma\'arrat-an-Nu\'man', 3463, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39637, 'Baniyas', 3465, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39638, 'Safita', 3465, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39639, 'Tartus', 3465, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39640, 'Ra\'s-al-\'Ayn', 3466, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39641, 'al-Hasakah', 3466, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39642, 'al-Malikiyah', 3466, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39643, 'al-Qamishli', 3466, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39644, 'Jablah', 3467, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39645, 'Lattakia', 3467, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39646, 'al-Ladhiqiyah', 3467, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39647, 'al-Qunaytirah', 3468, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39648, 'ar-Raqqah', 3469, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39649, 'ath-Thawrah', 3469, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39650, 'as-Suwayda', 3470, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39651, 'Changhua City', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39652, 'Changhwa', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39653, 'Chihu', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39654, 'Erhlin', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39655, 'Hemei', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39656, 'Homei', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39657, 'Hua Tan Hsiang', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39658, 'Huatan Township', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39659, 'Lukang', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39660, 'Peitou', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39661, 'Puyen Hsiang', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39662, 'Tienchung', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39663, 'Yuanlin', 3471, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39664, 'Fenglin', 3477, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39665, 'Hualian', 3477, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39666, 'Yuli', 3477, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39667, 'Ilan', 3478, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39668, 'Lotung', 3478, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39669, 'Suao', 3478, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39670, 'Toucheng', 3478, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39671, 'Kincheng', 3482, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39672, 'Kinhsia', 3482, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39673, 'Kinhu', 3482, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39674, 'Cholan', 3483, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39675, 'Chunan', 3483, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39676, 'Houlung', 3483, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39677, 'Miaoli', 3483, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39678, 'Toufen', 3483, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39679, 'Tunghsiao', 3483, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39680, 'Yuanli', 3483, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39681, 'Zaociao', 3483, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39682, 'Chichi', 3484, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39683, 'Chushan', 3484, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39684, 'Nantou', 3484, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39685, 'Puli', 3484, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39686, 'Tsaotun', 3484, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39687, 'Makung', 3486, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39688, 'Chaochou', 3487, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39689, 'Hengchun', 3487, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39690, 'Pingtung', 3487, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39691, 'Tungkang', 3487, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39692, 'Dali', 3488, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39693, 'South District', 3488, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39694, 'Ta-Ya Shang', 3488, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39695, 'Dali', 3489, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39696, 'South District', 3489, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39697, 'Ta-Ya Shang', 3489, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39698, 'Dali', 3490, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39699, 'South District', 3490, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39700, 'Ta-Ya Shang', 3490, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39701, 'Kuanshan', 3495, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39702, 'Taitung', 3495, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39703, 'Chengkung', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39704, 'Chungli', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39705, 'Kuan Yin', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39706, 'Pate', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39707, 'Pingchen', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39708, 'Ta Yuan', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39709, 'Tachi', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39710, 'Taoyuan', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39711, 'Tungshih', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39712, 'Yangmei', 3496, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39713, 'Wujie', 3497, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39714, 'Hsilo', 3499, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39715, 'Huwei', 3499, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39716, 'Peikang', 3499, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39717, 'Touliu', 3499, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39718, 'Tounan', 3499, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39719, 'Tuku', 3499, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39720, 'Dushanbe', 3500, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39721, 'Khorug', 3501, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39722, 'Murgob', 3501, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39723, 'Garm', 3502, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39724, 'Hisor', 3502, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39725, 'Kofarnihon', 3502, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39726, 'Leninskiy', 3502, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39727, 'Rogun', 3502, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39728, 'Shakhrinau', 3502, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39729, 'Tursunzoda', 3502, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39730, 'Dangara', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39731, 'Farkhor', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39732, 'Jilikul', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39733, 'Khojamaston', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39734, 'Kolhozobod', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39735, 'Kulob', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39736, 'Kumsangir', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39737, 'Moskva', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39738, 'Mu\'minobod', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39739, 'Nurak', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39740, 'Pyanj', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39741, 'Qurgonteppa', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39742, 'Sarband', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39743, 'Shaartuz', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39744, 'Sovetskiy', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39745, 'Vakhsh', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39746, 'Vose', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39747, 'Yovon', 3503, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39748, 'Adrasmon', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39749, 'Asht', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39750, 'Ayni', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39751, 'Buston', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39752, 'Chkalov', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39753, 'Chorku', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39754, 'Gafurov', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39755, 'Ganchi', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39756, 'Isfara', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39757, 'Khujand', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39758, 'Konibodom', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39759, 'Matcha', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39760, 'Nau', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39761, 'Panjakent', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39762, 'Proletarsk', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39763, 'Qayroqqum', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39764, 'Shurob', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39765, 'Taboshar', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39766, 'Uroteppa', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39767, 'Zafarobod', 3504, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39768, 'Arusha', 3505, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39769, 'Dodoma', 3507, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39770, 'Kondoa', 3507, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39771, 'Mpwapwa', 3507, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39772, 'Iringa', 3508, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39773, 'Njombe', 3508, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39774, 'Bukoba', 3509, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39775, 'Bwanga', 3509, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39776, 'Ngara', 3509, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39777, 'Kasulu', 3510, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39778, 'Kigoma', 3510, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39779, 'Uvinza', 3510, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39780, 'Moshi', 3511, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39781, 'Same', 3511, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39782, 'Kilwa Kivinje', 3512, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39783, 'Lindi', 3512, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39784, 'Nachingwea', 3512, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39785, 'Musoma', 3513, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39786, 'Tarime', 3513, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39787, 'Mbeya', 3514, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39788, 'Mwaya', 3514, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39789, 'Tukuyu', 3514, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39790, 'Kilosa', 3515, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39791, 'Mahenge', 3515, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39792, 'Morogoro', 3515, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39793, 'Masasi', 3516, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39794, 'Mikindani', 3516, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39795, 'Mtwara', 3516, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39796, 'Newala', 3516, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39797, 'Magu', 3517, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39798, 'Mwanza', 3517, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39799, 'Nansio', 3517, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39800, 'Sengerama', 3517, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39801, 'Bagamoyo', 3518, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39802, 'Kibaha', 3518, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39803, 'Rufiji', 3518, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39804, 'Utete', 3518, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39805, 'Mpanda', 3519, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39806, 'Sumbawanga', 3519, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39807, 'Songea', 3520, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39808, 'Tunduru', 3520, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39809, 'Kahama', 3521, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39810, 'Maswa', 3521, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39811, 'Mwadui', 3521, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39812, 'Old Shinyanga', 3521, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39813, 'Shinyanga', 3521, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39814, 'Manyoni', 3522, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39815, 'Singida', 3522, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39816, 'Bukene', 3523, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39817, 'Nzega', 3523, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39818, 'Tabora', 3523, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39819, 'Urambo', 3523, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39820, 'Korogwe', 3524, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39821, 'Muheza', 3524, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39822, 'Pangani', 3524, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39823, 'Tanga', 3524, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39824, 'Bangkhen', 3528, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39825, 'Bangkok', 3528, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39826, 'Phatumthanee', 3528, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39827, 'Bang Khla', 3530, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39828, 'Bang Pakong', 3530, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39829, 'Bangpakong', 3530, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39830, 'Chachoengsao', 3530, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39831, 'Phanom Sarakham', 3530, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39832, 'Plaeng Yao', 3530, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39833, 'Bamnet Narong', 3532, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39834, 'Chaiyaphum', 3532, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39835, 'Kaeng Khlo', 3532, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39836, 'Kaset Sombun', 3532, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39837, 'Phu Khieo', 3532, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39838, 'Chanthaburi', 3534, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39839, 'Khlung', 3534, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39840, 'Laem Sing', 3534, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39841, 'Soydow', 3534, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39842, 'Tha Mai', 3534, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39843, 'Chumphon', 3538, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(39844, 'Lang Suan', 3538, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39845, 'Huai Mek', 3539, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39846, 'Kalasin', 3539, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39847, 'Kamalasai', 3539, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39848, 'Khao Wong', 3539, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39849, 'Kuchinarai', 3539, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39850, 'Nong Kung Si', 3539, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39851, 'Yang Talat', 3539, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39852, 'Bo Phloi', 3541, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39853, 'Kanchanaburi', 3541, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39854, 'Phanom Thuan', 3541, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39855, 'Tha Maka', 3541, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39856, 'Tha Muang', 3541, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39857, 'Ao Luk', 3543, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39858, 'Krabi', 3543, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39859, 'Lampang', 3545, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39860, 'Thoen', 3545, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39861, 'Lamphun', 3546, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39862, 'Mae Tha', 3546, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39863, 'Pa Sang', 3546, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39864, 'Loei', 3547, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39865, 'Phu Kra Dung', 3547, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39866, 'Wang Saphung', 3547, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39867, 'Mukdahan', 3551, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39868, 'Chiang Klang', 3558, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39869, 'Nan', 3558, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39870, 'Bacho', 3559, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39871, 'Narathiwat', 3559, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39872, 'Rangae', 3559, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39873, 'Sungai Kolok', 3559, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39874, 'Sungai Padi', 3559, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39875, 'Tak Bai', 3559, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39876, 'Bang Bo Thong', 3562, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39877, 'Bang Kruai', 3562, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39878, 'Bang Yai', 3562, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39879, 'Nonthaburi', 3562, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39880, 'Pak Kret', 3562, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39881, 'Sainoi', 3562, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39882, 'Nong Chik', 3564, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39883, 'Pattani', 3564, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39884, 'Sai Buri', 3564, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39885, 'Yaring', 3564, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39886, 'Phangnga', 3565, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39887, 'Phatthalung', 3566, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39888, 'Chiang Kham', 3567, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39889, 'Dok Kham Tai', 3567, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39890, 'Phayao', 3567, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39891, 'Pong', 3567, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39892, 'Chon Daen', 3568, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39893, 'Lom Sak', 3568, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39894, 'Nong Phai', 3568, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39895, 'Phetchabun', 3568, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39896, 'Wichian Buri', 3568, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39897, 'Ban Laem', 3569, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39898, 'Chaam', 3569, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39899, 'Khao Yoi', 3569, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39900, 'Phetchaburi', 3569, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39901, 'Tha Yang', 3569, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39902, 'Bang Mun Nak', 3570, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39903, 'Phichit', 3570, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39904, 'Taphan Hin', 3570, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39905, 'Thap Khlo', 3570, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39906, 'Bang Krathum', 3571, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39907, 'Bang Rakam', 3571, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39908, 'Nakhon Thai', 3571, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39909, 'Phitsanulok', 3571, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39910, 'Den Chai', 3573, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39911, 'Long', 3573, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39912, 'Phrae', 3573, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39913, 'Rong Kwang', 3573, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39914, 'Kathu', 3574, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39915, 'Phuket', 3574, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39916, 'Ranong', 3577, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39917, 'Ban Pong', 3578, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39918, 'Bang Phae', 3578, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39919, 'Chom Bung', 3578, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39920, 'Damnoen Saduak', 3578, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39921, 'Photharam', 3578, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39922, 'Ratchaburi', 3578, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39923, 'Ban Chang', 3579, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39924, 'Klaeng', 3579, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39925, 'Rayong', 3579, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39926, 'Ban Mo', 3586, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39927, 'Kaeng Khoi', 3586, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39928, 'Nong Khae', 3586, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39929, 'Phra Phutthabat', 3586, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39930, 'Saraburi', 3586, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39931, 'Satun', 3587, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39932, 'Hat Yai', 3590, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39933, 'Ranot', 3590, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39934, 'Sadao', 3590, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39935, 'Singha Nakhon', 3590, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39936, 'Songkhla', 3590, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39937, 'Khiri Mat', 3591, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39938, 'Sawankhalok', 3591, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39939, 'Si Satchanalai', 3591, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39940, 'Sukhothai', 3591, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39941, 'Phasat', 3594, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39942, 'Surin', 3594, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39943, 'Ban Tak', 3595, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39944, 'Mae Ramat', 3595, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39945, 'Mae Sot', 3595, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39946, 'Tak', 3595, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39947, 'Huai Yot', 3596, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39948, 'Kantang', 3596, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39949, 'Trang', 3596, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39950, 'Bo Rai', 3597, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39951, 'Trat', 3597, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39952, 'Laplae', 3601, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39953, 'Uttaradit', 3601, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39954, 'Betong', 3602, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39955, 'Yala', 3602, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39956, 'Yasothon', 3603, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39957, 'Guerin Kouka', 3604, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39958, 'Sokode', 3604, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39959, 'Sotouboua', 3604, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39960, 'Tchamba', 3604, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39961, 'Bafilo', 3605, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39962, 'Bassar', 3605, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39963, 'Kande', 3605, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39964, 'Kara', 3605, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39965, 'Kpagouda', 3605, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39966, 'Niamtougou', 3605, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39967, 'Agbelouve', 3606, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39968, 'Aneho', 3606, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39969, 'Lome', 3606, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39970, 'Tabligbo', 3606, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39971, 'Tsevie', 3606, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39972, 'Vogan', 3606, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39973, 'Amlame', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39974, 'Anie', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39975, 'Atakpame', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39976, 'Badou', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39977, 'Blitta', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39978, 'Kouve', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39979, 'Kpalime', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39980, 'Kpessi', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39981, 'Notse', 3607, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39982, 'Dapaong', 3608, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39983, 'Mango', 3608, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39984, 'Tandjouare', 3608, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39985, 'Atafu', 3609, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39986, 'Fakaofo', 3610, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39987, 'Nukunonu', 3611, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39988, 'Ohonua', 3612, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39989, 'Pangai', 3613, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39990, 'Hihifo', 3614, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39991, 'Haveloloto', 3615, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39992, 'Mu\'a', 3615, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39993, 'Nuku\'alofa', 3615, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39994, 'Tofoa-Koloua', 3615, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39995, 'Vaini', 3615, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39996, 'Neiafu', 3616, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39997, 'Arima', 3617, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39998, 'Arouca', 3617, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(39999, 'Tacarigua', 3617, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40000, 'Tunapuna', 3617, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40001, 'Carapichaima', 3618, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40002, 'Claxton Bay', 3618, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40003, 'Chaguanas', 3619, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40004, 'Couva', 3620, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40005, 'Tabaquite', 3620, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40006, 'Glencoe', 3622, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40007, 'Siparia', 3631, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40008, 'Scarborough', 3632, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40009, 'Aryanah', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40010, 'Bordj Aalouine', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40011, 'Burj-al-\'Amri', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40012, 'La Soukra', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40013, 'Qal\'at-al-Andalus', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40014, 'Sidi Thabit', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40015, 'Taburbah', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40016, 'Wadi al-Layl', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40017, 'ad-Dandan', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40018, 'al-Battan', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40019, 'al-Jadidah', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40020, 'al-Murnaqiyah', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40021, 'at-Tadaman Dawwar Hishar', 3633, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40022, 'Bajah', 3634, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40023, 'Majaz-al-Bab', 3634, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40024, 'Nafzah', 3634, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40025, 'Quballat', 3634, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40026, 'Tabursuq', 3634, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40027, 'Tastur', 3634, 0.00, 0, '2021-04-06 01:13:50', '2021-04-06 01:13:50', NULL), -(40028, 'Zahrat Madina', 3634, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40029, 'al-Ma\'qulah', 3634, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40030, '\'Awsajah', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40031, 'Binzart', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40032, 'Ghar-al-Milh', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40033, 'Manzil \'Abd-ar-Rahman', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40034, 'Manzil Bu Ruqaybah', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40035, 'Manzil Jamil', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40036, 'Matir', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40037, 'Rafraf', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40038, 'Ras-al-Jabal', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40039, 'Sajanan', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40040, 'Tinjah', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40041, 'al-\'Aliyah', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40042, 'al-Matlin', 3636, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40043, '\'Ayn Darahim', 3641, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40044, 'Bani Matir', 3641, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40045, 'Bu Salim', 3641, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40046, 'Firnanah', 3641, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40047, 'Ghar-ad-Dima\'', 3641, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40048, 'Jundubah', 3641, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40049, 'Tabarqah', 3641, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40050, 'Wadi Maliz', 3641, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40051, 'Bani Khaddash', 3642, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40052, 'Bin Qirdan', 3642, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40053, 'Jarbah Ajim', 3642, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40054, 'Jarbah Hawmat-as-Suq', 3642, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40055, 'Jarbah Midun', 3642, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40056, 'Jarjis', 3642, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40057, 'Madaniyin', 3642, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40058, 'Manubah', 3643, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40059, 'Monastir', 3644, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40060, 'Azimur', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40061, 'Bani Hiyar', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40062, 'Bani Khallad', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40063, 'Bu \'Urqub', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40064, 'Dar \'Alush', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40065, 'Dar Sha\'ban', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40066, 'Hammam-al-Aghzaz', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40067, 'Manzil Bu Zalafah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40068, 'Manzil Hurr', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40069, 'Manzil Tamim', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40070, 'Nabul', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40071, 'Qalibiyah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40072, 'Qurbah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40073, 'Qurbus', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40074, 'Qurunbaliyah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40075, 'Sulayman', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40076, 'Taklisah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40077, 'Tazirkah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40078, 'Zawiyat-al-Jadidi', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40079, 'al-Hammamat', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40080, 'al-Huwariyah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40081, 'al-Ma\'murah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40082, 'al-Middah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40083, 'as-Sama\'ah', 3645, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40084, 'Ghannush', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40085, 'Marath', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40086, 'Matmatat-al-Jadidah', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40087, 'Matmatat-al-Qadimah', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40088, 'Qabis', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40089, 'Sanini an-Nahal', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40090, 'Wadhraf', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40091, 'al-Hammah', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40092, 'al-Matwiyah', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40093, 'az-Zarat', 3646, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40094, 'Qafsah', 3647, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40095, 'Umm-al-\'Arais', 3647, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40096, 'al-Madilah', 3647, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40097, 'al-Mitlawi', 3647, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40098, 'al-Qasr', 3647, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40099, 'al-Qatar', 3647, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40100, 'ar-Rudayyif', 3647, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40101, 'as-Sanad', 3647, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40102, 'Duz', 3648, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40103, 'Jamnah', 3648, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40104, 'Qibili', 3648, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40105, 'Suq-al-Ahad', 3648, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40106, 'al-Qal\'ah', 3648, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40107, '\'Aqarib', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40108, 'Bi\'r Ali Bin Khalifah', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40109, 'Jabinyanah', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40110, 'Manzil Shakir', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40111, 'Qarmadah', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40112, 'Qarqannah', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40113, 'Safaqis', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40114, 'Saqiyat-ad-Dair', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40115, 'Saqiyat-az-Zayt', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40116, 'Sfax', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40117, 'Tinah', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40118, 'al-\'Ayn', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40119, 'al-Hanashah', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40120, 'al-Mahras', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40121, 'as-Sukhayrah', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40122, 'ash-Shayhiyah', 3649, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40123, 'Sfax', 3650, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40124, 'Barqu', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40125, 'Bu \'Aradah', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40126, 'Bu Ruwis', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40127, 'Kasra', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40128, 'Makthar', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40129, 'Qa\'afur', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40130, 'Silyanah', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40131, 'al-\'Arusah', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40132, 'al-Karib', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40133, 'ar-Rawhiyah', 3652, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40134, 'Akkudah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40135, 'Bu Fishah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40136, 'Hammam Susah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40137, 'Harqalah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40138, 'Masakin', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40139, 'Qusaybat-ath-Thurayat', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40140, 'Sidi Bu \'Ali', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40141, 'Sidi al-Hani', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40142, 'Susah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40143, 'Zawiyat Susah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40144, 'al-Masa\'din', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40145, 'al-Qal\'at-al-Kabirah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40146, 'al-Qal\'at-as-Saghirah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40147, 'an-Nafidah', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40148, 'az-Zuhur', 3653, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40149, 'Bi\'r-al-Ahmar', 3654, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40150, 'Dhahibah', 3654, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40151, 'Ghumrassin', 3654, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40152, 'Rimadah', 3654, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40153, 'Tatawin', 3654, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40154, 'Daqash', 3655, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40155, 'Hammat-al-Jarid', 3655, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40156, 'Naftah', 3655, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40157, 'Tamaghzah', 3655, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40158, 'Tawzar', 3655, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40159, 'Bardaw', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40160, 'Ben Arous', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40161, 'Carthage', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40162, 'Halq-al-Wadi', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40163, 'Megrine', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40164, 'Qartaj', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40165, 'Sidi Bu Sa\'id', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40166, 'Tunis', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40167, 'al-Marsa', 3656, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40168, 'Bi\'r Mashariqah', 3657, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40169, 'Jabal-al-Wust', 3657, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40170, 'Zaghwan', 3657, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40171, 'al-Fahs', 3657, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40172, 'an-Nazur', 3657, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40173, 'az-Zaribah', 3657, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40174, 'Manzil Salim', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40175, 'Nibbar', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40176, 'Qal\'at-as-Sanan', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40177, 'Saqiyat Sidi Yussuf', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40178, 'Tajarwin', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40179, 'ad-Dahmani', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40180, 'al-Jarissah', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40181, 'al-Kaf', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40182, 'al-Qal\'at-al-Khasba\'', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40183, 'al-Qusur', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40184, 'as-Sars', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40185, 'at-Tawiraf', 3658, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40186, 'Awlad ash-Shamakh', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40187, 'Bumirdas', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40188, 'Habirah', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40189, 'Karkar', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40190, 'Mallulash', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40191, 'Qusur-as-Saf', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40192, 'Rajish', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40193, 'Shurban', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40194, 'Sidi \'Ulwan', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40195, 'al-Baradi\'ah', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40196, 'al-Jamm', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40197, 'al-Mahdiyah', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40198, 'as-Sawasi', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40199, 'ash-Shabbah', 3659, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40200, '\'Amirat-al-Fahul', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40201, '\'Amirat-al-Hajjaj', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40202, '\'Amirat-at-Tawazarah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40203, 'Banan Budar', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40204, 'Banblat wal-Manarah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40205, 'Bani Hassan', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40206, 'Bu Hajjar', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40207, 'Ghanadah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40208, 'Jammal', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40209, 'Khunays', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40210, 'Lamtah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40211, 'Manzil Farsi', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40212, 'Manzil Hayah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40213, 'Manzil Kamil', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40214, 'Manzil Nur', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40215, 'Qasr Hallal', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40216, 'Qusaybat-al-Madyuni', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40217, 'Sahilin Ma\'atmar', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40218, 'Sayyadah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40219, 'Sidi \'Amara', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40220, 'Sidi Bin Nur', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40221, 'Tabulbah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40222, 'Tuzah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40223, 'Zaramidin', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40224, 'Zawiyat Quntash', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40225, 'al-Baqalitah', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40226, 'al-Masdur', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40227, 'al-Muknin', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40228, 'al-Munastir', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40229, 'al-Wardanin', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40230, 'ash-Sharahil', 3660, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40231, 'Firyanah', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40232, 'Fussanah', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40233, 'Haydrah', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40234, 'Jadliyan', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40235, 'Majal Bal \'Abbas', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40236, 'Sabibah', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40237, 'Subaytilah', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40238, 'Talabat', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40239, 'Talah', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40240, 'al-Qasrayn', 3661, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40241, '\'Ayn Jalulah', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40242, 'Buhajlah', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40243, 'Haffuz', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40244, 'Hajib-al-\'Ayun', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40245, 'Manzil Mahidi', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40246, 'Nasr Allah', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40247, 'al-\'Ala', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40248, 'al-Qayrawan', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40249, 'al-Waslatiyah', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40250, 'as-Subaykhah', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40251, 'ash-Shabikah', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40252, 'ash-Sharardah', 3662, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40253, 'Adana', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40254, 'Aladag', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40255, 'Ceyhan', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40256, 'Feke', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40257, 'Imamoglu', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40258, 'Karaisali', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40259, 'Karatas', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40260, 'Kozan', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40261, 'Pozanti', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40262, 'Saimbeyli', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40263, 'Tufanbeyli', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40264, 'Yumurtalik', 3663, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40265, 'Adiyaman', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40266, 'Besni', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40267, 'Celikhan', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40268, 'Gerger', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40269, 'Golbasi', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40270, 'Kahta', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40271, 'Samsat', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40272, 'Sincik', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40273, 'Tut', 3664, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40274, 'Afyonkarahisar', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40275, 'Basmakci', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40276, 'Bayat', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40277, 'Bolvadin', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40278, 'Cay', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40279, 'Dazkiri', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40280, 'Dinar', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40281, 'Emirdag', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40282, 'Evciler', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40283, 'Hocalar', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40284, 'Ihsaniye', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40285, 'Iscehisar', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40286, 'Kiziloren', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40287, 'Sandikli', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40288, 'Sincanli', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40289, 'Suhut', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40290, 'Sultandagi', 3665, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40291, 'Diyadin', 3666, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40292, 'Dogubeyazit', 3666, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40293, 'Eleskirt', 3666, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40294, 'Hamur', 3666, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40295, 'Karakose', 3666, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40296, 'Patnos', 3666, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40297, 'Taslicay', 3666, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40298, 'Tutak', 3666, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40299, 'Agacoren', 3667, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40300, 'Aksaray', 3667, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40301, 'Eskil', 3667, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40302, 'Gulagac', 3667, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40303, 'Guzelyurt', 3667, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40304, 'Ortakoy', 3667, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40305, 'Sariyahsi', 3667, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40306, 'Amasya', 3668, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40307, 'Goynucek', 3668, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40308, 'Gumushacikoy', 3668, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40309, 'Hamamozu', 3668, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40310, 'Merzifon', 3668, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40311, 'Suluova', 3668, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40312, 'Tasova', 3668, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40313, 'Akyurt', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40314, 'Ankara', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40315, 'Ayas', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40316, 'Beypazari', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40317, 'Camlidere', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40318, 'Cubuk', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40319, 'Elmadag', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40320, 'Evren', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40321, 'Gudul', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40322, 'Haymana', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40323, 'Kalecik', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40324, 'Kazan', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40325, 'Kizilcahamam', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40326, 'Nallihan', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40327, 'Polatli', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40328, 'Sereflikochisar', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40329, 'Yenisehir', 3669, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40330, 'Akseki', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40331, 'Alanya', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40332, 'Antalya', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40333, 'Elmali', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40334, 'Finike', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40335, 'Gazipasa', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40336, 'Gundogmus', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40337, 'Ibradi', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40338, 'Kale', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40339, 'Kas', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40340, 'Kemer', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40341, 'Konya', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40342, 'Korkuteli', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40343, 'Kumluca', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40344, 'Manavgat', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40345, 'Serik', 3670, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40346, 'Ardahan', 3671, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40347, 'Damal', 3671, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40348, 'Gole', 3671, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40349, 'Hanak', 3671, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40350, 'Posof', 3671, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40351, 'Ardanuc', 3672, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40352, 'Arhavi', 3672, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40353, 'Artvin', 3672, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40354, 'Borcka', 3672, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40355, 'Hopa', 3672, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40356, 'Murgul', 3672, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40357, 'Savsat', 3672, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40358, 'Yusufeli', 3672, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40359, 'Aydin', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40360, 'Bozdogan', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40361, 'Buharkent', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40362, 'Cine', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40363, 'Didim', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40364, 'Germencik', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40365, 'Incirliova', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40366, 'Karacasu', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40367, 'Karpuzlu', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40368, 'Kocarli', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40369, 'Kosk', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40370, 'Kusadasi', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40371, 'Kuyucak', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40372, 'Nazilli', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40373, 'Soke', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40374, 'Sultanhisar', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40375, 'Yenipazar', 3673, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40376, 'Ayvalik', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40377, 'Balikesir', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40378, 'Balya', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40379, 'Bandirma', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40380, 'Bigadic', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40381, 'Burhaniye', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40382, 'Dursunbey', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40383, 'Edremit', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40384, 'Erdek', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40385, 'Gomec', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40386, 'Gonen', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40387, 'Havran', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40388, 'Ivrindi', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40389, 'Kepsut', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40390, 'Manyas', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40391, 'Marmara', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40392, 'Sakarya', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40393, 'Savastepe', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40394, 'Sindirgi', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40395, 'Susurluk', 3674, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40396, 'Amasra', 3675, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40397, 'Bartin', 3675, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40398, 'Kurucasile', 3675, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40399, 'Ulus', 3675, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40400, 'Batman', 3676, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40401, 'Besiri', 3676, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40402, 'Gercus', 3676, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40403, 'Hasankeyf', 3676, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40404, 'Kozluk', 3676, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40405, 'Sason', 3676, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40406, 'Aydintepe', 3677, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40407, 'Bayburt', 3677, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40408, 'Demirozu', 3677, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40409, 'Bilecik', 3678, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40410, 'Bozuyuk', 3678, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40411, 'Golpazari', 3678, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40412, 'Inhisar', 3678, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40413, 'Osmaneli', 3678, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40414, 'Pazaryeri', 3678, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40415, 'Sogut', 3678, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40416, 'Yenipazar', 3678, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40417, 'Adakli', 3679, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40418, 'Bingol', 3679, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(40419, 'Genc', 3679, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40420, 'Karliova', 3679, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40421, 'Kigi', 3679, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40422, 'Solhan', 3679, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40423, 'Yayladere', 3679, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40424, 'Yedisu', 3679, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40425, 'Adilcevaz', 3680, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40426, 'Ahlat', 3680, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40427, 'Bitlis', 3680, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40428, 'Guroymak', 3680, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40429, 'Hizan', 3680, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40430, 'Mutki', 3680, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40431, 'Tatvan', 3680, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40432, 'Akcakoca', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40433, 'Bolu', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40434, 'Dortdivan', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40435, 'Gerede', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40436, 'Goynuk', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40437, 'Kibriscik', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40438, 'Mengen', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40439, 'Mudurnu', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40440, 'Seben', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40441, 'Yenicaga', 3681, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40442, 'Aglasun', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40443, 'Altinyayla', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40444, 'Bucak', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40445, 'Burdur', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40446, 'Golhisar', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40447, 'Karamanli', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40448, 'Kemer', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40449, 'Tefenni', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40450, 'Yesilova', 3682, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40451, 'Bursa', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40452, 'Buyukorhan', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40453, 'Gemlik', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40454, 'Gursu', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40455, 'Harmancik', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40456, 'Inegol', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40457, 'Iznik', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40458, 'Karacabey', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40459, 'Keles', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40460, 'Kestel', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40461, 'Mudanya', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40462, 'Mustafakemalpasa', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40463, 'Orhaneli', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40464, 'Orhangazi', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40465, 'Yenisehir', 3683, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40466, 'Ayvacik', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40467, 'Bayramic', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40468, 'Biga', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40469, 'Bozcaada', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40470, 'Can', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40471, 'Canakkale', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40472, 'Eceabat', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40473, 'Ezine', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40474, 'Gelibolu', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40475, 'Gokceada', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40476, 'Lapseki', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40477, 'Yenice', 3684, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40478, 'Atkaracalar', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40479, 'Bayramoren', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40480, 'Cankiri', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40481, 'Cerkes', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40482, 'Eldivan', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40483, 'Ilgaz', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40484, 'Kizilirmak', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40485, 'Korgun', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40486, 'Kursunlu', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40487, 'Orta', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40488, 'Sabanozu', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40489, 'Yaprakli', 3685, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40490, 'Alaca', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40491, 'Bayat', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40492, 'Corum', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40493, 'Dodurga', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40494, 'Iskilip', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40495, 'Kargi', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40496, 'Lacin', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40497, 'Mecitozu', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40498, 'Oguzlar', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40499, 'Ortakoy', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40500, 'Osmancik', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40501, 'Sungurlu', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40502, 'Ugurludag', 3686, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40503, 'Acipayam', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40504, 'Akkoy', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40505, 'Babadag', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40506, 'Baklan', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40507, 'Bekilli', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40508, 'Bozkurt', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40509, 'Buldan', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40510, 'Cardak', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40511, 'Civril', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40512, 'Denizli', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40513, 'Guney', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40514, 'Honaz', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40515, 'Kale', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40516, 'Saraykoy', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40517, 'Serinhisar', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40518, 'Tavas', 3687, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40519, 'Bismil', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40520, 'Cermik', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40521, 'Cinar', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40522, 'Cungus', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40523, 'Dicle', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40524, 'Diyarbakir', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40525, 'Egil', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40526, 'Ergani', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40527, 'Hani', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40528, 'Hazro', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40529, 'Kocakoy', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40530, 'Kulp', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40531, 'Lice', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40532, 'Silvan', 3688, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40533, 'Cumayeri', 3689, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40534, 'Duzce', 3689, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40535, 'Golyaka', 3689, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40536, 'Gumusova', 3689, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40537, 'Kaynasli', 3689, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40538, 'Yigilca', 3689, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40539, 'Edirne', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40540, 'Enez', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40541, 'Havsa', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40542, 'Ipsala', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40543, 'Kesan', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40544, 'Lalapasa', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40545, 'Meric', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40546, 'Suleoglu', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40547, 'Uzunkopru', 3690, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40548, 'Agin', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40549, 'Alacakaya', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40550, 'Aricak', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40551, 'Baskil', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40552, 'Elazig', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40553, 'Karakocan', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40554, 'Keban', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40555, 'Kovancilar', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40556, 'Maden', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40557, 'Palu', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40558, 'Sivrice', 3691, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40559, 'Erzincan', 3692, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40560, 'Ilic', 3692, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40561, 'Kemah', 3692, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40562, 'Kemaliye', 3692, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40563, 'Otlukbeli', 3692, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40564, 'Refahiye', 3692, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40565, 'Tercan', 3692, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40566, 'Uzumlu', 3692, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40567, 'Askale', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40568, 'Erzurum', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40569, 'Hinis', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40570, 'Horasan', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40571, 'Ilica', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40572, 'Ispir', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40573, 'Karacoban', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40574, 'Karayazi', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40575, 'Koprukoy', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40576, 'Narman', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40577, 'Oltu', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40578, 'Olur', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40579, 'Pasinler', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40580, 'Pazaryolu', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40581, 'Senkaya', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40582, 'Tekman', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40583, 'Tortum', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40584, 'Uzundere', 3693, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40585, 'Alpu', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40586, 'Beylikova', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40587, 'Cifteler', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40588, 'Eskisehir', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40589, 'Gunyuzu', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40590, 'Han', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40591, 'Inonu', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40592, 'Mahmudiye', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40593, 'Mihalgazi', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40594, 'Mihaliccik', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40595, 'Saricakaya', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40596, 'Seyitgazi', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40597, 'Sivrihisar', 3694, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40598, 'Araban', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40599, 'Gaziantep', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40600, 'Islahiye', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40601, 'Karkamis', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40602, 'Nizip', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40603, 'Nurdagi', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40604, 'Oguzeli', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40605, 'Sehitkamil', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40606, 'Yavuzeli', 3695, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40607, 'Aluca', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40608, 'Bulancak', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40609, 'Dereli', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40610, 'Dogankent', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40611, 'Espiye', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40612, 'Eynesil', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40613, 'Giresun', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40614, 'Gorele', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40615, 'Guce', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40616, 'Kesap', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40617, 'Piraziz', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40618, 'Sebinkarahisar', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40619, 'Tirebolu', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40620, 'Yaglidere', 3696, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40621, 'Gumushane', 3697, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40622, 'Kelkit', 3697, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40623, 'Kose', 3697, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40624, 'Kurtun', 3697, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40625, 'Siran', 3697, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40626, 'Torul', 3697, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40627, 'Cukurca', 3698, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40628, 'Hakkari', 3698, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40629, 'Semdinli', 3698, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40630, 'Yuksekova', 3698, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40631, 'Altinozu', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40632, 'Antakya', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40633, 'Belen', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40634, 'Dortyol', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40635, 'Erzin', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40636, 'Hassa', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40637, 'Iskenderun', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40638, 'Kirikhan', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40639, 'Kumlu', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40640, 'Reyhanli', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40641, 'Samandag', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40642, 'Yayladagi', 3699, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40643, 'Anamur', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40644, 'Aydincik', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40645, 'Bozyazi', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40646, 'Erdemli', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40647, 'Gulnar', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40648, 'Mersin', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40649, 'Mut', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40650, 'Silifke', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40651, 'Tarsus', 3700, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40652, 'Aralik', 3701, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40653, 'Igdir', 3701, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40654, 'Karakoyunlu', 3701, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40655, 'Tuzluca', 3701, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40656, 'Aksu', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40657, 'Atabey', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40658, 'Egirdir', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40659, 'Gelendost', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40660, 'Gonen', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40661, 'Isparta', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40662, 'Keciborlu', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40663, 'Sarkikaraagac', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40664, 'Senirkent', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40665, 'Sutculer', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40666, 'Uluborlu', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40667, 'Yalvac', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40668, 'Yenisarbademli', 3702, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40669, 'Buyukcekmece', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40670, 'Catalca', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40671, 'Eminonu', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40672, 'Esenler', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40673, 'Istanbul', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40674, 'Kadıkoy', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40675, 'Sile', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40676, 'Silivri', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40677, 'Sultanbeyli', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40678, 'Topkapı', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40679, 'Tuzla', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40680, 'Umraniye', 3703, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40681, 'Aliaga', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40682, 'Alsancak', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40683, 'Bayindir', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40684, 'Bergama', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40685, 'Beyagac', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40686, 'Bornova', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40687, 'Cesme', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40688, 'Digor', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40689, 'Dikili', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40690, 'Foca', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40691, 'Izmir', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40692, 'Karaburun', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40693, 'Kemalpasa', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40694, 'Kinik', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40695, 'Kiraz', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40696, 'Menderes', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40697, 'Menemen', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40698, 'Merkezi', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40699, 'Mersinli', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40700, 'Odemis', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40701, 'Seferihisar', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40702, 'Selcuk', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40703, 'Tire', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40704, 'Torbali', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40705, 'Urla', 3704, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40706, 'Afsin', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40707, 'Andirin', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40708, 'Caglayancerit', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40709, 'Ekinozu', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40710, 'Elbistan', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40711, 'Goksun', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40712, 'Kahramanmaras', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40713, 'Nurhak', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40714, 'Pazarcik', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40715, 'Turkoglu', 3705, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40716, 'Eflani', 3706, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40717, 'Eskipazar', 3706, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40718, 'Karabuk', 3706, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40719, 'Ovacik', 3706, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40720, 'Safranbolu', 3706, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40721, 'Yenice', 3706, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40722, 'Ayranci', 3707, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40723, 'Basyayla', 3707, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40724, 'Ermenek', 3707, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40725, 'Karaman', 3707, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40726, 'Kazimkarabekir', 3707, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40727, 'Sariveliler', 3707, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40728, 'Akyaka', 3708, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40729, 'Arpacay', 3708, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40730, 'Kagizman', 3708, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40731, 'Kars', 3708, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40732, 'Sarikamis', 3708, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40733, 'Selim', 3708, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40734, 'Susuz', 3708, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40735, 'Karsiyaka', 3709, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40736, 'Abana', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40737, 'Agli', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40738, 'Arac', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40739, 'Azdavay', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40740, 'Bozkurt', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40741, 'Daday', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40742, 'Devrekani', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40743, 'Doganyurt', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40744, 'Hanonu', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40745, 'Ihsangazi', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40746, 'Inebolu', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40747, 'Kastamonu', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40748, 'Kure', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40749, 'Pinarbasi', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40750, 'Senpazar', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40751, 'Seydiler', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40752, 'Taskopru', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40753, 'Tosya', 3710, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40754, 'Akkisla', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40755, 'Bunyan', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40756, 'Develi', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40757, 'Felahiye', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40758, 'Hacilar', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40759, 'Incesu', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40760, 'Kayseri', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40761, 'Ozvatan', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40762, 'Pinarbasi', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40763, 'Sarioglan', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40764, 'Sariz', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40765, 'Talas', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40766, 'Tomarza', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40767, 'Yahyali', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40768, 'Yesilhisar', 3711, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40769, 'Elbeyli', 3712, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40770, 'Kilis', 3712, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40771, 'Musabeyli', 3712, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40772, 'Polateli', 3712, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40773, 'Bahsili', 3713, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40774, 'Baliseyh', 3713, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40775, 'Delice', 3713, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40776, 'Karakecili', 3713, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40777, 'Keskin', 3713, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40778, 'Kirikkale', 3713, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40779, 'Sulakyurt', 3713, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40780, 'Yahsihan', 3713, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40781, 'Babaeski', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40782, 'Demirkoy', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40783, 'Kirklareli', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40784, 'Kofcaz', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40785, 'Kumkoy', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40786, 'Luleburgaz', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40787, 'Pehlivankoy', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40788, 'Pinarhisar', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40789, 'Vize', 3714, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40790, 'Akcakent', 3715, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40791, 'Akpinar', 3715, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40792, 'Boztepe', 3715, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40793, 'Kaman', 3715, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40794, 'Kirsehir', 3715, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40795, 'Mucur', 3715, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40796, 'Cayırova', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40797, 'Derince', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40798, 'Dilovası', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40799, 'Gebze', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40800, 'Golcuk', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40801, 'Izmit', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40802, 'Kandira', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40803, 'Karamursel', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40804, 'Kocaeli', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40805, 'Korfez', 3716, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40806, 'Ahirli', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40807, 'Akoren', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40808, 'Aksehir', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40809, 'Altinekin', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40810, 'Beysehir', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40811, 'Bozkir', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40812, 'Cihanbeyli', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40813, 'Cumra', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40814, 'Derbent', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40815, 'Derebucak', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40816, 'Doganhisar', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40817, 'Emirgazi', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40818, 'Eregli', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40819, 'Guneysinir', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40820, 'Hadim', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40821, 'Halkapinar', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40822, 'Huyuk', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40823, 'Ilgin', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40824, 'Kadinhani', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40825, 'Karapinar', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40826, 'Konya', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40827, 'Kulu', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40828, 'Sarayonu', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40829, 'Seydisehir', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40830, 'Taskent', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40831, 'Tuzlukcu', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40832, 'Yalihuyuk', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40833, 'Yunak', 3717, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40834, 'Altinas', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40835, 'Aslanapa', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40836, 'Domanic', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40837, 'Dumlupinar', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40838, 'Emet', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40839, 'Gediz', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40840, 'Kutahya', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40841, 'Pazarlar', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40842, 'Saphane', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40843, 'Simav', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40844, 'Tavsanli', 3718, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40845, 'Lefkosa', 3719, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40846, 'Akcadag', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40847, 'Arapkir', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40848, 'Arguvan', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40849, 'Battalgazi', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40850, 'Darende', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40851, 'Dogansehir', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40852, 'Doganyol', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40853, 'Hekimhan', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40854, 'Kale', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40855, 'Kuluncak', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40856, 'Malatya', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40857, 'Poturge', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40858, 'Yazihan', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40859, 'Yesilyurt', 3720, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40860, 'Ahmetli', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40861, 'Akhisar', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40862, 'Alasehir', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40863, 'Demirci', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40864, 'Golmarmara', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40865, 'Gordes', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40866, 'Kirkagac', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40867, 'Koprubasi', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40868, 'Kula', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40869, 'Manisa', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40870, 'Salihli', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40871, 'Sarigol', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40872, 'Saruhanli', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40873, 'Selendi', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40874, 'Soma', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40875, 'Turgutlu', 3721, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40876, 'Dargecit', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40877, 'Derik', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40878, 'Kiziltepe', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40879, 'Mardin', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40880, 'Mazidagi', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40881, 'Midyat', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40882, 'Nusaybin', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40883, 'Omerli', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40884, 'Savur', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40885, 'Yesilli', 3722, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40886, 'Bodrum', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40887, 'Dalaman', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40888, 'Datca', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40889, 'Fethiye', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40890, 'Kavaklidere', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40891, 'Koycegiz', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40892, 'Marmaris', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40893, 'Milas', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40894, 'Mugla', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40895, 'Ortaca', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40896, 'Ula', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40897, 'Yatagan', 3723, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40898, 'Bulanik', 3724, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40899, 'Haskoy', 3724, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40900, 'Korkut', 3724, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40901, 'Malazgirt', 3724, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40902, 'Mus', 3724, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40903, 'Varto', 3724, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40904, 'Acigol', 3725, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40905, 'Avanos', 3725, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40906, 'Derinkuyu', 3725, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40907, 'Gulsehir', 3725, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40908, 'Hacibektas', 3725, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40909, 'Kozakli', 3725, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40910, 'Nevsehir', 3725, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40911, 'Urgup', 3725, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40912, 'Altunhisar', 3726, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40913, 'Bor', 3726, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40914, 'Nigde', 3726, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40915, 'Ulukisla', 3726, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40916, 'Akkus', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40917, 'Aybasti', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40918, 'Camas', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40919, 'Fatsa', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40920, 'Golkoy', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40921, 'Gulyali', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40922, 'Gurgentepe', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40923, 'Ikizce', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40924, 'Kabaduz', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40925, 'Kabatas', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40926, 'Korgan', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40927, 'Kumru', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40928, 'Mesudiye', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40929, 'Ordu', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40930, 'Persembe', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40931, 'Ulubey', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40932, 'Unye', 3727, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40933, 'Bahce', 3728, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40934, 'Duzici', 3728, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40935, 'Hasanbeyli', 3728, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40936, 'Kadirli', 3728, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40937, 'Osmaniye', 3728, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40938, 'Sumbas', 3728, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40939, 'Toprakkale', 3728, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40940, 'Ardesen', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40941, 'Cayeli', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40942, 'Derepazan', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40943, 'Findikli', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40944, 'Guneysu', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40945, 'Hemsin', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40946, 'Ikizdere', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40947, 'Iyidere', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40948, 'Kalkandere', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40949, 'Pazar', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40950, 'Rize', 3729, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40951, 'Adapazari', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40952, 'Akyazi', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40953, 'Ferizli', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40954, 'Geyve', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40955, 'Hendek', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40956, 'Karapurcek', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40957, 'Karasu', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40958, 'Kaynarca', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40959, 'Kocaali', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40960, 'Pamukova', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40961, 'Sapanca', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40962, 'Sogutlu', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40963, 'Tarakli', 3730, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40964, 'Akcakale', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40965, 'Alacam', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40966, 'Asarcik', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40967, 'Ayvacik', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40968, 'Bafra', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40969, 'Carsamba', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40970, 'Havza', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40971, 'Kavak', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40972, 'Ladik', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40973, 'Mayis 19', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40974, 'Salipazan', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40975, 'Samsun', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40976, 'Tekkekoy', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40977, 'Terme', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40978, 'Vezirkopru', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40979, 'Yakakent', 3731, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40980, 'Birecik', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40981, 'Bozova', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40982, 'Ceylanpinar', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40983, 'Halfeti', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40984, 'Harran', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40985, 'Hilvan', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40986, 'Sanliurfa', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40987, 'Siverek', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40988, 'Suruc', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40989, 'Urfa', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40990, 'Viransehir', 3732, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40991, 'Aydinlar', 3733, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40992, 'Baykan', 3733, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40993, 'Eruh', 3733, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40994, 'Kurtalan', 3733, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40995, 'Pervari', 3733, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40996, 'Siirt', 3733, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40997, 'Sirvan', 3733, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40998, 'Ayancik', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(40999, 'Boyabat', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41000, 'Dikmen', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41001, 'Duragan', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41002, 'Erfelek', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41003, 'Gerze', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41004, 'Sarayduzu', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(41005, 'Sinop', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41006, 'Turkeli', 3734, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41007, 'Beytussebap', 3735, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41008, 'Cizre', 3735, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41009, 'Guclukonak', 3735, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41010, 'Idil', 3735, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41011, 'Silopi', 3735, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41012, 'Sirnak', 3735, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41013, 'Uludere', 3735, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41014, 'Akincilar', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41015, 'Altinyayla', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41016, 'Divrigi', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41017, 'Dogansar', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41018, 'Gemerek', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41019, 'Golova', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41020, 'Gurun', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41021, 'Hafik', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41022, 'Imranli', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41023, 'Kangal', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41024, 'Koyulhisar', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41025, 'Sarkisla', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41026, 'Sivas', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41027, 'Susehri', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41028, 'Ulas', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41029, 'Yildizeli', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41030, 'Zara', 3736, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41031, 'Cerkezkoy', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41032, 'Corlu', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41033, 'Hayrabolu', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41034, 'Malkara', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41035, 'Marmaraereglisi', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41036, 'Muratli', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41037, 'Saray', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41038, 'Sarkoy', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41039, 'Tekirdag', 3737, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41040, 'Almus', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41041, 'Artova', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41042, 'Basciftlik', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41043, 'Erbaa', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41044, 'Niksar', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41045, 'Pazar', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41046, 'Resadiye', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41047, 'Sulusaray', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41048, 'Tokat', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41049, 'Turhal', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41050, 'Yesilyurt', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41051, 'Zile', 3738, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41052, 'Akcaabat', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41053, 'Arakli', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41054, 'Arsin', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41055, 'Besikduzu', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41056, 'Caykara', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41057, 'Dernekpazari', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41058, 'Duzkoy', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41059, 'Hayrat', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41060, 'Koprubasi', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41061, 'Macka', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41062, 'Of', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41063, 'Salpazari', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41064, 'Surmene', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41065, 'Tonya', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41066, 'Trabzon', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41067, 'Vakfikebir', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41068, 'Yomra', 3739, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41069, 'Hozat', 3740, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41070, 'Mazgirt', 3740, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41071, 'Nazimiye', 3740, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41072, 'Ovacik', 3740, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41073, 'Pertek', 3740, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41074, 'Pulumur', 3740, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41075, 'Tunceli', 3740, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41076, 'Banaz', 3741, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41077, 'Esme', 3741, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41078, 'Karahalli', 3741, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41079, 'Sivasli', 3741, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41080, 'Ulubey', 3741, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41081, 'Usak', 3741, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41082, 'Bahcesaray', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41083, 'Baskale', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41084, 'Caldiran', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41085, 'Edremit', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41086, 'Ercis', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41087, 'Gevas', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41088, 'Gurpinar', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41089, 'Muradiye', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41090, 'Ozalp', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41091, 'Saray', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41092, 'Van', 3742, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41093, 'Altinova', 3743, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41094, 'Armutlu', 3743, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41095, 'Ciftlikkoy', 3743, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41096, 'Cinarcik', 3743, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41097, 'Termal', 3743, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41098, 'Yalova', 3743, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41099, 'Akdagmadeni', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41100, 'Aydincik', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41101, 'Bogaziliyan', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41102, 'Candir', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41103, 'Cayiralan', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41104, 'Cekerek', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41105, 'Kadisehri', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41106, 'Saraykent', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41107, 'Sarikaya', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41108, 'Sefaatli', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41109, 'Sorgun', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41110, 'Yenifakili', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41111, 'Yerkoy', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41112, 'Yozgat', 3744, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41113, 'Alapli', 3745, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41114, 'Caycuma', 3745, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41115, 'Devrek', 3745, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41116, 'Eregli', 3745, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41117, 'Gokcebey', 3745, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41118, 'Zonguldak', 3745, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41119, 'Ahchadepe', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41120, 'Annau', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41121, 'Babadayhan', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41122, 'Baherden', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41123, 'Birleshik Pervi', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41124, 'Buzmeyin', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41125, 'Dushak', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41126, 'Gokedepe', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41127, 'Kaka', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41128, 'Miana', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41129, 'Ovaz Jalatay', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41130, 'Saragt', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41131, 'Tecen', 3746, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41132, 'Asgabat', 3747, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41133, 'Adyndaky', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41134, 'Balkanabat', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41135, 'Bekdash', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41136, 'Gasanguli', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41137, 'Gazanjyk', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41138, 'Goturdepe', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41139, 'Gumdag', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41140, 'Jebel', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41141, 'Karakala', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41142, 'Khazar', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41143, 'Serdar', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41144, 'Sharlawuk', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41145, 'Turkmenbasi', 3748, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41146, 'Akdepe', 3749, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41147, 'Boldumsaz', 3749, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41148, 'Dasoguz', 3749, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41149, 'Gubadag', 3749, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41150, 'Kohne Urgenc', 3749, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41151, 'Moskva', 3749, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41152, 'Tagta', 3749, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41153, 'Yilanli', 3749, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41154, 'Darganata', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41155, 'Esenmengli', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41156, 'Farap', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41157, 'Gazojak', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41158, 'Govurdak', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41159, 'Halac', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41160, 'Kerki', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41161, 'Komsomolsk', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41162, 'Mukri', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41163, 'Sayat', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41164, 'Seydi', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41165, 'Turkmenabat', 3750, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41166, 'Bayramali', 3751, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41167, 'Eloten', 3751, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41168, 'Mari', 3751, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41169, 'Murgab', 3751, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41170, 'Sakarchage', 3751, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41171, 'Tagtabazar', 3751, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41172, 'Turkmengala', 3751, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41173, 'Vaiaku', 3754, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41174, 'Tonga', 3755, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41175, 'Lolua', 3756, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41176, 'Kua', 3757, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41177, 'Tanrake', 3758, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41178, 'Savave', 3759, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41179, 'Fangaua', 3760, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41180, 'Asau', 3761, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41181, 'Bombo', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41182, 'Bweyogerere', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41183, 'Entebbe', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41184, 'Jinja-Kawempe', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41185, 'Kajansi', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41186, 'Kalangala', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41187, 'Kampala', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41188, 'Kayunga', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41189, 'Kiboga', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41190, 'Kireka', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41191, 'Kyotera', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41192, 'Lugazi', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41193, 'Lukaya', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41194, 'Luwero', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41195, 'Lyantonde', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41196, 'Masaka', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41197, 'Mityana', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41198, 'Mpigi', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41199, 'Mubende', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41200, 'Mukono', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41201, 'Nakasongola', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41202, 'Namasuba', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41203, 'Njeru', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41204, 'Nkonkonjeru', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41205, 'Rakai', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41206, 'Sembabule', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41207, 'Wakiso', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41208, 'Wobulenzi', 3762, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41209, 'Bugembe', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41210, 'Bugiri', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41211, 'Busembatia', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41212, 'Busia', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41213, 'Buwenge', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41214, 'Iganga', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41215, 'Jinja', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41216, 'Kaberamaido', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41217, 'Kamuli', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41218, 'Kapchorwa', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41219, 'Katakwi', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41220, 'Kumi', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41221, 'Malaba', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41222, 'Mayuge', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41223, 'Mbale', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41224, 'Ngora', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41225, 'Pallisa', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41226, 'Sironko', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41227, 'Soroti', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41228, 'Tororo', 3763, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41229, 'Adjumani', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41230, 'Amudat', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41231, 'Apac', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41232, 'Arua', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41233, 'Gulu', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41234, 'Kaabong', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41235, 'Kitgum', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41236, 'Koboko', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41237, 'Kotido', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41238, 'Lira', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41239, 'Moroto', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41240, 'Moyo', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41241, 'Nakapiripirit', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41242, 'Nebbi', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41243, 'Pader', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41244, 'Paidha', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41245, 'Pakwach', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41246, 'Yumbe', 3764, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41247, 'Bundibugyo', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41248, 'Bushenyi', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41249, 'Fort Portal', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41250, 'Hima', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41251, 'Hoima', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41252, 'Ibanda', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41253, 'Kabale', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41254, 'Kabwohe-Itendero', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41255, 'Kagadi', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41256, 'Kamwenge', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41257, 'Kanungu', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41258, 'Kasese', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41259, 'Katwe', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41260, 'Kibaale', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41261, 'Kigorobya', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41262, 'Kilembe', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41263, 'Kisoro', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41264, 'Kyenjojo', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41265, 'Masindi', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41266, 'Masindi-Port', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41267, 'Mbarara', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41268, 'Muhororo', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41269, 'Ntungamo', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41270, 'Rukungiri', 3765, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41271, 'Cherkasy', 3766, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41272, 'Smila', 3766, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41273, 'Uman\'', 3766, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41274, 'Chernihiv', 3767, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41275, 'Nizhyn', 3767, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41276, 'Pryluky', 3767, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41277, 'Chernivtsi', 3768, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41278, 'Alushta', 3769, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41279, 'Sevastopol', 3769, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41280, 'Dneprodzerzhinsk', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41281, 'Dnipropetrovsk', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41282, 'Kryvyy Rih', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41283, 'Marhanets\'', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41284, 'Nikopol\'', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41285, 'Novomoskovs\'k', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41286, 'Pavlohrad', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41287, 'Plekhanov', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41288, 'Zhovti Vody', 3770, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41289, 'Artemivs\'k', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41290, 'Donets\'k', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41291, 'Donetsk', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41292, 'Druzhkivka', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41293, 'Dymytrov', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41294, 'Dzerzhyns\'k', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41295, 'Horlivka', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41296, 'Khartsyz\'k', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41297, 'Kostyantynivka', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41298, 'Kramators\'k', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41299, 'Krasnoarmiys\'k', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41300, 'Makiyivka', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41301, 'Mariupol\'', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41302, 'Shakhtars\'k', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41303, 'Slov\'yans\'k', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41304, 'Snizhne', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41305, 'Torez', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41306, 'Yenakiyeve', 3771, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41307, 'Ivano-Frankivs\'k', 3772, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41308, 'Kalush', 3772, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41309, 'Kolomyya', 3772, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41310, 'Izyum', 3773, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41311, 'Kharkiv', 3773, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41312, 'Lozova', 3773, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41313, 'Volchansk', 3774, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41314, 'Kherson', 3775, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41315, 'Nova Kakhovka', 3775, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41316, 'Geologov', 3776, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41317, 'Kam\'yanets\'-Podil\'s\'kyy', 3776, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41318, 'Khmel\'nyts\'kyy', 3776, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41319, 'Shepetivka', 3776, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41320, 'khmelnitskiy', 3776, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41321, 'Kirovohrad', 3777, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41322, 'Oleksandriya', 3777, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41323, 'Svidlovodsk', 3777, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41324, 'Dzhankoy', 3778, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41325, 'Feodosiya', 3778, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41326, 'Kerch', 3778, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41327, 'Simferopol\'', 3778, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41328, 'Yalta', 3778, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41329, 'Yevpatoriya', 3778, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41330, 'Kiev', 3779, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41331, 'Kyyiv', 3779, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41332, 'Bila Tserkva', 3780, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41333, 'Boryspil\'', 3780, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41334, 'Brovary', 3780, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41335, 'Fastiv', 3780, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41336, 'Chervonohrad', 3781, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41337, 'Drohobych', 3781, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41338, 'L\'viv', 3781, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41339, 'Stryy', 3781, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41340, 'Yavoriv', 3781, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41341, 'Alchevs\'k', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41342, 'Antratsyt', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41343, 'Bryanka', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41344, 'Krasnodon', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41345, 'Krasnyy Luch', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41346, 'Luhans\'k', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41347, 'Luhansk', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41348, 'Lysychans\'k', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41349, 'Pervomays\'k', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41350, 'Roven\'ky', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41351, 'Rubizhne', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41352, 'Stakhanov', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41353, 'Sverdlovs\'k', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41354, 'Syeverodonets\'k', 3782, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41355, 'Mykolayiv', 3783, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41356, 'Pervomays\'k', 3783, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41357, 'Bilhorod-Dnistrovs\'kyy', 3784, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41358, 'Illichivs\'k', 3784, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41359, 'Izmayil', 3784, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41360, 'Odesa', 3784, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41361, 'Odessa', 3785, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41362, 'Komsomol\'s\'k', 3786, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41363, 'Kremenchuh', 3786, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41364, 'Lubny', 3786, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41365, 'Poltava', 3786, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41366, 'Rivne', 3787, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41367, 'Konotop', 3789, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41368, 'Okhtyrka', 3789, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41369, 'Romny', 3789, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41370, 'Shostka', 3789, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41371, 'Sumy', 3789, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41372, 'Ternopil\'', 3790, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41373, 'Kovel\'', 3791, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41374, 'Luts\'k', 3791, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41375, 'Novovolyns\'k', 3791, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41376, 'Vinnitsa', 3792, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41377, 'Vinnytsya', 3792, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41378, 'Mukacheve', 3793, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41379, 'Uzhhorod', 3793, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41380, 'Berdyans\'k', 3794, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41381, 'Enerhodar', 3794, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41382, 'Melitpol\'', 3794, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41383, 'Zaporizhia', 3794, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41384, 'Berdychiv', 3795, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41385, 'Korosten\'', 3795, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41386, 'Novohrad-Volyns\'kyy', 3795, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41387, 'Zhytomyr', 3795, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41388, 'Ajman', 3797, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41389, 'Al Qusais', 3798, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41390, 'Deira', 3798, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41391, 'Dubai', 3798, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41392, 'Jebel Ali', 3798, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41393, 'Sharjah', 3800, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41394, 'Khawr Fakkan', 3803, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41395, 'al-Fujayrah', 3803, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41396, 'Cleveland', 3805, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41397, 'Gilberdyke', 3805, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41398, 'Llanrwst', 3805, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41399, 'Swadlincote', 3805, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41400, 'Turriff', 3805, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41401, 'Westhill', 3806, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41402, 'Oban', 3807, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41403, 'Craigavon', 3808, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41404, 'Barton-le-Clay', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41405, 'Bedford', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41406, 'Biggleswade', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41407, 'Caddington', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41408, 'Flitton', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41409, 'Flitwick', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41410, 'Leighton Buzzard', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41411, 'Marston Moretaine', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41412, 'Sandy', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41413, 'Westoning', 3809, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41414, 'Dundonald', 3810, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41415, 'Holywood', 3810, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41416, 'Berkshire', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41417, 'Bracknell', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41418, 'Littlewick Green', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41419, 'Maidenhead', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41420, 'Newbury', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41421, 'Reading', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41422, 'Sandhurst', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41423, 'Slough', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41424, 'Sunninghill', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41425, 'Twyford', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41426, 'Windsor', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41427, 'Wokingham', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41428, 'Woodley', 3811, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41429, 'Coleshill', 3812, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41430, 'Edgbaston', 3812, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41431, 'Hockley', 3812, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41432, 'Ladywood', 3812, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41433, 'Nechells', 3812, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41434, 'Rubery', 3812, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41435, 'Small Heath', 3812, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41436, 'Angus', 3813, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41437, 'Bridgnorth', 3814, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41438, 'Avon', 3815, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41439, 'Fishponds', 3815, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41440, 'Henleaze', 3815, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41441, 'Thornbury', 3815, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41442, 'Warmley', 3815, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41443, 'Amersham', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41444, 'Aston Clinton', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41445, 'Beaconsfield', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41446, 'Bletchley', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41447, 'Bourne End', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41448, 'Buckingham', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41449, 'High Wycombe', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41450, 'Iver', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41451, 'Marlow', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41452, 'Milton Keynes', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41453, 'Newport Pagnell', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41454, 'Piddington', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41455, 'Princes Risborough', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41456, 'Rowsham', 3816, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41457, 'Cambridge', 3817, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41458, 'Ely', 3817, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41459, 'Huntingdon', 3817, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41460, 'Peterborough', 3817, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41461, 'Cambridge', 3818, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41462, 'Haddenham', 3818, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41463, 'Sawtry', 3818, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41464, 'Wisbech', 3818, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41465, 'Alderley Edge', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41466, 'Altrincham', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41467, 'Betley', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41468, 'Cheadle Gatley', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41469, 'Cheadle Hulme', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41470, 'Crewe', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41471, 'Dukinfield', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41472, 'Holmes Chapel', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41473, 'Hyde', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41474, 'Knuntsford', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41475, 'Knutsford', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41476, 'Lymm', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41477, 'Malpas', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41478, 'Merseyside', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41479, 'Middlewich', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41480, 'Mobberley', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41481, 'Nantwich', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41482, 'Saltney', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41483, 'Sandbach', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41484, 'Stalybridge', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41485, 'Stockport', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41486, 'Tarporley', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41487, 'Timperley', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41488, 'Widnes', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41489, 'Winsford', 3820, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41490, 'Redcar', 3821, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41491, 'Stockton-on-Tees', 3821, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41492, 'Conwy', 3823, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41493, 'Llandudno', 3823, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41494, 'Bude', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41495, 'Camborne', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41496, 'Fowey', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41497, 'Hayle', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41498, 'Helston', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41499, 'Launceston', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41500, 'Liskeard', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41501, 'Looe', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41502, 'Mevegissey', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41503, 'Newquay', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41504, 'Penryn', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41505, 'Penzance', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41506, 'St. Ives', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41507, 'Truro', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41508, 'Wadebridge', 3824, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41509, 'Holbrooks', 3825, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41510, 'Askam-in-Furness', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41511, 'Flookburgh', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41512, 'Grasmere', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41513, 'Kendal', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41514, 'Keswick', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41515, 'Kirkby Stephen', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41516, 'Milnthorpe', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41517, 'Penrith', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41518, 'Ulverston', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41519, 'Windermere', 3827, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41520, 'Denbigh', 3828, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41521, 'Ashbourne', 3829, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41522, 'Buxton', 3829, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41523, 'Chesterfield', 3829, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41524, 'Eckington', 3829, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41525, 'Bakewell', 3830, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41526, 'Belper', 3830, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41527, 'Breaston', 3830, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41528, 'Derby', 3830, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41529, 'Ilkeston', 3830, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41530, 'Matlock', 3830, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41531, 'Ripley', 3830, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41532, 'Axminster', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41533, 'Barnstaple', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41534, 'Beaworthy', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41535, 'Bideford', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41536, 'Bovey Tracey', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41537, 'Braunton', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41538, 'Brixham', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41539, 'Chudleigh', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41540, 'Crediton', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41541, 'Dalwood', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41542, 'Dartmouth', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41543, 'Dawlish', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41544, 'Exeter', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41545, 'Exmouth', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41546, 'Great Torrington', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41547, 'Holsworthy', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41548, 'Kingsbridge', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41549, 'Modbury', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41550, 'Newton Abbot', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41551, 'Okehampton', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41552, 'Plymouth', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41553, 'Plympton', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41554, 'Salcombe', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41555, 'Tiverton', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41556, 'Torquay', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41557, 'Totnes', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41558, 'Winkleigh', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41559, 'Woodburyd', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41560, 'Yelverton', 3831, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41561, 'Didcot', 3833, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41562, 'Beaminster', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41563, 'Blandford Forum', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41564, 'Christchurch', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41565, 'Dorset', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41566, 'Poole', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41567, 'Sherborne', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41568, 'Sturminster Newton', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41569, 'Swanage', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41570, 'Verwood', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41571, 'Wimborne', 3834, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41572, 'Alexandria', 3835, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41573, 'Crook', 3836, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41574, 'Spennymoor', 3836, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41575, 'Abingdon', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41576, 'Accrington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41577, 'Aldershot', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41578, 'Alfreton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41579, 'Altrincham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41580, 'Amersham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41581, 'Andover', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41582, 'Arnold', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41583, 'Ashford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(41584, 'Ashington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41585, 'Ashton-in-Makerfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41586, 'Ashton-under-Lyne', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41587, 'Atherton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41588, 'Aylesbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41589, 'Aylesford-East Malling', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41590, 'Banbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41591, 'Banstead-Tadworth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41592, 'Barnsley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41593, 'Barnstaple', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41594, 'Barrow-in-Furness', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41595, 'Basildon', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41596, 'Basingstoke', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41597, 'Bath', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41598, 'Batley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41599, 'Bebington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41600, 'Bedford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41601, 'Bedworth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41602, 'Beeston and Stapleford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41603, 'Benfleet', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41604, 'Bentley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41605, 'Berwick-upon-Tweed', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41606, 'Beverley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41607, 'Bexhil', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41608, 'Bicester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41609, 'Bideford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41610, 'Billericay', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41611, 'Billingham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41612, 'Birkenhead', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41613, 'Birmingham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41614, 'Bishop Auckland', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41615, 'Bishop\'s Stortford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41616, 'Blackburn', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41617, 'Blackpool', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41618, 'Bletchley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41619, 'Blyth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41620, 'Bodmin', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41621, 'Bognor Regis', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41622, 'Bolton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41623, 'Bootle', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41624, 'Boston', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41625, 'Bournemouth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41626, 'Bracknell', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41627, 'Bradford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41628, 'Braintree', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41629, 'Bredbury and Romiley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41630, 'Brentwood', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41631, 'Bridgwater', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41632, 'Bridlington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41633, 'Brigg', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41634, 'Brighouse', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41635, 'Brighton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41636, 'Bristol', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41637, 'Broadstairs', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41638, 'Bromley Cross-Bradshaw', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41639, 'Bromsgrove-Catshill', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41640, 'Burgess Hill', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41641, 'Burnley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41642, 'Burntwood', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41643, 'Burton-upon-Trent', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41644, 'Bury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41645, 'Bury Saint Edmunds', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41646, 'Camberley-Frimley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41647, 'Cambourne-Redruth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41648, 'Cambridge', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41649, 'Cannock', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41650, 'Canterbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41651, 'Canvey Island', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41652, 'Carlisle', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41653, 'Carlton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41654, 'Castleford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41655, 'Caterham and Warlingham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41656, 'Chadderton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41657, 'Chapeltown', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41658, 'Chatham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41659, 'Cheadle and Gatley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41660, 'Chelmsford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41661, 'Cheltenham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41662, 'Chesham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41663, 'Cheshunt', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41664, 'Chessington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41665, 'Chester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41666, 'Chester-le-Street', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41667, 'Chesterfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41668, 'Chichester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41669, 'Chippenham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41670, 'Chipping Sodbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41671, 'Chorley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41672, 'Christchurch', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41673, 'Clacton-on-Sea', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41674, 'Clay Cross-North Wingfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41675, 'Cleethorpes', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41676, 'Clevedon', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41677, 'Coalville', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41678, 'Colchester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41679, 'Congleton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41680, 'Consett', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41681, 'Corby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41682, 'Coventry', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41683, 'Cramlington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41684, 'Crawley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41685, 'Crosby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41686, 'Crowthorne', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41687, 'Darlington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41688, 'Dartford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41689, 'Darwen', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41690, 'Deal', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41691, 'Denton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41692, 'Derby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41693, 'Dewsbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41694, 'Doncaster', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41695, 'Dorchester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41696, 'Dover', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41697, 'Droitwich', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41698, 'Dronfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41699, 'Droylsden', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41700, 'Dudley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41701, 'Dunstable', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41702, 'Durham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41703, 'East Grinstead', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41704, 'East Retford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41705, 'Eastbourne', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41706, 'Eastleigh', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41707, 'Eaton Socon-Saint Neots', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41708, 'Eccles', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41709, 'Egham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41710, 'Ellesmere Port', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41711, 'Epsom and Ewell', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41712, 'Esher-Molesey', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41713, 'Eston and South Bank', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41714, 'Exeter', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41715, 'Failsworth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41716, 'Falmouth-Penryn', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41717, 'Fareham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41718, 'Farnborough', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41719, 'Farnham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41720, 'Farnworth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41721, 'Farring', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41722, 'Felixtowe', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41723, 'Felling', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41724, 'Ferndown', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41725, 'Fleetwood', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41726, 'Folkestone', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41727, 'Formby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41728, 'Frome', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41729, 'Fulham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41730, 'Gateshead', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41731, 'Gillingham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41732, 'Glossop', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41733, 'Gloucester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41734, 'Godalming', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41735, 'Golborne', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41736, 'Gosforth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41737, 'Gosport', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41738, 'Grantham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41739, 'Gravesend', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41740, 'Grays', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41741, 'Greasby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41742, 'Great Malvern', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41743, 'Great Sankey', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41744, 'Great Yarmouth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41745, 'Grimsby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41746, 'Guildford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41747, 'Guiseley-Yeadon', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41748, 'Halesowen', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41749, 'Halifax', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41750, 'Harlow', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41751, 'Harpenden', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41752, 'Harrogate', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41753, 'Hartlepool', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41754, 'Hastings', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41755, 'Hatfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41756, 'Hatfield-Stainforth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41757, 'Havant', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41758, 'Haywards Heath', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41759, 'Hazel Grove and Bramhill', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41760, 'Hazlemere', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41761, 'Heanor', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41762, 'Hemel Hempstead', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41763, 'Hereford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41764, 'Herne Bay', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41765, 'Hertford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41766, 'Heswall', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41767, 'Heywood', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41768, 'High Wycombe', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41769, 'Hinckley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41770, 'Hindley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41771, 'Hitchin', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41772, 'Hoddesdon', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41773, 'Holmfirth-Honley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41774, 'Honiton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41775, 'Horsham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41776, 'Houghton-le-Spring', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41777, 'Hove', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41778, 'Hoylake-West Kirby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41779, 'Hucknall', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41780, 'Huddersfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41781, 'Huyton-with-Roby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41782, 'Hyde', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41783, 'Ilfracombe', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41784, 'Ilkeston', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41785, 'Ipswich', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41786, 'Ivybridge', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41787, 'Jarrow', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41788, 'Keighley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41789, 'Kendal', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41790, 'Kenilworth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41791, 'Kettering', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41792, 'Kidderminster', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41793, 'Kidsgrove', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41794, 'King\'s Lynn', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41795, 'Kingsteignton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41796, 'Kingston upon Hull', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41797, 'Kingswood', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41798, 'Kirby in Ashfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41799, 'Kirkby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41800, 'Lancaster', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41801, 'Leamington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41802, 'Leatherhead', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41803, 'Leeds', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41804, 'Leicester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41805, 'Leigh', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41806, 'Leighton Buzzard', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41807, 'Letchworth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41808, 'Lewes', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41809, 'Leyland', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41810, 'Lichfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41811, 'Lincoln', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41812, 'Litherland', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41813, 'Littlehampton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41814, 'Liverpool', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41815, 'Locks Heath', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41816, 'London', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41817, 'Long Benton-Killingworth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41818, 'Long Eaton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41819, 'Loughborough', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41820, 'Loughton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41821, 'Louth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41822, 'Lowestoft', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41823, 'Luton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41824, 'Lyminge', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41825, 'Lytham Saint Anne\'s', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41826, 'Mablethorpe and Sutton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41827, 'Macclesfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41828, 'Maghull-Lydiate', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41829, 'Maidenhead', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41830, 'Maidstone', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41831, 'Manchester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41832, 'Mangotsfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41833, 'Mansfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41834, 'Margate', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41835, 'Matlock', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41836, 'Melton Mowbray', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41837, 'Middlesbrough', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41838, 'Middleton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41839, 'Midsomer Norton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41840, 'Milton Keynes', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41841, 'Morecambe', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41842, 'Morley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41843, 'Nailsea', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41844, 'Nantwich', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41845, 'Nelson', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41846, 'New Addington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41847, 'New Milton-Barton-on-Sea', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41848, 'Newark-on-Trent', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41849, 'Newburn', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41850, 'Newbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41851, 'Newcastle upon Tyne', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41852, 'Newcastle-under-Lyme', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41853, 'Newport', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41854, 'Newton Abbot', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41855, 'Newton Aycliffe', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41856, 'North Hykeham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41857, 'North Shields', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41858, 'Northallerton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41859, 'Northam', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41860, 'Northampton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41861, 'Northfleet', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41862, 'Northwich', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41863, 'Norwich', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41864, 'Nottingham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41865, 'Nuneaton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41866, 'Oakengates-Donnington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41867, 'Oakham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41868, 'Oldbury-Smethwick', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41869, 'Oldham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41870, 'Ormskirk', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41871, 'Ossett', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41872, 'Oxford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41873, 'Paignton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41874, 'Penzance', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41875, 'Peterborough', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41876, 'Peterlee', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41877, 'Plymouth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41878, 'Pontefract', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41879, 'Poole', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41880, 'Portsmouth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41881, 'Potters Bar', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41882, 'Prescot', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41883, 'Preston', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41884, 'Prestwich', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41885, 'Prestwood', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41886, 'Pudsey', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41887, 'Radcliffe', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41888, 'Ramsgate', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41889, 'Rawtenstall', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41890, 'Rayleigh', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41891, 'Reading', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41892, 'Redcar', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41893, 'Redditch', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41894, 'Reigate', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41895, 'Rochdale', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41896, 'Rochester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41897, 'Rotherham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41898, 'Rottingdean', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41899, 'Royal Tunbridge Wells', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41900, 'Royton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41901, 'Rugby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41902, 'Rugeley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41903, 'Runcorn', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41904, 'Rushden', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41905, 'Ryde', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41906, 'Saint Albans', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41907, 'Saint Austell', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41908, 'Saint Helens', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41909, 'Sale', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41910, 'Salford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41911, 'Salisbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41912, 'Scarborough', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41913, 'Scunthorpe', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41914, 'Seaham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41915, 'Sevenoaks', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41916, 'Sheffield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41917, 'Shipley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41918, 'Shrewsbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41919, 'Sidmouth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41920, 'Sittingbourne', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41921, 'Skegness', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41922, 'Skelmersdale', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41923, 'Sleaford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41924, 'Slough', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41925, 'Solihull', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41926, 'Sompting-Lancing', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41927, 'South Shields', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41928, 'Southampton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41929, 'Southend-on-Sea', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41930, 'Southport', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41931, 'Spalding-Pinchbeck', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41932, 'St. Helens', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41933, 'Stafford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41934, 'Staines', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41935, 'Stalybridge', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41936, 'Stamford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41937, 'Stanford le Hope-Corringham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41938, 'Stanley-Annfield Plain', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41939, 'Staveley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41940, 'Stevenage', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41941, 'Stockport', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41942, 'Stockton Heath-Thelwall', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41943, 'Stockton-on-Tees', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41944, 'Stoke-on-Trent', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41945, 'Stourbridge', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41946, 'Stratford-upon-Avon', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41947, 'Stretford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41948, 'Strood', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41949, 'Stubbington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41950, 'Sunbury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41951, 'Sunderland', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41952, 'Sutton Coldfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41953, 'Sutton in Ashfield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41954, 'Swadlincote', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41955, 'Swanley-Hextable', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41956, 'Swindon', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41957, 'Swinton and Pendlebury', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41958, 'Tamworth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41959, 'Taunton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41960, 'Tavistock', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41961, 'Teignmouth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41962, 'Telford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41963, 'Tenbury Wells', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41964, 'Thatcham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41965, 'The Deepings', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41966, 'Thetford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41967, 'Thornaby', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41968, 'Thornton-Cleveleys', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41969, 'Tiverton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41970, 'Tonbridge', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41971, 'Torquay', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41972, 'Totton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41973, 'Trowbridge', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41974, 'Truro', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41975, 'Tyldesley', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41976, 'Urmston', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41977, 'Wakefield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41978, 'Walkden', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41979, 'Wallasey', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41980, 'Wallsend', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41981, 'Walsall', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41982, 'Walton and Weybridge', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41983, 'Warrington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41984, 'Warwick', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41985, 'Washington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41986, 'Waterlooville', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41987, 'Watford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41988, 'Wellingborough', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41989, 'Welwyn Garden City', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41990, 'West Bridgeford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41991, 'West Bromwich', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41992, 'Westhoughton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41993, 'Weston-super-Mare', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41994, 'Weymouth', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41995, 'Whitefield', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41996, 'Whitehaven', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41997, 'Whitley Bay', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41998, 'Wickford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(41999, 'Widnes', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42000, 'Wigan', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42001, 'Wigston', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42002, 'Wilmslow', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42003, 'Wimbourne Minster', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42004, 'Winchester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42005, 'Windsor Berks', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42006, 'Windsor-Eton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42007, 'Winsford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42008, 'Wisbech', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42009, 'Witham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42010, 'Witney', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42011, 'Woking-Byfleet', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42012, 'Wokingham', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42013, 'Wolverhampton', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42014, 'Wolverton-Stony Stratford', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42015, 'Worcester', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42016, 'Worcestershire', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42017, 'Workington', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42018, 'Worksop', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42019, 'Worthing', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42020, 'Yeovil', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42021, 'York', 3842, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42022, 'Barking', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42023, 'Basildon', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42024, 'Brentwood', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42025, 'Cambrridge', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42026, 'Canvey Island', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42027, 'Chelmsford', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42028, 'Clacton-on-Sea', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42029, 'Colchester', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42030, 'Dagenham', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42031, 'Dunmow', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42032, 'Epping', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42033, 'Essex', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42034, 'Grays', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42035, 'Harlow', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42036, 'Ilford', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42037, 'Ingatestone', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42038, 'Leigh on Sea', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42039, 'Rainham', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42040, 'Romford', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42041, 'Saffron Walden', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42042, 'Stansted', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42043, 'Wickford', 3843, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42044, 'Ballinamallard', 3844, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42045, 'Kirkcaldy', 3845, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42046, 'Ewloe', 3846, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42047, 'Greenfield', 3846, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42048, 'Imperial Wharf', 3847, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42049, 'Kirton-in-Lindsey', 3848, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42050, 'Berkeley', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42051, 'Cheltenham', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42052, 'Churchham', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42053, 'Cirencester', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42054, 'East Kilbride', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42055, 'Gloucester', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42056, 'Lechlade', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42057, 'Lydney', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42058, 'Moreton in Marsh', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42059, 'Stroud', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42060, 'Tewkesbury', 3849, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42061, 'Blackwood', 3850, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42062, 'Blaenavon', 3850, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42063, 'Newport', 3850, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42064, 'Tredegar', 3850, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42065, 'Aldershot', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42066, 'Alton', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42067, 'Andover', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42068, 'Bordon', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42069, 'Botley', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42070, 'Fareham', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42071, 'Farnborough', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42072, 'Fleet', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42073, 'Fordingbridge', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42074, 'Havant', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42075, 'Hayling Island', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42076, 'Hook', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42077, 'Isle of wight', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42078, 'Liphook', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42079, 'Longparish', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42080, 'Old Bishopstoke', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42081, 'Petersfield', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42082, 'Portsmouth', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42083, 'Ringwood', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42084, 'Romsey', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42085, 'South Harting', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42086, 'Southampton', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42087, 'Waterlooville', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42088, 'West Wellow', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42089, 'Winchester', 3851, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42090, 'Lymington', 3852, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42091, 'Pennington', 3852, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42092, 'Southampton', 3852, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42093, 'Kington', 3853, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42094, 'Ledbury', 3853, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42095, 'Leominster', 3853, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42096, 'Saint Albans', 3853, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42097, 'Barnet', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42098, 'Bishops Stortford', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42099, 'Borehamwood', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42100, 'Brookmans Park', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42101, 'Bushey', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42102, 'Cheshunt', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42103, 'Cuffley', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42104, 'Elstree', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42105, 'Hemel Hempstead', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42106, 'Hertfordshire', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42107, 'Kings Langley', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42108, 'Much Hadham', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42109, 'Radlett', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42110, 'Rickmansworth', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42111, 'Royston', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42112, 'Stevenage', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42113, 'Waltham Cross', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42114, 'Watford', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42115, 'Welwyn', 3854, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42116, 'Newmarket', 3858, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42117, 'Ashford', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42118, 'Beckenham', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42119, 'Bromley', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42120, 'Brookland', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42121, 'Charing', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42122, 'Chatam', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42123, 'Crayford', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42124, 'Edenbridge', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42125, 'Erith', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42126, 'Faversham', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42127, 'Five Oak Green', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42128, 'Folkestone', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42129, 'Gillingham', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42130, 'Gravesend', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42131, 'Hartlip', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42132, 'Hayes', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42133, 'Herne Bay', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42134, 'Hythe', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42135, 'Lenham', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42136, 'Maidstone', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42137, 'Minster', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42138, 'New Romney', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42139, 'Orpington', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42140, 'Paddock Wood', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42141, 'Royal Tunbridge Wells', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42142, 'Sandwich', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42143, 'Sheerness', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42144, 'Sidcup', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42145, 'Sittingbourne', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42146, 'Staplehurst', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42147, 'Tunbridge Wells', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42148, 'West Malling', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42149, 'Westerham', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(42150, 'Whitstable', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42151, 'canterbury', 3859, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42152, 'Ayrshire', 3860, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42153, 'Airdrie', 3861, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42154, 'Glasgow', 3861, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42155, 'Accrington', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42156, 'Blackburn', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42157, 'Blackpool', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42158, 'Burnley', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42159, 'Clayton-Le-Moors', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42160, 'Cleveleys', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42161, 'Darwen', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42162, 'Gisburn', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42163, 'Glasgow', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42164, 'Greater Manchester', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42165, 'Hamilton', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42166, 'Kirkby Lonsdale', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42167, 'Leyland', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42168, 'Littleborough', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42169, 'Lytham St Annes', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42170, 'Nelson', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42171, 'Oldham', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42172, 'Out Rawcliffe', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42173, 'Padiham', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42174, 'Preston', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42175, 'Rochdale', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42176, 'Rossendale', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42177, 'Tarleton', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42178, 'Todmorden', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42179, 'West Lancashire', 3862, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42180, 'Coalville', 3863, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42181, 'Fleckney', 3863, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42182, 'Leicester', 3863, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42183, 'Loughborough', 3863, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42184, 'Lutterworth', 3863, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42185, 'Market Harborough', 3863, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42186, 'Tur Langton', 3863, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42187, 'Alford', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42188, 'Bourne', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42189, 'Casewick', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42190, 'Digby', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42191, 'Gainsborough', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42192, 'Grimsby', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42193, 'Immingham', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42194, 'Laceby', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42195, 'Lincoln', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42196, 'Louth', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42197, 'Market Deeping', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42198, 'Market Rasen', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42199, 'Spalding', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42200, 'Spilsby', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42201, 'Swinderby', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42202, 'Thurlby', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42203, 'Witham St Hughs', 3864, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42204, 'Llanymynech', 3865, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42205, 'Abbeywood', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42206, 'Aldgate', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42207, 'Alperton', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42208, 'Castledawson', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42209, 'Edmonton', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42210, 'Enfield', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42211, 'Forest Gate', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42212, 'Greenwich', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42213, 'Hainault', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42214, 'Hampstead', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42215, 'Harrow Weald', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42216, 'Hendon', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42217, 'Kensington', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42218, 'Leyton', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42219, 'London', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42220, 'Magherafelt', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42221, 'Mill Hill', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42222, 'Southwark', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42223, 'Suffolk', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42224, 'Sulham', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42225, 'Victoria', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42226, 'Walthamstow', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42227, 'Wandsworth', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42228, 'Wembley', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42229, 'Wimbledon', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42230, 'Woolwich', 3866, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42231, 'Ludlow', 3867, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42232, 'Manchester', 3868, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42233, 'Prestwich', 3868, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42234, 'Salford', 3868, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42235, 'Swinton', 3868, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42236, 'Worsley', 3868, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42237, 'Mayfair', 3869, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42238, 'Southport', 3870, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42239, 'Brentford', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42240, 'Brimsdown', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42241, 'Drayton', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42242, 'Edgware', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42243, 'Feltham', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42244, 'Greenford', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42245, 'Hampton', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42246, 'Harmondsworth', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42247, 'Harrow', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42248, 'Hayes', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42249, 'Isleworth', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42250, 'Northolt', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42251, 'Northwood', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42252, 'Perivale', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42253, 'Pinner', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42254, 'Ruislip', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42255, 'Ruislip Manor', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42256, 'South Harrow', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42257, 'Southall', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42258, 'Staines', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42259, 'Stamore', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42260, 'Stanmore', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42261, 'Stanwell', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42262, 'Sunbury', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42263, 'Teddington', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42264, 'Twickenham', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42265, 'Uxbridge', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42266, 'Watford', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42267, 'Wembley', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42268, 'West Drayton', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42269, 'Wraysbury', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42270, 'hounslow', 3872, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42271, 'Mildenhall', 3873, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42272, 'Abergavenny', 3874, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42273, 'Monmouth', 3874, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42274, 'Attleborough', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42275, 'Bacton', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42276, 'Briston', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42277, 'Dereham', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42278, 'Diss', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42279, 'Downham Market', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42280, 'Fakenham', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42281, 'Garboldisham', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42282, 'Gayton', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42283, 'Glandford', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42284, 'Great Yarmouth', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42285, 'Heacham', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42286, 'Hopton', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42287, 'Kings Lynn', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42288, 'Little Cressingham', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42289, 'Norwich', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42290, 'Sheringham', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42291, 'Thetford', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42292, 'Trunch', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42293, 'Winordhan', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42294, 'Wymondham', 3876, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42295, 'Daventry', 3879, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42296, 'Irthlingborough', 3879, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42297, 'Middleton Cheney', 3879, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42298, 'Oundle', 3879, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42299, 'Towcester', 3879, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42300, 'Welford', 3879, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42301, 'Wellingborough', 3879, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42302, 'Woodford Halse', 3879, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42303, 'Brackley', 3880, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42304, 'Desborough', 3880, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42305, 'weedon', 3880, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42306, 'Bedlington', 3882, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42307, 'Corbridge', 3882, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42308, 'Cramlington', 3882, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42309, 'Morpeth', 3882, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42310, 'Northumberland', 3882, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42311, 'Ponteland', 3882, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42312, 'Wooler', 3882, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42313, 'Burton Joyce', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42314, 'Cotgraves', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42315, 'Gonalston', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42316, 'Mansfield', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42317, 'Newark', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42318, 'Nottingham', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42319, 'Pennyfoot Street', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42320, 'Sandiacre', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42321, 'Southwell', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42322, 'Whatton', 3883, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42323, 'Bampton', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42324, 'Banbury', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42325, 'Bicester', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42326, 'Blewbury', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42327, 'Cheltenham', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42328, 'Chipping Norton', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42329, 'Drayton', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42330, 'Eynsham', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42331, 'Farringdon', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42332, 'Henely on Thames', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42333, 'Henley-on-Thames', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42334, 'Oxford', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42335, 'Shenington', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42336, 'Thame', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42337, 'Wantage', 3884, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42338, 'Builth Wells', 3885, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42339, 'Knighton', 3885, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42340, 'Llanbrynmair', 3885, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42341, 'New town', 3885, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42342, 'Newtown', 3885, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42343, 'Rhaeadr', 3885, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42344, 'Welshpool', 3885, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42345, 'Hill of Fearn', 3886, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42346, 'Shoreham', 3887, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42347, 'Sark', 3888, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42348, 'Aberdeen', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42349, 'Alloa', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42350, 'Alness', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42351, 'Annan', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42352, 'Arbroath', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42353, 'Ardrossan', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42354, 'Armadale', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42355, 'Ayr', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42356, 'Bathgate', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42357, 'Blairgowrie', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42358, 'Blantyre-Hamilton', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42359, 'Boness', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42360, 'Bonnybridge', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42361, 'Broxburn', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42362, 'Broxham', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42363, 'Buckhaven', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42364, 'Burntisland', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42365, 'Carluke', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42366, 'Carnoustie', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42367, 'Coatbridge', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42368, 'Cowdenbeath', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42369, 'Cumbernauld', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42370, 'Cumnock', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42371, 'Cupar', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42372, 'Dalbeattie', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42373, 'Dalkeith', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42374, 'Dingwall', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42375, 'Dumbarton', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42376, 'Dumfries', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42377, 'Dundee', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42378, 'Dunfermline', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42379, 'Dunoon', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42380, 'East Kilbride', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42381, 'Edimburah', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42382, 'Edinburgh', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42383, 'Elgin', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42384, 'Ellon', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42385, 'Erskine', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42386, 'Falkirk', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42387, 'Forfar', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42388, 'Forres', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42389, 'Fort William', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42390, 'Fraserburgh', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42391, 'Galashiels', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42392, 'Galston-Newmilns', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42393, 'Girvan', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42394, 'Glasgow', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42395, 'Glenrothes', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42396, 'Greengairs', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42397, 'Greenock', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42398, 'Haddington', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42399, 'Hawick', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42400, 'Helensburgh', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42401, 'Insch', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42402, 'Inverkeithing-Dalgety Bay', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42403, 'Inverness', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42404, 'Inverurie', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42405, 'Irvine', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42406, 'Isle of Lewis', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42407, 'Kilmarnock', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42408, 'Kilsyth', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42409, 'Kilwinning', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42410, 'Kirkcaldy', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42411, 'Kirkintilloch-Lenzie', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42412, 'Kirkwall', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42413, 'Lanark', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42414, 'Largs', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42415, 'Larkhall', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42416, 'Lerwick', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42417, 'Linlithgow', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42418, 'Livingston', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42419, 'Loanhead', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42420, 'Montrose', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42421, 'Motherwell', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42422, 'Nairn', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42423, 'Newtown Saint Boswells', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42424, 'Paisley', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42425, 'Penicuik', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42426, 'Perth', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42427, 'Peterhead', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42428, 'Saint Andrews', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42429, 'Selkirkshire', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42430, 'Shotts', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42431, 'Stirling', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42432, 'Stonehaven', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42433, 'Stornoway', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42434, 'Stranraer', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42435, 'Tranent', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42436, 'Troon', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42437, 'Whitburn', 3889, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42438, 'Bishops Castle', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42439, 'Bridgnorth', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42440, 'Bucknell', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42441, 'Drayton', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42442, 'Greete', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42443, 'Hinstock', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42444, 'Jackfield', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42445, 'Ludlow', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42446, 'Much Wenlock', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42447, 'Oswestry', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42448, 'Ryton', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42449, 'Shifnal', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42450, 'Shrewsbury', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42451, 'Telford', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42452, 'Whitchurch', 3891, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42453, 'Bath', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42454, 'Brent Knoll', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42455, 'Castle Cary', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42456, 'Shepton Mallet', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42457, 'Somerset', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42458, 'Taunton', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42459, 'Wedmore', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42460, 'Wellington', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42461, 'Weston-super-Mare', 3892, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42462, 'Burton-on-Trent', 3897, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42463, 'Hednesford', 3897, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42464, 'Stoke on Trent', 3897, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42465, 'Stone', 3897, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42466, 'Strabane', 3898, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42467, 'Bury St Edmunds', 3899, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42468, 'Felixstowe', 3899, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42469, 'Haverhill', 3899, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42470, 'Leiston', 3899, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42471, 'Lowestoft', 3899, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42472, 'Stowmarket', 3899, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42473, 'Sudbury', 3899, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42474, 'Woodbridge', 3899, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42475, 'Ashtead', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42476, 'Bagshot', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42477, 'Betchworth', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42478, 'Bletchingley', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42479, 'Carshalton', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42480, 'Chertsey', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42481, 'Claygate', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42482, 'Croydon', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42483, 'Dorking', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42484, 'Effingham', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42485, 'Epsom', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42486, 'Farnham', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42487, 'Haslemere', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42488, 'Kingston Upon Thames', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42489, 'Leatherhead', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42490, 'Mitcham', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42491, 'New Malden', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42492, 'Redhill', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42493, 'Richmond', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42494, 'Salfords', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42495, 'Shepperton', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42496, 'Stoneleigh', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42497, 'Surbiton', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42498, 'Surrey', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42499, 'Tadworth', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42500, 'Walton on Thames', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42501, 'West Molesey', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42502, 'Wisley', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42503, 'Woking', 3900, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42504, 'Brighton', 3901, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42505, 'Henfield', 3901, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42506, 'Sussex', 3901, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42507, 'Worthing', 3901, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42508, 'Twickenham', 3902, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42509, 'Omagh', 3904, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42510, 'Santaquin', 3905, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42511, 'Aberdare', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42512, 'Aberystwyth', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42513, 'Barry', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42514, 'Brecon', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42515, 'Bridgend', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42516, 'Brynmawr', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42517, 'Caernarfon', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42518, 'Caerphily', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42519, 'Caldicot', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42520, 'Cardiff', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42521, 'Carmarthen', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42522, 'Colwyn Bay', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42523, 'Connahs Quay', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42524, 'Cwmbran', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42525, 'Dolgellau', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42526, 'Ebbw Vale', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42527, 'Gaerwen', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42528, 'Gwynedd', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42529, 'Haverfordwest', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42530, 'Isle of Anglesey', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42531, 'Islwyn', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42532, 'Llandrindod Wells', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42533, 'Llanelli', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42534, 'Llangefni', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42535, 'Maesteg', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42536, 'Merthyr Tydfil', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42537, 'Mold', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42538, 'Mountain Ash-Abercynon', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42539, 'Neath', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42540, 'Newport', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42541, 'Pembrokeshire', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42542, 'Penarth', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42543, 'Pencader', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42544, 'Pontypool', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42545, 'Pontypridd', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42546, 'Port Talbot', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42547, 'Queensferry', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42548, 'Rhondda', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42549, 'Rhyl', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42550, 'Ruthin', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42551, 'Shotton-Hawarden', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42552, 'St. Asaph', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42553, 'Swansea', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42554, 'West Glamorgan', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42555, 'Wrexham', 3906, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42556, 'Alcester', 3907, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42557, 'Coventry', 3907, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42558, 'Henley in Arden', 3907, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42559, 'Nuneaton', 3907, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42560, 'Pershore', 3907, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42561, 'Southam', 3907, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42562, 'Warwick', 3907, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42563, 'Whissendine', 3912, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42564, 'Amesbury', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42565, 'Bradford on Avon', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42566, 'Calne', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42567, 'Chippenham', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42568, 'Corsham', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42569, 'Cosham', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42570, 'Devizes', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42571, 'Downton', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42572, 'Malmesbury', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42573, 'Marlborough', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42574, 'Melksham', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42575, 'Pewsey', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42576, 'Salisbury', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42577, 'Southwick', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42578, 'Swindon', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42579, 'Warminster', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42580, 'Westbury', 3913, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42581, 'Winnersh', 3914, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42582, 'Evesham', 3915, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42583, 'Hartlebury', 3915, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42584, 'Kidderminster', 3915, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42585, 'Pershore', 3915, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42586, 'Redditch', 3915, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42587, 'Worcester', 3915, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42588, 'Caergwrle', 3916, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42589, 'Ruabon', 3916, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42590, 'Neuffen', 3917, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42591, 'Beverley', 3918, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42592, 'Malton', 3918, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42593, 'Mexborough', 3918, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42594, 'Alabaster', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42595, 'Albertville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42596, 'Alexander City', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42597, 'Anniston', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42598, 'Arab', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42599, 'Ashville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42600, 'Athens', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42601, 'Atmore', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42602, 'Auburn', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42603, 'Bessemer', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42604, 'Birmingham', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42605, 'Capshaw', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42606, 'Center Point', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42607, 'Childersburg', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42608, 'Cullman', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42609, 'Daleville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42610, 'Daphne', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42611, 'Decatur', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42612, 'Dothan', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42613, 'Enterprise', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42614, 'Eufaula', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42615, 'Fairfield', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42616, 'Fairhope', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42617, 'Florence', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42618, 'Fort Payne', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42619, 'Gadsden', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42620, 'Grand Bay', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42621, 'Grove Hill', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42622, 'Guntersville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42623, 'Hampton Cove', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42624, 'Hanceville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42625, 'Hartselle', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42626, 'Headland', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42627, 'Helena', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42628, 'Hodges', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42629, 'Homewood', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42630, 'Hoover', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42631, 'Hueytown', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42632, 'Huntsville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42633, 'Jacksonville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42634, 'Jasper', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42635, 'Leeds', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42636, 'Luverne', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42637, 'Madison', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42638, 'Mobile', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42639, 'Montgomery', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42640, 'Mountain Brook', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42641, 'Muscle Shoals', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42642, 'Northport', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42643, 'Notasulga', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42644, 'Opelika', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42645, 'Oxford', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42646, 'Ozark', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42647, 'Pelham', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42648, 'Pell City', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42649, 'Pennsylvania', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42650, 'Phenix City', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42651, 'Prattville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42652, 'Prichard', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42653, 'Ramer', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42654, 'Roanoke', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42655, 'Saraland', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42656, 'Scottsboro', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42657, 'Selma', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42658, 'Sheffield', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42659, 'Smiths', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42660, 'Sumiton', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42661, 'Sylacauga', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42662, 'Talladega', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42663, 'Thomasville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42664, 'Trafford', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42665, 'Troy', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42666, 'Trussville', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42667, 'Tuscaloosa', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42668, 'Tuskegee', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42669, 'Vestavia Hills', 3919, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42670, 'Anchorage', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42671, 'Barrow', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42672, 'Bethel', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42673, 'College', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42674, 'Fairbanks', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42675, 'Homer', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42676, 'Juneau', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42677, 'Kenai', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42678, 'Ketchikan', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42679, 'Kodiak', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42680, 'Nome', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42681, 'Palmer', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42682, 'Sitka', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42683, 'Soldotna', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42684, 'Sterling', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42685, 'Unalaska', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42686, 'Valdez', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42687, 'Wasilla', 3920, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42688, 'Apache Junction', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42689, 'Avondale', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42690, 'Bisbee', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42691, 'Bouse', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42692, 'Bullhead City', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42693, 'Carefree', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42694, 'Casa Grande', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42695, 'Casas Adobes', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42696, 'Chandler', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42697, 'Clarkdale', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42698, 'Cottonwood', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42699, 'Douglas', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42700, 'Drexel Heights', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42701, 'El Mirage', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42702, 'Flagstaff', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42703, 'Florence', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42704, 'Flowing Wells', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42705, 'Fort Mohave', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42706, 'Fortuna Foothills', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42707, 'Fountain Hills', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42708, 'Gilbert', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42709, 'Glendale', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42710, 'Globe', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42711, 'Goodyear', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42712, 'Green Valley', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42713, 'Kingman', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42714, 'Lake Havasu City', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42715, 'Laveen', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42716, 'Litchfield Park', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42717, 'Marana', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42718, 'Mesa', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42719, 'New Kingman-Butler', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42720, 'Nogales', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42721, 'Oracle', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42722, 'Oro Valley', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42723, 'Paradise Valley', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(42724, 'Parker', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42725, 'Payson', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42726, 'Peoria', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42727, 'Phoenix', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42728, 'Pine', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42729, 'Pinetop', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42730, 'Prescott', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42731, 'Prescott Valley', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42732, 'Quartzsite', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42733, 'Queen Creek', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42734, 'Rio Rico', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42735, 'Safford', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42736, 'San Luis', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42737, 'Scottsdale', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42738, 'Sedona', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42739, 'Sierra Vista', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42740, 'Sierra Vista Southeast', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42741, 'Sun City', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42742, 'Sun City West', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42743, 'Surprise', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42744, 'Tempe', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42745, 'Tombstone', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42746, 'Tucson', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42747, 'Winslow', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42748, 'Yuma', 3921, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42749, 'Alexander', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42750, 'Arkadelphia', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42751, 'Batesville', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42752, 'Bella Vista', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42753, 'Benton', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42754, 'Bentonville', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42755, 'Berryville', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42756, 'Blytheville', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42757, 'Cabot', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42758, 'Camden', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42759, 'Cherry Valley', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42760, 'Conway', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42761, 'Corning', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42762, 'El Dorado', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42763, 'Fayetteville', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42764, 'Forrest City', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42765, 'Fort Smith', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42766, 'Harrison', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42767, 'Hope', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42768, 'Hot Springs', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42769, 'Jacksonville', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42770, 'Jonesboro', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42771, 'Lake City', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42772, 'Little Rock', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42773, 'Magnolia', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42774, 'Mount Vernon', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42775, 'Mountain Home', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42776, 'Norfork', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42777, 'North Little Rock', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42778, 'Paragould', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42779, 'Piggott', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42780, 'Pine Bluff', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42781, 'Pocahontas', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42782, 'Prescott', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42783, 'Quitman', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42784, 'Rogers', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42785, 'Russellville', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42786, 'Searcy', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42787, 'Sheridan', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42788, 'Sherwood', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42789, 'Siloam Springs', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42790, 'Springdale', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42791, 'Stuttgart', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42792, 'Texarkana', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42793, 'Van Buren', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42794, 'Ward', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42795, 'West Helena', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42796, 'West Memphis', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42797, 'Wynne', 3922, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42798, 'Acton', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42799, 'Adelanto', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42800, 'Agoura Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42801, 'Aguanga', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42802, 'Alameda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42803, 'Alamo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42804, 'Albany', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42805, 'Alhambra', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42806, 'Aliso Viejo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42807, 'Alondra Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42808, 'Alpine', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42809, 'Alta Loma', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42810, 'Altadena', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42811, 'American Canyon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42812, 'Anaheim', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42813, 'Anderson', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42814, 'Antelope', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42815, 'Antioch', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42816, 'Apple Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42817, 'Aptos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42818, 'Arcadia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42819, 'Arcata', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42820, 'Arden-Arcade', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42821, 'Arroyo Grande', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42822, 'Artesia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42823, 'Arvin', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42824, 'Ashland', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42825, 'Atascadero', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42826, 'Atwater', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42827, 'Auburn', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42828, 'Avalon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42829, 'Avenal', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42830, 'Avocado Heights', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42831, 'Azusa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42832, 'Bakersfield', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42833, 'Baldwin Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42834, 'Banning', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42835, 'Barstow', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42836, 'Bay Point', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42837, 'Baywood-Los Osos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42838, 'Bear Valley Springs', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42839, 'Beaumont', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42840, 'Bell', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42841, 'Bell Gardens', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42842, 'Bellflower', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42843, 'Belmont', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42844, 'Ben Lomond', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42845, 'Benicia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42846, 'Berkeley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42847, 'Beverly Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42848, 'Big Bear Lake', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42849, 'Bloomington', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42850, 'Blythe', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42851, 'Bonita', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42852, 'Bostonia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42853, 'Brawley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42854, 'Brea', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42855, 'Brentwood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42856, 'Brisbane', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42857, 'Brookdale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42858, 'Buena Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42859, 'Burbank', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42860, 'Burlingame', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42861, 'Burnham', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42862, 'Byron', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42863, 'Calabasas', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42864, 'Calexico', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42865, 'California City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42866, 'Camarillo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42867, 'Cameron Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42868, 'Camino', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42869, 'Camp Pendleton North', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42870, 'Camp Pendleton South', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42871, 'Campbell', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42872, 'Canoga Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42873, 'Canyon Lake', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42874, 'Capitola', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42875, 'Carlsbad', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42876, 'Carmel', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42877, 'Carmel Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42878, 'Carmichael', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42879, 'Carpinteria', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42880, 'Carson', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42881, 'Casa de Oro-Mount Helix', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42882, 'Castaic', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42883, 'Castro Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42884, 'Cathedral City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42885, 'Cayucos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42886, 'Ceres', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42887, 'Cerritos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42888, 'Charter Oak', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42889, 'Chatsworth', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42890, 'Cherryland', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42891, 'Chico', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42892, 'Chino', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42893, 'Chino Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42894, 'Chula Vista', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42895, 'Citrus', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42896, 'Citrus Heights', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42897, 'City of Commerce', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42898, 'City of Industry', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42899, 'Claremont', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42900, 'Clearlake', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42901, 'Clovis', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42902, 'Coachella', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42903, 'Coalinga', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42904, 'Colfax', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42905, 'Colton', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42906, 'Colusa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42907, 'Commerce', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42908, 'Compton', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42909, 'Concord', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42910, 'Corcoran', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42911, 'Corning', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42912, 'Corona', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42913, 'Coronado', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42914, 'Corte Madera', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42915, 'Costa Mesa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42916, 'Cotati', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42917, 'Cottonwood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42918, 'Country Club', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42919, 'Covina', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42920, 'Crestline', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42921, 'Cudahy', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42922, 'Culver City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42923, 'Cupertino', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42924, 'Cypress', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42925, 'Daly City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42926, 'Dana Point', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42927, 'Danville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42928, 'Davis', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42929, 'Del Mar', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42930, 'Delano', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42931, 'Desert Hot Springs', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42932, 'Diamond Bar', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42933, 'Dinuba', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42934, 'Dixon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42935, 'Downey', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42936, 'Duarte', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42937, 'Dublin', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42938, 'East Foothills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42939, 'East Hemet', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42940, 'East La Mirada', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42941, 'East Palo Alto', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42942, 'East San Gabriel', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42943, 'El Cajon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42944, 'El Centro', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42945, 'El Cerrito', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42946, 'El Granada', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42947, 'El Monte', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42948, 'El Paso de Robles', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42949, 'El Segundo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42950, 'El Sobrante', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42951, 'Elk Grove', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42952, 'Emeryville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42953, 'Encinitas', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42954, 'Encino', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42955, 'Escondido', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42956, 'Etna', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42957, 'Eureka', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42958, 'Exeter', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42959, 'Fair Oaks', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42960, 'Fairfax', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42961, 'Fairfield', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42962, 'Fairview', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42963, 'Fallbrook', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42964, 'Ferndale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42965, 'Fillmore', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42966, 'Florence-Graham', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42967, 'Florin', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42968, 'Folsom', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42969, 'Fontana', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42970, 'Foothill Farms', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42971, 'Foothill Ranch', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42972, 'Forestville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42973, 'Fort Bragg', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42974, 'Fortuna', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42975, 'Foster City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42976, 'Fountain Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42977, 'Freedom', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42978, 'Fremont', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42979, 'Fresno', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42980, 'Fullerton', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42981, 'Galt', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42982, 'Garberville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42983, 'Garden Acres', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42984, 'Garden Grove', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42985, 'Gardena', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42986, 'Georgetown', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42987, 'Gilroy', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42988, 'Glen Avon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42989, 'Glendale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42990, 'Glendora', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42991, 'Goleta', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42992, 'Gonzales', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42993, 'Granada Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42994, 'Grand Terrace', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42995, 'Grass Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42996, 'Greenfield', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42997, 'Grover Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42998, 'Gualala', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(42999, 'Guerneville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43000, 'Hacienda Heights', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43001, 'Half Moon Bay', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43002, 'Hanford', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43003, 'Harbor City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43004, 'Hawaiian Gardens', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43005, 'Hawthorne', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43006, 'Hayward', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43007, 'Hemet', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43008, 'Hercules', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43009, 'Hermosa Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43010, 'Hesperia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43011, 'Highland', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43012, 'Hillsborough', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43013, 'Hollister', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43014, 'Hollywood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43015, 'Huntington Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43016, 'Huntington Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43017, 'Idyllwild', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43018, 'Imperial Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43019, 'Indio', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43020, 'Industry', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43021, 'Inglewood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43022, 'Irvine', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43023, 'Irwindale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43024, 'Isla Vista', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43025, 'Jackson', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43026, 'Jamul', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43027, 'La Canada Flintridge', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43028, 'La Crescenta-Montrose', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43029, 'La Habra', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43030, 'La Jolla', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43031, 'La Mesa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43032, 'La Mirada', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43033, 'La Palma', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43034, 'La Presa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43035, 'La Puente', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43036, 'La Quinta', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43037, 'La Riviera', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43038, 'La Verne', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43039, 'LaVerne', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43040, 'Ladera Ranch', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43041, 'Lafayette', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43042, 'Laguna', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43043, 'Laguna Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43044, 'Laguna Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43045, 'Laguna Niguel', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43046, 'Lake Elsinore', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43047, 'Lake Forest', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43048, 'Lakeside', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43049, 'Lakewood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43050, 'Lamont', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43051, 'Lancaster', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43052, 'Larkspur', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43053, 'Lawndale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43054, 'Laytonville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43055, 'Lemon Grove', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43056, 'Lemoore', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43057, 'Lennox', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43058, 'Linda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43059, 'Lindsay', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43060, 'Live Oak', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43061, 'Livermore', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43062, 'Livingston', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43063, 'Lodi', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43064, 'Loma Linda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43065, 'Lomita', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43066, 'Lompoc', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43067, 'Long Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43068, 'Los Alamitos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43069, 'Los Altos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43070, 'Los Angeles', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43071, 'Los Angeles East', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43072, 'Los Banos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43073, 'Los Gatos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43074, 'Los Olivos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43075, 'Lynwood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43076, 'MacKinleyville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43077, 'Madera', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43078, 'Magalia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43079, 'Malibu', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43080, 'Mammoth Lakes', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43081, 'Manhattan Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43082, 'Manteca', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43083, 'Marina', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43084, 'Marina del Rey', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43085, 'Mariposa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43086, 'Marshall', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43087, 'Martinez', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43088, 'Marysville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43089, 'Maywood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43090, 'Menlo Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43091, 'Merced', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43092, 'Middletown', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43093, 'Midway City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43094, 'Mill Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43095, 'Millbrae', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43096, 'Milpitas', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43097, 'Mira Loma', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43098, 'Miranda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43099, 'Mission Viejo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43100, 'Modesto', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43101, 'Monclair', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43102, 'Monrovia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43103, 'Montara', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43104, 'Montclair', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43105, 'Montebello', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43106, 'Montecito', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43107, 'Monterey', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43108, 'Monterey Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43109, 'Moorpark', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43110, 'Moraga Town', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43111, 'Moreno Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43112, 'Morgan Hill', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43113, 'Morro Bay', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43114, 'Moss Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43115, 'Mount Shasta', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43116, 'Mountain View', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43117, 'Murrieta', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43118, 'N. Hollywood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43119, 'Napa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43120, 'National City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43121, 'Nevada City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43122, 'Newark', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43123, 'Newport Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43124, 'Norco', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43125, 'North Auburn', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43126, 'North Fair Oaks', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43127, 'North Fork', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43128, 'North Highlands', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43129, 'North Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43130, 'North Hollywood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43131, 'Northridge', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43132, 'Norwalk', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43133, 'Novato', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43134, 'Nuevo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43135, 'Oak View', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43136, 'Oakdale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43137, 'Oakhurst', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43138, 'Oakland', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43139, 'Oakley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43140, 'Oceanside', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43141, 'Oildale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43142, 'Ojai', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43143, 'Olivehurst', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43144, 'Ontario', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43145, 'Orange', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43146, 'Orangevale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43147, 'Orcutt', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43148, 'Oregon House', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43149, 'Orinda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43150, 'Oroville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43151, 'Oxnard', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43152, 'Pacific Grove', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43153, 'Pacific Palisades', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43154, 'Pacifica', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43155, 'Pacoima', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43156, 'Pajaro', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43157, 'Palm Desert', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43158, 'Palm Springs', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43159, 'Palmdale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43160, 'Palo Alto', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43161, 'Palos Verdes Estates', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43162, 'Pamona', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43163, 'Panorama City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43164, 'Paradise', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43165, 'Paramount', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43166, 'Parkway-South Sacramento', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43167, 'Parlier', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43168, 'Pasadena', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43169, 'Patterson', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43170, 'Pedley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43171, 'Perris', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43172, 'Petaluma', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43173, 'Pico Rivera', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43174, 'Piedmont', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43175, 'Pinole', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43176, 'Pismo Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43177, 'Pittsburg', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43178, 'Placentia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43179, 'Placerville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43180, 'Playa del Rey', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43181, 'Pleasant Hill', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43182, 'Pleasanton', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43183, 'Plymouth', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43184, 'Point Reyes Station', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43185, 'Pollock Pines', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43186, 'Pomona', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43187, 'Port Costa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43188, 'Port Hueneme', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43189, 'Porterville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43190, 'Poway', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43191, 'Quartz Hill', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43192, 'Ramona', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43193, 'Rancho Cordova', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43194, 'Rancho Cucamonga', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43195, 'Rancho Dominguez', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43196, 'Rancho Mirage', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43197, 'Rancho Murieta', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43198, 'Rancho Palos Verdes', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43199, 'Rancho San Diego', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43200, 'Rancho Santa Margarita', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43201, 'Red Bluff', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43202, 'Redding', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43203, 'Redlands', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43204, 'Redondo Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43205, 'Redway', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43206, 'Redwood City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43207, 'Reedley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43208, 'Reseda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43209, 'Rialto', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43210, 'Richmond', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43211, 'Ridgecrest', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43212, 'Rio Linda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43213, 'Rio Nido', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43214, 'Rio del Mar', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43215, 'Riverbank', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43216, 'Riverside', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43217, 'Rocklin', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43218, 'Rohnert Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43219, 'Rolling Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43220, 'Rosamond', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43221, 'Roseland', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43222, 'Rosemead', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43223, 'Rosemont', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43224, 'Roseville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43225, 'Rossmoor', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43226, 'Rowland Heights', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43227, 'Rubidoux', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43228, 'Sacramento', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43229, 'Salinas', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43230, 'San Anselmo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43231, 'San Bernardino', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43232, 'San Bruno', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43233, 'San Buenaventura', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43234, 'San Carlos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43235, 'San Clemente', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43236, 'San Diego', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43237, 'San Dimas', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43238, 'San Fernando', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43239, 'San Francisco', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43240, 'San Gabriel', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43241, 'San Jacinto', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43242, 'San Jose', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43243, 'San Juan Capistrano', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43244, 'San Leandro', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43245, 'San Lorenzo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43246, 'San Luis Obispo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43247, 'San Marcos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43248, 'San Marino', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43249, 'San Mateo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43250, 'San Pablo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43251, 'San Pedro', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43252, 'San Rafael', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43253, 'San Ramon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43254, 'San Ysidro', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43255, 'Sanger', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43256, 'Santa Ana', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43257, 'Santa Barbara', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43258, 'Santa Clara', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43259, 'Santa Clarita', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43260, 'Santa Cruz', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43261, 'Santa Fe Springs', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43262, 'Santa Maria', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43263, 'Santa Monica', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43264, 'Santa Paula', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43265, 'Santa Rosa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43266, 'Santa Ynez', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43267, 'Santee', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43268, 'Saratoga', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43269, 'Sausalito', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43270, 'Scotts Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43271, 'Seal Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43272, 'Seaside', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43273, 'Sebastopol', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43274, 'Selma', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43275, 'Shafter', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43276, 'Sherman Oaks', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43277, 'Sierra Madre', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43278, 'Signal Hill', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43279, 'Simi Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43280, 'Solana Beach', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43281, 'Soledad', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43282, 'Solvang', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43283, 'Sonoma', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43284, 'Sonora', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43285, 'Soquel', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43286, 'South El Monte', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43287, 'South Gate', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43288, 'South Lake Tahoe', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43289, 'South Pasadena', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43290, 'South San Francisco', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43291, 'South San Jose Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43292, 'South Whittier', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(43293, 'South Yuba City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43294, 'Spring Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43295, 'St. Helena', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43296, 'Stanford', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43297, 'Stanton', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43298, 'Stevenson Ranch', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43299, 'Stockton', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43300, 'Strathmore', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43301, 'Studio City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43302, 'Suisun City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43303, 'Sun City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43304, 'Sun Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43305, 'Sunland', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43306, 'Sunnyvale', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43307, 'Susanville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43308, 'Sutter', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43309, 'Sylmar', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43310, 'Tahoe City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43311, 'Tamalpais-Homestead Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43312, 'Tarzana', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43313, 'Tehachapi', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43314, 'Temecula', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43315, 'Temple City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43316, 'Thousand Oaks', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43317, 'Tiburon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43318, 'Topanga', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43319, 'Torrance', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43320, 'Trabuco Canyon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43321, 'Tracy', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43322, 'Trinidad', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43323, 'Trona', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43324, 'Truckee', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43325, 'Tujunga', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43326, 'Tulare', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43327, 'Turlock', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43328, 'Tustin', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43329, 'Tustin Foothills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43330, 'Twentynine Palms', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43331, 'Twentynine Palms Base', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43332, 'Ukiah', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43333, 'Union City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43334, 'Upland', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43335, 'Vacaville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43336, 'Valencia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43337, 'Valinda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43338, 'Valle Vista', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43339, 'Vallejo', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43340, 'Valley Center', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43341, 'Valley Glen', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43342, 'Valley Village', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43343, 'Van Nuys', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43344, 'Vandenberg Air Force Base', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43345, 'Venice', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43346, 'Ventura', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43347, 'Vernon', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43348, 'Victorville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43349, 'View Park-Windsor Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43350, 'Vincent', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43351, 'Visalia', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43352, 'Vista', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43353, 'Walnut', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43354, 'Walnut Creek', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43355, 'Walnut Park', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43356, 'Wasco', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43357, 'Waterford', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43358, 'Watsonville', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43359, 'West Athens', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43360, 'West Carson', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43361, 'West Covina', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43362, 'West Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43363, 'West Hollywood', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43364, 'West Puente Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43365, 'West Sacramento', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43366, 'West Whittier-Los Nietos', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43367, 'Westlake Village', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43368, 'Westminster', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43369, 'Westmont', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43370, 'Whittier', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43371, 'Wildomar', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43372, 'Willits', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43373, 'Willowbrook', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43374, 'Wilmington', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43375, 'Windsor', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43376, 'Woodland', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43377, 'Woodland Hills', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43378, 'Yorba Linda', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43379, 'Yreka', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43380, 'Yuba City', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43381, 'Yucaipa', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43382, 'Yucca Valley', 3924, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43383, 'Air Force Academy', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43384, 'Alamosa', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43385, 'Applewood', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43386, 'Arvada', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43387, 'Aspen', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43388, 'Aurora', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43389, 'Avon', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43390, 'Basalt', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43391, 'Bellvue', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43392, 'Black Forest', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43393, 'Boulder', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43394, 'Brighton', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43395, 'Broomfield', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43396, 'Canon City', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43397, 'Carbondale', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43398, 'Castle Rock', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43399, 'Castlewood', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43400, 'Centennial', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43401, 'Cimarron Hills', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43402, 'Clifton', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43403, 'Colorado Springs', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43404, 'Columbine', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43405, 'Commerce City', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43406, 'Cortez', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43407, 'Crawford', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43408, 'Denver', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43409, 'Durango', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43410, 'Edwards', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43411, 'Elizabeth', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43412, 'Englewood', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43413, 'Estes Park', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43414, 'Evergreen', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43415, 'Federal Heights', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43416, 'Fort Carson', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43417, 'Fort Collins', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43418, 'Fort Morgan', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43419, 'Fountain', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43420, 'Golden', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43421, 'Grand Junction', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43422, 'Greeley', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43423, 'Greenwood Village', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43424, 'Gunbarrel', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43425, 'Highlands Ranch', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43426, 'Holly', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43427, 'Ken Caryl', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43428, 'Lafayette', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43429, 'Lakewood', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43430, 'Littleton', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43431, 'Longmont', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43432, 'Louisville', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43433, 'Loveland', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43434, 'Lyons', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43435, 'Montrose', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43436, 'Monument', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43437, 'Nederland', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43438, 'Niwot', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43439, 'Northglenn', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43440, 'Pagosa Springs', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43441, 'Parker', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43442, 'Penrose', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43443, 'Peyton', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43444, 'Pueblo', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43445, 'Redlands', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43446, 'Ridgway', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43447, 'Rifle', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43448, 'Rocky Ford', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43449, 'Sanford', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43450, 'Security-Widefield', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43451, 'Sherrelwood', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43452, 'Silver Cliff', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43453, 'Snowmass Village', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43454, 'Southglenn', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43455, 'Steamboat Springs', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43456, 'Sterling', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43457, 'Superior', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43458, 'Telluride', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43459, 'Thornton', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43460, 'Vail', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43461, 'Welby', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43462, 'Westcliffe', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43463, 'Westminster', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43464, 'Wheat Ridge', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43465, 'Woodland Park', 3926, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43466, 'Ansonia', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43467, 'Avon', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43468, 'Bethel', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43469, 'Bethlehem', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43470, 'Bloomfield', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43471, 'Branford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43472, 'Bridgeport', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43473, 'Bristol', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43474, 'Canaan', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43475, 'Canton', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43476, 'Central Manchester', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43477, 'Cheshire', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43478, 'Colchester', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43479, 'Conning Towers-Nautilus Park', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43480, 'Coscob', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43481, 'Cranbury', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43482, 'Cromwell', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43483, 'Danbury', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43484, 'Darien', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43485, 'Dayville', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43486, 'Derby', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43487, 'East Hartford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43488, 'East Haven', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43489, 'Ellington', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43490, 'Enfield', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43491, 'Fairfield', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43492, 'Farmington', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43493, 'Glastonbury', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43494, 'Greens Farms', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43495, 'Greenwich', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43496, 'Groton', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43497, 'Guilford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43498, 'Haddam', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43499, 'Hamden', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43500, 'Hartford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43501, 'Harwinton', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43502, 'Lakeville', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43503, 'Lyme', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43504, 'Madison', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43505, 'Manchester', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43506, 'Meriden', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43507, 'Middletown', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43508, 'Milford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43509, 'Monroe', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43510, 'Mystic', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43511, 'Naugatuck', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43512, 'New Britain', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43513, 'New Canaan', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43514, 'New Hartford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43515, 'New Haven', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43516, 'New London', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43517, 'New Milford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43518, 'New Town', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43519, 'Newington', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43520, 'North Haven', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43521, 'North Stonington', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43522, 'Norwalk', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43523, 'Norwich', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43524, 'Old Saybrook', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43525, 'Oneco', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43526, 'Orange', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43527, 'Pawcatuck', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43528, 'Plainville', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43529, 'Portland', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43530, 'Putnam', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43531, 'Riverside', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43532, 'Rocky Hill', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43533, 'Rowayton', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43534, 'Sandy Hook', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43535, 'Seymour', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43536, 'Sharon', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43537, 'Shelton', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43538, 'South Windsor', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43539, 'Southington', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43540, 'Southport', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43541, 'Stamford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43542, 'Sterling', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43543, 'Storrs', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43544, 'Stratford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43545, 'Suffield', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43546, 'Taftville', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43547, 'Terryville', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43548, 'Tolland', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43549, 'Torrington', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43550, 'Trumbull', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43551, 'Vernon', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43552, 'Wallingford Center', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43553, 'Waterbury', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43554, 'Watertown', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43555, 'West Hartford', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43556, 'West Haven', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43557, 'Weston', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43558, 'Westport', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43559, 'Wethersfield', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43560, 'Willimantic', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43561, 'Wilton', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43562, 'Windsor', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43563, 'Windsor Locks', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43564, 'Winsted', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43565, 'Woodbury', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43566, 'Woodstock', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43567, 'pomfret', 3927, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43568, 'Bear', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43569, 'Brookside', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43570, 'Claymont', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43571, 'Dover', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43572, 'Dover Base Housing', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43573, 'Edgemoor', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43574, 'Elsmere', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43575, 'Georgetown', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43576, 'Greenville', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43577, 'Middletown', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43578, 'Milford', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43579, 'Milton', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43580, 'Newark', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43581, 'Pike Creek', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43582, 'Seaford', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43583, 'Smyrna', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43584, 'Stanton', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43585, 'Talleyville', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43586, 'Wilmington', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43587, 'Wilmington Manor', 3928, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43588, 'Alachua', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43589, 'Altamonte Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43590, 'Apopka', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43591, 'Atlantic Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43592, 'Auburndale', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43593, 'Aventura', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43594, 'Avon Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43595, 'Azalea Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43596, 'Bal Harbour', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43597, 'Bartow', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43598, 'Bayonet Point', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43599, 'Bayshore Gardens', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43600, 'Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43601, 'Bellair-Meadowbrook Terrace', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43602, 'Belle Glade', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43603, 'Bellview', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43604, 'Beverly Hills', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43605, 'Bloomingdale', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43606, 'Boca Raton', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43607, 'Boca del Mar', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43608, 'Bonita Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43609, 'Boynton Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43610, 'Bradenton', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43611, 'Brandon', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43612, 'Brent', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43613, 'Brooksville', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43614, 'Brownsville', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43615, 'Buena Ventura Lakes', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43616, 'Bunnell', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43617, 'Callaway', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43618, 'Cape Coral', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43619, 'Carol City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43620, 'Casselberry', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43621, 'Catalina Foothills', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43622, 'Celebration', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43623, 'Century Village', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43624, 'Citrus Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43625, 'Clearwater', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43626, 'Clermont', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43627, 'Cocoa', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43628, 'Cocoa Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43629, 'Coconut Creek', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43630, 'Coconut Grove', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43631, 'Conway', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43632, 'Cooper City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43633, 'Coral Gables', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43634, 'Coral Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43635, 'Coral Terrace', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43636, 'Cortlandt Manor', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43637, 'Country Club', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43638, 'Crestview', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43639, 'Crystal River', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43640, 'Cutler', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43641, 'Cutler Ridge', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43642, 'Cypress Gardens', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43643, 'Cypress Lake', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43644, 'Dania', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43645, 'Dania Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43646, 'Davie', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43647, 'Daytona Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43648, 'De Bary', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43649, 'De Funiak Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43650, 'De Land', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43651, 'Debary', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43652, 'Deer Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43653, 'Deerfield Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43654, 'Del Rio', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43655, 'Delray Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43656, 'Deltona', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43657, 'Destin', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43658, 'Doctor Phillips', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43659, 'Dora', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43660, 'Doral', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43661, 'Dundee', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43662, 'Dunedin', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43663, 'East Lake', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43664, 'Edgewater', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43665, 'Eglin Air Force Base', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43666, 'Egypt Lake-Leto', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43667, 'Elfers', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43668, 'Englewood', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43669, 'Ensley', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43670, 'Eustis', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43671, 'Fairview Shores', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43672, 'Fern Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43673, 'Fernandina Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43674, 'Ferry Pass', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43675, 'Flagler Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43676, 'Floral City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43677, 'Florida City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43678, 'Florida Ridge', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43679, 'Forest City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43680, 'Fort Lauderdale', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43681, 'Fort Myers', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43682, 'Fort Myers Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43683, 'Fort Pierce', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43684, 'Fort Walton Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43685, 'Freeport', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43686, 'Fruitville', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43687, 'Ft. Lauderdale', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43688, 'Gainesville', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43689, 'Gladeview', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43690, 'Glenvar Heights', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43691, 'Golden Gate', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43692, 'Golden Glades', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43693, 'Goldenrod', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43694, 'Greater Carrollwood', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43695, 'Greater Northdale', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43696, 'Green Cove Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43697, 'Greenacres', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43698, 'Gulf Gate Estates', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43699, 'Gulfport', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43700, 'Haines City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43701, 'Hallandale', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43702, 'Hallandale Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43703, 'Hammocks', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43704, 'Hamptons at Boca Raton', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43705, 'Havana', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43706, 'Hialeah', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43707, 'Hialeah Gardens', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43708, 'Highpoint', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43709, 'Hobe Sound', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43710, 'Holiday', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43711, 'Holly Hill', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43712, 'Hollywood', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43713, 'Homestead', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43714, 'Homosassa', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43715, 'Hudson', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43716, 'Immokalee', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43717, 'Inverness', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43718, 'Iona', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43719, 'Ives Estates', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43720, 'Jacksonville', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43721, 'Jacksonville Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43722, 'Jasmine Estates', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43723, 'Jensen Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43724, 'Jupiter', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43725, 'Kendale Lakes', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43726, 'Kendall', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43727, 'Kendall West', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43728, 'Key Biscayne', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43729, 'Key Largo', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43730, 'Key West', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43731, 'Kings Point', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43732, 'Kissimmee', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43733, 'Lady Lake', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43734, 'Lake Alfred', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43735, 'Lake City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43736, 'Lake Lucerne', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43737, 'Lake Magdalene', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43738, 'Lake Mary', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43739, 'Lake Placid', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43740, 'Lake Wales', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43741, 'Lake Worth', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43742, 'Lakeland', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43743, 'Lakeland Highlands', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43744, 'Lakeside', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43745, 'Land O\'Lakes', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43746, 'Largo', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43747, 'Lauderdale Lakes', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43748, 'Lauderhill', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43749, 'Laurel', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43750, 'Lecanto', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43751, 'Leesburg', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43752, 'Lehigh Acres', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43753, 'Leisure City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43754, 'Lighthouse Point', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43755, 'Lockhart', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43756, 'Longwood', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43757, 'Loxahatchee', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43758, 'Lutz', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43759, 'Lynn Haven', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43760, 'Madison', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43761, 'Maitland', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43762, 'Mango', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43763, 'Marathon', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43764, 'Marco', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43765, 'Margate', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43766, 'Medley', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43767, 'Melbourne', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43768, 'Merritt Island', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43769, 'Miami', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43770, 'Miami Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43771, 'Miami Gardens', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43772, 'Miami Lakes', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43773, 'Miami Shores', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43774, 'Miami Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43775, 'Micco', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43776, 'Milton', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43777, 'Mims', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43778, 'Miramar', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43779, 'Mulberry', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43780, 'Myrtle Grove', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43781, 'Naples', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43782, 'Naples Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43783, 'Naranja', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43784, 'New Port Richey', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43785, 'New Port Richey East', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43786, 'New Smyrna Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43787, 'Niceville', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43788, 'Nokomis', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43789, 'Norland', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43790, 'North Andrews Gardens', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43791, 'North Fort Myers', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43792, 'North Lauderdale', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43793, 'North Miami', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43794, 'North Miami Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43795, 'North Naples', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43796, 'North Palm Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43797, 'North Port', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43798, 'Oak Ridge', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43799, 'Oakland Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43800, 'Ocala', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43801, 'Ocoee', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43802, 'Ojus', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43803, 'Okeechobee', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43804, 'Oldsmar', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43805, 'Olympia Heights', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43806, 'Opa-locka', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43807, 'Orange City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43808, 'Orange Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43809, 'Orlando', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43810, 'Ormond Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43811, 'Ormond-by-the-Sea', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43812, 'Osprey', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43813, 'Oviedo', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43814, 'Palatka', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43815, 'Palm Bay', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43816, 'Palm Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43817, 'Palm Beach Gardens', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43818, 'Palm City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43819, 'Palm Coast', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43820, 'Palm Harbor', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43821, 'Palm River-Clair Mel', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43822, 'Palm Valley', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43823, 'Palmetto', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43824, 'Palmetto Estates', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43825, 'Panama City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43826, 'Parkland', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43827, 'Pembroke Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43828, 'Pembroke Pines', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43829, 'Pensacola', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43830, 'Perrine', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43831, 'Pine Castle', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43832, 'Pine Hills', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43833, 'Pinellas Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43834, 'Pinewood', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43835, 'Plant City', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43836, 'Plantation', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43837, 'Pompano Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43838, 'Pompano Beach Highlands', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43839, 'Ponte Vedra', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43840, 'Port Charlotte', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43841, 'Port Orange', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43842, 'Port Saint John', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43843, 'Port Saint Lucie', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43844, 'Punta Gorda', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43845, 'Quincy', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43846, 'Redington Shores', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43847, 'Richmond Heights', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43848, 'Richmond West', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43849, 'Riverview', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43850, 'Riviera Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43851, 'Rockledge', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43852, 'Royal Palm Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43853, 'Safety Harbor', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43854, 'Saint Augustine', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43855, 'Saint Cloud', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43856, 'Saint Petersburg', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43857, 'Saint Petersburg Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43858, 'San Carlos Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(43859, 'Sandalfoot Cove', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43860, 'Sanford', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43861, 'Sanibel', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43862, 'Sarasota', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43863, 'Sarasota Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43864, 'Satellite Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43865, 'Scott Lake', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43866, 'Sebastian', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43867, 'Seminole', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43868, 'Shalimar', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43869, 'South Bradenton', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43870, 'South Daytona', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43871, 'South Miami', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43872, 'South Miami Heights', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43873, 'South Patrick Shores', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43874, 'South Venice', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43875, 'Spring Hill', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43876, 'Stuart', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43877, 'Sun City Center', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43878, 'Sunny Isles', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43879, 'Sunrise', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43880, 'Sunset', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43881, 'Sweetwater', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43882, 'Tallahassee', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43883, 'Tamarac', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43884, 'Tamiami', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43885, 'Tampa', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43886, 'Tarpon Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43887, 'Temple Terrace', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43888, 'The Crossings', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43889, 'The Hammocks', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43890, 'Titusville', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43891, 'Town\'n\'Country', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43892, 'University', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43893, 'University Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43894, 'Valrico', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43895, 'Venice', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43896, 'Vero Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43897, 'Vero Beach South', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43898, 'Villas', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43899, 'Warrington', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43900, 'Wekiva Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43901, 'Wellington', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43902, 'Wesley Chapel', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43903, 'West Little River', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43904, 'West Palm Beach', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43905, 'West Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43906, 'West Pensacola', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43907, 'West and East Lealman', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43908, 'Westchester', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43909, 'Weston', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43910, 'Westview', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43911, 'Westwood Lakes', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43912, 'Wilton Manors', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43913, 'Windermere', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43914, 'Winston', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43915, 'Winter Garden', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43916, 'Winter Haven', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43917, 'Winter Park', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43918, 'Winter Springs', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43919, 'Wright', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43920, 'Yeehaw Junction', 3930, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43921, 'Acworth', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43922, 'Adel', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43923, 'Albany', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43924, 'Alma', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43925, 'Alpharetta', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43926, 'Americus', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43927, 'Athens', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43928, 'Athens-Clarke', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43929, 'Atlanta', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43930, 'Auburn', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43931, 'Augusta-Richmond', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43932, 'Austell', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43933, 'Bainbridge', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43934, 'Barnesville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43935, 'Belvedere Park', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43936, 'Bogart', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43937, 'Bowdon', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43938, 'Braselton', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43939, 'Brunswick', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43940, 'Buford', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43941, 'Byron', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43942, 'Cairo', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43943, 'Calhoun', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43944, 'Candler-MacAfee', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43945, 'Canton', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43946, 'Carrollton', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43947, 'Cartersville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43948, 'Chamblee', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43949, 'Clarkston', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43950, 'Cochran', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43951, 'College Park', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43952, 'Columbus', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43953, 'Comer', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43954, 'Conley', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43955, 'Conyers', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43956, 'Cordele', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43957, 'Covington', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43958, 'Culloden', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43959, 'Cumming', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43960, 'Dacula', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43961, 'Dahlonega', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43962, 'Dallas', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43963, 'Dalton', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43964, 'Decatur', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43965, 'Dewy Rose', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43966, 'Doraville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43967, 'Douglas', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43968, 'Douglasville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43969, 'Druid Hills', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43970, 'Dublin', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43971, 'Duluth', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43972, 'Dunwoody', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43973, 'East Point', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43974, 'Elberton', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43975, 'Ellenwood', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43976, 'Ellijay', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43977, 'Evans', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43978, 'Fairmount', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43979, 'Fayetteville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43980, 'Flowery Branch', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43981, 'Folkston', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43982, 'Forest Park', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43983, 'Fort Benning South', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43984, 'Fort Gordon', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43985, 'Fort Stewart', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43986, 'Fort Valley', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43987, 'Foxborough', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43988, 'Gaines School', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43989, 'Gainesville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43990, 'Glennville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43991, 'Gresham Park', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43992, 'Griffin', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43993, 'Grovetown', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43994, 'Hampton', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43995, 'Hartwell', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43996, 'Hinesville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43997, 'Jackson', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43998, 'Jonesboro', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(43999, 'Kennesaw', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44000, 'Kingsland', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44001, 'LaGrange', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44002, 'Lawrenceville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44003, 'Lilburn', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44004, 'Lithia Springs', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44005, 'Lithonia', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44006, 'Locust Grove', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44007, 'Loganville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44008, 'Louisville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44009, 'Mableton', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44010, 'Macon', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44011, 'Madison', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44012, 'Marietta', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44013, 'Martinez', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44014, 'McDonough', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44015, 'Milledgeville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44016, 'Monroe', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44017, 'Morrow', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44018, 'Moultrie', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44019, 'Mountain', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44020, 'Mountain Park', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44021, 'Newnan', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44022, 'Norcross', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44023, 'North Atlanta', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44024, 'North Decatur', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44025, 'North Druid Hills', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44026, 'Oakwood', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44027, 'Panthersville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44028, 'Peachtree City', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44029, 'Powder Springs', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44030, 'Redan', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44031, 'Rex', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44032, 'Riverdale', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44033, 'Rome', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44034, 'Rossville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44035, 'Roswell', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44036, 'Saint Marys', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44037, 'Saint Simons', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44038, 'Sandy Springs', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44039, 'Savannah', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44040, 'Scottdale', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44041, 'Sharpsburg', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44042, 'Smyrna', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44043, 'Snellville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44044, 'Sparks', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44045, 'Statesboro', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44046, 'Stockbridge', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44047, 'Stone Mountain', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44048, 'Suwanee', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44049, 'Thomasville', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44050, 'Tifton', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44051, 'Tucker', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44052, 'Tybee Island', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44053, 'Union City', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44054, 'Valdosta', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44055, 'Vidalia', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44056, 'Villa Rica', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44057, 'Warner Robins', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44058, 'Waycross', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44059, 'Wilmington Island', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44060, 'Winder', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44061, 'Woodbine', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44062, 'Woodstock', 3931, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44063, 'Ahuimanu', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44064, 'Aiea', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44065, 'Aliamanu', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44066, 'Ewa Beach', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44067, 'Haiku', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44068, 'Halawa', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44069, 'Hanalei', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44070, 'Hilo', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44071, 'Holualoa', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44072, 'Honolulu', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44073, 'Kahului', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44074, 'Kailua', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44075, 'Kalaheo', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44076, 'Kamuela', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44077, 'Kaneohe', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44078, 'Kaneohe Station', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44079, 'Kapaa', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44080, 'Kapolei', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44081, 'Kihei', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44082, 'Kula', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44083, 'Lahaina', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44084, 'Lanai City', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44085, 'Lihue', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44086, 'Makaha', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44087, 'Makakilo City', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44088, 'Makawao', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44089, 'Mi-Wuk Village', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44090, 'Mililani Town', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44091, 'Naalehu', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44092, 'Nanakuli', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44093, 'Pahoa', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44094, 'Pearl City', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44095, 'Schofield Barracks', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44096, 'Wahiawa', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44097, 'Waialua', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44098, 'Waianae', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44099, 'Wailuku', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44100, 'Waimalu', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44101, 'Waipahu', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44102, 'Waipio', 3932, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44103, 'Blackfoot', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44104, 'Boise', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44105, 'Boise City', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44106, 'Boulder Hill', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44107, 'Burley', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44108, 'Caldwell', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44109, 'Coeur d\'Alene', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44110, 'Eagle', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44111, 'Garden City', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44112, 'Idaho Falls', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44113, 'Lewiston', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44114, 'Meridian', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44115, 'Moscow', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44116, 'Mountain Home', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44117, 'Nampa', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44118, 'Payette', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44119, 'Pocatello', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44120, 'Post Falls', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44121, 'Preston', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44122, 'Rexburg', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44123, 'Rigby', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44124, 'Sandpoint', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44125, 'Troy', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44126, 'Twin Falls', 3933, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44127, 'Addison', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44128, 'Algonquin', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44129, 'Alsip', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44130, 'Alton', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44131, 'Arlington Heights', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44132, 'Aurora', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44133, 'Bannockburn', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44134, 'Barrington', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44135, 'Bartlett', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44136, 'Batavia', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44137, 'Beach Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44138, 'Beardstown', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44139, 'Bedford Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44140, 'Belleville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44141, 'Bellwood', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44142, 'Belvidere', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44143, 'Bensenville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44144, 'Berwyn', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44145, 'Bloomingdale', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44146, 'Bloomington', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44147, 'Blue Island', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44148, 'Boling Brook', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44149, 'Bolingbrook', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44150, 'Bourbonnais', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44151, 'Bradley', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44152, 'Breese', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44153, 'Bridgeview', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44154, 'Brimfield', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44155, 'Broadview', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44156, 'Brookfield', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44157, 'Buffalo Grove', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44158, 'Burbank', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44159, 'Burr Ridge', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44160, 'Cahokia', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44161, 'Calumet City', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44162, 'Canton', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44163, 'Carbondale', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44164, 'Carlinville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44165, 'Carol Stream', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44166, 'Carpentersville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44167, 'Carthage', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44168, 'Cary', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44169, 'Centralia', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44170, 'Champaign', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44171, 'Channahon', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44172, 'Charleston', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44173, 'Chicago', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44174, 'Chicago Heights', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44175, 'Chicago Ridge', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44176, 'Cicero', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44177, 'Coal City', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44178, 'Collinsville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44179, 'Congerville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44180, 'Country Club Hills', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44181, 'Crest Hill', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44182, 'Crestwood', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44183, 'Crystal Lake', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44184, 'Danville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44185, 'Darien', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44186, 'DeKalb', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44187, 'Decatur', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44188, 'Deerfield', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44189, 'Des Plaines', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44190, 'Dixon', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44191, 'Dolton', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44192, 'Downers Grove', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44193, 'Earlville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44194, 'East Dundee', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44195, 'East Moline', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44196, 'East Peoria', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44197, 'East Saint Louis', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44198, 'Edwardsville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44199, 'Effingham', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44200, 'Elburn', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44201, 'Elgin', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44202, 'Elk Grove', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44203, 'Elk Grove Village', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44204, 'Elmhurst', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44205, 'Elmwood Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44206, 'Evanston', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44207, 'Evergreen Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44208, 'Fairview Heights', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44209, 'Flossmoor', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44210, 'Forest Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44211, 'Frankfort', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44212, 'Franklin Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44213, 'Freeport', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44214, 'Galena', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44215, 'Galesburg', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44216, 'Geneva', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44217, 'Genoa', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44218, 'Glen Carbon', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44219, 'Glen Ellyn', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44220, 'Glencoe', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44221, 'Glendale Heights', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44222, 'Glenview', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44223, 'Godfrey', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44224, 'Goodings Grove', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44225, 'Granite City', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44226, 'Grayslake', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44227, 'Gurnee', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44228, 'Hamilton', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44229, 'Hampshire', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44230, 'Hanover Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44231, 'Harvard', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44232, 'Harvey', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44233, 'Hawthorn Woods', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44234, 'Hazel Crest', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44235, 'Herrin', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44236, 'Hickory Hills', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44237, 'Highland Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44238, 'Hinsdale', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44239, 'Hoffman Estates', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44240, 'Homewood', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44241, 'Huntley', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44242, 'Illinois City', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44243, 'Ingleside', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44244, 'Itasca', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44245, 'Jacksonville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44246, 'Johnston City', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44247, 'Joliet', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44248, 'Justice', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44249, 'Kankakee', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44250, 'Kenilworth', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44251, 'Kewanee', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44252, 'La Grange', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44253, 'La Grange Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44254, 'La Salle', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44255, 'Lake Bluff', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44256, 'Lake Forest', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44257, 'Lake Zurich', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44258, 'Lake in the Hills', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44259, 'Lansing', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44260, 'Lemont', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44261, 'Libertyville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44262, 'Lincoln', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44263, 'Lincolnwood', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44264, 'Lindenhurst', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44265, 'Lindenwood', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44266, 'Lisle', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44267, 'Lockport', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44268, 'Lombard', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44269, 'Long Grove', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44270, 'Loves Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44271, 'Lyons', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44272, 'MacHenry', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44273, 'Machesney Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44274, 'Macomb', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44275, 'Marion', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44276, 'Markham', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44277, 'Marshall', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44278, 'Martinsville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44279, 'Maryville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44280, 'Matteson', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44281, 'Mattoon', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44282, 'Maywood', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44283, 'McHenry', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44284, 'Melrose Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44285, 'Midlothian', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44286, 'Milan', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44287, 'Minooka', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44288, 'Mokena', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44289, 'Moline', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44290, 'Momence', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44291, 'Montgomery', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44292, 'Monticello', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44293, 'Morris', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44294, 'Morton', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44295, 'Morton Grove', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44296, 'Mossville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44297, 'Mount Prospect', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44298, 'Mount Vernon', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44299, 'Mount Zion', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44300, 'Mundelein', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44301, 'Naperville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44302, 'New Lenox', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44303, 'Niles', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44304, 'Normal', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44305, 'Norridge', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44306, 'North Aurora', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44307, 'North Chicago', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44308, 'Northbrook', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44309, 'Northfield', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44310, 'Northlake', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44311, 'O\'Fallon', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44312, 'Oak Forest', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44313, 'Oak Lawn', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44314, 'Oak Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44315, 'Oakbrook', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44316, 'Oakwood', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44317, 'Olney', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44318, 'Orland Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44319, 'Osco', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44320, 'Ottawa', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44321, 'Palatine', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44322, 'Palos Heights', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44323, 'Palos Hills', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44324, 'Park Forest', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44325, 'Park Ridge', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44326, 'Pekin', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44327, 'Peoria', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44328, 'Peru', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44329, 'Plainfield', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44330, 'Pontiac', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44331, 'Princeton', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44332, 'Prospect Heights', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44333, 'Quincy', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44334, 'Ramsey', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44335, 'Rantoul', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44336, 'Richmond', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44337, 'Richton Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44338, 'River Forest', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44339, 'Riverdale', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44340, 'Rochelle', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44341, 'Rock Island', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44342, 'Rockford', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44343, 'Rolling Meadows', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44344, 'Romeoville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44345, 'Roscoe', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44346, 'Roselle', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44347, 'Round Lake Beach', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44348, 'Saint Charles', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44349, 'Sauget', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44350, 'Sauk Village', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44351, 'Schaumburg', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44352, 'Schiller Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44353, 'Shumway', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44354, 'Skokie', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44355, 'South Elgin', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44356, 'South Holland', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44357, 'Spring Valley', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44358, 'Springfield', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44359, 'Sterling', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44360, 'Streamwood', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44361, 'Streator', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44362, 'Swansea', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44363, 'Sycamore', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44364, 'Taylorville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44365, 'Tinley Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44366, 'Trenton', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44367, 'Urbana', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44368, 'Ursa', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44369, 'Vernon Hills', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44370, 'Villa Park', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44371, 'Walnut', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44372, 'Warrenville', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44373, 'Washington', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44374, 'Waukegan', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44375, 'West Chicago', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44376, 'West Dundee', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44377, 'Westchester', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44378, 'Western Springs', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44379, 'Westmont', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44380, 'Wheaton', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44381, 'Wheeling', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44382, 'Willowbrook', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44383, 'Wilmette', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44384, 'Winnebago', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44385, 'Winnetka', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44386, 'Wood Dale', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44387, 'Wood River', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44388, 'Woodridge', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44389, 'Woodstock', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44390, 'Worth', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44391, 'Zion', 3934, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44392, 'Albion', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44393, 'Anderson', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44394, 'Angola', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44395, 'Auburn', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44396, 'Bedford', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44397, 'Beech Grove', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44398, 'Bloomington', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44399, 'Brownsburg', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44400, 'Carmel', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44401, 'Cedar Lake', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44402, 'Chesterton', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44403, 'Clarksville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44404, 'Columbus', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44405, 'Connersville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44406, 'Crawfordsville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44407, 'Crown Point', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44408, 'Dyer', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44409, 'East Chicago', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44410, 'Elkhart', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44411, 'Evansville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44412, 'Fishers', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44413, 'Fort Wayne', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44414, 'Frankfort', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44415, 'Franklin', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44416, 'Gary', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44417, 'Goshen', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44418, 'Gosport', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44419, 'Granger', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44420, 'Greenfield', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44421, 'Greensburg', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44422, 'Greenwood', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44423, 'Griffith', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44424, 'Hammond', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44425, 'Helmsburg', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44426, 'Highland', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44427, 'Hobart', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44428, 'Huntington', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44429, 'Indianapolis', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(44430, 'Jasper', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44431, 'Jeffersonville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44432, 'Knightstown', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44433, 'Kokomo', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44434, 'La Porte', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44435, 'Lafayette', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44436, 'Lake Station', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44437, 'Lawrence', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44438, 'Lebanon', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44439, 'Liberty', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44440, 'Logansport', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44441, 'Madison', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44442, 'Marion', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44443, 'Martinsville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44444, 'Merrillville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44445, 'Michigan City', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44446, 'Mishawaka', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44447, 'Muncie', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44448, 'Munster', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44449, 'N. Albany', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44450, 'Nashville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44451, 'New Albany', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44452, 'New Castle', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44453, 'New Haven', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44454, 'New Trenton', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44455, 'Noblesville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44456, 'North Vernon', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44457, 'Osceola', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44458, 'Peru', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44459, 'Plainfield', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44460, 'Plymouth', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44461, 'Poland', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44462, 'Portage', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44463, 'Richmond', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44464, 'Rising Sun', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44465, 'Roanoke', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44466, 'Rockport', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44467, 'Schererville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44468, 'Scottsburg', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44469, 'Seymour', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44470, 'Shelbyville', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44471, 'South Bend', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44472, 'Speedway', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44473, 'St. John', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44474, 'Terre Haute', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44475, 'Thorntown', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44476, 'Tippecanoe', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44477, 'Troy', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44478, 'Valparaiso', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44479, 'Vermont', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44480, 'Vincennes', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44481, 'Wabash', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44482, 'Warsaw', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44483, 'Washington', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44484, 'West Lafayette', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44485, 'Williams', 3935, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44486, 'Altoona', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44487, 'Ames', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44488, 'Ankeny', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44489, 'Bettendorf', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44490, 'Boone', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44491, 'Burlington', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44492, 'Carroll', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44493, 'Cedar Falls', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44494, 'Cedar Rapids', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44495, 'Clarinda', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44496, 'Clinton', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44497, 'Clive', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44498, 'Coralville', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44499, 'Council Bluffs', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44500, 'Davenport', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44501, 'Des Moines', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44502, 'Dubuque', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44503, 'Eldridge', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44504, 'Elkader', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44505, 'Essex', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44506, 'Fairfield', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44507, 'Fayette', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44508, 'Fort Dodge', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44509, 'Fort Madison', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44510, 'Harlan', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44511, 'Indianola', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44512, 'Iowa City', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44513, 'Kalona', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44514, 'Keokuk', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44515, 'Marion', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44516, 'Marshalltown', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44517, 'Mason City', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44518, 'Muscatine', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44519, 'Newton', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44520, 'Orange City', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44521, 'Oskaloosa', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44522, 'Ottumwa', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44523, 'Pella', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44524, 'Sioux City', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44525, 'Spencer', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44526, 'Storm Lake', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44527, 'Urbandale', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44528, 'Waterloo', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44529, 'West Des Moines', 3936, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44530, 'Arkansas City', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44531, 'Atchison', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44532, 'Coffeyville', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44533, 'Derby', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44534, 'Dodge City', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44535, 'El Dorado', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44536, 'Elk City', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44537, 'Emporia', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44538, 'Fort Riley North', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44539, 'Garden City', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44540, 'Great Bend', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44541, 'Hays', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44542, 'Hutchinson', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44543, 'Independence', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44544, 'Junction City', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44545, 'Kansas City', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44546, 'Kingman', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44547, 'Lawrence', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44548, 'Leavenworth', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44549, 'Leawood', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44550, 'Lenexa', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44551, 'Liberal', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44552, 'MacPherson', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44553, 'Manhattan', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44554, 'Merriam', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44555, 'Minneapolis', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44556, 'Moscow', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44557, 'Moundridge', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44558, 'Nashville', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44559, 'Newton', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44560, 'Olathe', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44561, 'Ottawa', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44562, 'Overland Park', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44563, 'Parsons', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44564, 'Pittsburg', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44565, 'Prairie Village', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44566, 'Rose Hill', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44567, 'Salina', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44568, 'Shawnee', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44569, 'Topeka', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44570, 'Wichita', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44571, 'Winfield', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44572, 'tecumseh', 3937, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44573, 'Albany', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44574, 'Ashland', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44575, 'Bardstown', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44576, 'Berea', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44577, 'Bowling Green', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44578, 'Campbellsville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44579, 'Catlettsburg', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44580, 'Covington', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44581, 'Crescent Springs', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44582, 'Danville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44583, 'Dawson Springs', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44584, 'Eastview', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44585, 'Eddyville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44586, 'Elizabethtown', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44587, 'Erlanger', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44588, 'Evarts', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44589, 'Fern Creek', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44590, 'Florence', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44591, 'Fort Campbell North', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44592, 'Fort Knox', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44593, 'Fort Mitchell', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44594, 'Fort Thomas', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44595, 'Frankfort', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44596, 'Georgetown', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44597, 'Glasgow', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44598, 'Grays Knob', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44599, 'Henderson', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44600, 'Highview', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44601, 'Hopkinsville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44602, 'Independence', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44603, 'Jeffersontown', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44604, 'Lawrenceburg', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44605, 'Lebanon', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44606, 'Lexington', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44607, 'Lexington-Fayette', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44608, 'Louisville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44609, 'Madisonville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44610, 'Marion', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44611, 'Mayfield', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44612, 'Maysville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44613, 'Middlesborough', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44614, 'Murray', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44615, 'Nebo', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44616, 'Newburg', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44617, 'Newport', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44618, 'Nicholasville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44619, 'Okolona', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44620, 'Olive Hill', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44621, 'Owensboro', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44622, 'Paducah', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44623, 'Paris', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44624, 'Pikeville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44625, 'Pleasure Ridge Park', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44626, 'Queens', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44627, 'Radcliff', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44628, 'Richmond', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44629, 'Saint Dennis', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44630, 'Saint Matthews', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44631, 'Scottsville', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44632, 'Shively', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44633, 'Somerset', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44634, 'South Shore', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44635, 'Tollesboro', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44636, 'Valley Station', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44637, 'Wallins Creek', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44638, 'Walton', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44639, 'Winchester', 3938, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44640, 'Abbeville', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44641, 'Alexandria', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44642, 'Amite', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44643, 'Baker', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44644, 'Bastrop', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44645, 'Baton Rouge', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44646, 'Bayou Cane', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44647, 'Bogalusa', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44648, 'Bossier City', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44649, 'Broussard', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44650, 'Calhoun', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44651, 'Chalmette', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44652, 'Covington', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44653, 'Crowley', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44654, 'De Ridder', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44655, 'Delcambre', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44656, 'Denham Springs', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44657, 'Estelle', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44658, 'Eunice', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44659, 'Fort Polk South', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44660, 'Franklin', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44661, 'French Settlement', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44662, 'Garyville', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44663, 'Geismar', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44664, 'Gretna', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44665, 'Hammond', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44666, 'Harahan', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44667, 'Harvey', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44668, 'Houma', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44669, 'Independence', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44670, 'Jefferson', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44671, 'Jennings', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44672, 'Kenner', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44673, 'Lafayette', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44674, 'Lake Charles', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44675, 'Laplace', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44676, 'Mandeville', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44677, 'Marrero', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44678, 'Merrydale', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44679, 'Metairie', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44680, 'Minden', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44681, 'Monroe', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44682, 'Morgan City', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44683, 'Natchitoches', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44684, 'New Iberia', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44685, 'New Orleans', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44686, 'Opelousas', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44687, 'Pineville', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44688, 'Pioneer', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44689, 'Prairieville', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44690, 'River Ridge', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44691, 'Ruston', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44692, 'Saint Amant', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44693, 'Saint Martinville', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44694, 'Shenandoah', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44695, 'Shreveport', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44696, 'Slidell', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44697, 'Sulphur', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44698, 'Terrytown', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44699, 'Thibodaux', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44700, 'Timberlane', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44701, 'Vinton', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44702, 'Waggaman', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44703, 'West Monroe', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44704, 'Westwego', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44705, 'Zachary', 3939, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44706, 'Manchester', 3940, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44707, 'Washington', 3940, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44708, 'Auburn', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44709, 'Augusta', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44710, 'Bangor', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44711, 'Bath', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44712, 'Biddeford', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44713, 'Brunswick', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44714, 'Cornish', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44715, 'Dover-Foxcroft', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44716, 'Ellsworth', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44717, 'Etna', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44718, 'Freeport', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44719, 'Gorham', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44720, 'Greene', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44721, 'Harmony', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44722, 'Lewiston', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44723, 'Liberty', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44724, 'Limerick', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44725, 'Lyman', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44726, 'Maine', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44727, 'New Gloucester', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44728, 'Norridgewock', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44729, 'North Yarmouth', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44730, 'Old Town', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44731, 'Orono', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44732, 'Portland', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44733, 'Presque Isle', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44734, 'Saco', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44735, 'Sanford', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44736, 'Scarborough', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44737, 'South Portland', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44738, 'Spruce Head', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44739, 'Thomaston', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44740, 'Waldoboro', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44741, 'Waterville', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44742, 'West Buxton', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44743, 'Westbrook', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44744, 'Whitefield', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44745, 'Windham', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44746, 'Yarmouth', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44747, 'York Harbor', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44748, 'stockton springs', 3941, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44749, 'Aberdeen', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44750, 'Accokeek', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44751, 'Adelphi', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44752, 'Andrews Air Force Base', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44753, 'Annapolis', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44754, 'Arbutus', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44755, 'Arnold', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44756, 'Aspen Hill', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44757, 'Baltimore', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44758, 'Bel Air North', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44759, 'Bel Air South', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44760, 'Beltsville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44761, 'Berlin', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44762, 'Bethesda', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44763, 'Bladensburg', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44764, 'Boonsboro', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44765, 'Bowie', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44766, 'Brookeville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44767, 'Brooklandville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44768, 'Brooklyn Park', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44769, 'Burtonsville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44770, 'Calverton', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44771, 'Cambridge', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44772, 'Camp Springs', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44773, 'Capitol Heights', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44774, 'Carney', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44775, 'Catonsville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44776, 'Chestertown', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44777, 'Chillum', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44778, 'Clarksburg', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44779, 'Clarksville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44780, 'Clinton', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44781, 'Cockeysville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44782, 'Colesville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44783, 'College Park', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44784, 'Columbia', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44785, 'Cooksville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44786, 'Coral Hills', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44787, 'Crofton', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44788, 'Cumberland', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44789, 'Damascus', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44790, 'Darlington', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44791, 'District Heights', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44792, 'Dundalk', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44793, 'East Riverdale', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44794, 'Easton', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44795, 'Edgemere', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44796, 'Edgewood', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44797, 'Eldersburg', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44798, 'Elkridge', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44799, 'Elkton', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44800, 'Ellicott City', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44801, 'Essex', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44802, 'Fairland', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44803, 'Ferndale', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44804, 'Forest Hill', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44805, 'Forestville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44806, 'Fort Meade', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44807, 'Fort Washington', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44808, 'Frederick', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44809, 'Fredrick', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44810, 'Friendly', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44811, 'Gaithersburg', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44812, 'Germantown', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44813, 'Glen Burnie', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44814, 'Glenn Dale', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44815, 'Greater Landover', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44816, 'Greater Upper Marlboro', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44817, 'Green Haven', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44818, 'Green Valley', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44819, 'Greenbelt', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44820, 'Hagerstown', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44821, 'Hanover', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44822, 'Harmans', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44823, 'Havre de Grace', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44824, 'Hillandale', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44825, 'Hillcrest Heights', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44826, 'Hunt Valley', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44827, 'Hurlock', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44828, 'Hyattsville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44829, 'Ijamsville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44830, 'Jefferson', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44831, 'Jessup', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44832, 'Joppatowne', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44833, 'Kettering', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44834, 'Lake Shore', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44835, 'Langley Park', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44836, 'Lanham', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44837, 'Lanham-Seabrook', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44838, 'Lansdowne-Baltimore Highlands', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44839, 'Largo', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44840, 'Laurel', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44841, 'Lexington Park', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44842, 'Lochearn', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44843, 'Lutherville-Timonium', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44844, 'Marriottsville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44845, 'Maryland City', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44846, 'Mays Chapel', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44847, 'Middle River', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44848, 'Milford Mill', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44849, 'Millersville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44850, 'Mitchellville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44851, 'Montgomery Village', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44852, 'National Harbor', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44853, 'New Carrollton', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44854, 'North Bethesda', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44855, 'North Laurel', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44856, 'North Potomac', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44857, 'Odenton', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44858, 'Olney', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44859, 'Overlea', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44860, 'Owings Mills', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44861, 'Oxon Hill-Glassmanor', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44862, 'Parkville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44863, 'Parole', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44864, 'Pasadena', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44865, 'Perry Hall', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44866, 'Pikesville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44867, 'Poolesville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44868, 'Potomac', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44869, 'Randallstown', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44870, 'Redland', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44871, 'Reisterstown', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44872, 'Riviera Beach', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44873, 'Rockville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44874, 'Rosaryville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44875, 'Rosedale', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44876, 'Rossville', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44877, 'Saint Charles', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44878, 'Salisbury', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44879, 'Sandy Spring', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44880, 'Savage Guilford', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44881, 'Severn', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44882, 'Severna Park', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44883, 'Silver Spring', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44884, 'Snow Hill', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44885, 'South Gate', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44886, 'South Laurel', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44887, 'Suitland-Silver Hill', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44888, 'Takoma Park', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44889, 'Temple Hill', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44890, 'Thurmont', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44891, 'Timonium', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44892, 'Towson', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44893, 'Upper Marlboro', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44894, 'Waldorf', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44895, 'Walker Mill', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44896, 'Washington Grove', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44897, 'Westminster', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44898, 'Wheaton-Glenmont', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44899, 'White Oak', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44900, 'Windsor Mill', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44901, 'Woodlawn', 3942, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44902, 'Abington', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44903, 'Acton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44904, 'Agawam', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44905, 'Amesbury', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44906, 'Amherst Center', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44907, 'Arlington', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44908, 'Ashland', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44909, 'Athol', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44910, 'Attleboro', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44911, 'Barnstable Town', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44912, 'Baxboro', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44913, 'Becket', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44914, 'Bedford', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44915, 'Belmont', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44916, 'Beverly', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44917, 'Billerica', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44918, 'Boston', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44919, 'Boylston', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44920, 'Braintree', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44921, 'Brockton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44922, 'Brookfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44923, 'Brookline', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44924, 'Burlington', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44925, 'Cambridge', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44926, 'Canton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44927, 'Charlestown', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44928, 'Chelmsford', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44929, 'Chelsea', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44930, 'Chicopee', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44931, 'Clinton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44932, 'Concord', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44933, 'Danvers', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44934, 'Dedham', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44935, 'Devens', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44936, 'Devenscrest', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44937, 'Duxbury', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44938, 'Easthampton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44939, 'Everett', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44940, 'Fairhaven', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44941, 'Fall River', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44942, 'Fitchburg', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44943, 'Florence', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44944, 'Framingham', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44945, 'Franklin', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44946, 'Gardner', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44947, 'Gloucester', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44948, 'Great Barrington', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44949, 'Greenfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44950, 'Groton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44951, 'Hadley', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44952, 'Harvard', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44953, 'Haverhill', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44954, 'Hingham', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44955, 'Holbrook', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44956, 'Holliston', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44957, 'Holyoke', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44958, 'Hopedale', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44959, 'Housatonic', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44960, 'Hubbardston', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44961, 'Hudson', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44962, 'Hull', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44963, 'Hyannis', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44964, 'Ipswich', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44965, 'Jamaica Plain', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44966, 'Lawrence', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44967, 'Lee', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44968, 'Lenox', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44969, 'Leominster', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44970, 'Lexington', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44971, 'Longmeadow', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44972, 'Lowell', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44973, 'Lynn', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44974, 'Lynnfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44975, 'Malden', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44976, 'Manchester', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44977, 'Marblehead', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44978, 'Marion', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44979, 'Marlborough', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44980, 'Marshfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44981, 'Massachusetts', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44982, 'Maynard', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44983, 'Medfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44984, 'Medford', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44985, 'Medway', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44986, 'Melrose', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44987, 'Methuen', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44988, 'Middleboro', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44989, 'Milford', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44990, 'Milton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44991, 'Monson', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44992, 'Montague', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44993, 'Nantucket', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44994, 'Natick', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44995, 'Needham', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44996, 'New Bedford', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44997, 'Newburyport', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44998, 'Newton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(44999, 'North Adams', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45000, 'North Andover', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(45001, 'North Attleborough Center', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45002, 'North Easton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45003, 'Northampton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45004, 'Northborough', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45005, 'Norwood', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45006, 'Orleans', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45007, 'Peabody', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45008, 'Pepperell', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45009, 'Pittsfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45010, 'Plainfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45011, 'Plymouth', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45012, 'Provincetown', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45013, 'Quincy', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45014, 'Randolph', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45015, 'Reading', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45016, 'Rehoboth', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45017, 'Revere', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45018, 'Rockland', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45019, 'Rockport', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45020, 'Roslindale', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45021, 'Salem', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45022, 'Saugus', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45023, 'Scituate', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45024, 'Seekonk', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45025, 'Shelburne Falls', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45026, 'Sherborn', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45027, 'Shrewsbury', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45028, 'Somerset', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45029, 'Somerville', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45030, 'South Boston', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45031, 'South Deerfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45032, 'South Hadley', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45033, 'South Lee', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45034, 'South Yarmouth', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45035, 'Southborough', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45036, 'Southbridge', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45037, 'Southwick', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45038, 'Springfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45039, 'Stoneham', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45040, 'Sturbridge', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45041, 'Swampscott', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45042, 'Swansea', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45043, 'Taunton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45044, 'Tewksbury', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45045, 'Three Rivers', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45046, 'Truro', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45047, 'Upton', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45048, 'Vineyard Haven', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45049, 'Wakefield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45050, 'Waltham', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45051, 'Ware', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45052, 'Wareham', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45053, 'Watertown', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45054, 'Wayland', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45055, 'Webster', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45056, 'Wellesley', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45057, 'Wellesley Hills', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45058, 'West Concord', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45059, 'West Roxbury', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45060, 'West Springfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45061, 'West Yarmouth', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45062, 'Westborough', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45063, 'Westfield', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45064, 'Westford', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45065, 'Weston', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45066, 'Weymouth', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45067, 'Wilbraham', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45068, 'Wilmington', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45069, 'Winchester', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45070, 'Winthrop', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45071, 'Woburn', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45072, 'Worcester', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45073, 'Yarmouthport', 3943, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45074, 'Adrian', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45075, 'Albion', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45076, 'Allegan', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45077, 'Allen Park', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45078, 'Alma', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45079, 'Alpena', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45080, 'Ann Arbor', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45081, 'Attica', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45082, 'Auburn Hills', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45083, 'Battle Creek', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45084, 'Bay City', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45085, 'Beecher', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45086, 'Belleville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45087, 'Benton Harbor', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45088, 'Berkley', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45089, 'Beverly Hills', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45090, 'Big Rapids', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45091, 'Birmingham', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45092, 'Bloomfield Hills', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45093, 'Bloomfield Township', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45094, 'Boyne City', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45095, 'Brighton', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45096, 'Burt', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45097, 'Burton', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45098, 'Cadillac', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45099, 'Canton', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45100, 'Charlotte', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45101, 'Chesterfield', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45102, 'Clarkston', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45103, 'Clawson', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45104, 'Clinton', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45105, 'Commerce', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45106, 'Comstock Park', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45107, 'Coopersville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45108, 'Cornell', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45109, 'Cutlerville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45110, 'Davisburg', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45111, 'Dearborn', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45112, 'Dearborn Heights', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45113, 'Delton', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45114, 'Detroit', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45115, 'Dexter', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45116, 'Dowagiac', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45117, 'East Grand Rapids', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45118, 'East Lansing', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45119, 'Eastpointe', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45120, 'Ecorse', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45121, 'Escanaba', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45122, 'Evart', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45123, 'Fair Haven', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45124, 'Fairgrove', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45125, 'Farmington', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45126, 'Farmington Hills', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45127, 'Fenton', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45128, 'Ferndale', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45129, 'Flint', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45130, 'Forest Hills', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45131, 'Fowlerville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45132, 'Frankenmuth', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45133, 'Fraser', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45134, 'Fremont', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45135, 'Fruitport', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45136, 'Garden City', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45137, 'Goodrich', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45138, 'Grand Blanc', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45139, 'Grand Haven', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45140, 'Grand Rapids', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45141, 'Grandville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45142, 'Grosse Ile', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45143, 'Grosse Pointe Farms', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45144, 'Grosse Pointe Park', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45145, 'Grosse Pointe Woods', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45146, 'Gwinn', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45147, 'Hamtramck', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45148, 'Hancock', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45149, 'Harper Woods', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45150, 'Harrison', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45151, 'Haslett', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45152, 'Hazel Park', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45153, 'Highland Park', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45154, 'Holland', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45155, 'Holly', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45156, 'Holt', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45157, 'Houghton', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45158, 'Hudsonville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45159, 'Huntington Woods', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45160, 'Imlay', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45161, 'Inkster', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45162, 'Jackon', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45163, 'Jackson', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45164, 'Jenison', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45165, 'Kalamazoo', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45166, 'Kalkaska', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45167, 'Kentwood', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45168, 'Kingsford', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45169, 'Lansing', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45170, 'Lapeer', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45171, 'Lincoln Park', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45172, 'Litchfield', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45173, 'Livonia', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45174, 'Ludington', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45175, 'Macomb', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45176, 'Madison Heights', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45177, 'Manistee', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45178, 'Marquette', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45179, 'Marysville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45180, 'Melvindale', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45181, 'Midland', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45182, 'Monroe', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45183, 'Mount Clemens', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45184, 'Mount Morris', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45185, 'Mount Pleasant', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45186, 'Mt. Pleasant', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45187, 'Muskegon', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45188, 'Muskegon Heights', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45189, 'New Hudson', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45190, 'Newaygo', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45191, 'Niles', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45192, 'Northview', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45193, 'Northville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45194, 'Norton Shores', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45195, 'Novi', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45196, 'Oak Park', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45197, 'Okemos', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45198, 'Oscoda', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45199, 'Owosso', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45200, 'Oxford', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45201, 'Petoskey', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45202, 'Pinckney', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45203, 'Plymouth Township', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45204, 'Pontiac', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45205, 'Port Huron', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45206, 'Portage', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45207, 'Redford', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45208, 'Reese', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45209, 'River Rouge', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45210, 'Riverview', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45211, 'Rochester Hills', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45212, 'Rockford', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45213, 'Romeo', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45214, 'Romulus', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45215, 'Roseville', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45216, 'Royal Oak', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45217, 'Saginaw', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45218, 'Saginaw Township North', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45219, 'Saginaw Township South', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45220, 'Saint Clair Shores', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45221, 'Saint Louis', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45222, 'Saline', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45223, 'Saugatuck', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45224, 'Sault Sainte Marie', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45225, 'Schoolcraft', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45226, 'Shelby', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45227, 'Southfield', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45228, 'Southgate', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45229, 'Sterling Heights', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45230, 'Sturgis', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45231, 'Taylor', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45232, 'Traverse City', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45233, 'Trenton', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45234, 'Troy', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45235, 'Walker', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45236, 'Walled Lake', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45237, 'Warren', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45238, 'Waterford', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45239, 'Waverly', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45240, 'Wayne', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45241, 'West Bloomfield Township', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45242, 'Westland', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45243, 'White Lake', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45244, 'Whitmore Lake', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45245, 'Williamston', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45246, 'Wixom', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45247, 'Woodhaven', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45248, 'Wyandotte', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45249, 'Wyoming', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45250, 'Ypsilanti', 3945, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45251, 'Albert Lea', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45252, 'Alger', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45253, 'Andover', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45254, 'Annandale', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45255, 'Anoka', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45256, 'Apple Valley', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45257, 'Austin', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45258, 'Baxter', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45259, 'Bemidji', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45260, 'Blaine', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45261, 'Blomkest', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45262, 'Bloomington', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45263, 'Blue Earth', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45264, 'Brainerd', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45265, 'Brooklyn Center', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45266, 'Brooklyn Park', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45267, 'Burnsville', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45268, 'Champlin', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45269, 'Chanhassen', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45270, 'Chaska', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45271, 'Chatfield', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45272, 'Circle Pines', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45273, 'Cloquet', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45274, 'Cokato', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45275, 'Columbia Heights', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45276, 'Coon Rapids', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45277, 'Cottage Grove', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45278, 'Crystal', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45279, 'Duluth', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45280, 'Eagan', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45281, 'East Bethel', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45282, 'Eden Prairie', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45283, 'Edina', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45284, 'Elk River', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45285, 'Ely', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45286, 'Fairmont', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45287, 'Faribault', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45288, 'Farmington', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45289, 'Fergus Falls', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45290, 'Frazee', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45291, 'Fridley', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45292, 'Golden Valley', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45293, 'Grand Rapids', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45294, 'Ham Lake', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45295, 'Hamel', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45296, 'Hastings', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45297, 'Hibbing', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45298, 'Hopkins', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45299, 'Houston', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45300, 'Hutchinson', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45301, 'Inver Grove Heights', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45302, 'Isanti', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45303, 'LaCrescent', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45304, 'Lakeville', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45305, 'Le Sueur', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45306, 'Lino Lakes', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45307, 'Litchfield', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45308, 'Mankato', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45309, 'Maple Grove', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45310, 'Maplewood', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45311, 'Marshall', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45312, 'Mendota Heights', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45313, 'Minneapolis', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45314, 'Minnetonka', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45315, 'Moorhead', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45316, 'Mounds View', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45317, 'Nelson', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45318, 'New Brighton', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45319, 'New Hope', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45320, 'New Ulm', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45321, 'North Mankato', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45322, 'North Saint Paul', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45323, 'Northfield', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45324, 'Oakdale', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45325, 'Onamia', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45326, 'Owatonna', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45327, 'Pequot Lakes', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45328, 'Plymouth', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45329, 'Prior Lake', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45330, 'Ramsey', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45331, 'Red Wing', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45332, 'Renville', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45333, 'Richfield', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45334, 'Robbinsdale', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45335, 'Rochester', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45336, 'Rosemount', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45337, 'Roseville', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45338, 'Royalton', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45339, 'Saint Cloud', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45340, 'Saint Louis Park', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45341, 'Saint Michael', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45342, 'Saint Paul', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45343, 'Saint Peter', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45344, 'Sauk Rapids', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45345, 'Savage', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45346, 'Shakopee', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45347, 'Shoreview', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45348, 'South Saint Paul', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45349, 'St. Paul', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45350, 'Stewartville', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45351, 'Stillwater', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45352, 'Vadnais Heights', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45353, 'Waconia', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45354, 'Wadena', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45355, 'West Saint Paul', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45356, 'White Bear Lake', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45357, 'Willmar', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45358, 'Winona', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45359, 'Woodbury', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45360, 'Worthington', 3946, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45361, 'Bay Saint Louis', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45362, 'Biloxi', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45363, 'Brandon', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45364, 'Brookhaven', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45365, 'Byhalia', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45366, 'Byram', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45367, 'Canton', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45368, 'Clarksdale', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45369, 'Cleveland', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45370, 'Clinton', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45371, 'Columbus', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45372, 'Corinth', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45373, 'Diamondhead', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45374, 'Gautier', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45375, 'Greenville', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45376, 'Greenwood', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45377, 'Grenada', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45378, 'Gulfport', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45379, 'Hattiesburg', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45380, 'Hernando', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45381, 'Horn Lake', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45382, 'Indianola', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45383, 'Jackson', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45384, 'Laurel', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45385, 'Long Beach', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45386, 'Lucedale', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45387, 'MacComb', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45388, 'Madison', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45389, 'Magnolia', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45390, 'Meridian', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45391, 'Michigan City', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45392, 'Moselle', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45393, 'Moss Point', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45394, 'Natchez', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45395, 'Ocean Springs', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45396, 'Olive Branch', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45397, 'Orange Grove', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45398, 'Oxford', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45399, 'Pascagoula', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45400, 'Pearl', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45401, 'Pelahatchie', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45402, 'Picayune', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45403, 'Quitman', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45404, 'Ridgeland', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45405, 'Senatobia', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45406, 'Southaven', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45407, 'Southhaven', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45408, 'Starkville', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45409, 'Tupelo', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45410, 'Utica', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45411, 'Vicksburg', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45412, 'Yazoo City', 3947, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45413, 'Affton', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45414, 'Annapolis', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45415, 'Arnold', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45416, 'Ballwin', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45417, 'Belgique', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45418, 'Bellefontaine Neighbors', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45419, 'Belton', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45420, 'Berkeley', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45421, 'Blue Springs', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45422, 'Branson', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45423, 'Bridgeton', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45424, 'Brighton', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45425, 'California', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45426, 'Camdenton', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45427, 'Cape Girardeau', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45428, 'Carthage', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45429, 'Chaffee', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45430, 'Chesterfield', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45431, 'Chillicothe', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45432, 'Clayton', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45433, 'Clever', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45434, 'Columbia', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45435, 'Concord', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45436, 'Crestwood', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45437, 'Creve Coeur', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45438, 'Desloge', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45439, 'Dora', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45440, 'Earth City', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45441, 'Excelsior Springs', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45442, 'Farmington', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45443, 'Fenton', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45444, 'Ferguson', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45445, 'Florissant', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45446, 'Forsyth', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45447, 'Fort Leonard Wood', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45448, 'Fulton', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45449, 'Gladstone', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45450, 'Grain Valley', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45451, 'Grandview', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45452, 'Gravois Mills', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45453, 'Hannibal', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45454, 'Harrisonville', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45455, 'Hazelwood', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45456, 'High Ridge', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45457, 'Independence', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45458, 'Jackson', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45459, 'Jefferson City', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45460, 'Jennings', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45461, 'Joplin', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45462, 'Kansas City', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45463, 'Kennett', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45464, 'Kirksville', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45465, 'Kirkwood', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45466, 'Kissee Mills', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45467, 'Lamar', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45468, 'Lebanon', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45469, 'Lees Summit', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45470, 'Lemay', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45471, 'Liberty', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45472, 'Lone Jack', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45473, 'Marshall', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45474, 'Maryland Heights', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45475, 'Maryville', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45476, 'Mehlville', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45477, 'Mexico', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45478, 'Moberly', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45479, 'Murphy', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45480, 'Nixa', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45481, 'O\'Fallon', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45482, 'Oakville', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45483, 'Overland', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45484, 'Pacific', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45485, 'Park Hills', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45486, 'Parkville', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45487, 'Peculiar', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45488, 'Poplar Bluff', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45489, 'Raytown', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45490, 'Richmond Heights', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45491, 'Rolla', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45492, 'Saint Ann', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45493, 'Saint Charles', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45494, 'Saint Clair', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45495, 'Saint Joseph', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45496, 'Saint Louis', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45497, 'Saint Peters', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45498, 'Sappington', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45499, 'Sedalia', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45500, 'Sikeston', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45501, 'Spanish Lake', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45502, 'Springfield', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45503, 'St. Louis', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45504, 'Steelville', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45505, 'Sunrise Beach', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45506, 'Town and Country', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45507, 'Trimble', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45508, 'Troy', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45509, 'University City', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45510, 'Warrensburg', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45511, 'Washington', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45512, 'Webb City', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45513, 'Webster Groves', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45514, 'Wentzville', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45515, 'West Plains', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45516, 'Wildwood', 3948, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45517, 'Anaconda-Deer Lodge County', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45518, 'Arlee', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45519, 'Belgrade', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45520, 'Billings', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45521, 'Bozeman', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45522, 'Butte', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45523, 'Butte-Silver Bow', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45524, 'Great Falls', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45525, 'Hamilton', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45526, 'Havre', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45527, 'Helena', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45528, 'Helena Valley Southeast', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45529, 'Helena Valley West Central', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45530, 'Kalispell', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45531, 'Lame Deer', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45532, 'Laurel', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45533, 'Lewistown', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45534, 'Livingston', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45535, 'Malmstrom Air Force Base', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45536, 'Manhattan', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45537, 'Miles City', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45538, 'Missoula', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45539, 'Orchard Homes', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45540, 'Pablo', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45541, 'Polson', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45542, 'Roberts', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45543, 'Ryegate', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45544, 'Sidney', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45545, 'Stevensville', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45546, 'Whitefish', 3949, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45547, 'Beatrice', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45548, 'Bellevue', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45549, 'Central City', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45550, 'Columbus', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45551, 'Cozad', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45552, 'Creighton', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45553, 'Fremont', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45554, 'Gering', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45555, 'Grand Island', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45556, 'Hastings', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45557, 'Homer', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45558, 'Keamey', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45559, 'Kearney', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45560, 'La Vista', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45561, 'Lexington', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45562, 'Lincoln', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45563, 'McCook', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45564, 'Norfolk', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45565, 'North Platte', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45566, 'Offutt Air Force Base West', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45567, 'Ogallala', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45568, 'Omaha', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45569, 'Papillion', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45570, 'Scottsbluff', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45571, 'South Sioux City', 3950, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(45572, 'Boulder City', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45573, 'Carson City', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45574, 'Elko', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45575, 'Goldfield', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45576, 'Henderson', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45577, 'Las Vegas', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45578, 'Laughlin', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45579, 'Lovelock', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45580, 'Mesquite', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45581, 'Nellis Air Force Base', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45582, 'North Las Vegas', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45583, 'Pahrump', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45584, 'Paradise', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45585, 'Reno', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45586, 'Sparks', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45587, 'Spring Valley', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45588, 'Sun Valley', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45589, 'Sunrise Manor', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45590, 'Winchester', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45591, 'Winnemucca', 3951, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45592, 'Akron', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45593, 'Alledonia', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45594, 'Alliance', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45595, 'Amherst', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45596, 'Apple Creek', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45597, 'Archbold', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45598, 'Ashland', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45599, 'Ashtabula', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45600, 'Athens', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45601, 'Atwater', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45602, 'Aurora', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45603, 'Austintown', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45604, 'Avon Lake', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45605, 'Barberton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45606, 'Batavia', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45607, 'Bay Village', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45608, 'Beachwood', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45609, 'Beavercreek', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45610, 'Bedford', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45611, 'Bedford Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45612, 'Bellaire', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45613, 'Bellefontaine', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45614, 'Bellevue', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45615, 'Berea', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45616, 'Bexley', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45617, 'Blacklick', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45618, 'Blacklick Estates', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45619, 'Blanchester', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45620, 'Blue Ash', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45621, 'Boardman', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45622, 'Bowling Green', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45623, 'Brecksville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45624, 'Bridgetown North', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45625, 'Bristolville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45626, 'Broadview Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45627, 'Brook Park', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45628, 'Brooklyn', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45629, 'Brunswick', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45630, 'Bryan', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45631, 'Bucyrus', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45632, 'Burton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45633, 'Cambridge', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45634, 'Campbell', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45635, 'Canal Winchester', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45636, 'Canton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45637, 'Carlisle', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45638, 'Celina', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45639, 'Centerville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45640, 'Chagrin Falls', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45641, 'Chardon', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45642, 'Cheshire', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45643, 'Chillicothe', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45644, 'Chippewa Lake', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45645, 'Cincinnati', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45646, 'Circleville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45647, 'Cleveland', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45648, 'Cleveland Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45649, 'Columbus', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45650, 'Conneaut', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45651, 'Coshocton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45652, 'Cuyahoga Falls', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45653, 'Dayton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45654, 'Defiance', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45655, 'Delaware', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45656, 'Dover', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45657, 'Dublin', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45658, 'East Cleveland', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45659, 'East Liverpool', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45660, 'Eastlake', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45661, 'Elyria', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45662, 'Englewood', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45663, 'Euclid', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45664, 'Fairborn', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45665, 'Fairfield', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45666, 'Fairview Park', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45667, 'Findlay', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45668, 'Finneytown', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45669, 'Forest Park', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45670, 'Fort MacKinley', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45671, 'Fostoria', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45672, 'Fremont', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45673, 'Gahanna', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45674, 'Galion', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45675, 'Garfield Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45676, 'Girard', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45677, 'Glenwillow', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45678, 'Green', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45679, 'Greenville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45680, 'Grove City', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45681, 'Hamilton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45682, 'Harrison', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45683, 'Hilliard', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45684, 'Hiram', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45685, 'Holland', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45686, 'Huber Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45687, 'Hudson', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45688, 'Ironton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45689, 'Kent', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45690, 'Kettering', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45691, 'Kidron', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45692, 'Lakewood', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45693, 'Lancaster', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45694, 'Lebanon', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45695, 'Lewis Center', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45696, 'Lima', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45697, 'Lincoln Village', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45698, 'Lorain', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45699, 'Loveland', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45700, 'Lyndhurst', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45701, 'Macedonia', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45702, 'Madison', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45703, 'Maineville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45704, 'Mansfield', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45705, 'Maple Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45706, 'Marietta', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45707, 'Marion', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45708, 'Marysville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45709, 'Mason', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45710, 'Massillon', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45711, 'Maumee', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45712, 'Mayfield Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45713, 'Medina', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45714, 'Mentor', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45715, 'Miamisburg', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45716, 'Middleburg Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45717, 'Middletown', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45718, 'Milford', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45719, 'Millbury', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45720, 'Mineral City', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45721, 'Minster', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45722, 'Mount Gilead', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45723, 'Mount Vernon', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45724, 'Nelsonville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45725, 'New Albany', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45726, 'New Philadelphia', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45727, 'Newark', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45728, 'Niles', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45729, 'North Canton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45730, 'North College Hill', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45731, 'North Lewisburg', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45732, 'North Olmsted', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45733, 'North Ridgeville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45734, 'North Royalton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45735, 'Northbrook', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45736, 'Northfield', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45737, 'Northview', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45738, 'Norton', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45739, 'Norwalk', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45740, 'Norwood', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45741, 'Oberlin', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45742, 'Ohio', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45743, 'Oregon', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45744, 'Overlook-Page Manor', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45745, 'Oxford', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45746, 'Painesville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45747, 'Parma', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45748, 'Parma Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45749, 'Peninsula', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45750, 'Perrysburg', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45751, 'Pickerington', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45752, 'Piqua', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45753, 'Portage Lakes', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45754, 'Portsmouth', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45755, 'Powell', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45756, 'Ravenna', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45757, 'Reading', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45758, 'Reynoldsburg', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45759, 'Rittman', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45760, 'Riverside', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45761, 'Rocky River', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45762, 'Rossford', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45763, 'Salem', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45764, 'Sandusky', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45765, 'Seven Hills', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45766, 'Seville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45767, 'Shaker Heights', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45768, 'Sharonville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45769, 'Sheffield Lake', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45770, 'Shelby', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45771, 'Sidney', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45772, 'Solon', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45773, 'South Euclid', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45774, 'Springdale', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45775, 'Springfield', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45776, 'Steubenville', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45777, 'Stow', 3959, 0.00, 0, '2021-04-06 01:13:51', '2021-04-06 01:13:51', NULL), -(45778, 'Streetsboro', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45779, 'Strongsville', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45780, 'Struthers', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45781, 'Sylvania', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45782, 'Tallmadge', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45783, 'Tiffin', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45784, 'Toledo', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45785, 'Trotwood', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45786, 'Troy', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45787, 'Twinsburg', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45788, 'University Heights', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45789, 'Upper Arlington', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45790, 'Urbana', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45791, 'Valley Glen', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45792, 'Van Wert', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45793, 'Vandalia', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45794, 'Vermilion', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45795, 'Wadsworth', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45796, 'Warren', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45797, 'Warrensville Heights', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45798, 'Washington', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45799, 'Waverly', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45800, 'West Carrollton City', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45801, 'West Chester', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45802, 'Westerville', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45803, 'Westlake', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45804, 'White Oak', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45805, 'Whitehall', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45806, 'Wickliffe', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45807, 'Willoughby', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45808, 'Willowick', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45809, 'Wilmington', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45810, 'Winesburg', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45811, 'Wooster', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45812, 'Worthington', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45813, 'Xenia', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45814, 'Yellow Springs', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45815, 'Youngstown', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45816, 'Zanesville', 3959, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45817, 'Ada', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45818, 'Altus', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45819, 'Ardmore', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45820, 'Bartlesville', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45821, 'Bethany', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45822, 'Bixby', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45823, 'Broken Arrow', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45824, 'Catoosa', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45825, 'Chickasha', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45826, 'Choctaw', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45827, 'Claremore', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45828, 'Del City', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45829, 'Duncan', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45830, 'Durant', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45831, 'Edmond', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45832, 'El Reno', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45833, 'Elk City', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45834, 'Enid', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45835, 'Fort Sill', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45836, 'Grove', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45837, 'Guthrie', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45838, 'Heavener', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45839, 'Hugo', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45840, 'Lawton', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45841, 'Lindsay', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45842, 'MacAlester', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45843, 'Miami', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45844, 'Midwest City', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45845, 'Moore', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45846, 'Morrison', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45847, 'Muskogee', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45848, 'Mustang', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45849, 'Norman', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45850, 'Oklahoma City', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45851, 'Okmulgee', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45852, 'Owasso', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45853, 'Pawnee', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45854, 'Ponca City', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45855, 'Rattan', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45856, 'Sand Springs', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45857, 'Sapulpa', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45858, 'Shawnee', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45859, 'Stillwater', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45860, 'Sulphur', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45861, 'Tahlequah', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45862, 'The Village', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45863, 'Tulsa', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45864, 'Weatherford', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45865, 'Welch', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45866, 'Woodward', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45867, 'Yukon', 3960, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45868, 'Point Edward', 3961, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45869, 'Woodbridge', 3961, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45870, 'Albany', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45871, 'Aloha', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45872, 'Altamont', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45873, 'Arleta', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45874, 'Ashland', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45875, 'Astoria', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45876, 'Baker City', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45877, 'Beaverton', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45878, 'Bend', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45879, 'Canby', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45880, 'Cave Junction', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45881, 'Cedar Hills', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45882, 'Cedar Mill', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45883, 'Central Point', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45884, 'City of The Dalles', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45885, 'Coos Bay', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45886, 'Corvallis', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45887, 'Creswell', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45888, 'Dallas', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45889, 'Donald', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45890, 'Eugene', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45891, 'Forest Grove', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45892, 'Four Corners', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45893, 'Gladstone', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45894, 'Glide', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45895, 'Grants Pass', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45896, 'Gresham', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45897, 'Hayesville', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45898, 'Hazelwood', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45899, 'Hermiston', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45900, 'Hillsboro', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45901, 'Hood River', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45902, 'Hubbard', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45903, 'John Day', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45904, 'Jordan Valley', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45905, 'Keizer', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45906, 'Klamath Falls', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45907, 'La Grande', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45908, 'Lake Oswego', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45909, 'Lebanon', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45910, 'Lincoln', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45911, 'MacMinnville', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45912, 'Medford', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45913, 'Milwaukie', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45914, 'Newberg', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45915, 'Newport', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45916, 'North Bend', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45917, 'OBrien', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45918, 'Oak Grove', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45919, 'Oatfield', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45920, 'Ontario', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45921, 'Oregon City', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45922, 'Pendleton', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45923, 'Portland', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45924, 'Redmond', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45925, 'Riddle', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45926, 'River Road', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45927, 'Roseburg', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45928, 'Salem', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45929, 'Sherwood', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45930, 'Springfield', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45931, 'Sublimity', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45932, 'Sutherlin', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45933, 'Talent', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45934, 'Tigard', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45935, 'Troutdale', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45936, 'Tualatin', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45937, 'Turner', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45938, 'Vaughn', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45939, 'West Linn', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45940, 'Wilsonville', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45941, 'Woodburn', 3962, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45942, 'Akron', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45943, 'Aliquippa', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45944, 'Allentown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45945, 'Altoona', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45946, 'Ambler', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45947, 'Amityville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45948, 'Ardmore', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45949, 'Audubon', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45950, 'Back Mountain', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45951, 'Baldwin', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45952, 'Bangor', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45953, 'Beaver Falls', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45954, 'Belle Vernon', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45955, 'Bensalem', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45956, 'Berwick', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45957, 'Berwyn', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45958, 'Bethel Park', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45959, 'Bethlehem', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45960, 'Bloomsburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45961, 'Boyertown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45962, 'Bradford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45963, 'Brentwood', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45964, 'Bridgeport', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45965, 'Bristol', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45966, 'Brockway', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45967, 'Broomall', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45968, 'Bushkill', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45969, 'Butler', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45970, 'Camp Hill', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45971, 'Canonsburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45972, 'Carbondale', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45973, 'Carlisle', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45974, 'Carnegie', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45975, 'Carnot Moon', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45976, 'Chambersburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45977, 'Chester', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45978, 'Chester Springs', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45979, 'Clarks Summit', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45980, 'Coatesville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45981, 'Colonial Park', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45982, 'Columbia', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45983, 'Conshohocken', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45984, 'Coraopolis', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45985, 'Corry', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45986, 'Cranberry Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45987, 'Cresco', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45988, 'Croydon', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45989, 'Dallas', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45990, 'Dallastown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45991, 'Darby', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45992, 'Darby Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45993, 'Downingtown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45994, 'Drexel Hill', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45995, 'Duncansville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45996, 'Dunmore', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45997, 'East Norriton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45998, 'East Stroudsburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(45999, 'Easton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46000, 'Economy', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46001, 'Edinboro', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46002, 'Elizabethtown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46003, 'Elkins Park', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46004, 'Emmaus', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46005, 'Ephrata', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46006, 'Erdenheim', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46007, 'Erie', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46008, 'Erwinna', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46009, 'Exton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46010, 'Feasterville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46011, 'Folcroft', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46012, 'Franklin', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46013, 'Franklin Park', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46014, 'Frederick', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46015, 'Fullerton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46016, 'Furlong', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46017, 'Gettysburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46018, 'Gibsonia', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46019, 'Glenside', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46020, 'Gordonville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46021, 'Greensburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46022, 'Gwynedd', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46023, 'Hampden Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46024, 'Hanover', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46025, 'Harleysville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46026, 'Harrisburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46027, 'Harrison Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46028, 'Hatboro', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46029, 'Haverford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46030, 'Havertown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46031, 'Hazleton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46032, 'Hermitage', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46033, 'Hershey', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46034, 'Hollidaysburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46035, 'Horsham', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46036, 'Huntingdon Valley', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46037, 'Indiana', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46038, 'Irvine', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46039, 'Ivyland', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46040, 'Jeannette', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46041, 'Jefferson', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46042, 'Jenkintown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46043, 'Johnstown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46044, 'Kempton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46045, 'Kennett Square', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46046, 'King of Prussia', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46047, 'Kingston', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46048, 'Kutztown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46049, 'Lafayette Hill', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46050, 'Lancaster', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46051, 'Landenberg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46052, 'Langhorne', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46053, 'Lansdale', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46054, 'Lansdowne', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46055, 'Lansford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46056, 'Laurys Station', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46057, 'Lebanon', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46058, 'Lehighton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46059, 'Levittown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46060, 'Lincoln University', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46061, 'Linesville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46062, 'Linwood', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46063, 'Lower Burrell', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46064, 'Lower Merion', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46065, 'MacCandless Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46066, 'MacKeesport', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46067, 'Malvern', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46068, 'Meadville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46069, 'Mechanicsburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46070, 'Media', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46071, 'Merion Station', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46072, 'Middleburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46073, 'Mifflinville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46074, 'Milanville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46075, 'Milford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46076, 'Millersburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46077, 'Monessen', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46078, 'Moscow', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46079, 'Mount Carmel', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46080, 'Mount Lebanon', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46081, 'Mountville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46082, 'Munhall', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46083, 'Municipality of Monroeville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46084, 'Municipality of Murrysville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46085, 'N. Charleroi', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46086, 'Nanticoke', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46087, 'Narberth', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46088, 'Natrona Heights', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46089, 'Nazareth', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46090, 'Nether Providence Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46091, 'New Buffalo', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46092, 'New Carlisle', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46093, 'New Castle', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46094, 'New Cumberland', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46095, 'New Hope', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46096, 'New Kensington', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46097, 'Newton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46098, 'Newtown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46099, 'Newville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46100, 'Norristown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46101, 'North East', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46102, 'North Versailles', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46103, 'North Wales', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46104, 'Oaks', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46105, 'Oil City', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46106, 'Olyphant', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46107, 'Orrtanna', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46108, 'Orwigsburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46109, 'Oxford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46110, 'Paoli', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46111, 'Parksburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46112, 'Penn Hills', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46113, 'Philadelphia', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46114, 'Phildelphia', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46115, 'Phoenixville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46116, 'Pipersville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46117, 'Pittsburgh', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46118, 'Pleasantville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46119, 'Plum', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46120, 'Pocono Summit', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46121, 'Pottstown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46122, 'Pottsville', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46123, 'Primos', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46124, 'Progress', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46125, 'Prospect', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46126, 'Quakertown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46127, 'Radnor Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46128, 'Reading', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46129, 'Robinson Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46130, 'Roseto', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46131, 'Ross Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46132, 'Royersford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46133, 'Saint Marys', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46134, 'Sarver', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46135, 'Saxonburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46136, 'Scott Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46137, 'Scranton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46138, 'Seward', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46139, 'Sewickley', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46140, 'Shaler Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46141, 'Sharon', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46142, 'Shermans Dale', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(46143, 'Somerset', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46144, 'Souderton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46145, 'South Park Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46146, 'Southampton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46147, 'Springfield', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46148, 'State College', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46149, 'Strasburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46150, 'Sunbury', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46151, 'Susquehanna', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46152, 'Swissvale', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46153, 'Tamaqua', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46154, 'Taylor', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46155, 'Telford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46156, 'Trevose', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46157, 'Turtle Creek', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46158, 'Tyrone', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46159, 'Uniontown', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46160, 'Upper Darby', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46161, 'Upper Providence Township', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46162, 'Upper Saint Clair', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46163, 'Vanderbilt', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46164, 'Warminster', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46165, 'Warren', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46166, 'Warrendale', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46167, 'Washington', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46168, 'Waterford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46169, 'Waverly', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46170, 'Wayne', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46171, 'Waynesboro', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46172, 'West Chester', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46173, 'West Mifflin', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46174, 'West Norriton', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46175, 'West Point', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46176, 'Wexford', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46177, 'Whitehall', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46178, 'Wilcox', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46179, 'Wilkes-Barre', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46180, 'Wilkinsburg', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46181, 'Williamsport', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46182, 'Willow Grove', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46183, 'Womelsdorf', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46184, 'Woodlyn', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46185, 'Woolrich', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46186, 'Wyncote', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46187, 'Wyndmoor', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46188, 'Wynnewood', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46189, 'Yardley', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46190, 'Yeadon', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46191, 'York', 3963, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46192, 'Ramey', 3964, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46193, 'Adamsville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46194, 'Alcoa', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46195, 'Antioch', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46196, 'Arlington', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46197, 'Athens', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46198, 'Bartlett', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46199, 'Bell Buckle', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46200, 'Bloomingdale', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46201, 'Blountville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46202, 'Brentwood', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46203, 'Bristol', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46204, 'Brownsville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46205, 'Burns', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46206, 'Chattanooga', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46207, 'Clarksville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46208, 'Cleveland', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46209, 'Collierville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46210, 'Columbia', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46211, 'Cookeville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46212, 'Cornersville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46213, 'Crossville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46214, 'Dayton', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46215, 'Dickson', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46216, 'Dyersburg', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46217, 'East Brainerd', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46218, 'East Ridge', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46219, 'Elizabethton', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46220, 'Farragut', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46221, 'Franklin', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46222, 'Gainesboro', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46223, 'Gallatin', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46224, 'Gatlinburg', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46225, 'Germantown', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46226, 'Goodlettsville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46227, 'Greeneville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46228, 'Hendersonville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46229, 'Hixson', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46230, 'Jackson', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46231, 'Johnson City', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46232, 'Kingsport', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46233, 'Knoxville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46234, 'Kodak', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46235, 'La Vergne', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46236, 'Lawrenceburg', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46237, 'Lebanon', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46238, 'Lenoir City', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46239, 'Lewisburg', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46240, 'MacMinnville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46241, 'Maryville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46242, 'Memphis', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46243, 'Middle Valley', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46244, 'Millington', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46245, 'Morristown', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46246, 'Mulberry', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46247, 'Murfreesboro', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46248, 'Nashville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46249, 'Oak Ridge', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46250, 'Ooltewah', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46251, 'Pinson', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46252, 'Red Bank', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46253, 'Selmer', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46254, 'Sevierville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46255, 'Shelbyville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46256, 'Smithville', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46257, 'Smyrna', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46258, 'Spring City', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46259, 'Springfield', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46260, 'Tazewell', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46261, 'Trenton', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46262, 'Tullahoma', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46263, 'Union City', 3969, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46264, 'Abilene', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46265, 'Addison', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46266, 'Alamo', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46267, 'Aldine', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46268, 'Alice', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46269, 'Allen', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46270, 'Alvin', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46271, 'Amarillo', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46272, 'Anderson Mill', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46273, 'Andrews', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46274, 'Angleton', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46275, 'Argyle', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46276, 'Arlington', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46277, 'Aspermont', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46278, 'Atascocita', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46279, 'Athens', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46280, 'Austin', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46281, 'Austinn', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46282, 'Azle', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46283, 'Balch Springs', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46284, 'Barry', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46285, 'Bay City', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46286, 'Baytown', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46287, 'Beaumont', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46288, 'Bedford', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46289, 'Beeville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46290, 'Bellaire', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46291, 'Belton', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46292, 'Benbrook', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46293, 'Big Spring', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46294, 'Bluff Dale', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46295, 'Boerne', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46296, 'Borger', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46297, 'Breckenridge', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46298, 'Brenham', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46299, 'Brownfield', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46300, 'Brownsville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46301, 'Brownwood', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46302, 'Bryan', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46303, 'Buda', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46304, 'Burkburnett', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46305, 'Burleson', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46306, 'Campbell', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46307, 'Canyon', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46308, 'Canyon Lake', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46309, 'Carrollton', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46310, 'Cat Spring', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46311, 'Cedar Hill', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46312, 'Cedar Park', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46313, 'Celina', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46314, 'Center', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46315, 'Channelview', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46316, 'City of Dallas', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46317, 'Cleburne', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46318, 'Cloverleaf', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46319, 'Clute', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46320, 'College Station', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46321, 'Colleyville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46322, 'Columbus', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46323, 'Comanche', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46324, 'Conroe', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46325, 'Converse', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46326, 'Coppell', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46327, 'Copperas Cove', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46328, 'Corinth', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46329, 'Corpus Christi', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46330, 'Corsicana', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46331, 'Cotulla', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46332, 'Crandall', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46333, 'Cypress', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46334, 'Dallas', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46335, 'Dayton', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46336, 'DeSoto', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46337, 'Deer Park', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46338, 'Del Rio', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46339, 'Denison', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46340, 'Denton', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46341, 'Dickinson', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46342, 'Donna', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46343, 'Dumas', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46344, 'Duncanville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46345, 'Eagle Pass', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46346, 'Edinburg', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46347, 'El Campo', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46348, 'El Paso', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46349, 'Elmendorf', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46350, 'Ennis', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46351, 'Euless', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46352, 'Fairfield', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46353, 'Farmers Branch', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46354, 'Flower Mound', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46355, 'Forest Hill', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46356, 'Forney', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46357, 'Fort Bliss', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46358, 'Fort Hood', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46359, 'Fort Worth', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46360, 'Freeport', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46361, 'Friendswood', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46362, 'Frisco', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46363, 'Gainesville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46364, 'Galena Park', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46365, 'Galveston', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46366, 'Garland', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46367, 'Gatesville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46368, 'Georgetown', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46369, 'Grand Prairie', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46370, 'Grandview', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46371, 'Grapeland', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46372, 'Grapevine', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46373, 'Greenville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46374, 'Gregory', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46375, 'Groves', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46376, 'Haltom City', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46377, 'Harker Heights', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46378, 'Harlingen', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46379, 'Henderson', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46380, 'Hereford', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46381, 'Hewitt', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46382, 'Highland Village', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46383, 'Hillsboro', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46384, 'Houston', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46385, 'Humble', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46386, 'Huntsville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46387, 'Hurst', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46388, 'Ingleside', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46389, 'Irving', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46390, 'Jacksonville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46391, 'Jefferson', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46392, 'Jollyville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46393, 'Justin', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46394, 'Katy', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46395, 'Kaufman', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46396, 'Keller', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46397, 'Kemah', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46398, 'Kemp', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46399, 'Kerrville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46400, 'Kilgore', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46401, 'Killeen', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46402, 'Kingsville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46403, 'Kingwood', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46404, 'La Marque', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46405, 'La Porte', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46406, 'Lackland Air Force Base', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46407, 'Lago Vista', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46408, 'Lake Jackson', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46409, 'Lamesa', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46410, 'Lampasas', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46411, 'Lancaster', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46412, 'Laredo', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46413, 'League City', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46414, 'Leon Valley', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46415, 'Levelland', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46416, 'Lewisville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46417, 'Liberty Hill', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46418, 'Lindsay', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46419, 'Little Elm', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46420, 'Live Oak', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46421, 'Llano', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46422, 'Lockhart', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46423, 'Longview', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46424, 'Lubbock', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46425, 'Lufkin', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46426, 'Lumberton', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46427, 'MacAllen', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46428, 'MacKinney', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46429, 'Magnolia', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46430, 'Malakoff', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46431, 'Mansfield', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46432, 'Marshall', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46433, 'McAllen', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46434, 'McKinney', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46435, 'Medina', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46436, 'Mercedes', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46437, 'Mesquite', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46438, 'Midland', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46439, 'Mineral Wells', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46440, 'Mission', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46441, 'Mission Bend', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46442, 'Missouri City', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46443, 'Montgomery', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46444, 'Mount Pleasant', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46445, 'Murphy', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46446, 'Nacogdoches', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46447, 'Nederland', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46448, 'New Braunfels', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46449, 'New Caney', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46450, 'North Richland Hills', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46451, 'North Zulch', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46452, 'Odessa', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46453, 'Orange', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46454, 'Ovalo', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46455, 'Palestine', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46456, 'Pampa', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46457, 'Paris', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46458, 'Pasadena', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46459, 'Pearland', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46460, 'Pecan Grove', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46461, 'Pecos', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46462, 'Pflugerville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46463, 'Pharr', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46464, 'Pinehurst', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46465, 'Plainview', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46466, 'Plano', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46467, 'Pontotoc', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46468, 'Port Arthur', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46469, 'Port Lavaca', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46470, 'Port Neches', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46471, 'Portland', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46472, 'Pottsboro', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46473, 'Princeton', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46474, 'Richardson', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46475, 'Richmond', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46476, 'Rio Grande City', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46477, 'Robstown', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46478, 'Rockport', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46479, 'Rockwall', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46480, 'Roma', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46481, 'Rosenberg', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46482, 'Round Rock', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46483, 'Rowlett', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46484, 'Royse City', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46485, 'Sachse', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46486, 'Saginaw', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46487, 'San Angelo', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46488, 'San Antonio', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46489, 'San Benito', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46490, 'San Juan', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46491, 'San Marcos', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46492, 'Santa Fe', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46493, 'Schertz', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46494, 'Seabrook', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46495, 'Seagoville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46496, 'Seguin', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46497, 'Sherman', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46498, 'Slaton', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46499, 'Smithville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46500, 'Snyder', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46501, 'Socorro', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46502, 'South Houston', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46503, 'South Padre Island', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46504, 'Southlake', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46505, 'Spring', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46506, 'Stafford', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46507, 'Stephenville', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46508, 'Strawn', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46509, 'Sugar Land', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46510, 'Sulphur Springs', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46511, 'Sweetwater', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46512, 'Taylor', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46513, 'Temple', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46514, 'Terrell', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46515, 'Texarkana', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46516, 'Texas City', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46517, 'The Colony', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46518, 'The Woodlands', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46519, 'Tomball', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46520, 'Tyler', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46521, 'Universal City', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46522, 'University Park', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46523, 'Uvalde', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46524, 'Vernon', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46525, 'Victoria', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46526, 'Vidor', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46527, 'Waco', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46528, 'Watauga', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46529, 'Waxahachie', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46530, 'Weatherford', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46531, 'Weslaco', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46532, 'West Odessa', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46533, 'West University Place', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46534, 'White Settlement', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46535, 'Wichita Falls', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46536, 'Winnsboro', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46537, 'Woodway', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46538, 'Wylie', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46539, 'Yoakum', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46540, 'austinn', 3970, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46541, 'Bedford Kentucky', 3971, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46542, 'Alpine', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46543, 'American Fork', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46544, 'Bluffdale', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46545, 'Bountiful', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46546, 'Brigham City', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46547, 'Canyon Rim', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46548, 'Castle Dale', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46549, 'Cedar City', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46550, 'Centerville', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46551, 'Clearfield', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46552, 'Clinton', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46553, 'Cottonwood Heights', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46554, 'Cottonwood West', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46555, 'Draper', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46556, 'East Millcreek', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46557, 'Farmington', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46558, 'Holladay-Cottonwood', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46559, 'Ivins', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46560, 'Kaysville', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46561, 'Kearns', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46562, 'Layton', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46563, 'Lehi', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46564, 'Logan', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46565, 'Magna', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46566, 'Mapleton', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46567, 'Midvale', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46568, 'Millcreek', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46569, 'Moab', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46570, 'Monticello', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46571, 'Murray', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46572, 'North Logan', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46573, 'North Ogden', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46574, 'Ogden', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46575, 'Orem', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46576, 'Panguitch', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46577, 'Park City', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46578, 'Payson', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46579, 'Pleasant Grove', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46580, 'Provo', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46581, 'Riverton', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46582, 'Roy', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46583, 'Saint George', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46584, 'Salt Lake City', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46585, 'Sandy', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46586, 'Santaquin', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46587, 'South Jordan', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46588, 'South Ogden', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46589, 'South Salt Lake', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46590, 'Spanish Fork', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46591, 'Springville', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46592, 'Taylorsville', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46593, 'Tooele', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46594, 'Tremonton', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46595, 'Union', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46596, 'Washington', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46597, 'West Jordan', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46598, 'West Valley City', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46599, 'Woods Cross', 3972, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46600, 'Barre', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46601, 'Bennington', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46602, 'Brattleboro', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46603, 'Bristol', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46604, 'Burlington', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46605, 'Cabot', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46606, 'Colchester', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46607, 'Danville', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46608, 'Dorset', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46609, 'Dummerston', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46610, 'East Corinth', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46611, 'East Fairfield', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46612, 'East Randolph', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46613, 'Essex', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46614, 'Essex Junction', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46615, 'Grand Isle', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46616, 'Hartford', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46617, 'Jericho', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46618, 'Manchester', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46619, 'Manchester Center', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46620, 'Middlebury', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46621, 'Milton', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46622, 'Montpelier', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46623, 'Putney', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46624, 'Randolph', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46625, 'Rochester', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46626, 'Rutland', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46627, 'Saint Albans', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46628, 'Saint Johnsbury', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46629, 'Saxtons River', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46630, 'South Burlington', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46631, 'South Strafford', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46632, 'Springfield', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46633, 'Townshend', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46634, 'Tunbridge', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46635, 'Van', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46636, 'Vernon', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46637, 'Wallingford', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46638, 'Watisfield', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46639, 'West Brookfield', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46640, 'West Charleston', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46641, 'West Newbury', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46642, 'Williston', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46643, 'Winooski', 3973, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46644, 'Abingdon', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46645, 'Alexandria', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46646, 'Annandale', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46647, 'Arlington', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46648, 'Ashburn', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46649, 'Ashland', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46650, 'Aylett', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46651, 'Bailey\'s Crossroads', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46652, 'Blacksburg', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46653, 'Bland', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46654, 'Bluefield', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46655, 'Bon Air', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46656, 'Bristol', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46657, 'Burke', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46658, 'Cave Spring', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46659, 'Centreville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46660, 'Chantilly', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46661, 'Charlottesville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46662, 'Chesapeake', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46663, 'Chester', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46664, 'Christiansburg', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46665, 'Churchville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46666, 'Clifton', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46667, 'Colonial Heights', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46668, 'Culloden', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46669, 'Dale City', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46670, 'Danville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46671, 'Dublin', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46672, 'Eagle Rock', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46673, 'East Highland Park', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46674, 'Faber', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46675, 'Fairfax', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46676, 'Falls Church', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46677, 'Fishersville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46678, 'Fort Hunt', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46679, 'Fort Valley', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46680, 'Franconia', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46681, 'Franklin', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46682, 'Fredericksburg', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46683, 'Front Royal', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46684, 'Gainesville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46685, 'Glen Allen', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46686, 'Gloucester', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46687, 'Goochland', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46688, 'Great Falls', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46689, 'Groveton', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46690, 'Hampton', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46691, 'Harrisonburg', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46692, 'Henrico', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46693, 'Herndon', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46694, 'Highland Springs', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46695, 'Hollins', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46696, 'Hopewell', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46697, 'Hybla Valley', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46698, 'Idylwood', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46699, 'Irvington', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46700, 'Jamesville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46701, 'Jefferson', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46702, 'Keen Mountain', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46703, 'Keswick', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46704, 'Lake Ridge', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46705, 'Lakeside', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46706, 'Laurel', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46707, 'Leesburg', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46708, 'Lincolnia', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46709, 'Lorton', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46710, 'Lynchburg', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46711, 'MacLean', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46712, 'Madison', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46713, 'Madison Heights', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46714, 'Manassas', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(46715, 'Marion', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46716, 'Martinsville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46717, 'Mclean', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46718, 'Mechanicsville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46719, 'Melfa', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46720, 'Midlothian', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46721, 'Montclair', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46722, 'Montross', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46723, 'Mount Vernon', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46724, 'Newington', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46725, 'Newport News', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46726, 'Norfolk', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46727, 'North Springfield', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46728, 'Oakton', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46729, 'Orange', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46730, 'Petersburg', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46731, 'Poquoson', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46732, 'Portsmouth', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46733, 'Radford', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46734, 'Reston', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46735, 'Richmond', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46736, 'Roanoke', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46737, 'Rose Hill', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46738, 'Salem', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46739, 'Seaford', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46740, 'South Boston', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46741, 'Springfield', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46742, 'Stafford', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46743, 'Staffordshire', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46744, 'Staunton', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46745, 'Sterling', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46746, 'Suffolk', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46747, 'Sugarland Run', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46748, 'Tappahannock', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46749, 'Timberlake', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46750, 'Triangle', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46751, 'Tuckahoe', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46752, 'Tysons Corner', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46753, 'Vienna', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46754, 'Virginia Beach', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46755, 'Warrenton', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46756, 'Washington', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46757, 'Waterford', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46758, 'Waynesboro', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46759, 'West Springfield', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46760, 'Williamsburg', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46761, 'Winchester', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46762, 'Wolf Trap', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46763, 'Woodbridge', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46764, 'Wytheville', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46765, 'Yorktown', 3974, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46766, 'Aberdeen', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46767, 'Airway Heights', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46768, 'Alderwood Manor', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46769, 'Anacortes', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46770, 'Arlington', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46771, 'Auburn', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46772, 'Bainbridge Island', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46773, 'Battle Ground', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46774, 'Bellevue', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46775, 'Bellingham', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46776, 'Bingen', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46777, 'Blaine', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46778, 'Bothell', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46779, 'Bremerton', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46780, 'Bryn Mawr-Skyway', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46781, 'Buckley', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46782, 'Burien', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46783, 'Burlington', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46784, 'Camano Island', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46785, 'Camas', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46786, 'Cascade-Fairwood', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46787, 'Centralia', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46788, 'Chehalis', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46789, 'Cheney', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46790, 'Clear Lake', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46791, 'Colbert', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46792, 'Cottage Lake', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46793, 'Covington-Sawyer-Wilderness', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46794, 'Des Moines', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46795, 'Duvall', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46796, 'East Hill-Meridian', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46797, 'East Renton Highlands', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46798, 'East Wenatchee Bench', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46799, 'Eastsound', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46800, 'Eatonville', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46801, 'Edgewood-North Hill', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46802, 'Edmonds', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46803, 'Elk Plain', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46804, 'Ellensburg', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46805, 'Enumclaw', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46806, 'Esperance', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46807, 'Everett', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46808, 'Evergreen', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46809, 'Fairchild', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46810, 'Federal Way', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46811, 'Ferndale', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46812, 'Fircrest', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46813, 'Ford', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46814, 'Fort Lewis', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46815, 'Friday Harbor', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46816, 'Gig Harbor', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46817, 'Graham', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46818, 'Harbour Pointe', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46819, 'Inglewood-Finn Hill', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46820, 'Issaquah', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46821, 'Kelso', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46822, 'Kenmore', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46823, 'Kennewick', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46824, 'Kent', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46825, 'Kingsgate', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46826, 'Kirkland', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46827, 'Lacey', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46828, 'Lake Serene-North Lynnwood', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46829, 'Lakeland North', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46830, 'Lakeland South', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46831, 'Lakewood', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46832, 'Longview', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46833, 'Lynnwood', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46834, 'Martha Lake', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46835, 'Marysville', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46836, 'Mercer Island', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46837, 'Minnehaha', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46838, 'Monroe', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46839, 'Moses Lake', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46840, 'Mossyrock', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46841, 'Mount Vernon', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46842, 'Mountlake Terrace', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46843, 'Mukilteo', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46844, 'Newport Hills', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46845, 'North City-Ridgecrest', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46846, 'North Creek', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46847, 'North Marysville', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46848, 'Oak Harbor', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46849, 'Ocean Shores', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46850, 'Olympia', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46851, 'Opportunity', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46852, 'Orchards South', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46853, 'Orting', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46854, 'Paine Field-Lake Stickney', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46855, 'Parkland', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46856, 'Pasco', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46857, 'Picnic Point-North Lynnwood', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46858, 'Pine Lake', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46859, 'Port Angeles', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46860, 'Port Hadlock', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46861, 'Port Ludlow', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46862, 'Port Orchard', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46863, 'Poulsbo', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46864, 'Pullman', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46865, 'Puyallup', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46866, 'Redmond', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46867, 'Renton', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46868, 'Republic', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46869, 'Richland', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46870, 'Riverton-Boulevard Park', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46871, 'Sahalee', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46872, 'Salmon Creek', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46873, 'Sammamish', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46874, 'SeaTac', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46875, 'Seattle', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46876, 'Seattle Hill-Silver Firs', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46877, 'Sedro Woolley', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46878, 'Shelton', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46879, 'Shoreline', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46880, 'Silverdale', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46881, 'Snohomish', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46882, 'South Hill', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46883, 'South Prairie', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46884, 'South Seattle', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46885, 'Spanaway', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46886, 'Spokane', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46887, 'Sumas', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46888, 'Sumner', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46889, 'Sunnyside', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46890, 'Tacoma', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46891, 'Tukwila', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46892, 'Tumwater', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46893, 'University Place', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46894, 'Vancouver', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46895, 'Vashon', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46896, 'Walla Walla', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46897, 'Washougal', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46898, 'Wenatchee', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46899, 'West Lake Stevens', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46900, 'White Center', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46901, 'White Salmon', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46902, 'White Swan', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46903, 'Woodinville', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46904, 'Yakima', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46905, 'Yelm', 3975, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46906, 'Adams', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46907, 'Allouez', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46908, 'Appleton', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46909, 'Ashland', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46910, 'Ashwaubenon', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46911, 'Baraboo', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46912, 'Beaver Dam', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46913, 'Beloit', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46914, 'Brookfield', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46915, 'Brown Deer', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46916, 'Burlington', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46917, 'Caledonia', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46918, 'Carter', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46919, 'Cedarburg', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46920, 'Chippewa Falls', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46921, 'Cudahy', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46922, 'De Pere', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46923, 'Deer Park', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46924, 'Delafield', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46925, 'Eau Claire', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46926, 'Elkhorn', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46927, 'Elroy', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46928, 'Fitchburg', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46929, 'Fond du Lac', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46930, 'Fort Atkinson', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46931, 'Franklin', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46932, 'Galesville', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46933, 'Germantown', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46934, 'Glen Flora', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46935, 'Glendale', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46936, 'Goodman', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46937, 'Grafton', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46938, 'Green Bay', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46939, 'Greendale', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46940, 'Greenfield', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46941, 'Hartford', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46942, 'Hartland', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46943, 'Howard', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46944, 'Hudson', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46945, 'Janesville', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46946, 'Jefferson', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46947, 'Junction City', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46948, 'Kaukauna', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46949, 'Kenosha', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46950, 'Kiel', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46951, 'Kohler', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46952, 'La Crosse', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46953, 'Little Chute', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46954, 'Madison', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46955, 'Manitowoc', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46956, 'Marinette', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46957, 'Marshfield', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46958, 'Medford', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46959, 'Menasha', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46960, 'Menomonee Falls', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46961, 'Menomonie', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46962, 'Mequon', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46963, 'Merrill', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46964, 'Middleton', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46965, 'Milwaukee', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46966, 'Mineral Point', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46967, 'Monroe', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46968, 'Mount Pleasant', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46969, 'Mukwonago', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46970, 'Muskego', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46971, 'Neenah', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46972, 'New Berlin', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46973, 'New Richmond', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46974, 'Oak Creek', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46975, 'Oconomowoc', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46976, 'Onalaska', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46977, 'Orfordville', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46978, 'Oshkosh', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46979, 'Pigeon Falls', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46980, 'Platteville', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46981, 'Pleasant Prairie', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46982, 'Plover', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46983, 'Port Washington', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46984, 'Portage', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46985, 'Pound', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46986, 'Racine', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46987, 'Reedsburg', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46988, 'Rhinelander', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46989, 'River Falls', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46990, 'Saint Francis', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46991, 'Sheboygan', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46992, 'Shorewood', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46993, 'South Milwaukee', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46994, 'Spring Valley', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46995, 'Stevens Point', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46996, 'Stoughton', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46997, 'Strum', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46998, 'Sturtevant', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(46999, 'Sun Prairie', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47000, 'Superior', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47001, 'Three Lakes', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47002, 'Tomah', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47003, 'Two Rivers', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47004, 'Washington Island', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47005, 'Waterford', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47006, 'Watertown', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47007, 'Waukesha', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47008, 'Waupun', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47009, 'Wausau', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47010, 'Wautoma', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47011, 'Wauwatosa', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47012, 'West Allis', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47013, 'West Bend', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47014, 'Weston', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47015, 'Whitefish Bay', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47016, 'Whitewater', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47017, 'Wisconsin Rapids', 3977, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47018, 'Buffalo', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47019, 'Casper', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47020, 'Cheyenne', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47021, 'Cody', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47022, 'Douglas', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47023, 'Evanston', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47024, 'Gillette', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47025, 'Green River', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47026, 'Jackson', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47027, 'Lander', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47028, 'Laramie', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47029, 'Powell', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47030, 'Rawlins', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47031, 'Riverton', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47032, 'Rock Springs', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47033, 'Sheridan', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47034, 'Torrington', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47035, 'Worland', 3978, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47036, 'Artigas', 3980, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47037, 'Bella Union', 3980, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47038, 'Camino Maldonado', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47039, 'Canelones', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47040, 'Ciudad de la Costa', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47041, 'Juan Antonio Artigas', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47042, 'Las Piedras', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47043, 'Pando', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47044, 'Paso de Carrasco', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47045, 'Progreso', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47046, 'Santa Lucia', 3981, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47047, 'Carmelo', 3983, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47048, 'Colonia', 3983, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47049, 'Juan Lacaze', 3983, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47050, 'Nueva Helvecia', 3983, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47051, 'Durazno', 3984, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47052, 'Florida', 3985, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47053, 'Trinidad', 3986, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47054, 'Minas', 3987, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47055, 'Maldonado', 3988, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47056, 'San Carlos', 3988, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47057, 'La Paz', 3989, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47058, 'Montevideo', 3989, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47059, 'Paysandu', 3990, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47060, 'Rivera', 3992, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47061, 'Chuy', 3993, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47062, 'Rocha', 3993, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47063, 'Salto', 3994, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47064, 'Dolores', 3996, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47065, 'Mercedes', 3996, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47066, 'Paso de los Toros', 3997, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47067, 'Tacuarembo', 3997, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47068, 'Ahunabayev', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47069, 'Andijon', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47070, 'Asaka', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47071, 'Boz', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47072, 'Hakkulobod', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47073, 'Hocaobod', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47074, 'Honobod', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47075, 'Ilyichevsk', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47076, 'Karabagis', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47077, 'Kurgontepa', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47078, 'Marhomat', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47079, 'Pahtaobod', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47080, 'Paytug', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47081, 'Sahrihan', 3999, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47082, 'Buhoro', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47083, 'Cangeldi', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47084, 'Galaosiye', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47085, 'Gazli', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47086, 'Gijduvon', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47087, 'Kizilravbe', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47088, 'Kogon', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47089, 'Korakul', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47090, 'Korovulbazar', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47091, 'Kukca', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47092, 'Olot', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47093, 'Oyokkuduk', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47094, 'Romitan', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47095, 'Safirkon', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47096, 'Vobkent', 4000, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47097, 'Cizah', 4002, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47098, 'Dustlik', 4002, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47099, 'Gagarin', 4002, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47100, 'Gallaorol', 4002, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47101, 'Marcanbulok', 4002, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47102, 'Pahtakor', 4002, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47103, 'Ulyanovo', 4002, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47104, 'Zomin', 4002, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47105, 'Altyarik', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47106, 'Avval', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47107, 'Besarik', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47108, 'Fargona', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47109, 'Hamza', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47110, 'Kirgili', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47111, 'Kukon', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47112, 'Kuva', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47113, 'Kuvasoy', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47114, 'Margilon', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47115, 'Rapkan', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47116, 'Riston', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47117, 'Toslok', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47118, 'Yaypan', 4003, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47119, 'Drujba', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47120, 'Gurlan', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47121, 'Hazorasp', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47122, 'Heva', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47123, 'Honko', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47124, 'Kuskupir', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47125, 'Mesekli', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47126, 'Sovot', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47127, 'Turpokkala', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47128, 'Urgenc', 4004, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47129, 'Beskent', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47130, 'Ceynau', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47131, 'Cirakci', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47132, 'Dehkanobod', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47133, 'Dinau', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47134, 'Guzor', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47135, 'Kallig', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47136, 'Kamasi', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47137, 'Karabag', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47138, 'Karsi', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47139, 'Kasbi', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47140, 'Kitob', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47141, 'Koson', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47142, 'Madaniyat', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47143, 'Maydayap', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47144, 'Maymanak', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47145, 'Muborak', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47146, 'Oktyabrskiy', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47147, 'Sahrisabz', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47148, 'Talimarcon', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47149, 'Urtacim', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47150, 'Yakkabog', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47151, 'Yaninison', 4005, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47152, 'Beruni', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47153, 'Buston', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47154, 'Cimboy', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47155, 'Halkobod', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47156, 'Hucayli', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47157, 'Karauzyak', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47158, 'Kegayli', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47159, 'Kizketken', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47160, 'Kozokdaryo', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47161, 'Kungirot', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47162, 'Mangit', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47163, 'Muynok', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47164, 'Nukus', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47165, 'Tahiatos', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47166, 'Tahtakupir', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47167, 'Turtkul', 4006, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47168, 'Aytim', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47169, 'Besbulok', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47170, 'Cartak', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47171, 'Cingeldi', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47172, 'Cust', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47173, 'Gozgon', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47174, 'Iskavat', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47175, 'Kalkuduk', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47176, 'Konimeh', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47177, 'Kosonsoy', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47178, 'Minbulok', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47179, 'Namangan', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47180, 'Nurota', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47181, 'Pop', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47182, 'Tomdibulok', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47183, 'Tosbulok', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47184, 'Turakurgon', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47185, 'Uckurgon', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47186, 'Unhoyat', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47187, 'Uyci', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47188, 'Uzunkuduk', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47189, 'Yanikurgon', 4007, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47190, 'Karmana', 4008, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47191, 'Kiziltepa', 4008, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47192, 'Navoi', 4008, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47193, 'Uckuduk', 4008, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47194, 'Zarafson', 4008, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47195, 'Bulungur', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47196, 'Camboy', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47197, 'Carhin', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47198, 'Celak', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47199, 'Cuma', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47200, 'Dahbed', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47201, 'Istihon', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47202, 'Kattakurgon', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47203, 'Kusrobod', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47204, 'Nurobod', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47205, 'Oktos', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47206, 'Paysanba', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47207, 'Samarkand', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47208, 'Superfosfatniy', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47209, 'Urgut', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47210, 'Yanirobod', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47211, 'Ziadin', 4009, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47212, 'Baht', 4010, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47213, 'Guliston', 4010, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47214, 'Hovos', 4010, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47215, 'Sirdare', 4010, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47216, 'Sirin', 4010, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47217, 'Yaniyer', 4010, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47218, 'Akkurgon', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47219, 'Boysun', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47220, 'Carkurgon', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47221, 'Denau', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47222, 'Kumkurgon', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47223, 'Paskurd', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47224, 'Sargun', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47225, 'Sariasiya', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47226, 'Serobod', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47227, 'Surci', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47228, 'Termiz', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47229, 'Zan', 4011, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47230, 'Almazar', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47231, 'Angren', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47232, 'Bekobod', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47233, 'Bektemir', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47234, 'Buka', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47235, 'Cinoz', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47236, 'Circik', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47237, 'Gazalkent', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47238, 'Iskandar', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47239, 'Keles', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47240, 'Kibray', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47241, 'Krasnogorskiy', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47242, 'Kuyluk', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47243, 'Ohangaron', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47244, 'Olmalik', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47245, 'Parkent', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47246, 'Pskent', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47247, 'Salar', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47248, 'Soldatski', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47249, 'Tashkent', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47250, 'Toskent', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47251, 'Tuytepa', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47252, 'Urtaaul', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47253, 'Yaniobod', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47254, 'Yaniyul', 4012, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47255, 'Lakatoro', 4013, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47256, 'Norsup', 4013, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47257, 'Longana', 4014, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47258, 'Luganville', 4015, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47259, 'Port Olry', 4015, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47260, 'Vila', 4016, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47261, 'Isangel', 4017, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47262, 'Sola', 4018, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47263, 'Puerto Ayacucho', 4020, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47264, 'Anaco', 4021, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47265, 'Barcelona', 4021, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47266, 'Cantaura', 4021, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47267, 'El Tigre', 4021, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47268, 'Puerto la Cruz', 4021, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47269, 'San Jose de Guanipa', 4021, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47270, 'Guasdualito', 4022, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47271, 'San Fernando', 4022, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47272, 'Cagua', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47273, 'El Limon', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47274, 'La Victoria', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47275, 'Las Teyerias', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47276, 'Maracay', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47277, 'Palo Negro', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47278, 'San Mateo', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47279, 'Turmero', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47280, 'Villa de Cura', 4023, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47281, 'Barinas', 4024, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47282, 'Barinitas', 4024, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47283, 'Ciudad Bolivar', 4025, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47284, 'Ciudad Guayana', 4025, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47285, 'Upata', 4025, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47286, 'Goaigoaza', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47287, 'Guacara', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47288, 'Guigue', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(47289, 'Mariara', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47290, 'Moron', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47291, 'Puerto Cabello', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47292, 'San Joaquin', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47293, 'Tacarigua', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47294, 'Valencia', 4026, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47295, 'San Carlos', 4027, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47296, 'Tinaquillo', 4027, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47297, 'Coro', 4030, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47298, 'Punta Cardon', 4030, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47299, 'Punto Fijo', 4030, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47300, 'Altagracia de Orituco', 4031, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47301, 'Calabozo', 4031, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47302, 'San Juan de los Morros', 4031, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47303, 'Valle de la Pascua', 4031, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47304, 'Zaraza', 4031, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47305, 'Barquisimeto', 4032, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47306, 'Cabudare', 4032, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47307, 'Carora', 4032, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47308, 'El Tocuyo', 4032, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47309, 'Los Rastrojos', 4032, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47310, 'Quibor', 4032, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47311, 'Ejido', 4033, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47312, 'El Vigia', 4033, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47313, 'Merida', 4033, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47314, 'Baruta', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47315, 'Carrizal', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47316, 'Catia La Mar', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47317, 'Caucaguita', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47318, 'Chacao', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47319, 'Charallave', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47320, 'Cua', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47321, 'El Cafetal', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47322, 'El Hatillo', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47323, 'Filas de Mariche', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47324, 'Guarenas', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47325, 'Guatire', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47326, 'La Dolorita', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47327, 'Los Dos Caminos', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47328, 'Los Teques', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47329, 'Ocumare del Tuy', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47330, 'Petare', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47331, 'San Antonio de los Altos', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47332, 'Santa Teresa', 4034, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47333, 'Maturin', 4035, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47334, 'Acarigua', 4037, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47335, 'Araure', 4037, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47336, 'Guanare', 4037, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47337, 'Villa Bruzual', 4037, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47338, 'Carupano', 4038, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47339, 'Cumana', 4038, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47340, 'La Fria', 4039, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47341, 'Rubio', 4039, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47342, 'San Antonio del Tachira', 4039, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47343, 'San Cristobal', 4039, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47344, 'San Juan de Colon', 4039, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47345, 'Tariba', 4039, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47346, 'Trujillo', 4040, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47347, 'Valera', 4040, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47348, 'Caraballeda', 4041, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47349, 'La Guaira', 4041, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47350, 'Maiquetia', 4041, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47351, 'Chivacoa', 4042, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47352, 'Nirgua', 4042, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47353, 'San Felipe', 4042, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47354, 'Yaritagua', 4042, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47355, 'Bachaquero', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47356, 'Cabimas', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47357, 'Ciudad Ojeda', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47358, 'Lagunillas', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47359, 'Machiques', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47360, 'Maracaibo', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47361, 'San Carlos del Zulia', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47362, 'Santa Rita', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47363, 'Villa del Rosario', 4043, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47364, 'Ha noi', 4053, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47365, 'Hoang Mai', 4053, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47366, 'Lang Ha', 4053, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47367, 'Settlement', 4064, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47368, 'East End-Long Look', 4066, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47369, 'Road Town', 4066, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47370, 'West End', 4066, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47371, 'Kolia', 4070, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47372, 'Mala\'e', 4070, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47373, 'Ono', 4070, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47374, 'Poi', 4070, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47375, 'Tamana', 4070, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47376, 'Taoa', 4070, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47377, 'Tuatafa', 4070, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47378, 'Vele', 4070, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47379, 'Fiua', 4071, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47380, 'Leava', 4071, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47381, 'Nuku', 4071, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47382, 'Tavai', 4071, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47383, 'Toloke', 4071, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47384, 'Vaisei', 4071, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47385, 'Ahoa', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47386, 'Aka Aka', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47387, 'Alele', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47388, 'Falaleu', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47389, 'Gahi', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47390, 'Haafuasia', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47391, 'Haatofo', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47392, 'Halalo', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47393, 'Kolopopo', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47394, 'Lavegahau', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47395, 'Liku', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47396, 'Mala\'e', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47397, 'Malaefoou', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47398, 'Mata\'Utu', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47399, 'Teesi', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47400, 'Tepa', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47401, 'Utuofa', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47402, 'Vailala', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47403, 'Vaimalau', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47404, 'Vaitupu', 4072, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47405, 'ad-Dakhlah', 4074, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47406, 'al-\'Ayun', 4075, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47407, 'as-Samarah', 4076, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47408, '\'Adan', 4077, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47409, 'Aden', 4077, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47410, 'Ahwar', 4078, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47411, 'Ja\'ar', 4078, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47412, 'Zinjibar', 4078, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47413, 'Dhamar', 4079, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47414, 'Shaqra\'', 4080, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47415, 'al-Mukalla', 4080, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47416, 'ash-Shahir', 4080, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47417, 'Hajjah', 4081, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47418, 'Hodaidah', 4082, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47419, 'Dhi Sufal', 4083, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47420, 'Ibb', 4083, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47421, 'Jiblah', 4083, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47422, 'Qa\'tabah', 4083, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47423, 'Yarim', 4083, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47424, 'Tuban', 4084, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47425, 'Ma\'rib', 4085, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47426, 'Sa\'dah', 4087, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47427, '\'Amran', 4088, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47428, 'Sahar', 4088, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47429, 'Sanaa', 4088, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47430, 'Sayyan', 4088, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47431, '\'Ataq', 4089, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47432, 'Habban', 4089, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47433, 'Taiz', 4089, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47434, 'Ta\'izz', 4090, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47435, 'al-Mukha', 4090, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47436, 'Raydah', 4091, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47437, 'al-Bayda', 4091, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47438, 'Bajil', 4092, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47439, 'Bayt-al-Faqih', 4092, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47440, 'Zabid', 4092, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47441, 'al-Hudaydah', 4092, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47442, 'al-Marawi\'ah', 4092, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47443, 'az-Zaydiyah', 4092, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47444, 'al-Hazm', 4093, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47445, 'al-Ghaydah', 4094, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47446, 'Mahwit', 4095, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47447, 'Nikshic', 4098, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47448, 'Pljevlja', 4098, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47449, 'Podgorica', 4098, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47450, 'Ulcinj', 4098, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47451, 'Gjakove', 4100, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47452, 'Novi Banovci', 4100, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47453, 'Senta', 4100, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47454, 'Serbia', 4100, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47455, 'Uzice', 4100, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47456, 'Ada', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47457, 'Alibunar', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47458, 'Apatin', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47459, 'Bach', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47460, 'Bachka Palanka', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47461, 'Bachka Petrovac', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47462, 'Bachka Topola', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47463, 'Bachki Jarak', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47464, 'Banacki Karlovac', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47465, 'Bechej', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47466, 'Bela Crkva', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47467, 'Beochin', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47468, 'Choka', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47469, 'Churug', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47470, 'Crvenka', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47471, 'Futog', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47472, 'Indhija', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47473, 'Irig', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47474, 'Kac', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47475, 'Kanjizha', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47476, 'Kikinda', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47477, 'Kovachica', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47478, 'Kovin', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47479, 'Kula', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47480, 'Mol', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47481, 'Nova Pazova', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47482, 'Novi Bechej', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47483, 'Novi Knezhevac', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47484, 'Novi Sad', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47485, 'Odzhaci', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47486, 'Pacarak', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47487, 'Palic', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47488, 'Panchevo', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47489, 'Petrovaradin', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47490, 'Ruma', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47491, 'Senta', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47492, 'Shid', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47493, 'Sivac', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47494, 'Sombor', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47495, 'Srbobran', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47496, 'Sremska Kamenica', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47497, 'Sremska Mitrovica', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47498, 'Sremski Karlovci', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47499, 'Stara Pazova', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47500, 'Subotica', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47501, 'Temerin', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47502, 'Veternik', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47503, 'Vrbas', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47504, 'Vrshac', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47505, 'Zhabalj', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47506, 'Zhitishte', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47507, 'Zrenjanin', 4101, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47508, 'Kabwe', 4102, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47509, 'Kapiri Mposhi', 4102, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47510, 'Mkushi', 4102, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47511, 'Mumbwa', 4102, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47512, 'Serenje', 4102, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47513, 'Chambishi', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47514, 'Chililabombwe', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47515, 'Chingola', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47516, 'Kalulushi', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47517, 'Kitwe', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47518, 'Luanshya', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47519, 'Mpongwe', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47520, 'Mufulira', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47521, 'Ndola', 4103, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47522, 'Chipata', 4104, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47523, 'Katete', 4104, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47524, 'Lundazi', 4104, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47525, 'Petauke', 4104, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47526, 'Mansa', 4105, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47527, 'Mwansabombwe', 4105, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47528, 'Nchelenge', 4105, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47529, 'Samfya', 4105, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47530, 'Chilanga', 4106, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47531, 'Kafue', 4106, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47532, 'Lusaka', 4106, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47533, 'Kalengwa', 4107, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47534, 'Kansanshi', 4107, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47535, 'Mwinilunga', 4107, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47536, 'Solwezi', 4107, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47537, 'Zambezi', 4107, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47538, 'Chinsali', 4108, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47539, 'Isoka', 4108, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47540, 'Kasama', 4108, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47541, 'Mbala', 4108, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47542, 'Mpika', 4108, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47543, 'Choma', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47544, 'Itezhi-Tezhi', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47545, 'Kalomo', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47546, 'Livingstone', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47547, 'Maamba', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47548, 'Mazabuka', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47549, 'Monze', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47550, 'Nakambala', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47551, 'Siavonga', 4109, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47552, 'Kalabo', 4110, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47553, 'Kaoma', 4110, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47554, 'Limulunga', 4110, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47555, 'Mongu', 4110, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47556, 'Senanga', 4110, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47557, 'Sesheke', 4110, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47558, 'Bulawayo', 4111, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47559, 'Chitungwiza', 4112, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47560, 'Harare', 4112, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47561, 'Chimanimani', 4113, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47562, 'Chipinge', 4113, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47563, 'Mutare', 4113, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47564, 'Nyanga', 4113, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47565, 'Rusape', 4113, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47566, 'Sakubva', 4113, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47567, 'Chiredzi', 4117, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47568, 'Gaths', 4117, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47569, 'Masvingo', 4117, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47570, 'Chivhu', 4120, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47571, 'Gweru', 4120, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47572, 'Kwekwe', 4120, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47573, 'Mvuma', 4120, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47574, 'Redcliffe', 4120, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47575, 'Shurugwi', 4120, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47576, 'Zvishavane', 4120, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47577, 'Manchester', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47578, 'Nashua', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47579, 'Concord', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47580, 'Derry', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47581, 'Dover', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47582, 'Rochester', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47583, 'Salem', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47584, 'Merrimack', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47585, 'Hudson', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47586, 'Londonderry', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47587, 'Keene', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47588, 'Bedford', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47589, 'Portsmouth', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47590, 'Goffstown', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47591, 'Laconia', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47592, 'Hampton', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47593, 'Milford', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47594, 'Durham', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47595, 'Exeter', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47596, 'Windham', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47597, 'Hooksett', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47598, 'Claremont', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47599, 'Lebanon', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47600, 'Pelham', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47601, 'Somersworth', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47602, 'Hanover', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47603, 'Amherst', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47604, 'Raymond', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47605, 'Conway', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47606, 'Berlin', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47607, 'Newmarket', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47608, 'Weare', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47609, 'Seabrook', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47610, 'Barrington', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47611, 'Hampstead', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47612, 'Franklin', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47613, 'Litchfield', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47614, 'Hollis', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47615, 'Plaistow', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47616, 'Bow', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47617, 'Belmont', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47618, 'Stratham', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47619, 'Swanzey', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47620, 'Gilford', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47621, 'Pembroke', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47622, 'Plymouth', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47623, 'Farmington', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47624, 'Atkinson', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47625, 'Newport', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47626, 'Epping', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47627, 'Peterborough', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47628, 'Wolfeboro', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47629, 'Meredith', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47630, 'Kingston', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47631, 'Rindge', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47632, 'Hillsborough', 3952, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47633, 'Newark', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47634, 'Jersey City', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47635, 'Paterson', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47636, 'Elizabeth', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47637, 'Edison', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47638, 'Woodbridge', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47639, 'Lakewood', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47640, 'Toms River', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47641, 'Hamilton', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47642, 'Trenton', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47643, 'Clifton', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47644, 'Camden', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47645, 'Brick', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47646, 'Cherry Hill', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47647, 'Passaic', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47648, 'Middletown', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47649, 'Union City', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47650, 'Old Bridge', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47651, 'Gloucester Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47652, 'East Orange', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47653, 'Bayonne', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47654, 'Franklin', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47655, 'North Bergen', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47656, 'Vineland', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47657, 'Union', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47658, 'Piscataway', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47659, 'New Brunswick', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47660, 'Jackson', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47661, 'Wayne', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47662, 'Irvington', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47663, 'Parsippany-Troy Hills', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47664, 'Howell', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47665, 'Perth Amboy', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47666, 'Hoboken', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47667, 'Plainfield', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47668, 'West New York', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47669, 'Washington Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47670, 'East Brunswick', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47671, 'Bloomfield', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47672, 'West Orange', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47673, 'Evesham', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47674, 'Bridgewater', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47675, 'South Brunswick', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47676, 'Egg Harbor', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47677, 'Manchester', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47678, 'Hackensack', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47679, 'Sayreville', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47680, 'Mount Laurel', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47681, 'Berkeley', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47682, 'North Brunswick', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47683, 'Kearny', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47684, 'Linden', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47685, 'Marlboro', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47686, 'Teaneck', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47687, 'Atlantic City', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47688, 'Winslow', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47689, 'Monroe', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47690, 'Manalapan', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47691, 'Hillsborough', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47692, 'Montclair', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47693, 'Galloway', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47694, 'Freehold Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47695, 'Monroe Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47696, 'Belleville', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47697, 'Pennsauken', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47698, 'Ewing', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47699, 'Fort Lee', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47700, 'Lawrence', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47701, 'Fair Lawn', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47702, 'Willingboro', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47703, 'Long Branch', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47704, 'Deptford', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47705, 'Garfield', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47706, 'Westfield', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47707, 'City of Orange', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47708, 'Livingston', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47709, 'Voorhees', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47710, 'Princeton', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47711, 'Millville', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47712, 'Nutley', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47713, 'Mount Olive', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47714, 'Neptune', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47715, 'Pemberton Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47716, 'Lacey', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47717, 'Rahway', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47718, 'Ocean Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47719, 'East Windsor', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47720, 'West Windsor', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47721, 'Englewood', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47722, 'Bergenfield', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47723, 'Bernards Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47724, 'Stafford Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47725, 'Hamilton Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47726, 'Paramus', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47727, 'Wall', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47728, 'Mahwah', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47729, 'West Milford', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47730, 'Randolph', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47731, 'Bridgeton', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47732, 'Ridgewood', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47733, 'Rockaway Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47734, 'Lodi', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47735, 'Vernon', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47736, 'Maplewood', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47737, 'Cliffside Park', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47738, 'Scotch Plains', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47739, 'South Plainfield', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47740, 'Roxbury', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47741, 'Medford', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47742, 'Plainsboro', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47743, 'Lower Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47744, 'Carteret', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47745, 'Cranford', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47746, 'Burlington Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47747, 'Morris Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47748, 'Montgomery', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47749, 'Raritan Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47750, 'North Plainfield', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47751, 'West Deptford', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47752, 'Montville', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47753, 'Summit', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47754, 'Hillside', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47755, 'Jefferson', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47756, 'Roselle', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47757, 'Barnegat', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47758, 'Moorestown', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47759, 'Lyndhurst', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47760, 'Hazlet', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47761, 'Pleasantville', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47762, 'Millburn', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47763, 'Little Egg Harbor', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47764, 'Sparta', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47765, 'Palisades Park', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47766, 'Elmwood Park', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47767, 'Maple Shade', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47768, 'Middle Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47769, 'Hawthorne', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47770, 'Glassboro', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47771, 'Washington Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47772, 'Morristown', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47773, 'Point Pleasant', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47774, 'Aberdeen', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47775, 'Dover', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47776, 'Rutherford', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47777, 'Tinton Falls', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47778, 'Lindenwold', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47779, 'Dumont', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47780, 'Hopewell Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47781, 'Delran', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47782, 'Franklin Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47783, 'Holmdel', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47784, 'Wyckoff', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47785, 'Denville', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47786, 'New Milford', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47787, 'Secaucus', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47788, 'South Orange Village', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47789, 'Readington', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47790, 'Asbury Park', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47791, 'South River', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47792, 'Madison', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47793, 'Springfield', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47794, 'Cinnaminson', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47795, 'Pequannock', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47796, 'North Arlington', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47797, 'Warren', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47798, 'Mantua', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47799, 'Hopatcong', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47800, 'Phillipsburg', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47801, 'Hammonton', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47802, 'Clark', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47803, 'Haddon Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47804, 'Tenafly', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47805, 'Ramsey', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47806, 'Branchburg', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47807, 'Little Falls', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47808, 'Highland Park', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47809, 'Collingswood', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47810, 'Fairview', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47811, 'Hanover', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47812, 'Saddle Brook', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47813, 'Robbinsville', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47814, 'Middlesex', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47815, 'Harrison', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47816, 'Metuchen', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47817, 'Clinton Township', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47818, 'Pennsville', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47819, 'Verona', 3953, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47820, 'Albuquerque', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47821, 'Las Cruces', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47822, 'Rio Rancho', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47823, 'Santa Fe', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47824, 'Roswell', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47825, 'Farmington', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47826, 'South Valley', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47827, 'Clovis', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47828, 'Hobbs', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47829, 'Alamogordo', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47830, 'Carlsbad', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47831, 'Gallup', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47832, 'Deming', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47833, 'Los Lunas', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47834, 'Chaparral', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47835, 'Sunland Park', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47836, 'Las Vegas', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47837, 'Portales', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47838, 'Los Alamos', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47839, 'North Valley', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47840, 'Artesia', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47841, 'Lovington', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47842, 'Silver City', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47843, 'Espanola', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47844, 'Anthony', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47845, 'Grants', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47846, 'Socorro', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47847, 'Corrales', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47848, 'Bernalillo', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47849, 'Shiprock', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47850, 'Bloomfield', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47851, 'Ruidoso', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47852, 'Kirtland', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47853, 'Belen', 3955, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47854, 'Airmont', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47855, 'Albany', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47856, 'Alden', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47857, 'Amherst', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47858, 'Amityville', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47859, 'Amsterdam', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47860, 'Arcadia', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47861, 'Auburn', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47862, 'Aurora', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47863, 'Babylon', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL); -INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(47864, 'Baldwinsville', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47865, 'Ballston', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47866, 'Batavia', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47867, 'Bath', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47868, 'Beacon', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47869, 'Bedford', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47870, 'Beekman', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47871, 'Bethlehem', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47872, 'Binghamton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47873, 'Blooming Grove', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47874, 'Briarcliff Manor', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47875, 'Brighton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47876, 'Brockport', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47877, 'Brookhaven', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47878, 'Brunswick', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47879, 'Buffalo', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47880, 'Camillus', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47881, 'Canandaigua', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47882, 'Canton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47883, 'Carmel', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47884, 'Catskill', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47885, 'Cheektowaga', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47886, 'Chenango', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47887, 'Chester', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47888, 'Chestnut Ridge', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47889, 'Chili', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47890, 'Cicero', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47891, 'Clarence', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47892, 'Clarkstown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47893, 'Clay', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47894, 'Clifton Park', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47895, 'Cohoes', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47896, 'Colonie', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47897, 'Corning', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47898, 'Cornwall', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47899, 'Cortland', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47900, 'Cortlandt', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47901, 'Crawford', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47902, 'Croton-on-Hudson', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47903, 'Depew', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47904, 'DeWitt (De Witt)', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47905, 'Dobbs Ferry', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47906, 'Dryden', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47907, 'Dunkirk', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47908, 'East Fishkill', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47909, 'East Greenbush', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47910, 'East Hampton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47911, 'East Hills', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47912, 'East Rockaway', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47913, 'Eastchester', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47914, 'Elma', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47915, 'Elmira', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47916, 'Endicott', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47917, 'Esopus', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47918, 'Evans', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47919, 'Fallsburg', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47920, 'Farmingdale', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47921, 'Farmington', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47922, 'Fishkill', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47923, 'Floral Park', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47924, 'Fredonia', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47925, 'Freeport', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47926, 'Fulton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47927, 'Garden City', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47928, 'Gates', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47929, 'Geddes', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47930, 'Geneseo', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47931, 'Geneva', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47932, 'German Flatts', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47933, 'Glen Cove', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47934, 'Glens Falls', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47935, 'Glenville', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47936, 'Gloversville', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47937, 'Goshen', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47938, 'Grand Island', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47939, 'Great Neck', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47940, 'Greece', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47941, 'Greenburgh', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47942, 'Guilderland', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47943, 'Halfmoon', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47944, 'Hamburg', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47945, 'Hamlin', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47946, 'Harrison', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47947, 'Hastings', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47948, 'Hastings-on-Hudson', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47949, 'Haverstraw', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47950, 'Hempstead', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47951, 'Henrietta', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47952, 'Herkimer', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47953, 'Highlands', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47954, 'Hornell', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47955, 'Horseheads', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47956, 'Hudson', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47957, 'Hudson Falls', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47958, 'Huntington', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47959, 'Hyde Park', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47960, 'Ilion', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47961, 'Irondequoit', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47962, 'Islip', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47963, 'Ithaca', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47964, 'Jamestown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47965, 'Johnson City', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47966, 'Johnstown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47967, 'Kenmore', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47968, 'Kent', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47969, 'Kingsbury', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47970, 'Kingston', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47971, 'Kirkland', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47972, 'Kiryas Joel', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47973, 'Lackawanna', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47974, 'LaGrange (La Grange)', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47975, 'Lake Grove', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47976, 'Lancaster', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47977, 'Lansing', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47978, 'Le Ray', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47979, 'Lenox', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47980, 'Lewisboro', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47981, 'Lewiston', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47982, 'Liberty', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47983, 'Lindenhurst', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47984, 'Little Falls', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47985, 'Lloyd', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47986, 'Lockport', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47987, 'Long Beach', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47988, 'Lynbrook', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47989, 'Lysander', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47990, 'Macedon', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47991, 'Malone', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47992, 'Malta', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47993, 'Malverne', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47994, 'Mamakating', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47995, 'Mamaroneck', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47996, 'Manchester', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47997, 'Manlius', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47998, 'Massapequa Park', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(47999, 'Massena', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48000, 'Mastic Beach', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48001, 'Mechanicville', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48002, 'Mendon', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48003, 'Middletown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48004, 'Milton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48005, 'Mineola', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48006, 'Monroe', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48007, 'Montgomery', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48008, 'Moreau', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48009, 'Mount Kisco', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48010, 'Mount Pleasant', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48011, 'Mount Vernon', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48012, 'New Castle', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48013, 'New Hartford', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48014, 'New Hyde Park', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48015, 'New Paltz', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48016, 'New Rochelle', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48017, 'New Square', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48018, 'New Windsor', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48019, 'New York', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48020, 'Newark', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48021, 'Newburgh', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48022, 'Newfane', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48023, 'Niagara Falls', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48024, 'Niskayuna', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48025, 'North Castle', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48026, 'North Greenbush', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48027, 'North Hempstead', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48028, 'North Syracuse', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48029, 'North Tonawanda', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48030, 'Northport', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48031, 'Norwich', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48032, 'Nyack', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48033, 'Ogden', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48034, 'Ogdensburg', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48035, 'Olean', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48036, 'Oneida', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48037, 'Oneonta', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48038, 'Onondaga', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48039, 'Ontario', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48040, 'Orangetown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48041, 'Orchard Park', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48042, 'Ossining', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48043, 'Oswego', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48044, 'Owego', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48045, 'Oyster Bay', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48046, 'Parma', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48047, 'Patchogue', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48048, 'Patterson', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48049, 'Peekskill', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48050, 'Pelham', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48051, 'Penfield', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48052, 'Perinton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48053, 'Philipstown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48054, 'Pittsford', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48055, 'Plattekill', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48056, 'Plattsburgh', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48057, 'Pleasant Valley', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48058, 'Pleasantville', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48059, 'Pomfret', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48060, 'Port Chester', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48061, 'Port Jefferson', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48062, 'Port Jervis', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48063, 'Potsdam', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48064, 'Poughkeepsie', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48065, 'Putnam Valley', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48066, 'Queensbury', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48067, 'Ramapo', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48068, 'Red Hook', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48069, 'Rensselaer', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48070, 'Riverhead', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48071, 'Rochester', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48072, 'Rockville Centre', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48073, 'Rome', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48074, 'Rotterdam', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48075, 'Rye', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48076, 'Rye Brook', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48077, 'Salamanca', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48078, 'Salina', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48079, 'Saratoga Springs', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48080, 'Saugerties', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48081, 'Scarsdale', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48082, 'Schenectady', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48083, 'Schodack', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48084, 'Scotia', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48085, 'Seneca Falls', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48086, 'Shawangunk', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48087, 'Sherrill', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48088, 'Sleepy Hollow', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48089, 'Smithtown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48090, 'Somers', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48091, 'Southampton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48092, 'Southeast', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48093, 'Southold', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48094, 'Southport', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48095, 'Spring Valley', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48096, 'Stony Point', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48097, 'Suffern', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48098, 'Sullivan', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48099, 'Sweden', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48100, 'Syracuse', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48101, 'Tarrytown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48102, 'Thompson', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48103, 'Tonawanda', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48104, 'Troy', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48105, 'Ulster', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48106, 'Union', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48107, 'Utica', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48108, 'Valley Stream', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48109, 'Van Buren', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48110, 'Vestal', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48111, 'Victor', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48112, 'Walden', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48113, 'Wallkill', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48114, 'Walworth', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48115, 'Wappinger', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48116, 'Warwick', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48117, 'Watertown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48118, 'Watervliet', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48119, 'Wawarsing', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48120, 'Webster', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48121, 'West Haverstraw', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48122, 'West Seneca', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48123, 'Westbury', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48124, 'Wheatfield', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48125, 'White Plains', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48126, 'Whitestown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48127, 'Williston Park', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48128, 'Wilton', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48129, 'Woodbury', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48130, 'Yonkers', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48131, 'Yorktown', 3956, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48132, 'Charlotte', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48133, 'Raleigh', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48134, 'Greensboro', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48135, 'Durham', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48136, 'Winston-Salem', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48137, 'Fayetteville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48138, 'Cary', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48139, 'Wilmington', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48140, 'High Point', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48141, 'Greenville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48142, 'Asheville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48143, 'Concord', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48144, 'Gastonia', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48145, 'Jacksonville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48146, 'Chapel Hill', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48147, 'Rocky Mount', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48148, 'Burlington', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48149, 'Huntersville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48150, 'Wilson', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48151, 'Kannapolis', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48152, 'Apex', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48153, 'Hickory', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48154, 'Wake Forest', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48155, 'Indian Trail', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48156, 'Goldsboro', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48157, 'Mooresville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48158, 'Monroe', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48159, 'Salisbury', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48160, 'New Bern', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48161, 'Holly Springs', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48162, 'Matthews', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48163, 'Sanford', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48164, 'Garner', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48165, 'Cornelius', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48166, 'Thomasville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48167, 'Asheboro', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48168, 'Statesville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48169, 'Mint Hill', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48170, 'Kernersville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48171, 'Morrisville', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48172, 'Fuquay-Varina', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48173, 'Lumberton', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48174, 'Kinston', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48175, 'Carrboro', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48176, 'Havelock', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48177, 'Shelby', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48178, 'Clemmons', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48179, 'Lexington', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48180, 'Clayton', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48181, 'Boone', 3957, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48182, 'Fargo', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48183, 'Bismarck', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48184, 'Grand Forks', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48185, 'Minot', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48186, 'West Fargo', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48187, 'Williston', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48188, 'Dickinson', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48189, 'Mandan', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48190, 'Jamestown', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48191, 'Wahpeton', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48192, 'Devils Lake', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48193, 'Valley City', 3958, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48194, 'Providence', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48195, 'Warwick', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48196, 'Cranston', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48197, 'Pawtucket', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48198, 'East Providence', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48199, 'Woonsocket', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48200, 'Coventry', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48201, 'Cumberland', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48202, 'North Providence', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48203, 'South Kingstown', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48204, 'West Warwick', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48205, 'Johnston', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48206, 'North Kingstown', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48207, 'Newport', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48208, 'Bristol', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48209, 'Westerly', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48210, 'Smithfield', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48211, 'Lincoln', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48212, 'Central Falls', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48213, 'Portsmouth', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48214, 'Barrington', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48215, 'Middletown', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48216, 'Burrillville', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48217, 'Narragansett', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48218, 'Tiverton', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48219, 'East Greenwich', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48220, 'North Smithfield', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48221, 'Warren', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48222, 'Scituate', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48223, 'Glocester', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48224, 'Hopkinton', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48225, 'Charlestown', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48226, 'Richmond', 3965, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48227, 'Columbia', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48228, 'Charleston', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48229, 'North Charleston', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48230, 'Mount Pleasant', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48231, 'Rock Hill', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48232, 'Greenville', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48233, 'Summerville', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48234, 'Sumter', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48235, 'Hilton Head Island', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48236, 'Spartanburg', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48237, 'Florence', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48238, 'Goose Creek', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48239, 'Aiken', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48240, 'Myrtle Beach', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48241, 'Anderson', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48242, 'Greer', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48243, 'Mauldin', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48244, 'Greenwood', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48245, 'North Augusta', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48246, 'Easley', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48247, 'Simpsonville', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48248, 'Hanahan', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48249, 'Lexington', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48250, 'Conway', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48251, 'West Columbia', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48252, 'North Myrtle Beach', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48253, 'Clemson', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48254, 'Orangeburg', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48255, 'Cayce', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48256, 'Bluffton', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48257, 'Beaufort', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48258, 'Gaffney', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48259, 'Irmo', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48260, 'Fort Mill', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48261, 'Port Royal', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48262, 'Forest Acres', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48263, 'Newberry', 3966, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48264, 'Sioux Falls', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48265, 'Rapid City', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48266, 'Aberdeen', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48267, 'Brookings', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48268, 'Watertown', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48269, 'Mitchell', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48270, 'Yankton', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48271, 'Pierre', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48272, 'Huron', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48273, 'Spearfish', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48274, 'Vermillion', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48275, 'Brandon', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48276, 'Box Elder', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48277, 'Madison', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48278, 'Sturgis', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48279, 'Belle Fourche', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48280, 'Harrisburg', 3967, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48281, 'Charleston', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48282, 'Huntington', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48283, 'Morgantown', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48284, 'Parkersburg', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48285, 'Wheeling', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48286, 'Weirton', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48287, 'Fairmont', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48288, 'Martinsburg', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48289, 'Beckley', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48290, 'Clarksburg', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48291, 'South Charleston', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48292, 'St. Albans', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48293, 'Vienna', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48294, 'Bluefield', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48295, 'Moundsville', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48296, 'Bridgeport', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48297, 'Oak Hill', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48298, 'Dunbar', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48299, 'Elkins', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48300, 'Nitro', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48301, 'Hurricane', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48302, 'Princeton', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48303, 'Charles Town', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48304, 'Buckhannon', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48305, 'Keyser', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48306, 'New Martinsville', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48307, 'Grafton', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48308, 'Ranson', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48309, 'Point Pleasant', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48310, 'Westover', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48311, 'Weston', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48312, 'Lewisburg', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48313, 'Ravenswood', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48314, 'Summersville', 3976, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48315, 'Alcala', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48316, 'Andalucia', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48317, 'Ansermanuevo', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48318, 'Argelia', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48319, 'Bolivar', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48320, 'Buenaventura', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48321, 'Buga', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48322, 'Bugalagrande', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48323, 'Caicedonia', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48324, 'Cali', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48325, 'Calima - El Darien', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48326, 'Candelaria', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48327, 'Cartago', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48328, 'Dagua', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48329, 'El Aguila', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48330, 'El Cairo', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48331, 'El Cerrito', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48332, 'El Dovio', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48333, 'Florida', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48334, 'Ginebra', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48335, 'Guacari', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48336, 'Jamundi', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48337, 'La Cumbre', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48338, 'La Union', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48339, 'La Victoria', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48340, 'Obando', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48341, 'Palmira', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48342, 'Pradera', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48343, 'Restrepo', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48344, 'Riofrio', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48345, 'Roldanillo', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48346, 'San Pedro', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48347, 'Sevilla', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48348, 'Toro', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48349, 'Trujillo', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48350, 'Tulua', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48351, 'Ulloa', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48352, 'Versalles', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48353, 'Vijes', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48354, 'Yotoco', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48355, 'Yumbo', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL), -(48356, 'Zarzal', 805, 0.00, 0, '2021-04-06 01:13:52', '2021-04-06 01:13:52', NULL); - --- -------------------------------------------------------- - --- --- Table structure for table `city_translations` --- - -CREATE TABLE `city_translations` ( - `id` int(11) NOT NULL, - `city_id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(10) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `colors` --- - -CREATE TABLE `colors` ( - `id` int(11) NOT NULL, - `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, - `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `colors` --- - -INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES -(1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), -(26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), -(63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(76, 'Cyan', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), -(99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), -(129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), -(143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); - --- -------------------------------------------------------- - --- --- Table structure for table `combined_orders` --- - -CREATE TABLE `combined_orders` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `shipping_address` text COLLATE utf8_unicode_ci DEFAULT NULL, - `grand_total` double(20,2) NOT NULL DEFAULT 0.00, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `commission_histories` --- - -CREATE TABLE `commission_histories` ( - `id` int(11) NOT NULL, - `order_id` int(11) NOT NULL, - `order_detail_id` int(11) NOT NULL, - `seller_id` int(11) NOT NULL, - `admin_commission` double(25,2) NOT NULL, - `seller_earning` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `conversations` --- - -CREATE TABLE `conversations` ( - `id` int(11) NOT NULL, - `sender_id` int(11) NOT NULL, - `receiver_id` int(11) NOT NULL, - `title` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, - `sender_viewed` int(1) NOT NULL DEFAULT 1, - `receiver_viewed` int(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `countries` --- - -CREATE TABLE `countries` ( - `id` int(11) NOT NULL, - `code` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `zone_id` int(11) NOT NULL DEFAULT 0, - `status` int(1) NOT NULL DEFAULT 1, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NULL DEFAULT NULL, - `deleted_at` timestamp NULL DEFAULT NULL -) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `countries` --- - -INSERT INTO `countries` (`id`, `code`, `name`, `zone_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(1, 'AF', 'Afghanistan', 0, 0, '2021-04-06 01:06:30', '2021-10-11 00:34:13', NULL), -(2, 'AL', 'Albania', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(3, 'DZ', 'Algeria', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(4, 'AS', 'American Samoa', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(5, 'AD', 'Andorra', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(6, 'AO', 'Angola', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(7, 'AI', 'Anguilla', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(8, 'AQ', 'Antarctica', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(9, 'AG', 'Antigua And Barbuda', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(10, 'AR', 'Argentina', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(11, 'AM', 'Armenia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(12, 'AW', 'Aruba', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(13, 'AU', 'Australia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(14, 'AT', 'Austria', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(15, 'AZ', 'Azerbaijan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(16, 'BS', 'Bahamas The', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(17, 'BH', 'Bahrain', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(18, 'BD', 'Bangladesh', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(19, 'BB', 'Barbados', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(20, 'BY', 'Belarus', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(21, 'BE', 'Belgium', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(22, 'BZ', 'Belize', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(23, 'BJ', 'Benin', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(24, 'BM', 'Bermuda', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(25, 'BT', 'Bhutan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(26, 'BO', 'Bolivia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(27, 'BA', 'Bosnia and Herzegovina', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(28, 'BW', 'Botswana', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(29, 'BV', 'Bouvet Island', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(30, 'BR', 'Brazil', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(31, 'IO', 'British Indian Ocean Territory', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(32, 'BN', 'Brunei', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(33, 'BG', 'Bulgaria', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(34, 'BF', 'Burkina Faso', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(35, 'BI', 'Burundi', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(36, 'KH', 'Cambodia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(37, 'CM', 'Cameroon', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(38, 'CA', 'Canada', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(39, 'CV', 'Cape Verde', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(40, 'KY', 'Cayman Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(41, 'CF', 'Central African Republic', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(42, 'TD', 'Chad', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(43, 'CL', 'Chile', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(44, 'CN', 'China', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(45, 'CX', 'Christmas Island', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(46, 'CC', 'Cocos (Keeling) Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(47, 'CO', 'Colombia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(48, 'KM', 'Comoros', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(49, 'CG', 'Republic Of The Congo', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(50, 'CD', 'Democratic Republic Of The Congo', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(51, 'CK', 'Cook Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(52, 'CR', 'Costa Rica', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(53, 'CI', 'Cote D\'Ivoire (Ivory Coast)', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(54, 'HR', 'Croatia (Hrvatska)', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(55, 'CU', 'Cuba', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(56, 'CY', 'Cyprus', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(57, 'CZ', 'Czech Republic', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(58, 'DK', 'Denmark', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(59, 'DJ', 'Djibouti', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(60, 'DM', 'Dominica', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(61, 'DO', 'Dominican Republic', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(62, 'TP', 'East Timor', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(63, 'EC', 'Ecuador', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(64, 'EG', 'Egypt', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(65, 'SV', 'El Salvador', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(66, 'GQ', 'Equatorial Guinea', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(67, 'ER', 'Eritrea', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(68, 'EE', 'Estonia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(69, 'ET', 'Ethiopia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(70, 'XA', 'External Territories of Australia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(71, 'FK', 'Falkland Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(72, 'FO', 'Faroe Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(73, 'FJ', 'Fiji Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(74, 'FI', 'Finland', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(75, 'FR', 'France', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(76, 'GF', 'French Guiana', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(77, 'PF', 'French Polynesia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(78, 'TF', 'French Southern Territories', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(79, 'GA', 'Gabon', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(80, 'GM', 'Gambia The', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(81, 'GE', 'Georgia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(82, 'DE', 'Germany', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(83, 'GH', 'Ghana', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(84, 'GI', 'Gibraltar', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(85, 'GR', 'Greece', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(86, 'GL', 'Greenland', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(87, 'GD', 'Grenada', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(88, 'GP', 'Guadeloupe', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(89, 'GU', 'Guam', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(90, 'GT', 'Guatemala', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(91, 'XU', 'Guernsey and Alderney', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(92, 'GN', 'Guinea', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(93, 'GW', 'Guinea-Bissau', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(94, 'GY', 'Guyana', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(95, 'HT', 'Haiti', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(96, 'HM', 'Heard and McDonald Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(97, 'HN', 'Honduras', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(98, 'HK', 'Hong Kong S.A.R.', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(99, 'HU', 'Hungary', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(100, 'IS', 'Iceland', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(101, 'IN', 'India', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(102, 'ID', 'Indonesia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(103, 'IR', 'Iran', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(104, 'IQ', 'Iraq', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(105, 'IE', 'Ireland', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(106, 'IL', 'Israel', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(107, 'IT', 'Italy', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(108, 'JM', 'Jamaica', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(109, 'JP', 'Japan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(110, 'XJ', 'Jersey', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(111, 'JO', 'Jordan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(112, 'KZ', 'Kazakhstan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(113, 'KE', 'Kenya', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(114, 'KI', 'Kiribati', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(115, 'KP', 'Korea North', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(116, 'KR', 'Korea South', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(117, 'KW', 'Kuwait', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(118, 'KG', 'Kyrgyzstan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(119, 'LA', 'Laos', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(120, 'LV', 'Latvia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(121, 'LB', 'Lebanon', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(122, 'LS', 'Lesotho', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(123, 'LR', 'Liberia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(124, 'LY', 'Libya', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(125, 'LI', 'Liechtenstein', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(126, 'LT', 'Lithuania', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(127, 'LU', 'Luxembourg', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(128, 'MO', 'Macau S.A.R.', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(129, 'MK', 'Macedonia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(130, 'MG', 'Madagascar', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(131, 'MW', 'Malawi', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(132, 'MY', 'Malaysia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(133, 'MV', 'Maldives', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(134, 'ML', 'Mali', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(135, 'MT', 'Malta', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(136, 'XM', 'Man (Isle of)', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(137, 'MH', 'Marshall Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(138, 'MQ', 'Martinique', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(139, 'MR', 'Mauritania', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(140, 'MU', 'Mauritius', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(141, 'YT', 'Mayotte', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(142, 'MX', 'Mexico', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(143, 'FM', 'Micronesia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(144, 'MD', 'Moldova', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(145, 'MC', 'Monaco', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(146, 'MN', 'Mongolia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(147, 'MS', 'Montserrat', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(148, 'MA', 'Morocco', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(149, 'MZ', 'Mozambique', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(150, 'MM', 'Myanmar', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(151, 'NA', 'Namibia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(152, 'NR', 'Nauru', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(153, 'NP', 'Nepal', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(154, 'AN', 'Netherlands Antilles', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(155, 'NL', 'Netherlands The', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(156, 'NC', 'New Caledonia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(157, 'NZ', 'New Zealand', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(158, 'NI', 'Nicaragua', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(159, 'NE', 'Niger', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(160, 'NG', 'Nigeria', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(161, 'NU', 'Niue', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(162, 'NF', 'Norfolk Island', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(163, 'MP', 'Northern Mariana Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(164, 'NO', 'Norway', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(165, 'OM', 'Oman', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(166, 'PK', 'Pakistan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(167, 'PW', 'Palau', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(168, 'PS', 'Palestinian Territory Occupied', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(169, 'PA', 'Panama', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(170, 'PG', 'Papua new Guinea', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(171, 'PY', 'Paraguay', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(172, 'PE', 'Peru', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(173, 'PH', 'Philippines', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(174, 'PN', 'Pitcairn Island', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(175, 'PL', 'Poland', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(176, 'PT', 'Portugal', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(177, 'PR', 'Puerto Rico', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(178, 'QA', 'Qatar', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(179, 'RE', 'Reunion', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(180, 'RO', 'Romania', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(181, 'RU', 'Russia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(182, 'RW', 'Rwanda', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(183, 'SH', 'Saint Helena', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(184, 'KN', 'Saint Kitts And Nevis', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(185, 'LC', 'Saint Lucia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(186, 'PM', 'Saint Pierre and Miquelon', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(187, 'VC', 'Saint Vincent And The Grenadines', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(188, 'WS', 'Samoa', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(189, 'SM', 'San Marino', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(190, 'ST', 'Sao Tome and Principe', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(191, 'SA', 'Saudi Arabia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(192, 'SN', 'Senegal', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(193, 'RS', 'Serbia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(194, 'SC', 'Seychelles', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(195, 'SL', 'Sierra Leone', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(196, 'SG', 'Singapore', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(197, 'SK', 'Slovakia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(198, 'SI', 'Slovenia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(199, 'XG', 'Smaller Territories of the UK', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(200, 'SB', 'Solomon Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(201, 'SO', 'Somalia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(202, 'ZA', 'South Africa', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(203, 'GS', 'South Georgia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(204, 'SS', 'South Sudan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(205, 'ES', 'Spain', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(206, 'LK', 'Sri Lanka', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(207, 'SD', 'Sudan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(208, 'SR', 'Suriname', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(209, 'SJ', 'Svalbard And Jan Mayen Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(210, 'SZ', 'Swaziland', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(211, 'SE', 'Sweden', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(212, 'CH', 'Switzerland', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(213, 'SY', 'Syria', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(214, 'TW', 'Taiwan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(215, 'TJ', 'Tajikistan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(216, 'TZ', 'Tanzania', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(217, 'TH', 'Thailand', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(218, 'TG', 'Togo', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(219, 'TK', 'Tokelau', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(220, 'TO', 'Tonga', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(221, 'TT', 'Trinidad And Tobago', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(222, 'TN', 'Tunisia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(223, 'TR', 'Turkey', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(224, 'TM', 'Turkmenistan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(225, 'TC', 'Turks And Caicos Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(226, 'TV', 'Tuvalu', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(227, 'UG', 'Uganda', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(228, 'UA', 'Ukraine', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(229, 'AE', 'United Arab Emirates', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(230, 'GB', 'United Kingdom', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(231, 'US', 'United States', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(232, 'UM', 'United States Minor Outlying Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(233, 'UY', 'Uruguay', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(234, 'UZ', 'Uzbekistan', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(235, 'VU', 'Vanuatu', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(236, 'VA', 'Vatican City State (Holy See)', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(237, 'VE', 'Venezuela', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(238, 'VN', 'Vietnam', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(239, 'VG', 'Virgin Islands (British)', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(240, 'VI', 'Virgin Islands (US)', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(241, 'WF', 'Wallis And Futuna Islands', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(242, 'EH', 'Western Sahara', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(243, 'YE', 'Yemen', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(244, 'YU', 'Yugoslavia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(245, 'ZM', 'Zambia', 0, 0, '2021-04-06 01:06:30', NULL, NULL), -(246, 'ZW', 'Zimbabwe', 0, 0, '2021-04-06 01:06:30', NULL, NULL); - --- -------------------------------------------------------- - --- --- Table structure for table `coupons` --- - -CREATE TABLE `coupons` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `code` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `details` longtext COLLATE utf8_unicode_ci NOT NULL, - `discount` double(20,2) NOT NULL, - `discount_type` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `start_date` int(15) NOT NULL, - `end_date` int(15) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `coupon_usages` --- - -CREATE TABLE `coupon_usages` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `coupon_id` int(11) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `currencies` --- - -CREATE TABLE `currencies` ( - `id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `symbol` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `exchange_rate` double(10,5) NOT NULL, - `status` int(10) NOT NULL DEFAULT 0, - `code` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `currencies` --- - -INSERT INTO `currencies` (`id`, `name`, `symbol`, `exchange_rate`, `status`, `code`, `created_at`, `updated_at`) VALUES -(1, 'U.S. Dollar', '$', 1.00000, 1, 'USD', '2018-10-09 11:35:08', '2018-10-17 05:50:52'), -(2, 'Australian Dollar', '$', 1.28000, 1, 'AUD', '2018-10-09 11:35:08', '2019-02-04 05:51:55'), -(5, 'Brazilian Real', 'R$', 3.25000, 1, 'BRL', '2018-10-09 11:35:08', '2018-10-17 05:51:00'), -(6, 'Canadian Dollar', '$', 1.27000, 1, 'CAD', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(7, 'Czech Koruna', 'Kč', 20.65000, 1, 'CZK', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(8, 'Danish Krone', 'kr', 6.05000, 1, 'DKK', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(9, 'Euro', '€', 0.85000, 1, 'EUR', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(10, 'Hong Kong Dollar', '$', 7.83000, 1, 'HKD', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(11, 'Hungarian Forint', 'Ft', 255.24000, 1, 'HUF', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(12, 'Israeli New Sheqel', '₪', 3.48000, 1, 'ILS', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(13, 'Japanese Yen', '¥', 107.12000, 1, 'JPY', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(14, 'Malaysian Ringgit', 'RM', 3.91000, 1, 'MYR', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(15, 'Mexican Peso', '$', 18.72000, 1, 'MXN', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(16, 'Norwegian Krone', 'kr', 7.83000, 1, 'NOK', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(17, 'New Zealand Dollar', '$', 1.38000, 1, 'NZD', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(18, 'Philippine Peso', '₱', 52.26000, 1, 'PHP', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(19, 'Polish Zloty', 'zł', 3.39000, 1, 'PLN', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(20, 'Pound Sterling', '£', 0.72000, 1, 'GBP', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(21, 'Russian Ruble', 'руб', 55.93000, 1, 'RUB', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(22, 'Singapore Dollar', '$', 1.32000, 1, 'SGD', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(23, 'Swedish Krona', 'kr', 8.19000, 1, 'SEK', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(24, 'Swiss Franc', 'CHF', 0.94000, 1, 'CHF', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(26, 'Thai Baht', '฿', 31.39000, 1, 'THB', '2018-10-09 11:35:08', '2018-10-09 11:35:08'), -(27, 'Taka', '৳', 84.00000, 1, 'BDT', '2018-10-09 11:35:08', '2018-12-02 05:16:13'), -(28, 'Indian Rupee', 'Rs', 68.45000, 1, 'Rupee', '2019-07-07 10:33:46', '2019-07-07 10:33:46'); - --- -------------------------------------------------------- - --- --- Table structure for table `customer_packages` --- - -CREATE TABLE `customer_packages` ( - `id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `amount` double(20,2) DEFAULT NULL, - `product_upload` int(11) DEFAULT NULL, - `logo` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `customer_package_payments` --- - -CREATE TABLE `customer_package_payments` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `customer_package_id` int(11) NOT NULL, - `payment_method` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `payment_details` longtext COLLATE utf8_unicode_ci NOT NULL, - `approval` int(1) NOT NULL, - `offline_payment` int(1) NOT NULL COMMENT '1=offline payment\r\n2=online paymnet', - `reciept` varchar(150) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `customer_package_translations` --- - -CREATE TABLE `customer_package_translations` ( - `id` bigint(20) NOT NULL, - `customer_package_id` bigint(20) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `customer_products` --- - -CREATE TABLE `customer_products` ( - `id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `published` int(1) NOT NULL DEFAULT 0, - `status` int(1) NOT NULL DEFAULT 0, - `added_by` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, - `user_id` int(11) DEFAULT NULL, - `category_id` int(11) DEFAULT NULL, - `subcategory_id` int(11) DEFAULT NULL, - `subsubcategory_id` int(11) DEFAULT NULL, - `brand_id` int(11) DEFAULT NULL, - `photos` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `thumbnail_img` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL, - `conditon` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, - `location` text COLLATE utf8_unicode_ci DEFAULT NULL, - `video_provider` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `video_link` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `unit` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `tags` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `description` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL, - `unit_price` double(20,2) DEFAULT 0.00, - `meta_title` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_description` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_img` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL, - `pdf` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `slug` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `customer_product_translations` --- - -CREATE TABLE `customer_product_translations` ( - `id` bigint(20) NOT NULL, - `customer_product_id` bigint(20) NOT NULL, - `name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `unit` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `firebase_notifications` --- - -CREATE TABLE `firebase_notifications` ( - `id` int(11) NOT NULL, - `title` varchar(255) DEFAULT NULL, - `text` text DEFAULT NULL, - `item_type` varchar(255) NOT NULL, - `item_type_id` int(11) NOT NULL, - `receiver_id` int(11) NOT NULL, - `is_read` tinyint(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- -------------------------------------------------------- - --- --- Table structure for table `flash_deals` --- - -CREATE TABLE `flash_deals` ( - `id` int(11) NOT NULL, - `title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `start_date` int(20) DEFAULT NULL, - `end_date` int(20) DEFAULT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `featured` int(1) NOT NULL DEFAULT 0, - `background_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `text_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `banner` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `flash_deal_products` --- - -CREATE TABLE `flash_deal_products` ( - `id` int(11) NOT NULL, - `flash_deal_id` int(11) NOT NULL, - `product_id` int(11) NOT NULL, - `discount` double(20,2) DEFAULT 0.00, - `discount_type` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `flash_deal_translations` --- - -CREATE TABLE `flash_deal_translations` ( - `id` bigint(20) NOT NULL, - `flash_deal_id` bigint(20) NOT NULL, - `title` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `follow_sellers` --- - -CREATE TABLE `follow_sellers` ( - `user_id` bigint(20) NOT NULL, - `shop_id` bigint(20) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `home_categories` --- - -CREATE TABLE `home_categories` ( - `id` int(11) NOT NULL, - `category_id` int(11) NOT NULL, - `subsubcategories` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, - `status` int(1) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `home_categories` --- - -INSERT INTO `home_categories` (`id`, `category_id`, `subsubcategories`, `status`, `created_at`, `updated_at`) VALUES -(1, 1, '[\"1\"]', 1, '2019-03-12 06:38:23', '2019-03-12 06:38:23'), -(2, 2, '[\"10\"]', 1, '2019-03-12 06:44:54', '2019-03-12 06:44:54'); - --- -------------------------------------------------------- - --- --- Table structure for table `languages` --- - -CREATE TABLE `languages` ( - `id` int(11) NOT NULL, - `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `code` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `app_lang_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT 'en', - `rtl` int(1) NOT NULL DEFAULT 0, - `status` tinyint(1) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `languages` --- - -INSERT INTO `languages` (`id`, `name`, `code`, `app_lang_code`, `rtl`, `status`, `created_at`, `updated_at`) VALUES -(1, 'English', 'en', 'en', 0, 1, '2019-01-20 12:13:20', '2019-01-20 12:13:20'), -(3, 'Bangla', 'bd', 'bn', 0, 1, '2019-02-17 06:35:37', '2019-02-18 06:49:51'), -(4, 'Arabic', 'sa', 'ar', 1, 1, '2019-04-28 18:34:12', '2019-04-28 18:34:12'); - --- -------------------------------------------------------- - --- --- Table structure for table `messages` --- - -CREATE TABLE `messages` ( - `id` int(11) NOT NULL, - `conversation_id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `message` text COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `migrations` --- - -CREATE TABLE `migrations` ( - `id` int(10) UNSIGNED NOT NULL, - `migration` varchar(191) COLLATE utf8_unicode_ci NOT NULL, - `batch` int(11) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `migrations` --- - -INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES -(1, '2014_10_12_000000_create_users_table', 1), -(2, '2014_10_12_100000_create_password_resets_table', 1); - --- -------------------------------------------------------- - --- --- Table structure for table `model_has_permissions` --- - -CREATE TABLE `model_has_permissions` ( - `permission_id` bigint(20) UNSIGNED NOT NULL, - `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `model_id` bigint(20) UNSIGNED NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `model_has_roles` --- - -CREATE TABLE `model_has_roles` ( - `role_id` bigint(20) UNSIGNED NOT NULL, - `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `model_id` bigint(20) UNSIGNED NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `notifications` --- - -CREATE TABLE `notifications` ( - `id` char(36) COLLATE utf8_unicode_ci NOT NULL, - `type` varchar(191) COLLATE utf8_unicode_ci NOT NULL, - `notifiable_type` varchar(191) COLLATE utf8_unicode_ci NOT NULL, - `notifiable_id` bigint(20) UNSIGNED NOT NULL, - `data` text COLLATE utf8_unicode_ci NOT NULL, - `read_at` timestamp NULL DEFAULT NULL, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `orders` --- - -CREATE TABLE `orders` ( - `id` int(11) NOT NULL, - `combined_order_id` int(11) DEFAULT NULL, - `user_id` int(11) DEFAULT NULL, - `guest_id` int(11) DEFAULT NULL, - `seller_id` int(11) DEFAULT NULL, - `shipping_address` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `additional_info` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `shipping_type` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `pickup_point_id` int(11) NOT NULL DEFAULT 0, - `carrier_id` int(11) DEFAULT NULL, - `delivery_status` varchar(20) COLLATE utf8_unicode_ci DEFAULT 'pending', - `payment_type` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `payment_status` varchar(20) COLLATE utf8_unicode_ci DEFAULT 'unpaid', - `payment_details` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `grand_total` double(20,2) DEFAULT NULL, - `coupon_discount` double(20,2) NOT NULL DEFAULT 0.00, - `code` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL, - `tracking_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `date` int(20) NOT NULL, - `viewed` int(1) NOT NULL DEFAULT 0, - `delivery_viewed` int(1) NOT NULL DEFAULT 1, - `payment_status_viewed` int(1) DEFAULT 1, - `commission_calculated` int(11) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `order_details` --- - -CREATE TABLE `order_details` ( - `id` int(11) NOT NULL, - `order_id` int(11) NOT NULL, - `seller_id` int(11) DEFAULT NULL, - `product_id` int(11) NOT NULL, - `variation` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `price` double(20,2) DEFAULT NULL, - `tax` double(20,2) NOT NULL DEFAULT 0.00, - `shipping_cost` double(20,2) NOT NULL DEFAULT 0.00, - `quantity` int(11) DEFAULT NULL, - `payment_status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'unpaid', - `delivery_status` varchar(20) COLLATE utf8_unicode_ci DEFAULT 'pending', - `shipping_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `pickup_point_id` int(11) DEFAULT NULL, - `product_referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `earn_point` double(25,2) NOT NULL DEFAULT 0.00, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `pages` --- - -CREATE TABLE `pages` ( - `id` int(11) NOT NULL, - `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `content` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_title` text COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_description` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, - `keywords` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `pages` --- - -INSERT INTO `pages` (`id`, `type`, `title`, `slug`, `content`, `meta_title`, `meta_description`, `keywords`, `meta_image`, `created_at`, `updated_at`) VALUES -(1, 'home_page', 'Home Page', 'home', NULL, NULL, NULL, NULL, NULL, '2020-11-04 10:13:20', '2020-11-04 10:13:20'), -(2, 'seller_policy_page', 'Seller Policy Pages', 'seller-policy', NULL, NULL, NULL, NULL, NULL, '2020-11-04 10:14:41', '2020-11-04 12:19:30'), -(3, 'return_policy_page', 'Return Policy Page', 'return-policy', NULL, NULL, NULL, NULL, NULL, '2020-11-04 10:14:41', '2020-11-04 10:14:41'), -(4, 'support_policy_page', 'Support Policy Page', 'support-policy', NULL, NULL, NULL, NULL, NULL, '2020-11-04 10:14:59', '2020-11-04 10:14:59'), -(5, 'terms_conditions_page', 'Term Conditions Page', 'terms', NULL, NULL, NULL, NULL, NULL, '2020-11-04 10:15:29', '2020-11-04 10:15:29'), -(6, 'privacy_policy_page', 'Privacy Policy Page', 'privacy-policy', NULL, NULL, NULL, NULL, NULL, '2020-11-04 10:15:55', '2020-11-04 10:15:55'); - --- -------------------------------------------------------- - --- --- Table structure for table `page_translations` --- - -CREATE TABLE `page_translations` ( - `id` bigint(20) NOT NULL, - `page_id` bigint(20) NOT NULL, - `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `content` longtext COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `password_resets` --- - -CREATE TABLE `password_resets` ( - `email` varchar(191) COLLATE utf8_unicode_ci NOT NULL, - `token` varchar(191) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `payku_payments` --- - -CREATE TABLE `payku_payments` ( - `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `start` date NOT NULL, - `end` date NOT NULL, - `media` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `transaction_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `payment_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `verification_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `authorization_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `last_4_digits` int(10) UNSIGNED DEFAULT NULL, - `installments` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `card_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `additional_parameters` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `currency` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `payku_transactions` --- - -CREATE TABLE `payku_transactions` ( - `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `order` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `subject` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `amount` int(10) UNSIGNED DEFAULT NULL, - `notified_at` datetime DEFAULT NULL, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `payments` --- - -CREATE TABLE `payments` ( - `id` int(11) NOT NULL, - `seller_id` int(11) NOT NULL, - `amount` double(20,2) NOT NULL DEFAULT 0.00, - `payment_details` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `payment_method` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `txn_code` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `permissions` --- - -CREATE TABLE `permissions` ( - `id` bigint(20) UNSIGNED NOT NULL, - `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `section` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- --- Dumping data for table `permissions` --- - -INSERT INTO `permissions` (`id`, `name`, `section`, `guard_name`, `created_at`, `updated_at`) VALUES -(1, 'add_new_product', 'product', 'web', '2022-06-12 09:31:31', '2022-06-12 09:31:31'), -(2, 'show_all_products', 'product', 'web', '2022-06-12 09:32:34', '2022-06-12 09:32:34'), -(3, 'show_in_house_products', 'product', 'web', '2022-06-12 09:33:08', '2022-06-12 09:33:08'), -(4, 'show_seller_products', 'product', 'web', '2022-06-12 09:33:40', '2022-06-12 09:33:40'), -(5, 'product_edit', 'product', 'web', '2022-06-13 13:50:06', '2022-06-13 13:50:06'), -(6, 'product_duplicate', 'product', 'web', '2022-06-13 15:24:20', '2022-06-13 15:24:20'), -(7, 'product_delete', 'product', 'web', '2022-06-13 15:24:47', '2022-06-13 15:24:47'), -(8, 'show_digital_products', 'product', 'web', '2022-06-13 16:48:13', '2022-06-13 16:48:13'), -(9, 'add_digital_product', 'product', 'web', '2022-06-13 16:48:28', '2022-06-13 16:48:28'), -(10, 'edit_digital_product', 'product', 'web', '2022-06-13 16:48:40', '2022-06-13 16:48:40'), -(11, 'delete_digital_product', 'product', 'web', '2022-06-13 16:48:47', '2022-06-13 16:48:47'), -(12, 'download_digital_product', 'product', 'web', '2022-06-13 16:48:57', '2022-06-13 16:48:57'), -(13, 'product_bulk_import', 'product', 'web', '2022-06-13 18:18:52', '2022-06-13 18:18:52'), -(14, 'product_bulk_export', 'product', 'web', '2022-06-13 18:19:19', '2022-06-13 18:19:19'), -(15, 'view_product_categories', 'product_category', 'web', '2022-06-13 18:24:33', '2022-06-13 18:24:33'), -(16, 'add_product_category', 'product_category', 'web', '2022-06-13 18:25:56', '2022-06-13 18:25:56'), -(17, 'edit_product_category', 'product_category', 'web', '2022-06-13 18:26:17', '2022-06-13 18:26:17'), -(18, 'delete_product_category', 'product_category', 'web', '2022-06-13 18:26:42', '2022-06-13 18:26:42'), -(19, 'view_all_brands', 'brand', 'web', '2022-06-14 11:31:46', '2022-06-14 11:31:46'), -(20, 'add_brand', 'brand', 'web', '2022-06-14 11:32:08', '2022-06-14 11:32:08'), -(21, 'edit_brand', 'brand', 'web', '2022-06-14 11:32:16', '2022-06-14 11:32:16'), -(22, 'delete_brand', 'brand', 'web', '2022-06-14 11:32:25', '2022-06-14 11:32:25'), -(23, 'view_product_attributes', 'product_attribute', 'web', '2022-06-14 11:34:47', '2022-06-14 11:34:47'), -(24, 'add_product_attribute', 'product_attribute', 'web', '2022-06-14 11:35:20', '2022-06-14 11:35:20'), -(25, 'edit_product_attribute', 'product_attribute', 'web', '2022-06-14 11:35:26', '2022-06-14 11:35:26'), -(26, 'delete_product_attribute', 'product_attribute', 'web', '2022-06-14 11:35:33', '2022-06-14 11:35:33'), -(27, 'view_product_attribute_values', 'product_attribute', 'web', '2022-06-14 11:38:12', '2022-06-14 11:38:12'), -(28, 'add_product_attribute_values', 'product_attribute', 'web', '2022-06-14 11:38:20', '2022-06-14 11:38:20'), -(29, 'edit_product_attribute_value', 'product_attribute', 'web', '2022-06-14 11:38:50', '2022-06-14 11:38:50'), -(30, 'delete_product_attribute_value', 'product_attribute', 'web', '2022-06-14 11:39:06', '2022-06-14 11:39:06'), -(31, 'view_colors', 'product_attribute', 'web', '2022-06-14 11:44:16', '2022-06-14 11:44:16'), -(32, 'add_color', 'product_attribute', 'web', '2022-06-14 11:44:41', '2022-06-14 11:44:41'), -(33, 'edit_color', 'product_attribute', 'web', '2022-06-14 11:44:50', '2022-06-14 11:44:50'), -(34, 'delete_color', 'product_attribute', 'web', '2022-06-14 11:44:59', '2022-06-14 11:44:59'), -(35, 'view_product_reviews', 'product_review', 'web', '2022-06-14 11:55:04', '2022-06-14 11:55:04'), -(36, 'publish_product_review', 'product_review', 'web', '2022-06-14 11:57:37', '2022-06-14 11:57:37'), -(37, 'view_all_orders', 'sale', 'web', '2022-06-14 17:49:04', '2022-06-14 17:49:04'), -(38, 'view_inhouse_orders', 'sale', 'web', '2022-06-14 17:49:30', '2022-06-14 17:49:30'), -(39, 'view_seller_orders', 'sale', 'web', '2022-06-14 17:50:06', '2022-06-14 17:50:06'), -(40, 'view_pickup_point_orders', 'sale', 'web', '2022-06-14 17:51:17', '2022-06-14 17:51:17'), -(41, 'view_order_details', 'sale', 'web', '2022-06-14 17:53:13', '2022-06-14 17:53:13'), -(42, 'update_order_payment_status', 'sale', 'web', '2022-06-14 17:53:55', '2022-06-14 17:53:55'), -(43, 'update_order_delivery_status', 'sale', 'web', '2022-06-14 17:54:02', '2022-06-14 17:54:02'), -(44, 'delete_order', 'sale', 'web', '2022-06-14 17:55:02', '2022-06-14 17:55:02'), -(45, 'view_all_customers', 'customer', 'web', '2022-06-14 17:59:28', '2022-06-14 17:59:28'), -(46, 'login_as_customer', 'customer', 'web', '2022-06-14 17:59:58', '2022-06-14 17:59:58'), -(47, 'ban_customer', 'customer', 'web', '2022-06-14 18:00:12', '2022-06-14 18:00:12'), -(48, 'delete_customer', 'customer', 'web', '2022-06-14 18:00:45', '2022-06-14 18:00:45'), -(49, 'view_classified_products', 'customer', 'web', '2022-06-14 18:02:38', '2022-06-14 18:02:38'), -(50, 'publish_classified_product', 'customer', 'web', '2022-06-14 18:06:23', '2022-06-14 18:06:23'), -(51, 'delete_classified_product', 'customer', 'web', '2022-06-14 18:06:39', '2022-06-14 18:06:39'), -(52, 'view_classified_packages', 'customer', 'web', '2022-06-14 18:08:11', '2022-06-14 18:08:11'), -(53, 'add_classified_package', 'customer', 'web', '2022-06-14 18:08:22', '2022-06-14 18:08:22'), -(54, 'edit_classified_package', 'customer', 'web', '2022-06-14 18:08:35', '2022-06-14 18:08:35'), -(55, 'delete_classified_package', 'customer', 'web', '2022-06-14 18:08:44', '2022-06-14 18:08:44'), -(56, 'view_all_seller', 'seller', 'web', '2022-06-15 12:49:56', '2022-06-15 12:49:56'), -(57, 'view_seller_profile', 'seller', 'web', '2022-06-15 12:58:07', '2022-06-15 12:58:07'), -(58, 'login_as_seller', 'seller', 'web', '2022-06-15 12:58:22', '2022-06-15 12:58:22'), -(59, 'pay_to_seller', 'seller', 'web', '2022-06-15 14:21:28', '2022-06-15 14:21:28'), -(60, 'seller_payment_history', 'seller', 'web', '2022-06-15 14:22:14', '2022-06-15 14:22:14'), -(61, 'edit_seller', 'seller', 'web', '2022-06-15 14:22:28', '2022-06-15 14:22:28'), -(62, 'delete_seller', 'seller', 'web', '2022-06-15 14:22:37', '2022-06-15 14:22:37'), -(63, 'ban_seller', 'seller', 'web', '2022-06-15 14:22:48', '2022-06-15 14:22:48'), -(64, 'approve_seller', 'seller', 'web', '2022-06-15 14:24:17', '2022-06-15 14:24:17'), -(65, 'view_seller_payout_requests', 'seller', 'web', '2022-06-15 14:33:37', '2022-06-15 14:33:37'), -(66, 'seller_commission_configuration', 'seller', 'web', '2022-06-15 14:37:18', '2022-06-15 14:37:18'), -(67, 'seller_verification_form_configuration', 'seller', 'web', '2022-06-15 14:38:43', '2022-06-15 14:38:43'), -(68, 'in_house_product_sale_report', 'report', 'web', '2022-06-18 15:43:02', '2022-06-18 15:43:02'), -(69, 'seller_products_sale_report', 'report', 'web', '2022-06-18 15:43:32', '2022-06-18 15:43:32'), -(70, 'products_stock_report', 'report', 'web', '2022-06-18 15:43:51', '2022-06-18 15:43:51'), -(71, 'product_wishlist_report', 'report', 'web', '2022-06-18 15:46:18', '2022-06-18 15:46:18'), -(72, 'user_search_report', 'report', 'web', '2022-06-18 15:46:39', '2022-06-18 15:46:39'), -(73, 'commission_history_report', 'report', 'web', '2022-06-18 15:47:17', '2022-06-18 15:47:17'), -(74, 'wallet_transaction_report', 'report', 'web', '2022-06-18 15:48:00', '2022-06-18 15:48:00'), -(75, 'view_blogs', 'blog', 'web', '2022-06-19 00:08:14', '2022-06-19 00:08:14'), -(76, 'add_blog', 'blog', 'web', '2022-06-19 00:08:43', '2022-06-19 00:08:43'), -(77, 'edit_blog', 'blog', 'web', '2022-06-19 00:08:56', '2022-06-19 00:08:56'), -(78, 'delete_blog', 'blog', 'web', '2022-06-19 00:09:08', '2022-06-19 00:09:08'), -(79, 'publish_blog', 'blog', 'web', '2022-06-19 00:11:09', '2022-06-19 00:11:09'), -(80, 'view_blog_categories', 'blog', 'web', '2022-06-19 00:12:55', '2022-06-19 00:12:55'), -(81, 'add_blog_category', 'blog', 'web', '2022-06-19 00:13:24', '2022-06-19 00:13:24'), -(82, 'edit_blog_category', 'blog', 'web', '2022-06-19 00:13:37', '2022-06-19 00:13:37'), -(83, 'delete_blog_category', 'blog', 'web', '2022-06-19 00:14:06', '2022-06-19 00:14:06'), -(84, 'view_all_flash_deals', 'marketing', 'web', '2022-06-19 01:18:52', '2022-06-19 01:18:52'), -(85, 'add_flash_deal', 'marketing', 'web', '2022-06-19 01:19:22', '2022-06-19 01:19:22'), -(86, 'edit_flash_deal', 'marketing', 'web', '2022-06-19 01:19:32', '2022-06-19 01:19:32'), -(87, 'delete_flash_deal', 'marketing', 'web', '2022-06-19 01:19:44', '2022-06-19 01:19:44'), -(88, 'publish_flash_deal', 'marketing', 'web', '2022-06-19 01:20:45', '2022-06-19 01:20:45'), -(89, 'featured_flash_deal', 'marketing', 'web', '2022-06-19 01:23:07', '2022-06-19 01:23:07'), -(90, 'view_all_coupons', 'marketing', 'web', '2022-06-19 01:23:47', '2022-06-19 01:23:47'), -(91, 'add_coupon', 'marketing', 'web', '2022-06-19 01:24:07', '2022-06-19 01:24:07'), -(92, 'edit_coupon', 'marketing', 'web', '2022-06-19 01:24:24', '2022-06-19 01:24:24'), -(93, 'delete_coupon', 'marketing', 'web', '2022-06-19 01:24:34', '2022-06-19 01:24:34'), -(94, 'send_newsletter', 'marketing', 'web', '2022-06-19 01:25:53', '2022-06-19 01:25:53'), -(95, 'view_all_subscribers', 'marketing', 'web', '2022-06-19 01:32:13', '2022-06-19 01:32:13'), -(96, 'delete_subscriber', 'marketing', 'web', '2022-06-19 01:32:35', '2022-06-19 01:32:35'), -(97, 'view_all_support_tickets', 'support', 'web', '2022-06-19 17:31:53', '2022-06-19 17:31:53'), -(98, 'reply_to_support_tickets', 'support', 'web', '2022-06-19 17:33:13', '2022-06-19 17:33:13'), -(99, 'view_all_product_queries', 'support', 'web', '2022-06-19 17:38:45', '2022-06-19 17:38:45'), -(100, 'reply_to_product_queries', 'support', 'web', '2022-06-19 17:40:02', '2022-06-19 17:40:02'), -(102, 'header_setup', 'website_setup', 'web', '2022-06-19 17:45:24', '2022-06-19 17:45:24'), -(103, 'footer_setup', 'website_setup', 'web', '2022-06-19 17:45:37', '2022-06-19 17:45:37'), -(104, 'website_appearance', 'website_setup', 'web', '2022-06-19 17:46:49', '2022-06-19 17:46:49'), -(105, 'view_all_website_pages', 'website_setup', 'web', '2022-06-19 17:50:04', '2022-06-19 17:50:04'), -(106, 'add_website_page', 'website_setup', 'web', '2022-06-19 17:50:38', '2022-06-19 17:50:38'), -(107, 'edit_website_page', 'website_setup', 'web', '2022-06-19 17:50:47', '2022-06-19 17:50:47'), -(108, 'delete_website_page', 'website_setup', 'web', '2022-06-19 17:52:09', '2022-06-19 17:52:09'), -(109, 'general_settings', 'setup_configurations', 'web', '2022-06-19 18:38:36', '2022-06-19 18:38:36'), -(110, 'features_activation', 'setup_configurations', 'web', '2022-06-19 18:39:42', '2022-06-19 18:39:42'), -(111, 'language_setup', 'setup_configurations', 'web', '2022-06-19 22:13:30', '2022-06-19 22:13:30'), -(112, 'currency_setup', 'setup_configurations', 'web', '2022-06-19 22:14:33', '2022-06-19 22:14:33'), -(113, 'vat_&_tax_setup', 'setup_configurations', 'web', '2022-06-19 22:15:21', '2022-06-19 22:15:21'), -(114, 'pickup_point_setup', 'setup_configurations', 'web', '2022-06-19 22:15:46', '2022-06-19 22:15:46'), -(115, 'smtp_settings', 'setup_configurations', 'web', '2022-06-19 22:16:05', '2022-06-19 22:16:05'), -(116, 'payment_methods_configurations', 'setup_configurations', 'web', '2022-06-19 22:25:27', '2022-06-19 22:25:27'), -(117, 'order_configuration', 'setup_configurations', 'web', '2022-06-19 22:26:26', '2022-06-19 22:26:26'), -(118, 'file_system_&_cache_configuration', 'setup_configurations', 'web', '2022-06-19 22:26:59', '2022-06-19 22:26:59'), -(119, 'social_media_logins', 'setup_configurations', 'web', '2022-06-19 22:27:22', '2022-06-19 22:27:22'), -(120, 'facebook_chat', 'setup_configurations', 'web', '2022-06-19 22:28:31', '2022-06-19 22:28:31'), -(121, 'facebook_comment', 'setup_configurations', 'web', '2022-06-19 22:28:51', '2022-06-19 22:28:51'), -(122, 'analytics_tools_configuration', 'setup_configurations', 'web', '2022-06-19 22:29:57', '2022-06-19 22:29:57'), -(123, 'google_recaptcha_configuration', 'setup_configurations', 'web', '2022-06-19 22:30:55', '2022-06-19 22:30:55'), -(124, 'google_map_setting', 'setup_configurations', 'web', '2022-06-19 22:31:28', '2022-06-19 22:31:28'), -(125, 'google_firebase_setting', 'setup_configurations', 'web', '2022-06-19 22:32:00', '2022-06-19 22:32:00'), -(126, 'shipping_configuration', 'setup_configurations', 'web', '2022-06-19 22:41:29', '2022-06-19 22:41:29'), -(127, 'shipping_country_setting', 'setup_configurations', 'web', '2022-06-19 22:42:14', '2022-06-19 22:42:14'), -(128, 'manage_shipping_states', 'setup_configurations', 'web', '2022-06-19 22:43:43', '2022-06-19 22:43:43'), -(129, 'manage_shipping_cities', 'setup_configurations', 'web', '2022-06-19 22:44:17', '2022-06-19 22:44:17'), -(130, 'view_all_staffs', 'staff', 'web', '2022-06-19 22:45:00', '2022-06-19 22:45:00'), -(131, 'add_staff', 'staff', 'web', '2022-06-19 22:45:09', '2022-06-19 22:45:09'), -(132, 'edit_staff', 'staff', 'web', '2022-06-19 22:45:21', '2022-06-19 22:45:21'), -(133, 'delete_staff', 'staff', 'web', '2022-06-19 22:45:36', '2022-06-19 22:45:36'), -(134, 'view_staff_roles', 'staff', 'web', '2022-06-19 22:46:27', '2022-06-19 22:46:27'), -(135, 'add_staff_role', 'staff', 'web', '2022-06-19 22:53:00', '2022-06-19 22:53:00'), -(136, 'edit_staff_role', 'staff', 'web', '2022-06-19 22:53:11', '2022-06-19 22:53:11'), -(137, 'delete_staff_role', 'staff', 'web', '2022-06-19 22:53:22', '2022-06-19 22:53:22'), -(138, 'system_update', 'system', 'web', '2022-06-19 22:57:15', '2022-06-19 22:57:15'), -(139, 'server_status', 'system', 'web', '2022-06-19 22:57:58', '2022-06-19 22:57:58'), -(140, 'manage_addons', 'system', 'web', '2022-06-19 23:15:43', '2022-06-19 23:15:43'), -(141, 'admin_dashboard', 'system', 'web', '2022-06-20 18:26:52', '2022-06-20 18:26:52'), -(142, 'pos_manager', 'pos_system', 'web', '2022-06-20 19:46:20', '2022-06-20 19:46:20'), -(143, 'pos_configuration', 'pos_system', 'web', '2022-06-20 19:56:00', '2022-06-20 19:56:00'), -(144, 'view_all_auction_products', 'auction', 'web', '2022-06-20 20:05:54', '2022-06-20 20:05:54'), -(145, 'view_inhouse_auction_products', 'auction', 'web', '2022-06-20 20:09:29', '2022-06-20 20:09:29'), -(146, 'view_seller_auction_products', 'auction', 'web', '2022-06-20 20:09:51', '2022-06-20 20:09:51'), -(147, 'add_auction_product', 'auction', 'web', '2022-06-20 20:11:19', '2022-06-20 20:11:19'), -(148, 'edit_auction_product', 'auction', 'web', '2022-06-20 20:12:57', '2022-06-20 20:12:57'), -(149, 'delete_auction_product', 'auction', 'web', '2022-06-20 20:17:35', '2022-06-20 20:17:35'), -(150, 'view_auction_product_bids', 'auction', 'web', '2022-06-20 20:25:29', '2022-06-20 20:25:29'), -(151, 'delete_auction_product_bids', 'auction', 'web', '2022-06-20 20:33:55', '2022-06-20 20:33:55'), -(152, 'view_auction_product_orders', 'auction', 'web', '2022-06-20 20:44:11', '2022-06-20 20:44:11'), -(153, 'view_all_wholesale_products', 'wholesale', 'web', '2022-06-20 22:06:26', '2022-06-20 22:06:26'), -(154, 'view_inhouse_wholesale_products', 'wholesale', 'web', '2022-06-20 22:09:18', '2022-06-20 22:09:18'), -(155, 'view_sellers_wholesale_products', 'wholesale', 'web', '2022-06-20 22:09:48', '2022-06-20 22:09:48'), -(156, 'add_wholesale_product', 'wholesale', 'web', '2022-06-20 22:56:35', '2022-06-20 22:56:35'), -(157, 'edit_wholesale_product', 'wholesale', 'web', '2022-06-20 22:56:55', '2022-06-20 22:56:55'), -(158, 'delete_wholesale_product', 'wholesale', 'web', '2022-06-20 22:57:07', '2022-06-20 22:57:07'), -(159, 'view_all_delivery_boy', 'delivery_boy', 'web', '2022-06-20 23:41:57', '2022-06-20 23:41:57'), -(160, 'add_delivery_boy', 'delivery_boy', 'web', '2022-06-20 23:43:13', '2022-06-20 23:43:13'), -(161, 'edit_delivery_boy', 'delivery_boy', 'web', '2022-06-20 23:43:32', '2022-06-20 23:43:32'), -(162, 'ban_delivery_boy', 'delivery_boy', 'web', '2022-06-21 18:55:57', '2022-06-21 18:55:57'), -(163, 'collect_from_delivery_boy', 'delivery_boy', 'web', '2022-06-21 18:58:23', '2022-06-21 18:58:23'), -(164, 'pay_to_delivery_boy', 'delivery_boy', 'web', '2022-06-21 18:58:35', '2022-06-21 18:58:35'), -(165, 'delivery_boy_payment_history', 'delivery_boy', 'web', '2022-06-21 19:38:43', '2022-06-21 19:38:43'), -(166, 'collected_histories_from_delivery_boy', 'delivery_boy', 'web', '2022-06-21 19:40:04', '2022-06-21 19:40:04'), -(167, 'order_cancle_request_by_delivery_boy', 'delivery_boy', 'web', '2022-06-21 20:06:37', '2022-06-21 20:06:37'), -(168, 'delivery_boy_configuration', 'delivery_boy', 'web', '2022-06-21 20:07:07', '2022-06-21 20:07:07'), -(169, 'view_refund_requests', 'refund_request', 'web', '2022-06-21 20:21:11', '2022-06-21 20:21:11'), -(170, 'accept_refund_request', 'refund_request', 'web', '2022-06-21 20:21:55', '2022-06-21 20:21:55'), -(171, 'reject_refund_request', 'refund_request', 'web', '2022-06-21 20:23:20', '2022-06-21 20:23:20'), -(172, 'view_approved_refund_requests', 'refund_request', 'web', '2022-06-21 20:24:09', '2022-06-21 20:24:09'), -(173, 'view_rejected_refund_requests', 'refund_request', 'web', '2022-06-21 20:33:40', '2022-06-21 20:33:40'), -(174, 'refund_request_configuration', 'refund_request', 'web', '2022-06-21 20:34:21', '2022-06-21 20:34:21'), -(175, 'affiliate_registration_form_config', 'affiliate_system', 'web', '2022-06-21 22:52:18', '2022-06-21 22:52:18'), -(176, 'affiliate_configurations', 'affiliate_system', 'web', '2022-06-21 22:52:35', '2022-06-21 22:52:35'), -(177, 'view_affiliate_users', 'affiliate_system', 'web', '2022-06-21 22:53:19', '2022-06-21 22:53:19'), -(178, 'pay_to_affiliate_user', 'affiliate_system', 'web', '2022-06-21 22:54:49', '2022-06-21 22:54:49'), -(179, 'affiliate_users_payment_history', 'affiliate_system', 'web', '2022-06-21 22:55:51', '2022-06-21 22:55:51'), -(180, 'view_all_referral_users', 'affiliate_system', 'web', '2022-06-21 22:56:46', '2022-06-21 22:56:46'), -(181, 'view_affiliate_withdraw_requests', 'affiliate_system', 'web', '2022-06-21 22:58:01', '2022-06-21 22:58:01'), -(182, 'accept_affiliate_withdraw_requests', 'affiliate_system', 'web', '2022-06-21 22:59:38', '2022-06-21 22:59:38'), -(183, 'reject_affiliate_withdraw_request', 'affiliate_system', 'web', '2022-06-21 23:00:04', '2022-06-21 23:00:04'), -(184, 'view_affiliate_logs', 'affiliate_system', 'web', '2022-06-21 23:00:51', '2022-06-21 23:00:51'), -(185, 'view_all_manual_payment_methods', 'offline_payment', 'web', '2022-06-21 23:02:50', '2022-06-21 23:02:50'), -(186, 'add_manual_payment_method', 'offline_payment', 'web', '2022-06-21 23:03:25', '2022-06-21 23:03:25'), -(187, 'edit_manual_payment_method', 'offline_payment', 'web', '2022-06-21 23:03:56', '2022-06-21 23:03:56'), -(188, 'delete_manual_payment_method', 'offline_payment', 'web', '2022-06-21 23:04:10', '2022-06-21 23:04:10'), -(189, 'view_all_offline_wallet_recharges', 'offline_payment', 'web', '2022-06-21 23:09:09', '2022-06-21 23:09:09'), -(190, 'approve_offline_wallet_recharge', 'offline_payment', 'web', '2022-06-21 23:11:29', '2022-06-21 23:11:29'), -(191, 'view_all_offline_customer_package_payments', 'offline_payment', 'web', '2022-06-21 23:12:49', '2022-06-21 23:12:49'), -(192, 'approve_offline_customer_package_payment', 'offline_payment', 'web', '2022-06-21 23:13:24', '2022-06-21 23:13:24'), -(193, 'view_all_offline_seller_package_payments', 'offline_payment', 'web', '2022-06-21 23:14:02', '2022-06-21 23:14:02'), -(194, 'approve_offline_seller_package_payment', 'offline_payment', 'web', '2022-06-21 23:14:29', '2022-06-21 23:14:29'), -(195, 'asian_payment_gateway_configuration', 'paytm', 'web', '2022-06-21 23:15:56', '2022-06-21 23:15:56'), -(196, 'club_point_configurations', 'club_point', 'web', '2022-06-21 23:16:57', '2022-06-21 23:16:57'), -(197, 'set_club_points', 'club_point', 'web', '2022-06-21 23:17:21', '2022-06-21 23:17:21'), -(198, 'view_users_club_points', 'club_point', 'web', '2022-06-21 23:18:14', '2022-06-21 23:18:14'), -(199, 'otp_configurations', 'otp_system', 'web', '2022-06-22 00:07:28', '2022-06-22 00:07:28'), -(200, 'sms_templates', 'otp_system', 'web', '2022-06-22 00:08:13', '2022-06-22 00:08:13'), -(201, 'sms_providers_configurations', 'otp_system', 'web', '2022-06-22 00:08:44', '2022-06-22 00:08:44'), -(202, 'african_pg_configuration', 'african_pg', 'web', '2022-06-22 00:13:41', '2022-06-22 00:13:41'), -(203, 'african_pg_credentials_configuration', 'african_pg', 'web', '2022-06-22 00:16:12', '2022-06-22 00:16:12'), -(204, 'view_all_seller_packages', 'seller_subscription', 'web', '2022-06-22 00:17:45', '2022-06-22 00:17:45'), -(205, 'add_seller_package', 'seller_subscription', 'web', '2022-06-22 00:18:14', '2022-06-22 00:18:14'), -(206, 'edit_seller_package', 'seller_subscription', 'web', '2022-06-22 00:18:24', '2022-06-22 00:18:24'), -(207, 'delete_seller_package', 'seller_subscription', 'web', '2022-06-22 00:18:36', '2022-06-22 00:18:36'), -(208, 'send_bulk_sms', 'otp_system', 'web', '2022-06-22 00:19:06', '2022-06-22 00:19:06'), -(209, 'assign_delivery_boy_for_orders', 'delivery_boy', 'web', '2022-06-22 00:20:16', '2022-06-22 00:20:16'), -(210, 'manage_zones', 'setup_configurations', 'web', '2022-06-22 00:20:16', '2022-06-22 00:20:16'), -(211, 'manage_carriers', 'setup_configurations', 'web', '2022-06-22 00:20:16', '2022-06-22 00:20:16'), -(212, 'view_all_product_conversations', 'support', 'web', '2022-06-22 00:20:16', '2022-06-22 00:20:16'), -(213, 'reply_to_product_conversations', 'support', 'web', '2022-06-22 00:20:16', '2022-06-22 00:20:16'), -(214, 'delete_product_conversations', 'support', 'web', '2022-06-22 00:20:16', '2022-06-22 00:20:16'); - --- -------------------------------------------------------- - --- --- Table structure for table `personal_access_tokens` --- - -CREATE TABLE `personal_access_tokens` ( - `id` bigint(20) UNSIGNED NOT NULL, - `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `tokenable_id` bigint(20) UNSIGNED NOT NULL, - `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, - `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `last_used_at` timestamp NULL DEFAULT NULL, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `pickup_points` --- - -CREATE TABLE `pickup_points` ( - `id` int(11) NOT NULL, - `staff_id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `address` mediumtext COLLATE utf8_unicode_ci NOT NULL, - `phone` varchar(15) COLLATE utf8_unicode_ci NOT NULL, - `pick_up_status` int(1) DEFAULT NULL, - `cash_on_pickup_status` int(1) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `pickup_point_translations` --- - -CREATE TABLE `pickup_point_translations` ( - `id` bigint(20) NOT NULL, - `pickup_point_id` bigint(20) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `address` text COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `products` --- - -CREATE TABLE `products` ( - `id` int(11) NOT NULL, - `name` varchar(200) COLLATE utf8_unicode_ci NOT NULL, - `added_by` varchar(6) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'admin', - `user_id` int(11) NOT NULL, - `category_id` int(11) NOT NULL, - `brand_id` int(11) DEFAULT NULL, - `photos` varchar(2000) COLLATE utf8_unicode_ci DEFAULT NULL, - `thumbnail_img` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `video_provider` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `video_link` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `tags` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `unit_price` double(20,2) NOT NULL, - `purchase_price` double(20,2) DEFAULT NULL, - `variant_product` int(1) NOT NULL DEFAULT 0, - `attributes` varchar(1000) COLLATE utf8_unicode_ci NOT NULL DEFAULT '[]', - `choice_options` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL, - `colors` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL, - `variations` text COLLATE utf8_unicode_ci DEFAULT NULL, - `todays_deal` int(11) NOT NULL DEFAULT 0, - `published` int(11) NOT NULL DEFAULT 1, - `approved` tinyint(1) NOT NULL DEFAULT 1, - `stock_visibility_state` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'quantity', - `cash_on_delivery` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1 = On, 0 = Off', - `featured` int(11) NOT NULL DEFAULT 0, - `seller_featured` int(11) NOT NULL DEFAULT 0, - `current_stock` int(10) NOT NULL DEFAULT 0, - `unit` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `weight` double(8,2) NOT NULL DEFAULT 0.00, - `min_qty` int(11) NOT NULL DEFAULT 1, - `low_stock_quantity` int(11) DEFAULT NULL, - `discount` double(20,2) DEFAULT NULL, - `discount_type` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, - `discount_start_date` int(11) DEFAULT NULL, - `discount_end_date` int(11) DEFAULT NULL, - `tax` double(20,2) DEFAULT NULL, - `tax_type` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, - `shipping_type` varchar(20) COLLATE utf8_unicode_ci DEFAULT 'flat_rate', - `shipping_cost` double(20,2) NOT NULL DEFAULT 0.00, - `is_quantity_multiplied` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1 = Mutiplied with shipping cost', - `est_shipping_days` int(11) DEFAULT NULL, - `num_of_sale` int(11) NOT NULL DEFAULT 0, - `meta_title` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_description` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_img` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `pdf` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `slug` mediumtext COLLATE utf8_unicode_ci NOT NULL, - `rating` double(8,2) NOT NULL DEFAULT 0.00, - `barcode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `digital` int(1) NOT NULL DEFAULT 0, - `auction_product` int(1) NOT NULL DEFAULT 0, - `file_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `file_path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `external_link` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL, - `external_link_btn` varchar(255) COLLATE utf8_unicode_ci DEFAULT 'Buy Now', - `wholesale_product` int(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `product_queries` --- - -CREATE TABLE `product_queries` ( - `id` bigint(20) UNSIGNED NOT NULL, - `customer_id` int(11) NOT NULL, - `seller_id` int(11) NOT NULL, - `product_id` int(11) NOT NULL, - `question` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `reply` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `product_stocks` --- - -CREATE TABLE `product_stocks` ( - `id` int(11) NOT NULL, - `product_id` int(11) NOT NULL, - `variant` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `sku` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `price` double(20,2) NOT NULL DEFAULT 0.00, - `qty` int(11) NOT NULL DEFAULT 0, - `image` int(11) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `product_taxes` --- - -CREATE TABLE `product_taxes` ( - `id` int(11) NOT NULL, - `product_id` int(11) NOT NULL, - `tax_id` int(11) NOT NULL, - `tax` double(20,2) NOT NULL, - `tax_type` varchar(10) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `product_translations` --- - -CREATE TABLE `product_translations` ( - `id` bigint(20) NOT NULL, - `product_id` bigint(20) NOT NULL, - `name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `unit` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `proxypay_payments` --- - -CREATE TABLE `proxypay_payments` ( - `id` int(11) NOT NULL, - `payment_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL, - `reference_id` varchar(20) COLLATE utf8_unicode_ci NOT NULL, - `order_id` int(11) DEFAULT NULL, - `package_id` int(11) DEFAULT NULL, - `user_id` int(11) NOT NULL, - `amount` double(25,2) NOT NULL DEFAULT 0.00, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `reviews` --- - -CREATE TABLE `reviews` ( - `id` int(11) NOT NULL, - `product_id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `rating` int(11) NOT NULL DEFAULT 0, - `comment` mediumtext COLLATE utf8_unicode_ci NOT NULL, - `photos` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL, - `status` int(1) NOT NULL DEFAULT 1, - `viewed` int(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `roles` --- - -CREATE TABLE `roles` ( - `id` bigint(20) UNSIGNED NOT NULL, - `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, - `created_at` timestamp NULL DEFAULT NULL, - `updated_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- --- Dumping data for table `roles` --- - -INSERT INTO `roles` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES -(1, 'Super Admin', 'web', '2022-06-13 00:29:58', '2022-06-12 12:00:00'); - --- -------------------------------------------------------- - --- --- Table structure for table `role_has_permissions` --- - -CREATE TABLE `role_has_permissions` ( - `permission_id` bigint(20) UNSIGNED NOT NULL, - `role_id` bigint(20) UNSIGNED NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `role_translations` --- - -CREATE TABLE `role_translations` ( - `id` bigint(20) NOT NULL, - `role_id` bigint(20) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `searches` --- - -CREATE TABLE `searches` ( - `id` int(11) NOT NULL, - `query` varchar(1000) COLLATE utf8_unicode_ci NOT NULL, - `count` int(11) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `searches` --- - -INSERT INTO `searches` (`id`, `query`, `count`, `created_at`, `updated_at`) VALUES -(2, 'dcs', 1, '2020-03-08 00:29:09', '2020-03-08 00:29:09'), -(3, 'das', 3, '2020-03-08 00:29:15', '2020-03-08 00:29:50'); - --- -------------------------------------------------------- - --- --- Table structure for table `sellers` --- - -CREATE TABLE `sellers` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `rating` double(3,2) NOT NULL DEFAULT 0.00, - `num_of_reviews` int(11) NOT NULL DEFAULT 0, - `num_of_sale` int(11) NOT NULL DEFAULT 0, - `verification_status` int(1) NOT NULL DEFAULT 0, - `verification_info` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `cash_on_delivery_status` int(1) NOT NULL DEFAULT 0, - `admin_to_pay` double(20,2) NOT NULL DEFAULT 0.00, - `bank_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `bank_acc_name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `bank_acc_no` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, - `bank_routing_no` int(50) DEFAULT NULL, - `bank_payment_status` int(11) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `sellers` --- - -INSERT INTO `sellers` (`id`, `user_id`, `rating`, `num_of_reviews`, `num_of_sale`, `verification_status`, `verification_info`, `cash_on_delivery_status`, `admin_to_pay`, `bank_name`, `bank_acc_name`, `bank_acc_no`, `bank_routing_no`, `bank_payment_status`, `created_at`, `updated_at`) VALUES -(1, 3, 0.00, 0, 0, 1, '[{\"type\":\"text\",\"label\":\"Name\",\"value\":\"Mr. Seller\"},{\"type\":\"select\",\"label\":\"Marital Status\",\"value\":\"Married\"},{\"type\":\"multi_select\",\"label\":\"Company\",\"value\":\"[\\\"Company\\\"]\"},{\"type\":\"select\",\"label\":\"Gender\",\"value\":\"Male\"},{\"type\":\"file\",\"label\":\"Image\",\"value\":\"uploads\\/verification_form\\/CRWqFifcbKqibNzllBhEyUSkV6m1viknGXMEhtiW.png\"}]', 1, 78.40, NULL, NULL, NULL, NULL, 0, '2018-10-07 04:42:57', '2020-01-26 04:21:11'); - --- -------------------------------------------------------- - --- --- Table structure for table `seller_withdraw_requests` --- - -CREATE TABLE `seller_withdraw_requests` ( - `id` int(11) NOT NULL, - `user_id` int(11) DEFAULT NULL, - `amount` double(20,2) DEFAULT NULL, - `message` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `status` int(1) DEFAULT NULL, - `viewed` int(1) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `shops` --- - -CREATE TABLE `shops` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `sliders` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `top_banner` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL, - `banner_full_width_1` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL, - `banners_half_width` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL, - `banner_full_width_2` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL, - `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `address` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL, - `rating` double(3,2) NOT NULL DEFAULT 0.00, - `num_of_reviews` int(11) NOT NULL DEFAULT 0, - `num_of_sale` int(11) NOT NULL DEFAULT 0, - `seller_package_id` int(11) DEFAULT NULL, - `product_upload_limit` int(11) NOT NULL DEFAULT 0, - `package_invalid_at` date DEFAULT NULL, - `verification_status` int(1) NOT NULL DEFAULT 0, - `verification_info` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `cash_on_delivery_status` int(1) NOT NULL DEFAULT 0, - `admin_to_pay` double(20,2) NOT NULL DEFAULT 0.00, - `facebook` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `instagram` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `google` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `twitter` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `youtube` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `meta_description` text COLLATE utf8_unicode_ci DEFAULT NULL, - `pick_up_point_id` text COLLATE utf8_unicode_ci DEFAULT NULL, - `shipping_cost` double(20,2) NOT NULL DEFAULT 0.00, - `delivery_pickup_latitude` float(17,15) DEFAULT NULL, - `delivery_pickup_longitude` float(17,15) DEFAULT NULL, - `bank_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `bank_acc_name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `bank_acc_no` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, - `bank_routing_no` int(50) DEFAULT NULL, - `bank_payment_status` int(11) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `shops` --- - -INSERT INTO `shops` (`id`, `user_id`, `name`, `logo`, `sliders`, `top_banner`, `banner_full_width_1`, `banners_half_width`, `banner_full_width_2`, `phone`, `address`, `rating`, `num_of_reviews`, `num_of_sale`, `seller_package_id`, `product_upload_limit`, `package_invalid_at`, `verification_status`, `verification_info`, `cash_on_delivery_status`, `admin_to_pay`, `facebook`, `instagram`, `google`, `twitter`, `youtube`, `slug`, `meta_title`, `meta_description`, `pick_up_point_id`, `shipping_cost`, `delivery_pickup_latitude`, `delivery_pickup_longitude`, `bank_name`, `bank_acc_name`, `bank_acc_no`, `bank_routing_no`, `bank_payment_status`, `created_at`, `updated_at`) VALUES -(1, 3, 'Demo Seller Shop', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'House : Demo, Road : Demo, Section : Demo', 0.00, 0, 0, NULL, 0, NULL, 0, NULL, 0, 0.00, 'www.facebook.com', NULL, 'www.google.com', 'www.twitter.com', 'www.youtube.com', 'Demo-Seller-Shop-1', 'Demo Seller Shop Title', 'Demo description', NULL, 0.00, NULL, NULL, NULL, NULL, NULL, NULL, 0, '2018-11-27 10:23:13', '2019-08-06 06:43:16'); - --- -------------------------------------------------------- - --- --- Table structure for table `staff` --- - -CREATE TABLE `staff` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `role_id` int(11) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `states` --- - -CREATE TABLE `states` ( - `id` bigint(20) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `country_id` int(11) NOT NULL, - `status` int(11) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp(), - `deleted_at` timestamp NULL DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `states` --- - -INSERT INTO `states` (`id`, `name`, `country_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(1, 'Andaman and Nicobar Islands', 101, 0, '2021-04-06 01:11:20', '2021-10-11 00:43:52', NULL), -(2, 'Andhra Pradesh', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3, 'Arunachal Pradesh', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4, 'Assam', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(5, 'Bihar', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(6, 'Chandigarh', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(7, 'Chhattisgarh', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(8, 'Dadra and Nagar Haveli', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(9, 'Daman and Diu', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(10, 'Delhi', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(11, 'Goa', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(12, 'Gujarat', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(13, 'Haryana', 101, 0, '2021-04-06 01:11:20', '2021-10-11 00:53:13', NULL), -(14, 'Himachal Pradesh', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(15, 'Jammu and Kashmir', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(16, 'Jharkhand', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(17, 'Karnataka', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(18, 'Kenmore', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(19, 'Kerala', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(20, 'Lakshadweep', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(21, 'Madhya Pradesh', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(22, 'Maharashtra', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(23, 'Manipur', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(24, 'Meghalaya', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(25, 'Mizoram', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(26, 'Nagaland', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(27, 'Narora', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(28, 'Natwar', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(29, 'Odisha', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(30, 'Paschim Medinipur', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(31, 'Pondicherry', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(32, 'Punjab', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(33, 'Rajasthan', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(34, 'Sikkim', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(35, 'Tamil Nadu', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(36, 'Telangana', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(37, 'Tripura', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(38, 'Uttar Pradesh', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(39, 'Uttarakhand', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(40, 'Vaishali', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(41, 'West Bengal', 101, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(42, 'Badakhshan', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(43, 'Badgis', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(44, 'Baglan', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(45, 'Balkh', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(46, 'Bamiyan', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(47, 'Farah', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(48, 'Faryab', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(49, 'Gawr', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(50, 'Gazni', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(51, 'Herat', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(52, 'Hilmand', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(53, 'Jawzjan', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(54, 'Kabul', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(55, 'Kapisa', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(56, 'Khawst', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(57, 'Kunar', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(58, 'Lagman', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(59, 'Lawghar', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(60, 'Nangarhar', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(61, 'Nimruz', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(62, 'Nuristan', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(63, 'Paktika', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(64, 'Paktiya', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(65, 'Parwan', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(66, 'Qandahar', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(67, 'Qunduz', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(68, 'Samangan', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(69, 'Sar-e Pul', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(70, 'Takhar', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(71, 'Uruzgan', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(72, 'Wardag', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(73, 'Zabul', 1, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(74, 'Berat', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(75, 'Bulqize', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(76, 'Delvine', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(77, 'Devoll', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(78, 'Dibre', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(79, 'Durres', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(80, 'Elbasan', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(81, 'Fier', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(82, 'Gjirokaster', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(83, 'Gramsh', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(84, 'Has', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(85, 'Kavaje', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(86, 'Kolonje', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(87, 'Korce', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(88, 'Kruje', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(89, 'Kucove', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(90, 'Kukes', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(91, 'Kurbin', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(92, 'Lezhe', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(93, 'Librazhd', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(94, 'Lushnje', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(95, 'Mallakaster', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(96, 'Malsi e Madhe', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(97, 'Mat', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(98, 'Mirdite', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(99, 'Peqin', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(100, 'Permet', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(101, 'Pogradec', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(102, 'Puke', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(103, 'Sarande', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(104, 'Shkoder', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(105, 'Skrapar', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(106, 'Tepelene', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(107, 'Tirane', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(108, 'Tropoje', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(109, 'Vlore', 2, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(110, '\'Ayn Daflah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(111, '\'Ayn Tamushanat', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(112, 'Adrar', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(113, 'Algiers', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(114, 'Annabah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(115, 'Bashshar', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(116, 'Batnah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(117, 'Bijayah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(118, 'Biskrah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(119, 'Blidah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(120, 'Buirah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(121, 'Bumardas', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(122, 'Burj Bu Arririj', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(123, 'Ghalizan', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(124, 'Ghardayah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(125, 'Ilizi', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(126, 'Jijili', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(127, 'Jilfah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(128, 'Khanshalah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(129, 'Masilah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(130, 'Midyah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(131, 'Milah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(132, 'Muaskar', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(133, 'Mustaghanam', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(134, 'Naama', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(135, 'Oran', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(136, 'Ouargla', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(137, 'Qalmah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(138, 'Qustantinah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(139, 'Sakikdah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(140, 'Satif', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(141, 'Sayda\'', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(142, 'Sidi ban-al-\'Abbas', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(143, 'Suq Ahras', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(144, 'Tamanghasat', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(145, 'Tibazah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(146, 'Tibissah', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(147, 'Tilimsan', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(148, 'Tinduf', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(149, 'Tisamsilt', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(150, 'Tiyarat', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(151, 'Tizi Wazu', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(152, 'Umm-al-Bawaghi', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(153, 'Wahran', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(154, 'Warqla', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(155, 'Wilaya d Alger', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(156, 'Wilaya de Bejaia', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(157, 'Wilaya de Constantine', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(158, 'al-Aghwat', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(159, 'al-Bayadh', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(160, 'al-Jaza\'ir', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(161, 'al-Wad', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(162, 'ash-Shalif', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(163, 'at-Tarif', 3, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(164, 'Eastern', 4, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(165, 'Manu\'a', 4, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(166, 'Swains Island', 4, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(167, 'Western', 4, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(168, 'Andorra la Vella', 5, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(169, 'Canillo', 5, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(170, 'Encamp', 5, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(171, 'La Massana', 5, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(172, 'Les Escaldes', 5, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(173, 'Ordino', 5, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(174, 'Sant Julia de Loria', 5, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(175, 'Bengo', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(176, 'Benguela', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(177, 'Bie', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(178, 'Cabinda', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(179, 'Cunene', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(180, 'Huambo', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(181, 'Huila', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(182, 'Kuando-Kubango', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(183, 'Kwanza Norte', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(184, 'Kwanza Sul', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(185, 'Luanda', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(186, 'Lunda Norte', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(187, 'Lunda Sul', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(188, 'Malanje', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(189, 'Moxico', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(190, 'Namibe', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(191, 'Uige', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(192, 'Zaire', 6, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(193, 'Other Provinces', 7, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(194, 'Sector claimed by Argentina/Ch', 8, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(195, 'Sector claimed by Argentina/UK', 8, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(196, 'Sector claimed by Australia', 8, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(197, 'Sector claimed by France', 8, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(198, 'Sector claimed by New Zealand', 8, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(199, 'Sector claimed by Norway', 8, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(200, 'Unclaimed Sector', 8, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(201, 'Barbuda', 9, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(202, 'Saint George', 9, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(203, 'Saint John', 9, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(204, 'Saint Mary', 9, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(205, 'Saint Paul', 9, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(206, 'Saint Peter', 9, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(207, 'Saint Philip', 9, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(208, 'Buenos Aires', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(209, 'Catamarca', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(210, 'Chaco', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(211, 'Chubut', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(212, 'Cordoba', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(213, 'Corrientes', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(214, 'Distrito Federal', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(215, 'Entre Rios', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(216, 'Formosa', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(217, 'Jujuy', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(218, 'La Pampa', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(219, 'La Rioja', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(220, 'Mendoza', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(221, 'Misiones', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(222, 'Neuquen', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(223, 'Rio Negro', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(224, 'Salta', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(225, 'San Juan', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(226, 'San Luis', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(227, 'Santa Cruz', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(228, 'Santa Fe', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(229, 'Santiago del Estero', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(230, 'Tierra del Fuego', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(231, 'Tucuman', 10, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(232, 'Aragatsotn', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(233, 'Ararat', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(234, 'Armavir', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(235, 'Gegharkunik', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(236, 'Kotaik', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(237, 'Lori', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(238, 'Shirak', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(239, 'Stepanakert', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(240, 'Syunik', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(241, 'Tavush', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(242, 'Vayots Dzor', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(243, 'Yerevan', 11, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(244, 'Aruba', 12, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(245, 'Auckland', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(246, 'Australian Capital Territory', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(247, 'Balgowlah', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(248, 'Balmain', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(249, 'Bankstown', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(250, 'Baulkham Hills', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(251, 'Bonnet Bay', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(252, 'Camberwell', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(253, 'Carole Park', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(254, 'Castle Hill', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(255, 'Caulfield', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(256, 'Chatswood', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(257, 'Cheltenham', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(258, 'Cherrybrook', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(259, 'Clayton', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(260, 'Collingwood', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(261, 'Frenchs Forest', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(262, 'Hawthorn', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(263, 'Jannnali', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(264, 'Knoxfield', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(265, 'Melbourne', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(266, 'New South Wales', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(267, 'Northern Territory', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(268, 'Perth', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(269, 'Queensland', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(270, 'South Australia', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(271, 'Tasmania', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(272, 'Templestowe', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(273, 'Victoria', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(274, 'Werribee south', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(275, 'Western Australia', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(276, 'Wheeler', 13, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(277, 'Bundesland Salzburg', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(278, 'Bundesland Steiermark', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(279, 'Bundesland Tirol', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(280, 'Burgenland', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(281, 'Carinthia', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(282, 'Karnten', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(283, 'Liezen', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(284, 'Lower Austria', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(285, 'Niederosterreich', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(286, 'Oberosterreich', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(287, 'Salzburg', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(288, 'Schleswig-Holstein', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(289, 'Steiermark', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(290, 'Styria', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(291, 'Tirol', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(292, 'Upper Austria', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(293, 'Vorarlberg', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(294, 'Wien', 14, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(295, 'Abseron', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(296, 'Baki Sahari', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(297, 'Ganca', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(298, 'Ganja', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(299, 'Kalbacar', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(300, 'Lankaran', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(301, 'Mil-Qarabax', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(302, 'Mugan-Salyan', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(303, 'Nagorni-Qarabax', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(304, 'Naxcivan', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(305, 'Priaraks', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(306, 'Qazax', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(307, 'Saki', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(308, 'Sirvan', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(309, 'Xacmaz', 15, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(310, 'Abaco', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(311, 'Acklins Island', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(312, 'Andros', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(313, 'Berry Islands', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(314, 'Biminis', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(315, 'Cat Island', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(316, 'Crooked Island', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(317, 'Eleuthera', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(318, 'Exuma and Cays', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(319, 'Grand Bahama', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(320, 'Inagua Islands', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(321, 'Long Island', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(322, 'Mayaguana', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(323, 'New Providence', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(324, 'Ragged Island', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(325, 'Rum Cay', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(326, 'San Salvador', 16, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(327, '\'Isa', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(328, 'Badiyah', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(329, 'Hidd', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(330, 'Jidd Hafs', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(331, 'Mahama', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(332, 'Manama', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(333, 'Sitrah', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(334, 'al-Manamah', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(335, 'al-Muharraq', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(336, 'ar-Rifa\'a', 17, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(337, 'Bagar Hat', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(338, 'Bandarban', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(339, 'Barguna', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(340, 'Barisal', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(341, 'Bhola', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(342, 'Bogora', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(343, 'Brahman Bariya', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(344, 'Chandpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(345, 'Chattagam', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(346, 'Chittagong Division', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(347, 'Chuadanga', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(348, 'Dhaka', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(349, 'Dinajpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(350, 'Faridpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(351, 'Feni', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(352, 'Gaybanda', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(353, 'Gazipur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(354, 'Gopalganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(355, 'Habiganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(356, 'Jaipur Hat', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(357, 'Jamalpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(358, 'Jessor', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(359, 'Jhalakati', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(360, 'Jhanaydah', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(361, 'Khagrachhari', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(362, 'Khulna', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(363, 'Kishorganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(364, 'Koks Bazar', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(365, 'Komilla', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(366, 'Kurigram', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(367, 'Kushtiya', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(368, 'Lakshmipur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(369, 'Lalmanir Hat', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(370, 'Madaripur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(371, 'Magura', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(372, 'Maimansingh', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(373, 'Manikganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(374, 'Maulvi Bazar', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(375, 'Meherpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(376, 'Munshiganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(377, 'Naral', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(378, 'Narayanganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(379, 'Narsingdi', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(380, 'Nator', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(381, 'Naugaon', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(382, 'Nawabganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(383, 'Netrakona', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(384, 'Nilphamari', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(385, 'Noakhali', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(386, 'Pabna', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(387, 'Panchagarh', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(388, 'Patuakhali', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(389, 'Pirojpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(390, 'Rajbari', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(391, 'Rajshahi', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(392, 'Rangamati', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(393, 'Rangpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(394, 'Satkhira', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(395, 'Shariatpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(396, 'Sherpur', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(397, 'Silhat', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(398, 'Sirajganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(399, 'Sunamganj', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(400, 'Tangayal', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(401, 'Thakurgaon', 18, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(402, 'Christ Church', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(403, 'Saint Andrew', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(404, 'Saint George', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(405, 'Saint James', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(406, 'Saint John', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(407, 'Saint Joseph', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(408, 'Saint Lucy', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(409, 'Saint Michael', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(410, 'Saint Peter', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(411, 'Saint Philip', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(412, 'Saint Thomas', 19, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(413, 'Brest', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(414, 'Homjel\'', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(415, 'Hrodna', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(416, 'Mahiljow', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(417, 'Mahilyowskaya Voblasts', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(418, 'Minsk', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(419, 'Minskaja Voblasts\'', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(420, 'Petrik', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(421, 'Vicebsk', 20, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(422, 'Antwerpen', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(423, 'Berchem', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(424, 'Brabant', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(425, 'Brabant Wallon', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(426, 'Brussel', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(427, 'East Flanders', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(428, 'Hainaut', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(429, 'Liege', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(430, 'Limburg', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(431, 'Luxembourg', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(432, 'Namur', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(433, 'Ontario', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(434, 'Oost-Vlaanderen', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(435, 'Provincie Brabant', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(436, 'Vlaams-Brabant', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(437, 'Wallonne', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(438, 'West-Vlaanderen', 21, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(439, 'Belize', 22, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(440, 'Cayo', 22, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(441, 'Corozal', 22, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(442, 'Orange Walk', 22, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(443, 'Stann Creek', 22, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(444, 'Toledo', 22, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(445, 'Alibori', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(446, 'Atacora', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(447, 'Atlantique', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(448, 'Borgou', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(449, 'Collines', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(450, 'Couffo', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(451, 'Donga', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(452, 'Littoral', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(453, 'Mono', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(454, 'Oueme', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(455, 'Plateau', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(456, 'Zou', 23, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(457, 'Hamilton', 24, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(458, 'Saint George', 24, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(459, 'Bumthang', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(460, 'Chhukha', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(461, 'Chirang', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(462, 'Daga', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(463, 'Geylegphug', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(464, 'Ha', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(465, 'Lhuntshi', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(466, 'Mongar', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(467, 'Pemagatsel', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(468, 'Punakha', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(469, 'Rinpung', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(470, 'Samchi', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(471, 'Samdrup Jongkhar', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(472, 'Shemgang', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(473, 'Tashigang', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(474, 'Timphu', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(475, 'Tongsa', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(476, 'Wangdiphodrang', 25, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(477, 'Beni', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(478, 'Chuquisaca', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(479, 'Cochabamba', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(480, 'La Paz', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(481, 'Oruro', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(482, 'Pando', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(483, 'Potosi', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(484, 'Santa Cruz', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(485, 'Tarija', 26, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(486, 'Federacija Bosna i Hercegovina', 27, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(487, 'Republika Srpska', 27, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(488, 'Central Bobonong', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(489, 'Central Boteti', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(490, 'Central Mahalapye', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(491, 'Central Serowe-Palapye', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(492, 'Central Tutume', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(493, 'Chobe', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(494, 'Francistown', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(495, 'Gaborone', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(496, 'Ghanzi', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(497, 'Jwaneng', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(498, 'Kgalagadi North', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(499, 'Kgalagadi South', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(500, 'Kgatleng', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(501, 'Kweneng', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(502, 'Lobatse', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(503, 'Ngamiland', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(504, 'Ngwaketse', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(505, 'North East', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(506, 'Okavango', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(507, 'Orapa', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(508, 'Selibe Phikwe', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(509, 'South East', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(510, 'Sowa', 28, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(511, 'Bouvet Island', 29, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(512, 'Acre', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(513, 'Alagoas', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(514, 'Amapa', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(515, 'Amazonas', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(516, 'Bahia', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(517, 'Ceara', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(518, 'Distrito Federal', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(519, 'Espirito Santo', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(520, 'Estado de Sao Paulo', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(521, 'Goias', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(522, 'Maranhao', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(523, 'Mato Grosso', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(524, 'Mato Grosso do Sul', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(525, 'Minas Gerais', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(526, 'Para', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(527, 'Paraiba', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(528, 'Parana', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(529, 'Pernambuco', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(530, 'Piaui', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(531, 'Rio Grande do Norte', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(532, 'Rio Grande do Sul', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(533, 'Rio de Janeiro', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(534, 'Rondonia', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(535, 'Roraima', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(536, 'Santa Catarina', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(537, 'Sao Paulo', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(538, 'Sergipe', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(539, 'Tocantins', 30, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(540, 'British Indian Ocean Territory', 31, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(541, 'Belait', 32, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(542, 'Brunei-Muara', 32, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(543, 'Temburong', 32, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(544, 'Tutong', 32, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(545, 'Blagoevgrad', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(546, 'Burgas', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(547, 'Dobrich', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(548, 'Gabrovo', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(549, 'Haskovo', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(550, 'Jambol', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(551, 'Kardzhali', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(552, 'Kjustendil', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(553, 'Lovech', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(554, 'Montana', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(555, 'Oblast Sofiya-Grad', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(556, 'Pazardzhik', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(557, 'Pernik', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(558, 'Pleven', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(559, 'Plovdiv', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(560, 'Razgrad', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(561, 'Ruse', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(562, 'Shumen', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(563, 'Silistra', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(564, 'Sliven', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(565, 'Smoljan', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(566, 'Sofija grad', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(567, 'Sofijska oblast', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(568, 'Stara Zagora', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(569, 'Targovishte', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(570, 'Varna', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(571, 'Veliko Tarnovo', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(572, 'Vidin', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(573, 'Vraca', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(574, 'Yablaniza', 33, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(575, 'Bale', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(576, 'Bam', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(577, 'Bazega', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(578, 'Bougouriba', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(579, 'Boulgou', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(580, 'Boulkiemde', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(581, 'Comoe', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(582, 'Ganzourgou', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(583, 'Gnagna', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(584, 'Gourma', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(585, 'Houet', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(586, 'Ioba', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(587, 'Kadiogo', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(588, 'Kenedougou', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(589, 'Komandjari', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(590, 'Kompienga', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(591, 'Kossi', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(592, 'Kouritenga', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(593, 'Kourweogo', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(594, 'Leraba', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(595, 'Mouhoun', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(596, 'Nahouri', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(597, 'Namentenga', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(598, 'Noumbiel', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(599, 'Oubritenga', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(600, 'Oudalan', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(601, 'Passore', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(602, 'Poni', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(603, 'Sanguie', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(604, 'Sanmatenga', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(605, 'Seno', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(606, 'Sissili', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(607, 'Soum', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(608, 'Sourou', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(609, 'Tapoa', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(610, 'Tuy', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(611, 'Yatenga', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(612, 'Zondoma', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(613, 'Zoundweogo', 34, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(614, 'Bubanza', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(615, 'Bujumbura', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(616, 'Bururi', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(617, 'Cankuzo', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(618, 'Cibitoke', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(619, 'Gitega', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(620, 'Karuzi', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(621, 'Kayanza', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(622, 'Kirundo', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(623, 'Makamba', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(624, 'Muramvya', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(625, 'Muyinga', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(626, 'Ngozi', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(627, 'Rutana', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(628, 'Ruyigi', 35, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(629, 'Banteay Mean Chey', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(630, 'Bat Dambang', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(631, 'Kampong Cham', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(632, 'Kampong Chhnang', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(633, 'Kampong Spoeu', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(634, 'Kampong Thum', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(635, 'Kampot', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(636, 'Kandal', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(637, 'Kaoh Kong', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(638, 'Kracheh', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(639, 'Krong Kaeb', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(640, 'Krong Pailin', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(641, 'Krong Preah Sihanouk', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(642, 'Mondol Kiri', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(643, 'Otdar Mean Chey', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(644, 'Phnum Penh', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(645, 'Pousat', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(646, 'Preah Vihear', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(647, 'Prey Veaeng', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(648, 'Rotanak Kiri', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(649, 'Siem Reab', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(650, 'Stueng Traeng', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL); -INSERT INTO `states` (`id`, `name`, `country_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(651, 'Svay Rieng', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(652, 'Takaev', 36, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(653, 'Adamaoua', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(654, 'Centre', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(655, 'Est', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(656, 'Littoral', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(657, 'Nord', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(658, 'Nord Extreme', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(659, 'Nordouest', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(660, 'Ouest', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(661, 'Sud', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(662, 'Sudouest', 37, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(663, 'Alberta', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(664, 'British Columbia', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(665, 'Manitoba', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(666, 'New Brunswick', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(667, 'Newfoundland and Labrador', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(668, 'Northwest Territories', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(669, 'Nova Scotia', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(670, 'Nunavut', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(671, 'Ontario', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(672, 'Prince Edward Island', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(673, 'Quebec', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(674, 'Saskatchewan', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(675, 'Yukon', 38, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(676, 'Boavista', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(677, 'Brava', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(678, 'Fogo', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(679, 'Maio', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(680, 'Sal', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(681, 'Santo Antao', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(682, 'Sao Nicolau', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(683, 'Sao Tiago', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(684, 'Sao Vicente', 39, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(685, 'Grand Cayman', 40, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(686, 'Bamingui-Bangoran', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(687, 'Bangui', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(688, 'Basse-Kotto', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(689, 'Haut-Mbomou', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(690, 'Haute-Kotto', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(691, 'Kemo', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(692, 'Lobaye', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(693, 'Mambere-Kadei', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(694, 'Mbomou', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(695, 'Nana-Gribizi', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(696, 'Nana-Mambere', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(697, 'Ombella Mpoko', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(698, 'Ouaka', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(699, 'Ouham', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(700, 'Ouham-Pende', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(701, 'Sangha-Mbaere', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(702, 'Vakaga', 41, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(703, 'Batha', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(704, 'Biltine', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(705, 'Bourkou-Ennedi-Tibesti', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(706, 'Chari-Baguirmi', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(707, 'Guera', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(708, 'Kanem', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(709, 'Lac', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(710, 'Logone Occidental', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(711, 'Logone Oriental', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(712, 'Mayo-Kebbi', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(713, 'Moyen-Chari', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(714, 'Ouaddai', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(715, 'Salamat', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(716, 'Tandjile', 42, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(717, 'Aisen', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(718, 'Antofagasta', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(719, 'Araucania', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(720, 'Atacama', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(721, 'Bio Bio', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(722, 'Coquimbo', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(723, 'Libertador General Bernardo O\'', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(724, 'Los Lagos', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(725, 'Magellanes', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(726, 'Maule', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(727, 'Metropolitana', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(728, 'Metropolitana de Santiago', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(729, 'Tarapaca', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(730, 'Valparaiso', 43, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(731, 'Anhui', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(734, 'Aomen', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(735, 'Beijing', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(736, 'Beijing Shi', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(737, 'Chongqing', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(738, 'Fujian', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(740, 'Gansu', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(741, 'Guangdong', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(743, 'Guangxi', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(744, 'Guizhou', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(745, 'Hainan', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(746, 'Hebei', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(747, 'Heilongjiang', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(748, 'Henan', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(749, 'Hubei', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(750, 'Hunan', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(751, 'Jiangsu', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(753, 'Jiangxi', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(754, 'Jilin', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(755, 'Liaoning', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(757, 'Nei Monggol', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(758, 'Ningxia Hui', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(759, 'Qinghai', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(760, 'Shaanxi', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(761, 'Shandong', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(763, 'Shanghai', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(764, 'Shanxi', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(765, 'Sichuan', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(766, 'Tianjin', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(767, 'Xianggang', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(768, 'Xinjiang', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(769, 'Xizang', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(770, 'Yunnan', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(771, 'Zhejiang', 44, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(773, 'Christmas Island', 45, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(774, 'Cocos (Keeling) Islands', 46, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(775, 'Amazonas', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(776, 'Antioquia', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(777, 'Arauca', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(778, 'Atlantico', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(779, 'Bogota', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(780, 'Bolivar', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(781, 'Boyaca', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(782, 'Caldas', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(783, 'Caqueta', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(784, 'Casanare', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(785, 'Cauca', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(786, 'Cesar', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(787, 'Choco', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(788, 'Cordoba', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(789, 'Cundinamarca', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(790, 'Guainia', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(791, 'Guaviare', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(792, 'Huila', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(793, 'La Guajira', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(794, 'Magdalena', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(795, 'Meta', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(796, 'Narino', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(797, 'Norte de Santander', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(798, 'Putumayo', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(799, 'Quindio', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(800, 'Risaralda', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(801, 'San Andres y Providencia', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(802, 'Santander', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(803, 'Sucre', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(804, 'Tolima', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(805, 'Valle del Cauca', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(806, 'Vaupes', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(807, 'Vichada', 47, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(808, 'Mwali', 48, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(809, 'Njazidja', 48, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(810, 'Nzwani', 48, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(811, 'Bouenza', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(812, 'Brazzaville', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(813, 'Cuvette', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(814, 'Kouilou', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(815, 'Lekoumou', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(816, 'Likouala', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(817, 'Niari', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(818, 'Plateaux', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(819, 'Pool', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(820, 'Sangha', 49, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(821, 'Bandundu', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(822, 'Bas-Congo', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(823, 'Equateur', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(824, 'Haut-Congo', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(825, 'Kasai-Occidental', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(826, 'Kasai-Oriental', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(827, 'Katanga', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(828, 'Kinshasa', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(829, 'Maniema', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(830, 'Nord-Kivu', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(831, 'Sud-Kivu', 50, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(832, 'Aitutaki', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(833, 'Atiu', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(834, 'Mangaia', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(835, 'Manihiki', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(836, 'Mauke', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(837, 'Mitiaro', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(838, 'Nassau', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(839, 'Pukapuka', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(840, 'Rakahanga', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(841, 'Rarotonga', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(842, 'Tongareva', 51, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(843, 'Alajuela', 52, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(844, 'Cartago', 52, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(845, 'Guanacaste', 52, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(846, 'Heredia', 52, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(847, 'Limon', 52, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(848, 'Puntarenas', 52, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(849, 'San Jose', 52, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(850, 'Abidjan', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(851, 'Agneby', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(852, 'Bafing', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(853, 'Denguele', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(854, 'Dix-huit Montagnes', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(855, 'Fromager', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(856, 'Haut-Sassandra', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(857, 'Lacs', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(858, 'Lagunes', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(859, 'Marahoue', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(860, 'Moyen-Cavally', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(861, 'Moyen-Comoe', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(862, 'N\'zi-Comoe', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(863, 'Sassandra', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(864, 'Savanes', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(865, 'Sud-Bandama', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(866, 'Sud-Comoe', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(867, 'Vallee du Bandama', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(868, 'Worodougou', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(869, 'Zanzan', 53, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(870, 'Bjelovar-Bilogora', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(871, 'Dubrovnik-Neretva', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(872, 'Grad Zagreb', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(873, 'Istra', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(874, 'Karlovac', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(875, 'Koprivnica-Krizhevci', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(876, 'Krapina-Zagorje', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(877, 'Lika-Senj', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(878, 'Medhimurje', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(879, 'Medimurska Zupanija', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(880, 'Osijek-Baranja', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(881, 'Osjecko-Baranjska Zupanija', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(882, 'Pozhega-Slavonija', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(883, 'Primorje-Gorski Kotar', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(884, 'Shibenik-Knin', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(885, 'Sisak-Moslavina', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(886, 'Slavonski Brod-Posavina', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(887, 'Split-Dalmacija', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(888, 'Varazhdin', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(889, 'Virovitica-Podravina', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(890, 'Vukovar-Srijem', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(891, 'Zadar', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(892, 'Zagreb', 54, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(893, 'Camaguey', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(894, 'Ciego de Avila', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(895, 'Cienfuegos', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(896, 'Ciudad de la Habana', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(897, 'Granma', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(898, 'Guantanamo', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(899, 'Habana', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(900, 'Holguin', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(901, 'Isla de la Juventud', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(902, 'La Habana', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(903, 'Las Tunas', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(904, 'Matanzas', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(905, 'Pinar del Rio', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(906, 'Sancti Spiritus', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(907, 'Santiago de Cuba', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(908, 'Villa Clara', 55, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(909, 'Government controlled area', 56, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(910, 'Limassol', 56, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(911, 'Nicosia District', 56, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(912, 'Paphos', 56, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(913, 'Turkish controlled area', 56, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(914, 'Central Bohemian', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(915, 'Frycovice', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(916, 'Jihocesky Kraj', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(917, 'Jihochesky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(918, 'Jihomoravsky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(919, 'Karlovarsky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(920, 'Klecany', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(921, 'Kralovehradecky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(922, 'Liberecky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(923, 'Lipov', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(924, 'Moravskoslezsky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(925, 'Olomoucky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(926, 'Olomoucky Kraj', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(927, 'Pardubicky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(928, 'Plzensky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(929, 'Praha', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(930, 'Rajhrad', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(931, 'Smirice', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(932, 'South Moravian', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(933, 'Straz nad Nisou', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(934, 'Stredochesky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(935, 'Unicov', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(936, 'Ustecky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(937, 'Valletta', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(938, 'Velesin', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(939, 'Vysochina', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(940, 'Zlinsky', 57, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(941, 'Arhus', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(942, 'Bornholm', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(943, 'Frederiksborg', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(944, 'Fyn', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(945, 'Hovedstaden', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(946, 'Kobenhavn', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(947, 'Kobenhavns Amt', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(948, 'Kobenhavns Kommune', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(949, 'Nordjylland', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(950, 'Ribe', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(951, 'Ringkobing', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(952, 'Roervig', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(953, 'Roskilde', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(954, 'Roslev', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(955, 'Sjaelland', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(956, 'Soeborg', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(957, 'Sonderjylland', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(958, 'Storstrom', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(959, 'Syddanmark', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(960, 'Toelloese', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(961, 'Vejle', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(962, 'Vestsjalland', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(963, 'Viborg', 58, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(964, '\'Ali Sabih', 59, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(965, 'Dikhil', 59, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(966, 'Jibuti', 59, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(967, 'Tajurah', 59, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(968, 'Ubuk', 59, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(969, 'Saint Andrew', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(970, 'Saint David', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(971, 'Saint George', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(972, 'Saint John', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(973, 'Saint Joseph', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(974, 'Saint Luke', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(975, 'Saint Mark', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(976, 'Saint Patrick', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(977, 'Saint Paul', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(978, 'Saint Peter', 60, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(979, 'Azua', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(980, 'Bahoruco', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(981, 'Barahona', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(982, 'Dajabon', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(983, 'Distrito Nacional', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(984, 'Duarte', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(985, 'El Seybo', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(986, 'Elias Pina', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(987, 'Espaillat', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(988, 'Hato Mayor', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(989, 'Independencia', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(990, 'La Altagracia', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(991, 'La Romana', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(992, 'La Vega', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(993, 'Maria Trinidad Sanchez', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(994, 'Monsenor Nouel', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(995, 'Monte Cristi', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(996, 'Monte Plata', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(997, 'Pedernales', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(998, 'Peravia', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(999, 'Puerto Plata', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1000, 'Salcedo', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1001, 'Samana', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1002, 'San Cristobal', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1003, 'San Juan', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1004, 'San Pedro de Macoris', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1005, 'Sanchez Ramirez', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1006, 'Santiago', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1007, 'Santiago Rodriguez', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1008, 'Valverde', 61, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1009, 'Aileu', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1010, 'Ainaro', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1011, 'Ambeno', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1012, 'Baucau', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1013, 'Bobonaro', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1014, 'Cova Lima', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1015, 'Dili', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1016, 'Ermera', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1017, 'Lautem', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1018, 'Liquica', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1019, 'Manatuto', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1020, 'Manufahi', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1021, 'Viqueque', 62, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1022, 'Azuay', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1023, 'Bolivar', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1024, 'Canar', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1025, 'Carchi', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1026, 'Chimborazo', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1027, 'Cotopaxi', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1028, 'El Oro', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1029, 'Esmeraldas', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1030, 'Galapagos', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1031, 'Guayas', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1032, 'Imbabura', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1033, 'Loja', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1034, 'Los Rios', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1035, 'Manabi', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1036, 'Morona Santiago', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1037, 'Napo', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1038, 'Orellana', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1039, 'Pastaza', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1040, 'Pichincha', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1041, 'Sucumbios', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1042, 'Tungurahua', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1043, 'Zamora Chinchipe', 63, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1044, 'Aswan', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1045, 'Asyut', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1046, 'Bani Suwayf', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1047, 'Bur Sa\'id', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1048, 'Cairo', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1049, 'Dumyat', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1050, 'Kafr-ash-Shaykh', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1051, 'Matruh', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1052, 'Muhafazat ad Daqahliyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1053, 'Muhafazat al Fayyum', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1054, 'Muhafazat al Gharbiyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1055, 'Muhafazat al Iskandariyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1056, 'Muhafazat al Qahirah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1057, 'Qina', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1058, 'Sawhaj', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1059, 'Sina al-Janubiyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1060, 'Sina ash-Shamaliyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1061, 'ad-Daqahliyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1062, 'al-Bahr-al-Ahmar', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1063, 'al-Buhayrah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1064, 'al-Fayyum', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1065, 'al-Gharbiyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1066, 'al-Iskandariyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1067, 'al-Ismailiyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1068, 'al-Jizah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1069, 'al-Minufiyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1070, 'al-Minya', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1071, 'al-Qahira', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1072, 'al-Qalyubiyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1073, 'al-Uqsur', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1074, 'al-Wadi al-Jadid', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1075, 'as-Suways', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1076, 'ash-Sharqiyah', 64, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1077, 'Ahuachapan', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1078, 'Cabanas', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1079, 'Chalatenango', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1080, 'Cuscatlan', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1081, 'La Libertad', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1082, 'La Paz', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1083, 'La Union', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1084, 'Morazan', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1085, 'San Miguel', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1086, 'San Salvador', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1087, 'San Vicente', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1088, 'Santa Ana', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1089, 'Sonsonate', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1090, 'Usulutan', 65, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1091, 'Annobon', 66, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1092, 'Bioko Norte', 66, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1093, 'Bioko Sur', 66, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1094, 'Centro Sur', 66, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1095, 'Kie-Ntem', 66, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1096, 'Litoral', 66, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1097, 'Wele-Nzas', 66, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1098, 'Anseba', 67, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1099, 'Debub', 67, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1100, 'Debub-Keih-Bahri', 67, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1101, 'Gash-Barka', 67, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1102, 'Maekel', 67, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1103, 'Semien-Keih-Bahri', 67, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1104, 'Harju', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1105, 'Hiiu', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1106, 'Ida-Viru', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1107, 'Jarva', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1108, 'Jogeva', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1109, 'Laane', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1110, 'Laane-Viru', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1111, 'Parnu', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1112, 'Polva', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1113, 'Rapla', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1114, 'Saare', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1115, 'Tartu', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1116, 'Valga', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1117, 'Viljandi', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1118, 'Voru', 68, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1119, 'Addis Abeba', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1120, 'Afar', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1121, 'Amhara', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1122, 'Benishangul', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1123, 'Diredawa', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1124, 'Gambella', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1125, 'Harar', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1126, 'Jigjiga', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1127, 'Mekele', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1128, 'Oromia', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1129, 'Somali', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1130, 'Southern', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1131, 'Tigray', 69, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1132, 'Christmas Island', 70, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1133, 'Cocos Islands', 70, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1134, 'Coral Sea Islands', 70, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1135, 'Falkland Islands', 71, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1136, 'South Georgia', 71, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1137, 'Klaksvik', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1138, 'Nor ara Eysturoy', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1139, 'Nor oy', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1140, 'Sandoy', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1141, 'Streymoy', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1142, 'Su uroy', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1143, 'Sy ra Eysturoy', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1144, 'Torshavn', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1145, 'Vaga', 72, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1146, 'Central', 73, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1147, 'Eastern', 73, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1148, 'Northern', 73, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1149, 'South Pacific', 73, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1150, 'Western', 73, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1151, 'Ahvenanmaa', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1152, 'Etela-Karjala', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1153, 'Etela-Pohjanmaa', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1154, 'Etela-Savo', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1155, 'Etela-Suomen Laani', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1156, 'Ita-Suomen Laani', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1157, 'Ita-Uusimaa', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1158, 'Kainuu', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1159, 'Kanta-Hame', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1160, 'Keski-Pohjanmaa', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1161, 'Keski-Suomi', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1162, 'Kymenlaakso', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1163, 'Lansi-Suomen Laani', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1164, 'Lappi', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1165, 'Northern Savonia', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1166, 'Ostrobothnia', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1167, 'Oulun Laani', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1168, 'Paijat-Hame', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1169, 'Pirkanmaa', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1170, 'Pohjanmaa', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1171, 'Pohjois-Karjala', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1172, 'Pohjois-Pohjanmaa', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1173, 'Pohjois-Savo', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1174, 'Saarijarvi', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1175, 'Satakunta', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1176, 'Southern Savonia', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1177, 'Tavastia Proper', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1178, 'Uleaborgs Lan', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1179, 'Uusimaa', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1180, 'Varsinais-Suomi', 74, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1181, 'Ain', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1182, 'Aisne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1183, 'Albi Le Sequestre', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1184, 'Allier', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1185, 'Alpes-Cote dAzur', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1186, 'Alpes-Maritimes', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1187, 'Alpes-de-Haute-Provence', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1188, 'Alsace', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1189, 'Aquitaine', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1190, 'Ardeche', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1191, 'Ardennes', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1192, 'Ariege', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1193, 'Aube', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1194, 'Aude', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1195, 'Auvergne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1196, 'Aveyron', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1197, 'Bas-Rhin', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1198, 'Basse-Normandie', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1199, 'Bouches-du-Rhone', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1200, 'Bourgogne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1201, 'Bretagne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1202, 'Brittany', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1203, 'Burgundy', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1204, 'Calvados', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1205, 'Cantal', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1206, 'Cedex', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1207, 'Centre', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1208, 'Charente', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1209, 'Charente-Maritime', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1210, 'Cher', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1211, 'Correze', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1212, 'Corse-du-Sud', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1213, 'Cote-d\'Or', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1214, 'Cotes-d\'Armor', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1215, 'Creuse', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1216, 'Crolles', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1217, 'Deux-Sevres', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1218, 'Dordogne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1219, 'Doubs', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1220, 'Drome', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1221, 'Essonne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1222, 'Eure', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1223, 'Eure-et-Loir', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1224, 'Feucherolles', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1225, 'Finistere', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1226, 'Franche-Comte', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1227, 'Gard', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1228, 'Gers', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1229, 'Gironde', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1230, 'Haut-Rhin', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1231, 'Haute-Corse', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1232, 'Haute-Garonne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1233, 'Haute-Loire', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1234, 'Haute-Marne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1235, 'Haute-Saone', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1236, 'Haute-Savoie', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1237, 'Haute-Vienne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1238, 'Hautes-Alpes', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1239, 'Hautes-Pyrenees', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1240, 'Hauts-de-Seine', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1241, 'Herault', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1242, 'Ile-de-France', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1243, 'Ille-et-Vilaine', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1244, 'Indre', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1245, 'Indre-et-Loire', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1246, 'Isere', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1247, 'Jura', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1248, 'Klagenfurt', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1249, 'Landes', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1250, 'Languedoc-Roussillon', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1251, 'Larcay', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1252, 'Le Castellet', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1253, 'Le Creusot', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1254, 'Limousin', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1255, 'Loir-et-Cher', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1256, 'Loire', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1257, 'Loire-Atlantique', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1258, 'Loiret', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1259, 'Lorraine', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1260, 'Lot', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1261, 'Lot-et-Garonne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1262, 'Lower Normandy', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1263, 'Lozere', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1264, 'Maine-et-Loire', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1265, 'Manche', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1266, 'Marne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1267, 'Mayenne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1268, 'Meurthe-et-Moselle', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1269, 'Meuse', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1270, 'Midi-Pyrenees', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1271, 'Morbihan', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1272, 'Moselle', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1273, 'Nievre', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1274, 'Nord', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1275, 'Nord-Pas-de-Calais', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1276, 'Oise', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1277, 'Orne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1278, 'Paris', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1279, 'Pas-de-Calais', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1280, 'Pays de la Loire', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1281, 'Pays-de-la-Loire', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1282, 'Picardy', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1283, 'Puy-de-Dome', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1284, 'Pyrenees-Atlantiques', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1285, 'Pyrenees-Orientales', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1286, 'Quelmes', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1287, 'Rhone', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1288, 'Rhone-Alpes', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1289, 'Saint Ouen', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1290, 'Saint Viatre', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1291, 'Saone-et-Loire', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1292, 'Sarthe', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1293, 'Savoie', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1294, 'Seine-Maritime', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1295, 'Seine-Saint-Denis', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1296, 'Seine-et-Marne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL); -INSERT INTO `states` (`id`, `name`, `country_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(1297, 'Somme', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1298, 'Sophia Antipolis', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1299, 'Souvans', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1300, 'Tarn', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1301, 'Tarn-et-Garonne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1302, 'Territoire de Belfort', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1303, 'Treignac', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1304, 'Upper Normandy', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1305, 'Val-d\'Oise', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1306, 'Val-de-Marne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1307, 'Var', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1308, 'Vaucluse', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1309, 'Vellise', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1310, 'Vendee', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1311, 'Vienne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1312, 'Vosges', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1313, 'Yonne', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1314, 'Yvelines', 75, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1315, 'Cayenne', 76, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1316, 'Saint-Laurent-du-Maroni', 76, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1317, 'Iles du Vent', 77, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1318, 'Iles sous le Vent', 77, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1319, 'Marquesas', 77, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1320, 'Tuamotu', 77, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1321, 'Tubuai', 77, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1322, 'Amsterdam', 78, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1323, 'Crozet Islands', 78, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1324, 'Kerguelen', 78, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1325, 'Estuaire', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1326, 'Haut-Ogooue', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1327, 'Moyen-Ogooue', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1328, 'Ngounie', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1329, 'Nyanga', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1330, 'Ogooue-Ivindo', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1331, 'Ogooue-Lolo', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1332, 'Ogooue-Maritime', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1333, 'Woleu-Ntem', 79, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1334, 'Banjul', 80, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1335, 'Basse', 80, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1336, 'Brikama', 80, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1337, 'Janjanbureh', 80, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1338, 'Kanifing', 80, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1339, 'Kerewan', 80, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1340, 'Kuntaur', 80, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1341, 'Mansakonko', 80, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1342, 'Abhasia', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1343, 'Ajaria', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1344, 'Guria', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1345, 'Imereti', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1346, 'Kaheti', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1347, 'Kvemo Kartli', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1348, 'Mcheta-Mtianeti', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1349, 'Racha', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1350, 'Samagrelo-Zemo Svaneti', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1351, 'Samche-Zhavaheti', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1352, 'Shida Kartli', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1353, 'Tbilisi', 81, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1354, 'Auvergne', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1355, 'Baden-Wurttemberg', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1356, 'Bavaria', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1357, 'Bayern', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1358, 'Beilstein Wurtt', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1359, 'Berlin', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1360, 'Brandenburg', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1361, 'Bremen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1362, 'Dreisbach', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1363, 'Freistaat Bayern', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1364, 'Hamburg', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1365, 'Hannover', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1366, 'Heroldstatt', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1367, 'Hessen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1368, 'Kortenberg', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1369, 'Laasdorf', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1370, 'Land Baden-Wurttemberg', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1371, 'Land Bayern', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1372, 'Land Brandenburg', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1373, 'Land Hessen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1374, 'Land Mecklenburg-Vorpommern', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1375, 'Land Nordrhein-Westfalen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1376, 'Land Rheinland-Pfalz', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1377, 'Land Sachsen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1378, 'Land Sachsen-Anhalt', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1379, 'Land Thuringen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1380, 'Lower Saxony', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1381, 'Mecklenburg-Vorpommern', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1382, 'Mulfingen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1383, 'Munich', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1384, 'Neubeuern', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1385, 'Niedersachsen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1386, 'Noord-Holland', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1387, 'Nordrhein-Westfalen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1388, 'North Rhine-Westphalia', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1389, 'Osterode', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1390, 'Rheinland-Pfalz', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1391, 'Rhineland-Palatinate', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1392, 'Saarland', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1393, 'Sachsen', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1394, 'Sachsen-Anhalt', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1395, 'Saxony', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1396, 'Schleswig-Holstein', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1397, 'Thuringia', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1398, 'Webling', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1399, 'Weinstrabe', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1400, 'schlobborn', 82, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1401, 'Ashanti', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1402, 'Brong-Ahafo', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1403, 'Central', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1404, 'Eastern', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1405, 'Greater Accra', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1406, 'Northern', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1407, 'Upper East', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1408, 'Upper West', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1409, 'Volta', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1410, 'Western', 83, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1411, 'Gibraltar', 84, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1412, 'Acharnes', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1413, 'Ahaia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1414, 'Aitolia kai Akarnania', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1415, 'Argolis', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1416, 'Arkadia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1417, 'Arta', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1418, 'Attica', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1419, 'Attiki', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1420, 'Ayion Oros', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1421, 'Crete', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1422, 'Dodekanisos', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1423, 'Drama', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1424, 'Evia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1425, 'Evritania', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1426, 'Evros', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1427, 'Evvoia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1428, 'Florina', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1429, 'Fokis', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1430, 'Fthiotis', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1431, 'Grevena', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1432, 'Halandri', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1433, 'Halkidiki', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1434, 'Hania', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1435, 'Heraklion', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1436, 'Hios', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1437, 'Ilia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1438, 'Imathia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1439, 'Ioannina', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1440, 'Iraklion', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1441, 'Karditsa', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1442, 'Kastoria', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1443, 'Kavala', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1444, 'Kefallinia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1445, 'Kerkira', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1446, 'Kiklades', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1447, 'Kilkis', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1448, 'Korinthia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1449, 'Kozani', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1450, 'Lakonia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1451, 'Larisa', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1452, 'Lasithi', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1453, 'Lesvos', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1454, 'Levkas', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1455, 'Magnisia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1456, 'Messinia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1457, 'Nomos Attikis', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1458, 'Nomos Zakynthou', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1459, 'Pella', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1460, 'Pieria', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1461, 'Piraios', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1462, 'Preveza', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1463, 'Rethimni', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1464, 'Rodopi', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1465, 'Samos', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1466, 'Serrai', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1467, 'Thesprotia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1468, 'Thessaloniki', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1469, 'Trikala', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1470, 'Voiotia', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1471, 'West Greece', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1472, 'Xanthi', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1473, 'Zakinthos', 85, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1474, 'Aasiaat', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1475, 'Ammassalik', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1476, 'Illoqqortoormiut', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1477, 'Ilulissat', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1478, 'Ivittuut', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1479, 'Kangaatsiaq', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1480, 'Maniitsoq', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1481, 'Nanortalik', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1482, 'Narsaq', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1483, 'Nuuk', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1484, 'Paamiut', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1485, 'Qaanaaq', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1486, 'Qaqortoq', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1487, 'Qasigiannguit', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1488, 'Qeqertarsuaq', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1489, 'Sisimiut', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1490, 'Udenfor kommunal inddeling', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1491, 'Upernavik', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1492, 'Uummannaq', 86, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1493, 'Carriacou-Petite Martinique', 87, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1494, 'Saint Andrew', 87, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1495, 'Saint Davids', 87, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1496, 'Saint George\'s', 87, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1497, 'Saint John', 87, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1498, 'Saint Mark', 87, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1499, 'Saint Patrick', 87, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1500, 'Basse-Terre', 88, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1501, 'Grande-Terre', 88, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1502, 'Iles des Saintes', 88, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1503, 'La Desirade', 88, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1504, 'Marie-Galante', 88, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1505, 'Saint Barthelemy', 88, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1506, 'Saint Martin', 88, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1507, 'Agana Heights', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1508, 'Agat', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1509, 'Barrigada', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1510, 'Chalan-Pago-Ordot', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1511, 'Dededo', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1512, 'Hagatna', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1513, 'Inarajan', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1514, 'Mangilao', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1515, 'Merizo', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1516, 'Mongmong-Toto-Maite', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1517, 'Santa Rita', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1518, 'Sinajana', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1519, 'Talofofo', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1520, 'Tamuning', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1521, 'Yigo', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1522, 'Yona', 89, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1523, 'Alta Verapaz', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1524, 'Baja Verapaz', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1525, 'Chimaltenango', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1526, 'Chiquimula', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1527, 'El Progreso', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1528, 'Escuintla', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1529, 'Guatemala', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1530, 'Huehuetenango', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1531, 'Izabal', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1532, 'Jalapa', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1533, 'Jutiapa', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1534, 'Peten', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1535, 'Quezaltenango', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1536, 'Quiche', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1537, 'Retalhuleu', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1538, 'Sacatepequez', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1539, 'San Marcos', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1540, 'Santa Rosa', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1541, 'Solola', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1542, 'Suchitepequez', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1543, 'Totonicapan', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1544, 'Zacapa', 90, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1545, 'Alderney', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1546, 'Castel', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1547, 'Forest', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1548, 'Saint Andrew', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1549, 'Saint Martin', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1550, 'Saint Peter Port', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1551, 'Saint Pierre du Bois', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1552, 'Saint Sampson', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1553, 'Saint Saviour', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1554, 'Sark', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1555, 'Torteval', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1556, 'Vale', 91, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1557, 'Beyla', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1558, 'Boffa', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1559, 'Boke', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1560, 'Conakry', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1561, 'Coyah', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1562, 'Dabola', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1563, 'Dalaba', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1564, 'Dinguiraye', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1565, 'Faranah', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1566, 'Forecariah', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1567, 'Fria', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1568, 'Gaoual', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1569, 'Gueckedou', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1570, 'Kankan', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1571, 'Kerouane', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1572, 'Kindia', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1573, 'Kissidougou', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1574, 'Koubia', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1575, 'Koundara', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1576, 'Kouroussa', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1577, 'Labe', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1578, 'Lola', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1579, 'Macenta', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1580, 'Mali', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1581, 'Mamou', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1582, 'Mandiana', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1583, 'Nzerekore', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1584, 'Pita', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1585, 'Siguiri', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1586, 'Telimele', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1587, 'Tougue', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1588, 'Yomou', 92, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1589, 'Bafata', 93, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1590, 'Bissau', 93, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1591, 'Bolama', 93, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1592, 'Cacheu', 93, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1593, 'Gabu', 93, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1594, 'Oio', 93, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1595, 'Quinara', 93, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1596, 'Tombali', 93, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1597, 'Barima-Waini', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1598, 'Cuyuni-Mazaruni', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1599, 'Demerara-Mahaica', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1600, 'East Berbice-Corentyne', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1601, 'Essequibo Islands-West Demerar', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1602, 'Mahaica-Berbice', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1603, 'Pomeroon-Supenaam', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1604, 'Potaro-Siparuni', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1605, 'Upper Demerara-Berbice', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1606, 'Upper Takutu-Upper Essequibo', 94, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1607, 'Artibonite', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1608, 'Centre', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1609, 'Grand\'Anse', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1610, 'Nord', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1611, 'Nord-Est', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1612, 'Nord-Ouest', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1613, 'Ouest', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1614, 'Sud', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1615, 'Sud-Est', 95, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1616, 'Heard and McDonald Islands', 96, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1617, 'Atlantida', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1618, 'Choluteca', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1619, 'Colon', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1620, 'Comayagua', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1621, 'Copan', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1622, 'Cortes', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1623, 'Distrito Central', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1624, 'El Paraiso', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1625, 'Francisco Morazan', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1626, 'Gracias a Dios', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1627, 'Intibuca', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1628, 'Islas de la Bahia', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1629, 'La Paz', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1630, 'Lempira', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1631, 'Ocotepeque', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1632, 'Olancho', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1633, 'Santa Barbara', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1634, 'Valle', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1635, 'Yoro', 97, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1636, 'Hong Kong', 98, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1637, 'Bacs-Kiskun', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1638, 'Baranya', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1639, 'Bekes', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1640, 'Borsod-Abauj-Zemplen', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1641, 'Budapest', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1642, 'Csongrad', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1643, 'Fejer', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1644, 'Gyor-Moson-Sopron', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1645, 'Hajdu-Bihar', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1646, 'Heves', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1647, 'Jasz-Nagykun-Szolnok', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1648, 'Komarom-Esztergom', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1649, 'Nograd', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1650, 'Pest', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1651, 'Somogy', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1652, 'Szabolcs-Szatmar-Bereg', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1653, 'Tolna', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1654, 'Vas', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1655, 'Veszprem', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1656, 'Zala', 99, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1657, 'Austurland', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1658, 'Gullbringusysla', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1659, 'Hofu borgarsva i', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1660, 'Nor urland eystra', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1661, 'Nor urland vestra', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1662, 'Su urland', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1663, 'Su urnes', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1664, 'Vestfir ir', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1665, 'Vesturland', 100, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1666, 'Aceh', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1667, 'Bali', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1668, 'Bangka-Belitung', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1669, 'Banten', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1670, 'Bengkulu', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1671, 'Gandaria', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1672, 'Gorontalo', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1673, 'Jakarta', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1674, 'Jambi', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1675, 'Jawa Barat', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1676, 'Jawa Tengah', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1677, 'Jawa Timur', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1678, 'Kalimantan Barat', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1679, 'Kalimantan Selatan', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1680, 'Kalimantan Tengah', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1681, 'Kalimantan Timur', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1682, 'Kendal', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1683, 'Lampung', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1684, 'Maluku', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1685, 'Maluku Utara', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1686, 'Nusa Tenggara Barat', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1687, 'Nusa Tenggara Timur', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1688, 'Papua', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1689, 'Riau', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1690, 'Riau Kepulauan', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1691, 'Solo', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1692, 'Sulawesi Selatan', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1693, 'Sulawesi Tengah', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1694, 'Sulawesi Tenggara', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1695, 'Sulawesi Utara', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1696, 'Sumatera Barat', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1697, 'Sumatera Selatan', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1698, 'Sumatera Utara', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1699, 'Yogyakarta', 102, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1700, 'Ardabil', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1701, 'Azarbayjan-e Bakhtari', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1702, 'Azarbayjan-e Khavari', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1703, 'Bushehr', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1704, 'Chahar Mahal-e Bakhtiari', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1705, 'Esfahan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1706, 'Fars', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1707, 'Gilan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1708, 'Golestan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1709, 'Hamadan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1710, 'Hormozgan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1711, 'Ilam', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1712, 'Kerman', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1713, 'Kermanshah', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1714, 'Khorasan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1715, 'Khuzestan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1716, 'Kohgiluyeh-e Boyerahmad', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1717, 'Kordestan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1718, 'Lorestan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1719, 'Markazi', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1720, 'Mazandaran', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1721, 'Ostan-e Esfahan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1722, 'Qazvin', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1723, 'Qom', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1724, 'Semnan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1725, 'Sistan-e Baluchestan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1726, 'Tehran', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1727, 'Yazd', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1728, 'Zanjan', 103, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1729, 'Babil', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1730, 'Baghdad', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1731, 'Dahuk', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1732, 'Dhi Qar', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1733, 'Diyala', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1734, 'Erbil', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1735, 'Irbil', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1736, 'Karbala', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1737, 'Kurdistan', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1738, 'Maysan', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1739, 'Ninawa', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1740, 'Salah-ad-Din', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1741, 'Wasit', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1742, 'al-Anbar', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1743, 'al-Basrah', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1744, 'al-Muthanna', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1745, 'al-Qadisiyah', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1746, 'an-Najaf', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1747, 'as-Sulaymaniyah', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1748, 'at-Ta\'mim', 104, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1749, 'Armagh', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1750, 'Carlow', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1751, 'Cavan', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1752, 'Clare', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1753, 'Cork', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1754, 'Donegal', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1755, 'Dublin', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1756, 'Galway', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1757, 'Kerry', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1758, 'Kildare', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1759, 'Kilkenny', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1760, 'Laois', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1761, 'Leinster', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1762, 'Leitrim', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1763, 'Limerick', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1764, 'Loch Garman', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1765, 'Longford', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1766, 'Louth', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1767, 'Mayo', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1768, 'Meath', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1769, 'Monaghan', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1770, 'Offaly', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1771, 'Roscommon', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1772, 'Sligo', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1773, 'Tipperary North Riding', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1774, 'Tipperary South Riding', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1775, 'Ulster', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1776, 'Waterford', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1777, 'Westmeath', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1778, 'Wexford', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1779, 'Wicklow', 105, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1780, 'Beit Hanania', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1781, 'Ben Gurion Airport', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1782, 'Bethlehem', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1783, 'Caesarea', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1784, 'Centre', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1785, 'Gaza', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1786, 'Hadaron', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1787, 'Haifa District', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1788, 'Hamerkaz', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1789, 'Hazafon', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1790, 'Hebron', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1791, 'Jaffa', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1792, 'Jerusalem', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1793, 'Khefa', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1794, 'Kiryat Yam', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1795, 'Lower Galilee', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1796, 'Qalqilya', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1797, 'Talme Elazar', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1798, 'Tel Aviv', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1799, 'Tsafon', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1800, 'Umm El Fahem', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1801, 'Yerushalayim', 106, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1802, 'Abruzzi', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1803, 'Abruzzo', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1804, 'Agrigento', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1805, 'Alessandria', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1806, 'Ancona', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1807, 'Arezzo', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1808, 'Ascoli Piceno', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1809, 'Asti', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1810, 'Avellino', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1811, 'Bari', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1812, 'Basilicata', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1813, 'Belluno', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1814, 'Benevento', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1815, 'Bergamo', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1816, 'Biella', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1817, 'Bologna', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1818, 'Bolzano', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1819, 'Brescia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1820, 'Brindisi', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1821, 'Calabria', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1822, 'Campania', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1823, 'Cartoceto', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1824, 'Caserta', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1825, 'Catania', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1826, 'Chieti', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1827, 'Como', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1828, 'Cosenza', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1829, 'Cremona', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1830, 'Cuneo', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1831, 'Emilia-Romagna', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1832, 'Ferrara', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1833, 'Firenze', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1834, 'Florence', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1835, 'Forli-Cesena ', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1836, 'Friuli-Venezia Giulia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1837, 'Frosinone', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1838, 'Genoa', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1839, 'Gorizia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1840, 'L\'Aquila', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1841, 'Lazio', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1842, 'Lecce', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1843, 'Lecco', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1845, 'Liguria', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1846, 'Lodi', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1847, 'Lombardia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1848, 'Lombardy', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1849, 'Macerata', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1850, 'Mantova', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1851, 'Marche', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1852, 'Messina', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1853, 'Milan', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1854, 'Modena', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1855, 'Molise', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1856, 'Molteno', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1857, 'Montenegro', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1858, 'Monza and Brianza', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1859, 'Naples', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1860, 'Novara', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1861, 'Padova', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1862, 'Parma', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1863, 'Pavia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1864, 'Perugia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1865, 'Pesaro-Urbino', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1866, 'Piacenza', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1867, 'Piedmont', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1868, 'Piemonte', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1869, 'Pisa', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1870, 'Pordenone', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1871, 'Potenza', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1872, 'Puglia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1873, 'Reggio Emilia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1874, 'Rimini', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1875, 'Roma', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1876, 'Salerno', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1877, 'Sardegna', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1878, 'Sassari', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1879, 'Savona', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1880, 'Sicilia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1881, 'Siena', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1882, 'Sondrio', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1883, 'South Tyrol', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1884, 'Taranto', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1885, 'Teramo', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1886, 'Torino', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1887, 'Toscana', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1888, 'Trapani', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1889, 'Trentino-Alto Adige', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1890, 'Trento', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1891, 'Treviso', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1892, 'Udine', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1893, 'Umbria', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1894, 'Valle d\'Aosta', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1895, 'Varese', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1896, 'Veneto', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1897, 'Venezia', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1898, 'Verbano-Cusio-Ossola', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1899, 'Vercelli', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1900, 'Verona', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1901, 'Vicenza', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1902, 'Viterbo', 107, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1903, 'Buxoro Viloyati', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1904, 'Clarendon', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1905, 'Hanover', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1906, 'Kingston', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1907, 'Manchester', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1908, 'Portland', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1909, 'Saint Andrews', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1910, 'Saint Ann', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1911, 'Saint Catherine', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1912, 'Saint Elizabeth', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1913, 'Saint James', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1914, 'Saint Mary', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1915, 'Saint Thomas', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1916, 'Trelawney', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1917, 'Westmoreland', 108, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1918, 'Aichi', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1919, 'Akita', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1920, 'Aomori', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1921, 'Chiba', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1922, 'Ehime', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1923, 'Fukui', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1924, 'Fukuoka', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1925, 'Fukushima', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1926, 'Gifu', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1927, 'Gumma', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1928, 'Hiroshima', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1929, 'Hokkaido', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1930, 'Hyogo', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1931, 'Ibaraki', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL); -INSERT INTO `states` (`id`, `name`, `country_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(1932, 'Ishikawa', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1933, 'Iwate', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1934, 'Kagawa', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1935, 'Kagoshima', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1936, 'Kanagawa', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1937, 'Kanto', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1938, 'Kochi', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1939, 'Kumamoto', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1940, 'Kyoto', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1941, 'Mie', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1942, 'Miyagi', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1943, 'Miyazaki', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1944, 'Nagano', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1945, 'Nagasaki', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1946, 'Nara', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1947, 'Niigata', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1948, 'Oita', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1949, 'Okayama', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1950, 'Okinawa', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1951, 'Osaka', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1952, 'Saga', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1953, 'Saitama', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1954, 'Shiga', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1955, 'Shimane', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1956, 'Shizuoka', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1957, 'Tochigi', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1958, 'Tokushima', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1959, 'Tokyo', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1960, 'Tottori', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1961, 'Toyama', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1962, 'Wakayama', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1963, 'Yamagata', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1964, 'Yamaguchi', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1965, 'Yamanashi', 109, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1966, 'Grouville', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1967, 'Saint Brelade', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1968, 'Saint Clement', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1969, 'Saint Helier', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1970, 'Saint John', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1971, 'Saint Lawrence', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1972, 'Saint Martin', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1973, 'Saint Mary', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1974, 'Saint Peter', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1975, 'Saint Saviour', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1976, 'Trinity', 110, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1977, '\'Ajlun', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1978, 'Amman', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1979, 'Irbid', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1980, 'Jarash', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1981, 'Ma\'an', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1982, 'Madaba', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1983, 'al-\'Aqabah', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1984, 'al-Balqa\'', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1985, 'al-Karak', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1986, 'al-Mafraq', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1987, 'at-Tafilah', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1988, 'az-Zarqa\'', 111, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1989, 'Akmecet', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1990, 'Akmola', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1991, 'Aktobe', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1992, 'Almati', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1993, 'Atirau', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1994, 'Batis Kazakstan', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1995, 'Burlinsky Region', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1996, 'Karagandi', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1997, 'Kostanay', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1998, 'Mankistau', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(1999, 'Ontustik Kazakstan', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2000, 'Pavlodar', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2001, 'Sigis Kazakstan', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2002, 'Soltustik Kazakstan', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2003, 'Taraz', 112, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2004, 'Central', 113, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2005, 'Coast', 113, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2006, 'Eastern', 113, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2007, 'Nairobi', 113, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2008, 'North Eastern', 113, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2009, 'Nyanza', 113, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2010, 'Rift Valley', 113, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2011, 'Western', 113, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2012, 'Abaiang', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2013, 'Abemana', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2014, 'Aranuka', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2015, 'Arorae', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2016, 'Banaba', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2017, 'Beru', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2018, 'Butaritari', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2019, 'Kiritimati', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2020, 'Kuria', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2021, 'Maiana', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2022, 'Makin', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2023, 'Marakei', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2024, 'Nikunau', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2025, 'Nonouti', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2026, 'Onotoa', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2027, 'Phoenix Islands', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2028, 'Tabiteuea North', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2029, 'Tabiteuea South', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2030, 'Tabuaeran', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2031, 'Tamana', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2032, 'Tarawa North', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2033, 'Tarawa South', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2034, 'Teraina', 114, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2035, 'Chagangdo', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2036, 'Hamgyeongbukto', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2037, 'Hamgyeongnamdo', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2038, 'Hwanghaebukto', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2039, 'Hwanghaenamdo', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2040, 'Kaeseong', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2041, 'Kangweon', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2042, 'Nampo', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2043, 'Pyeonganbukto', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2044, 'Pyeongannamdo', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2045, 'Pyeongyang', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2046, 'Yanggang', 115, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2047, 'Busan', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2048, 'Cheju', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2049, 'Chollabuk', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2050, 'Chollanam', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2051, 'Chungbuk', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2052, 'Chungcheongbuk', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2053, 'Chungcheongnam', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2054, 'Chungnam', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2055, 'Daegu', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2056, 'Gangwon-do', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2057, 'Goyang-si', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2058, 'Gyeonggi-do', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2059, 'Gyeongsang ', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2060, 'Gyeongsangnam-do', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2061, 'Incheon', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2062, 'Jeju-Si', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2063, 'Jeonbuk', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2064, 'Kangweon', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2065, 'Kwangju', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2066, 'Kyeonggi', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2067, 'Kyeongsangbuk', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2068, 'Kyeongsangnam', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2069, 'Kyonggi-do', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2070, 'Kyungbuk-Do', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2071, 'Kyunggi-Do', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2072, 'Kyunggi-do', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2073, 'Pusan', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2074, 'Seoul', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2075, 'Sudogwon', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2076, 'Taegu', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2077, 'Taejeon', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2078, 'Taejon-gwangyoksi', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2079, 'Ulsan', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2080, 'Wonju', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2081, 'gwangyoksi', 116, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2082, 'Al Asimah', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2083, 'Hawalli', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2084, 'Mishref', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2085, 'Qadesiya', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2086, 'Safat', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2087, 'Salmiya', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2088, 'al-Ahmadi', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2089, 'al-Farwaniyah', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2090, 'al-Jahra', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2091, 'al-Kuwayt', 117, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2092, 'Batken', 118, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2093, 'Bishkek', 118, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2094, 'Chui', 118, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2095, 'Issyk-Kul', 118, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2096, 'Jalal-Abad', 118, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2097, 'Naryn', 118, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2098, 'Osh', 118, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2099, 'Talas', 118, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2100, 'Attopu', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2101, 'Bokeo', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2102, 'Bolikhamsay', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2103, 'Champasak', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2104, 'Houaphanh', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2105, 'Khammouane', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2106, 'Luang Nam Tha', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2107, 'Luang Prabang', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2108, 'Oudomxay', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2109, 'Phongsaly', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2110, 'Saravan', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2111, 'Savannakhet', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2112, 'Sekong', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2113, 'Viangchan Prefecture', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2114, 'Viangchan Province', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2115, 'Xaignabury', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2116, 'Xiang Khuang', 119, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2117, 'Aizkraukles', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2118, 'Aluksnes', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2119, 'Balvu', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2120, 'Bauskas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2121, 'Cesu', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2122, 'Daugavpils', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2123, 'Daugavpils City', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2124, 'Dobeles', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2125, 'Gulbenes', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2126, 'Jekabspils', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2127, 'Jelgava', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2128, 'Jelgavas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2129, 'Jurmala City', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2130, 'Kraslavas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2131, 'Kuldigas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2132, 'Liepaja', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2133, 'Liepajas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2134, 'Limbazhu', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2135, 'Ludzas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2136, 'Madonas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2137, 'Ogres', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2138, 'Preilu', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2139, 'Rezekne', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2140, 'Rezeknes', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2141, 'Riga', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2142, 'Rigas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2143, 'Saldus', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2144, 'Talsu', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2145, 'Tukuma', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2146, 'Valkas', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2147, 'Valmieras', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2148, 'Ventspils', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2149, 'Ventspils City', 120, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2150, 'Beirut', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2151, 'Jabal Lubnan', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2152, 'Mohafazat Liban-Nord', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2153, 'Mohafazat Mont-Liban', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2154, 'Sidon', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2155, 'al-Biqa', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2156, 'al-Janub', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2157, 'an-Nabatiyah', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2158, 'ash-Shamal', 121, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2159, 'Berea', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2160, 'Butha-Buthe', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2161, 'Leribe', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2162, 'Mafeteng', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2163, 'Maseru', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2164, 'Mohale\'s Hoek', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2165, 'Mokhotlong', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2166, 'Qacha\'s Nek', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2167, 'Quthing', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2168, 'Thaba-Tseka', 122, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2169, 'Bomi', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2170, 'Bong', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2171, 'Grand Bassa', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2172, 'Grand Cape Mount', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2173, 'Grand Gedeh', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2174, 'Loffa', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2175, 'Margibi', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2176, 'Maryland and Grand Kru', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2177, 'Montserrado', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2178, 'Nimba', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2179, 'Rivercess', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2180, 'Sinoe', 123, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2181, 'Ajdabiya', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2182, 'Fezzan', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2183, 'Banghazi', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2184, 'Darnah', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2185, 'Ghadamis', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2186, 'Gharyan', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2187, 'Misratah', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2188, 'Murzuq', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2189, 'Sabha', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2190, 'Sawfajjin', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2191, 'Surt', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2192, 'Tarabulus', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2193, 'Tarhunah', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2194, 'Tripolitania', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2195, 'Tubruq', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2196, 'Yafran', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2197, 'Zlitan', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2198, 'al-\'Aziziyah', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2199, 'al-Fatih', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2200, 'al-Jabal al Akhdar', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2201, 'al-Jufrah', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2202, 'al-Khums', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2203, 'al-Kufrah', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2204, 'an-Nuqat al-Khams', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2205, 'ash-Shati\'', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2206, 'az-Zawiyah', 124, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2207, 'Balzers', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2208, 'Eschen', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2209, 'Gamprin', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2210, 'Mauren', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2211, 'Planken', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2212, 'Ruggell', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2213, 'Schaan', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2214, 'Schellenberg', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2215, 'Triesen', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2216, 'Triesenberg', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2217, 'Vaduz', 125, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2218, 'Alytaus', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2219, 'Anyksciai', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2220, 'Kauno', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2221, 'Klaipedos', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2222, 'Marijampoles', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2223, 'Panevezhio', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2224, 'Panevezys', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2225, 'Shiauliu', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2226, 'Taurages', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2227, 'Telshiu', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2228, 'Telsiai', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2229, 'Utenos', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2230, 'Vilniaus', 126, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2231, 'Capellen', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2232, 'Clervaux', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2233, 'Diekirch', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2234, 'Echternach', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2235, 'Esch-sur-Alzette', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2236, 'Grevenmacher', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2237, 'Luxembourg', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2238, 'Mersch', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2239, 'Redange', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2240, 'Remich', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2241, 'Vianden', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2242, 'Wiltz', 127, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2243, 'Macau', 128, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2244, 'Berovo', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2245, 'Bitola', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2246, 'Brod', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2247, 'Debar', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2248, 'Delchevo', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2249, 'Demir Hisar', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2250, 'Gevgelija', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2251, 'Gostivar', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2252, 'Kavadarci', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2253, 'Kichevo', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2254, 'Kochani', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2255, 'Kratovo', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2256, 'Kriva Palanka', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2257, 'Krushevo', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2258, 'Kumanovo', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2259, 'Negotino', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2260, 'Ohrid', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2261, 'Prilep', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2262, 'Probishtip', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2263, 'Radovish', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2264, 'Resen', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2265, 'Shtip', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2266, 'Skopje', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2267, 'Struga', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2268, 'Strumica', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2269, 'Sveti Nikole', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2270, 'Tetovo', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2271, 'Valandovo', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2272, 'Veles', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2273, 'Vinica', 129, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2274, 'Antananarivo', 130, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2275, 'Antsiranana', 130, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2276, 'Fianarantsoa', 130, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2277, 'Mahajanga', 130, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2278, 'Toamasina', 130, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2279, 'Toliary', 130, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2280, 'Balaka', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2281, 'Blantyre City', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2282, 'Chikwawa', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2283, 'Chiradzulu', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2284, 'Chitipa', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2285, 'Dedza', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2286, 'Dowa', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2287, 'Karonga', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2288, 'Kasungu', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2289, 'Lilongwe City', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2290, 'Machinga', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2291, 'Mangochi', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2292, 'Mchinji', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2293, 'Mulanje', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2294, 'Mwanza', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2295, 'Mzimba', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2296, 'Mzuzu City', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2297, 'Nkhata Bay', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2298, 'Nkhotakota', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2299, 'Nsanje', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2300, 'Ntcheu', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2301, 'Ntchisi', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2302, 'Phalombe', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2303, 'Rumphi', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2304, 'Salima', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2305, 'Thyolo', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2306, 'Zomba Municipality', 131, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2307, 'Johor', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2308, 'Kedah', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2309, 'Kelantan', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2310, 'Kuala Lumpur', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2311, 'Labuan', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2312, 'Melaka', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2313, 'Negeri Johor', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2314, 'Negeri Sembilan', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2315, 'Pahang', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2316, 'Penang', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2317, 'Perak', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2318, 'Perlis', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2319, 'Pulau Pinang', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2320, 'Sabah', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2321, 'Sarawak', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2322, 'Selangor', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2323, 'Sembilan', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2324, 'Terengganu', 132, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2325, 'Alif Alif', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2326, 'Alif Dhaal', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2327, 'Baa', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2328, 'Dhaal', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2329, 'Faaf', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2330, 'Gaaf Alif', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2331, 'Gaaf Dhaal', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2332, 'Ghaviyani', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2333, 'Haa Alif', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2334, 'Haa Dhaal', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2335, 'Kaaf', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2336, 'Laam', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2337, 'Lhaviyani', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2338, 'Male', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2339, 'Miim', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2340, 'Nuun', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2341, 'Raa', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2342, 'Shaviyani', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2343, 'Siin', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2344, 'Thaa', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2345, 'Vaav', 133, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2346, 'Bamako', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2347, 'Gao', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2348, 'Kayes', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2349, 'Kidal', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2350, 'Koulikoro', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2351, 'Mopti', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2352, 'Segou', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2353, 'Sikasso', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2354, 'Tombouctou', 134, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2355, 'Gozo and Comino', 135, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2356, 'Inner Harbour', 135, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2357, 'Northern', 135, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2358, 'Outer Harbour', 135, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2359, 'South Eastern', 135, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2360, 'Valletta', 135, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2361, 'Western', 135, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2362, 'Castletown', 136, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2363, 'Douglas', 136, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2364, 'Laxey', 136, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2365, 'Onchan', 136, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2366, 'Peel', 136, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2367, 'Port Erin', 136, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2368, 'Port Saint Mary', 136, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2369, 'Ramsey', 136, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2370, 'Ailinlaplap', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2371, 'Ailuk', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2372, 'Arno', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2373, 'Aur', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2374, 'Bikini', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2375, 'Ebon', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2376, 'Enewetak', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2377, 'Jabat', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2378, 'Jaluit', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2379, 'Kili', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2380, 'Kwajalein', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2381, 'Lae', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2382, 'Lib', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2383, 'Likiep', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2384, 'Majuro', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2385, 'Maloelap', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2386, 'Mejit', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2387, 'Mili', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2388, 'Namorik', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2389, 'Namu', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2390, 'Rongelap', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2391, 'Ujae', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2392, 'Utrik', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2393, 'Wotho', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2394, 'Wotje', 137, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2395, 'Fort-de-France', 138, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2396, 'La Trinite', 138, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2397, 'Le Marin', 138, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2398, 'Saint-Pierre', 138, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2399, 'Adrar', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2400, 'Assaba', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2401, 'Brakna', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2402, 'Dhakhlat Nawadibu', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2403, 'Hudh-al-Gharbi', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2404, 'Hudh-ash-Sharqi', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2405, 'Inshiri', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2406, 'Nawakshut', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2407, 'Qidimagha', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2408, 'Qurqul', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2409, 'Taqant', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2410, 'Tiris Zammur', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2411, 'Trarza', 139, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2412, 'Black River', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2413, 'Eau Coulee', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2414, 'Flacq', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2415, 'Floreal', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2416, 'Grand Port', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2417, 'Moka', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2418, 'Pamplempousses', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2419, 'Plaines Wilhelm', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2420, 'Port Louis', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2421, 'Riviere du Rempart', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2422, 'Rodrigues', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2423, 'Rose Hill', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2424, 'Savanne', 140, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2425, 'Mayotte', 141, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2426, 'Pamanzi', 141, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2427, 'Aguascalientes', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2428, 'Baja California', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2429, 'Baja California Sur', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2430, 'Campeche', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2431, 'Chiapas', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2432, 'Chihuahua', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2433, 'Coahuila', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2434, 'Colima', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2435, 'Distrito Federal', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2436, 'Durango', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2437, 'Estado de Mexico', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2438, 'Guanajuato', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2439, 'Guerrero', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2440, 'Hidalgo', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2441, 'Jalisco', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2442, 'Mexico', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2443, 'Michoacan', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2444, 'Morelos', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2445, 'Nayarit', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2446, 'Nuevo Leon', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2447, 'Oaxaca', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2448, 'Puebla', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2449, 'Queretaro', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2450, 'Quintana Roo', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2451, 'San Luis Potosi', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2452, 'Sinaloa', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2453, 'Sonora', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2454, 'Tabasco', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2455, 'Tamaulipas', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2456, 'Tlaxcala', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2457, 'Veracruz', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2458, 'Yucatan', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2459, 'Zacatecas', 142, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2460, 'Chuuk', 143, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2461, 'Kusaie', 143, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2462, 'Pohnpei', 143, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2463, 'Yap', 143, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2464, 'Balti', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2465, 'Cahul', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2466, 'Chisinau', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2467, 'Chisinau Oras', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2468, 'Edinet', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2469, 'Gagauzia', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2470, 'Lapusna', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2471, 'Orhei', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2472, 'Soroca', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2473, 'Taraclia', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2474, 'Tighina', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2475, 'Transnistria', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2476, 'Ungheni', 144, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2477, 'Fontvieille', 145, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2478, 'La Condamine', 145, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2479, 'Monaco-Ville', 145, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2480, 'Monte Carlo', 145, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2481, 'Arhangaj', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2482, 'Bajan-Olgij', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2483, 'Bajanhongor', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2484, 'Bulgan', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2485, 'Darhan-Uul', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2486, 'Dornod', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2487, 'Dornogovi', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2488, 'Dundgovi', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2489, 'Govi-Altaj', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2490, 'Govisumber', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2491, 'Hentij', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2492, 'Hovd', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2493, 'Hovsgol', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2494, 'Omnogovi', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2495, 'Orhon', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2496, 'Ovorhangaj', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2497, 'Selenge', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2498, 'Suhbaatar', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2499, 'Tov', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2500, 'Ulaanbaatar', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2501, 'Uvs', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2502, 'Zavhan', 146, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2503, 'Montserrat', 147, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2504, 'Agadir', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2505, 'Casablanca', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2506, 'Chaouia-Ouardigha', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2507, 'Doukkala-Abda', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2508, 'Fes-Boulemane', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2509, 'Gharb-Chrarda-Beni Hssen', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2510, 'Guelmim', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2511, 'Kenitra', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2512, 'Marrakech-Tensift-Al Haouz', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2513, 'Meknes-Tafilalet', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2514, 'Oriental', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2515, 'Oujda', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2516, 'Province de Tanger', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2517, 'Rabat-Sale-Zammour-Zaer', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2518, 'Sala Al Jadida', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2519, 'Settat', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2520, 'Souss Massa-Draa', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2521, 'Tadla-Azilal', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2522, 'Tangier-Tetouan', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2523, 'Taza-Al Hoceima-Taounate', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2524, 'Wilaya de Casablanca', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2525, 'Wilaya de Rabat-Sale', 148, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2526, 'Cabo Delgado', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2527, 'Gaza', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2528, 'Inhambane', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2529, 'Manica', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2530, 'Maputo', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2531, 'Maputo Provincia', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2532, 'Nampula', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2533, 'Niassa', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2534, 'Sofala', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2535, 'Tete', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2536, 'Zambezia', 149, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2537, 'Ayeyarwady', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2538, 'Bago', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2539, 'Chin', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2540, 'Kachin', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2541, 'Kayah', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2542, 'Kayin', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2543, 'Magway', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2544, 'Mandalay', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2545, 'Mon', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2546, 'Nay Pyi Taw', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2547, 'Rakhine', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2548, 'Sagaing', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2549, 'Shan', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2550, 'Tanintharyi', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2551, 'Yangon', 150, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2552, 'Caprivi', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2553, 'Erongo', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2554, 'Hardap', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2555, 'Karas', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2556, 'Kavango', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2557, 'Khomas', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2558, 'Kunene', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2559, 'Ohangwena', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2560, 'Omaheke', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2561, 'Omusati', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2562, 'Oshana', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2563, 'Oshikoto', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2564, 'Otjozondjupa', 151, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2565, 'Yaren', 152, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2566, 'Bagmati', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2567, 'Bheri', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL); -INSERT INTO `states` (`id`, `name`, `country_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(2568, 'Dhawalagiri', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2569, 'Gandaki', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2570, 'Janakpur', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2571, 'Karnali', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2572, 'Koshi', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2573, 'Lumbini', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2574, 'Mahakali', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2575, 'Mechi', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2576, 'Narayani', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2577, 'Rapti', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2578, 'Sagarmatha', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2579, 'Seti', 153, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2580, 'Bonaire', 154, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2581, 'Curacao', 154, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2582, 'Saba', 154, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2583, 'Sint Eustatius', 154, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2584, 'Sint Maarten', 154, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2585, 'Amsterdam', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2586, 'Benelux', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2587, 'Drenthe', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2588, 'Flevoland', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2589, 'Friesland', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2590, 'Gelderland', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2591, 'Groningen', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2592, 'Limburg', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2593, 'Noord-Brabant', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2594, 'Noord-Holland', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2595, 'Overijssel', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2596, 'South Holland', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2597, 'Utrecht', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2598, 'Zeeland', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2599, 'Zuid-Holland', 155, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2600, 'Iles', 156, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2601, 'Nord', 156, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2602, 'Sud', 156, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2603, 'Area Outside Region', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2604, 'Auckland', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2605, 'Bay of Plenty', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2606, 'Canterbury', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2607, 'Christchurch', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2608, 'Gisborne', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2609, 'Hawke\'s Bay', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2610, 'Manawatu-Wanganui', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2611, 'Marlborough', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2612, 'Nelson', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2613, 'Northland', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2614, 'Otago', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2615, 'Rodney', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2616, 'Southland', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2617, 'Taranaki', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2618, 'Tasman', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2619, 'Waikato', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2620, 'Wellington', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2621, 'West Coast', 157, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2622, 'Atlantico Norte', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2623, 'Atlantico Sur', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2624, 'Boaco', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2625, 'Carazo', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2626, 'Chinandega', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2627, 'Chontales', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2628, 'Esteli', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2629, 'Granada', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2630, 'Jinotega', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2631, 'Leon', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2632, 'Madriz', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2633, 'Managua', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2634, 'Masaya', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2635, 'Matagalpa', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2636, 'Nueva Segovia', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2637, 'Rio San Juan', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2638, 'Rivas', 158, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2639, 'Agadez', 159, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2640, 'Diffa', 159, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2641, 'Dosso', 159, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2642, 'Maradi', 159, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2643, 'Niamey', 159, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2644, 'Tahoua', 159, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2645, 'Tillabery', 159, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2646, 'Zinder', 159, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2647, 'Abia', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2648, 'Abuja Federal Capital Territory', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2649, 'Adamawa', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2650, 'Akwa Ibom', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2651, 'Anambra', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2652, 'Bauchi', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2653, 'Bayelsa', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2654, 'Benue', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2655, 'Borno', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2656, 'Cross River', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2657, 'Delta', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2658, 'Ebonyi', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2659, 'Edo', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2660, 'Ekiti', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2661, 'Enugu', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2662, 'Gombe', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2663, 'Imo', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2664, 'Jigawa', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2665, 'Kaduna', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2666, 'Kano', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2667, 'Katsina', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2668, 'Kebbi', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2669, 'Kogi', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2670, 'Kwara', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2671, 'Lagos', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2672, 'Nassarawa', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2673, 'Niger', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2674, 'Ogun', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2675, 'Ondo', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2676, 'Osun', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2677, 'Oyo', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2678, 'Plateau', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2679, 'Rivers', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2680, 'Sokoto', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2681, 'Taraba', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2682, 'Yobe', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2683, 'Zamfara', 160, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2684, 'Niue', 161, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2685, 'Norfolk Island', 162, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2686, 'Northern Islands', 163, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2687, 'Rota', 163, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2688, 'Saipan', 163, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2689, 'Tinian', 163, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2690, 'Akershus', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2691, 'Aust Agder', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2692, 'Bergen', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2693, 'Buskerud', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2694, 'Finnmark', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2695, 'Hedmark', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2696, 'Hordaland', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2697, 'Moere og Romsdal', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2698, 'Nord Trondelag', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2699, 'Nordland', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2700, 'Oestfold', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2701, 'Oppland', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2702, 'Oslo', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2703, 'Rogaland', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2704, 'Soer Troendelag', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2705, 'Sogn og Fjordane', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2706, 'Stavern', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2707, 'Sykkylven', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2708, 'Telemark', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2709, 'Troms', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2710, 'Vest Agder', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2711, 'Vestfold', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2712, 'Østfold', 164, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2713, 'Al Buraimi', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2714, 'Dhufar', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2715, 'Masqat', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2716, 'Musandam', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2717, 'Rusayl', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2718, 'Wadi Kabir', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2719, 'ad-Dakhiliyah', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2720, 'adh-Dhahirah', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2721, 'al-Batinah', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2722, 'ash-Sharqiyah', 165, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2723, 'Baluchistan', 166, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2724, 'Federal Capital Area', 166, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2725, 'Federally administered Tribal ', 166, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2726, 'North-West Frontier', 166, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2727, 'Northern Areas', 166, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2728, 'Punjab', 166, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2729, 'Sind', 166, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2730, 'Aimeliik', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2731, 'Airai', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2732, 'Angaur', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2733, 'Hatobohei', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2734, 'Kayangel', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2735, 'Koror', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2736, 'Melekeok', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2737, 'Ngaraard', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2738, 'Ngardmau', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2739, 'Ngaremlengui', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2740, 'Ngatpang', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2741, 'Ngchesar', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2742, 'Ngerchelong', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2743, 'Ngiwal', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2744, 'Peleliu', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2745, 'Sonsorol', 167, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2746, 'Ariha', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2747, 'Bayt Lahm', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2748, 'Bethlehem', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2749, 'Dayr-al-Balah', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2750, 'Ghazzah', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2751, 'Ghazzah ash-Shamaliyah', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2752, 'Janin', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2753, 'Khan Yunis', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2754, 'Nabulus', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2755, 'Qalqilyah', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2756, 'Rafah', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2757, 'Ram Allah wal-Birah', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2758, 'Salfit', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2759, 'Tubas', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2760, 'Tulkarm', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2761, 'al-Khalil', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2762, 'al-Quds', 168, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2763, 'Bocas del Toro', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2764, 'Chiriqui', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2765, 'Cocle', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2766, 'Colon', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2767, 'Darien', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2768, 'Embera', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2769, 'Herrera', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2770, 'Kuna Yala', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2771, 'Los Santos', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2772, 'Ngobe Bugle', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2773, 'Panama', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2774, 'Veraguas', 169, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2775, 'East New Britain', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2776, 'East Sepik', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2777, 'Eastern Highlands', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2778, 'Enga', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2779, 'Fly River', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2780, 'Gulf', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2781, 'Madang', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2782, 'Manus', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2783, 'Milne Bay', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2784, 'Morobe', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2785, 'National Capital District', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2786, 'New Ireland', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2787, 'North Solomons', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2788, 'Oro', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2789, 'Sandaun', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2790, 'Simbu', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2791, 'Southern Highlands', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2792, 'West New Britain', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2793, 'Western Highlands', 170, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2794, 'Alto Paraguay', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2795, 'Alto Parana', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2796, 'Amambay', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2797, 'Asuncion', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2798, 'Boqueron', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2799, 'Caaguazu', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2800, 'Caazapa', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2801, 'Canendiyu', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2802, 'Central', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2803, 'Concepcion', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2804, 'Cordillera', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2805, 'Guaira', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2806, 'Itapua', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2807, 'Misiones', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2808, 'Neembucu', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2809, 'Paraguari', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2810, 'Presidente Hayes', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2811, 'San Pedro', 171, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2812, 'Amazonas', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2813, 'Ancash', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2814, 'Apurimac', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2815, 'Arequipa', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2816, 'Ayacucho', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2817, 'Cajamarca', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2818, 'Cusco', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2819, 'Huancavelica', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2820, 'Huanuco', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2821, 'Ica', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2822, 'Junin', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2823, 'La Libertad', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2824, 'Lambayeque', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2825, 'Lima y Callao', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2826, 'Loreto', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2827, 'Madre de Dios', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2828, 'Moquegua', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2829, 'Pasco', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2830, 'Piura', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2831, 'Puno', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2832, 'San Martin', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2833, 'Tacna', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2834, 'Tumbes', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2835, 'Ucayali', 172, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2836, 'Batangas', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2837, 'Bicol', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2838, 'Bulacan', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2839, 'Cagayan', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2840, 'Caraga', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2841, 'Central Luzon', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2842, 'Central Mindanao', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2843, 'Central Visayas', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2844, 'Cordillera', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2845, 'Davao', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2846, 'Eastern Visayas', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2847, 'Greater Metropolitan Area', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2848, 'Ilocos', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2849, 'Laguna', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2850, 'Luzon', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2851, 'Mactan', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2852, 'Metropolitan Manila Area', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2853, 'Muslim Mindanao', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2854, 'Northern Mindanao', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2855, 'Southern Mindanao', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2856, 'Southern Tagalog', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2857, 'Western Mindanao', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2858, 'Western Visayas', 173, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2859, 'Pitcairn Island', 174, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2860, 'Biale Blota', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2861, 'Dobroszyce', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2862, 'Dolnoslaskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2863, 'Dziekanow Lesny', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2864, 'Hopowo', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2865, 'Kartuzy', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2866, 'Koscian', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2867, 'Krakow', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2868, 'Kujawsko-Pomorskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2869, 'Lodzkie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2870, 'Lubelskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2871, 'Lubuskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2872, 'Malomice', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2873, 'Malopolskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2874, 'Mazowieckie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2875, 'Mirkow', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2876, 'Opolskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2877, 'Ostrowiec', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2878, 'Podkarpackie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2879, 'Podlaskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2880, 'Polska', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2881, 'Pomorskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2882, 'Poznan', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2883, 'Pruszkow', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2884, 'Rymanowska', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2885, 'Rzeszow', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2886, 'Slaskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2887, 'Stare Pole', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2888, 'Swietokrzyskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2889, 'Warminsko-Mazurskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2890, 'Warsaw', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2891, 'Wejherowo', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2892, 'Wielkopolskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2893, 'Wroclaw', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2894, 'Zachodnio-Pomorskie', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2895, 'Zukowo', 175, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2896, 'Abrantes', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2897, 'Acores', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2898, 'Alentejo', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2899, 'Algarve', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2900, 'Braga', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2901, 'Centro', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2902, 'Distrito de Leiria', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2903, 'Distrito de Viana do Castelo', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2904, 'Distrito de Vila Real', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2905, 'Distrito do Porto', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2906, 'Lisboa e Vale do Tejo', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2907, 'Madeira', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2908, 'Norte', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2909, 'Paivas', 176, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2910, 'Arecibo', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2911, 'Bayamon', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2912, 'Carolina', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2913, 'Florida', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2914, 'Guayama', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2915, 'Humacao', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2916, 'Mayaguez-Aguadilla', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2917, 'Ponce', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2918, 'Salinas', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2919, 'San Juan', 177, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2920, 'Doha', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2921, 'Jarian-al-Batnah', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2922, 'Umm Salal', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2923, 'ad-Dawhah', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2924, 'al-Ghuwayriyah', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2925, 'al-Jumayliyah', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2926, 'al-Khawr', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2927, 'al-Wakrah', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2928, 'ar-Rayyan', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2929, 'ash-Shamal', 178, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2930, 'Saint-Benoit', 179, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2931, 'Saint-Denis', 179, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2932, 'Saint-Paul', 179, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2933, 'Saint-Pierre', 179, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2934, 'Alba', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2935, 'Arad', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2936, 'Arges', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2937, 'Bacau', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2938, 'Bihor', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2939, 'Bistrita-Nasaud', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2940, 'Botosani', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2941, 'Braila', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2942, 'Brasov', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2943, 'Bucuresti', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2944, 'Buzau', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2945, 'Calarasi', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2946, 'Caras-Severin', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2947, 'Cluj', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2948, 'Constanta', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2949, 'Covasna', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2950, 'Dambovita', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2951, 'Dolj', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2952, 'Galati', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2953, 'Giurgiu', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2954, 'Gorj', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2955, 'Harghita', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2956, 'Hunedoara', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2957, 'Ialomita', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2958, 'Iasi', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2959, 'Ilfov', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2960, 'Maramures', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2961, 'Mehedinti', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2962, 'Mures', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2963, 'Neamt', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2964, 'Olt', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2965, 'Prahova', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2966, 'Salaj', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2967, 'Satu Mare', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2968, 'Sibiu', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2969, 'Sondelor', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2970, 'Suceava', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2971, 'Teleorman', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2972, 'Timis', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2973, 'Tulcea', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2974, 'Valcea', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2975, 'Vaslui', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2976, 'Vrancea', 180, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2977, 'Adygeja', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2978, 'Aga', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2979, 'Alanija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2980, 'Altaj', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2981, 'Amur', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2982, 'Arhangelsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2983, 'Astrahan', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2984, 'Bashkortostan', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2985, 'Belgorod', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2986, 'Brjansk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2987, 'Burjatija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2988, 'Chechenija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2989, 'Cheljabinsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2990, 'Chita', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2991, 'Chukotka', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2992, 'Chuvashija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2993, 'Dagestan', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2994, 'Evenkija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2995, 'Gorno-Altaj', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2996, 'Habarovsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2997, 'Hakasija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2998, 'Hanty-Mansija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(2999, 'Ingusetija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3000, 'Irkutsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3001, 'Ivanovo', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3002, 'Jamalo-Nenets', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3003, 'Jaroslavl', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3004, 'Jevrej', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3005, 'Kabardino-Balkarija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3006, 'Kaliningrad', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3007, 'Kalmykija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3008, 'Kaluga', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3009, 'Kamchatka', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3010, 'Karachaj-Cherkessija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3011, 'Karelija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3012, 'Kemerovo', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3013, 'Khabarovskiy Kray', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3014, 'Kirov', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3015, 'Komi', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3016, 'Komi-Permjakija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3017, 'Korjakija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3018, 'Kostroma', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3019, 'Krasnodar', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3020, 'Krasnojarsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3021, 'Krasnoyarskiy Kray', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3022, 'Kurgan', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3023, 'Kursk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3024, 'Leningrad', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3025, 'Lipeck', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3026, 'Magadan', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3027, 'Marij El', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3028, 'Mordovija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3029, 'Moscow', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3030, 'Moskovskaja Oblast', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3031, 'Moskovskaya Oblast', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3032, 'Moskva', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3033, 'Murmansk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3034, 'Nenets', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3035, 'Nizhnij Novgorod', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3036, 'Novgorod', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3037, 'Novokusnezk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3038, 'Novosibirsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3039, 'Omsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3040, 'Orenburg', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3041, 'Orjol', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3042, 'Penza', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3043, 'Perm', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3044, 'Primorje', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3045, 'Pskov', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3046, 'Pskovskaya Oblast', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3047, 'Rjazan', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3048, 'Rostov', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3049, 'Saha', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3050, 'Sahalin', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3051, 'Samara', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3052, 'Samarskaya', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3053, 'Sankt-Peterburg', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3054, 'Saratov', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3055, 'Smolensk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3056, 'Stavropol', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3057, 'Sverdlovsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3058, 'Tajmyrija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3059, 'Tambov', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3060, 'Tatarstan', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3061, 'Tjumen', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3062, 'Tomsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3063, 'Tula', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3064, 'Tver', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3065, 'Tyva', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3066, 'Udmurtija', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3067, 'Uljanovsk', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3068, 'Ulyanovskaya Oblast', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3069, 'Ust-Orda', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3070, 'Vladimir', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3071, 'Volgograd', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3072, 'Vologda', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3073, 'Voronezh', 181, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3074, 'Butare', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3075, 'Byumba', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3076, 'Cyangugu', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3077, 'Gikongoro', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3078, 'Gisenyi', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3079, 'Gitarama', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3080, 'Kibungo', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3081, 'Kibuye', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3082, 'Kigali-ngali', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3083, 'Ruhengeri', 182, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3084, 'Ascension', 183, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3085, 'Gough Island', 183, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3086, 'Saint Helena', 183, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3087, 'Tristan da Cunha', 183, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3088, 'Christ Church Nichola Town', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3089, 'Saint Anne Sandy Point', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3090, 'Saint George Basseterre', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3091, 'Saint George Gingerland', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3092, 'Saint James Windward', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3093, 'Saint John Capesterre', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3094, 'Saint John Figtree', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3095, 'Saint Mary Cayon', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3096, 'Saint Paul Capesterre', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3097, 'Saint Paul Charlestown', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3098, 'Saint Peter Basseterre', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3099, 'Saint Thomas Lowland', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3100, 'Saint Thomas Middle Island', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3101, 'Trinity Palmetto Point', 184, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3102, 'Anse-la-Raye', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3103, 'Canaries', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3104, 'Castries', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3105, 'Choiseul', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3106, 'Dennery', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3107, 'Gros Inlet', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3108, 'Laborie', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3109, 'Micoud', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3110, 'Soufriere', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3111, 'Vieux Fort', 185, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3112, 'Miquelon-Langlade', 186, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3113, 'Saint-Pierre', 186, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3114, 'Charlotte', 187, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3115, 'Grenadines', 187, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3116, 'Saint Andrew', 187, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3117, 'Saint David', 187, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3118, 'Saint George', 187, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3119, 'Saint Patrick', 187, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3120, 'A\'ana', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3121, 'Aiga-i-le-Tai', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3122, 'Atua', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3123, 'Fa\'asaleleaga', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3124, 'Gaga\'emauga', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3125, 'Gagaifomauga', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3126, 'Palauli', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3127, 'Satupa\'itea', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3128, 'Tuamasaga', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3129, 'Va\'a-o-Fonoti', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3130, 'Vaisigano', 188, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3131, 'Acquaviva', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3132, 'Borgo Maggiore', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3133, 'Chiesanuova', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3134, 'Domagnano', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3135, 'Faetano', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3136, 'Fiorentino', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3137, 'Montegiardino', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3138, 'San Marino', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3139, 'Serravalle', 189, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3140, 'Agua Grande', 190, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3141, 'Cantagalo', 190, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3142, 'Lemba', 190, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3143, 'Lobata', 190, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3144, 'Me-Zochi', 190, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3145, 'Pague', 190, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3146, 'Al Khobar', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3147, 'Aseer', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3148, 'Ash Sharqiyah', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3149, 'Asir', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3150, 'Central Province', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3151, 'Eastern Province', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3152, 'Ha\'il', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3153, 'Jawf', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3154, 'Jizan', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3155, 'Makkah', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3156, 'Najran', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3157, 'Qasim', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3158, 'Tabuk', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3159, 'Western Province', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3160, 'al-Bahah', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3161, 'al-Hudud-ash-Shamaliyah', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3162, 'al-Madinah', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3163, 'ar-Riyad', 191, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3164, 'Dakar', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3165, 'Diourbel', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3166, 'Fatick', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3167, 'Kaolack', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3168, 'Kolda', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3169, 'Louga', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3170, 'Saint-Louis', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3171, 'Tambacounda', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3172, 'Thies', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3173, 'Ziguinchor', 192, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3174, 'Central Serbia', 193, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3175, 'Kosovo and Metohija', 193, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3176, 'Vojvodina', 193, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3177, 'Anse Boileau', 194, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3178, 'Anse Royale', 194, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3179, 'Cascade', 194, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3180, 'Takamaka', 194, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3181, 'Victoria', 194, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3182, 'Eastern', 195, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3183, 'Northern', 195, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3184, 'Southern', 195, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3185, 'Western', 195, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3186, 'Singapore', 196, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3187, 'Banskobystricky', 197, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3188, 'Bratislavsky', 197, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3189, 'Kosicky', 197, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3190, 'Nitriansky', 197, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3191, 'Presovsky', 197, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3192, 'Trenciansky', 197, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3193, 'Trnavsky', 197, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3194, 'Zilinsky', 197, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3195, 'Benedikt', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3196, 'Gorenjska', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3197, 'Gorishka', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL); -INSERT INTO `states` (`id`, `name`, `country_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(3198, 'Jugovzhodna Slovenija', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3199, 'Koroshka', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3200, 'Notranjsko-krashka', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3201, 'Obalno-krashka', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3202, 'Obcina Domzale', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3203, 'Obcina Vitanje', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3204, 'Osrednjeslovenska', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3205, 'Podravska', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3206, 'Pomurska', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3207, 'Savinjska', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3208, 'Slovenian Littoral', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3209, 'Spodnjeposavska', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3210, 'Zasavska', 198, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3211, 'Pitcairn', 199, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3212, 'Central', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3213, 'Choiseul', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3214, 'Guadalcanal', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3215, 'Isabel', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3216, 'Makira and Ulawa', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3217, 'Malaita', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3218, 'Rennell and Bellona', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3219, 'Temotu', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3220, 'Western', 200, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3221, 'Awdal', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3222, 'Bakol', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3223, 'Banadir', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3224, 'Bari', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3225, 'Bay', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3226, 'Galgudug', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3227, 'Gedo', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3228, 'Hiran', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3229, 'Jubbada Hose', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3230, 'Jubbadha Dexe', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3231, 'Mudug', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3232, 'Nugal', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3233, 'Sanag', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3234, 'Shabellaha Dhexe', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3235, 'Shabellaha Hose', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3236, 'Togdher', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3237, 'Woqoyi Galbed', 201, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3238, 'Eastern Cape', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3239, 'Free State', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3240, 'Gauteng', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3241, 'Kempton Park', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3242, 'Kramerville', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3243, 'KwaZulu Natal', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3244, 'Limpopo', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3245, 'Mpumalanga', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3246, 'North West', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3247, 'Northern Cape', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3248, 'Parow', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3249, 'Table View', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3250, 'Umtentweni', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3251, 'Western Cape', 202, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3252, 'South Georgia', 203, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3253, 'Central Equatoria', 204, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3254, 'A Coruna', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3255, 'Alacant', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3256, 'Alava', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3257, 'Albacete', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3258, 'Almeria', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3260, 'Asturias', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3261, 'Avila', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3262, 'Badajoz', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3263, 'Balears', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3264, 'Barcelona', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3267, 'Burgos', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3268, 'Caceres', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3269, 'Cadiz', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3270, 'Cantabria', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3271, 'Castello', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3273, 'Ceuta', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3274, 'Ciudad Real', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3281, 'Cordoba', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3282, 'Cuenca', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3284, 'Girona', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3285, 'Granada', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3286, 'Guadalajara', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3287, 'Guipuzcoa', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3288, 'Huelva', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3289, 'Huesca', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3290, 'Jaen', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3291, 'La Rioja', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3292, 'Las Palmas', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3293, 'Leon', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3295, 'Lleida', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3296, 'Lugo', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3297, 'Madrid', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3298, 'Malaga', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3299, 'Melilla', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3300, 'Murcia', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3301, 'Navarra', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3302, 'Ourense', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3303, 'Pais Vasco', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3304, 'Palencia', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3305, 'Pontevedra', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3306, 'Salamanca', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3308, 'Segovia', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3309, 'Sevilla', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3310, 'Soria', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3311, 'Tarragona', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3312, 'Santa Cruz de Tenerife', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3313, 'Teruel', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3314, 'Toledo', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3315, 'Valencia', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3316, 'Valladolid', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3317, 'Vizcaya', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3318, 'Zamora', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3319, 'Zaragoza', 205, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3320, 'Amparai', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3321, 'Anuradhapuraya', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3322, 'Badulla', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3323, 'Boralesgamuwa', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3324, 'Colombo', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3325, 'Galla', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3326, 'Gampaha', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3327, 'Hambantota', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3328, 'Kalatura', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3329, 'Kegalla', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3330, 'Kilinochchi', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3331, 'Kurunegala', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3332, 'Madakalpuwa', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3333, 'Maha Nuwara', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3334, 'Malwana', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3335, 'Mannarama', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3336, 'Matale', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3337, 'Matara', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3338, 'Monaragala', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3339, 'Mullaitivu', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3340, 'North Eastern Province', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3341, 'North Western Province', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3342, 'Nuwara Eliya', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3343, 'Polonnaruwa', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3344, 'Puttalama', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3345, 'Ratnapuraya', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3346, 'Southern Province', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3347, 'Tirikunamalaya', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3348, 'Tuscany', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3349, 'Vavuniyawa', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3350, 'Western Province', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3351, 'Yapanaya', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3352, 'kadawatha', 206, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3353, 'A\'ali-an-Nil', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3354, 'Bahr-al-Jabal', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3355, 'Central Equatoria', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3356, 'Gharb Bahr-al-Ghazal', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3357, 'Gharb Darfur', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3358, 'Gharb Kurdufan', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3359, 'Gharb-al-Istiwa\'iyah', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3360, 'Janub Darfur', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3361, 'Janub Kurdufan', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3362, 'Junqali', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3363, 'Kassala', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3364, 'Nahr-an-Nil', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3365, 'Shamal Bahr-al-Ghazal', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3366, 'Shamal Darfur', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3367, 'Shamal Kurdufan', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3368, 'Sharq-al-Istiwa\'iyah', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3369, 'Sinnar', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3370, 'Warab', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3371, 'Wilayat al Khartum', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3372, 'al-Bahr-al-Ahmar', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3373, 'al-Buhayrat', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3374, 'al-Jazirah', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3375, 'al-Khartum', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3376, 'al-Qadarif', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3377, 'al-Wahdah', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3378, 'an-Nil-al-Abyad', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3379, 'an-Nil-al-Azraq', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3380, 'ash-Shamaliyah', 207, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3381, 'Brokopondo', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3382, 'Commewijne', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3383, 'Coronie', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3384, 'Marowijne', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3385, 'Nickerie', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3386, 'Para', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3387, 'Paramaribo', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3388, 'Saramacca', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3389, 'Wanica', 208, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3390, 'Svalbard', 209, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3391, 'Hhohho', 210, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3392, 'Lubombo', 210, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3393, 'Manzini', 210, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3394, 'Shiselweni', 210, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3395, 'Alvsborgs Lan', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3396, 'Angermanland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3397, 'Blekinge', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3398, 'Bohuslan', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3399, 'Dalarna', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3400, 'Gavleborg', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3401, 'Gaza', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3402, 'Gotland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3403, 'Halland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3404, 'Jamtland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3405, 'Jonkoping', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3406, 'Kalmar', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3407, 'Kristianstads', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3408, 'Kronoberg', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3409, 'Norrbotten', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3410, 'Orebro', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3411, 'Ostergotland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3412, 'Saltsjo-Boo', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3413, 'Skane', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3414, 'Smaland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3415, 'Sodermanland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3416, 'Stockholm', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3417, 'Uppsala', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3418, 'Varmland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3419, 'Vasterbotten', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3420, 'Vastergotland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3421, 'Vasternorrland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3422, 'Vastmanland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3423, 'Vastra Gotaland', 211, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3424, 'Aargau', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3425, 'Appenzell Inner-Rhoden', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3426, 'Appenzell-Ausser Rhoden', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3427, 'Basel-Landschaft', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3428, 'Basel-Stadt', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3429, 'Bern', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3430, 'Canton Ticino', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3431, 'Fribourg', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3432, 'Geneve', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3433, 'Glarus', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3434, 'Graubunden', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3435, 'Heerbrugg', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3436, 'Jura', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3437, 'Kanton Aargau', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3438, 'Luzern', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3439, 'Morbio Inferiore', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3440, 'Muhen', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3441, 'Neuchatel', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3442, 'Nidwalden', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3443, 'Obwalden', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3444, 'Sankt Gallen', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3445, 'Schaffhausen', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3446, 'Schwyz', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3447, 'Solothurn', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3448, 'Thurgau', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3449, 'Ticino', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3450, 'Uri', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3451, 'Valais', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3452, 'Vaud', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3453, 'Vauffelin', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3454, 'Zug', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3455, 'Zurich', 212, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3456, 'Aleppo', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3457, 'Dar\'a', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3458, 'Dayr-az-Zawr', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3459, 'Dimashq', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3460, 'Halab', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3461, 'Hamah', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3462, 'Hims', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3463, 'Idlib', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3464, 'Madinat Dimashq', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3465, 'Tartus', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3466, 'al-Hasakah', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3467, 'al-Ladhiqiyah', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3468, 'al-Qunaytirah', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3469, 'ar-Raqqah', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3470, 'as-Suwayda', 213, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3471, 'Changhua County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3472, 'Chiayi County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3473, 'Chiayi City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3474, 'Taipei City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3475, 'Hsinchu County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3476, 'Hsinchu City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3477, 'Hualien County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3480, 'Kaohsiung City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3481, 'Keelung City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3482, 'Kinmen County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3483, 'Miaoli County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3484, 'Nantou County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3486, 'Penghu County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3487, 'Pingtung County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3488, 'Taichung City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3492, 'Tainan City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3493, 'New Taipei City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3495, 'Taitung County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3496, 'Taoyuan City', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3497, 'Yilan County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3498, 'YunLin County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3500, 'Dushanbe', 215, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3501, 'Gorno-Badakhshan', 215, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3502, 'Karotegin', 215, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3503, 'Khatlon', 215, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3504, 'Sughd', 215, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3505, 'Arusha', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3506, 'Dar es Salaam', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3507, 'Dodoma', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3508, 'Iringa', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3509, 'Kagera', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3510, 'Kigoma', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3511, 'Kilimanjaro', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3512, 'Lindi', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3513, 'Mara', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3514, 'Mbeya', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3515, 'Morogoro', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3516, 'Mtwara', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3517, 'Mwanza', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3518, 'Pwani', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3519, 'Rukwa', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3520, 'Ruvuma', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3521, 'Shinyanga', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3522, 'Singida', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3523, 'Tabora', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3524, 'Tanga', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3525, 'Zanzibar and Pemba', 216, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3526, 'Amnat Charoen', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3527, 'Ang Thong', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3528, 'Bangkok', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3529, 'Buri Ram', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3530, 'Chachoengsao', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3531, 'Chai Nat', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3532, 'Chaiyaphum', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3533, 'Changwat Chaiyaphum', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3534, 'Chanthaburi', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3535, 'Chiang Mai', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3536, 'Chiang Rai', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3537, 'Chon Buri', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3538, 'Chumphon', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3539, 'Kalasin', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3540, 'Kamphaeng Phet', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3541, 'Kanchanaburi', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3542, 'Khon Kaen', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3543, 'Krabi', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3544, 'Krung Thep', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3545, 'Lampang', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3546, 'Lamphun', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3547, 'Loei', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3548, 'Lop Buri', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3549, 'Mae Hong Son', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3550, 'Maha Sarakham', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3551, 'Mukdahan', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3552, 'Nakhon Nayok', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3553, 'Nakhon Pathom', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3554, 'Nakhon Phanom', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3555, 'Nakhon Ratchasima', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3556, 'Nakhon Sawan', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3557, 'Nakhon Si Thammarat', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3558, 'Nan', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3559, 'Narathiwat', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3560, 'Nong Bua Lam Phu', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3561, 'Nong Khai', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3562, 'Nonthaburi', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3563, 'Pathum Thani', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3564, 'Pattani', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3565, 'Phangnga', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3566, 'Phatthalung', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3567, 'Phayao', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3568, 'Phetchabun', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3569, 'Phetchaburi', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3570, 'Phichit', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3571, 'Phitsanulok', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3572, 'Phra Nakhon Si Ayutthaya', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3573, 'Phrae', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3574, 'Phuket', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3575, 'Prachin Buri', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3576, 'Prachuap Khiri Khan', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3577, 'Ranong', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3578, 'Ratchaburi', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3579, 'Rayong', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3580, 'Roi Et', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3581, 'Sa Kaeo', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3582, 'Sakon Nakhon', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3583, 'Samut Prakan', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3584, 'Samut Sakhon', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3585, 'Samut Songkhran', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3586, 'Saraburi', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3587, 'Satun', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3588, 'Si Sa Ket', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3589, 'Sing Buri', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3590, 'Songkhla', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3591, 'Sukhothai', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3592, 'Suphan Buri', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3593, 'Surat Thani', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3594, 'Surin', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3595, 'Tak', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3596, 'Trang', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3597, 'Trat', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3598, 'Ubon Ratchathani', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3599, 'Udon Thani', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3600, 'Uthai Thani', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3601, 'Uttaradit', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3602, 'Yala', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3603, 'Yasothon', 217, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3604, 'Centre', 218, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3605, 'Kara', 218, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3606, 'Maritime', 218, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3607, 'Plateaux', 218, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3608, 'Savanes', 218, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3609, 'Atafu', 219, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3610, 'Fakaofo', 219, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3611, 'Nukunonu', 219, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3612, 'Eua', 220, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3613, 'Ha\'apai', 220, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3614, 'Niuas', 220, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3615, 'Tongatapu', 220, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3616, 'Vava\'u', 220, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3617, 'Arima-Tunapuna-Piarco', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3618, 'Caroni', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3619, 'Chaguanas', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3620, 'Couva-Tabaquite-Talparo', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3621, 'Diego Martin', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3622, 'Glencoe', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3623, 'Penal Debe', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3624, 'Point Fortin', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3625, 'Port of Spain', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3626, 'Princes Town', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3627, 'Saint George', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3628, 'San Fernando', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3629, 'San Juan', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3630, 'Sangre Grande', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3631, 'Siparia', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3632, 'Tobago', 221, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3633, 'Aryanah', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3634, 'Bajah', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3635, 'Bin \'Arus', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3636, 'Binzart', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3637, 'Gouvernorat de Ariana', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3638, 'Gouvernorat de Nabeul', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3639, 'Gouvernorat de Sousse', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3640, 'Hammamet Yasmine', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3641, 'Jundubah', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3642, 'Madaniyin', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3643, 'Manubah', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3644, 'Monastir', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3645, 'Nabul', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3646, 'Qabis', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3647, 'Qafsah', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3648, 'Qibili', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3649, 'Safaqis', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3650, 'Sfax', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3651, 'Sidi Bu Zayd', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3652, 'Silyanah', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3653, 'Susah', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3654, 'Tatawin', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3655, 'Tawzar', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3656, 'Tunis', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3657, 'Zaghwan', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3658, 'al-Kaf', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3659, 'al-Mahdiyah', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3660, 'al-Munastir', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3661, 'al-Qasrayn', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3662, 'al-Qayrawan', 222, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3663, 'Adana', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3664, 'Adiyaman', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3665, 'Afyon', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3666, 'Agri', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3667, 'Aksaray', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3668, 'Amasya', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3669, 'Ankara', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3670, 'Antalya', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3671, 'Ardahan', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3672, 'Artvin', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3673, 'Aydin', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3674, 'Balikesir', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3675, 'Bartin', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3676, 'Batman', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3677, 'Bayburt', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3678, 'Bilecik', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3679, 'Bingol', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3680, 'Bitlis', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3681, 'Bolu', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3682, 'Burdur', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3683, 'Bursa', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3684, 'Canakkale', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3685, 'Cankiri', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3686, 'Corum', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3687, 'Denizli', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3688, 'Diyarbakir', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3689, 'Duzce', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3690, 'Edirne', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3691, 'Elazig', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3692, 'Erzincan', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3693, 'Erzurum', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3694, 'Eskisehir', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3695, 'Gaziantep', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3696, 'Giresun', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3697, 'Gumushane', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3698, 'Hakkari', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3699, 'Hatay', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3700, 'Icel', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3701, 'Igdir', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3702, 'Isparta', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3703, 'Istanbul', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3704, 'Izmir', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3705, 'Kahramanmaras', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3706, 'Karabuk', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3707, 'Karaman', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3708, 'Kars', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3709, 'Karsiyaka', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3710, 'Kastamonu', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3711, 'Kayseri', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3712, 'Kilis', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3713, 'Kirikkale', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3714, 'Kirklareli', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3715, 'Kirsehir', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3716, 'Kocaeli', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3717, 'Konya', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3718, 'Kutahya', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3719, 'Lefkosa', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3720, 'Malatya', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3721, 'Manisa', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3722, 'Mardin', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3723, 'Mugla', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3724, 'Mus', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3725, 'Nevsehir', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3726, 'Nigde', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3727, 'Ordu', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3728, 'Osmaniye', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3729, 'Rize', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3730, 'Sakarya', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3731, 'Samsun', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3732, 'Sanliurfa', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3733, 'Siirt', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3734, 'Sinop', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3735, 'Sirnak', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3736, 'Sivas', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3737, 'Tekirdag', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3738, 'Tokat', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3739, 'Trabzon', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3740, 'Tunceli', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3741, 'Usak', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3742, 'Van', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3743, 'Yalova', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3744, 'Yozgat', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3745, 'Zonguldak', 223, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3746, 'Ahal', 224, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3747, 'Asgabat', 224, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3748, 'Balkan', 224, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3749, 'Dasoguz', 224, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3750, 'Lebap', 224, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3751, 'Mari', 224, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3752, 'Grand Turk', 225, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3753, 'South Caicos and East Caicos', 225, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3754, 'Funafuti', 226, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3755, 'Nanumanga', 226, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3756, 'Nanumea', 226, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3757, 'Niutao', 226, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3758, 'Nui', 226, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3759, 'Nukufetau', 226, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3760, 'Nukulaelae', 226, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3761, 'Vaitupu', 226, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3762, 'Central', 227, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3763, 'Eastern', 227, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3764, 'Northern', 227, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3765, 'Western', 227, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3766, 'Cherkas\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3767, 'Chernihivs\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3768, 'Chernivets\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3769, 'Crimea', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3770, 'Dnipropetrovska', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3771, 'Donets\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3772, 'Ivano-Frankivs\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3773, 'Kharkiv', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3774, 'Kharkov', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3775, 'Khersonska', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3776, 'Khmel\'nyts\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3777, 'Kirovohrad', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3778, 'Krym', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3779, 'Kyyiv', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3780, 'Kyyivs\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3781, 'L\'vivs\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3782, 'Luhans\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3783, 'Mykolayivs\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3784, 'Odes\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3785, 'Odessa', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3786, 'Poltavs\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3787, 'Rivnens\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3788, 'Sevastopol\'', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3789, 'Sums\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3790, 'Ternopil\'s\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3791, 'Volyns\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3792, 'Vynnyts\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3793, 'Zakarpats\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3794, 'Zaporizhia', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3795, 'Zhytomyrs\'ka', 228, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3796, 'Abu Zabi', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3797, 'Ajman', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3798, 'Dubai', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3799, 'Ras al-Khaymah', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3800, 'Sharjah', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3801, 'Sharjha', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3802, 'Umm al Qaywayn', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3803, 'al-Fujayrah', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3804, 'ash-Shariqah', 229, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3805, 'Aberdeen', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3806, 'Aberdeenshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3807, 'Argyll', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3808, 'Armagh', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3809, 'Bedfordshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3810, 'Belfast', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3811, 'Berkshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3812, 'Birmingham', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3813, 'Brechin', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3814, 'Bridgnorth', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3815, 'Bristol', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3816, 'Buckinghamshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3817, 'Cambridge', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3818, 'Cambridgeshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3819, 'Channel Islands', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3820, 'Cheshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3821, 'Cleveland', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3822, 'Co Fermanagh', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3823, 'Conwy', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3824, 'Cornwall', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3825, 'Coventry', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3826, 'Craven Arms', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3827, 'Cumbria', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3828, 'Denbighshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3829, 'Derby', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3830, 'Derbyshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3831, 'Devon', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3832, 'Dial Code Dungannon', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3833, 'Didcot', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3834, 'Dorset', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3835, 'Dunbartonshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3836, 'Durham', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3837, 'East Dunbartonshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3838, 'East Lothian', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3839, 'East Midlands', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3840, 'East Sussex', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3841, 'East Yorkshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3842, 'England', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3843, 'Essex', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3844, 'Fermanagh', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3845, 'Fife', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3846, 'Flintshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3847, 'Fulham', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3848, 'Gainsborough', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL); -INSERT INTO `states` (`id`, `name`, `country_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES -(3849, 'Glocestershire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3850, 'Gwent', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3851, 'Hampshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3852, 'Hants', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3853, 'Herefordshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3854, 'Hertfordshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3855, 'Ireland', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3856, 'Isle Of Man', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3857, 'Isle of Wight', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3858, 'Kenford', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3859, 'Kent', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3860, 'Kilmarnock', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3861, 'Lanarkshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3862, 'Lancashire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3863, 'Leicestershire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3864, 'Lincolnshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3865, 'Llanymynech', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3866, 'London', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3867, 'Ludlow', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3868, 'Manchester', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3869, 'Mayfair', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3870, 'Merseyside', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3871, 'Mid Glamorgan', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3872, 'Middlesex', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3873, 'Mildenhall', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3874, 'Monmouthshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3875, 'Newton Stewart', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3876, 'Norfolk', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3877, 'North Humberside', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3878, 'North Yorkshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3879, 'Northamptonshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3880, 'Northants', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3881, 'Northern Ireland', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3882, 'Northumberland', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3883, 'Nottinghamshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3884, 'Oxford', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3885, 'Powys', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3886, 'Roos-shire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3887, 'SUSSEX', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3888, 'Sark', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3889, 'Scotland', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3890, 'Scottish Borders', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3891, 'Shropshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3892, 'Somerset', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3893, 'South Glamorgan', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3894, 'South Wales', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3895, 'South Yorkshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3896, 'Southwell', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3897, 'Staffordshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3898, 'Strabane', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3899, 'Suffolk', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3900, 'Surrey', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3901, 'Sussex', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3902, 'Twickenham', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3903, 'Tyne and Wear', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3904, 'Tyrone', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3905, 'Utah', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3906, 'Wales', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3907, 'Warwickshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3908, 'West Lothian', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3909, 'West Midlands', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3910, 'West Sussex', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3911, 'West Yorkshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3912, 'Whissendine', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3913, 'Wiltshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3914, 'Wokingham', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3915, 'Worcestershire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3916, 'Wrexham', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3917, 'Wurttemberg', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3918, 'Yorkshire', 230, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3919, 'Alabama', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3920, 'Alaska', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3921, 'Arizona', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3922, 'Arkansas', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3923, 'Byram', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3924, 'California', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3925, 'Cokato', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3926, 'Colorado', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3927, 'Connecticut', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3928, 'Delaware', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3929, 'District of Columbia', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3930, 'Florida', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3931, 'Georgia', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3932, 'Hawaii', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3933, 'Idaho', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3934, 'Illinois', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3935, 'Indiana', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3936, 'Iowa', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3937, 'Kansas', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3938, 'Kentucky', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3939, 'Louisiana', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3940, 'Lowa', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3941, 'Maine', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3942, 'Maryland', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3943, 'Massachusetts', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3944, 'Medfield', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3945, 'Michigan', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3946, 'Minnesota', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3947, 'Mississippi', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3948, 'Missouri', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3949, 'Montana', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3950, 'Nebraska', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3951, 'Nevada', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3952, 'New Hampshire', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3953, 'New Jersey', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3954, 'New Jersy', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3955, 'New Mexico', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3956, 'New York', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3957, 'North Carolina', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3958, 'North Dakota', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3959, 'Ohio', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3960, 'Oklahoma', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3961, 'Ontario', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3962, 'Oregon', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3963, 'Pennsylvania', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3964, 'Ramey', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3965, 'Rhode Island', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3966, 'South Carolina', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3967, 'South Dakota', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3968, 'Sublimity', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3969, 'Tennessee', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3970, 'Texas', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3971, 'Trimble', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3972, 'Utah', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3973, 'Vermont', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3974, 'Virginia', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3975, 'Washington', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3976, 'West Virginia', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3977, 'Wisconsin', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3978, 'Wyoming', 231, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3979, 'United States Minor Outlying I', 232, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3980, 'Artigas', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3981, 'Canelones', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3982, 'Cerro Largo', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3983, 'Colonia', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3984, 'Durazno', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3985, 'FLorida', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3986, 'Flores', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3987, 'Lavalleja', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3988, 'Maldonado', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3989, 'Montevideo', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3990, 'Paysandu', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3991, 'Rio Negro', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3992, 'Rivera', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3993, 'Rocha', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3994, 'Salto', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3995, 'San Jose', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3996, 'Soriano', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3997, 'Tacuarembo', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3998, 'Treinta y Tres', 233, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(3999, 'Andijon', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4000, 'Buhoro', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4001, 'Buxoro Viloyati', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4002, 'Cizah', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4003, 'Fargona', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4004, 'Horazm', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4005, 'Kaskadar', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4006, 'Korakalpogiston', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4007, 'Namangan', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4008, 'Navoi', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4009, 'Samarkand', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4010, 'Sirdare', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4011, 'Surhondar', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4012, 'Toskent', 234, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4013, 'Malampa', 235, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4014, 'Penama', 235, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4015, 'Sanma', 235, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4016, 'Shefa', 235, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4017, 'Tafea', 235, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4018, 'Torba', 235, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4019, 'Vatican City State (Holy See)', 236, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4020, 'Amazonas', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4021, 'Anzoategui', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4022, 'Apure', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4023, 'Aragua', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4024, 'Barinas', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4025, 'Bolivar', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4026, 'Carabobo', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4027, 'Cojedes', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4028, 'Delta Amacuro', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4029, 'Distrito Federal', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4030, 'Falcon', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4031, 'Guarico', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4032, 'Lara', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4033, 'Merida', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4034, 'Miranda', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4035, 'Monagas', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4036, 'Nueva Esparta', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4037, 'Portuguesa', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4038, 'Sucre', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4039, 'Tachira', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4040, 'Trujillo', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4041, 'Vargas', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4042, 'Yaracuy', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4043, 'Zulia', 237, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4044, 'Bac Giang', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4045, 'Binh Dinh', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4046, 'Binh Duong', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4047, 'Da Nang', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4048, 'Dong Bang Song Cuu Long', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4049, 'Dong Bang Song Hong', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4050, 'Dong Nai', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4051, 'Dong Nam Bo', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4052, 'Duyen Hai Mien Trung', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4053, 'Hanoi', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4054, 'Hung Yen', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4055, 'Khu Bon Cu', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4056, 'Long An', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4057, 'Mien Nui Va Trung Du', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4058, 'Thai Nguyen', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4059, 'Thanh Pho Ho Chi Minh', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4060, 'Thu Do Ha Noi', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4061, 'Tinh Can Tho', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4062, 'Tinh Da Nang', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4063, 'Tinh Gia Lai', 238, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4064, 'Anegada', 239, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4065, 'Jost van Dyke', 239, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4066, 'Tortola', 239, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4067, 'Saint Croix', 240, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4068, 'Saint John', 240, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4069, 'Saint Thomas', 240, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4070, 'Alo', 241, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4071, 'Singave', 241, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4072, 'Wallis', 241, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4073, 'Bu Jaydur', 242, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4074, 'Wad-adh-Dhahab', 242, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4075, 'al-\'Ayun', 242, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4076, 'as-Samarah', 242, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4077, '\'Adan', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4078, 'Abyan', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4079, 'Dhamar', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4080, 'Hadramaut', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4081, 'Hajjah', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4082, 'Hudaydah', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4083, 'Ibb', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4084, 'Lahij', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4085, 'Ma\'rib', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4086, 'Madinat San\'a', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4087, 'Sa\'dah', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4088, 'Sana', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4089, 'Shabwah', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4090, 'Ta\'izz', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4091, 'al-Bayda', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4092, 'al-Hudaydah', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4093, 'al-Jawf', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4094, 'al-Mahrah', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4095, 'al-Mahwit', 243, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4096, 'Central Serbia', 244, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4097, 'Kosovo and Metohija', 244, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4098, 'Montenegro', 244, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4099, 'Republic of Serbia', 244, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4100, 'Serbia', 244, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4101, 'Vojvodina', 244, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4102, 'Central', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4103, 'Copperbelt', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4104, 'Eastern', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4105, 'Luapala', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4106, 'Lusaka', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4107, 'North-Western', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4108, 'Northern', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4109, 'Southern', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4110, 'Western', 245, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4111, 'Bulawayo', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4112, 'Harare', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4113, 'Manicaland', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4114, 'Mashonaland Central', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4115, 'Mashonaland East', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4116, 'Mashonaland West', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4117, 'Masvingo', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4118, 'Matabeleland North', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4119, 'Matabeleland South', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4120, 'Midlands', 246, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL), -(4121, 'Lienchiang County', 214, 0, '2021-04-06 01:11:20', '2021-04-06 01:11:20', NULL); - --- -------------------------------------------------------- - --- --- Table structure for table `subscribers` --- - -CREATE TABLE `subscribers` ( - `id` int(11) NOT NULL, - `email` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `taxes` --- - -CREATE TABLE `taxes` ( - `id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `tax_status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0 = Inactive, 1 = Active', - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `taxes` --- - -INSERT INTO `taxes` (`id`, `name`, `tax_status`, `created_at`, `updated_at`) VALUES -(3, 'Tax', 1, '2021-03-07 11:45:33', '2021-03-07 11:45:33'); - --- -------------------------------------------------------- - --- --- Table structure for table `tickets` --- - -CREATE TABLE `tickets` ( - `id` int(11) NOT NULL, - `code` int(6) NOT NULL, - `user_id` int(11) NOT NULL, - `subject` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `details` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `files` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'pending', - `viewed` int(1) NOT NULL DEFAULT 0, - `client_viewed` int(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `ticket_replies` --- - -CREATE TABLE `ticket_replies` ( - `id` int(11) NOT NULL, - `ticket_id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `reply` longtext COLLATE utf8_unicode_ci NOT NULL, - `files` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `transactions` --- - -CREATE TABLE `transactions` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `gateway` varchar(255) DEFAULT NULL, - `payment_type` varchar(255) DEFAULT NULL, - `additional_content` text DEFAULT NULL, - `mpesa_request` varchar(255) DEFAULT NULL, - `mpesa_receipt` varchar(255) DEFAULT NULL, - `status` int(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=latin1; - --- -------------------------------------------------------- - --- --- Table structure for table `translations` --- - -CREATE TABLE `translations` ( - `id` int(11) NOT NULL, - `lang` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, - `lang_key` text COLLATE utf8_unicode_ci DEFAULT NULL, - `lang_value` text COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `translations` --- - -INSERT INTO `translations` (`id`, `lang`, `lang_key`, `lang_value`, `created_at`, `updated_at`) VALUES -(3, 'en', 'all_category', 'All Category', '2020-11-02 07:40:38', '2021-09-20 07:29:07'), -(4, 'en', 'all', 'All', '2020-11-02 07:40:38', '2021-09-20 07:29:07'), -(5, 'en', 'flash_sale', 'Flash Sale', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(6, 'en', 'view_more', 'View More', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(7, 'en', 'add_to_wishlist', 'Add to wishlist', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(8, 'en', 'add_to_compare', 'Add to compare', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(9, 'en', 'add_to_cart', 'Add to cart', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(10, 'en', 'club_point', 'Club Point', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(11, 'en', 'classified_ads', 'Classified Ads', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(13, 'en', 'used', 'Used', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(14, 'en', 'top_10_categories', 'Top 10 Categories', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(15, 'en', 'view_all_categories', 'View All Categories', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(16, 'en', 'top_10_brands', 'Top 10 Brands', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(17, 'en', 'view_all_brands', 'View All Brands', '2020-11-02 07:40:40', '2021-09-20 07:29:07'), -(43, 'en', 'terms__conditions', 'Terms & conditions', '2020-11-02 07:40:41', '2021-09-20 07:29:07'), -(51, 'en', 'best_selling', 'Best Selling', '2020-11-02 07:40:42', '2021-09-20 07:29:07'), -(53, 'en', 'top_20', 'Top 20', '2020-11-02 07:40:42', '2021-09-20 07:29:07'), -(55, 'en', 'featured_products', 'Featured Products', '2020-11-02 07:40:42', '2021-09-20 07:29:07'), -(56, 'en', 'best_sellers', 'Best Sellers', '2020-11-02 07:40:43', '2021-09-20 07:29:07'), -(57, 'en', 'visit_store', 'Visit Store', '2020-11-02 07:40:43', '2021-09-20 07:29:07'), -(58, 'en', 'popular_suggestions', 'Popular Suggestions', '2020-11-02 07:46:59', '2021-09-20 07:29:07'), -(59, 'en', 'category_suggestions', 'Category Suggestions', '2020-11-02 07:46:59', '2021-09-20 07:29:07'), -(62, 'en', 'automobile__motorcycle', 'Automobile & Motorcycle', '2020-11-02 07:47:01', '2021-09-20 07:29:07'), -(63, 'en', 'price_range', 'Price range', '2020-11-02 07:47:01', '2021-09-20 07:29:07'), -(64, 'en', 'filter_by_color', 'Filter by color', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(65, 'en', 'home', 'Home', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(67, 'en', 'newest', 'Newest', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(68, 'en', 'oldest', 'Oldest', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(69, 'en', 'price_low_to_high', 'Price low to high', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(70, 'en', 'price_high_to_low', 'Price high to low', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(71, 'en', 'brands', 'Brands', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(72, 'en', 'all_brands', 'All Brands', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(74, 'en', 'all_sellers', 'All Sellers', '2020-11-02 07:47:02', '2021-09-20 07:29:07'), -(78, 'en', 'inhouse_product', 'Inhouse product', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(79, 'en', 'message_seller', 'Message Seller', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(80, 'en', 'price', 'Price', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(81, 'en', 'discount_price', 'Discount Price', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(82, 'en', 'color', 'Color', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(83, 'en', 'quantity', 'Quantity', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(84, 'en', 'available', 'available', '2020-11-02 08:18:03', '2021-02-09 06:52:36'), -(85, 'en', 'total_price', 'Total Price', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(86, 'en', 'out_of_stock', 'Out of Stock', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(87, 'en', 'refund', 'Refund', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(88, 'en', 'share', 'Share', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(89, 'en', 'sold_by', 'Sold By', '2020-11-02 08:18:03', '2021-09-20 07:36:54'), -(90, 'en', 'customer_reviews', 'customer reviews', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(91, 'en', 'top_selling_products', 'Top Selling Products', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(92, 'en', 'description', 'Description', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(93, 'en', 'video', 'Video', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(94, 'en', 'reviews', 'Reviews', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(95, 'en', 'download', 'Download', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(96, 'en', 'there_have_been_no_reviews_for_this_product_yet', 'There have been no reviews for this product yet.', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(97, 'en', 'related_products', 'Related products', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(98, 'en', 'any_query_about_this_product', 'Any query about this product', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(99, 'en', 'product_name', 'Product Name', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(100, 'en', 'your_question', 'Your Question', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(101, 'en', 'send', 'Send', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(103, 'en', 'use_country_code_before_number', 'Use country code before number', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(105, 'en', 'remember_me', 'Remember Me', '2020-11-02 08:18:03', '2021-09-20 07:29:07'), -(107, 'en', 'dont_have_an_account', 'Dont have an account?', '2020-11-02 08:18:04', '2021-09-20 07:29:07'), -(108, 'en', 'register_now', 'Register Now', '2020-11-02 08:18:04', '2021-09-20 07:29:07'), -(109, 'en', 'or_login_with', 'Or Login With', '2020-11-02 08:18:04', '2021-09-20 07:29:07'), -(110, 'en', 'oops', 'oops..', '2020-11-02 10:29:04', '2021-09-20 07:29:07'), -(111, 'en', 'this_item_is_out_of_stock', 'This item is out of stock!', '2020-11-02 10:29:04', '2021-09-20 07:29:07'), -(112, 'en', 'back_to_shopping', 'Back to shopping', '2020-11-02 10:29:04', '2021-09-20 07:29:07'), -(113, 'en', 'login_to_your_account', 'Login to your account.', '2020-11-02 11:27:41', '2021-09-20 07:29:07'), -(115, 'en', 'purchase_history', 'Purchase History', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(116, 'en', 'new', 'New', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(117, 'en', 'downloads', 'Downloads', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(118, 'en', 'sent_refund_request', 'Sent Refund Request', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(119, 'en', 'product_bulk_upload', 'Product Bulk Upload', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(123, 'en', 'orders', 'Orders', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(124, 'en', 'recieved_refund_request', 'Recieved Refund Request', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(126, 'en', 'shop_setting', 'Shop Setting', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(127, 'en', 'payment_history', 'Payment History', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(128, 'en', 'money_withdraw', 'Money Withdraw', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(129, 'en', 'conversations', 'Conversations', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(130, 'en', 'my_wallet', 'My Wallet', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(131, 'en', 'earning_points', 'Earning Points', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(132, 'en', 'support_ticket', 'Support Ticket', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(133, 'en', 'manage_profile', 'Manage Profile', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(134, 'en', 'sold_amount', 'Sold Amount', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(135, 'en', 'your_sold_amount_current_month', 'Your sold amount (current month)', '2020-11-02 11:27:53', '2021-09-20 07:29:07'), -(136, 'en', 'total_sold', 'Total Sold', '2020-11-02 11:27:54', '2021-09-20 07:29:07'), -(137, 'en', 'last_month_sold', 'Last Month Sold', '2020-11-02 11:27:54', '2021-09-20 07:29:07'), -(138, 'en', 'total_sale', 'Total sale', '2020-11-02 11:27:54', '2021-09-20 07:29:07'), -(139, 'en', 'total_earnings', 'Total earnings', '2020-11-02 11:27:54', '2021-09-20 07:29:07'), -(140, 'en', 'successful_orders', 'Successful orders', '2020-11-02 11:27:54', '2021-09-20 07:29:07'), -(141, 'en', 'total_orders', 'Total orders', '2020-11-02 11:27:54', '2021-09-20 07:29:07'), -(142, 'en', 'pending_orders', 'Pending orders', '2020-11-02 11:27:54', '2021-09-20 07:29:07'), -(143, 'en', 'cancelled_orders', 'Cancelled orders', '2020-11-02 11:27:54', '2021-09-20 07:29:07'), -(145, 'en', 'product', 'Product', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(147, 'en', 'purchased_package', 'Purchased Package', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(148, 'en', 'package_not_found', 'Package Not Found', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(149, 'en', 'upgrade_package', 'Upgrade Package', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(150, 'en', 'shop', 'Shop', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(151, 'en', 'manage__organize_your_shop', 'Manage & organize your shop', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(152, 'en', 'go_to_setting', 'Go to setting', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(153, 'en', 'payment', 'Payment', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(154, 'en', 'configure_your_payment_method', 'Configure your payment method', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(156, 'en', 'my_panel', 'My Panel', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(158, 'en', 'item_has_been_added_to_wishlist', 'Item has been added to wishlist', '2020-11-02 11:27:55', '2021-09-20 07:29:07'), -(159, 'en', 'my_points', 'My Points', '2020-11-02 11:28:15', '2021-09-20 07:29:07'), -(160, 'en', '_points', 'Points', '2020-11-02 11:28:15', '2021-09-20 07:29:07'), -(161, 'en', 'wallet_money', 'Wallet Money', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(162, 'en', 'exchange_rate', 'Exchange Rate', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(163, 'en', 'point_earning_history', 'Point Earning history', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(164, 'en', 'date', 'Date', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(165, 'en', 'points', 'Points', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(166, 'en', 'converted', 'Converted', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(167, 'en', 'action', 'Action', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(168, 'en', 'no_history_found', 'No history found.', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(169, 'en', 'convert_has_been_done_successfully_check_your_wallets', 'Convert has been done successfully Check your Wallets', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(170, 'en', 'something_went_wrong', 'Something went wrong', '2020-11-02 11:28:16', '2021-09-20 07:29:07'), -(171, 'en', 'remaining_uploads', 'Remaining Uploads', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(172, 'en', 'no_package_found', 'No Package Found', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(173, 'en', 'search_product', 'Search product', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(174, 'en', 'name', 'Name', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(176, 'en', 'current_qty', 'Current Qty', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(177, 'en', 'base_price', 'Base Price', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(178, 'en', 'published', 'Published', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(179, 'en', 'featured', 'Featured', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(180, 'en', 'options', 'Options', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(181, 'en', 'edit', 'Edit', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(182, 'en', 'duplicate', 'Duplicate', '2020-11-02 11:37:13', '2021-09-20 07:29:07'), -(184, 'en', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Download the skeleton file and fill it with data.', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(185, 'en', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. You can download the example file to understand how the data must be filled.', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(186, 'en', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Once you have downloaded and filled the skeleton file, upload it in the form below and submit.', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(187, 'en', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. After uploading products you need to edit them and set products images and choices.', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(188, 'en', 'download_csv', 'Download CSV', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(189, 'en', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Category,Sub category,Sub Sub category and Brand should be in numerical ids.', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(190, 'en', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. You can download the pdf to get Category,Sub category,Sub Sub category and Brand id.', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(191, 'en', 'download_category', 'Download Category', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(192, 'en', 'download_sub_category', 'Download Sub category', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(193, 'en', 'download_sub_sub_category', 'Download Sub Sub category', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(194, 'en', 'download_brand', 'Download Brand', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(195, 'en', 'upload_csv_file', 'Upload CSV File', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(196, 'en', 'csv', 'CSV', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(197, 'en', 'choose_csv_file', 'Choose CSV File', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(198, 'en', 'upload', 'Upload', '2020-11-02 11:37:20', '2021-09-20 07:29:07'), -(199, 'en', 'add_new_digital_product', 'Add New Digital Product', '2020-11-02 11:37:25', '2021-09-20 07:29:07'), -(200, 'en', 'available_status', 'Available Status', '2020-11-02 11:37:29', '2021-09-20 07:29:07'), -(201, 'en', 'admin_status', 'Admin Status', '2020-11-02 11:37:29', '2021-09-20 07:29:07'), -(202, 'en', 'pending_balance', 'Pending Balance', '2020-11-02 11:38:07', '2021-09-20 07:29:07'), -(203, 'en', 'send_withdraw_request', 'Send Withdraw Request', '2020-11-02 11:38:07', '2021-09-20 07:29:07'), -(204, 'en', 'withdraw_request_history', 'Withdraw Request history', '2020-11-02 11:38:07', '2021-09-20 07:29:07'), -(205, 'en', 'amount', 'Amount', '2020-11-02 11:38:07', '2021-09-20 07:29:07'), -(206, 'en', 'status', 'Status', '2020-11-02 11:38:07', '2021-09-20 07:29:07'), -(207, 'en', 'message', 'Message', '2020-11-02 11:38:07', '2021-09-20 07:29:07'), -(208, 'en', 'send_a_withdraw_request', 'Send A Withdraw Request', '2020-11-02 11:38:07', '2021-09-20 07:29:07'), -(209, 'en', 'basic_info', 'Basic Info', '2020-11-02 11:38:13', '2021-09-20 07:29:07'), -(211, 'en', 'your_phone', 'Your Phone', '2020-11-02 11:38:13', '2021-09-20 07:29:07'), -(212, 'en', 'photo', 'Photo', '2020-11-02 11:38:13', '2021-09-20 07:29:07'), -(213, 'en', 'browse', 'Browse', '2020-11-02 11:38:13', '2021-09-20 07:29:07'), -(215, 'en', 'your_password', 'Your Password', '2020-11-02 11:38:13', '2021-09-20 07:29:07'), -(216, 'en', 'new_password', 'New Password', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(217, 'en', 'confirm_password', 'Confirm Password', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(218, 'en', 'add_new_address', 'Add New Address', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(219, 'en', 'payment_setting', 'Payment Setting', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(220, 'en', 'cash_payment', 'Cash Payment', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(221, 'en', 'bank_payment', 'Bank Payment', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(222, 'en', 'bank_name', 'Bank Name', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(223, 'en', 'bank_account_name', 'Bank Account Name', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(224, 'en', 'bank_account_number', 'Bank Account Number', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(225, 'en', 'bank_routing_number', 'Bank Routing Number', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(226, 'en', 'update_profile', 'Update Profile', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(227, 'en', 'change_your_email', 'Change your email', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(228, 'en', 'your_email', 'Your Email', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(229, 'en', 'sending_email', 'Sending Email...', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(230, 'en', 'verify', 'Verify', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(231, 'en', 'update_email', 'Update Email', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(232, 'en', 'new_address', 'New Address', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(233, 'en', 'your_address', 'Your Address', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(234, 'en', 'country', 'Country', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(235, 'en', 'select_your_country', 'Select your country', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(236, 'en', 'city', 'City', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(237, 'en', 'your_city', 'Your City', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(239, 'en', 'your_postal_code', 'Your Postal Code', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(240, 'en', '880', '+880', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(241, 'en', 'save', 'Save', '2020-11-02 11:38:14', '2021-09-20 07:29:07'), -(242, 'en', 'received_refund_request', 'Received Refund Request', '2020-11-02 11:56:20', '2021-09-20 07:29:07'), -(244, 'en', 'delete_confirmation', 'Delete Confirmation', '2020-11-02 11:56:20', '2021-09-20 07:29:07'), -(245, 'en', 'are_you_sure_to_delete_this', 'Are you sure to delete this?', '2020-11-02 11:56:21', '2021-09-20 07:29:07'), -(246, 'en', 'premium_packages_for_sellers', 'Premium Packages for Sellers', '2020-11-02 11:57:36', '2021-09-20 07:29:07'), -(247, 'en', 'product_upload', 'Product Upload', '2020-11-02 11:57:36', '2021-09-20 07:29:07'), -(248, 'en', 'digital_product_upload', 'Digital Product Upload', '2020-11-02 11:57:36', '2021-09-20 07:29:07'), -(250, 'en', 'purchase_package', 'Purchase Package', '2020-11-02 11:57:36', '2021-09-20 07:29:07'), -(251, 'en', 'select_payment_type', 'Select Payment Type', '2020-11-02 11:57:36', '2021-09-20 07:29:07'), -(252, 'en', 'payment_type', 'Payment Type', '2020-11-02 11:57:36', '2021-09-20 07:29:07'), -(253, 'en', 'select_one', 'Select One', '2020-11-02 11:57:36', '2021-09-20 07:29:07'), -(254, 'en', 'online_payment', 'Online payment', '2020-11-02 11:57:37', '2021-09-20 07:29:07'), -(255, 'en', 'offline_payment', 'Offline payment', '2020-11-02 11:57:37', '2021-09-20 07:29:07'), -(256, 'en', 'purchase_your_package', 'Purchase Your Package', '2020-11-02 11:57:37', '2021-09-20 07:29:07'), -(258, 'en', 'paypal', 'Paypal', '2020-11-02 11:57:37', '2021-09-20 07:29:07'), -(259, 'en', 'stripe', 'Stripe', '2020-11-02 11:57:37', '2021-09-20 07:29:07'), -(260, 'en', 'sslcommerz', 'sslcommerz', '2020-11-02 11:57:37', '2020-11-02 11:57:37'), -(265, 'en', 'confirm', 'Confirm', '2020-11-02 11:57:37', '2021-09-20 07:29:08'), -(266, 'en', 'offline_package_payment', 'Offline Package Payment', '2020-11-02 11:57:37', '2021-09-20 07:29:08'), -(267, 'en', 'transaction_id', 'Transaction ID', '2020-11-02 12:30:12', '2021-09-20 07:29:08'), -(268, 'en', 'choose_image', 'Choose image', '2020-11-02 12:30:12', '2021-09-20 07:29:08'), -(269, 'en', 'code', 'Code', '2020-11-02 12:42:00', '2021-09-20 07:29:08'), -(270, 'en', 'delivery_status', 'Delivery Status', '2020-11-02 12:42:00', '2021-09-20 07:29:08'), -(271, 'en', 'payment_status', 'Payment Status', '2020-11-02 12:42:00', '2021-09-20 07:29:08'), -(272, 'en', 'paid', 'Paid', '2020-11-02 12:42:00', '2021-09-20 07:29:08'), -(273, 'en', 'order_details', 'Order Details', '2020-11-02 12:42:00', '2021-09-20 07:29:08'), -(274, 'en', 'download_invoice', 'Download Invoice', '2020-11-02 12:42:00', '2021-09-20 07:29:08'), -(275, 'en', 'unpaid', 'Unpaid', '2020-11-02 12:42:00', '2021-09-20 07:29:08'), -(277, 'en', 'order_placed', 'Order placed', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(278, 'en', 'confirmed', 'Confirmed', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(279, 'en', 'on_delivery', 'On delivery', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(280, 'en', 'delivered', 'Delivered', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(281, 'en', 'order_summary', 'Order Summary', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(282, 'en', 'order_code', 'Order Code', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(283, 'en', 'customer', 'Customer', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(287, 'en', 'total_order_amount', 'Total order amount', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(288, 'en', 'shipping_metdod', 'Shipping metdod', '2020-11-02 12:43:59', '2021-09-20 07:29:08'), -(289, 'en', 'flat_shipping_rate', 'Flat shipping rate', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(290, 'en', 'payment_metdod', 'Payment metdod', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(291, 'en', 'variation', 'Variation', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(292, 'en', 'delivery_type', 'Delivery Type', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(293, 'en', 'home_delivery', 'Home Delivery', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(294, 'en', 'order_ammount', 'Order Ammount', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(295, 'en', 'subtotal', 'Subtotal', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(296, 'en', 'shipping', 'Shipping', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(298, 'en', 'coupon_discount', 'Coupon Discount', '2020-11-02 12:44:00', '2021-09-20 07:29:08'), -(300, 'en', 'na', 'N/A', '2020-11-02 12:44:20', '2021-09-20 07:29:08'), -(301, 'en', 'in_stock', 'In stock', '2020-11-02 12:54:52', '2021-09-20 07:29:08'), -(302, 'en', 'buy_now', 'Buy Now', '2020-11-02 12:54:52', '2021-09-20 07:29:08'), -(303, 'en', 'item_added_to_your_cart', 'Item added to your cart!', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(304, 'en', 'proceed_to_checkout', 'Proceed to Checkout', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(305, 'en', 'cart_items', 'Cart Items', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(306, 'en', '1_my_cart', '1. My Cart', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(307, 'en', 'view_cart', 'View cart', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(308, 'en', '2_shipping_info', '2. Shipping info', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(309, 'en', 'checkout', 'Checkout', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(310, 'en', '3_delivery_info', '3. Delivery info', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(311, 'en', '4_payment', '4. Payment', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(312, 'en', '5_confirmation', '5. Confirmation', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(313, 'en', 'remove', 'Remove', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(314, 'en', 'return_to_shop', 'Return to shop', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(315, 'en', 'continue_to_shipping', 'Continue to Shipping', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(316, 'en', 'or', 'Or', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(317, 'en', 'guest_checkout', 'Guest Checkout', '2020-11-02 12:56:46', '2021-09-20 07:29:08'), -(318, 'en', 'continue_to_delivery_info', 'Continue to Delivery Info', '2020-11-02 12:57:44', '2021-09-20 07:29:08'), -(319, 'en', 'postal_code', 'Postal Code', '2020-11-02 13:01:01', '2021-09-20 07:29:08'), -(320, 'en', 'choose_delivery_type', 'Choose Delivery Type', '2020-11-02 13:01:04', '2021-09-20 07:29:08'), -(321, 'en', 'local_pickup', 'Local Pickup', '2020-11-02 13:01:04', '2021-09-20 07:29:08'), -(322, 'en', 'select_your_nearest_pickup_point', 'Select your nearest pickup point', '2020-11-02 13:01:04', '2021-09-20 07:29:08'), -(323, 'en', 'continue_to_payment', 'Continue to Payment', '2020-11-02 13:01:04', '2021-09-20 07:29:08'), -(324, 'en', 'select_a_payment_option', 'Select a payment option', '2020-11-02 13:01:13', '2021-09-20 07:29:08'), -(325, 'en', 'razorpay', 'Razorpay', '2020-11-02 13:01:13', '2021-09-20 07:29:08'), -(326, 'en', 'paystack', 'Paystack', '2020-11-02 13:01:13', '2021-09-20 07:29:08'), -(327, 'en', 'voguepay', 'VoguePay', '2020-11-02 13:01:13', '2021-09-20 07:29:08'), -(328, 'en', 'payhere', 'payhere', '2020-11-02 13:01:13', '2021-02-09 06:52:37'), -(329, 'en', 'ngenius', 'ngenius', '2020-11-02 13:01:13', '2020-11-02 13:01:13'), -(330, 'en', 'paytm', 'Paytm', '2020-11-02 13:01:13', '2021-09-20 07:29:08'), -(331, 'en', 'cash_on_delivery', 'Cash on Delivery', '2020-11-02 13:01:13', '2021-09-20 07:29:08'), -(332, 'en', 'your_wallet_balance_', 'Your wallet balance :', '2020-11-02 13:01:13', '2021-09-20 07:29:08'), -(333, 'en', 'insufficient_balance', 'Insufficient balance', '2020-11-02 13:01:13', '2021-09-20 07:29:08'), -(334, 'en', 'i_agree_to_the', 'I agree to the', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(338, 'en', 'complete_order', 'Complete Order', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(339, 'en', 'summary', 'Summary', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(340, 'en', 'items', 'Items', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(341, 'en', 'total_club_point', 'Total Club point', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(342, 'en', 'total_shipping', 'Total Shipping', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(343, 'en', 'have_coupon_code_enter_here', 'Have coupon code? Enter here', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(344, 'en', 'apply', 'Apply', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(345, 'en', 'you_need_to_agree_with_our_policies', 'You need to agree with our policies', '2020-11-02 13:01:14', '2021-09-20 07:29:08'), -(346, 'en', 'forgot_password', 'Forgot password', '2020-11-02 13:01:25', '2021-09-20 07:29:08'), -(469, 'en', 'seo_setting', 'SEO Setting', '2020-11-02 13:01:33', '2021-09-20 07:29:08'), -(474, 'en', 'system_update', 'System Update', '2020-11-02 13:01:34', '2021-09-20 07:29:08'), -(480, 'en', 'add_new_payment_method', 'Add New Payment Method', '2020-11-02 13:01:38', '2021-09-20 07:29:08'), -(481, 'en', 'manual_payment_method', 'Manual Payment Method', '2020-11-02 13:01:38', '2021-09-20 07:29:08'), -(482, 'en', 'heading', 'Heading', '2020-11-02 13:01:38', '2021-09-20 07:29:08'), -(483, 'en', 'logo', 'Logo', '2020-11-02 13:01:38', '2021-09-20 07:29:08'), -(484, 'en', 'manual_payment_information', 'Manual Payment Information', '2020-11-02 13:01:42', '2021-09-20 07:29:08'), -(485, 'en', 'type', 'Type', '2020-11-02 13:01:42', '2021-09-20 07:29:08'), -(486, 'en', 'custom_payment', 'Custom Payment', '2020-11-02 13:01:42', '2021-09-20 07:29:08'), -(487, 'en', 'check_payment', 'Check Payment', '2020-11-02 13:01:42', '2021-09-20 07:29:08'), -(488, 'en', 'checkout_thumbnail', 'Checkout Thumbnail', '2020-11-02 13:01:42', '2021-09-20 07:29:08'), -(489, 'en', 'payment_instruction', 'Payment Instruction', '2020-11-02 13:01:42', '2021-09-20 07:29:08'), -(490, 'en', 'bank_information', 'Bank Information', '2020-11-02 13:01:42', '2021-09-20 07:29:08'), -(491, 'en', 'select_file', 'Select File', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(492, 'en', 'upload_new', 'Upload New', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(493, 'en', 'sort_by_newest', 'Sort by newest', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(494, 'en', 'sort_by_oldest', 'Sort by oldest', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(495, 'en', 'sort_by_smallest', 'Sort by smallest', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(496, 'en', 'sort_by_largest', 'Sort by largest', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(497, 'en', 'selected_only', 'Selected Only', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(498, 'en', 'no_files_found', 'No files found', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(499, 'en', '0_file_selected', '0 File selected', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(500, 'en', 'clear', 'Clear', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(501, 'en', 'prev', 'Prev', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(502, 'en', 'next', 'Next', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(503, 'en', 'add_files', 'Add Files', '2020-11-02 13:01:53', '2021-09-20 07:29:08'), -(504, 'en', 'method_has_been_inserted_successfully', 'Method has been inserted successfully', '2020-11-02 13:02:03', '2021-09-20 07:29:08'), -(506, 'en', 'order_date', 'Order Date', '2020-11-02 13:02:42', '2021-09-20 07:29:08'), -(507, 'en', 'bill_to', 'Bill to', '2020-11-02 13:02:42', '2021-09-20 07:29:08'), -(510, 'en', 'sub_total', 'Sub Total', '2020-11-02 13:02:42', '2021-09-20 07:29:08'), -(512, 'en', 'total_tax', 'Total Tax', '2020-11-02 13:02:42', '2021-09-20 07:29:08'), -(513, 'en', 'grand_total', 'Grand Total', '2020-11-02 13:02:42', '2021-09-20 07:29:08'), -(514, 'en', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Your order has been placed successfully. Please submit payment information from purchase history', '2020-11-02 13:02:47', '2021-09-20 07:29:08'), -(515, 'en', 'thank_you_for_your_order', 'Thank You for Your Order!', '2020-11-02 13:02:48', '2021-09-20 07:29:08'), -(516, 'en', 'order_code', 'Order Code:', '2020-11-02 13:02:48', '2021-09-20 07:29:08'), -(517, 'en', 'a_copy_or_your_order_summary_has_been_sent_to', 'A copy or your order summary has been sent to', '2020-11-02 13:02:48', '2021-09-20 07:29:08'), -(518, 'en', 'make_payment', 'Make Payment', '2020-11-02 13:03:26', '2021-09-20 07:29:08'), -(519, 'en', 'payment_screenshot', 'Payment screenshot', '2020-11-02 13:03:29', '2021-09-20 07:29:08'), -(520, 'en', 'paypal_credential', 'Paypal Credential', '2020-11-02 13:12:20', '2021-09-20 07:29:08'), -(522, 'en', 'paypal_client_id', 'Paypal Client ID', '2020-11-02 13:12:20', '2021-09-20 07:29:08'), -(523, 'en', 'paypal_client_secret', 'Paypal Client Secret', '2020-11-02 13:12:20', '2021-09-20 07:29:08'), -(524, 'en', 'paypal_sandbox_mode', 'Paypal Sandbox Mode', '2020-11-02 13:12:20', '2021-09-20 07:29:08'), -(525, 'en', 'sslcommerz_credential', 'Sslcommerz Credential', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(526, 'en', 'sslcz_store_id', 'Sslcz Store Id', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(527, 'en', 'sslcz_store_password', 'Sslcz store password', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(528, 'en', 'sslcommerz_sandbox_mode', 'Sslcommerz Sandbox Mode', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(529, 'en', 'stripe_credential', 'Stripe Credential', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(531, 'en', 'stripe_key', 'STRIPE KEY', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(533, 'en', 'stripe_secret', 'STRIPE SECRET', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(534, 'en', 'razorpay_credential', 'RazorPay Credential', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(535, 'en', 'razor_key', 'RAZOR KEY', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(536, 'en', 'razor_secret', 'RAZOR SECRET', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(537, 'en', 'instamojo_credential', 'Instamojo Credential', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(538, 'en', 'api_key', 'API KEY', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(539, 'en', 'im_api_key', 'IM API KEY', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(540, 'en', 'auth_token', 'AUTH TOKEN', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(541, 'en', 'im_auth_token', 'IM AUTH TOKEN', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(542, 'en', 'instamojo_sandbox_mode', 'Instamojo Sandbox Mode', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(543, 'en', 'paystack_credential', 'PayStack Credential', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(544, 'en', 'public_key', 'PUBLIC KEY', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(545, 'en', 'secret_key', 'SECRET KEY', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(546, 'en', 'merchant_email', 'MERCHANT EMAIL', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(547, 'en', 'voguepay_credential', 'VoguePay Credential', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(548, 'en', 'merchant_id', 'MERCHANT ID', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(549, 'en', 'sandbox_mode', 'Sandbox Mode', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(550, 'en', 'payhere_credential', 'Payhere Credential', '2020-11-02 13:12:21', '2021-09-20 07:29:08'), -(551, 'en', 'payhere_merchant_id', 'PAYHERE MERCHANT ID', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(552, 'en', 'payhere_secret', 'PAYHERE SECRET', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(553, 'en', 'payhere_currency', 'PAYHERE CURRENCY', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(554, 'en', 'payhere_sandbox_mode', 'Payhere Sandbox Mode', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(555, 'en', 'ngenius_credential', 'Ngenius Credential', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(556, 'en', 'ngenius_outlet_id', 'NGENIUS OUTLET ID', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(557, 'en', 'ngenius_api_key', 'NGENIUS API KEY', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(558, 'en', 'ngenius_currency', 'NGENIUS CURRENCY', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(559, 'en', 'mpesa_credential', 'Mpesa Credential', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(560, 'en', 'mpesa_consumer_key', 'MPESA CONSUMER KEY', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(561, 'en', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(562, 'en', 'mpesa_consumer_secret', 'MPESA CONSUMER SECRET', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(563, 'en', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(564, 'en', 'mpesa_short_code', 'MPESA SHORT CODE', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(565, 'en', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(566, 'en', 'mpesa_sandbox_activation', 'MPESA SANDBOX ACTIVATION', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(567, 'en', 'flutterwave_credential', 'Flutterwave Credential', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(568, 'en', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(569, 'en', 'rave_secret_key', 'RAVE_SECRET_KEY', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(570, 'en', 'rave_title', 'RAVE_TITLE', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(571, 'en', 'stagin_activation', 'STAGIN ACTIVATION', '2020-11-02 13:12:22', '2021-09-20 07:29:08'), -(573, 'en', 'all_product', 'All Product', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(574, 'en', 'sort_by', 'Sort By', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(575, 'en', 'rating_high__low', 'Rating (High > Low)', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(576, 'en', 'rating_low__high', 'Rating (Low > High)', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(577, 'en', 'num_of_sale_high__low', 'Num of Sale (High > Low)', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(578, 'en', 'num_of_sale_low__high', 'Num of Sale (Low > High)', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(579, 'en', 'base_price_high__low', 'Base Price (High > Low)', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(580, 'en', 'base_price_low__high', 'Base Price (Low > High)', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(581, 'en', 'type__enter', 'Type & Enter', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(582, 'en', 'added_by', 'Added By', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(583, 'en', 'num_of_sale', 'Num of Sale', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(584, 'en', 'total_stock', 'Total Stock', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(585, 'en', 'todays_deal', 'Todays Deal', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(586, 'en', 'rating', 'Rating', '2020-11-02 13:15:01', '2021-09-20 07:29:08'), -(587, 'en', 'times', 'times', '2020-11-02 13:15:01', '2021-02-09 06:52:38'), -(588, 'en', 'add_nerw_product', 'Add Nerw Product', '2020-11-02 13:15:02', '2021-09-20 07:29:08'), -(589, 'en', 'product_information', 'Product Information', '2020-11-02 13:15:02', '2021-09-20 07:29:08'), -(590, 'en', 'unit', 'Unit', '2020-11-02 13:15:02', '2021-09-20 07:29:08'), -(591, 'en', 'unit_eg_kg_pc_etc', 'Unit (e.g. KG, Pc etc)', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(592, 'en', 'minimum_qty', 'Minimum Qty', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(593, 'en', 'tags', 'Tags', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(594, 'en', 'type_and_hit_enter_to_add_a_tag', 'Type and hit enter to add a tag', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(595, 'en', 'barcode', 'Barcode', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(596, 'en', 'refundable', 'Refundable', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(597, 'en', 'product_images', 'Product Images', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(598, 'en', 'gallery_images', 'Gallery Images', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(599, 'en', 'todays_deal_updated_successfully', 'Todays Deal updated successfully', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(600, 'en', 'published_products_updated_successfully', 'Published products updated successfully', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(601, 'en', 'thumbnail_image', 'Thumbnail Image', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(602, 'en', 'featured_products_updated_successfully', 'Featured products updated successfully', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(603, 'en', 'product_videos', 'Product Videos', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(604, 'en', 'video_provider', 'Video Provider', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(605, 'en', 'youtube', 'Youtube', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(606, 'en', 'dailymotion', 'Dailymotion', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(607, 'en', 'vimeo', 'Vimeo', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(608, 'en', 'video_link', 'Video Link', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(609, 'en', 'product_variation', 'Product Variation', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(610, 'en', 'colors', 'Colors', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(611, 'en', 'attributes', 'Attributes', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(612, 'en', 'choose_attributes', 'Choose Attributes', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(613, 'en', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Choose the attributes of this product and then input values of each attribute', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(614, 'en', 'product_price__stock', 'Product price + stock', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(616, 'en', 'unit_price', 'Unit price', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(617, 'en', 'purchase_price', 'Purchase price', '2020-11-02 13:15:03', '2021-09-20 07:29:08'), -(618, 'en', 'flat', 'Flat', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(619, 'en', 'percent', 'Percent', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(620, 'en', 'discount', 'Discount', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(621, 'en', 'product_description', 'Product Description', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(622, 'en', 'product_shipping_cost', 'Product Shipping Cost', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(623, 'en', 'free_shipping', 'Free Shipping', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(624, 'en', 'flat_rate', 'Flat Rate', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(625, 'en', 'shipping_cost', 'Shipping cost', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(626, 'en', 'pdf_specification', 'PDF Specification', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(627, 'en', 'seo_meta_tags', 'SEO Meta Tags', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(628, 'en', 'meta_title', 'Meta Title', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(629, 'en', 'meta_image', 'Meta Image', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(630, 'en', 'choice_title', 'Choice Title', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(631, 'en', 'enter_choice_values', 'Enter choice values', '2020-11-02 13:15:04', '2021-09-20 07:29:08'), -(632, 'en', 'all_categories', 'All categories A', '2020-11-03 07:12:19', '2021-09-20 07:40:46'), -(633, 'en', 'add_new_category', 'Add New category', '2020-11-03 07:12:19', '2021-09-20 07:29:08'), -(634, 'en', 'type_name__enter', 'Type name & Enter', '2020-11-03 07:12:19', '2021-09-20 07:29:08'), -(635, 'en', 'banner', 'Banner', '2020-11-03 07:12:19', '2021-09-20 07:29:08'), -(637, 'en', 'commission', 'Commission', '2020-11-03 07:12:19', '2021-09-20 07:29:08'), -(638, 'en', 'icon', 'icon', '2020-11-03 07:12:19', '2021-02-09 06:52:38'), -(639, 'en', 'featured_categories_updated_successfully', 'Featured categories updated successfully', '2020-11-03 07:12:20', '2021-09-20 07:29:08'), -(640, 'en', 'hot', 'Hot', '2020-11-03 07:13:12', '2021-09-20 07:29:08'), -(641, 'en', 'filter_by_payment_status', 'Filter by Payment Status', '2020-11-03 07:15:15', '2021-09-20 07:29:08'), -(642, 'en', 'unpaid', 'Un-Paid', '2020-11-03 07:15:15', '2021-09-20 07:29:08'), -(643, 'en', 'filter_by_deliver_status', 'Filter by Deliver Status', '2020-11-03 07:15:15', '2021-09-20 07:29:08'), -(644, 'en', 'pending', 'Pending', '2020-11-03 07:15:15', '2021-09-20 07:29:08'), -(645, 'en', 'type_order_code__hit_enter', 'Type Order code & hit Enter', '2020-11-03 07:15:15', '2021-09-20 07:29:08'), -(646, 'en', 'num_of_products', 'Num. of Products', '2020-11-03 07:15:15', '2021-09-20 07:29:08'), -(647, 'en', 'walk_in_customer', 'Walk In Customer', '2020-11-03 10:03:20', '2021-09-20 07:29:08'), -(648, 'en', 'qty', 'QTY', '2020-11-03 10:03:20', '2021-09-20 07:29:08'), -(649, 'en', 'without_shipping_charge', 'Without Shipping Charge', '2020-11-03 10:03:20', '2021-09-20 07:29:08'), -(650, 'en', 'with_shipping_charge', 'With Shipping Charge', '2020-11-03 10:03:20', '2021-09-20 07:29:08'), -(651, 'en', 'pay_with_cash', 'Pay With Cash', '2020-11-03 10:03:20', '2021-09-20 07:29:08'), -(652, 'en', 'shipping_address', 'Shipping Address', '2020-11-03 10:03:20', '2021-09-20 07:29:08'), -(653, 'en', 'close', 'Close', '2020-11-03 10:03:20', '2021-09-20 07:29:08'), -(654, 'en', 'select_country', 'Select country', '2020-11-03 10:03:21', '2021-09-20 07:29:08'), -(655, 'en', 'order_confirmation', 'Order Confirmation', '2020-11-03 10:03:21', '2021-09-20 07:29:08'), -(656, 'en', 'are_you_sure_to_confirm_this_order', 'Are you sure to confirm this order?', '2020-11-03 10:03:21', '2021-09-20 07:29:08'), -(657, 'en', 'comfirm_order', 'Comfirm Order', '2020-11-03 10:03:21', '2021-09-20 07:29:08'), -(659, 'en', 'personal_info', 'Personal Info', '2020-11-03 11:38:15', '2021-09-20 07:29:08'), -(660, 'en', 'repeat_password', 'Repeat Password', '2020-11-03 11:38:15', '2021-09-20 07:29:08'), -(661, 'en', 'shop_name', 'Shop Name', '2020-11-03 11:38:15', '2021-09-20 07:29:08'), -(662, 'en', 'register_your_shop', 'Register Your Shop', '2020-11-03 11:38:15', '2021-09-20 07:29:08'), -(663, 'en', 'affiliate_informations', 'Affiliate Informations', '2020-11-03 11:39:06', '2021-09-20 07:29:08'), -(664, 'en', 'affiliate', 'Affiliate', '2020-11-03 11:39:06', '2021-09-20 07:29:08'), -(665, 'en', 'user_info', 'User Info', '2020-11-03 11:39:06', '2021-09-20 07:29:08'), -(667, 'en', 'installed_addon', 'Installed Addon', '2020-11-03 11:48:13', '2021-09-20 07:29:08'), -(668, 'en', 'available_addon', 'Available Addon', '2020-11-03 11:48:13', '2021-09-20 07:29:08'), -(669, 'en', 'install_new_addon', 'Install New Addon', '2020-11-03 11:48:13', '2021-09-20 07:29:08'), -(670, 'en', 'version', 'Version', '2020-11-03 11:48:13', '2021-09-20 07:29:08'), -(671, 'en', 'activated', 'Activated', '2020-11-03 11:48:13', '2021-09-20 07:29:08'), -(672, 'en', 'deactivated', 'Deactivated', '2020-11-03 11:48:13', '2021-09-20 07:29:08'), -(673, 'en', 'activate_otp', 'Activate OTP', '2020-11-03 11:48:20', '2021-09-20 07:29:08'), -(674, 'en', 'otp_will_be_used_for', 'OTP will be Used For', '2020-11-03 11:48:20', '2021-09-20 07:29:08'), -(675, 'en', 'settings_updated_successfully', 'Settings updated successfully', '2020-11-03 11:48:20', '2021-09-20 07:29:08'), -(676, 'en', 'product_owner', 'Product Owner', '2020-11-03 11:48:46', '2021-09-20 07:29:08'), -(677, 'en', 'point', 'Point', '2020-11-03 11:48:46', '2021-09-20 07:29:08'), -(678, 'en', 'set_point_for_product_within_a_range', 'Set Point for Product Within a Range', '2020-11-03 11:48:47', '2021-09-20 07:29:08'), -(679, 'en', 'set_point_for_multiple_products', 'Set Point for multiple products', '2020-11-03 11:48:47', '2021-09-20 07:29:08'), -(680, 'en', 'min_price', 'Min Price', '2020-11-03 11:48:47', '2021-09-20 07:29:08'), -(681, 'en', 'max_price', 'Max Price', '2020-11-03 11:48:47', '2021-09-20 07:29:08'), -(682, 'en', 'set_point_for_all_products', 'Set Point for all Products', '2020-11-03 11:48:47', '2021-09-20 07:29:08'), -(683, 'en', 'set_point_for_', 'Set Point For', '2020-11-03 11:48:47', '2021-09-20 07:29:08'), -(684, 'en', 'convert_status', 'Convert Status', '2020-11-03 11:48:58', '2021-09-20 07:29:08'), -(685, 'en', 'earned_at', 'Earned At', '2020-11-03 11:48:59', '2021-09-20 07:29:08'), -(686, 'en', 'seller_based_selling_report', 'Seller Based Selling Report', '2020-11-03 11:49:35', '2021-09-20 07:29:08'), -(687, 'en', 'sort_by_verificarion_status', 'Sort by verificarion status', '2020-11-03 11:49:35', '2021-09-20 07:29:08'), -(688, 'en', 'approved', 'Approved', '2020-11-03 11:49:35', '2021-09-20 07:29:08'), -(689, 'en', 'non_approved', 'Non Approved', '2020-11-03 11:49:35', '2021-09-20 07:29:08'), -(690, 'en', 'filter', 'Filter', '2020-11-03 11:49:35', '2021-09-20 07:29:08'), -(691, 'en', 'seller_name', 'Seller Name', '2020-11-03 11:49:35', '2021-09-20 07:29:08'), -(692, 'en', 'number_of_product_sale', 'Number of Product Sale', '2020-11-03 11:49:36', '2021-09-20 07:29:08'), -(693, 'en', 'order_amount', 'Order Amount', '2020-11-03 11:49:36', '2021-09-20 07:29:08'), -(694, 'en', 'facebook_chat_setting', 'Facebook Chat Setting', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(695, 'en', 'facebook_page_id', 'Facebook Page ID', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(696, 'en', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Please be carefull when you are configuring Facebook chat. For incorrect configuration you will not get messenger icon on your user-end site.', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(697, 'en', 'login_into_your_facebook_page', 'Login into your facebook page', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(698, 'en', 'find_the_about_option_of_your_facebook_page', 'Find the About option of your facebook page', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(699, 'en', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'At the very bottom, you can find the \\“Facebook Page ID\\”', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(700, 'en', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Go to Settings of your page and find the option of \\\"Advance Messaging\\\"', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(701, 'en', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Scroll down that page and you will get \\\"white listed domain\\\"', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(702, 'en', 'set_your_website_domain_name', 'Set your website domain name', '2020-11-03 11:51:14', '2021-09-20 07:29:08'), -(703, 'en', 'google_recaptcha_setting', 'Google reCAPTCHA Setting', '2020-11-03 11:51:25', '2021-09-20 07:29:08'), -(704, 'en', 'site_key', 'Site KEY', '2020-11-03 11:51:25', '2021-09-20 07:29:08'), -(705, 'en', 'select_shipping_method', 'Select Shipping Method', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(706, 'en', 'product_wise_shipping_cost', 'Product Wise Shipping Cost', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(707, 'en', 'flat_rate_shipping_cost', 'Flat Rate Shipping Cost', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(708, 'en', 'seller_wise_flat_shipping_cost', 'Seller Wise Flat Shipping Cost', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(709, 'en', 'note', 'Note', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(710, 'en', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Product Wise Shipping Cost calulation: Shipping cost is calculate by addition of each product shipping cost', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(711, 'en', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Flat Rate Shipping Cost calulation: How many products a customer purchase, doesn\'t matter. Shipping cost is fixed', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(712, 'en', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Seller Wise Flat Shipping Cost calulation: Fixed rate for each seller. If a customer purchase 2 product from two seller shipping cost is calculate by addition of each seller flat shipping cost', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(713, 'en', 'flat_rate_cost', 'Flat Rate Cost', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(714, 'en', 'shipping_cost_for_admin_products', 'Shipping Cost for Admin Products', '2020-11-03 11:51:32', '2021-09-20 07:29:08'), -(715, 'en', 'countries', 'Countries', '2020-11-03 11:52:02', '2021-09-20 07:29:08'), -(716, 'en', 'showhide', 'Show/Hide', '2020-11-03 11:52:02', '2021-09-20 07:29:08'), -(717, 'en', 'country_status_updated_successfully', 'Country status updated successfully', '2020-11-03 11:52:02', '2021-09-20 07:29:08'), -(718, 'en', 'all_subcategories', 'All Subcategories', '2020-11-03 12:27:55', '2021-09-20 07:29:08'), -(719, 'en', 'add_new_subcategory', 'Add New Subcategory', '2020-11-03 12:27:55', '2021-09-20 07:29:08'), -(720, 'en', 'subcategories', 'Sub-Categories', '2020-11-03 12:27:55', '2021-09-20 07:29:08'), -(721, 'en', 'sub_category_information', 'Sub Category Information', '2020-11-03 12:28:07', '2021-09-20 07:29:08'), -(723, 'en', 'slug', 'Slug', '2020-11-03 12:28:07', '2021-09-20 07:29:08'), -(724, 'en', 'all_sub_subcategories', 'All Sub Subcategories', '2020-11-03 12:29:12', '2021-09-20 07:29:08'), -(725, 'en', 'add_new_sub_subcategory', 'Add New Sub Subcategory', '2020-11-03 12:29:12', '2021-09-20 07:29:08'), -(726, 'en', 'subsubcategories', 'Sub-Sub-categories', '2020-11-03 12:29:12', '2021-09-20 07:29:08'), -(727, 'en', 'make_this_default', 'Make This Default', '2020-11-04 08:24:24', '2021-09-20 07:29:08'), -(728, 'en', 'shops', 'Shops', '2020-11-04 11:17:10', '2021-09-20 07:29:08'); -INSERT INTO `translations` (`id`, `lang`, `lang_key`, `lang_value`, `created_at`, `updated_at`) VALUES -(729, 'en', 'women_clothing__fashion', 'Women Clothing & Fashion', '2020-11-04 11:23:12', '2021-09-20 07:29:08'), -(730, 'en', 'cellphones__tabs', 'Cellphones & Tabs', '2020-11-04 12:10:41', '2021-09-20 07:29:08'), -(731, 'en', 'welcome_to', 'Welcome to', '2020-11-07 07:14:43', '2021-09-20 07:29:08'), -(732, 'en', 'create_a_new_account', 'Create a New Account', '2020-11-07 07:32:15', '2021-09-20 07:29:08'), -(733, 'en', 'full_name', 'Full Name', '2020-11-07 07:32:15', '2021-09-20 07:29:08'), -(734, 'en', 'password', 'password', '2020-11-07 07:32:15', '2021-02-09 06:52:50'), -(735, 'en', 'confrim_password', 'Confrim Password', '2020-11-07 07:32:15', '2021-09-20 07:29:08'), -(736, 'en', 'i_agree_with_the', 'I agree with the', '2020-11-07 07:32:15', '2021-09-20 07:29:08'), -(737, 'en', 'terms_and_conditions', 'Terms and Conditions', '2020-11-07 07:32:15', '2021-09-20 07:29:08'), -(738, 'en', 'register', 'Register', '2020-11-07 07:32:15', '2021-09-20 07:29:08'), -(739, 'en', 'already_have_an_account', 'Already have an account', '2020-11-07 07:32:16', '2021-09-20 07:29:08'), -(741, 'en', 'sign_up_with', 'Sign Up with', '2020-11-07 07:32:16', '2021-09-20 07:29:08'), -(742, 'en', 'i_agree_with_the_terms_and_conditions', 'I agree with the Terms and Conditions', '2020-11-07 07:34:49', '2021-09-20 07:29:08'), -(745, 'en', 'all_role', 'All Role', '2020-11-07 07:44:28', '2021-09-20 07:29:08'), -(746, 'en', 'add_new_role', 'Add New Role', '2020-11-07 07:44:28', '2021-09-20 07:29:08'), -(747, 'en', 'roles', 'Roles', '2020-11-07 07:44:28', '2021-09-20 07:29:08'), -(749, 'en', 'add_new_staffs', 'Add New Staffs', '2020-11-07 07:44:36', '2021-09-20 07:29:08'), -(750, 'en', 'role', 'Role', '2020-11-07 07:44:36', '2021-09-20 07:29:08'), -(751, 'en', 'frontend_website_name', 'Frontend Website Name', '2020-11-07 07:44:59', '2021-09-20 07:29:08'), -(752, 'en', 'website_name', 'Website Name', '2020-11-07 07:44:59', '2021-09-20 07:29:08'), -(753, 'en', 'site_motto', 'Site Motto', '2020-11-07 07:44:59', '2021-09-20 07:29:08'), -(754, 'en', 'best_ecommerce_website', 'Best eCommerce Website', '2020-11-07 07:44:59', '2021-09-20 07:29:08'), -(755, 'en', 'site_icon', 'Site Icon', '2020-11-07 07:44:59', '2021-09-20 07:29:09'), -(756, 'en', 'website_favicon_32x32_png', 'Website favicon. 32x32 .png', '2020-11-07 07:44:59', '2021-09-20 07:29:09'), -(757, 'en', 'website_base_color', 'Website Base Color', '2020-11-07 07:44:59', '2021-09-20 07:29:09'), -(758, 'en', 'hex_color_code', 'Hex Color Code', '2020-11-07 07:44:59', '2021-09-20 07:29:09'), -(759, 'en', 'website_base_hover_color', 'Website Base Hover Color', '2020-11-07 07:44:59', '2021-09-20 07:29:09'), -(760, 'en', 'update', 'Update', '2020-11-07 07:45:00', '2021-09-20 07:29:09'), -(761, 'en', 'global_seo', 'Global Seo', '2020-11-07 07:45:00', '2021-09-20 07:29:09'), -(762, 'en', 'meta_description', 'Meta description', '2020-11-07 07:45:00', '2021-09-20 07:29:09'), -(763, 'en', 'keywords', 'Keywords', '2020-11-07 07:45:00', '2021-09-20 07:29:09'), -(764, 'en', 'separate_with_coma', 'Separate with coma', '2020-11-07 07:45:00', '2021-09-20 07:29:09'), -(765, 'en', 'website_pages', 'Website Pages', '2020-11-07 07:49:04', '2021-09-20 07:29:09'), -(766, 'en', 'all_pages', 'All Pages', '2020-11-07 07:49:04', '2021-09-20 07:29:09'), -(767, 'en', 'add_new_page', 'Add New Page', '2020-11-07 07:49:04', '2021-09-20 07:29:09'), -(768, 'en', 'url', 'URL', '2020-11-07 07:49:04', '2021-09-20 07:29:09'), -(769, 'en', 'actions', 'Actions', '2020-11-07 07:49:04', '2021-09-20 07:29:09'), -(770, 'en', 'edit_page_information', 'Edit Page Information', '2020-11-07 07:49:22', '2021-09-20 07:29:09'), -(771, 'en', 'page_content', 'Page Content', '2020-11-07 07:49:22', '2021-09-20 07:29:09'), -(772, 'en', 'title', 'Title', '2020-11-07 07:49:22', '2021-09-20 07:29:09'), -(773, 'en', 'link', 'Link', '2020-11-07 07:49:22', '2021-09-20 07:29:09'), -(774, 'en', 'use_character_number_hypen_only', 'Use character, number, hypen only', '2020-11-07 07:49:22', '2021-09-20 07:29:09'), -(775, 'en', 'add_content', 'Add Content', '2020-11-07 07:49:22', '2021-09-20 07:29:09'), -(776, 'en', 'seo_fields', 'Seo Fields', '2020-11-07 07:49:22', '2021-09-20 07:29:09'), -(777, 'en', 'update_page', 'Update Page', '2020-11-07 07:49:22', '2021-09-20 07:29:09'), -(778, 'en', 'default_language', 'Default Language', '2020-11-07 07:50:09', '2021-09-20 07:29:09'), -(779, 'en', 'add_new_language', 'Add New Language', '2020-11-07 07:50:09', '2021-09-20 07:29:09'), -(780, 'en', 'rtl', 'RTL', '2020-11-07 07:50:09', '2021-09-20 07:29:09'), -(781, 'en', 'translation', 'Translation', '2020-11-07 07:50:09', '2021-09-20 07:29:09'), -(782, 'en', 'language_information', 'Language Information', '2020-11-07 07:50:23', '2021-09-20 07:29:09'), -(783, 'en', 'save_page', 'Save Page', '2020-11-07 07:51:27', '2021-09-20 07:29:09'), -(784, 'en', 'home_page_settings', 'Home Page Settings', '2020-11-07 07:51:35', '2021-09-20 07:29:09'), -(785, 'en', 'home_slider', 'Home Slider', '2020-11-07 07:51:35', '2021-09-20 07:29:09'), -(786, 'en', 'photos__links', 'Photos & Links', '2020-11-07 07:51:35', '2021-09-20 07:29:09'), -(787, 'en', 'add_new', 'Add New', '2020-11-07 07:51:35', '2021-09-20 07:29:09'), -(788, 'en', 'home_categories', 'Home Categories', '2020-11-07 07:51:35', '2021-09-20 07:29:09'), -(789, 'en', 'home_banner_1_max_3', 'Home Banner 1 (Max 3)', '2020-11-07 07:51:35', '2021-09-20 07:29:09'), -(790, 'en', 'banner__links', 'Banner & Links', '2020-11-07 07:51:35', '2021-09-20 07:29:09'), -(791, 'en', 'home_banner_2_max_3', 'Home Banner 2 (Max 3)', '2020-11-07 07:51:36', '2021-09-20 07:29:09'), -(792, 'en', 'top_10', 'Top 10', '2020-11-07 07:51:36', '2021-09-20 07:29:09'), -(793, 'en', 'top_categories_max_10', 'Top Categories (Max 10)', '2020-11-07 07:51:36', '2021-09-20 07:29:09'), -(794, 'en', 'top_brands_max_10', 'Top Brands (Max 10)', '2020-11-07 07:51:36', '2021-09-20 07:29:09'), -(795, 'en', 'system_name', 'System Name', '2020-11-07 07:54:22', '2021-09-20 07:29:09'), -(796, 'en', 'system_logo__white', 'System Logo - White', '2020-11-07 07:54:22', '2021-09-20 07:29:09'), -(797, 'en', 'choose_files', 'Choose Files', '2020-11-07 07:54:22', '2021-09-20 07:29:09'), -(798, 'en', 'will_be_used_in_admin_panel_side_menu', 'Will be used in admin panel side menu', '2020-11-07 07:54:23', '2021-09-20 07:29:09'), -(799, 'en', 'system_logo__black', 'System Logo - Black', '2020-11-07 07:54:23', '2021-09-20 07:29:09'), -(800, 'en', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Will be used in admin panel topbar in mobile + Admin login page', '2020-11-07 07:54:23', '2021-09-20 07:29:09'), -(801, 'en', 'system_timezone', 'System Timezone', '2020-11-07 07:54:23', '2021-09-20 07:29:09'), -(802, 'en', 'admin_login_page_background', 'Admin login page background', '2020-11-07 07:54:23', '2021-09-20 07:29:09'), -(803, 'en', 'website_header', 'Website Header', '2020-11-07 08:21:36', '2021-09-20 07:29:09'), -(804, 'en', 'header_setting', 'Header Setting', '2020-11-07 08:21:36', '2021-09-20 07:29:09'), -(805, 'en', 'header_logo', 'Header Logo', '2020-11-07 08:21:36', '2021-09-20 07:29:09'), -(806, 'en', 'show_language_switcher', 'Show Language Switcher?', '2020-11-07 08:21:36', '2021-09-20 07:29:09'), -(807, 'en', 'show_currency_switcher', 'Show Currency Switcher?', '2020-11-07 08:21:36', '2021-09-20 07:29:09'), -(808, 'en', 'enable_stikcy_header', 'Enable stikcy header?', '2020-11-07 08:21:36', '2021-09-20 07:29:09'), -(809, 'en', 'website_footer', 'Website Footer', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(810, 'en', 'footer_widget', 'Footer Widget', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(811, 'en', 'about_widget', 'About Widget', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(812, 'en', 'footer_logo', 'Footer Logo', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(813, 'en', 'about_description', 'About description', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(814, 'en', 'contact_info_widget', 'Contact Info Widget', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(815, 'en', 'footer_contact_address', 'Footer contact address', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(816, 'en', 'footer_contact_phone', 'Footer contact phone', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(817, 'en', 'footer_contact_email', 'Footer contact email', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(818, 'en', 'link_widget_one', 'Link Widget One', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(819, 'en', 'links', 'Links', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(820, 'en', 'footer_bottom', 'Footer Bottom', '2020-11-07 08:21:56', '2021-09-20 07:29:09'), -(821, 'en', 'copyright_widget_', 'Copyright Widget', '2020-11-07 08:21:57', '2021-09-20 07:29:09'), -(822, 'en', 'copyright_text', 'Copyright Text', '2020-11-07 08:21:57', '2021-09-20 07:29:09'), -(823, 'en', 'social_link_widget_', 'Social Link Widget', '2020-11-07 08:21:57', '2021-09-20 07:29:09'), -(824, 'en', 'show_social_links', 'Show Social Links?', '2020-11-07 08:21:57', '2021-09-20 07:29:09'), -(825, 'en', 'social_links', 'Social Links', '2020-11-07 08:21:57', '2021-09-20 07:29:09'), -(826, 'en', 'payment_methods_widget_', 'Payment Methods Widget', '2020-11-07 08:21:57', '2021-09-20 07:29:09'), -(827, 'en', 'rtl_status_updated_successfully', 'RTL status updated successfully', '2020-11-07 08:36:11', '2021-09-20 07:29:09'), -(828, 'en', 'language_changed_to_', 'Language changed to', '2020-11-07 08:36:27', '2021-09-20 07:29:09'), -(829, 'en', 'inhouse_product_sale_report', 'Inhouse Product sale report', '2020-11-07 09:30:25', '2021-09-20 07:29:09'), -(830, 'en', 'sort_by_category', 'Sort by Category', '2020-11-07 09:30:25', '2021-09-20 07:29:09'), -(831, 'en', 'product_wise_stock_report', 'Product wise stock report', '2020-11-07 09:31:02', '2021-09-20 07:29:09'), -(832, 'en', 'currency_changed_to_', 'Currency changed to', '2020-11-07 12:36:28', '2021-09-20 07:29:09'), -(833, 'en', 'avatar', 'Avatar', '2020-11-08 09:32:35', '2021-09-20 07:29:09'), -(834, 'en', 'copy', 'Copy', '2020-11-08 10:03:42', '2021-09-20 07:29:09'), -(835, 'en', 'variant', 'Variant', '2020-11-08 10:43:02', '2021-09-20 07:29:09'), -(836, 'en', 'variant_price', 'Variant Price', '2020-11-08 10:43:03', '2021-09-20 07:29:09'), -(837, 'en', 'sku', 'SKU', '2020-11-08 10:43:03', '2021-09-20 07:29:09'), -(838, 'en', 'key', 'Key', '2020-11-08 12:35:09', '2021-09-20 07:29:09'), -(839, 'en', 'value', 'Value', '2020-11-08 12:35:09', '2021-09-20 07:29:09'), -(840, 'en', 'copy_translations', 'Copy Translations', '2020-11-08 12:35:10', '2021-09-20 07:29:09'), -(841, 'en', 'all_pickup_points', 'All Pick-up Points', '2020-11-08 12:35:43', '2021-09-20 07:29:09'), -(842, 'en', 'add_new_pickup_point', 'Add New Pick-up Point', '2020-11-08 12:35:43', '2021-09-20 07:29:09'), -(843, 'en', 'manager', 'Manager', '2020-11-08 12:35:43', '2021-09-20 07:29:09'), -(844, 'en', 'location', 'Location', '2020-11-08 12:35:43', '2021-09-20 07:29:09'), -(845, 'en', 'pickup_station_contact', 'Pickup Station Contact', '2020-11-08 12:35:43', '2021-09-20 07:29:09'), -(846, 'en', 'open', 'Open', '2020-11-08 12:35:43', '2021-09-20 07:29:09'), -(847, 'en', 'pos_activation_for_seller', 'POS Activation for Seller', '2020-11-08 12:35:55', '2021-09-20 07:29:09'), -(848, 'en', 'order_completed_successfully', 'Order Completed Successfully.', '2020-11-08 12:36:02', '2021-09-20 07:29:09'), -(849, 'en', 'text_input', 'Text Input', '2020-11-08 12:38:40', '2021-09-20 07:29:09'), -(850, 'en', 'select', 'Select', '2020-11-08 12:38:40', '2021-09-20 07:29:09'), -(851, 'en', 'multiple_select', 'Multiple Select', '2020-11-08 12:38:40', '2021-09-20 07:29:09'), -(852, 'en', 'radio', 'Radio', '2020-11-08 12:38:40', '2021-09-20 07:29:09'), -(853, 'en', 'file', 'File', '2020-11-08 12:38:40', '2021-09-20 07:29:09'), -(854, 'en', 'email_address', 'Email Address', '2020-11-08 12:39:32', '2021-09-20 07:29:09'), -(855, 'en', 'verification_info', 'Verification Info', '2020-11-08 12:39:32', '2021-09-20 07:29:09'), -(856, 'en', 'approval', 'Approval', '2020-11-08 12:39:32', '2021-09-20 07:29:09'), -(857, 'en', 'due_amount', 'Due Amount', '2020-11-08 12:39:32', '2021-09-20 07:29:09'), -(858, 'en', 'show', 'Show', '2020-11-08 12:39:32', '2021-09-20 07:29:09'), -(859, 'en', 'pay_now', 'Pay Now', '2020-11-08 12:39:32', '2021-09-20 07:29:09'), -(860, 'en', 'affiliate_user_verification', 'Affiliate User Verification', '2020-11-08 12:40:01', '2021-09-20 07:29:09'), -(861, 'en', 'reject', 'Reject', '2020-11-08 12:40:01', '2021-09-20 07:29:09'), -(862, 'en', 'accept', 'Accept', '2020-11-08 12:40:01', '2021-09-20 07:29:09'), -(863, 'en', 'beauty_health__hair', 'Beauty, Health & Hair', '2020-11-08 12:54:17', '2021-09-20 07:29:09'), -(864, 'en', 'comparison', 'Comparison', '2020-11-08 12:54:33', '2021-09-20 07:29:09'), -(865, 'en', 'reset_compare_list', 'Reset Compare List', '2020-11-08 12:54:33', '2021-09-20 07:29:09'), -(866, 'en', 'your_comparison_list_is_empty', 'Your comparison list is empty', '2020-11-08 12:54:33', '2021-09-20 07:29:09'), -(867, 'en', 'convert_point_to_wallet', 'Convert Point To Wallet', '2020-11-08 13:04:42', '2021-09-20 07:29:09'), -(868, 'en', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Note: You need to activate wallet option first before using club point addon.', '2020-11-08 13:04:43', '2021-09-20 07:29:09'), -(869, 'en', 'create_an_account', 'Create an account.', '2020-11-09 06:17:11', '2021-09-20 07:29:09'), -(870, 'en', 'use_email_instead', 'Use Email Instead', '2020-11-09 06:17:11', '2021-09-20 07:29:09'), -(871, 'en', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'By signing up you agree to our terms and conditions.', '2020-11-09 06:17:11', '2021-09-20 07:29:09'), -(872, 'en', 'create_account', 'Create Account', '2020-11-09 06:17:11', '2021-09-20 07:29:09'), -(873, 'en', 'or_join_with', 'Or Join With', '2020-11-09 06:17:11', '2021-09-20 07:29:09'), -(874, 'en', 'already_have_an_account', 'Already have an account?', '2020-11-09 06:17:11', '2021-09-20 07:29:09'), -(875, 'en', 'log_in', 'Log In', '2020-11-09 06:17:11', '2021-09-20 07:29:09'), -(876, 'en', 'computer__accessories', 'Computer & Accessories', '2020-11-09 07:52:05', '2021-09-20 07:29:09'), -(878, 'en', 'products', 'Product(s)', '2020-11-09 07:52:23', '2021-09-20 07:29:09'), -(879, 'en', 'in_your_cart', 'in your cart', '2020-11-09 07:52:23', '2021-09-20 07:29:09'), -(880, 'en', 'in_your_wishlist', 'in your wishlist', '2020-11-09 07:52:23', '2021-09-20 07:29:09'), -(881, 'en', 'you_ordered', 'you ordered', '2020-11-09 07:52:24', '2021-09-20 07:29:09'), -(882, 'en', 'default_shipping_address', 'Default Shipping Address', '2020-11-09 07:52:24', '2021-09-20 07:29:09'), -(883, 'en', 'sports__outdoor', 'Sports & outdoor', '2020-11-09 07:53:32', '2021-09-20 07:29:09'), -(884, 'en', 'copied', 'Copied', '2020-11-09 07:54:19', '2021-09-20 07:29:09'), -(885, 'en', 'copy_the_promote_link', 'Copy the Promote Link', '2020-11-09 07:54:19', '2021-09-20 07:29:09'), -(886, 'en', 'write_a_review', 'Write a review', '2020-11-09 07:54:20', '2021-09-20 07:29:09'), -(887, 'en', 'your_name', 'Your name', '2020-11-09 07:54:20', '2021-09-20 07:29:09'), -(888, 'en', 'comment', 'Comment', '2020-11-09 07:54:20', '2021-09-20 07:29:09'), -(889, 'en', 'your_review', 'Your review', '2020-11-09 07:54:20', '2021-09-20 07:29:09'), -(890, 'en', 'submit_review', 'Submit review', '2020-11-09 07:54:20', '2021-09-20 07:29:09'), -(891, 'en', 'claire_willis', 'Claire Willis', '2020-11-09 08:05:00', '2021-09-20 07:29:09'), -(892, 'en', 'germaine_greene', 'Germaine Greene', '2020-11-09 08:05:00', '2021-09-20 07:29:09'), -(893, 'en', 'product_file', 'Product File', '2020-11-09 08:07:08', '2021-09-20 07:29:09'), -(894, 'en', 'choose_file', 'Choose file', '2020-11-09 08:07:08', '2021-09-20 07:29:09'), -(895, 'en', 'type_to_add_a_tag', 'Type to add a tag', '2020-11-09 08:07:08', '2021-09-20 07:29:09'), -(896, 'en', 'images', 'Images', '2020-11-09 08:07:08', '2021-09-20 07:29:09'), -(897, 'en', 'main_images', 'Main Images', '2020-11-09 08:07:08', '2021-09-20 07:29:09'), -(898, 'en', 'meta_tags', 'Meta Tags', '2020-11-09 08:07:08', '2021-09-20 07:29:09'), -(899, 'en', 'digital_product_has_been_inserted_successfully', 'Digital Product has been inserted successfully', '2020-11-09 08:14:25', '2021-09-20 07:29:09'), -(900, 'en', 'edit_digital_product', 'Edit Digital Product', '2020-11-09 08:14:34', '2021-09-20 07:29:09'), -(901, 'en', 'select_an_option', 'Select an option', '2020-11-09 08:14:34', '2021-09-20 07:29:09'), -(902, 'en', 'tax', 'Tax', '2020-11-09 08:14:35', '2021-02-11 04:15:27'), -(903, 'en', 'any_question_about_this_product', 'Any question about this product?', '2020-11-09 08:15:11', '2021-09-20 07:29:09'), -(904, 'en', 'sign_in', 'Sign in', '2020-11-09 08:15:11', '2021-09-20 07:29:09'), -(905, 'en', 'login_with_google', 'Login with Google', '2020-11-09 08:15:11', '2021-09-20 07:29:09'), -(906, 'en', 'login_with_facebook', 'Login with Facebook', '2020-11-09 08:15:11', '2021-09-20 07:29:09'), -(907, 'en', 'login_with_twitter', 'Login with Twitter', '2020-11-09 08:15:11', '2021-09-20 07:29:09'), -(908, 'en', 'click_to_show_phone_number', 'Click to show phone number', '2020-11-09 08:15:51', '2021-09-20 07:29:09'), -(909, 'en', 'other_ads_of', 'Other Ads of', '2020-11-09 08:15:52', '2021-09-20 07:29:09'), -(910, 'en', 'store_home', 'Store Home', '2020-11-09 08:54:23', '2021-09-20 07:29:09'), -(911, 'en', 'top_selling', 'Top Selling', '2020-11-09 08:54:23', '2021-09-20 07:29:09'), -(912, 'en', 'shop_settings', 'Shop Settings', '2020-11-09 08:55:38', '2021-09-20 07:29:09'), -(913, 'en', 'visit_shop', 'Visit Shop', '2020-11-09 08:55:38', '2021-09-20 07:29:09'), -(914, 'en', 'pickup_points', 'Pickup Points', '2020-11-09 08:55:38', '2021-09-20 07:29:09'), -(915, 'en', 'select_pickup_point', 'Select Pickup Point', '2020-11-09 08:55:38', '2021-09-20 07:29:09'), -(916, 'en', 'slider_settings', 'Slider Settings', '2020-11-09 08:55:39', '2021-09-20 07:29:09'), -(917, 'en', 'social_media_link', 'Social Media Link', '2020-11-09 08:55:39', '2021-09-20 07:29:09'), -(918, 'en', 'facebook', 'Facebook', '2020-11-09 08:55:39', '2021-09-20 07:29:09'), -(919, 'en', 'twitter', 'Twitter', '2020-11-09 08:55:39', '2021-09-20 07:29:09'), -(920, 'en', 'google', 'Google', '2020-11-09 08:55:39', '2021-09-20 07:29:09'), -(921, 'en', 'new_arrival_products', 'New Arrival Products', '2020-11-09 08:56:26', '2021-09-20 07:29:09'), -(922, 'en', 'check_your_order_status', 'Check Your Order Status', '2020-11-09 09:23:32', '2021-09-20 07:29:09'), -(923, 'en', 'shipping_method', 'Shipping method', '2020-11-09 09:27:40', '2021-09-20 07:29:09'), -(924, 'en', 'shipped_by', 'Shipped By', '2020-11-09 09:27:41', '2021-09-20 07:29:09'), -(925, 'en', 'image', 'Image', '2020-11-09 09:29:37', '2021-09-20 07:29:09'), -(926, 'en', 'sub_sub_category', 'Sub Sub Category', '2020-11-09 09:29:37', '2021-09-20 07:29:09'), -(927, 'en', 'inhouse_products', 'Inhouse Products', '2020-11-09 10:22:32', '2021-09-20 07:29:09'), -(928, 'en', 'forgot_password', 'Forgot Password?', '2020-11-09 10:33:21', '2021-09-20 07:29:09'), -(929, 'en', 'enter_your_email_address_to_recover_your_password', 'Enter your email address to recover your password.', '2020-11-09 10:33:21', '2021-09-20 07:29:09'), -(930, 'en', 'email_or_phone', 'Email or Phone', '2020-11-09 10:33:21', '2021-09-20 07:29:09'), -(931, 'en', 'send_password_reset_link', 'Send Password Reset Link', '2020-11-09 10:33:21', '2021-09-20 07:29:09'), -(932, 'en', 'back_to_login', 'Back to Login', '2020-11-09 10:33:21', '2021-09-20 07:29:09'), -(933, 'en', 'index', 'index', '2020-11-09 10:35:29', '2021-02-09 06:52:51'), -(934, 'en', 'download_your_product', 'Download Your Product', '2020-11-09 10:35:30', '2021-09-20 07:29:09'), -(935, 'en', 'option', 'Option', '2020-11-09 10:35:30', '2021-09-20 07:29:09'), -(936, 'en', 'applied_refund_request', 'Applied Refund Request', '2020-11-09 10:35:39', '2021-09-20 07:29:09'), -(937, 'en', 'item_has_been_renoved_from_wishlist', 'Item has been renoved from wishlist', '2020-11-09 10:36:04', '2021-09-20 07:29:09'), -(938, 'en', 'bulk_products_upload', 'Bulk Products Upload', '2020-11-09 10:39:24', '2021-09-20 07:29:09'), -(939, 'en', 'upload_csv', 'Upload CSV', '2020-11-09 10:39:25', '2021-09-20 07:29:09'), -(940, 'en', 'create_a_ticket', 'Create a Ticket', '2020-11-09 10:40:25', '2021-09-20 07:29:09'), -(941, 'en', 'tickets', 'Tickets', '2020-11-09 10:40:25', '2021-09-20 07:29:09'), -(942, 'en', 'ticket_id', 'Ticket ID', '2020-11-09 10:40:25', '2021-09-20 07:29:09'), -(943, 'en', 'sending_date', 'Sending Date', '2020-11-09 10:40:25', '2021-09-20 07:29:09'), -(944, 'en', 'subject', 'Subject', '2020-11-09 10:40:25', '2021-09-20 07:29:09'), -(945, 'en', 'view_details', 'View Details', '2020-11-09 10:40:25', '2021-09-20 07:29:09'), -(946, 'en', 'provide_a_detailed_description', 'Provide a detailed description', '2020-11-09 10:40:26', '2021-09-20 07:29:09'), -(947, 'en', 'type_your_reply', 'Type your reply', '2020-11-09 10:40:26', '2021-09-20 07:29:09'), -(948, 'en', 'send_ticket', 'Send Ticket', '2020-11-09 10:40:26', '2021-09-20 07:29:09'), -(949, 'en', 'load_more', 'Load More', '2020-11-09 10:40:57', '2021-09-20 07:29:09'), -(950, 'en', 'jewelry__watches', 'Jewelry & Watches', '2020-11-09 10:47:38', '2021-09-20 07:29:09'), -(951, 'en', 'filters', 'Filters', '2020-11-09 10:53:54', '2021-09-20 07:29:09'), -(952, 'en', 'contact_address', 'Contact address', '2020-11-09 10:58:46', '2021-09-20 07:29:09'), -(953, 'en', 'contact_phone', 'Contact phone', '2020-11-09 10:58:47', '2021-09-20 07:29:09'), -(954, 'en', 'contact_email', 'Contact email', '2020-11-09 10:58:47', '2021-09-20 07:29:09'), -(955, 'en', 'filter_by', 'Filter by', '2020-11-09 11:00:03', '2021-09-20 07:29:09'), -(956, 'en', 'condition', 'Condition', '2020-11-09 11:56:13', '2021-09-20 07:29:09'), -(957, 'en', 'all_type', 'All Type', '2020-11-09 11:56:13', '2021-09-20 07:29:09'), -(960, 'en', 'pay_with_wallet', 'Pay with wallet', '2020-11-09 12:56:34', '2021-09-20 07:29:09'), -(961, 'en', 'select_variation', 'Select variation', '2020-11-10 07:54:29', '2021-09-20 07:29:09'), -(962, 'en', 'no_product_added', 'No Product Added', '2020-11-10 08:07:53', '2021-09-20 07:29:09'), -(963, 'en', 'status_has_been_updated_successfully', 'Status has been updated successfully', '2020-11-10 08:41:23', '2021-09-20 07:29:09'), -(964, 'en', 'all_seller_packages', 'All Seller Packages', '2020-11-10 09:14:10', '2021-09-20 07:29:09'), -(965, 'en', 'add_new_package', 'Add New Package', '2020-11-10 09:14:10', '2021-09-20 07:29:09'), -(966, 'en', 'package_logo', 'Package Logo', '2020-11-10 09:14:10', '2021-09-20 07:29:09'), -(967, 'en', 'days', 'days', '2020-11-10 09:14:10', '2021-02-09 06:52:51'), -(968, 'en', 'create_new_seller_package', 'Create New Seller Package', '2020-11-10 09:14:31', '2021-09-20 07:29:09'), -(969, 'en', 'package_name', 'Package Name', '2020-11-10 09:14:31', '2021-09-20 07:29:09'), -(970, 'en', 'duration', 'Duration', '2020-11-10 09:14:31', '2021-09-20 07:29:09'), -(971, 'en', 'validity_in_number_of_days', 'Validity in number of days', '2020-11-10 09:14:31', '2021-09-20 07:29:09'), -(972, 'en', 'update_package_information', 'Update Package Information', '2020-11-10 09:14:59', '2021-09-20 07:29:09'), -(973, 'en', 'package_has_been_inserted_successfully', 'Package has been inserted successfully', '2020-11-10 09:15:14', '2021-09-20 07:29:09'), -(974, 'en', 'refund_request', 'Refund Request', '2020-11-10 09:17:25', '2021-09-20 07:29:09'), -(975, 'en', 'reason', 'Reason', '2020-11-10 09:17:25', '2021-09-20 07:29:09'), -(976, 'en', 'label', 'Label', '2020-11-10 09:20:13', '2021-09-20 07:29:09'), -(977, 'en', 'select_label', 'Select Label', '2020-11-10 09:20:13', '2021-09-20 07:29:09'), -(978, 'en', 'multiple_select_label', 'Multiple Select Label', '2020-11-10 09:20:13', '2021-09-20 07:29:09'), -(979, 'en', 'radio_label', 'Radio Label', '2020-11-10 09:20:13', '2021-09-20 07:29:09'), -(980, 'en', 'pickup_point_orders', 'Pickup Point Orders', '2020-11-10 09:25:40', '2021-09-20 07:29:09'), -(981, 'en', 'view', 'View', '2020-11-10 09:25:40', '2021-09-20 07:29:09'), -(982, 'en', 'order_', 'Order #', '2020-11-10 09:25:48', '2021-09-20 07:29:09'), -(983, 'en', 'order_status', 'Order Status', '2020-11-10 09:25:48', '2021-09-20 07:29:09'), -(984, 'en', 'total_amount', 'Total amount', '2020-11-10 09:25:48', '2021-09-20 07:29:09'), -(986, 'en', 'total', 'TOTAL', '2020-11-10 09:25:49', '2021-09-20 07:29:09'), -(987, 'en', 'delivery_status_has_been_updated', 'Delivery status has been updated', '2020-11-10 09:25:49', '2021-09-20 07:29:09'), -(988, 'en', 'payment_status_has_been_updated', 'Payment status has been updated', '2020-11-10 09:25:49', '2021-09-20 07:29:09'), -(989, 'en', 'invoice', 'INVOICE', '2020-11-10 09:25:58', '2021-09-20 07:29:09'), -(990, 'en', 'set_refund_time', 'Set Refund Time', '2020-11-10 09:34:04', '2021-09-20 07:29:09'), -(991, 'en', 'set_time_for_sending_refund_request', 'Set Time for sending Refund Request', '2020-11-10 09:34:04', '2021-09-20 07:29:09'), -(992, 'en', 'set_refund_sticker', 'Set Refund Sticker', '2020-11-10 09:34:05', '2021-09-20 07:29:09'), -(993, 'en', 'sticker', 'Sticker', '2020-11-10 09:34:05', '2021-09-20 07:29:09'), -(994, 'en', 'refund_request_all', 'Refund Request All', '2020-11-10 09:34:12', '2021-09-20 07:29:09'), -(995, 'en', 'order_id', 'Order Id', '2020-11-10 09:34:12', '2021-09-20 07:29:09'), -(996, 'en', 'seller_approval', 'Seller Approval', '2020-11-10 09:34:12', '2021-09-20 07:29:09'), -(997, 'en', 'admin_approval', 'Admin Approval', '2020-11-10 09:34:12', '2021-09-20 07:29:09'), -(998, 'en', 'refund_status', 'Refund Status', '2020-11-10 09:34:12', '2021-09-20 07:29:09'), -(1000, 'en', 'no_refund', 'No Refund', '2020-11-10 09:35:27', '2021-09-20 07:29:09'), -(1001, 'en', 'status_updated_successfully', 'Status updated successfully', '2020-11-10 09:54:20', '2021-09-20 07:29:09'), -(1002, 'en', 'user_search_report', 'User Search Report', '2020-11-11 06:43:24', '2021-09-20 07:29:09'), -(1003, 'en', 'search_by', 'Search By', '2020-11-11 06:43:24', '2021-09-20 07:29:09'), -(1004, 'en', 'number_searches', 'Number searches', '2020-11-11 06:43:24', '2021-09-20 07:29:09'), -(1005, 'en', 'sender', 'Sender', '2020-11-11 06:51:49', '2021-09-20 07:29:09'), -(1006, 'en', 'receiver', 'Receiver', '2020-11-11 06:51:49', '2021-09-20 07:29:09'), -(1007, 'en', 'verification_form_updated_successfully', 'Verification form updated successfully', '2020-11-11 06:53:29', '2021-09-20 07:29:09'), -(1008, 'en', 'invalid_email_or_password', 'Invalid email or password', '2020-11-11 07:07:49', '2021-09-20 07:29:09'), -(1009, 'en', 'all_coupons', 'All Coupons', '2020-11-11 07:14:04', '2021-09-20 07:29:09'), -(1010, 'en', 'add_new_coupon', 'Add New Coupon', '2020-11-11 07:14:04', '2021-09-20 07:29:09'), -(1011, 'en', 'coupon_information', 'Coupon Information', '2020-11-11 07:14:04', '2021-09-20 07:29:09'), -(1012, 'en', 'start_date', 'Start Date', '2020-11-11 07:14:04', '2021-09-20 07:29:09'), -(1013, 'en', 'end_date', 'End Date', '2020-11-11 07:14:05', '2021-09-20 07:29:09'), -(1014, 'en', 'product_base', 'Product Base', '2020-11-11 07:14:05', '2021-09-20 07:29:09'), -(1015, 'en', 'send_newsletter', 'Send Newsletter', '2020-11-11 07:14:10', '2021-09-20 07:29:09'), -(1016, 'en', 'mobile_users', 'Mobile Users', '2020-11-11 07:14:10', '2021-09-20 07:29:09'), -(1017, 'en', 'sms_subject', 'SMS subject', '2020-11-11 07:14:10', '2021-09-20 07:29:09'), -(1018, 'en', 'sms_content', 'SMS content', '2020-11-11 07:14:10', '2021-09-20 07:29:09'), -(1019, 'en', 'all_flash_delas', 'All Flash Delas', '2020-11-11 07:16:06', '2021-09-20 07:29:09'), -(1020, 'en', 'create_new_flash_dela', 'Create New Flash Dela', '2020-11-11 07:16:06', '2021-09-20 07:29:09'), -(1022, 'en', 'page_link', 'Page Link', '2020-11-11 07:16:06', '2021-09-20 07:29:09'), -(1023, 'en', 'flash_deal_information', 'Flash Deal Information', '2020-11-11 07:16:14', '2021-09-20 07:29:09'), -(1024, 'en', 'background_color', 'Background Color', '2020-11-11 07:16:14', '2021-09-20 07:29:09'), -(1025, 'en', '0000ff', '#0000ff', '2020-11-11 07:16:14', '2021-09-20 07:29:09'), -(1026, 'en', 'text_color', 'Text Color', '2020-11-11 07:16:14', '2021-09-20 07:29:09'), -(1027, 'en', 'white', 'White', '2020-11-11 07:16:14', '2021-09-20 07:29:09'), -(1028, 'en', 'dark', 'Dark', '2020-11-11 07:16:15', '2021-09-20 07:29:09'), -(1029, 'en', 'choose_products', 'Choose Products', '2020-11-11 07:16:15', '2021-09-20 07:29:09'), -(1030, 'en', 'discounts', 'Discounts', '2020-11-11 07:16:20', '2021-09-20 07:29:09'), -(1031, 'en', 'discount_type', 'Discount Type', '2020-11-11 07:16:20', '2021-09-20 07:29:09'), -(1032, 'en', 'twillo_credential', 'Twillo Credential', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1033, 'en', 'twilio_sid', 'TWILIO SID', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1034, 'en', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1035, 'en', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1036, 'en', 'valid_twillo_number', 'VALID TWILLO NUMBER', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1037, 'en', 'nexmo_credential', 'Nexmo Credential', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1038, 'en', 'nexmo_key', 'NEXMO KEY', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1039, 'en', 'nexmo_secret', 'NEXMO SECRET', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1040, 'en', 'ssl_wireless_credential', 'SSL Wireless Credential', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1041, 'en', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1042, 'en', 'ssl_sms_sid', 'SSL SMS SID', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1043, 'en', 'ssl_sms_url', 'SSL SMS URL', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1044, 'en', 'fast2sms_credential', 'Fast2SMS Credential', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1045, 'en', 'auth_key', 'AUTH KEY', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1046, 'en', 'route', 'ROUTE', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1047, 'en', 'promotional_use', 'Promotional Use', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1048, 'en', 'transactional_use', 'Transactional Use', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1050, 'en', 'sender_id', 'SENDER ID', '2020-11-11 07:17:35', '2021-09-20 07:29:09'), -(1051, 'en', 'nexmo_otp', 'Nexmo OTP', '2020-11-11 07:17:42', '2021-09-20 07:29:09'), -(1052, 'en', 'twillo_otp', 'Twillo OTP', '2020-11-11 07:17:43', '2021-09-20 07:29:09'), -(1053, 'en', 'ssl_wireless_otp', 'SSL Wireless OTP', '2020-11-11 07:17:43', '2021-09-20 07:29:09'), -(1054, 'en', 'fast2sms_otp', 'Fast2SMS OTP', '2020-11-11 07:17:43', '2021-09-20 07:29:09'), -(1055, 'en', 'order_placement', 'Order Placement', '2020-11-11 07:17:43', '2021-09-20 07:29:09'), -(1056, 'en', 'delivery_status_changing_time', 'Delivery Status Changing Time', '2020-11-11 07:17:43', '2021-09-20 07:29:09'), -(1057, 'en', 'paid_status_changing_time', 'Paid Status Changing Time', '2020-11-11 07:17:43', '2021-09-20 07:29:09'), -(1058, 'en', 'send_bulk_sms', 'Send Bulk SMS', '2020-11-11 07:19:14', '2021-09-20 07:29:09'), -(1059, 'en', 'all_subscribers', 'All Subscribers', '2020-11-11 07:21:51', '2021-09-20 07:29:09'), -(1060, 'en', 'coupon_information_adding', 'Coupon Information Adding', '2020-11-11 07:22:25', '2021-09-20 07:29:09'), -(1061, 'en', 'coupon_type', 'Coupon Type', '2020-11-11 07:22:25', '2021-09-20 07:29:09'), -(1062, 'en', 'for_products', 'For Products', '2020-11-11 07:22:25', '2021-09-20 07:29:09'), -(1063, 'en', 'for_total_orders', 'For Total Orders', '2020-11-11 07:22:25', '2021-09-20 07:29:09'), -(1064, 'en', 'add_your_product_base_coupon', 'Add Your Product Base Coupon', '2020-11-11 07:22:42', '2021-09-20 07:29:09'), -(1065, 'en', 'coupon_code', 'Coupon code', '2020-11-11 07:22:42', '2021-09-20 07:29:09'), -(1066, 'en', 'sub_category', 'Sub Category', '2020-11-11 07:22:42', '2021-09-20 07:29:09'), -(1067, 'en', 'add_more', 'Add More', '2020-11-11 07:22:43', '2021-09-20 07:29:09'), -(1068, 'en', 'add_your_cart_base_coupon', 'Add Your Cart Base Coupon', '2020-11-11 07:29:40', '2021-09-20 07:29:09'), -(1069, 'en', 'minimum_shopping', 'Minimum Shopping', '2020-11-11 07:29:40', '2021-09-20 07:29:09'), -(1070, 'en', 'maximum_discount_amount', 'Maximum Discount Amount', '2020-11-11 07:29:41', '2021-09-20 07:29:09'), -(1071, 'en', 'coupon_information_update', 'Coupon Information Update', '2020-11-11 08:18:34', '2021-09-20 07:29:09'), -(1073, 'en', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Please Configure SMTP Setting to work all email sending funtionality', '2020-11-11 13:10:18', '2021-09-20 07:29:09'), -(1074, 'en', 'configure_now', 'Configure Now', '2020-11-11 13:10:18', '2021-09-20 07:29:09'), -(1076, 'en', 'total_published_products', 'Total published products', '2020-11-11 13:10:18', '2021-09-20 07:29:09'), -(1077, 'en', 'total_sellers_products', 'Total sellers products', '2020-11-11 13:10:18', '2021-09-20 07:29:09'), -(1078, 'en', 'total_admin_products', 'Total admin products', '2020-11-11 13:10:18', '2021-09-20 07:29:09'), -(1079, 'en', 'manage_products', 'Manage Products', '2020-11-11 13:10:18', '2021-09-20 07:29:09'), -(1080, 'en', 'total_product_category', 'Total product category', '2020-11-11 13:10:18', '2021-09-20 07:29:09'), -(1081, 'en', 'create_category', 'Create Category', '2020-11-11 13:10:18', '2021-09-20 07:29:09'), -(1082, 'en', 'total_product_sub_sub_category', 'Total product sub sub category', '2020-11-11 13:10:18', '2021-09-20 07:29:10'), -(1083, 'en', 'create_sub_sub_category', 'Create Sub Sub Category', '2020-11-11 13:10:18', '2021-09-20 07:29:10'), -(1084, 'en', 'total_product_sub_category', 'Total product sub category', '2020-11-11 13:10:18', '2021-09-20 07:29:10'), -(1085, 'en', 'create_sub_category', 'Create Sub Category', '2020-11-11 13:10:18', '2021-09-20 07:29:10'), -(1086, 'en', 'total_product_brand', 'Total product brand', '2020-11-11 13:10:18', '2021-09-20 07:29:10'), -(1087, 'en', 'create_brand', 'Create Brand', '2020-11-11 13:10:18', '2021-09-20 07:29:10'), -(1089, 'en', 'total_sellers', 'Total sellers', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1091, 'en', 'total_approved_sellers', 'Total approved sellers', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1093, 'en', 'total_pending_sellers', 'Total pending sellers', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1094, 'en', 'manage_sellers', 'Manage Sellers', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1095, 'en', 'category_wise_product_sale', 'Category wise product sale', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1097, 'en', 'sale', 'Sale', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1098, 'en', 'category_wise_product_stock', 'Category wise product stock', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1099, 'en', 'category_name', 'Category Name', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1100, 'en', 'stock', 'Stock', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1101, 'en', 'frontend', 'Frontend', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1103, 'en', 'home_page', 'Home page', '2020-11-11 13:10:19', '2021-09-20 07:29:10'), -(1104, 'en', 'setting', 'setting', '2020-11-11 13:10:19', '2021-02-09 06:52:51'), -(1106, 'en', 'policy_page', 'Policy page', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1107, 'en', 'setting', 'setting', '2020-11-11 13:10:20', '2020-11-11 13:10:20'), -(1109, 'en', 'general', 'General', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1110, 'en', 'setting', 'setting', '2020-11-11 13:10:20', '2020-11-11 13:10:20'), -(1111, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1112, 'en', 'useful_link', 'Useful link', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1113, 'en', 'setting', 'setting', '2020-11-11 13:10:20', '2020-11-11 13:10:20'), -(1114, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1115, 'en', 'activation', 'Activation', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1116, 'en', 'setting', 'setting', '2020-11-11 13:10:20', '2020-11-11 13:10:20'), -(1117, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1118, 'en', 'smtp', 'SMTP', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1119, 'en', 'setting', 'setting', '2020-11-11 13:10:20', '2020-11-11 13:10:20'), -(1120, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1121, 'en', 'payment_method', 'Payment method', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1122, 'en', 'setting', 'setting', '2020-11-11 13:10:20', '2020-11-11 13:10:20'), -(1123, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1124, 'en', 'social_media', 'Social media', '2020-11-11 13:10:20', '2021-09-20 07:29:10'), -(1125, 'en', 'setting', 'setting', '2020-11-11 13:10:20', '2020-11-11 13:10:20'), -(1126, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1127, 'en', 'business', 'Business', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1128, 'en', 'setting', 'setting', '2020-11-11 13:10:21', '2020-11-11 13:10:21'), -(1130, 'en', 'setting', 'setting', '2020-11-11 13:10:21', '2020-11-11 13:10:21'), -(1131, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1132, 'en', 'seller_verification', 'Seller verification', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1133, 'en', 'form_setting', 'form setting', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1134, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1135, 'en', 'language', 'Language', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1136, 'en', 'setting', 'setting', '2020-11-11 13:10:21', '2020-11-11 13:10:21'), -(1137, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1139, 'en', 'setting', 'setting', '2020-11-11 13:10:21', '2020-11-11 13:10:21'), -(1140, 'en', 'click_here', 'Click Here', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1141, 'en', 'dashboard', 'Dashboard', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1142, 'en', 'pos_system', 'POS System', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1143, 'en', 'pos_manager', 'POS Manager', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1144, 'en', 'pos_configuration', 'POS Configuration', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1145, 'en', 'products', 'Products', '2020-11-11 13:10:21', '2021-09-20 07:29:10'), -(1146, 'en', 'add_new_product', 'Add New product', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1147, 'en', 'all_products', 'All Products', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1148, 'en', 'in_house_products', 'In House Products', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1149, 'en', 'seller_products', 'Seller Products', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1150, 'en', 'digital_products', 'Digital Products', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1151, 'en', 'bulk_import', 'Bulk Import', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1152, 'en', 'bulk_export', 'Bulk Export', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1153, 'en', 'category', 'Category', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1154, 'en', 'subcategory', 'Subcategory', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1155, 'en', 'sub_subcategory', 'Sub Subcategory', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1156, 'en', 'brand', 'Brand', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1157, 'en', 'attribute', 'Attribute', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1158, 'en', 'product_reviews', 'Product Reviews', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1159, 'en', 'sales', 'Sales', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1160, 'en', 'all_orders', 'All Orders', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1161, 'en', 'inhouse_orders', 'Inhouse orders', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1162, 'en', 'seller_orders', 'Seller Orders', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1163, 'en', 'pickup_point_order', 'Pick-up Point Order', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1164, 'en', 'refunds', 'Refunds', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1165, 'en', 'refund_requests', 'Refund Requests', '2020-11-11 13:10:22', '2021-09-20 07:29:10'), -(1166, 'en', 'approved_refund', 'Approved Refund', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1167, 'en', 'refund_configuration', 'Refund Configuration', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1168, 'en', 'customers', 'Customers', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1169, 'en', 'customer_list', 'Customer list', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1170, 'en', 'classified_products', 'Classified Products', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1171, 'en', 'classified_packages', 'Classified Packages', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1172, 'en', 'sellers', 'Sellers', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1173, 'en', 'all_seller', 'All Seller', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1174, 'en', 'payouts', 'Payouts', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1175, 'en', 'payout_requests', 'Payout Requests', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1176, 'en', 'seller_commission', 'Seller Commission', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1177, 'en', 'seller_packages', 'Seller Packages', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1178, 'en', 'seller_verification_form', 'Seller Verification Form', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1179, 'en', 'reports', 'Reports', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1180, 'en', 'in_house_product_sale', 'In House Product Sale', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1181, 'en', 'seller_products_sale', 'Seller Products Sale', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1182, 'en', 'products_stock', 'Products Stock', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1183, 'en', 'products_wishlist', 'Products wishlist', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1184, 'en', 'user_searches', 'User Searches', '2020-11-11 13:10:23', '2021-09-20 07:29:10'), -(1185, 'en', 'marketing', 'Marketing', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1186, 'en', 'flash_deals', 'Flash deals', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1187, 'en', 'newsletters', 'Newsletters', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1188, 'en', 'bulk_sms', 'Bulk SMS', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1189, 'en', 'subscribers', 'Subscribers', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1190, 'en', 'coupon', 'Coupon', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1191, 'en', 'support', 'Support', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1192, 'en', 'ticket', 'Ticket', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1193, 'en', 'product_queries', 'Product Queries', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1194, 'en', 'website_setup', 'Website Setup', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1195, 'en', 'header', 'Header', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1196, 'en', 'footer', 'Footer', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1197, 'en', 'pages', 'Pages', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1198, 'en', 'appearance', 'Appearance', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1199, 'en', 'setup__configurations', 'Setup & Configurations', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1200, 'en', 'general_settings', 'General Settings', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1201, 'en', 'features_activation', 'Features activation', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1202, 'en', 'languages', 'Languages', '2020-11-11 13:10:24', '2021-09-20 07:29:10'), -(1203, 'en', 'currency', 'Currency', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1204, 'en', 'pickup_point', 'Pickup point', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1205, 'en', 'smtp_settings', 'SMTP Settings', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1206, 'en', 'payment_methods', 'Payment Methods', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1207, 'en', 'file_system_configuration', 'File System Configuration', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1208, 'en', 'social_media_logins', 'Social media Logins', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1209, 'en', 'analytics_tools', 'Analytics Tools', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1210, 'en', 'facebook_chat', 'Facebook Chat', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1211, 'en', 'google_recaptcha', 'Google reCAPTCHA', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1212, 'en', 'shipping_configuration', 'Shipping Configuration', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1213, 'en', 'shipping_countries', 'Shipping Countries', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1214, 'en', 'affiliate_system', 'Affiliate System', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1215, 'en', 'affiliate_registration_form', 'Affiliate Registration Form', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1216, 'en', 'affiliate_configurations', 'Affiliate Configurations', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1217, 'en', 'affiliate_users', 'Affiliate Users', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1218, 'en', 'referral_users', 'Referral Users', '2020-11-11 13:10:25', '2021-09-20 07:29:10'), -(1219, 'en', 'affiliate_withdraw_requests', 'Affiliate Withdraw Requests', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1220, 'en', 'offline_payment_system', 'Offline Payment System', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1221, 'en', 'manual_payment_methods', 'Manual Payment Methods', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1222, 'en', 'offline_wallet_recharge', 'Offline Wallet Recharge', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1223, 'en', 'offline_customer_package_payments', 'Offline Customer Package Payments', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1224, 'en', 'offline_seller_package_payments', 'Offline Seller Package Payments', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1225, 'en', 'paytm_payment_gateway', 'Paytm Payment Gateway', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1226, 'en', 'set_paytm_credentials', 'Set Paytm Credentials', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1227, 'en', 'club_point_system', 'Club Point System', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1228, 'en', 'club_point_configurations', 'Club Point Configurations', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1229, 'en', 'set_product_point', 'Set Product Point', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1230, 'en', 'user_points', 'User Points', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1231, 'en', 'otp_system', 'OTP System', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1232, 'en', 'otp_configurations', 'OTP Configurations', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1233, 'en', 'set_otp_credentials', 'Set OTP Credentials', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1234, 'en', 'staffs', 'Staffs', '2020-11-11 13:10:26', '2021-09-20 07:29:10'), -(1235, 'en', 'all_staffs', 'All staffs', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1236, 'en', 'staff_permissions', 'Staff permissions', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1237, 'en', 'addon_manager', 'Addon Manager', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1238, 'en', 'browse_website', 'Browse Website', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1239, 'en', 'pos', 'POS', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1240, 'en', 'notifications', 'Notifications', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1241, 'en', 'new_orders', 'new orders', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1242, 'en', 'userimage', 'user-image', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1243, 'en', 'profile', 'Profile', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1244, 'en', 'logout', 'Logout', '2020-11-11 13:10:27', '2021-09-20 07:29:10'), -(1247, 'en', 'page_not_found', 'Page Not Found!', '2020-11-11 13:10:28', '2021-09-20 07:29:10'), -(1249, 'en', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'The page you are looking for has not been found on our server.', '2020-11-11 13:10:28', '2021-09-20 07:29:10'), -(1253, 'en', 'registration', 'Registration', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1255, 'en', 'i_am_shopping_for', 'I am shopping for...', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1257, 'en', 'compare', 'Compare', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1259, 'en', 'wishlist', 'Wishlist', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1261, 'en', 'cart', 'Cart', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1263, 'en', 'your_cart_is_empty', 'Your Cart is empty', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1265, 'en', 'categories', 'Categories', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1267, 'en', 'see_all', 'See All', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1269, 'en', 'seller_policy', 'Seller Policy', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1271, 'en', 'return_policy', 'Return Policy', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1273, 'en', 'support_policy', 'Support Policy', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1275, 'en', 'privacy_policy', 'Privacy Policy', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1277, 'en', 'your_email_address', 'Your Email Address', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1279, 'en', 'subscribe', 'Subscribe', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1281, 'en', 'contact_info', 'Contact Info', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1283, 'en', 'address', 'Address', '2020-11-11 13:10:29', '2021-09-20 07:29:10'), -(1285, 'en', 'phone', 'Phone', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1287, 'en', 'email', 'Email', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1288, 'en', 'login', 'Login', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1289, 'en', 'my_account', 'My Account', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1291, 'en', 'login', 'Login', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1293, 'en', 'order_history', 'Order History', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1295, 'en', 'my_wishlist', 'My Wishlist', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1297, 'en', 'track_order', 'Track Order', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1299, 'en', 'be_an_affiliate_partner', 'Be an affiliate partner', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1301, 'en', 'be_a_seller', 'Be a Seller', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1303, 'en', 'apply_now', 'Apply Now', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1305, 'en', 'confirmation', 'Confirmation', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1307, 'en', 'delete_confirmation_message', 'Delete confirmation message', '2020-11-11 13:10:30', '2021-09-20 07:29:10'); -INSERT INTO `translations` (`id`, `lang`, `lang_key`, `lang_value`, `created_at`, `updated_at`) VALUES -(1309, 'en', 'cancel', 'Cancel', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1312, 'en', 'delete', 'Delete', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1313, 'en', 'item_has_been_added_to_compare_list', 'Item has been added to compare list', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1314, 'en', 'please_login_first', 'Please login first', '2020-11-11 13:10:30', '2021-09-20 07:29:10'), -(1315, 'en', 'total_earnings_from', 'Total Earnings From', '2020-11-12 08:01:11', '2021-09-20 07:29:10'), -(1316, 'en', 'client_subscription', 'Client Subscription', '2020-11-12 08:01:12', '2021-09-20 07:29:10'), -(1317, 'en', 'product_category', 'Product category', '2020-11-12 08:03:46', '2021-09-20 07:29:10'), -(1318, 'en', 'product_sub_sub_category', 'Product sub sub category', '2020-11-12 08:03:46', '2021-09-20 07:29:10'), -(1319, 'en', 'product_sub_category', 'Product sub category', '2020-11-12 08:03:46', '2021-09-20 07:29:10'), -(1320, 'en', 'product_brand', 'Product brand', '2020-11-12 08:03:46', '2021-09-20 07:29:10'), -(1321, 'en', 'top_client_packages', 'Top Client Packages', '2020-11-12 08:05:21', '2021-09-20 07:29:10'), -(1322, 'en', 'top_freelancer_packages', 'Top Freelancer Packages', '2020-11-12 08:05:21', '2021-09-20 07:29:10'), -(1323, 'en', 'number_of_sale', 'Number of sale', '2020-11-12 09:13:09', '2021-09-20 07:29:10'), -(1324, 'en', 'number_of_stock', 'Number of Stock', '2020-11-12 09:16:02', '2021-09-20 07:29:10'), -(1325, 'en', 'top_10_products', 'Top 10 Products', '2020-11-12 10:02:29', '2021-09-20 07:29:10'), -(1326, 'en', 'top_12_products', 'Top 12 Products', '2020-11-12 10:02:39', '2021-09-20 07:29:10'), -(1327, 'en', 'admin_can_not_be_a_seller', 'Admin can not be a seller', '2020-11-12 11:30:19', '2021-09-20 07:29:10'), -(1328, 'en', 'filter_by_rating', 'Filter by Rating', '2020-11-15 08:01:15', '2021-09-20 07:29:10'), -(1329, 'en', 'published_reviews_updated_successfully', 'Published reviews updated successfully', '2020-11-15 08:01:15', '2021-09-20 07:29:10'), -(1330, 'en', 'refund_sticker_has_been_updated_successfully', 'Refund Sticker has been updated successfully', '2020-11-15 08:17:12', '2021-09-20 07:29:10'), -(1331, 'en', 'edit_product', 'Edit Product', '2020-11-15 10:31:54', '2021-09-20 07:29:10'), -(1332, 'en', 'meta_images', 'Meta Images', '2020-11-15 10:32:12', '2021-09-20 07:29:10'), -(1333, 'en', 'update_product', 'Update Product', '2020-11-15 10:32:12', '2021-09-20 07:29:10'), -(1334, 'en', 'product_has_been_deleted_successfully', 'Product has been deleted successfully', '2020-11-15 10:32:57', '2021-09-20 07:29:10'), -(1335, 'en', 'your_profile_has_been_updated_successfully', 'Your Profile has been updated successfully!', '2020-11-15 11:10:42', '2021-09-20 07:29:10'), -(1336, 'en', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Upload limit has been reached. Please upgrade your package.', '2020-11-15 11:13:45', '2021-09-20 07:29:10'), -(1337, 'en', 'add_your_product', 'Add Your Product', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1338, 'en', 'select_a_category', 'Select a category', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1339, 'en', 'select_a_brand', 'Select a brand', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1340, 'en', 'product_unit', 'Product Unit', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1341, 'en', 'minimum_qty', 'Minimum Qty.', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1342, 'en', 'product_tag', 'Product Tag', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1343, 'en', 'type__hit_enter', 'Type & hit enter', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1344, 'en', 'videos', 'Videos', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1345, 'en', 'video_from', 'Video From', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1346, 'en', 'video_url', 'Video URL', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1347, 'en', 'customer_choice', 'Customer Choice', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1348, 'en', 'pdf', 'PDF', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1349, 'en', 'choose_pdf', 'Choose PDF', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1350, 'en', 'select_category', 'Select Category', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1351, 'en', 'target_category', 'Target Category', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1352, 'en', 'subsubcategory', 'subsubcategory', '2020-11-15 11:17:56', '2021-02-09 06:53:13'), -(1353, 'en', 'search_category', 'Search Category', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1354, 'en', 'search_subcategory', 'Search SubCategory', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1355, 'en', 'search_subsubcategory', 'Search SubSubCategory', '2020-11-15 11:17:56', '2021-09-20 07:29:10'), -(1356, 'en', 'update_your_product', 'Update your product', '2020-11-15 11:39:14', '2021-09-20 07:29:10'), -(1357, 'en', 'product_has_been_updated_successfully', 'Product has been updated successfully', '2020-11-15 11:51:36', '2021-09-20 07:29:10'), -(1358, 'en', 'add_your_digital_product', 'Add Your Digital Product', '2020-11-15 12:24:21', '2021-09-20 07:29:10'), -(1359, 'en', 'active_ecommerce_cms_update_process', 'Active eCommerce CMS Update Process', '2020-11-16 07:53:31', '2021-09-20 07:29:10'), -(1361, 'en', 'codecanyon_purchase_code', 'Codecanyon purchase code', '2020-11-16 07:53:31', '2021-09-20 07:29:10'), -(1362, 'en', 'database_name', 'Database Name', '2020-11-16 07:53:31', '2021-09-20 07:29:10'), -(1363, 'en', 'database_username', 'Database Username', '2020-11-16 07:53:31', '2021-09-20 07:29:10'), -(1364, 'en', 'database_password', 'Database Password', '2020-11-16 07:53:31', '2021-09-20 07:29:10'), -(1365, 'en', 'database_hostname', 'Database Hostname', '2020-11-16 07:53:31', '2021-09-20 07:29:10'), -(1366, 'en', 'update_now', 'Update Now', '2020-11-16 07:53:31', '2021-09-20 07:29:10'), -(1368, 'en', 'congratulations', 'Congratulations', '2020-11-16 07:55:14', '2021-09-20 07:29:10'), -(1369, 'en', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'You have successfully completed the updating process. Please Login to continue', '2020-11-16 07:55:14', '2021-09-20 07:29:10'), -(1370, 'en', 'go_to_home', 'Go to Home', '2020-11-16 07:55:14', '2021-09-20 07:29:10'), -(1371, 'en', 'login_to_admin_panel', 'Login to Admin panel', '2020-11-16 07:55:14', '2021-09-20 07:29:10'), -(1372, 'en', 's3_file_system_credentials', 'S3 File System Credentials', '2020-11-16 12:59:57', '2021-09-20 07:29:10'), -(1373, 'en', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2020-11-16 12:59:57', '2021-09-20 07:29:10'), -(1374, 'en', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2020-11-16 12:59:57', '2021-09-20 07:29:10'), -(1375, 'en', 'aws_default_region', 'AWS_DEFAULT_REGION', '2020-11-16 12:59:57', '2021-09-20 07:29:10'), -(1376, 'en', 'aws_bucket', 'AWS_BUCKET', '2020-11-16 12:59:57', '2021-09-20 07:29:10'), -(1377, 'en', 'aws_url', 'AWS_URL', '2020-11-16 12:59:57', '2021-09-20 07:29:10'), -(1378, 'en', 's3_file_system_activation', 'S3 File System Activation', '2020-11-16 12:59:57', '2021-09-20 07:29:10'), -(1379, 'en', 'your_phone_number', 'Your phone number', '2020-11-17 05:50:10', '2021-09-20 07:29:10'), -(1380, 'en', 'zip_file', 'Zip File', '2020-11-17 06:58:45', '2021-09-20 07:29:10'), -(1381, 'en', 'install', 'Install', '2020-11-17 06:58:45', '2021-09-20 07:29:10'), -(1382, 'en', 'this_version_is_not_capable_of_installing_addons_please_update', 'This version is not capable of installing Addons, Please update.', '2020-11-17 06:59:11', '2021-09-20 07:29:10'), -(1383, 'bd', 'categories', 'Categories', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1384, 'bd', 'see_all', 'See All', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1385, 'bd', 'top_10_categories', 'Top 10 Categories', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1386, 'bd', 'view_all_categories', 'View All Categories', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1387, 'bd', 'top_10_brands', 'Top 10 Brands', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1388, 'bd', 'view_all_brands', 'View All Brands', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1389, 'bd', 'login', 'Login', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1390, 'bd', 'registration', 'Registration', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1391, 'bd', 'i_am_shopping_for', 'I am shopping for...', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1392, 'bd', 'compare', 'Compare', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1393, 'bd', 'wishlist', 'Wishlist', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1394, 'bd', 'cart', 'Cart', '2021-02-03 03:50:34', '2021-09-20 07:29:10'), -(1395, 'bd', 'your_cart_is_empty', 'Your Cart is empty', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1396, 'bd', 'terms__conditions', 'Terms & conditions', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1397, 'bd', 'return_policy', 'Return Policy', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1398, 'bd', 'support_policy', 'Support Policy', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1399, 'bd', 'privacy_policy', 'Privacy Policy', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1400, 'bd', 'your_email_address', 'Your Email Address', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1401, 'bd', 'subscribe', 'Subscribe', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1402, 'bd', 'contact_info', 'Contact Info', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1403, 'bd', 'address', 'Address', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1404, 'bd', 'phone', 'Phone', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1405, 'bd', 'email', 'Email', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1406, 'bd', 'my_account', 'My Account', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1407, 'bd', 'order_history', 'Order History', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1408, 'bd', 'my_wishlist', 'My Wishlist', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1409, 'bd', 'track_order', 'Track Order', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1410, 'bd', 'welcome_to', 'Welcome to', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1411, 'bd', 'login_to_your_account', 'Login to your account.', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1412, 'bd', 'be_a_seller', 'Be a Seller', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1413, 'bd', 'apply_now', 'Apply Now', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1414, 'bd', 'password', 'Password', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1415, 'bd', 'remember_me', 'Remember Me', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1416, 'bd', 'confirmation', 'Confirmation', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1417, 'bd', 'delete_confirmation_message', 'Delete confirmation message', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1418, 'bd', 'cancel', 'Cancel', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1419, 'bd', 'delete', 'Delete', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1420, 'bd', 'item_has_been_added_to_compare_list', 'Item has been added to compare list', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1421, 'bd', 'please_login_first', 'Please login first', '2021-02-03 03:50:35', '2021-09-20 07:29:10'), -(1422, 'bd', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Please Configure SMTP Setting to work all email sending functionality', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1423, 'bd', 'configure_now', 'Configure Now', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1424, 'bd', 'total', 'Total', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1425, 'bd', 'customer', 'Customer', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1426, 'bd', 'order', 'Order', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1427, 'bd', 'product_category', 'Product category', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1428, 'bd', 'product_brand', 'Product brand', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1429, 'bd', 'products', 'Products', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1430, 'bd', 'sellers', 'Sellers', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1431, 'bd', 'category_wise_product_sale', 'Category wise product sale', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1432, 'bd', 'category_wise_product_stock', 'Category wise product stock', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1433, 'bd', 'top_12_products', 'Top 12 Products', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1434, 'bd', 'total_published_products', 'Total published products', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1435, 'bd', 'total_sellers_products', 'Total sellers products', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1436, 'bd', 'total_admin_products', 'Total admin products', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1437, 'bd', 'total_sellers', 'Total sellers', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1438, 'bd', 'total_approved_sellers', 'Total approved sellers', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1439, 'bd', 'total_pending_sellers', 'Total pending sellers', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1440, 'bd', 'number_of_sale', 'Number of sale', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1441, 'bd', 'number_of_stock', 'Number of Stock', '2021-02-03 03:50:41', '2021-09-20 07:29:10'), -(1442, 'bd', 'search_in_menu', 'Search in menu', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1443, 'bd', 'dashboard', 'Dashboard', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1444, 'bd', 'add_new_product', 'Add New product', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1445, 'bd', 'all_products', 'All Products', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1446, 'bd', 'in_house_products', 'In House Products', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1447, 'bd', 'seller_products', 'Seller Products', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1448, 'bd', 'digital_products', 'Digital Products', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1449, 'bd', 'bulk_import', 'Bulk Import', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1450, 'bd', 'bulk_export', 'Bulk Export', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1451, 'bd', 'category', 'Category', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1452, 'bd', 'brand', 'Brand', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1453, 'bd', 'attribute', 'Attribute', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1454, 'bd', 'product_reviews', 'Product Reviews', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1455, 'bd', 'sales', 'Sales', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1456, 'bd', 'all_orders', 'All Orders', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1457, 'bd', 'inhouse_orders', 'Inhouse orders', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1458, 'bd', 'seller_orders', 'Seller Orders', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1459, 'bd', 'pickup_point_order', 'Pick-up Point Order', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1460, 'bd', 'customers', 'Customers', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1461, 'bd', 'customer_list', 'Customer list', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1462, 'bd', 'all_seller', 'All Seller', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1463, 'bd', 'payouts', 'Payouts', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1464, 'bd', 'payout_requests', 'Payout Requests', '2021-02-03 03:50:42', '2021-09-20 07:29:10'), -(1465, 'bd', 'seller_commission', 'Seller Commission', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1466, 'bd', 'seller_verification_form', 'Seller Verification Form', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1467, 'bd', 'uploaded_files', 'Uploaded Files', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1468, 'bd', 'reports', 'Reports', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1469, 'bd', 'in_house_product_sale', 'In House Product Sale', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1470, 'bd', 'seller_products_sale', 'Seller Products Sale', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1471, 'bd', 'products_stock', 'Products Stock', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1472, 'bd', 'products_wishlist', 'Products wishlist', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1473, 'bd', 'user_searches', 'User Searches', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1474, 'bd', 'marketing', 'Marketing', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1475, 'bd', 'flash_deals', 'Flash deals', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1476, 'bd', 'newsletters', 'Newsletters', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1477, 'bd', 'subscribers', 'Subscribers', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1478, 'bd', 'coupon', 'Coupon', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1479, 'bd', 'support', 'Support', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1480, 'bd', 'ticket', 'Ticket', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1481, 'bd', 'product_queries', 'Product Queries', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1482, 'bd', 'website_setup', 'Website Setup', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1483, 'bd', 'header', 'Header', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1484, 'bd', 'footer', 'Footer', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1485, 'bd', 'pages', 'Pages', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1486, 'bd', 'appearance', 'Appearance', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1487, 'bd', 'setup__configurations', 'Setup & Configurations', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1488, 'bd', 'general_settings', 'General Settings', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1489, 'bd', 'features_activation', 'Features activation', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1490, 'bd', 'languages', 'Languages', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1491, 'bd', 'currency', 'Currency', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1492, 'bd', 'pickup_point', 'Pickup point', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1493, 'bd', 'smtp_settings', 'SMTP Settings', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1494, 'bd', 'payment_methods', 'Payment Methods', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1495, 'bd', 'file_system_configuration', 'File System Configuration', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1496, 'bd', 'social_media_logins', 'Social media Logins', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1497, 'bd', 'analytics_tools', 'Analytics Tools', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1498, 'bd', 'facebook_chat', 'Facebook Chat', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1499, 'bd', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1500, 'bd', 'shipping_configuration', 'Shipping Configuration', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1501, 'bd', 'shipping_countries', 'Shipping Countries', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1502, 'bd', 'shipping_cities', 'Shipping Cities', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1503, 'bd', 'staffs', 'Staffs', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1504, 'bd', 'all_staffs', 'All staffs', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1505, 'bd', 'staff_permissions', 'Staff permissions', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1506, 'bd', 'system', 'System', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1507, 'bd', 'update', 'Update', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1508, 'bd', 'server_status', 'Server status', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1509, 'bd', 'addon_manager', 'Addon Manager', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1510, 'bd', 'browse_website', 'Browse Website', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1511, 'bd', 'notifications', 'Notifications', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1512, 'bd', 'profile', 'Profile', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1513, 'bd', 'logout', 'Logout', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1514, 'bd', 'nothing_found', 'Nothing Found', '2021-02-03 03:50:42', '2021-09-20 07:29:11'), -(1515, 'bd', 'my_panel', 'My Panel', '2021-02-03 03:54:10', '2021-09-20 07:29:11'), -(1516, 'bd', 'featured_products', 'Featured Products', '2021-02-03 03:54:11', '2021-09-20 07:29:11'), -(1517, 'bd', 'all_brands', 'All Brands', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1518, 'bd', 'brands', 'Brands', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1519, 'bd', 'type_name__enter', 'Type name & Enter', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1520, 'bd', 'name', 'Name', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1521, 'bd', 'logo', 'Logo', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1522, 'bd', 'options', 'Options', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1523, 'bd', 'edit', 'Edit', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1524, 'bd', 'add_new_brand', 'Add New Brand', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1525, 'bd', '120x80', '120x80', '2021-02-03 03:54:25', '2021-02-03 03:54:25'), -(1526, 'bd', 'browse', 'Browse', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1527, 'bd', 'choose_file', 'Choose File', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1528, 'bd', 'meta_title', 'Meta Title', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1529, 'bd', 'meta_description', 'Meta Description', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1530, 'bd', 'save', 'Save', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1531, 'bd', 'delete_confirmation', 'Delete Confirmation', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1532, 'bd', 'are_you_sure_to_delete_this', 'Are you sure to delete this?', '2021-02-03 03:54:25', '2021-09-20 07:29:11'), -(1533, 'bd', 'all_categories', 'All categories', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1534, 'bd', 'add_new_category', 'Add New category', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1535, 'bd', 'parent_category', 'Parent Category', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1536, 'bd', 'level', 'Level', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1537, 'bd', 'banner', 'Banner', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1538, 'bd', 'icon', 'Icon', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1539, 'bd', 'featured', 'Featured', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1540, 'bd', 'commission', 'Commission', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1541, 'bd', 'featured_categories_updated_successfully', 'Featured categories updated successfully', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1542, 'bd', 'something_went_wrong', 'Something went wrong', '2021-02-03 03:54:30', '2021-09-20 07:29:11'), -(1543, 'bd', 'category_information', 'Category Information', '2021-02-03 03:55:29', '2021-09-20 07:29:11'), -(1544, 'bd', 'translatable', 'Translatable', '2021-02-03 03:55:29', '2021-09-20 07:29:11'), -(1545, 'bd', 'no_parent', 'No Parent', '2021-02-03 03:55:29', '2021-09-20 07:29:11'), -(1546, 'bd', 'type', 'Type', '2021-02-03 03:55:30', '2021-09-20 07:29:11'), -(1547, 'bd', 'physical', 'Physical', '2021-02-03 03:55:30', '2021-09-20 07:29:11'), -(1548, 'bd', 'digital', 'Digital', '2021-02-03 03:55:30', '2021-09-20 07:29:11'), -(1549, 'bd', '200x200', '200x200', '2021-02-03 03:55:30', '2021-02-03 03:55:30'), -(1550, 'bd', '32x32', '32x32', '2021-02-03 03:55:30', '2021-02-03 03:55:30'), -(1551, 'bd', 'slug', 'Slug', '2021-02-03 03:55:30', '2021-09-20 07:29:11'), -(1552, 'bd', 'default_language', 'Default Language', '2021-02-03 03:55:45', '2021-09-20 07:29:11'), -(1553, 'bd', 'add_new_language', 'Add New Language', '2021-02-03 03:55:45', '2021-09-20 07:29:11'), -(1554, 'bd', 'language', 'Language', '2021-02-03 03:55:45', '2021-09-20 07:29:11'), -(1555, 'bd', 'code', 'Code', '2021-02-03 03:55:45', '2021-09-20 07:29:11'), -(1556, 'bd', 'rtl', 'RTL', '2021-02-03 03:55:45', '2021-09-20 07:29:11'), -(1557, 'bd', 'translation', 'Translation', '2021-02-03 03:55:45', '2021-09-20 07:29:11'), -(1558, 'bd', 'settings_updated_successfully', 'Settings updated successfully', '2021-02-03 03:55:48', '2021-09-20 07:29:11'), -(1559, 'en', 'search_in_menu', 'Search in menu', '2021-02-03 03:55:48', '2021-09-20 07:29:11'), -(1560, 'en', 'uploaded_files', 'Uploaded Files', '2021-02-03 03:55:48', '2021-09-20 07:29:11'), -(1561, 'en', 'shipping_cities', 'Shipping Cities', '2021-02-03 03:55:48', '2021-09-20 07:29:11'), -(1562, 'en', 'system', 'System', '2021-02-03 03:55:49', '2021-09-20 07:29:11'), -(1563, 'en', 'server_status', 'Server status', '2021-02-03 03:55:49', '2021-09-20 07:29:11'), -(1564, 'en', 'nothing_found', 'Nothing Found', '2021-02-03 03:55:49', '2021-09-20 07:29:11'), -(1565, 'en', 'parent_category', 'Parent Category', '2021-02-03 03:58:00', '2021-09-20 07:29:11'), -(1566, 'en', 'level', 'Level', '2021-02-03 03:58:00', '2021-09-20 07:29:11'), -(1567, 'en', 'category_information', 'Category Information', '2021-02-03 03:58:12', '2021-09-20 07:29:11'), -(1568, 'en', 'translatable', 'Translatable', '2021-02-03 03:58:12', '2021-09-20 07:29:11'), -(1569, 'en', 'no_parent', 'No Parent', '2021-02-03 03:58:12', '2021-09-20 07:29:11'), -(1570, 'en', 'physical', 'Physical', '2021-02-03 03:58:13', '2021-09-20 07:29:11'), -(1571, 'en', 'digital', 'Digital', '2021-02-03 03:58:13', '2021-09-20 07:29:11'), -(1572, 'en', '200x200', '200x200', '2021-02-03 03:58:13', '2021-02-03 03:58:13'), -(1573, 'en', '32x32', '32x32', '2021-02-03 03:58:13', '2021-02-03 03:58:13'), -(1574, 'en', 'search_your_files', 'Search your files', '2021-02-03 03:58:15', '2021-09-20 07:29:11'), -(1575, 'en', 'category_has_been_updated_successfully', 'Category has been updated successfully', '2021-02-03 04:47:29', '2021-09-20 07:29:11'), -(1576, 'en', 'all_uploaded_files', 'All uploaded files', '2021-02-03 06:25:30', '2021-09-20 07:29:11'), -(1577, 'en', 'upload_new_file', 'Upload New File', '2021-02-03 06:25:30', '2021-09-20 07:29:11'), -(1578, 'en', 'all_files', 'All files', '2021-02-03 06:25:30', '2021-09-20 07:29:11'), -(1579, 'en', 'search', 'Search', '2021-02-03 06:25:30', '2021-09-20 07:29:11'), -(1580, 'en', 'details_info', 'Details Info', '2021-02-03 06:25:30', '2021-09-20 07:29:11'), -(1581, 'en', 'copy_link', 'Copy Link', '2021-02-03 06:25:30', '2021-09-20 07:29:11'), -(1582, 'en', 'are_you_sure_to_delete_this_file', 'Are you sure to delete this file?', '2021-02-03 06:25:31', '2021-09-20 07:29:11'), -(1583, 'en', 'file_info', 'File Info', '2021-02-03 06:25:31', '2021-09-20 07:29:11'), -(1584, 'en', 'link_copied_to_clipboard', 'Link copied to clipboard', '2021-02-03 06:25:31', '2021-09-20 07:29:11'), -(1585, 'en', 'oops_unable_to_copy', 'Oops, unable to copy', '2021-02-03 06:25:31', '2021-09-20 07:29:11'), -(1586, 'en', 'file_deleted_successfully', 'File deleted successfully', '2021-02-03 06:26:02', '2021-09-20 07:29:11'), -(1587, 'en', 'add_new_brand', 'Add New Brand', '2021-02-03 07:04:22', '2021-09-20 07:29:11'), -(1588, 'en', '120x80', '120x80', '2021-02-03 07:04:22', '2021-02-03 07:04:22'), -(1589, 'en', 'brand_information', 'Brand Information', '2021-02-03 07:04:29', '2021-09-20 07:29:11'), -(1590, 'en', 'brand_has_been_updated_successfully', 'Brand has been updated successfully', '2021-02-03 07:06:52', '2021-09-20 07:29:11'), -(1591, 'en', 'brand_has_been_deleted_successfully', 'Brand has been deleted successfully', '2021-02-03 07:07:54', '2021-09-20 07:29:11'), -(1592, 'en', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'This is used for search. Input those words by which cutomer can find this product.', '2021-02-04 03:11:06', '2021-09-20 07:29:11'), -(1593, 'en', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'These images are visible in product details page gallery. Use 600x600 sizes images.', '2021-02-04 03:11:06', '2021-09-20 07:29:11'), -(1594, 'en', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.', '2021-02-04 03:11:06', '2021-09-20 07:29:11'), -(1595, 'en', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Use proper link without extra parameter. Don\'t use short share link/embeded iframe code.', '2021-02-04 03:11:06', '2021-09-20 07:29:11'), -(1596, 'en', 'save_product', 'Save Product', '2021-02-04 03:11:07', '2021-09-20 07:29:11'), -(1597, 'en', 'product_has_been_inserted_successfully', 'Product has been inserted successfully', '2021-02-04 03:29:35', '2021-09-20 07:29:11'), -(1598, 'en', 'something_went_wrong', 'Something went wrong!', '2021-02-04 04:32:50', '2021-09-20 07:29:11'), -(1599, 'en', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Sorry for the inconvenience, but we\'re working on it.', '2021-02-04 04:32:50', '2021-09-20 07:29:11'), -(1600, 'en', 'error_code', 'Error code', '2021-02-04 04:32:50', '2021-09-20 07:29:11'), -(1601, 'en', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Please Configure SMTP Setting to work all email sending functionality', '2021-02-04 04:33:06', '2021-09-20 07:29:11'), -(1602, 'en', 'order', 'Order', '2021-02-04 04:33:06', '2021-09-20 07:29:11'), -(1603, 'en', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'We have limited banner height to maintain UI. We had to crop from both left & right side in view for different devices to make it responsive. Before designing banner keep these points in mind.', '2021-02-04 06:10:35', '2021-09-20 07:29:11'), -(1604, 'en', 'home_banner_3_max_3', 'Home Banner 3 (Max 3)', '2021-02-04 06:10:36', '2021-09-20 07:29:11'), -(1605, 'en', 'add_new_seller', 'Add New Seller', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1606, 'en', 'filter_by_approval', 'Filter by Approval', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1607, 'en', 'nonapproved', 'Non-Approved', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1608, 'en', 'type_name_or_email__enter', 'Type name or email & Enter', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1609, 'en', 'due_to_seller', 'Due to seller', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1610, 'en', 'log_in_as_this_seller', 'Log in as this Seller', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1611, 'en', 'go_to_payment', 'Go to Payment', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1612, 'en', 'ban_this_seller', 'Ban this seller', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1613, 'en', 'do_you_really_want_to_ban_this_seller', 'Do you really want to ban this seller?', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1614, 'en', 'proceed', 'Proceed!', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1615, 'en', 'approved_sellers_updated_successfully', 'Approved sellers updated successfully', '2021-02-04 07:28:20', '2021-09-20 07:29:11'), -(1616, 'en', 'seller_has_been_deleted_successfully', 'Seller has been deleted successfully', '2021-02-04 07:28:26', '2021-09-20 07:29:11'), -(1617, 'en', 'seller_information', 'Seller Information', '2021-02-04 07:29:05', '2021-09-20 07:29:11'), -(1618, 'en', 'seller_has_been_inserted_successfully', 'Seller has been inserted successfully', '2021-02-04 07:35:31', '2021-09-20 07:29:11'), -(1619, 'en', 'email_already_exists', 'Email already exists!', '2021-02-04 07:38:36', '2021-09-20 07:29:11'), -(1620, 'en', 'verify_your_email_address', 'Verify Your Email Address', '2021-02-04 07:40:03', '2021-09-20 07:29:11'), -(1621, 'en', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Before proceeding, please check your email for a verification link.', '2021-02-04 07:40:03', '2021-09-20 07:29:11'), -(1622, 'en', 'if_you_did_not_receive_the_email', 'If you did not receive the email.', '2021-02-04 07:40:03', '2021-09-20 07:29:11'), -(1623, 'en', 'click_here_to_request_another', 'Click here to request another', '2021-02-04 07:40:03', '2021-09-20 07:29:11'), -(1624, 'en', 'email_verification', 'Email Verification', '2021-02-04 07:40:09', '2021-09-20 07:29:11'), -(1625, 'en', 'email_verification__', 'Email Verification -', '2021-02-04 07:40:09', '2021-09-20 07:29:11'), -(1626, 'en', 'https_activation', 'HTTPS Activation', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1627, 'en', 'maintenance_mode', 'Maintenance Mode', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1628, 'en', 'maintenance_mode_activation', 'Maintenance Mode Activation', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1629, 'en', 'classified_product_activate', 'Classified Product Activate', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1630, 'en', 'classified_product', 'Classified Product', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1631, 'en', 'business_related', 'Business Related', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1632, 'en', 'vendor_system_activation', 'Vendor System Activation', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1633, 'en', 'wallet_system_activation', 'Wallet System Activation', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1634, 'en', 'coupon_system_activation', 'Coupon System Activation', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1635, 'en', 'pickup_point_activation', 'Pickup Point Activation', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1636, 'en', 'conversation_activation', 'Conversation Activation', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1637, 'en', 'guest_checkout_activation', 'Guest Checkout Activation', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1638, 'en', 'categorybased_commission', 'Category-based Commission', '2021-02-04 07:43:50', '2021-09-20 07:29:11'), -(1639, 'en', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'After activate this option Seller commision will be disabled and You need to set commission on each category otherwise Admin will not get any commision', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1640, 'en', 'set_commisssion_now', 'Set Commisssion Now', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1641, 'en', 'payment_related', 'Payment Related', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1642, 'en', 'paypal_payment_activation', 'Paypal Payment Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1643, 'en', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'You need to configure Paypal correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1644, 'en', 'stripe_payment_activation', 'Stripe Payment Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1645, 'en', 'sslcommerz_activation', 'SSlCommerz Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1646, 'en', 'instamojo_payment_activation', 'Instamojo Payment Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1647, 'en', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'You need to configure Instamojo Payment correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1648, 'en', 'razor_pay_activation', 'Razor Pay Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1649, 'en', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'You need to configure Razor correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1650, 'en', 'paystack_activation', 'PayStack Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1651, 'en', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'You need to configure PayStack correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1652, 'en', 'voguepay_activation', 'VoguePay Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1653, 'en', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'You need to configure VoguePay correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1654, 'en', 'payhere_activation', 'Payhere Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1655, 'en', 'ngenius_activation', 'Ngenius Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1656, 'en', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'You need to configure Ngenius correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1657, 'en', 'iyzico_activation', 'Iyzico Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1658, 'en', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'You need to configure iyzico correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1659, 'en', 'bkash_activation', 'Bkash Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1660, 'en', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'You need to configure bkash correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1661, 'en', 'nagad_activation', 'Nagad Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1662, 'en', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'You need to configure nagad correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1663, 'en', 'cash_payment_activation', 'Cash Payment Activation', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1664, 'en', 'social_media_login', 'Social Media Login', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1665, 'en', 'facebook_login', 'Facebook login', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1666, 'en', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'You need to configure Facebook Client correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1667, 'en', 'google_login', 'Google login', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1668, 'en', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'You need to configure Google Client correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1669, 'en', 'twitter_login', 'Twitter login', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1670, 'en', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'You need to configure Twitter Client correctly to enable this feature', '2021-02-04 07:43:51', '2021-09-20 07:29:11'), -(1671, 'en', 'shop_logo', 'Shop Logo', '2021-02-04 07:45:53', '2021-09-20 07:29:11'), -(1672, 'en', 'shop_address', 'Shop Address', '2021-02-04 07:45:53', '2021-09-20 07:29:11'), -(1673, 'en', 'banner_settings', 'Banner Settings', '2021-02-04 07:45:53', '2021-09-20 07:29:11'), -(1674, 'en', 'banners', 'Banners', '2021-02-04 07:45:53', '2021-09-20 07:29:11'), -(1675, 'en', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'We had to limit height to maintian consistancy. In some device both side of the banner might be cropped for height limitation.', '2021-02-04 07:45:53', '2021-09-20 07:29:11'), -(1676, 'en', 'insert_link_with_https_', 'Insert link with https', '2021-02-04 07:45:53', '2021-09-20 07:29:11'), -(1677, 'en', 'your_shop_has_been_updated_successfully', 'Your Shop has been updated successfully!', '2021-02-04 07:49:29', '2021-09-20 07:29:11'), -(1678, 'en', 'support_ticket', 'Support Ticket', '2021-02-04 14:25:45', '2021-09-20 07:29:11'), -(1679, 'en', 'delete', 'Delete', '2021-02-05 03:06:35', '2021-09-20 07:29:11'), -(1680, 'en', 'search_result_for_', 'Search result for', '2021-02-05 03:15:40', '2021-09-20 07:29:11'), -(1681, 'en', 'brand_has_been_inserted_successfully', 'Brand has been inserted successfully', '2021-02-05 07:27:04', '2021-09-20 07:29:11'), -(1682, 'en', 'about', 'About', '2021-02-07 02:26:32', '2021-09-20 07:29:11'), -(1683, 'en', 'payout_info', 'Payout Info', '2021-02-07 02:26:32', '2021-09-20 07:29:11'), -(1684, 'en', 'bank_acc_name', 'Bank Acc Name', '2021-02-07 02:26:32', '2021-09-20 07:29:11'), -(1685, 'en', 'bank_acc_number', 'Bank Acc Number', '2021-02-07 02:26:32', '2021-09-20 07:29:11'), -(1686, 'en', 'total_products', 'Total Products', '2021-02-07 02:26:32', '2021-09-20 07:29:11'), -(1687, 'en', 'total_sold_amount', 'Total Sold Amount', '2021-02-07 02:26:32', '2021-09-20 07:29:11'), -(1688, 'en', 'wallet_balance', 'Wallet Balance', '2021-02-07 02:26:32', '2021-09-20 07:29:11'), -(1689, 'en', 'cookies_agreement', 'Cookies Agreement', '2021-02-07 03:50:48', '2021-09-20 07:29:11'), -(1690, 'en', 'cookies_agreement_text', 'Cookies Agreement Text', '2021-02-07 03:50:48', '2021-09-20 07:29:11'), -(1691, 'en', 'show_cookies_agreement', 'Show Cookies Agreement?', '2021-02-07 03:50:48', '2021-09-20 07:29:11'), -(1692, 'en', 'custom_script', 'Custom Script', '2021-02-07 03:50:48', '2021-09-20 07:29:11'), -(1693, 'en', 'header_custom_script__before_head', 'Header custom script - before ', '2021-02-07 03:50:48', '2021-09-20 07:29:11'), -(1694, 'en', 'write_script_with_script_tag', 'Write script with -@endsection diff --git a/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/index.blade.php b/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/index.blade.php deleted file mode 100644 index 2d74bd00..00000000 --- a/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/index.blade.php +++ /dev/null @@ -1,66 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
- - - - - - - - - - - - - - @foreach($club_points as $key => $club_point) - - - - - - - - - - @endforeach - -
#{{translate('Order Code')}}{{translate('Customer Name')}}{{translate('Points')}}{{translate('Convert Status')}}{{translate('Earned At')}}{{translate('Options')}}
{{ ($key+1) + ($club_points->currentPage() - 1)*$club_points->perPage() }} - @if ($club_point->order != null) - {{ $club_point->order->code }} - @else - {{ translate('Order not found') }} - @endif - - @if ($club_point->user != null) - {{ $club_point->user->name }} - @else - {{ translate('User not found') }} - @endif - {{ $club_point->points }} - @if ($club_point->convert_status == 1) - {{translate('Converted')}} - @else - {{translate('Pending')}} - @endif - {{ $club_point->created_at }} - - - -
-
- {{ $club_points->appends(request()->input())->links() }} -
-
-
-
-
- - -@endsection diff --git a/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/product_point_edit.blade.php b/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/product_point_edit.blade.php deleted file mode 100644 index 6ec4b8a3..00000000 --- a/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/product_point_edit.blade.php +++ /dev/null @@ -1,32 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Set Point for Product')}}
-
-
-
- @csrf -
-
- -
-
- -
-
-
- -
-
-
-
-
-
- - -@endsection diff --git a/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/set_point.blade.php b/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/set_point.blade.php deleted file mode 100644 index 7d895ec4..00000000 --- a/desarrollo/temp/BJUT7zE1yp/addons/club_point/views/club_points/set_point.blade.php +++ /dev/null @@ -1,126 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
- - - - - - - - - - - - - @foreach($products as $key => $product) - - - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Owner')}}{{translate('Price')}}{{translate('Point')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} - -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
-
- @if ($product->user != null) - {{ $product->user->name }} - @endif - {{ number_format($product->unit_price,2) }}{{ $product->earn_point }} - - - -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
-
-
-
-
{{translate('Set Point for Product Within a Range')}}
-
-
-
- {{ translate('Set any specific point for those products what are between Min-price and Max-price. Min-price should be less than Max-price') }} -
-
- @csrf -
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
-
-
{{translate('Set Point for all Products')}}
-
-
-
- @csrf -
-
- -
-
- -
-
- -
-
-
- -
-
-
-
-
-
- -@endsection diff --git a/desarrollo/temp/IWoZhNx6FV/addons/Flutter_source_code.zip b/desarrollo/temp/IWoZhNx6FV/addons/Flutter_source_code.zip deleted file mode 100644 index 01a4d8a8..00000000 Binary files a/desarrollo/temp/IWoZhNx6FV/addons/Flutter_source_code.zip and /dev/null differ diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/assets/otp_system.png b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/assets/otp_system.png deleted file mode 100644 index fc1bd553..00000000 Binary files a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/assets/otp_system.png and /dev/null differ diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/config.json b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/config.json deleted file mode 100644 index 82e1229a..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/config.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "name": "OTP", - "unique_identifier": "otp_system", - "version": "2.3", - "minimum_item_version": "7.5.0", - "addon_banner": "otp_system.png", - "directory": [ - { - "name": [ - "resources/views/otp_systems", - "resources/views/backend/otp_systems", - "resources/views/backend/otp_systems/configurations", - "resources/views/backend/otp_systems/configurations/partials", - "resources/views/backend/otp_systems/sms", - "resources/views/otp_systems/frontend", - "resources/views/otp_systems/frontend/auth", - "resources/views/otp_systems/frontend/auth/passwords" - ] - } - ], - "sql_file": "", - "files": [ - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/index.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/index.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/activation.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/activation.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/sms_templates.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/sms_templates.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/twillo.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/twillo.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/nexmo.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/nexmo.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/fast2sms.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/fast2sms.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/mimo.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/mimo.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/mimsms.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/mimsms.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/msegat.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/msegat.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/sparrow.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/sparrow.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/ssl_wireless.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/ssl_wireless.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/configurations/partials/zender.blade.php", - "update_directory": "resources/views/backend/otp_systems/configurations/partials/zender.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/sms/index.blade.php", - "update_directory": "resources/views/backend/otp_systems/sms/index.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/frontend/auth/passwords/reset_with_phone.blade.php", - "update_directory": "resources/views/otp_systems/frontend/auth/passwords/reset_with_phone.blade.php" - }, - { - "root_directory": "addons/otp_system/views/otp_systems/frontend/user_verification.blade.php", - "update_directory": "resources/views/otp_systems/frontend/user_verification.blade.php" - }, - { - "root_directory": "addons/otp_system/controllers/OTPController.php", - "update_directory": "app/Http/Controllers/OTPController.php" - }, - { - "root_directory": "addons/otp_system/controllers/SmsController.php", - "update_directory": "app/Http/Controllers/SmsController.php" - }, - { - "root_directory": "addons/otp_system/controllers/OTPVerificationController.php", - "update_directory": "app/Http/Controllers/OTPVerificationController.php" - }, - { - "root_directory": "addons/otp_system/controllers/SmsTemplateController.php", - "update_directory": "app/Http/Controllers/SmsTemplateController.php" - }, - { - "root_directory": "addons/otp_system/utility/MimoUtility.php", - "update_directory": "app/Utility/MimoUtility.php" - }, - { - "root_directory": "addons/otp_system/utility/SmsUtility.php", - "update_directory": "app/Utility/SmsUtility.php" - }, - { - "root_directory": "addons/otp_system/assets/otp_system.png", - "update_directory": "public/otp_system.png" - } - ] -} diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/OTPController.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/OTPController.php deleted file mode 100644 index 777bf598..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/OTPController.php +++ /dev/null @@ -1,94 +0,0 @@ -middleware(['permission:otp_configurations'])->only('configure_index'); - $this->middleware(['permission:sms_providers_configurations'])->only('credentials_index'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function configure_index() - { - $otp_configurations = OtpConfiguration::all(); - return view('backend.otp_systems.configurations.activation', compact('otp_configurations')); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function credentials_index() - { - $otp_configurations = OtpConfiguration::all(); - return view('backend.otp_systems.configurations.index', compact('otp_configurations')); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function updateActivationSettings(Request $request) - { - $business_settings = OtpConfiguration::where('type', $request->type)->first(); - if($business_settings!=null){ - $business_settings->value = $request->value; - $business_settings->save(); - } - else{ - $business_settings = new OtpConfiguration; - $business_settings->type = $request->type; - $business_settings->value = $request->value; - $business_settings->save(); - } - return '1'; - } - - /** - * Update the specified resource in .env - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function update_credentials(Request $request) - { - foreach ($request->types as $key => $type) { - $this->overWriteEnvFile($type, $request[$type]); - } - - flash("Settings updated successfully")->success(); - return back(); - } - - /** - *.env file overwrite - */ - public function overWriteEnvFile($type, $val) - { - $path = base_path('.env'); - if (file_exists($path)) { - $val = '"'.trim($val).'"'; - if(is_numeric(strpos(file_get_contents($path), $type)) && strpos(file_get_contents($path), $type) >= 0){ - file_put_contents($path, str_replace( - $type.'="'.env($type).'"', $type.'='.$val, file_get_contents($path) - )); - } - else{ - file_put_contents($path, file_get_contents($path)."\r\n".$type.'='.$val); - } - } - } -} diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/OTPVerificationController.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/OTPVerificationController.php deleted file mode 100644 index fb673861..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/OTPVerificationController.php +++ /dev/null @@ -1,143 +0,0 @@ -email_verified_at == null) { - return view('otp_systems.frontend.user_verification'); - } - else { - flash('You have already verified your number')->warning(); - return redirect()->route('home'); - } - } - - - /** - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - - public function verify_phone(Request $request){ - $user = Auth::user(); - if ($user->verification_code == $request->verification_code) { - $user->email_verified_at = date('Y-m-d h:m:s'); - $user->save(); - - flash('Your phone number has been verified successfully')->success(); - return redirect()->route('home'); - } - else{ - flash('Invalid Code')->error(); - return back(); - } - } - - /** - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - - public function resend_verificcation_code(Request $request){ - $user = Auth::user(); - $user->verification_code = rand(100000,999999); - $user->save(); - SmsUtility::phone_number_verification($user); - - return back(); - } - - /** - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - - - public function reset_password_with_code(Request $request) - { - $phone = "+{$request['country_code']}{$request['phone']}"; - - if (($user = User::where('phone', $phone)->where('verification_code', $request->code)->first()) != null) { - if ($request->password == $request->password_confirmation) { - $user->password = Hash::make($request->password); - $user->email_verified_at = date('Y-m-d h:m:s'); - $user->save(); - event(new PasswordReset($user)); - auth()->login($user, true); - - if (auth()->user()->user_type == 'admin' || auth()->user()->user_type == 'staff') { - flash("Password has been reset successfully")->success(); - return redirect()->route('admin.dashboard'); - } - flash("Password has been reset successfully")->success(); - return redirect()->route('home'); - } else { - flash("Password and confirm password didn't match")->warning(); - return view('otp_systems.frontend.auth.passwords.reset_with_phone'); - } - } else { - flash("Verification code mismatch")->error(); - return view('otp_systems.frontend.auth.passwords.reset_with_phone'); - } - } - - - /** - * @param User $user - * @return void - */ - - public function send_code($user){ - SmsUtility::phone_number_verification($user); - } - - /** - * @param Order $order - * @return void - */ - public function send_order_code($order){ - $phone = json_decode($order->shipping_address)->phone; - if($phone != null){ - SmsUtility::order_placement($phone, $order); - } - } - - /** - * @param Order $order - * @return void - */ - public function send_delivery_status($order){ - $phone = json_decode($order->shipping_address)->phone; - if($phone != null){ - SmsUtility::delivery_status_change($phone, $order); - } - } - - /** - * @param Order $order - * @return void - */ - public function send_payment_status($order){ - $phone = json_decode($order->shipping_address)->phone; - if($phone != null){ - SmsUtility::payment_status_change($phone, $order); - } - } -} diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/SmsController.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/SmsController.php deleted file mode 100644 index 8238aa17..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/SmsController.php +++ /dev/null @@ -1,37 +0,0 @@ -middleware(['permission:send_bulk_sms'])->only('index'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index() - { - $users = User::all(); - return view('backend.otp_systems.sms.index',compact('users')); - } - - //send message to multiple users - public function send(Request $request) - { - foreach ($request->user_phones as $key => $phone) { - (new SendSmsService())->sendSMS($phone, env('APP_NAME'), $request->content, $request->template_id); - } - - flash(translate('SMS has been sent.'))->success(); - return redirect()->route('admin.dashboard'); - } -} diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/SmsTemplateController.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/SmsTemplateController.php deleted file mode 100644 index 241754f2..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/controllers/SmsTemplateController.php +++ /dev/null @@ -1,109 +0,0 @@ -middleware(['permission:sms_templates'])->only('index'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index() - { - $sms_templates = SmsTemplate::all(); - return view('backend.otp_systems.configurations.sms_templates', compact('sms_templates')); - } - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function create() - { - // - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function store(Request $request) - { - // - } - - /** - * Display the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function show($id) - { - // - } - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function edit($id) - { - // - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function update(Request $request, $id) - { - $sms_template = SmsTemplate::where('id', $id)->first(); - $sms_template->sms_body = str_replace("\r\n",'',$request->body); - $sms_template->template_id = $request->template_id; - - if ($request->status == 1) { - $sms_template->status = 1; - } - else{ - $sms_template->status = 0; - } - - if($sms_template->save()){ - flash(translate('SMS Template has been updated successfully'))->success(); - return back(); - } else { - flash(translate('Sorry! Something went wrong.'))->error(); - return back(); - } - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function destroy($id) - { - // - } -} diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/documentation/documentation.pdf b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/documentation/documentation.pdf deleted file mode 100644 index 755b0ac2..00000000 Binary files a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/documentation/documentation.pdf and /dev/null differ diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.1.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.1.sql deleted file mode 100644 index dd5f80a4..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.1.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `otp_configurations` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (NULL, 'ssl_wireless', '0', current_timestamp(), current_timestamp()); -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.2.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.2.sql deleted file mode 100644 index afd82421..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.2.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `otp_configurations` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (NULL, 'fast2sms', '0', current_timestamp(), current_timestamp()); -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.3.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.3.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.4.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.4.sql deleted file mode 100644 index 4156dc01..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.4.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `otp_configurations` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (NULL, 'mimo', '0', current_timestamp(), current_timestamp()); -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.5.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.5.sql deleted file mode 100644 index dfb2f9af..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.5.sql +++ /dev/null @@ -1,25 +0,0 @@ -CREATE TABLE `sms_templates` ( - `id` int(11) NOT NULL, - `identifier` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `sms_body` longtext COLLATE utf8_unicode_ci NOT NULL, - `template_id` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `status` tinyint(1) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - - -INSERT INTO `sms_templates` (`id`, `identifier`, `sms_body`, `template_id`, `status`, `created_at`, `updated_at`) VALUES -(1, 'phone_number_verification', '[[code]] is your verification code for [[site_name]].', NULL, 0, '2021-06-07 13:29:22', '2021-06-08 02:38:18'), -(2, 'password_reset', 'Your password reset code is [[code]].', NULL, 1, '2021-06-07 13:29:34', '2021-06-07 13:29:34'), -(3, 'order_placement', 'Your order has been placed and Order Code is [[order_code]]', NULL, 1, '2021-06-07 13:32:22', '2021-06-08 02:39:25'), -(4, 'delivery_status_change', 'Your delivery status has been updated to [[delivery_status]] for Order code : [[order_code]]', NULL, 1, '2021-06-07 13:33:14', '2021-06-08 02:39:28'), -(5, 'payment_status_change', 'Your payment status has been updated to [[payment_status]] for Order code : [[order_code]]', NULL, 1, '2021-06-07 13:35:23', '2021-06-08 02:39:31'), -(6, 'assign_delivery_boy', 'You are assigned to deliver an order. Order code : [[order_code]]', NULL, 1, '2021-06-07 13:38:10', '2021-06-08 02:39:34'); - -ALTER TABLE `sms_templates` - ADD PRIMARY KEY (`id`); - -ALTER TABLE `sms_templates` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.6.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.6.sql deleted file mode 100644 index 3586b47f..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.6.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `otp_configurations` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (NULL, 'mimsms', '0', current_timestamp(), current_timestamp()); -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.7.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.7.sql deleted file mode 100644 index 1e68d096..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.7.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `otp_configurations` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (NULL, 'msegat', '0', current_timestamp(), current_timestamp()); -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.8.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.8.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.8.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.9.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.9.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/1.9.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.0.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.0.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.0.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.1.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.1.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.2.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.2.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.2.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.3.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.3.sql deleted file mode 100644 index 3eb75d58..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/2.3.sql +++ /dev/null @@ -1,13 +0,0 @@ -INSERT INTO `otp_configurations` (`id`, `type`, `value`, `created_at`, `updated_at`) - SELECT NULL, 'sparrow', '0', current_timestamp(), current_timestamp() FROM DUAL - WHERE NOT EXISTS (SELECT * FROM `otp_configurations` WHERE `type`='sparrow' LIMIT 1); - -INSERT INTO `otp_configurations` (`id`, `type`, `value`, `created_at`, `updated_at`) - SELECT NULL, 'zender', '0', current_timestamp(), current_timestamp() FROM DUAL - WHERE NOT EXISTS (SELECT * FROM `otp_configurations` WHERE `type`='zender' LIMIT 1); - -DELETE FROM `otp_configurations` WHERE `type` = 'otp_for_order'; -DELETE FROM `otp_configurations` WHERE `type` = 'otp_for_delivery_status'; -DELETE FROM `otp_configurations` WHERE `type` = 'otp_for_paid_status'; - -COMMIT; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/update.sql b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/update.sql deleted file mode 100644 index 9c736dfa..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/sql/update.sql +++ /dev/null @@ -1,107 +0,0 @@ --- phpMyAdmin SQL Dump --- version 5.0.1 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Mar 23, 2020 at 07:35 AM --- Server version: 10.4.11-MariaDB --- PHP Version: 7.4.2 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*Column will be added on user table*/ -ALTER TABLE `users` CHANGE `verification_code` `verification_code` TEXT NULL DEFAULT NULL; - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `shop` --- - --- -------------------------------------------------------- - --- --- Table structure for table `otp_configurations` --- - -CREATE TABLE `otp_configurations` ( - `id` int(11) NOT NULL, - `type` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL, - `value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `otp_configurations` --- - -INSERT INTO `otp_configurations` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES -(1, 'nexmo', '1', '2020-03-22 09:19:07', '2020-03-22 09:19:07'), -(5, 'twillo', '0', '2020-03-22 09:54:03', '2020-03-22 03:54:20'), -(6, 'ssl_wireless', '0', '2020-03-22 09:54:03', '2020-03-22 03:54:20'), -(7, 'fast2sms', '0', '2020-03-22 09:54:03', '2020-03-22 03:54:20'), -(8, 'mimsms', '0', '2020-03-22 09:54:03', '2020-03-22 03:54:20'), -(9, 'mimo', '0', '2020-12-27 09:54:03', '2020-12-28 03:54:20'), -(10, 'msegat', '0', '2020-12-27 09:54:03', '2020-12-28 03:54:20'), -(11, 'sparrow', '0', '2020-12-27 09:54:03', '2020-12-28 03:54:20'), -(12, 'zender', '0', '2020-12-27 09:54:03', '2020-12-28 03:54:20'); - --- --- Indexes for dumped tables --- - --- --- Indexes for table `otp_configurations` --- -ALTER TABLE `otp_configurations` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `otp_configurations` --- -ALTER TABLE `otp_configurations` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; - -CREATE TABLE `sms_templates` ( - `id` int(11) NOT NULL, - `identifier` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `sms_body` longtext COLLATE utf8_unicode_ci NOT NULL, - `template_id` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `status` tinyint(1) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - - -INSERT INTO `sms_templates` (`id`, `identifier`, `sms_body`, `template_id`, `status`, `created_at`, `updated_at`) VALUES -(1, 'phone_number_verification', '[[code]] is your verification code for [[site_name]].', NULL, 0, '2021-06-07 13:29:22', '2021-06-08 02:38:18'), -(2, 'password_reset', 'Your password reset code is [[code]].', NULL, 1, '2021-06-07 13:29:34', '2021-06-07 13:29:34'), -(3, 'order_placement', 'Your order has been placed and Order Code is [[order_code]]', NULL, 1, '2021-06-07 13:32:22', '2021-06-08 02:39:25'), -(4, 'delivery_status_change', 'Your delivery status has been updated to [[delivery_status]] for Order code : [[order_code]]', NULL, 1, '2021-06-07 13:33:14', '2021-06-08 02:39:28'), -(5, 'payment_status_change', 'Your payment status has been updated to [[payment_status]] for Order code : [[order_code]]', NULL, 1, '2021-06-07 13:35:23', '2021-06-08 02:39:31'), -(6, 'assign_delivery_boy', 'You are assigned to deliver an order. Order code : [[order_code]]', NULL, 1, '2021-06-07 13:38:10', '2021-06-08 02:39:34'); - -ALTER TABLE `sms_templates` - ADD PRIMARY KEY (`id`); - -ALTER TABLE `sms_templates` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; - - -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/utility/MimoUtility.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/utility/MimoUtility.php deleted file mode 100644 index e070e23b..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/utility/MimoUtility.php +++ /dev/null @@ -1,91 +0,0 @@ - '52.30.114.86:8080/mimosms/v1/user/login', - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => '', - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 0, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => 'POST', - CURLOPT_POSTFIELDS =>'{ - "username": "'.env('MIMO_USERNAME').'", - "password": "'.env('MIMO_PASSWORD').'" - }', - CURLOPT_HTTPHEADER => array( - 'Content-Type: application/json' - ), - )); - - $response = curl_exec($curl); - - curl_close($curl); - return json_decode($response)->token; - - } - - public static function sendMessage($text, $to, $token) - { - $curl = curl_init(); - - $fields = array( - "sender" => env("MIMO_SENDER_ID"), - "text" => $text, - "recipients" => $to - ); - // dd($to); - curl_setopt_array($curl, array( - CURLOPT_URL => '52.30.114.86:8080/mimosms/v1/message/send?token='.$token, - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => '', - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 0, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => 'POST', - CURLOPT_POSTFIELDS => json_encode($fields), - CURLOPT_HTTPHEADER => array( - 'Content-Type: application/json' - ), - )); - - $response = curl_exec($curl); - // dd($response); - - curl_close($curl); - - return 1; - } - - public static function logout($token) - { - // dd('Hello world'); - $curl = curl_init(); - - curl_setopt_array($curl, array( - CURLOPT_URL => '52.30.114.86:8080/mimosms/v1/user/logout?token='.$token, - CURLOPT_RETURNTRANSFER => true, - CURLOPT_ENCODING => '', - CURLOPT_MAXREDIRS => 10, - CURLOPT_TIMEOUT => 0, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, - CURLOPT_CUSTOMREQUEST => 'GET', - )); - - $response = curl_exec($curl); - - curl_close($curl); - // dd($response, $token); - - } -} diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/utility/SmsUtility.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/utility/SmsUtility.php deleted file mode 100644 index 9e44ad00..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/utility/SmsUtility.php +++ /dev/null @@ -1,78 +0,0 @@ -first(); - $sms_body = $sms_template->sms_body; - $sms_body = str_replace('[[code]]', $user->verification_code, $sms_body); - $sms_body = str_replace('[[site_name]]', env('APP_NAME'), $sms_body); - $template_id = $sms_template->template_id; - - (new SendSmsService())->sendSMS($user->phone, env('APP_NAME'), $sms_body, $template_id); - } - - public static function password_reset($user = '') - { - $sms_template = SmsTemplate::where('identifier', 'password_reset')->first(); - $sms_body = $sms_template->sms_body; - $sms_body = str_replace('[[code]]', $user->verification_code, $sms_body); - $template_id = $sms_template->template_id; - - (new SendSmsService())->sendSMS($user->phone, env('APP_NAME'), $sms_body, $template_id); - } - - public static function order_placement($phone = '', $order = '') - { - $sms_template = SmsTemplate::where('identifier', 'order_placement')->first(); - $sms_body = $sms_template->sms_body; - $sms_body = str_replace('[[order_code]]', $order->code, $sms_body); - $template_id = $sms_template->template_id; - - (new SendSmsService())->sendSMS($phone, env('APP_NAME'), $sms_body, $template_id); - } - - public static function delivery_status_change($phone = '', $order) - { - $sms_template = SmsTemplate::where('identifier', 'delivery_status_change')->first(); - $sms_body = $sms_template->sms_body; - $delivery_status = translate(ucfirst(str_replace('_', ' ', $order->delivery_status))); - - $sms_body = str_replace('[[delivery_status]]', $delivery_status, $sms_body); - $sms_body = str_replace('[[order_code]]', $order->code, $sms_body); - $template_id = $sms_template->template_id; - - (new SendSmsService())->sendSMS($phone, env('APP_NAME'), $sms_body, $template_id); - - } - - public static function payment_status_change($phone = '', $order = '') - { - $sms_template = SmsTemplate::where('identifier', 'payment_status_change')->first(); - $sms_body = $sms_template->sms_body; - $sms_body = str_replace('[[payment_status]]', translate(ucfirst($order->payment_status)), $sms_body); - $sms_body = str_replace('[[order_code]]', $order->code, $sms_body); - $template_id = $sms_template->template_id; - - (new SendSmsService())->sendSMS($phone, env('APP_NAME'), $sms_body, $template_id); - } - - public static function assign_delivery_boy($phone = '', $code = '') - { - $sms_template = SmsTemplate::where('identifier', 'assign_delivery_boy')->first(); - $sms_body = $sms_template->sms_body; - $sms_body = str_replace('[[order_code]]', $code, $sms_body); - $template_id = $sms_template->template_id; - - (new SendSmsService())->sendSMS($phone, env('APP_NAME'), $sms_body, $template_id); - - } -} diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/activation.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/activation.blade.php deleted file mode 100644 index e1e93da8..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/activation.blade.php +++ /dev/null @@ -1,45 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -

{{translate('Activate OTP')}}

-
- @foreach ($otp_configurations as $otp_configuration) -
-
-
-

- {{translate(Str::replace('_', ' ',Str::title($otp_configuration->type)).' OTP')}} -

-
-
- -
-
-
- @endforeach -
-@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/index.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/index.blade.php deleted file mode 100644 index ae803f54..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/index.blade.php +++ /dev/null @@ -1,28 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
- - @foreach ($otp_configurations as $otp_configuration) - @include('backend.otp_systems.configurations.partials.'.$otp_configuration->type) - @endforeach - -
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/fast2sms.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/fast2sms.blade.php deleted file mode 100644 index 55925550..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/fast2sms.blade.php +++ /dev/null @@ -1,76 +0,0 @@ -
-
-
-
{{ translate('Fast2SMS Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/mimo.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/mimo.blade.php deleted file mode 100644 index 7c83cb9e..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/mimo.blade.php +++ /dev/null @@ -1,46 +0,0 @@ -
-
-
-
{{ translate('MIMO Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/mimsms.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/mimsms.blade.php deleted file mode 100644 index 6e6e865e..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/mimsms.blade.php +++ /dev/null @@ -1,46 +0,0 @@ -
-
-
-
{{ translate('MIMSMS Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/msegat.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/msegat.blade.php deleted file mode 100644 index 8cd66901..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/msegat.blade.php +++ /dev/null @@ -1,46 +0,0 @@ -
-
-
-
{{ translate('MSEGAT Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/nexmo.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/nexmo.blade.php deleted file mode 100644 index a7c466ae..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/nexmo.blade.php +++ /dev/null @@ -1,50 +0,0 @@ -
-
-
-
{{ translate('Nexmo Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- - - {{translate('Please check this URL for')}} - Sender Identity - {{translate('before setting the sender ID')}} - -
-
-
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/sparrow.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/sparrow.blade.php deleted file mode 100644 index 2dade8bb..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/sparrow.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -
-
-
-
{{ translate('SPARROW Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/ssl_wireless.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/ssl_wireless.blade.php deleted file mode 100644 index ea9d7901..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/ssl_wireless.blade.php +++ /dev/null @@ -1,46 +0,0 @@ -
-
-
-
{{ translate('SSL Wireless Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/twillo.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/twillo.blade.php deleted file mode 100644 index 4c1901f7..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/twillo.blade.php +++ /dev/null @@ -1,60 +0,0 @@ -
-
-
-
{{ translate('Twilio Credential') }}
-
-
-
- - @csrf -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
-
-
- -
- -
-
- -
- -
- -
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/zender.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/zender.blade.php deleted file mode 100644 index 1f7fa7b4..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/partials/zender.blade.php +++ /dev/null @@ -1,106 +0,0 @@ -
-
-
-
Zender Credential
-
-
-
- - @csrf -
- -
- -
-
- - The site url of your Zender. Do not add ending slash. -
-
-
- -
- -
-
- - Your Zender API key. Please make sure that it is correct and required permissions are - granted: sms_send, wa_send -
-
-
- -
- -
-
- - Select the sending service. Please make sure that the API key has the following - permissions: sms_send, wa_send -
-
-
- -
- -
-
- - For WhatsApp service only. WhatsApp account ID you want to use for sending. -
-
-
- -
- -
-
- - For SMS service only. Linked device unique ID. Please only enter this field if you - are sending using one of your devices. -
-
-
- -
- -
-
- - For SMS service only. Partner device unique ID or gateway ID. Please only enter this - field if you are sending using a partner device or third party gateway. -
-
-
- -
- -
-
- - For SMS service only. Select the sim slot you want to use for sending the messages. - Please only enter this field if you are sending using your device. This is ignored for - partner devices and third party gateways. -
-
-
- -
-
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/sms_templates.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/sms_templates.blade.php deleted file mode 100644 index 935fb12e..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/configurations/sms_templates.blade.php +++ /dev/null @@ -1,73 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{translate('SMS Templates')}}
-
-
-
-
- -
-
-
- @foreach ($sms_templates as $key => $sms_template) -
-
- - @csrf - @if($sms_template->identifier != 'phone_number_verification' && $sms_template->identifier != 'password_reset') -
-
- -
-
- -
-
- @endif - -
- -
- - {{ ('**N.B : Do Not Change The Variables Like [[ ____ ]].**') }} - @error('body') - {{ $message }} - @enderror -
-
-
- -
- - {{ ('**N.B : Template ID is Required Only for Fast2SMS DLT Manual**') }} -
-
-
- -
-
-
- @endforeach -
-
-
-
-
-
-
-@endsection diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/frontend/auth/passwords/reset_with_phone.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/frontend/auth/passwords/reset_with_phone.blade.php deleted file mode 100644 index d49d9c6f..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/frontend/auth/passwords/reset_with_phone.blade.php +++ /dev/null @@ -1,99 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
-
-
-

{{ translate('Reset Password') }}

-

{{translate('Enter your phone, code and new password and confirm password.')}}

-
- @csrf - -
- - - - -
- - - -
- - - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
- -
- - - @if ($errors->has('password')) - - {{ $errors->first('password') }} - - @endif -
- -
- -
- -
- -
-
-
-
-
-
-
-
-@endsection -@section('script') - -@endsection diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/frontend/user_verification.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/frontend/user_verification.blade.php deleted file mode 100644 index 7382283a..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/frontend/user_verification.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
-
-
-

- {{translate('Phone Verification')}} -

-

Verification code has been sent. Please wait a few minutes.

- {{translate('Resend Code')}} -
-
-
-
-
- @csrf -
-
- -
-
- -
-
-
-
-
-
-
-
-
-@endsection diff --git a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/sms/index.blade.php b/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/sms/index.blade.php deleted file mode 100644 index c8e43ecd..00000000 --- a/desarrollo/temp/PLJ7vEAC2W/addons/otp_system/views/otp_systems/sms/index.blade.php +++ /dev/null @@ -1,48 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-

{{translate('Send Bulk SMS')}}

-
-
- @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{ ('**N.B : Template ID is Required Only for Fast2SMS DLT Manual **') }} -
-
-
- -
-
-
-
- -@endsection diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/assets/offline_banner.jpg b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/assets/offline_banner.jpg deleted file mode 100644 index f071517f..00000000 Binary files a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/assets/offline_banner.jpg and /dev/null differ diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/config.json b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/config.json deleted file mode 100644 index 747e4af6..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/config.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name" : "Offline Payment", - - "unique_identifier" : "offline_payment", - - "version" : "1.5", - - "minimum_item_version" : "7.0.0", - - "addon_banner" : "offline_banner.jpg", - - "directory" : - [ - { - "name" : [ - "resources/views/manual_payment_methods", - "resources/views/manual_payment_methods/frontend", - "public/uploads/customer_package_payment_reciept", - "public/uploads/seller_package_payment_reciept" - ] - } - ], - - "sql_file" : "", - - "files" : - [ - { - "root_directory" : "addons/offline_payment/views/manual_payment_methods/frontend/offline_customer_package_purchase_modal.blade.php", - "update_directory" : "resources/views/manual_payment_methods/frontend/offline_customer_package_purchase_modal.blade.php" - }, - { - "root_directory" : "addons/offline_payment/views/manual_payment_methods/frontend/offline_seller_package_purchase_modal.blade.php", - "update_directory" : "resources/views/manual_payment_methods/frontend/offline_seller_package_purchase_modal.blade.php" - }, - { - "root_directory" : "addons/offline_payment/views/manual_payment_methods/create.blade.php", - "update_directory" : "resources/views/manual_payment_methods/create.blade.php" - }, - { - "root_directory" : "addons/offline_payment/views/manual_payment_methods/customer_package_payment_request.blade.php", - "update_directory" : "resources/views/manual_payment_methods/customer_package_payment_request.blade.php" - }, - { - "root_directory" : "addons/offline_payment/views/manual_payment_methods/edit.blade.php", - "update_directory" : "resources/views/manual_payment_methods/edit.blade.php" - }, - { - "root_directory" : "addons/offline_payment/views/manual_payment_methods/index.blade.php", - "update_directory" : "resources/views/manual_payment_methods/index.blade.php" - }, - { - "root_directory" : "addons/offline_payment/views/manual_payment_methods/seller_package_payment_request.blade.php", - "update_directory" : "resources/views/manual_payment_methods/seller_package_payment_request.blade.php" - }, - { - "root_directory" : "addons/offline_payment/views/manual_payment_methods/wallet_request.blade.php", - "update_directory" : "resources/views/manual_payment_methods/wallet_request.blade.php" - }, - { - "root_directory" : "addons/offline_payment/controllers/ManualPaymentMethodController.php", - "update_directory" : "app/Http/Controllers/ManualPaymentMethodController.php" - }, - { - "root_directory" : "addons/offline_payment/assets/offline_banner.jpg", - "update_directory" : "public/offline_banner.jpg" - } - ] -} diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/controllers/ManualPaymentMethodController.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/controllers/ManualPaymentMethodController.php deleted file mode 100644 index 6d3f1b22..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/controllers/ManualPaymentMethodController.php +++ /dev/null @@ -1,211 +0,0 @@ -middleware(['permission:view_all_manual_payment_methods'])->only('index'); - $this->middleware(['permission:add_manual_payment_method'])->only('create'); - $this->middleware(['permission:edit_manual_payment_method'])->only('edit'); - $this->middleware(['permission:delete_manual_payment_method'])->only('destroy'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index() - { - $manual_payment_methods = ManualPaymentMethod::all(); - return view('manual_payment_methods.index', compact('manual_payment_methods')); - } - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function create() - { - return view('manual_payment_methods.create'); - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function store(Request $request) - { - $manual_payment_method = new ManualPaymentMethod; - $manual_payment_method->type = $request->type; - $manual_payment_method->photo = $request->photo; - $manual_payment_method->heading = $request->heading; - $manual_payment_method->description = $request->description; - - if($request->type == 'bank_payment') - { - $banks_informations = array(); - for ($i=0; $i < count($request->bank_name); $i++) { - $item = array(); - $item['bank_name'] = $request->bank_name[$i]; - $item['account_name'] = $request->account_name[$i]; - $item['account_number'] = $request->account_number[$i]; - $item['routing_number'] = $request->routing_number[$i]; - array_push($banks_informations, $item); - } - - $manual_payment_method->bank_info = json_encode($banks_informations); - } - - $manual_payment_method->save(); - flash(translate('Method has been inserted successfully'))->success(); - return redirect()->route('manual_payment_methods.index'); - } - - /** - * Display the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function show($id) - { - // - } - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function edit($id) - { - $manual_payment_method = ManualPaymentMethod::findOrFail(decrypt($id)); - return view('manual_payment_methods.edit', compact('manual_payment_method')); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function update(Request $request, $id) - { - $manual_payment_method = ManualPaymentMethod::findOrFail($id); - $manual_payment_method->type = $request->type; - $manual_payment_method->heading = $request->heading; - $manual_payment_method->description = $request->description; - - if($request->type == 'bank_payment') - { - $banks_informations = array(); - for ($i=0; $i < count($request->bank_name); $i++) { - $item = array(); - $item['bank_name'] = $request->bank_name[$i]; - $item['account_name'] = $request->account_name[$i]; - $item['account_number'] = $request->account_number[$i]; - $item['routing_number'] = $request->routing_number[$i]; - array_push($banks_informations, $item); - } - - $manual_payment_method->bank_info = json_encode($banks_informations); - } - $manual_payment_method->photo = $request->photo; - $manual_payment_method->save(); - flash( translate('Method has been updated successfully'))->success(); - return redirect()->route('manual_payment_methods.index'); - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function destroy($id) - { - if(ManualPaymentMethod::destroy($id)){ - flash(translate('Method has been deleted successfully'))->success(); - } - else{ - flash(translate('Something went wrong'))->error(); - } - return redirect()->route('manual_payment_methods.index'); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function show_payment_modal(Request $request) - { - $order = Order::find($request->order_id); - if($order != null){ - return view('frontend.user.payment_modal', compact('order')); - } - } - - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function submit_offline_payment(Request $request) - { - $order = Order::findOrFail($request->order_id); - - if($request->name != null && $request->amount != null && $request->trx_id != null){ - $data['name'] = $request->name; - $data['amount'] = $request->amount; - $data['trx_id'] = $request->trx_id; - $data['photo'] = $request->photo; - } - else { - flash(translate('Please fill all the fields'))->warning(); - return back(); - } - - $order->manual_payment_data = json_encode($data); - $order->payment_type = $request->payment_option; - $order->payment_status = 'Submitted'; - $order->manual_payment = 1; - - $order->save(); - - flash(translate('Your payment data has been submitted successfully'))->success(); - return redirect()->route('home'); - } - - public function offline_recharge_modal(Request $request) - { - return view('frontend.user.wallet.offline_recharge_modal'); - } - - public function offline_customer_package_purchase_modal(Request $request) - { - $package_id = $request->package_id; - return view('manual_payment_methods.frontend.offline_customer_package_purchase_modal', compact('package_id')); - } - - public function offline_seller_package_purchase_modal(Request $request) - { - $package_id = $request->package_id; - return view('manual_payment_methods.frontend.offline_seller_package_purchase_modal', compact('package_id')); - } -} diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/documentation/documentation.pdf b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/documentation/documentation.pdf deleted file mode 100644 index 637b7f21..00000000 Binary files a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/documentation/documentation.pdf and /dev/null differ diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.1.sql b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.1.sql deleted file mode 100644 index 6e8d5254..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.1.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE `wallets` ADD `approval` INT(1) NOT NULL DEFAULT '0' AFTER `payment_details`, ADD `offline_payment` INT(1) NOT NULL DEFAULT '0' AFTER `approval`; -ALTER TABLE `wallets` ADD `reciept` VARCHAR(150) NULL DEFAULT NULL AFTER `offline_payment`; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.2.sql b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.2.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.2.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.3.sql b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.3.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.4.sql b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.4.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.4.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.5.sql b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.5.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/1.5.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/update.sql b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/update.sql deleted file mode 100644 index eba5740d..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/sql/update.sql +++ /dev/null @@ -1,74 +0,0 @@ --- phpMyAdmin SQL Dump --- version 4.9.0.1 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Apr 07, 2020 at 03:02 PM --- Server version: 10.3.16-MariaDB --- PHP Version: 7.3.7 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `shop_new` --- - --- -------------------------------------------------------- - --- --- Table structure for table `manual_payment_methods` --- - - -ALTER TABLE `orders` ADD `manual_payment` INT(1) NOT NULL DEFAULT '0' AFTER `payment_type`, ADD `manual_payment_data` TEXT NULL DEFAULT NULL AFTER `manual_payment`; - -CREATE TABLE `manual_payment_methods` ( - `id` int(11) NOT NULL, - `type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `heading` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `description` text COLLATE utf8_unicode_ci DEFAULT NULL, - `bank_info` text COLLATE utf8_unicode_ci DEFAULT NULL, - `photo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `manual_payment_methods` --- -ALTER TABLE `manual_payment_methods` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `manual_payment_methods` --- -ALTER TABLE `manual_payment_methods` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - - -ALTER TABLE `wallets` ADD `approval` INT(1) NOT NULL DEFAULT '0' AFTER `payment_details`, ADD `offline_payment` INT(1) NOT NULL DEFAULT '0' AFTER `approval`; -ALTER TABLE `wallets` ADD `reciept` VARCHAR(150) NULL DEFAULT NULL AFTER `offline_payment`; - -COMMIT; diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/create.blade.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/create.blade.php deleted file mode 100644 index 8fbe2699..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/create.blade.php +++ /dev/null @@ -1,125 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Manual Payment Information')}}
-
- -
- @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
-
- -
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/customer_package_payment_request.blade.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/customer_package_payment_request.blade.php deleted file mode 100644 index 6cc76b60..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/customer_package_payment_request.blade.php +++ /dev/null @@ -1,85 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-

{{translate('Offline Customer Package Payment Requests')}}

-
-
- - - - - - - - - - - - - - - @foreach($package_payment_requests as $key => $package_payment_request) - @if($package_payment_request->user != null && $package_payment_request->customer_package != null) - - - - - - - - - - - @endif - @endforeach - -
#{{translate('Name')}}{{translate('Package')}}{{translate('Method')}}{{translate('TXN ID')}}{{translate('Reciept')}}{{translate('Approval')}}{{translate('Date')}}
{{ ($key+1) }}{{ $package_payment_request->user->name }}{{ $package_payment_request->customer_package->getTranslation('name') }}{{ $package_payment_request->payment_method }}{{ $package_payment_request->payment_details }} - @if ($package_payment_request->reciept != null) - {{translate('Open Reciept')}} - @endif - - - {{ $package_payment_request->created_at }}
-
- {{ $package_payment_requests->links() }} -
-
-
- -@endsection -@section('script') - -@endsection diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/edit.blade.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/edit.blade.php deleted file mode 100644 index 4a32a7f7..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/edit.blade.php +++ /dev/null @@ -1,137 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('Manual Payment Information')}}

-
- -
- - @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
- @if($manual_payment_method->bank_info != null) - @foreach (json_decode($manual_payment_method->bank_info) as $key => $bank_info) -
-
- -
-
-
-
-
-
-
-
-
- @if ($key == 0) - - @else -
- -
- @endif -
-
-
- @endforeach - @endif -
-
-
-
- -
-
- - - -
-
-
- -
-
-
-
-
-
-
-
-
- -
-
-
-
- -
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/frontend/offline_customer_package_purchase_modal.blade.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/frontend/offline_customer_package_purchase_modal.blade.php deleted file mode 100644 index 714580b7..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/frontend/offline_customer_package_purchase_modal.blade.php +++ /dev/null @@ -1,81 +0,0 @@ -
- @csrf - - -
- -@foreach(\App\Models\ManualPaymentMethod::all() as $method) -
-
@php echo $method->description @endphp
- @if ($method->bank_info != null) -
    - @foreach (json_decode($method->bank_info) as $key => $info) -
  • {{ translate('Bank Name') }} - {{ $info->bank_name }}, {{ translate('Account Name') }} - {{ $info->account_name }}, {{ translate('Account Number') }} - {{ $info->account_number}}, {{ translate('Routing Number') }} - {{ $info->routing_number }}
  • - @endforeach -
- @endif -
-@endforeach - - diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/frontend/offline_seller_package_purchase_modal.blade.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/frontend/offline_seller_package_purchase_modal.blade.php deleted file mode 100644 index 269012d7..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/frontend/offline_seller_package_purchase_modal.blade.php +++ /dev/null @@ -1,77 +0,0 @@ -
- @csrf - - -
- -@foreach(\App\Models\ManualPaymentMethod::all() as $method) -
-
@php echo $method->description @endphp
- @if ($method->bank_info != null) -
    - @foreach (json_decode($method->bank_info) as $key => $info) -
  • {{ translate('Bank Name') }} - {{ $info->bank_name }}, {{ translate('Account Name') }} - {{ $info->account_name }}, {{ translate('Account Number') }} - {{ $info->account_number}}, {{ translate('Routing Number') }} - {{ $info->routing_number }}
  • - @endforeach -
- @endif -
-@endforeach - - diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/index.blade.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/index.blade.php deleted file mode 100644 index 25a60362..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/index.blade.php +++ /dev/null @@ -1,58 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -@can('add_manual_payment_method') - -@endcan - -
-
-
{{translate('Manual Payment Method')}}
-
-
- - - - - - - - - - - @foreach($manual_payment_methods as $key => $manual_payment_method) - - - - - - - @endforeach - -
#{{translate('Heading')}}{{translate('Logo')}}{{translate('Options')}}
{{ ($key+1) }}{{ $manual_payment_method->heading }}Logo - @can('edit_manual_payment_method') - - - - @endcan - @can('delete_manual_payment_method') - - - - @endcan -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/seller_package_payment_request.blade.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/seller_package_payment_request.blade.php deleted file mode 100644 index c5915f6e..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/seller_package_payment_request.blade.php +++ /dev/null @@ -1,85 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{translate('Offline Seller Package Payment Requests')}}
-
-
- - - - - - - - - - - - - - - @foreach($package_payment_requests as $key => $package_payment_request) - @if ($package_payment_request->user != null) - - - - - - - - - - - @endif - @endforeach - -
#{{translate('Name')}}{{translate('Package')}}{{translate('Method')}}{{translate('TXN ID')}}{{translate('Reciept')}}{{translate('Approval')}}{{translate('Date')}}
{{ ($key+1) }}{{ $package_payment_request->user->name}}{{ $package_payment_request->seller_package->name ?? translate('Package Unavailable') }}{{ $package_payment_request->payment_method }}{{ $package_payment_request->payment_details }} - @if ($package_payment_request->reciept != null) - {{translate('Open Reciept')}} - @endif - - - {{ $package_payment_request->created_at }}
-
- {{ $package_payment_requests->links() }} -
-
-
- -@endsection -@section('script') - -@endsection diff --git a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/wallet_request.blade.php b/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/wallet_request.blade.php deleted file mode 100644 index 7b7617b6..00000000 --- a/desarrollo/temp/QEodxOTfc6/addons/offline_payment/views/manual_payment_methods/wallet_request.blade.php +++ /dev/null @@ -1,80 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{translate('Offline Wallet Recharge Requests')}}
-
-
- - - - - - - - - - - - - - - @foreach($wallets as $key => $wallet) - @if ($wallet->user != null) - - - - - - - - - - - @endif - @endforeach - -
#{{translate('Name')}}{{translate('Amount')}}{{translate('Method')}}{{translate('TXN ID')}}{{translate('Photo')}}{{translate('Approval')}}{{translate('Date')}}
{{ ($key+1) }}{{ $wallet->user->name }}{{ $wallet->amount }}{{ $wallet->payment_method }}{{ $wallet->payment_details }} - @if ($wallet->reciept != null) - {{translate('Open Reciept')}} - @endif - - - {{ $wallet->created_at }}
-
- {{ $wallets->links() }} -
-
-
- -@endsection -@section('script') - -@endsection diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/Utility/PosUtility.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/Utility/PosUtility.php deleted file mode 100644 index db38c35f..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/Utility/PosUtility.php +++ /dev/null @@ -1,73 +0,0 @@ -join('products', 'product_stocks.product_id', '=', 'products.id'); - - if (auth()->user()->user_type == 'seller') { - $product_query->where('products.user_id', auth()->user()->id); - } else { - $product_query->where('products.added_by', 'admin'); - } - $products = $product_query->where('products.auction_product', 0) - ->where('products.wholesale_product', 0) - ->where('products.published', 1) - ->where('products.approved', 1) - ->select('products.*', 'product_stocks.id as stock_id', 'product_stocks.variant', 'product_stocks.price as stock_price', 'product_stocks.qty as stock_qty', 'product_stocks.image as stock_image') - ->orderBy('products.created_at', 'desc'); - - if ($request_data['category'] != null) { - $arr = explode('-', $request_data['category']); - if ($arr[0] == 'category') { - $category_ids = CategoryUtility::children_ids($arr[1]); - $category_ids[] = $arr[1]; - $products = $products->whereIn('products.category_id', $category_ids); - } - } - - if ($request_data['brand'] != null) { - $products = $products->where('products.brand_id', $request_data['brand']); - } - - if ($request_data['keyword'] != null) { - $products = $products->where('products.name', 'like', '%' . $request_data['keyword'] . '%')->orWhere('products.barcode', $request_data['keyword']); - } - - return $products->paginate(16); - } - - public static function get_shipping_address($request) : array { - if ($request->address_id != null) { - $address = Address::findOrFail($request->address_id); - $data['name'] = $address->user->name; - $data['email'] = $address->user->email; - $data['address'] = $address->address; - $data['country'] = $address->country->name; - $data['state'] = $address->state->name; - $data['city'] = $address->city->name; - $data['postal_code'] = $address->postal_code; - $data['phone'] = $address->phone; - } else { - $data['name'] = $request->name; - $data['email'] = $request->email; - $data['address'] = $request->address; - $data['country'] = Country::find($request->country_id)->name; - $data['state'] = State::find($request->state_id)->name; - $data['city'] = City::find($request->city_id)->name; - $data['postal_code'] = $request->postal_code; - $data['phone'] = $request->phone; - } - - return $data; - } -} diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/assets/pos_banner.png b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/assets/pos_banner.png deleted file mode 100644 index f363d7b1..00000000 Binary files a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/assets/pos_banner.png and /dev/null differ diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/config.json b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/config.json deleted file mode 100644 index aad97d67..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/config.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "name" : "Point of Sale", - - "unique_identifier" : "pos_system", - - "version" : "2.1", - - "minimum_item_version" : "7.5.0", - - "addon_banner" : "pos_banner.png", - - "directory" : - [ - { - "name" : [ - "resources/views/backend/pos", - "resources/views/seller/pos" - ] - } - ], - - "sql_file" : "", - - "files" : - [ - { - "root_directory" : "addons/pos_system/views/backend/pos/cart.blade.php", - "update_directory" : "resources/views/backend/pos/cart.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/backend/pos/guest_shipping_address.blade.php", - "update_directory" : "resources/views/backend/pos/guest_shipping_address.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/backend/pos/index.blade.php", - "update_directory" : "resources/views/backend/pos/index.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/backend/pos/pos_activation.blade.php", - "update_directory" : "resources/views/backend/pos/pos_activation.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/backend/pos/shipping_address.blade.php", - "update_directory" : "resources/views/backend/pos/shipping_address.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/backend/pos/variants.blade.php", - "update_directory" : "resources/views/backend/pos/variants.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/backend/pos/order_summary.blade.php", - "update_directory" : "resources/views/backend/pos/order_summary.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/backend/pos/thermal_invoice.blade.php", - "update_directory" : "resources/views/backend/pos/thermal_invoice.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/seller/pos/guest_shipping_address.blade.php", - "update_directory" : "resources/views/seller/pos/guest_shipping_address.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/seller/pos/index.blade.php", - "update_directory" : "resources/views/seller/pos/index.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/seller/pos/pos_activation.blade.php", - "update_directory" : "resources/views/seller/pos/pos_activation.blade.php" - }, - { - "root_directory" : "addons/pos_system/views/seller/pos/shipping_address.blade.php", - "update_directory" : "resources/views/seller/pos/shipping_address.blade.php" - }, - { - "root_directory" : "addons/pos_system/controllers/PosController.php", - "update_directory" : "app/Http/Controllers/PosController.php" - }, - { - "root_directory" : "addons/pos_system/controllers/Seller/PosController.php", - "update_directory" : "app/Http/Controllers/Seller/PosController.php" - }, - { - "root_directory" : "addons/pos_system/Utility/PosUtility.php", - "update_directory" : "app/Utility/PosUtility.php" - }, - { - "root_directory" : "addons/pos_system/assets/pos_banner.png", - "update_directory" : "public/pos_banner.png" - } - ] -} diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/controllers/PosController.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/controllers/PosController.php deleted file mode 100644 index d01fa782..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/controllers/PosController.php +++ /dev/null @@ -1,397 +0,0 @@ -middleware(['permission:pos_manager'])->only('admin_index'); - $this->middleware(['permission:pos_configuration'])->only('pos_activation'); - } - - public function index() - { - $customers = User::where('user_type', 'customer')->where('email_verified_at', '!=', null)->orderBy('created_at', 'desc')->get(); - return view('backend.pos.index', compact('customers')); - } - - public function search(Request $request) - { - $products = PosUtility::product_search($request->only('category', 'brand', 'keyword')); - - $stocks = new PosProductCollection($products); - $stocks->appends(['keyword' => $request->keyword, 'category' => $request->category, 'brand' => $request->brand]); - return $stocks; - } - - public function addToCart(Request $request) - { - $stock = ProductStock::find($request->stock_id); - $product = $stock->product; - - $data = array(); - $data['stock_id'] = $request->stock_id; - $data['id'] = $product->id; - $data['variant'] = $stock->variant; - $data['quantity'] = $product->min_qty; - - if ($stock->qty < $product->min_qty && $product->digital == 0) { - return array('success' => 0, 'message' => translate("This product doesn't have enough stock for minimum purchase quantity ") . $product->min_qty, 'view' => view('backend.pos.cart')->render()); - } - - $tax = 0; - $price = $stock->price; - - // discount calculation - $discount_applicable = false; - if ($product->discount_start_date == null) { - $discount_applicable = true; - } elseif ( - strtotime(date('d-m-Y H:i:s')) >= $product->discount_start_date && - strtotime(date('d-m-Y H:i:s')) <= $product->discount_end_date - ) { - $discount_applicable = true; - } - if ($discount_applicable) { - if ($product->discount_type == 'percent') { - $price -= ($price * $product->discount) / 100; - } elseif ($product->discount_type == 'amount') { - $price -= $product->discount; - } - } - - //tax calculation - foreach ($product->taxes as $product_tax) { - if ($product_tax->tax_type == 'percent') { - $tax += ($price * $product_tax->tax) / 100; - } elseif ($product_tax->tax_type == 'amount') { - $tax += $product_tax->tax; - } - } - - $data['price'] = $price; - $data['tax'] = $tax; - - if ($request->session()->has('pos.cart')) { - $foundInCart = false; - $cart = collect(); - - foreach ($request->session()->get('pos.cart') as $key => $cartItem) { - - if ($cartItem['id'] == $product->id && $cartItem['stock_id'] == $stock->id) { - $foundInCart = true; - - if ($product->digital == 0) { - $loop_product = Product::find($cartItem['id']); - $product_stock = $loop_product->stocks->where('variant', $cartItem['variant'])->first(); - - if ($product->digital == 1 || $product_stock->qty >= ($cartItem['quantity'] + 1)) { - $cartItem['quantity'] += 1; - } else { - return array('success' => 0, 'message' => translate("This product doesn't have more stock."), 'view' => view('backend.pos.cart')->render()); - } - } else { - return array('success' => 0, 'message' => translate("This product is alreday in the cart"), 'view' => view('backend.pos.cart')->render()); - } - } - $cart->push($cartItem); - } - - if (!$foundInCart) { - $cart->push($data); - } - $request->session()->put('pos.cart', $cart); - } else { - $cart = collect([$data]); - $request->session()->put('pos.cart', $cart); - } - - $request->session()->put('pos.cart', $cart); - - return array('success' => 1, 'message' => '', 'view' => view('backend.pos.cart')->render()); - } - - //updated the quantity for a cart item - public function updateQuantity(Request $request) - { - $cart = $request->session()->get('pos.cart', collect([])); - $cart = $cart->map(function ($object, $key) use ($request) { - if ($key == $request->key) { - $product = Product::find($object['id']); - $product_stock = $product->stocks->where('id', $object['stock_id'])->first(); - - if ($product_stock->qty >= $request->quantity) { - $object['quantity'] = $request->quantity; - } else { - return array('success' => 0, 'message' => translate("This product doesn't have more stock."), 'view' => view('backend.pos.cart')->render()); - } - } - return $object; - }); - $request->session()->put('pos.cart', $cart); - - return array('success' => 1, 'message' => '', 'view' => view('backend.pos.cart')->render()); - } - - //removes from Cart - public function removeFromCart(Request $request) - { - if (Session::has('pos.cart')) { - $cart = Session::get('pos.cart', collect([])); - $cart->forget($request->key); - Session::put('pos.cart', $cart); - - $request->session()->put('pos.cart', $cart); - } - - return view('backend.pos.cart'); - } - - //Shipping Address for admin - public function getShippingAddress(Request $request) - { - $user_id = $request->id; - if ($user_id == '') { - return view('backend.pos.guest_shipping_address'); - } else { - return view('backend.pos.shipping_address', compact('user_id')); - } - } - - public function set_shipping_address(Request $request) - { - $data = PosUtility::get_shipping_address($request); - - $shipping_info = $data; - $request->session()->put('pos.shipping_info', $shipping_info); - } - - //set Discount - public function setDiscount(Request $request) - { - if ($request->discount >= 0) { - Session::put('pos.discount', $request->discount); - } - return view('backend.pos.cart'); - } - - //set Shipping Cost - public function setShipping(Request $request) - { - if ($request->shipping != null) { - Session::put('pos.shipping', $request->shipping); - } - return view('backend.pos.cart'); - } - - //order summary - public function get_order_summary(Request $request) - { - return view('backend.pos.order_summary'); - } - - //order place - public function order_store(Request $request) - { - if (Session::get('pos.shipping_info') == null || Session::get('pos.shipping_info')['name'] == null || Session::get('pos.shipping_info')['phone'] == null || Session::get('pos.shipping_info')['address'] == null) { - return array('success' => 0, 'message' => translate("Please Add Shipping Information.")); - } - - if (Session::has('pos.cart') && count(Session::get('pos.cart')) > 0) { - $order = new Order; - - if ($request->user_id == null) { - $order->guest_id = mt_rand(100000, 999999); - } else { - $order->user_id = $request->user_id; - } - $order->shipping_address = json_encode(Session::get('pos.shipping_info')); - - $order->payment_type = $request->payment_type; - $order->delivery_viewed = '0'; - $order->payment_status_viewed = '0'; - $order->code = date('Ymd-His') . rand(10, 99); - $order->date = strtotime('now'); - $order->payment_status = $request->payment_type != 'cash_on_delivery' ? 'paid' : 'unpaid'; - $order->payment_details = $request->payment_type; - $order->order_from = 'pos'; - - if ($request->payment_type == 'offline_payment') { - if ($request->offline_trx_id == null) { - return array('success' => 0, 'message' => translate("Transaction ID can not be null.")); - } - $data['name'] = $request->offline_payment_method; - $data['amount'] = $request->offline_payment_amount; - $data['trx_id'] = $request->offline_trx_id; - $data['photo'] = $request->offline_payment_proof; - $order->manual_payment_data = json_encode($data); - $order->manual_payment = 1; - } - - if ($order->save()) { - $subtotal = 0; - $tax = 0; - foreach (Session::get('pos.cart') as $key => $cartItem) { - $product_stock = ProductStock::find($cartItem['stock_id']); - $product = $product_stock->product; - $product_variation = $product_stock->variant; - - $subtotal += $cartItem['price'] * $cartItem['quantity']; - $tax += $cartItem['tax'] * $cartItem['quantity']; - - if ($product->digital == 0) { - if ($cartItem['quantity'] > $product_stock->qty) { - $order->delete(); - return array('success' => 0, 'message' => $product->name . ' (' . $product_variation . ') ' . translate(" just stock outs.")); - } else { - $product_stock->qty -= $cartItem['quantity']; - $product_stock->save(); - } - } - - - $order_detail = new OrderDetail; - $order_detail->order_id = $order->id; - $order_detail->seller_id = $product->user_id; - $order_detail->product_id = $product->id; - $order_detail->payment_status = $request->payment_type != 'cash_on_delivery' ? 'paid' : 'unpaid'; - $order_detail->variation = $product_variation; - $order_detail->price = $cartItem['price'] * $cartItem['quantity']; - $order_detail->tax = $cartItem['tax'] * $cartItem['quantity']; - $order_detail->quantity = $cartItem['quantity']; - $order_detail->shipping_type = null; - - if (Session::get('pos.shipping', 0) >= 0) { - $order_detail->shipping_cost = Session::get('pos.shipping', 0) / count(Session::get('pos.cart')); - } else { - $order_detail->shipping_cost = 0; - } - - $order_detail->save(); - - $product->num_of_sale++; - $product->save(); - } - - $order->grand_total = $subtotal + $tax + Session::get('pos.shipping', 0); - - if (Session::has('pos.discount')) { - $order->grand_total -= Session::get('pos.discount'); - $order->coupon_discount = Session::get('pos.discount'); - } - - $order->seller_id = $product->user_id; - $order->save(); - - $array['view'] = 'emails.invoice'; - $array['subject'] = 'Your order has been placed - ' . $order->code; - $array['from'] = env('MAIL_USERNAME'); - $array['order'] = $order; - - $admin_products = array(); - $seller_products = array(); - - foreach ($order->orderDetails as $key => $orderDetail) { - if ($orderDetail->product->added_by == 'admin') { - array_push($admin_products, $orderDetail->product->id); - } else { - $product_ids = array(); - if (array_key_exists($orderDetail->product->user_id, $seller_products)) { - $product_ids = $seller_products[$orderDetail->product->user_id]; - } - array_push($product_ids, $orderDetail->product->id); - $seller_products[$orderDetail->product->user_id] = $product_ids; - } - } - - foreach ($seller_products as $key => $seller_product) { - try { - Mail::to(User::find($key)->email)->queue(new InvoiceEmailManager($array)); - } catch (\Exception $e) { - } - } - - //sends email to customer with the invoice pdf attached - if (env('MAIL_USERNAME') != null) { - try { - Mail::to($request->session()->get('pos.shipping_info')['email'])->queue(new InvoiceEmailManager($array)); - Mail::to(User::where('user_type', 'admin')->first()->email)->queue(new InvoiceEmailManager($array)); - } catch (\Exception $e) { - } - } - - if ($request->user_id != NULL && $order->payment_status == 'paid') { - calculateCommissionAffilationClubPoint($order); - } - - Session::forget('pos.shipping_info'); - Session::forget('pos.shipping'); - Session::forget('pos.discount'); - Session::forget('pos.cart'); - return array('success' => 1, 'message' => translate('Order Completed Successfully.')); - } else { - return array('success' => 0, 'message' => translate('Please input customer information.')); - } - } - return array('success' => 0, 'message' => translate("Please select a product.")); - } - - public function configuration() - { - return view('backend.pos.pos_activation'); - } - - public function invoice($id) - { - $order = Order::findOrFail($id); - - $print_width = get_setting('print_width'); - if ($print_width == null) { - flash(translate('Thermal printer size is not given in POS configuration'))->warning(); - return back(); - } - - $pdf_style_data = FontUtility::get_font_family(); - - $html = view('backend.pos.thermal_invoice', compact('order', 'pdf_style_data')); - - $mpdf = new Mpdf(['mode' => 'utf-8', 'format' => [$print_width, 1000]]); - $mpdf->WriteHTML($html); - // $mpdf->WriteHTML('

Hello world!

'); - $mpdf->page = 0; - $mpdf->state = 0; - unset($mpdf->pages[0]); - // The $p needs to be passed by reference - $p = 'P'; - // dd($mpdf->y); - $mpdf->_setPageSize(array($print_width, $mpdf->y), $p); - - $mpdf->addPage(); - $mpdf->WriteHTML($html); - - $mpdf->Output('order-' . $order->code . '.pdf', 'I'); - } -} diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/controllers/Seller/PosController.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/controllers/Seller/PosController.php deleted file mode 100644 index d3124aa1..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/controllers/Seller/PosController.php +++ /dev/null @@ -1,403 +0,0 @@ -where('email_verified_at', '!=', null)->orderBy('created_at', 'desc')->get(); - if (get_setting('pos_activation_for_seller') == 1) { - return view('seller.pos.index', compact('customers')); - } - else { - flash(translate('POS is disable for Sellers!!!'))->error(); - return back(); - } - } - - public function search(Request $request) - { - $products = PosUtility::product_search($request->only('category', 'brand', 'keyword')); - - $stocks = new PosProductCollection($products); - $stocks->appends(['keyword' => $request->keyword, 'category' => $request->category, 'brand' => $request->brand]); - return $stocks; - } - - public function addToCart(Request $request) - { - $stock = ProductStock::find($request->stock_id); - $product = $stock->product; - - $data = array(); - $data['stock_id'] = $request->stock_id; - $data['id'] = $product->id; - $data['variant'] = $stock->variant; - $data['quantity'] = $product->min_qty; - - if($stock->qty < $product->min_qty && $product->digital == 0){ - return array('success' => 0, 'message' => translate("This product doesn't have enough stock for minimum purchase quantity ").$product->min_qty, 'view' => view('backend.pos.cart')->render()); - } - - $tax = 0; - $price = $stock->price; - - // discount calculation - $discount_applicable = false; - if ($product->discount_start_date == null) { - $discount_applicable = true; - } - elseif (strtotime(date('d-m-Y H:i:s')) >= $product->discount_start_date && - strtotime(date('d-m-Y H:i:s')) <= $product->discount_end_date) { - $discount_applicable = true; - } - if ($discount_applicable) { - if($product->discount_type == 'percent'){ - $price -= ($price*$product->discount)/100; - } - elseif($product->discount_type == 'amount'){ - $price -= $product->discount; - } - } - - //tax calculation - foreach ($product->taxes as $product_tax) { - if($product_tax->tax_type == 'percent'){ - $tax += ($price * $product_tax->tax) / 100; - } - elseif($product_tax->tax_type == 'amount'){ - $tax += $product_tax->tax; - } - } - - $data['price'] = $price; - $data['tax'] = $tax; - - if($request->session()->has('pos.cart')){ - $foundInCart = false; - $cart = collect(); - - foreach ($request->session()->get('pos.cart') as $key => $cartItem){ - - if($cartItem['id'] == $product->id && $cartItem['stock_id'] == $stock->id){ - $foundInCart = true; - - if($product->digital == 0){ - $loop_product = Product::find($cartItem['id']); - $product_stock = $loop_product->stocks->where('variant', $cartItem['variant'])->first(); - - if($product->digital == 1 || $product_stock->qty >= ($cartItem['quantity'] + 1)){ - $cartItem['quantity'] += 1; - }else{ - return array('success' => 0, 'message' => translate("This product doesn't have more stock."), 'view' => view('backend.pos.cart')->render()); - } - } - else{ - return array('success' => 0, 'message' => translate("This product is alreday in the cart"), 'view' => view('backend.pos.cart')->render()); - } - - } - $cart->push($cartItem); - } - - if (!$foundInCart) { - $cart->push($data); - } - $request->session()->put('pos.cart', $cart); - } - else{ - $cart = collect([$data]); - $request->session()->put('pos.cart', $cart); - } - - $request->session()->put('pos.cart', $cart); - - return array('success' => 1, 'message' => '', 'view' => view('backend.pos.cart')->render()); - } - - //updated the quantity for a cart item - public function updateQuantity(Request $request) - { - $cart = $request->session()->get('pos.cart', collect([])); - $cart = $cart->map(function ($object, $key) use ($request) { - if($key == $request->key){ - $product = Product::find($object['id']); - $product_stock = $product->stocks->where('id', $object['stock_id'])->first(); - - if($product_stock->qty >= $request->quantity){ - $object['quantity'] = $request->quantity; - }else{ - return array('success' => 0, 'message' => translate("This product doesn't have more stock."), 'view' => view('backend.pos.cart')->render()); - } - } - return $object; - }); - $request->session()->put('pos.cart', $cart); - - return array('success' => 1, 'message' => '', 'view' => view('backend.pos.cart')->render()); - } - - //removes from Cart - public function removeFromCart(Request $request) - { - if(Session::has('pos.cart')){ - $cart = Session::get('pos.cart', collect([])); - $cart->forget($request->key); - Session::put('pos.cart', $cart); - - $request->session()->put('pos.cart', $cart); - } - - return view('backend.pos.cart'); - } - - //Shipping Address for seller - public function getShippingAddressForSeller(Request $request) - { - $user_id = $request->id; - return ($user_id == '') ? - view('seller.pos.guest_shipping_address') : - view('seller.pos.shipping_address', compact('user_id')); - } - - public function set_shipping_address(Request $request) - { - $data = PosUtility::get_shipping_address($request); - - $shipping_info = $data; - $request->session()->put('pos.shipping_info', $shipping_info); - } - - //set Discount - public function setDiscount(Request $request){ - if($request->discount >= 0){ - Session::put('pos.discount', $request->discount); - } - return view('backend.pos.cart'); - } - - //set Shipping Cost - public function setShipping(Request $request){ - if($request->shipping != null){ - Session::put('pos.shipping', $request->shipping); - } - return view('backend.pos.cart'); - } - - //order summary - public function get_order_summary(Request $request){ - return view('backend.pos.order_summary'); - } - - //order place - public function order_store(Request $request){ - if(Session::get('pos.shipping_info') == null || Session::get('pos.shipping_info')['name'] == null || Session::get('pos.shipping_info')['phone'] == null || Session::get('pos.shipping_info')['address'] == null){ - return array('success' => 0, 'message' => translate("Please Add Shipping Information.")); - } - - if(Session::has('pos.cart') && count(Session::get('pos.cart')) > 0){ - $order = new Order; - - if ($request->user_id == null) { - $order->guest_id = mt_rand(100000, 999999); - } - else { - $order->user_id = $request->user_id; - } - - $order->shipping_address = json_encode(Session::get('pos.shipping_info')); - - $order->payment_type = $request->payment_type; - $order->delivery_viewed = '0'; - $order->payment_status_viewed = '0'; - $order->code = date('Ymd-His').rand(10,99); - $order->date = strtotime('now'); - $order->payment_status = $request->payment_type != 'cash_on_delivery' ? 'paid' : 'unpaid'; - $order->payment_details = $request->payment_type; - $order->order_from = 'pos'; - - if($request->payment_type == 'offline_payment'){ - if($request->offline_trx_id == null){ - return array('success' => 0, 'message' => translate("Transaction ID can not be null.")); - } - $data['name'] = $request->offline_payment_method; - $data['amount'] = $request->offline_payment_amount; - $data['trx_id'] = $request->offline_trx_id; - $data['photo'] = $request->offline_payment_proof; - $order->manual_payment_data = json_encode($data); - $order->manual_payment = 1; - } - - if($order->save()){ - $subtotal = 0; - $tax = 0; - foreach (Session::get('pos.cart') as $key => $cartItem){ - $product_stock = ProductStock::find($cartItem['stock_id']); - $product = $product_stock->product; - $product_variation = $product_stock->variant; - - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - - if($product->digital == 0){ - if($cartItem['quantity'] > $product_stock->qty){ - $order->delete(); - return array('success' => 0, 'message' => $product->name.' ('.$product_variation.') '.translate(" just stock outs.")); - } - else { - $product_stock->qty -= $cartItem['quantity']; - $product_stock->save(); - } - } - - $order_detail = new OrderDetail; - $order_detail->order_id =$order->id; - $order_detail->seller_id = $product->user_id; - $order_detail->product_id = $product->id; - $order_detail->payment_status = $request->payment_type != 'cash_on_delivery' ? 'paid' : 'unpaid'; - $order_detail->variation = $product_variation; - $order_detail->price = $cartItem['price'] * $cartItem['quantity']; - $order_detail->tax = $cartItem['tax'] * $cartItem['quantity']; - $order_detail->quantity = $cartItem['quantity']; - $order_detail->shipping_type = null; - - if (Session::get('pos.shipping', 0) >= 0){ - $order_detail->shipping_cost = Session::get('pos.shipping', 0)/count(Session::get('pos.cart')); - } - else { - $order_detail->shipping_cost = 0; - } - - $order_detail->save(); - - $product->num_of_sale++; - $product->save(); - } - - $order->grand_total = $subtotal + $tax + Session::get('pos.shipping', 0); - - if(Session::has('pos.discount')){ - $order->grand_total -= Session::get('pos.discount'); - $order->coupon_discount = Session::get('pos.discount'); - } - - $order->seller_id = $product->user_id; - $order->save(); - - $array['view'] = 'emails.invoice'; - $array['subject'] = 'Your order has been placed - '.$order->code; - $array['from'] = env('MAIL_USERNAME'); - $array['order'] = $order; - - $admin_products = array(); - $seller_products = array(); - - foreach ($order->orderDetails as $key => $orderDetail){ - if($orderDetail->product->added_by == 'admin'){ - array_push($admin_products, $orderDetail->product->id); - } - else{ - $product_ids = array(); - if(array_key_exists($orderDetail->product->user_id, $seller_products)){ - $product_ids = $seller_products[$orderDetail->product->user_id]; - } - array_push($product_ids, $orderDetail->product->id); - $seller_products[$orderDetail->product->user_id] = $product_ids; - } - } - - foreach($seller_products as $key => $seller_product){ - try { - Mail::to(User::find($key)->email)->queue(new InvoiceEmailManager($array)); - } catch (\Exception $e) { - - } - } - - //sends email to customer with the invoice pdf attached - if(env('MAIL_USERNAME') != null){ - try { - Mail::to($request->session()->get('pos.shipping_info')['email'])->queue(new InvoiceEmailManager($array)); - Mail::to(User::where('user_type', 'admin')->first()->email)->queue(new InvoiceEmailManager($array)); - } catch (\Exception $e) { - - } - } - - if($request->user_id != NULL && $order->payment_status == 'paid') { - calculateCommissionAffilationClubPoint($order); - } - - Session::forget('pos.shipping_info'); - Session::forget('pos.shipping'); - Session::forget('pos.discount'); - Session::forget('pos.cart'); - return array('success' => 1, 'message' => translate('Order Completed Successfully.')); - } - else { - return array('success' => 0, 'message' => translate('Please input customer information.')); - } - } - return array('success' => 0, 'message' => translate("Please select a product.")); - } - - public function configuration() - { - return view('seller.pos.pos_activation'); - } - - public function invoice($id) - { - $order = Order::findOrFail($id); - if(auth()->user()->id != $order->seller_id) { - return back(); - } - $print_width = get_setting('print_width_seller_pos'); - if ($print_width == null) { - flash(translate('Print Size does not set for thermal printer from POS configuration'))->warning(); - return back(); - } - - $pdf_style_data = FontUtility::get_font_family(); - - $html = view('backend.pos.thermal_invoice', compact('order', 'pdf_style_data')); - - $mpdf = new Mpdf(['mode' => 'utf-8', 'format' => [$print_width, 1000]]); - $mpdf->WriteHTML($html); - // $mpdf->WriteHTML('

Hello world!

'); - $mpdf->page = 0; - $mpdf->state = 0; - unset($mpdf->pages[0]); - // The $p needs to be passed by reference - $p = 'P'; - // dd($mpdf->y); - $mpdf->_setPageSize(array($print_width, $mpdf->y), $p); - - $mpdf->addPage(); - $mpdf->WriteHTML($html); - - $mpdf->Output('order-' . $order->code . '.pdf', 'I'); - } -} diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/documentation/documentation.pdf b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/documentation/documentation.pdf deleted file mode 100644 index 0dba61cb..00000000 Binary files a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/documentation/documentation.pdf and /dev/null differ diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.1.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.1.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.2.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.2.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.2.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.3.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.3.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.4.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.4.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.4.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.5.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.5.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.5.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.6.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.6.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.6.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.7.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.7.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.7.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.8.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.8.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.8.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.9.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.9.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/1.9.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/2.0.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/2.0.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/2.0.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/2.1.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/2.1.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/2.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/update.sql b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/update.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/sql/update.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/cart.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/cart.blade.php deleted file mode 100644 index 6ecc2fd7..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/cart.blade.php +++ /dev/null @@ -1,79 +0,0 @@ -
- @php - $subtotal = 0; - $tax = 0; - @endphp - @if (Session::has('pos.cart')) -
    - @forelse (Session::get('pos.cart') as $key => $cartItem) - @php - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - $stock = \App\Models\ProductStock::find($cartItem['stock_id']); - @endphp -
  • -
    -
    -
    - - - -
    -
    -
    -
    {{ $stock->product->name }}
    - {{ $cartItem['variant'] }} -
    -
    -
    {{ single_price($cartItem['price']) }} x {{ $cartItem['quantity'] }}
    -
    {{ single_price($cartItem['price']*$cartItem['quantity']) }}
    -
    -
    - -
    -
    -
  • - @empty -
  • -
    - -

    {{ translate('No Product Added') }}

    -
    -
  • - @endforelse -
- @else -
- -

{{ translate('No Product Added') }}

-
- @endif -
-
-
- {{translate('Sub Total')}} - {{ single_price($subtotal) }} -
-
- {{translate('Tax')}} - {{ single_price($tax) }} -
-
- {{translate('Shipping')}} - {{ single_price(Session::get('pos.shipping', 0)) }} -
-
- {{translate('Discount')}} - {{ single_price(Session::get('pos.discount', 0)) }} -
-
- {{translate('Total')}} - {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }} -
-
\ No newline at end of file diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/guest_shipping_address.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/guest_shipping_address.blade.php deleted file mode 100644 index 1f4415c6..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/guest_shipping_address.blade.php +++ /dev/null @@ -1,77 +0,0 @@ -
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
\ No newline at end of file diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/index.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/index.blade.php deleted file mode 100644 index c71b8fa4..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/index.blade.php +++ /dev/null @@ -1,637 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
- @csrf -
-
-
-
-
- -
-
-
- -
-
- -
-
-
-
- -
-
-
{{ translate('Loading..') }}
-
-
-
-
-
-
-
-
- -
- -
- -
-
- @php - $subtotal = 0; - $tax = 0; - @endphp - @if (Session::has('pos.cart')) -
    - @forelse (Session::get('pos.cart') as $key => $cartItem) - @php - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - $stock = \App\Models\ProductStock::find($cartItem['stock_id']); - @endphp -
  • -
    -
    -
    - - - -
    -
    -
    -
    {{ $stock->product->name }}
    - {{ $cartItem['variant'] }} -
    -
    -
    {{ single_price($cartItem['price']) }} x {{ $cartItem['quantity'] }}
    -
    {{ single_price($cartItem['price']*$cartItem['quantity']) }}
    -
    -
    - -
    -
    -
  • - @empty -
  • -
    - -

    {{ translate('No Product Added') }}

    -
    -
  • - @endforelse -
- @else -
- -

{{ translate('No Product Added') }}

-
- @endif -
-
-
- {{translate('Sub Total')}} - {{ single_price($subtotal) }} -
-
- {{translate('Tax')}} - {{ single_price($tax) }} -
-
- {{translate('Shipping')}} - {{ single_price(Session::get('pos.shipping', 0)) }} -
-
- {{translate('Discount')}} - {{ single_price(Session::get('pos.discount', 0)) }} -
-
- {{translate('Total')}} - {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }} -
-
-
-
-
- -
-
-
-
- -@endsection - -@section('modal') - - - - - - - - - {{-- Offline Payment Modal --}} - - -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/order_summary.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/order_summary.blade.php deleted file mode 100644 index 7e1348f6..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/order_summary.blade.php +++ /dev/null @@ -1,116 +0,0 @@ -
-
- @php - $subtotal = 0; - $tax = 0; - @endphp - @if (Session::has('pos.cart')) -
    - @forelse (Session::get('pos.cart') as $key => $cartItem) - @php - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - $stock = \App\Models\ProductStock::find($cartItem['stock_id']); - @endphp -
  • -
    -
    -
    - @if($stock->image == null) - - @else - - @endif - -
    {{ $stock->product->name }}
    - {{ $cartItem['variant'] }} -
    -
    -
    -
    -
    {{ single_price($cartItem['price']) }}
    -
    {{ translate('QTY') }}: {{ $cartItem['quantity'] }}
    -
    -
    -
  • - @empty -
  • -
    - -

    {{ translate('No Product Added') }}

    -
    -
  • - @endforelse -
- @else -
- -

{{ translate('No Product Added') }}

-
- @endif -
-
-
-
-
{{ translate('Customer Info') }}
-
- @if(Session::has('pos.shipping_info') && Session::get('pos.shipping_info')['name'] != null) -
- {{translate('Name')}}: - {{ Session::get('pos.shipping_info')['name'] }} -
-
- {{translate('Email')}}: - {{ Session::get('pos.shipping_info')['email'] }} -
-
- {{translate('Phone')}}: - {{ Session::get('pos.shipping_info')['phone'] }} -
-
- {{translate('Address')}}: - {{ Session::get('pos.shipping_info')['address'] }} -
-
- {{translate('Country')}}: - {{ Session::get('pos.shipping_info')['country'] }} -
-
- {{translate('City')}}: - {{ Session::get('pos.shipping_info')['city'] }} -
-
- {{translate('Postal Code')}}: - {{ Session::get('pos.shipping_info')['postal_code'] }} -
- @else -
- {{ translate('No customer information selected.') }} -
- @endif -
-
- -
- {{translate('Total')}} - {{ single_price($subtotal) }} -
-
- {{translate('Tax')}} - {{ single_price($tax) }} -
-
- {{translate('Shipping')}} - {{ single_price(Session::get('pos.shipping', 0)) }} -
-
- {{translate('Discount')}} - {{ single_price(Session::get('pos.discount', 0)) }} -
-
- {{translate('Total')}} - {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }} -
-
-
-
\ No newline at end of file diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/pos_activation.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/pos_activation.blade.php deleted file mode 100644 index 05dca243..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/pos_activation.blade.php +++ /dev/null @@ -1,68 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -

{{translate('POS Activation for Seller')}}

-
-
-
-
-
{{translate('POS Activation for Seller')}}
-
-
- -
-
-
-
-
-
-
{{ translate('Thermal Printer Size') }}
-
-
-
- @csrf -
- -
- -
- {{ translate('mm') }} -
-
-
-
- -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/shipping_address.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/shipping_address.blade.php deleted file mode 100644 index 317f0460..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/shipping_address.blade.php +++ /dev/null @@ -1,43 +0,0 @@ -
- @foreach (\App\Models\Address::where('user_id',$user_id)->get() as $key => $address) - - @endforeach - -
-
- -
{{ translate('Add New Address') }}
-
-
-
diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/thermal_invoice.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/thermal_invoice.blade.php deleted file mode 100644 index ce8b56f9..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/thermal_invoice.blade.php +++ /dev/null @@ -1,184 +0,0 @@ - - - - {{ translate('INVOICE') }} - - - - - -
- - @php - $logo = get_setting('header_logo'); - @endphp - -
-
- @if($logo != null) - - @else - - @endif -
-
- {{ get_setting('site_name') }}
- {{ get_setting('contact_address') }}
- {{ translate('Email') }}: {{ get_setting('contact_email') }}
- {{ translate('Phone') }}: {{ get_setting('contact_phone') }}
-
-
{{ translate('RETAIL INVOICE') }}
- - - - - - - - - -
- {{ translate('Order ID') }}: {{ $order->code }} - {{ translate('Date') }}: {{ date('d M Y h:i:sa', $order->date) }}
- {{ translate('Payment method') }}: {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }} -
-
- -
-
-
{{ translate('BILL TO') }}
- - @php - $shipping_address = json_decode($order->shipping_address); - @endphp - - - - -
{{ translate('Name') }}: {{ $shipping_address->name }}
{{ translate('Address') }}: {{ $shipping_address->address }}, {{ $shipping_address->city }}, @if(isset(json_decode($order->shipping_address)->state)) {{ json_decode($order->shipping_address)->state }} - @endif {{ $shipping_address->postal_code }}, {{ $shipping_address->country }}
{{ translate('Email') }}: {{ $shipping_address->email }}
{{ translate('Phone') }}: {{ $shipping_address->phone }}
-
-
- -
- - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - @if ($orderDetail->product != null) - - - - - - - - @endif - @endforeach - -
{{ translate('Product Name') }}{{ translate('Qty') }}{{ translate('Unit Price') }}{{ translate('Tax') }}{{ translate('Total') }}
- {{ $orderDetail->product->name }} - @if($orderDetail->variation != null) ({{ $orderDetail->variation }}) @endif -
- - @php - $product_stock = json_decode($orderDetail->product->stocks->first(), true); - @endphp - {{translate('SKU')}}: {{ $product_stock['sku'] }} - -
{{ $orderDetail->quantity }}{{ single_price($orderDetail->price/$orderDetail->quantity) }}{{ single_price($orderDetail->tax/$orderDetail->quantity) }}{{ single_price($orderDetail->price+$orderDetail->tax) }}
-
- -
- - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Sub Total') }}{{ single_price($order->orderDetails->sum('price')) }}
{{ translate('Shipping Cost') }}{{ single_price($order->orderDetails->sum('shipping_cost')) }}
{{ translate('Total Tax') }}{{ single_price($order->orderDetails->sum('tax')) }}
{{ translate('Coupon Discount') }}{{ single_price($order->coupon_discount) }}
{{ translate('Grand Total') }}{{ single_price($order->grand_total) }}
-
- -
- - diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/variants.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/variants.blade.php deleted file mode 100644 index 2087156e..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/backend/pos/variants.blade.php +++ /dev/null @@ -1,35 +0,0 @@ - - - diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/guest_shipping_address.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/guest_shipping_address.blade.php deleted file mode 100644 index 1f4415c6..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/guest_shipping_address.blade.php +++ /dev/null @@ -1,77 +0,0 @@ -
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
-
- -
-
- -
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
\ No newline at end of file diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/index.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/index.blade.php deleted file mode 100644 index c6e594bf..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/index.blade.php +++ /dev/null @@ -1,639 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') - -
-
-
- @csrf -
-
-
-
-
- -
-
-
- -
-
- -
-
-
-
- -
-
-
{{ translate('Loading..') }}
-
-
-
-
-
-
-
-
- -
- -
- -
-
- @php - $subtotal = 0; - $tax = 0; - @endphp - @if (Session::has('pos.cart')) -
    - @forelse (Session::get('pos.cart') as $key => $cartItem) - @php - $subtotal += $cartItem['price']*$cartItem['quantity']; - $tax += $cartItem['tax']*$cartItem['quantity']; - $stock = \App\Models\ProductStock::find($cartItem['stock_id']); - @endphp -
  • -
    -
    -
    - - - -
    -
    -
    -
    {{ $stock->product->name }}
    - {{ $cartItem['variant'] }} -
    -
    -
    {{ single_price($cartItem['price']) }} x {{ $cartItem['quantity'] }}
    -
    {{ single_price($cartItem['price']*$cartItem['quantity']) }}
    -
    -
    - -
    -
    -
  • - @empty -
  • -
    - -

    {{ translate('No Product Added') }}

    -
    -
  • - @endforelse -
- @else -
- -

{{ translate('No Product Added') }}

-
- @endif -
-
-
- {{translate('Sub Total')}} - {{ single_price($subtotal) }} -
-
- {{translate('Tax')}} - {{ single_price($tax) }} -
-
- {{translate('Shipping')}} - {{ single_price(Session::get('pos.shipping', 0)) }} -
-
- {{translate('Discount')}} - {{ single_price(Session::get('pos.discount', 0)) }} -
-
- {{translate('Total')}} - {{ single_price($subtotal+$tax+Session::get('pos.shipping', 0) - Session::get('pos.discount', 0)) }} -
-
-
-
-
- -
-
-
-
-
- -@endsection - -@section('modal') - - - - - - - - - {{-- Offline Payment Modal --}} - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/pos_activation.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/pos_activation.blade.php deleted file mode 100644 index 158386e1..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/pos_activation.blade.php +++ /dev/null @@ -1,35 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') - -

{{translate('POS Configuration')}}

-
-
-
-
-
{{ translate('Thermal Printer Size') }}
-
-
-
- @csrf -
- -
- -
- {{ translate('mm') }} -
-
-
-
- -
-
-
-
-
-
- -@endsection - diff --git a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/shipping_address.blade.php b/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/shipping_address.blade.php deleted file mode 100644 index 43236221..00000000 --- a/desarrollo/temp/Th5EMmj3vu/addons/pos_system/views/seller/pos/shipping_address.blade.php +++ /dev/null @@ -1,39 +0,0 @@ -
- @foreach (\App\Models\Address::where('user_id',$user_id)->get() as $key => $address) - - @endforeach - -
-
- -
{{ translate('Add New Address') }}
-
-
-
diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/assets/wholesale.png b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/assets/wholesale.png deleted file mode 100644 index 8a526605..00000000 Binary files a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/assets/wholesale.png and /dev/null differ diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/config.json b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/config.json deleted file mode 100644 index e856fe62..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/config.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name":"Wholesale", - "unique_identifier":"wholesale", - "version":"1.4", - "minimum_item_version":"6.4.0", - "addon_banner":"wholesale.png", - "directory":[ - { - "name":[ - "app/Services", - "resources/views/wholesale/products", - "resources/views/wholesale/frontend/seller_products" - ] - } - ], - "sql_file":"", - "files":[ - { - "root_directory":"addons/wholesale/assets/wholesale.png", - "update_directory":"public/wholesale.png" - }, - { - "root_directory":"addons/wholesale/controllers/WholesaleProductController.php", - "update_directory":"app/Http/Controllers/WholesaleProductController.php" - }, - { - "root_directory":"addons/wholesale/requests/WholesaleProductRequest.php", - "update_directory":"app/Http/Requests/WholesaleProductRequest.php" - }, - { - "root_directory":"addons/wholesale/services/WholesaleService.php", - "update_directory":"app/Services/WholesaleService.php" - }, - { - "root_directory":"addons/wholesale/views/wholesale/frontend/seller_products/create.blade.php", - "update_directory":"resources/views/wholesale/frontend/seller_products/create.blade.php" - }, - { - "root_directory":"addons/wholesale/views/wholesale/frontend/seller_products/edit.blade.php", - "update_directory":"resources/views/wholesale/frontend/seller_products/edit.blade.php" - }, - { - "root_directory":"addons/wholesale/views/wholesale/frontend/seller_products/index.blade.php", - "update_directory":"resources/views/wholesale/frontend/seller_products/index.blade.php" - }, - { - "root_directory":"addons/wholesale/views/wholesale/products/create.blade.php", - "update_directory":"resources/views/wholesale/products/create.blade.php" - }, - { - "root_directory":"addons/wholesale/views/wholesale/products/edit.blade.php", - "update_directory":"resources/views/wholesale/products/edit.blade.php" - }, - { - "root_directory":"addons/wholesale/views/wholesale/products/index.blade.php", - "update_directory":"resources/views/wholesale/products/index.blade.php" - } - ] -} diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/controllers/WholesaleProductController.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/controllers/WholesaleProductController.php deleted file mode 100644 index e8b92924..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/controllers/WholesaleProductController.php +++ /dev/null @@ -1,347 +0,0 @@ -middleware(['permission:view_all_wholesale_products'])->only('all_wholesale_products'); - $this->middleware(['permission:view_inhouse_wholesale_products'])->only('in_house_wholesale_products'); - $this->middleware(['permission:view_sellers_wholesale_products'])->only('seller_wholesale_products'); - $this->middleware(['permission:add_wholesale_product'])->only('product_create_admin'); - $this->middleware(['permission:edit_wholesale_product'])->only('product_edit_admin'); - $this->middleware(['permission:delete_wholesale_product'])->only('product_destroy_admin'); - } - - public function all_wholesale_products(Request $request) - { - CoreComponentRepository::instantiateShopRepository(); - - $type = 'All'; - $col_name = null; - $query = null; - $sort_search = null; - $seller_id = null; - - $products = Product::where('wholesale_product', 1)->orderBy('created_at', 'desc'); - - if ($request->has('user_id') && $request->user_id != null) { - $products = $products->where('user_id', $request->user_id); - $seller_id = $request->user_id; - } - - if ($request->type != null){ - $var = explode(",", $request->type); - $col_name = $var[0]; - $query = $var[1]; - $products = $products->orderBy($col_name, $query); - $sort_type = $request->type; - } - if ($request->search != null){ - $products = $products - ->where('name', 'like', '%'.$request->search.'%'); - $sort_search = $request->search; - } - - $products = $products->paginate(15); - - return view('wholesale.products.index', compact('products','type', 'col_name', 'query', 'sort_search','seller_id')); - } - - public function in_house_wholesale_products(Request $request) - { - CoreComponentRepository::instantiateShopRepository(); - - $type = 'In House'; - $col_name = null; - $query = null; - $sort_search = null; - - $products = Product::where('wholesale_product', 1)->where('added_by','admin')->orderBy('created_at', 'desc'); - - if ($request->type != null){ - $var = explode(",", $request->type); - $col_name = $var[0]; - $query = $var[1]; - $products = $products->orderBy($col_name, $query); - $sort_type = $request->type; - } - if ($request->search != null){ - $products = $products - ->where('name', 'like', '%'.$request->search.'%'); - $sort_search = $request->search; - } - - $products = $products->paginate(15); - - return view('wholesale.products.index', compact('products','type', 'col_name', 'query', 'sort_search')); - } - - public function seller_wholesale_products(Request $request) - { - CoreComponentRepository::instantiateShopRepository(); - - $type = 'Seller'; - $col_name = null; - $query = null; - $sort_search = null; - $seller_id = null; - - $products = Product::where('wholesale_product', 1)->where('added_by','seller')->orderBy('created_at', 'desc'); - - if ($request->has('user_id') && $request->user_id != null) { - $products = $products->where('user_id', $request->user_id); - $seller_id = $request->user_id; - } - - if ($request->type != null){ - $var = explode(",", $request->type); - $col_name = $var[0]; - $query = $var[1]; - $products = $products->orderBy($col_name, $query); - $sort_type = $request->type; - } - if ($request->search != null){ - $products = $products - ->where('name', 'like', '%'.$request->search.'%'); - $sort_search = $request->search; - } - - $products = $products->paginate(15); - - return view('wholesale.products.index', compact('products','type', 'col_name', 'query', 'sort_search','seller_id')); - } - - // Wholesale Products list in Seller panel - public function wholesale_products_list_seller(Request $request) - { - $sort_search = null; - $col_name = null; - $query = null; - $products = Product::where('wholesale_product',1)->where('user_id',Auth::user()->id)->orderBy('created_at', 'desc'); - if ($request->type != null){ - $var = explode(",", $request->type); - $col_name = $var[0]; - $query = $var[1]; - $products = $products->orderBy($col_name, $query); - $sort_type = $request->type; - } - if ($request->search != null){ - $products = $products - ->where('name', 'like', '%'.$request->search.'%'); - $sort_search = $request->search; - } - - $products = $products->paginate(15); - - return view('wholesale.frontend.seller_products.index', compact('products', 'sort_search','col_name')); - } - - public function product_create_admin() - { - CoreComponentRepository::initializeCache(); - - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - return view('wholesale.products.create', compact('categories')); - - } - - public function product_create_seller() - { - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - - if(get_setting('seller_wholesale_product') == 1){ - if(addon_is_activated('seller_subscription')){ - if(Auth::user()->shop->seller_package != null && Auth::user()->shop->seller_package->product_upload_limit > Auth::user()->products()->count()){ - return view('wholesale.frontend.seller_products.create', compact('categories')); - } - else { - flash(translate('Upload limit has been reached. Please upgrade your package.'))->warning(); - return back(); - } - } - else{ - return view('wholesale.frontend.seller_products.create', compact('categories')); - } - } - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function product_store_admin(WholesaleProductRequest $request) - { - $product = (new WholesaleService)->store($request->except([ - '_token', 'button', 'flat_shipping_cost', 'tax_id', 'tax', 'tax_type', 'flash_deal_id', 'flash_discount', 'flash_discount_type' - ])); - $request->merge(['product_id' => $product->id]); - - //VAT & Tax - if ($request->tax_id) { - (new productTaxService)->store($request->only([ - 'tax_id', 'tax', 'tax_type', 'product_id' - ])); - } - - //Flash Deal - (new productFlashDealService)->store($request->only([ - 'flash_deal_id', 'flash_discount', 'flash_discount_type' - ]), $product); - - // Product Translations - $request->merge(['lang' => env('DEFAULT_LANGUAGE')]); - ProductTranslation::create($request->only([ - 'lang', 'name', 'unit', 'description', 'product_id' - ])); - - flash(translate('Product has been inserted successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - - return redirect()->route('wholesale_products.in_house'); - } - - public function product_store_seller(WholesaleProductRequest $request) - { - if (addon_is_activated('seller_subscription')) { - if ( - (Auth::user()->shop->seller_package == null) || - (Auth::user()->shop->seller_package->product_upload_limit <= Auth::user()->products()->count()) - ) { - flash(translate('Upload limit has been reached. Please upgrade your package.'))->warning(); - return back(); - } - } - - $product = (new WholesaleService)->store($request->except([ - '_token', 'tax_id', 'tax', 'tax_type', 'flash_deal_id', 'flash_discount', 'flash_discount_type' - ])); - $request->merge(['product_id' => $product->id]); - //VAT & Tax - if ($request->tax_id) { - (new productTaxService)->store($request->only([ - 'tax_id', 'tax', 'tax_type', 'product_id' - ])); - } - - // Product Translations - $request->merge(['lang' => env('DEFAULT_LANGUAGE')]); - ProductTranslation::create($request->only([ - 'lang', 'name', 'unit', 'description', 'product_id' - ])); - - flash(translate('Product has been inserted successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - - return redirect()->route('seller.wholesale_products_list'); - } - - - public function product_edit_admin(Request $request, $id) - { - CoreComponentRepository::initializeCache(); - - $product = Product::findOrFail($id); - if($product->digital == 1) { - return redirect('digitalproducts/' . $id . '/edit'); - } - - $lang = $request->lang; - $tags = json_decode($product->tags); - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - - return view('wholesale.products.edit', compact('product', 'categories', 'tags','lang')); - } - - public function product_edit_seller(Request $request, $id) - { - $product = Product::findOrFail($id); - if($product->digital == 1) { - return redirect('digitalproducts/' . $id . '/edit'); - } - - $lang = $request->lang; - $tags = json_decode($product->tags); - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - - return view('wholesale.frontend.seller_products.edit', compact('product', 'categories', 'tags','lang')); - } - - - public function product_update_admin(WholesaleProductRequest $request, $id) - { - (new WholesaleService)->update($request, $id); - flash(translate('Product has been updated successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - return back(); - } - - public function product_update_seller(WholesaleProductRequest $request, $id) - { - (new WholesaleService)->update($request, $id); - flash(translate('Product has been updated successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - return back(); - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function product_destroy_admin($id) - { - (new WholesaleService)->destroy($id); - flash(translate('Product has been deleted successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - return back(); - } - - public function product_destroy_seller($id) - { - (new WholesaleService)->destroy($id); - flash(translate('Product has been deleted successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - return back(); - } -} diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/documentation/documentation.pdf b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/documentation/documentation.pdf deleted file mode 100644 index f22dc0d9..00000000 Binary files a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/documentation/documentation.pdf and /dev/null differ diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/requests/WholesaleProductRequest.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/requests/WholesaleProductRequest.php deleted file mode 100644 index e735224e..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/requests/WholesaleProductRequest.php +++ /dev/null @@ -1,113 +0,0 @@ -user()->user_type == 'seller') { - $added_by = 'seller'; - $user_id = auth()->user()->id; - if (get_setting('product_approve_by_admin') == 1) { - $approved = 0; - } - } else { - $added_by = 'admin'; - $user_id = User::where('user_type', 'admin')->first()->id; - } - - $this->merge([ - 'slug' => ($this->slug == null) ? preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', strtolower($this->name))) : $this->slug, - 'user_id' => $user_id, - 'approved' => $approved, - 'wholesale_product' => 1, - 'added_by' => $added_by, - 'shipping_cost' => ($this->shipping_type == 'free') ? 0 : $this->flat_shipping_cost, - 'published' => ($this->button == 'unpublish') ? 0 : 1, - ]); - } - /** - * Get the validation rules that apply to the request. - * - * @return array - */ - public function rules() - { - - $rules = []; - - $rules['name'] = 'required|max:255'; - $rules['slug'] = ['required', 'max:255', Rule::unique('products')->ignore($this->id)]; - $rules['category_id'] = 'required'; - $rules['unit'] = 'required'; - $rules['min_qty'] = 'required|numeric'; - $rules['unit_price'] = 'required|numeric|gt:0'; - $rules['wholesale_min_qty.*'] = 'required'; - $rules['wholesale_max_qty.*'] = 'required'; - $rules['wholesale_price.*'] = 'required'; - $rules['current_stock'] = 'required|numeric'; - - return $rules; - } - - /** - * Get the validation messages of rules that apply to the request. - * - * @return array - */ - public function messages() - { - return [ - 'name.required' => 'Product name is required', - 'category_id.required' => 'Category is required', - 'unit.required' => 'Unit field is required', - 'min_qty.required' => 'Minimum purchase quantity is required', - 'min_qty.numeric' => 'Minimum purchase must be numeric', - 'unit_price.required' => 'Unit price is required', - 'unit_price.numeric' => 'Unit price must be numeric', - 'current_stock.required' => 'Current stock is required', - 'current_stock.numeric' => 'Current stock must be numeric', - 'wholesale_min_qty.*.required' => 'Product minimum qantity is required', - 'wholesale_max_qty.*.required' => 'Product maximum qantity is required', - 'wholesale_price.*.required' => 'Product price is required' - ]; - } - - /** - * Get the error messages for the defined validation rules.* - * @return array - */ - public function failedValidation(Validator $validator) - { - // dd($this->expectsJson()); - if ($this->expectsJson()) { - throw new HttpResponseException(response()->json([ - 'message' => $validator->errors()->all(), - 'result' => false - ], 422)); - } else { - throw (new ValidationException($validator)) - ->errorBag($this->errorBag) - ->redirectTo($this->getRedirectUrl()); - } - } -} diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/services/WholesaleService.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/services/WholesaleService.php deleted file mode 100644 index e0228655..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/services/WholesaleService.php +++ /dev/null @@ -1,265 +0,0 @@ - $tag) { - array_push($tags, $tag->value); - } - } - $collection['tags'] = implode(',', $tags); - - if ($collection['meta_title'] == null) { - $collection['meta_title'] = $collection['name']; - } - if ($collection['meta_description'] == null) { - $collection['meta_description'] = strip_tags($collection['description']); - } - - if ($collection['meta_img'] == null) { - $collection['meta_img'] = $collection['thumbnail_img']; - } - - $data = $collection->toArray(); - - $product = Product::create($data); - - $product_stock = new ProductStock; - $product_stock->product_id = $product->id; - $product_stock->variant = ''; - $product_stock->price = $collection['unit_price']; - $product_stock->sku = $collection['sku']; - $product_stock->qty = $collection['current_stock']; - $product_stock->save(); - - if(request()->has('wholesale_price')){ - foreach(request()->wholesale_price as $key => $price){ - $wholesale_price = new WholesalePrice; - $wholesale_price->product_stock_id = $product_stock->id; - $wholesale_price->min_qty = request()->wholesale_min_qty[$key]; - $wholesale_price->max_qty = request()->wholesale_max_qty[$key]; - $wholesale_price->price = $price; - $wholesale_price->save(); - } - } - - return $product; - - } - - public function update(Request $request , $id){ - $product = Product::findOrFail($id); - $product->category_id = $request->category_id; - $product->brand_id = $request->brand_id; - $product->barcode = $request->barcode; - $product->cash_on_delivery = 0; - $product->featured = 0; - $product->todays_deal = 0; - $product->is_quantity_multiplied = 0; - - if (addon_is_activated('refund_request')) { - if ($request->refundable != null) { - $product->refundable = 1; - } - else { - $product->refundable = 0; - } - } - - if($request->lang == env("DEFAULT_LANGUAGE")){ - $product->name = $request->name; - $product->unit = $request->unit; - $product->description = $request->description; - $product->slug = preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', strtolower($request->slug))); - } - - if($request->slug == null){ - $product->slug = preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', strtolower($request->name))); - } - - - - $product->photos = $request->photos; - $product->thumbnail_img = $request->thumbnail_img; - $product->min_qty = $request->min_qty; - $product->low_stock_quantity = $request->low_stock_quantity; - $product->stock_visibility_state = $request->stock_visibility_state; - - $tags = array(); - if($request->tags[0] != null){ - foreach (json_decode($request->tags[0]) as $key => $tag) { - array_push($tags, $tag->value); - } - } - $product->tags = implode(',', $tags); - - $product->video_provider = $request->video_provider; - $product->video_link = $request->video_link; - $product->unit_price = $request->unit_price; - $product->discount = $request->discount; - $product->discount_type = $request->discount_type; - - if ($request->date_range != null) { - $date_var = explode(" to ", $request->date_range); - $product->discount_start_date = strtotime($date_var[0]); - $product->discount_end_date = strtotime( $date_var[1]); - } - - $product->shipping_type = $request->shipping_type; - $product->est_shipping_days = $request->est_shipping_days; - - if (addon_is_activated('club_point')) { - if($request->earn_point) { - $product->earn_point = $request->earn_point; - } - } - - if ($request->has('shipping_type')) { - if($request->shipping_type == 'free'){ - $product->shipping_cost = 0; - } - elseif ($request->shipping_type == 'flat_rate') { - $product->shipping_cost = $request->flat_shipping_cost; - } - elseif ($request->shipping_type == 'product_wise') { - $product->shipping_cost = json_encode($request->shipping_cost); - } - } - - if ($request->has('is_quantity_multiplied')) { - $product->is_quantity_multiplied = 1; - } - if ($request->has('cash_on_delivery')) { - $product->cash_on_delivery = 1; - } - - if ($request->has('featured')) { - $product->featured = 1; - } - - if ($request->has('todays_deal')) { - $product->todays_deal = 1; - } - - $product->meta_title = $request->meta_title; - $product->meta_description = $request->meta_description; - $product->meta_img = $request->meta_img; - - if($product->meta_title == null) { - $product->meta_title = $product->name; - } - - if($product->meta_description == null) { - $product->meta_description = strip_tags($product->description); - } - - if($product->meta_img == null) { - $product->meta_img = $product->thumbnail_img; - } - - $product->pdf = $request->pdf; - - $colors = array(); - $product->colors = json_encode($colors); - - $choice_options = array(); - $product->choice_options = json_encode($choice_options, JSON_UNESCAPED_UNICODE); - - $product_stock = $product->stocks->first(); - $product_stock->price = $request->unit_price; - $product_stock->sku = $request->sku; - $product_stock->qty = $request->current_stock; - $product_stock->save(); - - $product->save(); - - foreach ($product->stocks->first()->wholesalePrices as $key => $wholesalePrice) { - $wholesalePrice->delete(); - } - - if($request->has('wholesale_price')){ - foreach($request->wholesale_price as $key => $price){ - $wholesale_price = new WholesalePrice; - $wholesale_price->product_stock_id = $product_stock->id; - $wholesale_price->min_qty = $request->wholesale_min_qty[$key]; - $wholesale_price->max_qty = $request->wholesale_max_qty[$key]; - $wholesale_price->price = $price; - $wholesale_price->save(); - } - } - - //Flash Deal - if($request->flash_deal_id) { - if($product->flash_deal_product){ - $flash_deal_product = FlashDealProduct::findOrFail($product->flash_deal_product->id); - if(!$flash_deal_product) { - $flash_deal_product = new FlashDealProduct; - } - } else { - $flash_deal_product = new FlashDealProduct; - } - - $flash_deal_product->flash_deal_id = $request->flash_deal_id; - $flash_deal_product->product_id = $product->id; - $flash_deal_product->discount = $request->flash_discount; - $flash_deal_product->discount_type = $request->flash_discount_type; - $flash_deal_product->save(); - } - - //VAT & Tax - if($request->tax_id) { - ProductTax::where('product_id', $product->id)->delete(); - foreach ($request->tax_id as $key => $val) { - $product_tax = new ProductTax; - $product_tax->tax_id = $val; - $product_tax->product_id = $product->id; - $product_tax->tax = $request->tax[$key]; - $product_tax->tax_type = $request->tax_type[$key]; - $product_tax->save(); - } - } - - // Product Translations - $product_translation = ProductTranslation::firstOrNew(['lang' => $request->lang, 'product_id' => $product->id]); - $product_translation->name = $request->name; - $product_translation->unit = $request->unit; - $product_translation->description = $request->description; - $product_translation->save(); - - - } - - public function destroy($id){ - $product = Product::findOrFail($id); - foreach ($product->product_translations as $key => $product_translations) { - $product_translations->delete(); - } - - foreach ($product->stocks as $key => $stock) { - $stock->delete(); - } - - Product::destroy($id); - Cart::where('product_id', $id)->delete(); - } -} diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.1.sql b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.1.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.2.sql b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.2.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.2.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.3.sql b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.3.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.4.sql b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.4.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/1.4.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/update.sql b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/update.sql deleted file mode 100644 index 8d65df47..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/sql/update.sql +++ /dev/null @@ -1,31 +0,0 @@ -CREATE TABLE `wholesale_prices` ( - `id` int(11) NOT NULL, - `product_stock_id` int(11) NOT NULL, - `min_qty` int(11) NOT NULL DEFAULT '0', - `max_qty` int(11) NOT NULL DEFAULT '0', - `price` double(20,2) NOT NULL DEFAULT '0.00', - `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, - `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `wholesale_prices` --- -ALTER TABLE `wholesale_prices` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `wholesale_prices` --- -ALTER TABLE `wholesale_prices` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/create.blade.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/create.blade.php deleted file mode 100644 index 12ccdd24..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/create.blade.php +++ /dev/null @@ -1,652 +0,0 @@ -@extends('seller.layouts.app') -@section('panel_content') - -
-
{{translate('Add New Wholesale Product')}}
-
-
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
-
-
- @csrf - -
-
-
{{translate('Product Information')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{translate('This is used for search. Input those words by which cutomer can find this product.')}} -
-
- - @if (addon_is_activated('pos_system')) -
- -
- -
-
- @endif - - @if (addon_is_activated('refund_request')) -
- -
- -
-
- @endif -
-
-
-
-
{{translate('Product Images')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('These images are visible in product details page gallery. Use 600x600 sizes images.')}} -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.')}} -
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- - {{translate("Use proper link without extra parameter. Don't use short share link/embeded iframe code.")}} -
-
-
-
-
-
-
{{translate('Product price + stock')}}
-
-
-
- -
- -
-
- - @if(addon_is_activated('club_point')) -
- -
- -
-
- @endif - -
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
-
-
-
-
-
- -
-
-
-
- -
-
-
- -
-
' - data-target=".qunatity-price"> - {{ translate('Add More') }} - -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
- -
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Low Stock Quantity Warning')}}
-
-
-
- - -
-
-
- -
-
-
- {{translate('Stock Visibility State')}} -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
- -
- -
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Featured')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Todays Deal')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Flash Deal')}}
-
-
-
- - -
- -
- - -
-
- - -
-
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
- -
-
- -
- -@endsection - -@section('script') - - - -@endsection diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/edit.blade.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/edit.blade.php deleted file mode 100644 index 47663766..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/edit.blade.php +++ /dev/null @@ -1,686 +0,0 @@ -@extends('seller.layouts.app') -@section('panel_content') - -
-

{{ translate('Edit Product') }}

-
-
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
-
-
- - - - @csrf -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- - @if (addon_is_activated('pos_system')) -
- -
- -
-
- @endif - - @if (addon_is_activated('refund_request')) -
- -
- - -
-
- @endif -
-
-
-
-
{{translate('Product Images')}}
-
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
-
-
-
-
{{translate('Product price + stock')}}
-
-
-
- -
- -
-
- - @if(addon_is_activated('club_point')) -
- -
- -
-
- @endif - -
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- @foreach ($product->stocks->first()->wholesalePrices as $wholesalePrice) -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
- @endforeach -
-
-
-
-
- -
-
-
-
- -
-
-
- -
-
' - data-target=".qunatity-price"> - {{ translate('Add More') }} - -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
-
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Low Stock Quantity Warning')}}
-
-
-
- - -
-
-
- -
-
-
- {{translate('Stock Visibility State')}} -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
-
-
- -
- -
-
-
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
-
-
-
{{translate('Featured')}}
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
{{translate('Todays Deal')}}
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
{{translate('Flash Deal')}}
-
-
-
- - -
- -
- - -
-
- - -
-
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - - @php - $tax_amount = 0; - $tax_type = ''; - foreach($tax->product_taxes as $row) { - if($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
-
- -
-
-
- -
- -@endsection - -@section('script') - - - -@endsection diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/index.blade.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/index.blade.php deleted file mode 100644 index 8265921e..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/frontend/seller_products/index.blade.php +++ /dev/null @@ -1,220 +0,0 @@ -@extends('seller.layouts.app') -@section('panel_content') - -
- @if (addon_is_activated('seller_subscription')) -
-
- - - -
-
{{ optional(Auth::user()->shop->seller_package)->product_upload_limit - Auth::user()->products()->count() }}
-
{{ translate('Remaining Uploads') }}
-
-
-
- @endif - - - - @if (addon_is_activated('seller_subscription')) - @php - $seller_package = \App\Models\SellerPackage::find(Auth::user()->shop->seller_package_id); - @endphp - - @endif - -
- -
-
-
-
-
{{ translate('All Wholesale Product') }}
-
-
- -
-
-
- -
-
-
- -
- - - - - - - - @if(get_setting('product_approve_by_admin')) - - @endif - - - - - - - @foreach($products as $key => $product) - - - - - - @if(get_setting('product_approve_by_admin') == 1) - - @endif - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Info')}}{{translate('Total Stock')}}{{translate('Approved')}}{{translate('Published')}}{{translate('Featured')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
- {{translate('Num of Sale')}}: {{ $product->num_of_sale }} {{translate('times')}}
- {{translate('Base Price')}}: {{ single_price($product->unit_price) }}
- {{translate('Rating')}}: {{ $product->rating }}
-
- @php - $qty = 0; - if($product->variant_product) { - foreach ($product->stocks as $key => $stock) { - $qty += $stock->qty; - echo $stock->variant.' - '.$stock->qty.'
'; - } - } - else { - $qty = optional($product->stocks->first())->qty; - echo $qty; - } - @endphp - @if($qty <= $product->low_stock_quantity) - Low - @endif -
- @if ($product->approved == 1) - {{ translate('Approved')}} - @else - {{ translate('Pending')}} - @endif - - - - - - - - - - - - - - -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/create.blade.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/create.blade.php deleted file mode 100644 index 168f43f7..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/create.blade.php +++ /dev/null @@ -1,649 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{translate('Add New Wholesale Product')}}
-
-
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
-
-
- @csrf - -
-
-
{{translate('Product Information')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{translate('This is used for search. Input those words by which cutomer can find this product.')}} -
-
- - @if (addon_is_activated('pos_system')) -
- -
- -
-
- @endif - - @if (addon_is_activated('refund_request')) -
- -
- -
-
- @endif -
-
-
-
-
{{translate('Product Images')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('These images are visible in product details page gallery. Use 600x600 sizes images.')}} -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.')}} -
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- - {{translate("Use proper link without extra parameter. Don't use short share link/embeded iframe code.")}} -
-
-
-
-
-
-
{{translate('Product price + stock')}}
-
-
-
- -
- -
-
- - @if(addon_is_activated('club_point')) -
- -
- -
-
- @endif - -
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
-
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
-
-
-
-
-
- -
-
-
-
- -
-
-
- -
-
' - data-target=".qunatity-price"> - {{ translate('Add More') }} - -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
- -
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Low Stock Quantity Warning')}}
-
-
-
- - -
-
-
- -
-
-
- {{translate('Stock Visibility State')}} -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
- -
- -
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Featured')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Todays Deal')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Flash Deal')}}
-
-
-
- - -
- -
- - -
-
- - -
-
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
- -
-
- -
- -@endsection - -@section('script') - - - -@endsection diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/edit.blade.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/edit.blade.php deleted file mode 100644 index 53b4ff33..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/edit.blade.php +++ /dev/null @@ -1,686 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-

{{ translate('Edit Product') }}

-
-
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
-
-
- - - - @csrf -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
- - @if (addon_is_activated('pos_system')) -
- -
- -
-
- @endif - - @if (addon_is_activated('refund_request')) -
- -
- - -
-
- @endif -
-
-
-
-
{{translate('Product Images')}}
-
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
-
-
-
-
{{translate('Product price + stock')}}
-
-
-
- -
- -
-
- - @if(addon_is_activated('club_point')) -
- -
- -
-
- @endif - -
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- @foreach ($product->stocks->first()->wholesalePrices as $wholesalePrice) -
-
-
- -
-
-
-
- -
-
-
-
- -
-
-
- -
-
- @endforeach -
-
-
-
-
- -
-
-
-
- -
-
-
- -
-
' - data-target=".qunatity-price"> - {{ translate('Add More') }} - -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
-
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Low Stock Quantity Warning')}}
-
-
-
- - -
-
-
- -
-
-
- {{translate('Stock Visibility State')}} -
-
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
-
-
- -
- -
-
-
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
-
-
-
{{translate('Featured')}}
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
{{translate('Todays Deal')}}
-
-
-
-
-
- -
- -
-
-
-
-
-
- -
-
-
{{translate('Flash Deal')}}
-
-
-
- - -
- -
- - -
-
- - -
-
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - - @php - $tax_amount = 0; - $tax_type = ''; - foreach($tax->product_taxes as $row) { - if($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
-
- -
-
-
- -
- -@endsection - -@section('script') - - - -@endsection diff --git a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/index.blade.php b/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/index.blade.php deleted file mode 100644 index dbb7254e..00000000 --- a/desarrollo/temp/UHzDZdgQCB/addons/wholesale/views/wholesale/products/index.blade.php +++ /dev/null @@ -1,321 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Wholesale Products')}}

-
- @if($type != 'Seller' && auth()->user()->can('add_wholesale_product')) - - @endif -
-
-
- -
-
-
-
-
{{ translate('All Wholesale Product') }}
-
- - - - @if($type != 'In House') -
- -
- @endif -
- -
-
-
- -
-
-
- -
- - - - - - - @if($type != 'In House') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'Seller') - - @endif - - - - - - @foreach($products as $key => $product) - - - - - @if($type != 'In House') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'Seller') - - @endif - - - - @endforeach - -
-
-
- -
-
-
{{translate('Name')}}{{translate('Added By')}}{{translate('Info')}}{{translate('Total Stock')}}{{translate('Todays Deal')}}{{translate('Published')}}{{translate('Approved')}}{{translate('Featured')}}{{translate('Options')}}
-
- -
-
-
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
{{ $product->user->name }} - {{translate('Num of Sale')}}: {{ $product->num_of_sale }} {{translate('times')}}
- {{translate('Base Price')}}: {{ single_price($product->unit_price) }}
- {{translate('Rating')}}: {{ $product->rating }}
-
- @php - $qty = 0; - if($product->variant_product) { - foreach ($product->stocks as $key => $stock) { - $qty += $stock->qty; - echo $stock->variant.' - '.$stock->qty.'
'; - } - } - else { - //$qty = $product->current_stock; - $qty = optional($product->stocks->first())->qty; - echo $qty; - } - @endphp - @if($qty <= $product->low_stock_quantity) - Low - @endif -
- - - - - - - - - - - - @can('edit_wholesale_product') - - - - @endcan - @can('delete_wholesale_product') - - - - @endcan -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/assets/seller_subscription.jpg b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/assets/seller_subscription.jpg deleted file mode 100644 index 37fe991e..00000000 Binary files a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/assets/seller_subscription.jpg and /dev/null differ diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/config.json b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/config.json deleted file mode 100644 index a81940f9..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/config.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name":"Seller Subscription System", - "unique_identifier":"seller_subscription", - "version":"1.9", - "minimum_item_version":"7.0.0", - "addon_banner":"seller_subscription.jpg", - "directory":[ - { - "name":[ - "resources/views/seller_packages", - "resources/views/seller_packages/frontend" - ] - } - ], - "sql_file":"", - "files":[ - { - "root_directory":"addons/seller_subscription/views/seller_packages/frontend/seller_packages_list.blade.php", - "update_directory":"resources/views/seller_packages/frontend/seller_packages_list.blade.php" - }, - { - "root_directory":"addons/seller_subscription/views/seller_packages/frontend/packages_payment_list.blade.php", - "update_directory":"resources/views/seller_packages/frontend/packages_payment_list.blade.php" - }, - { - "root_directory":"addons/seller_subscription/views/seller_packages/create.blade.php", - "update_directory":"resources/views/seller_packages/create.blade.php" - }, - { - "root_directory":"addons/seller_subscription/views/seller_packages/edit.blade.php", - "update_directory":"resources/views/seller_packages/edit.blade.php" - }, - { - "root_directory":"addons/seller_subscription/views/seller_packages/index.blade.php", - "update_directory":"resources/views/seller_packages/index.blade.php" - }, - { - "root_directory":"addons/seller_subscription/controllers/SellerPackageController.php", - "update_directory":"app/Http/Controllers/SellerPackageController.php" - }, - { - "root_directory":"addons/seller_subscription/controllers/SellerPackagePaymentController.php", - "update_directory":"app/Http/Controllers/SellerPackagePaymentController.php" - }, - { - "root_directory":"addons/seller_subscription/assets/seller_subscription.jpg", - "update_directory":"public/seller_subscription.jpg" - } - ] -} diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/controllers/SellerPackageController.php b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/controllers/SellerPackageController.php deleted file mode 100644 index 27df7f10..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/controllers/SellerPackageController.php +++ /dev/null @@ -1,240 +0,0 @@ -middleware(['permission:view_all_seller_packages'])->only('index'); - $this->middleware(['permission:add_seller_package'])->only('create'); - $this->middleware(['permission:edit_seller_package'])->only('edit'); - $this->middleware(['permission:delete_seller_package'])->only('destroy'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index() - { - $seller_packages = SellerPackage::all(); - return view('seller_packages.index', compact('seller_packages')); - } - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function create() - { - return view('seller_packages.create'); - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function store(Request $request) - { - $seller_package = new SellerPackage; - $seller_package->name = $request->name; - $seller_package->amount = $request->amount; - $seller_package->product_upload_limit = $request->product_upload_limit; - $seller_package->duration = $request->duration; - $seller_package->logo = $request->logo; - if ($seller_package->save()) { - - $seller_package_translation = SellerPackageTranslation::firstOrNew(['lang' => env('DEFAULT_LANGUAGE'), 'seller_package_id' => $seller_package->id]); - $seller_package_translation->name = $request->name; - $seller_package_translation->save(); - - flash(translate('Package has been inserted successfully'))->success(); - return redirect()->route('seller_packages.index'); - } else { - flash(translate('Something went wrong'))->error(); - return back(); - } - } - - /** - * Display the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function show($id) - { - // - } - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function edit(Request $request, $id) - { - $lang = $request->lang; - $seller_package = SellerPackage::findOrFail($id); - return view('seller_packages.edit', compact('seller_package', 'lang')); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function update(Request $request, $id) - { - $seller_package = SellerPackage::findOrFail($id); - if ($request->lang == env("DEFAULT_LANGUAGE")) { - $seller_package->name = $request->name; - } - $seller_package->amount = $request->amount; - $seller_package->product_upload_limit = $request->product_upload_limit; - $seller_package->duration = $request->duration; - $seller_package->logo = $request->logo; - if ($seller_package->save()) { - - $seller_package_translation = SellerPackageTranslation::firstOrNew(['lang' => $request->lang, 'seller_package_id' => $seller_package->id]); - $seller_package_translation->name = $request->name; - $seller_package_translation->save(); - flash(translate('Package has been inserted successfully'))->success(); - return redirect()->route('seller_packages.index'); - } else { - flash(translate('Something went wrong'))->error(); - return back(); - } - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function destroy($id) - { - $seller_package = SellerPackage::findOrFail($id); - foreach ($seller_package->seller_package_translations as $key => $seller_package_translation) { - $seller_package_translation->delete(); - } - SellerPackage::destroy($id); - flash(translate('Package has been deleted successfully'))->success(); - return redirect()->route('seller_packages.index'); - } - - - //FrontEnd - //@index - public function packages_payment_list() - { - $seller_packages_payment = SellerPackagePayment::with('seller_package')->where('user_id', Auth::user()->id)->paginate(15); - return view('seller_packages.frontend.packages_payment_list', compact('seller_packages_payment')); - } - - public function seller_packages_list() - { - $seller_packages = SellerPackage::all(); - return view('seller_packages.frontend.seller_packages_list', compact('seller_packages')); - } - - public function purchase_package(Request $request) - { - $data['seller_package_id'] = $request->seller_package_id; - $data['payment_method'] = $request->payment_option; - - $request->session()->put('payment_type', 'seller_package_payment'); - $request->session()->put('payment_data', $data); - - $seller_package = SellerPackage::findOrFail(Session::get('payment_data')['seller_package_id']); - - if ($seller_package->amount == 0) { - return $this->purchase_payment_done(Session::get('payment_data'), null); - } elseif (Auth::user()->shop->seller_package != null && $seller_package->product_upload_limit < Auth::user()->shop->seller_package->product_upload_limit) { - flash(translate('You have more uploaded products than this package limit. You need to remove excessive products to downgrade.'))->warning(); - return back(); - } - - $decorator = __NAMESPACE__ . '\\Payment\\' . str_replace(' ', '', ucwords(str_replace('_', ' ', $request->payment_option))) . "Controller"; - if (class_exists($decorator)) { - return (new $decorator)->pay($request); - } - } - - public function purchase_payment_done($payment_data, $payment) - { - $seller = Auth::user()->shop; - $seller->seller_package_id = Session::get('payment_data')['seller_package_id']; - $seller_package = SellerPackage::findOrFail(Session::get('payment_data')['seller_package_id']); - $seller->product_upload_limit = $seller_package->product_upload_limit; - $seller->package_invalid_at = date('Y-m-d', strtotime($seller->package_invalid_at . ' +' . $seller_package->duration . 'days')); - $seller->save(); - - $seller_package = new SellerPackagePayment; - $seller_package->user_id = Auth::user()->id; - $seller_package->seller_package_id = Session::get('payment_data')['seller_package_id']; - $seller_package->payment_method = Session::get('payment_data')['payment_method']; - $seller_package->payment_details = $payment; - $seller_package->approval = 1; - $seller_package->offline_payment = 2; - $seller_package->save(); - - flash(translate('Package purchasing successful'))->success(); - return redirect()->route('seller.dashboard'); - } - - public function unpublish_products(Request $request) - { - foreach (Shop::all() as $shop) { - if ($shop->package_invalid_at != null && Carbon::now()->diffInDays(Carbon::parse($shop->package_invalid_at), false) <= 0) { - foreach ($shop->user->products as $product) { - $product->published = 0; - $product->save(); - } - $shop->seller_package_id = null; - $shop->save(); - } - } - Artisan::call('cache:clear'); - } - - public function purchase_package_offline(Request $request) - { - $seller_package = SellerPackage::findOrFail($request->package_id); - - if (Auth::user()->shop->seller_package != null && $seller_package->product_upload_limit < Auth::user()->shop->seller_package->product_upload_limit) { - flash(translate('You have more uploaded products than this package limit. You need to remove excessive products to downgrade.'))->warning(); - return redirect()->route('seller.seller_packages_list'); - } - $seller_package = new SellerPackagePayment; - $seller_package->user_id = Auth::user()->id; - $seller_package->seller_package_id = $request->package_id; - $seller_package->payment_method = $request->payment_option; - $seller_package->payment_details = $request->trx_id; - $seller_package->approval = 0; - $seller_package->offline_payment = 1; - $seller_package->reciept = $request->photo; - $seller_package->save(); - flash(translate('Offline payment has been done. Please wait for response.'))->success(); - return redirect()->route('seller.products'); - } -} diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/controllers/SellerPackagePaymentController.php b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/controllers/SellerPackagePaymentController.php deleted file mode 100644 index 7019a6c7..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/controllers/SellerPackagePaymentController.php +++ /dev/null @@ -1,113 +0,0 @@ -middleware(['permission:view_all_offline_seller_package_payments'])->only('offline_payment_request'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index() - { - // - } - - public function offline_payment_request(){ - $package_payment_requests = SellerPackagePayment::where('offline_payment',1)->orderBy('id', 'desc')->paginate(10); - return view('manual_payment_methods.seller_package_payment_request', compact('package_payment_requests')); - } - - public function offline_payment_approval(Request $request) - { - $package_payment = SellerPackagePayment::findOrFail($request->id); - $package_details = SellerPackage::findOrFail($package_payment->seller_package_id); - $package_payment->approval = $request->status; - if($package_payment->save()){ - $seller = $package_payment->user->shop; - $seller->seller_package_id = $package_payment->seller_package_id; - $seller->product_upload_limit = $package_details->product_upload_limit; - $seller->package_invalid_at = date('Y-m-d', strtotime( $seller->package_invalid_at. ' +'. $package_details->duration .'days')); - if($seller->save()){ - return 1; - } - } - return 0; - } - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function create() - { - // - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function store(Request $request) - { - // - } - - /** - * Display the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function show($id) - { - // - } - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function edit($id) - { - // - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function update(Request $request, $id) - { - // - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function destroy($id) - { - // - } -} diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/documentation/documentation.pdf b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/documentation/documentation.pdf deleted file mode 100644 index f2cc8055..00000000 Binary files a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/documentation/documentation.pdf and /dev/null differ diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.1.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.1.sql deleted file mode 100644 index 0594cb3d..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.1.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE TABLE `seller_package_payments` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `seller_package_id` int(11) NOT NULL, - `payment_method` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `payment_details` longtext COLLATE utf8_unicode_ci NOT NULL, - `approval` int(1) NOT NULL, - `offline_payment` int(1) NOT NULL COMMENT '1=offline payment\r\n2=online paymnet', - `reciept` varchar(150) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - - -ALTER TABLE `seller_package_payments` - ADD PRIMARY KEY (`id`); - - -ALTER TABLE `seller_package_payments` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -COMMIT; diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.2.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.2.sql deleted file mode 100644 index 3fdd77bc..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.2.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE TABLE `seller_package_translations` ( - `id` bigint(20) NOT NULL, - `seller_package_id` bigint(20) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - -ALTER TABLE `seller_package_translations` - ADD PRIMARY KEY (`id`); - -ALTER TABLE `seller_package_translations` - MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT; - -COMMIT; diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.3.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.3.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.4.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.4.sql deleted file mode 100644 index c6b3d5bd..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.4.sql +++ /dev/null @@ -1,2 +0,0 @@ - -COMMIT; diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.5.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.5.sql deleted file mode 100644 index bccbbe7c..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.5.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE `seller_packages` CHANGE `product_upload` `product_upload_limit` INT(11) NOT NULL DEFAULT '0'; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.6.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.6.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.6.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.7.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.7.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.7.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.8.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.8.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.8.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.9.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.9.sql deleted file mode 100644 index 2c6e441a..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/1.9.sql +++ /dev/null @@ -1,4 +0,0 @@ -ALTER TABLE `seller_package_payments` CHANGE `payment_details` `payment_details` LONGTEXT CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL; -ALTER TABLE `seller_package_payments` CHANGE `payment_method` `payment_method` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/update.sql b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/update.sql deleted file mode 100644 index a6cf81b0..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/sql/update.sql +++ /dev/null @@ -1,113 +0,0 @@ -ALTER TABLE `sellers` ADD `seller_package_id` INT NULL DEFAULT NULL AFTER `user_id`; - -ALTER TABLE `sellers` ADD `remaining_uploads` INT NOT NULL DEFAULT '0' AFTER `seller_package_id`; - -ALTER TABLE `sellers` ADD `remaining_digital_uploads` INT NOT NULL DEFAULT '0' AFTER `remaining_uploads`; - -ALTER TABLE `sellers` ADD `invalid_at` DATE NULL DEFAULT NULL AFTER `remaining_digital_uploads`; - -ALTER TABLE `sellers` ADD `remaining_auction_uploads` INT(11) NULL DEFAULT '0' AFTER `invalid_at`; - --- phpMyAdmin SQL Dump --- version 4.9.0.1 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Jul 08, 2020 at 10:32 AM --- Server version: 10.3.16-MariaDB --- PHP Version: 7.3.7 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `shop_demo` --- - --- -------------------------------------------------------- - --- --- Table structure for table `seller_packages` --- - -CREATE TABLE `seller_packages` ( - `id` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `amount` double(11,2) NOT NULL DEFAULT 0.00, - `product_upload_limit` int(11) NOT NULL DEFAULT 0, - `logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `duration` int(11) NOT NULL DEFAULT 0, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `seller_packages` --- -ALTER TABLE `seller_packages` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `seller_packages` --- -ALTER TABLE `seller_packages` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; - - -CREATE TABLE `seller_package_translations` ( - `id` bigint(20) NOT NULL, - `seller_package_id` bigint(20) NOT NULL, - `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL, - `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - -ALTER TABLE `seller_package_translations` - ADD PRIMARY KEY (`id`); - -ALTER TABLE `seller_package_translations` - MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT; - - -CREATE TABLE `seller_package_payments` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `seller_package_id` int(11) NOT NULL, - `payment_method` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `payment_details` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `approval` int(1) NOT NULL, - `offline_payment` int(1) NOT NULL COMMENT '1=offline payment\r\n2=online paymnet', - `reciept` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - - -ALTER TABLE `seller_package_payments` - ADD PRIMARY KEY (`id`); - -ALTER TABLE `seller_package_payments` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/create.blade.php b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/create.blade.php deleted file mode 100644 index eee11104..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/create.blade.php +++ /dev/null @@ -1,60 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Create New Seller Package')}}
-
- -
- @csrf -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
-
- -@endsection diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/edit.blade.php b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/edit.blade.php deleted file mode 100644 index 7a6efd41..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/edit.blade.php +++ /dev/null @@ -1,71 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{translate('Update Package Information')}}
-
- -
-
-
- -
- - - @csrf -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
-
- -@endsection diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/frontend/packages_payment_list.blade.php b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/frontend/packages_payment_list.blade.php deleted file mode 100644 index 07646097..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/frontend/packages_payment_list.blade.php +++ /dev/null @@ -1,52 +0,0 @@ -@extends('seller.layouts.app') -@section('panel_content') - -
-
-
-

{{ translate('Purchase Package List') }}

-
-
-
- -
-
-
-
{{ translate('All Purchase Package') }}
-
-
-
- - - - - - - - - - - - @foreach ($seller_packages_payment as $key => $payment) - - - - - - - @endforeach - -
#{{ translate('Package')}}{{ translate('Package Price')}}{{ translate('Payment Type')}}
{{ ($key+1) + ($seller_packages_payment->currentPage() - 1) * $seller_packages_payment->perPage() }}{{ $payment->seller_package->name ?? translate('Package Unavailable') }}{{ $payment->seller_package->amount ?? translate('Package Unavailable') }} - @if($payment->offline_payment == 1) - {{ translate('Offline Payment') }} - @else - {{ translate('Online Payment') }} - @endif -
-
- {{ $seller_packages_payment->links() }} -
-
-
- -@endsection diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/frontend/seller_packages_list.blade.php b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/frontend/seller_packages_list.blade.php deleted file mode 100644 index 68ac7273..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/frontend/seller_packages_list.blade.php +++ /dev/null @@ -1,254 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
-
-
-
-

{{ translate('Premium Packages for Sellers') }}

-
-
-
-
- -
-
-
- @foreach ($seller_packages as $key => $seller_package) -
-
-
-
- -
{{ $seller_package->getTranslation('name') }}
-
-
    -
  • - - {{ $seller_package->product_upload_limit }} {{ translate('Product Upload Limit') }} -
  • -
-
- @if ($seller_package->amount == 0) - {{ translate('Free') }} - @else - {{ single_price($seller_package->amount) }} - @endif - {{ $seller_package->duration }}
{{ translate('Days') }}
-
- -
- @if ($seller_package->amount == 0) - - @else - @if (addon_is_activated('offline_payment')) - - @else - - @endif - @endif -
-
-
-
- @endforeach -
-
-
-@endsection - -@section('modal') - - - - - - - - - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/index.blade.php b/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/index.blade.php deleted file mode 100644 index d19aa6e0..00000000 --- a/desarrollo/temp/Uxaqsene2f/addons/seller_subscription/views/seller_packages/index.blade.php +++ /dev/null @@ -1,51 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-

{{translate('All Seller Packages')}}

-
- @can('add_seller_package') - - @endcan -
-
- - -
- @foreach ($seller_packages as $key => $seller_package) -
-
-
- {{ translate('Package Logo')}} -

{{ $seller_package->getTranslation('name') }}

-

{{single_price($seller_package->amount)}}

-

{{translate('Product Upload Limit') }}: - {{$seller_package->product_upload_limit}} -

-

{{translate('Package Duration') }}: - {{$seller_package->duration}} {{translate('days')}} -

-
- @can('edit_seller_package') - {{translate('Edit')}} - @endcan - @can('delete_seller_package') - {{translate('Delete')}} - @endcan -
-
-
-
- @endforeach -
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/assets/affiliate_banner.jpg b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/assets/affiliate_banner.jpg deleted file mode 100644 index 2642e24f..00000000 Binary files a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/assets/affiliate_banner.jpg and /dev/null differ diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/config.json b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/config.json deleted file mode 100644 index 49aee10d..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/config.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "name" : "affiliate", - - "unique_identifier" : "affiliate_system", - - "version" : "1.9", - - "minimum_item_version" : "7.0.0", - - "addon_banner" : "affiliate_banner.jpg", - - "directory" : - [ - { - "name" : ["resources/views/affiliate", "resources/views/affiliate/frontend"] - } - ], - - "sql_file" : "", - - "files" : - [ - { - "root_directory" : "addons/affiliate_system/views/affiliate/frontend/apply_for_affiliate.blade.php", - "update_directory" : "resources/views/affiliate/frontend/apply_for_affiliate.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/frontend/index.blade.php", - "update_directory" : "resources/views/affiliate/frontend/index.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/frontend/payment_history.blade.php", - "update_directory" : "resources/views/affiliate/frontend/payment_history.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/frontend/payment_settings.blade.php", - "update_directory" : "resources/views/affiliate/frontend/payment_settings.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/frontend/withdraw_request_history.blade.php", - "update_directory" : "resources/views/affiliate/frontend/withdraw_request_history.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/affiliate_logs.blade.php", - "update_directory" : "resources/views/affiliate/affiliate_logs.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/affiliate_withdraw_modal.blade.php", - "update_directory" : "resources/views/affiliate/affiliate_withdraw_modal.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/affiliate_withdraw_requests.blade.php", - "update_directory" : "resources/views/affiliate/affiliate_withdraw_requests.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/configs.blade.php", - "update_directory" : "resources/views/affiliate/configs.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/index.blade.php", - "update_directory" : "resources/views/affiliate/index.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/payment_history.blade.php", - "update_directory" : "resources/views/affiliate/payment_history.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/payment_modal.blade.php", - "update_directory" : "resources/views/affiliate/payment_modal.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/refferal_users.blade.php", - "update_directory" : "resources/views/affiliate/refferal_users.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/show_verification_request.blade.php", - "update_directory" : "resources/views/affiliate/show_verification_request.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/views/affiliate/users.blade.php", - "update_directory" : "resources/views/affiliate/users.blade.php" - }, - { - "root_directory" : "addons/affiliate_system/controllers/AffiliateController.php", - "update_directory" : "app/Http/Controllers/AffiliateController.php" - }, - { - "root_directory" : "addons/affiliate_system/assets/affiliate_banner.jpg", - "update_directory" : "public/affiliate_banner.jpg" - } - ] -} diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/controllers/AffiliateController.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/controllers/AffiliateController.php deleted file mode 100644 index f12ba2d0..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/controllers/AffiliateController.php +++ /dev/null @@ -1,564 +0,0 @@ -middleware(['permission:affiliate_registration_form_config'])->only('configs'); - $this->middleware(['permission:affiliate_configurations'])->only('index'); - $this->middleware(['permission:view_affiliate_users'])->only('users'); - $this->middleware(['permission:pay_to_affiliate_user'])->only('payment_modal'); - $this->middleware(['permission:affiliate_users_payment_history'])->only('payment_history'); - $this->middleware(['permission:view_all_referral_users'])->only('refferal_users'); - $this->middleware(['permission:view_affiliate_withdraw_requests'])->only('affiliate_withdraw_requests'); - $this->middleware(['permission:accept_affiliate_withdraw_requests'])->only('affiliate_withdraw_modal'); - $this->middleware(['permission:reject_affiliate_withdraw_request'])->only('reject_withdraw_request'); - $this->middleware(['permission:view_affiliate_logs'])->only('affiliate_logs_admin'); - } - - // - public function index(){ - return view('affiliate.index'); - } - - public function affiliate_option_store(Request $request){ - //dd($request->all()); - $affiliate_option = AffiliateOption::where('type', $request->type)->first(); - if($affiliate_option == null){ - $affiliate_option = new AffiliateOption; - } - $affiliate_option->type = $request->type; - - $commision_details = array(); - if ($request->type == 'user_registration_first_purchase') { - $affiliate_option->percentage = $request->percentage; - } - elseif ($request->type == 'product_sharing') { - $commision_details['commission'] = $request->amount; - $commision_details['commission_type'] = $request->amount_type; - } - elseif ($request->type == 'category_wise_affiliate') { - foreach(Category::all() as $category) { - $data['category_id'] = $request['categories_id_'.$category->id]; - $data['commission'] = $request['commison_amounts_'.$category->id]; - $data['commission_type'] = $request['commison_types_'.$category->id]; - array_push($commision_details, $data); - } - } - elseif ($request->type == 'max_affiliate_limit') { - $affiliate_option->percentage = $request->percentage; - } - $affiliate_option->details = json_encode($commision_details); - - if ($request->has('status')) { - $affiliate_option->status = 1; - if($request->type == 'product_sharing'){ - $affiliate_option_status_update = AffiliateOption::where('type', 'category_wise_affiliate')->first(); - $affiliate_option_status_update->status = 0; - $affiliate_option_status_update->save(); - } - if($request->type == 'category_wise_affiliate'){ - $affiliate_option_status_update = AffiliateOption::where('type', 'product_sharing')->first(); - $affiliate_option_status_update->status = 0; - $affiliate_option_status_update->save(); - } - } - else { - $affiliate_option->status = 0; - } - $affiliate_option->save(); - - flash("This has been updated successfully")->success(); - return back(); - } - - public function configs(){ - return view('affiliate.configs'); - } - - public function config_store(Request $request){ - if($request->type == 'validation_time') { - //affiliate validation time - $affiliate_config = AffiliateConfig::where('type', $request->type)->first(); - if($affiliate_config == null){ - $affiliate_config = new AffiliateConfig; - } - $affiliate_config->type = $request->type; - $affiliate_config->value = $request[$request->type]; - $affiliate_config->save(); - - flash("Validation time updated successfully")->success(); - } else { - - $form = array(); - $select_types = ['select', 'multi_select', 'radio']; - $j = 0; - for ($i=0; $i < count($request->type); $i++) { - $item['type'] = $request->type[$i]; - $item['label'] = $request->label[$i]; - if(in_array($request->type[$i], $select_types)){ - $item['options'] = json_encode($request['options_'.$request->option[$j]]); - $j++; - } - array_push($form, $item); - } - $affiliate_config = AffiliateConfig::where('type', 'verification_form')->first(); - $affiliate_config->value = json_encode($form); - - flash("Verification form updated successfully")->success(); - } - if($affiliate_config->save()){ - return back(); - } - } - - public function apply_for_affiliate(Request $request){ - if(Auth::check() && AffiliateUser::where('user_id', Auth::user()->id)->first() != null){ - flash(translate("You are already an affiliate user!"))->warning(); - return back(); - } - return view('affiliate.frontend.apply_for_affiliate'); - } - - public function affiliate_logs_admin() - { - $affiliate_logs = AffiliateLog::latest()->paginate(10); - return view('affiliate.affiliate_logs',compact('affiliate_logs')); - } - - public function store_affiliate_user(Request $request){ - if(!Auth::check()){ - if(User::where('email', $request->email)->first() != null){ - flash(translate('Email already exists!'))->error(); - return back(); - } - if($request->password == $request->password_confirmation){ - $user = new User; - $user->name = $request->name; - $user->email = $request->email; - $user->user_type = "customer"; - $user->password = Hash::make($request->password); - $user->save(); - - auth()->login($user, false); - - if(get_setting('email_verification') != 1){ - $user->email_verified_at = date('Y-m-d H:m:s'); - $user->save(); - } - else { - event(new Registered($user)); - } - } - else{ - flash(translate('Sorry! Password did not match.'))->error(); - return back(); - } - } - - $affiliate_user = Auth::user()->affiliate_user; - if ($affiliate_user == null) { - $affiliate_user = new AffiliateUser; - $affiliate_user->user_id = Auth::user()->id; - } - $data = array(); - $i = 0; - foreach (json_decode(AffiliateConfig::where('type', 'verification_form')->first()->value) as $key => $element) { - $item = array(); - if ($element->type == 'text') { - $item['type'] = 'text'; - $item['label'] = $element->label; - $item['value'] = $request['element_'.$i]; - } - elseif ($element->type == 'select' || $element->type == 'radio') { - $item['type'] = 'select'; - $item['label'] = $element->label; - $item['value'] = $request['element_'.$i]; - } - elseif ($element->type == 'multi_select') { - $item['type'] = 'multi_select'; - $item['label'] = $element->label; - $item['value'] = json_encode($request['element_'.$i]); - } - elseif ($element->type == 'file') { - $item['type'] = 'file'; - $item['label'] = $element->label; - $item['value'] = $request['element_'.$i]->store('uploads/affiliate_verification_form'); - } - array_push($data, $item); - $i++; - } - $affiliate_user->informations = json_encode($data); - if($affiliate_user->save()){ - flash(translate('Your verification request has been submitted successfully!'))->success(); - return redirect()->route('home'); - } - - flash(translate('Sorry! Something went wrong.'))->error(); - return back(); - } - - public function users(){ - $affiliate_users = AffiliateUser::paginate(12); - return view('affiliate.users', compact('affiliate_users')); - } - - public function show_verification_request($id){ - $affiliate_user = AffiliateUser::findOrFail($id); - return view('affiliate.show_verification_request', compact('affiliate_user')); - } - - public function approve_user($id) - { - $affiliate_user = AffiliateUser::findOrFail($id); - $affiliate_user->status = 1; - if($affiliate_user->save()){ - flash(translate('Affiliate user has been approved successfully'))->success(); - return redirect()->route('affiliate.users'); - } - flash(translate('Something went wrong'))->error(); - return back(); - } - - public function reject_user($id) - { - $affiliate_user = AffiliateUser::findOrFail($id); - $affiliate_user->status = 0; - $affiliate_user->informations = null; - if($affiliate_user->save()){ - flash(translate('Affiliate user request has been rejected successfully'))->success(); - return redirect()->route('affiliate.users'); - } - flash(translate('Something went wrong'))->error(); - return back(); - } - - public function updateApproved(Request $request) - { - $affiliate_user = AffiliateUser::findOrFail($request->id); - $affiliate_user->status = $request->status; - if($affiliate_user->save()){ - return 1; - } - return 0; - } - - public function payment_modal(Request $request) - { - $affiliate_user = AffiliateUser::findOrFail($request->id); - return view('affiliate.payment_modal', compact('affiliate_user')); - } - - public function payment_store(Request $request){ - $affiliate_payment = new AffiliatePayment; - $affiliate_payment->affiliate_user_id = $request->affiliate_user_id; - $affiliate_payment->amount = $request->amount; - $affiliate_payment->payment_method = $request->payment_method; - $affiliate_payment->save(); - - $affiliate_user = AffiliateUser::findOrFail($request->affiliate_user_id); - $affiliate_user->balance -= $request->amount; - $affiliate_user->save(); - - flash(translate('Payment completed'))->success(); - return back(); - } - - public function payment_history($id){ - $affiliate_user = AffiliateUser::findOrFail(decrypt($id)); - $affiliate_payments = $affiliate_user->affiliate_payments(); - return view('affiliate.payment_history', compact('affiliate_payments', 'affiliate_user')); - } - - public function user_index(Request $request){ - $affiliate_logs = AffiliateLog::where('referred_by_user', Auth::user()->id)->latest()->paginate(10); - - $query = AffiliateStats::query(); - $query = $query->select( - DB::raw('SUM(no_of_click) AS count_click, SUM(no_of_order_item) AS count_item, SUM(no_of_delivered) AS count_delivered, SUM(no_of_cancel) AS count_cancel') - ); - if($request->type == 'Today') { - $query->whereDate('created_at', Carbon::today()); - } else if($request->type == '7' || $request->type == '30') { - $query->whereRaw('created_at <= NOW() AND created_at >= DATE_SUB(created_at, INTERVAL '. $request->type .' DAY)'); - } - $query->where('affiliate_user_id', Auth::user()->id); - $affliate_stats = $query->first(); - $type = $request->type; - -// dd($type); - return view('affiliate.frontend.index', compact('affiliate_logs', 'affliate_stats', 'type')); - } - - // payment history for user - public function user_payment_history(){ - $affiliate_user = Auth::user()->affiliate_user; - $affiliate_payments = $affiliate_user->affiliate_payments(); - - return view('affiliate.frontend.payment_history', compact('affiliate_payments')); - } - - // withdraw request history for user - public function user_withdraw_request_history(){ - $affiliate_user = Auth::user()->affiliate_user; - $affiliate_withdraw_requests = AffiliateWithdrawRequest::where('user_id', Auth::user()->id)->orderBy('id', 'desc')->paginate(10); - - return view('affiliate.frontend.withdraw_request_history', compact('affiliate_withdraw_requests')); - } - - public function payment_settings(){ - $affiliate_user = Auth::user()->affiliate_user; - return view('affiliate.frontend.payment_settings', compact('affiliate_user')); - } - - public function payment_settings_store(Request $request){ - $affiliate_user = Auth::user()->affiliate_user; - $affiliate_user->paypal_email = $request->paypal_email; - $affiliate_user->bank_information = $request->bank_information; - $affiliate_user->save(); - flash(translate('Affiliate payment settings has been updated successfully'))->success(); - return redirect()->route('affiliate.user.index'); - } - - public function processAffiliatePoints(Order $order){ - if(addon_is_activated('affiliate_system')){ - if(AffiliateOption::where('type', 'user_registration_first_purchase')->first()->status){ - if ($order->user != null && $order->user->orders->count() == 1) { - if($order->user->referred_by != null){ - $user = User::find($order->user->referred_by); - if ($user != null) { - $amount = (AffiliateOption::where('type', 'user_registration_first_purchase')->first()->percentage * $order->grand_total)/100; - $affiliate_user = $user->affiliate_user; - if($affiliate_user != null){ - $affiliate_user->balance += $amount; - $affiliate_user->save(); - - // Affiliate log - $affiliate_log = new AffiliateLog; - $affiliate_log->user_id = $order->user_id; - $affiliate_log->referred_by_user = $order->user->referred_by; - $affiliate_log->amount = $amount; - $affiliate_log->order_id = $order->id; - $affiliate_log->affiliate_type = 'user_registration_first_purchase'; - $affiliate_log->save(); - } - } - } - } - } - if(AffiliateOption::where('type', 'product_sharing')->first()->status) { - foreach ($order->orderDetails as $key => $orderDetail) { - $amount = 0; - if($orderDetail->product_referral_code != null) { - $referred_by_user = User::where('referral_code', $orderDetail->product_referral_code)->first(); - if($referred_by_user != null) { - if(AffiliateOption::where('type', 'product_sharing')->first()->details != null && json_decode(AffiliateOption::where('type', 'product_sharing')->first()->details)->commission_type == 'amount') { - $amount = json_decode(AffiliateOption::where('type', 'product_sharing')->first()->details)->commission; - } - elseif(AffiliateOption::where('type', 'product_sharing')->first()->details != null && json_decode(AffiliateOption::where('type', 'product_sharing')->first()->details)->commission_type == 'percent') { - $amount = (json_decode(AffiliateOption::where('type', 'product_sharing')->first()->details)->commission * $orderDetail->price)/100; - } - $affiliate_user = $referred_by_user->affiliate_user; - if($affiliate_user != null) { - $affiliate_user->balance += $amount; - $affiliate_user->save(); - - // Affiliate log - $affiliate_log = new AffiliateLog; - if($order->user_id != null) { - $affiliate_log->user_id = $order->user_id; - } - else { - $affiliate_log->guest_id = $order->guest_id; - } - $affiliate_log->referred_by_user = $referred_by_user->id; - $affiliate_log->amount = $amount; - $affiliate_log->order_id = $order->id; - $affiliate_log->order_detail_id = $orderDetail->id; - $affiliate_log->affiliate_type = 'product_sharing'; - $affiliate_log->save(); - } - } - } - } - } - elseif (AffiliateOption::where('type', 'category_wise_affiliate')->first()->status) { - foreach ($order->orderDetails as $key => $orderDetail) { - $amount = 0; - if($orderDetail->product_referral_code != null) { - $referred_by_user = User::where('referral_code', $orderDetail->product_referral_code)->first(); - if($referred_by_user != null) { - if(AffiliateOption::where('type', 'category_wise_affiliate')->first()->details != null){ - foreach (json_decode(AffiliateOption::where('type', 'category_wise_affiliate')->first()->details) as $key => $value) { - if($value->category_id == $orderDetail->product->category->id){ - if($value->commission_type == 'amount'){ - $amount = $value->commission; - } - else { - $amount = ($value->commission * $orderDetail->price)/100; - } - } - } - } - $affiliate_user = $referred_by_user->affiliate_user; - if($affiliate_user != null){ - $affiliate_user->balance += $amount; - $affiliate_user->save(); - - // Affiliate log - $affiliate_log = new AffiliateLog; - if($order->user_id != null){ - $affiliate_log->user_id = $order->user_id; - } - else{ - $affiliate_log->guest_id = $order->guest_id; - } - $affiliate_log->referred_by_user = $referred_by_user->id; - $affiliate_log->amount = $amount; - $affiliate_log->order_id = $order->id; - $affiliate_log->order_detail_id = $orderDetail->id; - $affiliate_log->affiliate_type = 'category_wise_affiliate'; - $affiliate_log->save(); - } - } - } - } - } - } - } - - public function processAffiliateStats($affiliate_user_id, $no_click = 0, $no_item = 0, $no_delivered = 0, $no_cancel = 0) { - $affiliate_stats = AffiliateStats::whereDate('created_at', Carbon::today()) - ->where("affiliate_user_id", $affiliate_user_id) - ->first(); - - if(!$affiliate_stats) { - $affiliate_stats = new AffiliateStats; - $affiliate_stats->no_of_order_item = 0; - $affiliate_stats->no_of_delivered = 0; - $affiliate_stats->no_of_cancel = 0; - $affiliate_stats->no_of_click = 0; - } - - $affiliate_stats->no_of_order_item += $no_item; - $affiliate_stats->no_of_delivered += $no_delivered; - $affiliate_stats->no_of_cancel += $no_cancel; - $affiliate_stats->no_of_click += $no_click; - $affiliate_stats->affiliate_user_id = $affiliate_user_id; - -// dd($affiliate_stats); - $affiliate_stats->save(); - -// foreach($order->orderDetails as $key => $orderDetail) { -// $referred_by_user = User::where('referral_code', $orderDetail->product_referral_code)->first(); -// -// if($referred_by_user != null) { -// if($orderDetail->delivery_status == 'delivered') { -// $affiliate_stats->no_of_delivered++; -// } if($orderDetail->delivery_status == 'cancelled') { -// $affiliate_stats->no_of_cancel++; -// } -// -// $affiliate_stats->affiliate_user_id = $referred_by_user->id; -// dd($affiliate_stats); -// $affiliate_stats->save(); -// } -// } - } - - public function refferal_users() - { - $refferal_users = User::where('referred_by', '!=' , null)->paginate(10); - return view('affiliate.refferal_users', compact('refferal_users')); - } - - // Affiliate Withdraw Request - public function withdraw_request_store(Request $request) - { - $withdraw_request = new AffiliateWithdrawRequest; - $withdraw_request->user_id = Auth::user()->id; - $withdraw_request->amount = $request->amount; - $withdraw_request->status = 0 ; - - if($withdraw_request->save()){ - - $affiliate_user = AffiliateUser::where('user_id',Auth::user()->id)->first(); - $affiliate_user->balance = $affiliate_user->balance - $request->amount; - $affiliate_user->save(); - - flash(translate('New withdraw request created successfully'))->success(); - return redirect()->route('affiliate.user.withdraw_request_history'); - } - else{ - flash(translate('Something went wrong'))->error(); - return back(); - } - } - - public function affiliate_withdraw_requests() - { - $affiliate_withdraw_requests = AffiliateWithdrawRequest::orderBy('id', 'desc')->paginate(10); - return view('affiliate.affiliate_withdraw_requests', compact('affiliate_withdraw_requests')); - } - - public function affiliate_withdraw_modal(Request $request) - { - $affiliate_withdraw_request = AffiliateWithdrawRequest::findOrFail($request->id); - $affiliate_user = AffiliateUser::where('user_id',$affiliate_withdraw_request->user_id)->first(); - return view('affiliate.affiliate_withdraw_modal', compact('affiliate_withdraw_request','affiliate_user')); - } - - public function withdraw_request_payment_store(Request $request){ - $affiliate_payment = new AffiliatePayment; - $affiliate_payment->affiliate_user_id = $request->affiliate_user_id; - $affiliate_payment->amount = $request->amount; - $affiliate_payment->payment_method = $request->payment_method; - $affiliate_payment->save(); - - if ($request->has('affiliate_withdraw_request_id')) { - $affiliate_withdraw_request = AffiliateWithdrawRequest::findOrFail($request->affiliate_withdraw_request_id); - $affiliate_withdraw_request->status = 1; - $affiliate_withdraw_request->save(); - } - - flash(translate('Payment completed'))->success(); - return back(); - } - - public function reject_withdraw_request($id) - { - $affiliate_withdraw_request = AffiliateWithdrawRequest::findOrFail($id); - $affiliate_withdraw_request->status = 2; - if($affiliate_withdraw_request->save()){ - - $affiliate_user = AffiliateUser::where('user_id', $affiliate_withdraw_request->user_id)->first(); - $affiliate_user->balance = $affiliate_user->balance + $affiliate_withdraw_request->amount; - $affiliate_user->save(); - - flash(translate('Affiliate withdraw request has been rejected successfully'))->success(); - return redirect()->route('affiliate.withdraw_requests'); - } - flash(translate('Something went wrong'))->error(); - return back(); - } - -} diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/documentation/documentation.pdf b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/documentation/documentation.pdf deleted file mode 100644 index 84d2db41..00000000 Binary files a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/documentation/documentation.pdf and /dev/null differ diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.1.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.1.sql deleted file mode 100644 index 81713dce..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.1.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT INTO `affiliate_options` (`id`, `type`, `details`, `percentage`, `status`, `created_at`, `updated_at`) VALUES (NULL, 'category_wise_affiliate', NULL, '0', '0', current_timestamp(), current_timestamp()); -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.2.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.2.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.2.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.3.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.3.sql deleted file mode 100644 index b4f57c3e..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.3.sql +++ /dev/null @@ -1,16 +0,0 @@ -CREATE TABLE `affiliate_withdraw_requests` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `amount` double(10,2) NOT NULL, - `status` int(1) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - -ALTER TABLE `affiliate_withdraw_requests` - ADD PRIMARY KEY (`id`); - -ALTER TABLE `affiliate_withdraw_requests` -MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.4.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.4.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.4.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.5.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.5.sql deleted file mode 100644 index 6fde4c82..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.5.sql +++ /dev/null @@ -1,22 +0,0 @@ -CREATE TABLE `affiliate_logs` ( - `id` int(11) NOT NULL, - `user_id` int(11) DEFAULT NULL, - `guest_id` int(11) DEFAULT NULL, - `referred_by_user` int(11) NOT NULL, - `amount` double(20,2) NOT NULL, - `order_id` bigint(20) DEFAULT NULL, - `order_detail_id` bigint(20) DEFAULT NULL, - `affiliate_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `status` tinyint(4) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - - -ALTER TABLE `affiliate_logs` - ADD PRIMARY KEY (`id`); - - -ALTER TABLE `affiliate_logs` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.6.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.6.sql deleted file mode 100644 index 8ab8e993..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.6.sql +++ /dev/null @@ -1,15 +0,0 @@ -CREATE TABLE `affiliate_stats` ( - `id` int(11) NOT NULL, - `affiliate_user_id` int(11) NOT NULL, - `no_of_click` int(11) NOT NULL DEFAULT 0, - `no_of_order_item` int(11) NOT NULL DEFAULT 0, - `no_of_delivered` int(11) NOT NULL DEFAULT 0, - `no_of_cancel` int(11) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -ALTER TABLE `affiliate_stats` ADD PRIMARY KEY (`id`); -ALTER TABLE `affiliate_stats` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.7.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.7.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.7.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.8.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.8.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.8.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.9.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.9.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/1.9.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/update.sql b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/update.sql deleted file mode 100644 index f790c6ac..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/sql/update.sql +++ /dev/null @@ -1,343 +0,0 @@ --- phpMyAdmin SQL Dump --- version 4.9.0.1 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Mar 10, 2020 at 09:14 AM --- Server version: 10.3.16-MariaDB --- PHP Version: 7.3.7 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `shop` --- - --- -------------------------------------------------------- - --- --- Table structure for table `affiliate_options` --- - -CREATE TABLE `affiliate_options` ( - `id` int(11) NOT NULL, - `type` varchar(255) COLLATE utf32_unicode_ci DEFAULT NULL, - `details` LONGTEXT COLLATE utf32_unicode_ci DEFAULT NULL, - `percentage` double NOT NULL DEFAULT 0, - `status` int(1) NOT NULL DEFAULT 1, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci; - --- --- Dumping data for table `affiliate_options` --- - -INSERT INTO `affiliate_options` (`id`, `type`, `details`, `percentage`, `status`, `created_at`, `updated_at`) VALUES -(2, 'user_registration_first_purchase', NULL, 20, 1, '2020-03-03 05:08:37', '2020-03-05 03:56:30'), -(3, 'product_sharing', NULL, 20, 0, '2020-03-08 01:55:03', '2020-03-10 02:12:32'), -(4, 'category_wise_affiliate', NULL, 0, 0, '2020-03-08 01:55:03', '2020-03-10 02:12:32'); - --- --- Indexes for dumped tables --- - --- --- Indexes for table `affiliate_options` --- -ALTER TABLE `affiliate_options` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `affiliate_options` --- -ALTER TABLE `affiliate_options` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - - --- phpMyAdmin SQL Dump --- version 4.9.0.1 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Mar 10, 2020 at 09:14 AM --- Server version: 10.3.16-MariaDB --- PHP Version: 7.3.7 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `shop` --- - --- -------------------------------------------------------- - --- --- Table structure for table `affiliate_configs` --- - -CREATE TABLE `affiliate_configs` ( - `id` int(11) NOT NULL, - `type` varchar(1000) COLLATE utf32_unicode_ci DEFAULT NULL, - `value` text COLLATE utf32_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci; - --- --- Dumping data for table `affiliate_configs` --- - -INSERT INTO `affiliate_configs` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES -(1, 'verification_form', '[{\"type\":\"text\",\"label\":\"Your name\"},{\"type\":\"text\",\"label\":\"Email\"},{\"type\":\"text\",\"label\":\"Full Address\"},{\"type\":\"text\",\"label\":\"Phone Number\"},{\"type\":\"text\",\"label\":\"How will you affiliate?\"}]', '2020-03-09 09:56:21', '2020-03-09 04:30:59'); - --- --- Indexes for dumped tables --- - --- --- Indexes for table `affiliate_configs` --- -ALTER TABLE `affiliate_configs` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `affiliate_configs` --- -ALTER TABLE `affiliate_configs` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - --- phpMyAdmin SQL Dump --- version 4.9.0.1 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Mar 10, 2020 at 09:14 AM --- Server version: 10.3.16-MariaDB --- PHP Version: 7.3.7 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `shop` --- - --- -------------------------------------------------------- - --- --- Table structure for table `affiliate_users` --- - -CREATE TABLE `affiliate_users` ( - `id` int(11) NOT NULL, - `paypal_email` varchar(255) COLLATE utf32_unicode_ci DEFAULT NULL, - `bank_information` text COLLATE utf32_unicode_ci DEFAULT NULL, - `user_id` int(11) NOT NULL, - `informations` text COLLATE utf32_unicode_ci DEFAULT NULL, - `balance` double(10,2) NOT NULL DEFAULT 0.00, - `status` int(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci; - --- --- Dumping data for table `affiliate_users` --- - -INSERT INTO `affiliate_users` (`id`, `paypal_email`, `bank_information`, `user_id`, `informations`, `balance`, `status`, `created_at`, `updated_at`) VALUES -(1, 'demo@gmail.com', '123456', 8, '[{\"type\":\"text\",\"label\":\"Your name\",\"value\":\"Nostrum dicta sint l\"},{\"type\":\"text\",\"label\":\"Email\",\"value\":\"Aut perferendis null\"},{\"type\":\"text\",\"label\":\"Full Address\",\"value\":\"Voluptatem Sit dolo\"},{\"type\":\"text\",\"label\":\"Phone Number\",\"value\":\"Ut ad beatae occaeca\"},{\"type\":\"text\",\"label\":\"How will you affiliate?\",\"value\":\"Porro sint soluta u\"}]', 30.00, 1, '2020-03-09 05:35:07', '2020-03-10 02:04:30'); - --- --- Indexes for dumped tables --- - --- --- Indexes for table `affiliate_users` --- -ALTER TABLE `affiliate_users` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `affiliate_users` --- -ALTER TABLE `affiliate_users` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - --- phpMyAdmin SQL Dump --- version 4.9.0.1 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Mar 10, 2020 at 09:14 AM --- Server version: 10.3.16-MariaDB --- PHP Version: 7.3.7 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `shop` --- - --- -------------------------------------------------------- - --- --- Table structure for table `affiliate_payments` --- - -CREATE TABLE `affiliate_payments` ( - `id` int(11) NOT NULL, - `affiliate_user_id` int(11) NOT NULL, - `amount` double(8,2) NOT NULL, - `payment_method` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `payment_details` longtext COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `affiliate_payments` --- - -INSERT INTO `affiliate_payments` (`id`, `affiliate_user_id`, `amount`, `payment_method`, `payment_details`, `created_at`, `updated_at`) VALUES -(2, 1, 20.00, 'Paypal', NULL, '2020-03-10 02:04:30', '2020-03-10 02:04:30'); - --- --- Indexes for dumped tables --- - --- --- Indexes for table `affiliate_payments` --- -ALTER TABLE `affiliate_payments` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `affiliate_payments` --- -ALTER TABLE `affiliate_payments` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - - - - -CREATE TABLE `affiliate_withdraw_requests` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `amount` double(10,2) NOT NULL, - `status` int(1) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - -ALTER TABLE `affiliate_withdraw_requests` - ADD PRIMARY KEY (`id`); - -ALTER TABLE `affiliate_withdraw_requests` -MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - - -CREATE TABLE `affiliate_logs` ( - `id` int(11) NOT NULL, - `user_id` int(11) DEFAULT NULL, - `guest_id` int(11) DEFAULT NULL, - `referred_by_user` int(11) NOT NULL, - `amount` double(20,2) NOT NULL, - `order_id` bigint(20) DEFAULT NULL, - `order_detail_id` bigint(20) DEFAULT NULL, - `affiliate_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `status` tinyint(4) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - - -ALTER TABLE `affiliate_logs` - ADD PRIMARY KEY (`id`); - - -ALTER TABLE `affiliate_logs` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -CREATE TABLE `affiliate_stats` ( -`id` int(11) NOT NULL, -`affiliate_user_id` int(11) NOT NULL, -`no_of_click` int(11) NOT NULL DEFAULT 0, -`no_of_order_item` int(11) NOT NULL DEFAULT 0, -`no_of_delivered` int(11) NOT NULL DEFAULT 0, -`no_of_cancel` int(11) NOT NULL DEFAULT 0, -`created_at` timestamp NOT NULL DEFAULT current_timestamp(), -`updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -ALTER TABLE `affiliate_stats` ADD PRIMARY KEY (`id`); -ALTER TABLE `affiliate_stats` -MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -COMMIT; diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_logs.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_logs.blade.php deleted file mode 100644 index a330bb95..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_logs.blade.php +++ /dev/null @@ -1,61 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
{{translate('Affiliate Logs')}}
-
-
- - - - - - - - - - - - - - @foreach($affiliate_logs as $key => $affiliate_log) - @if ($affiliate_log->user != null) - - - - - - - - - - - @endif - @endforeach - -
#{{ translate('Referred By')}}{{ translate('Referral User')}}{{ translate('Amount')}}{{ translate('Order Id')}}{{ translate('Referral Type') }}{{ translate('Product') }}{{ translate('Date') }}
{{ ($key+1) + ($affiliate_logs->currentPage() - 1)*$affiliate_logs->perPage() }} - {{ optional(\App\Models\User::where('id', $affiliate_log->referred_by_user)->first())->name }} - - @if($affiliate_log->user_id !== null) - {{ optional($affiliate_log->user)->name }} - @else - {{ translate('Guest').' ('. $affiliate_log->guest_id.')' }} - @endif - {{ single_price($affiliate_log->amount) }} - @if($affiliate_log->order_id != null) - {{ optional($affiliate_log->order)->code }} - @else - {{ optional($affiliate_log->order_detail->order)->code }} - @endif - {{ ucwords(str_replace('_',' ', $affiliate_log->affiliate_type)) }} - @if($affiliate_log->order_detail_id != null && $affiliate_log->order_detail) - {{ optional($affiliate_log->order_detail->product)->name }} - @endif - {{ $affiliate_log->created_at->format('d, F Y') }}
-
- {{ $affiliate_logs->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_withdraw_modal.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_withdraw_modal.blade.php deleted file mode 100644 index 4ed00200..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_withdraw_modal.blade.php +++ /dev/null @@ -1,47 +0,0 @@ -
- @csrf - - - -
diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_withdraw_requests.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_withdraw_requests.blade.php deleted file mode 100644 index 6d69a795..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/affiliate_withdraw_requests.blade.php +++ /dev/null @@ -1,117 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
{{translate('Affiliate Withdraw Request')}}
-
-
- - - - - - - - - - - - - - @foreach($affiliate_withdraw_requests as $key => $affiliate_withdraw_request) - @php $status = $affiliate_withdraw_request->status ; @endphp - @if ($affiliate_withdraw_request->user != null) - - - - - - - - - - @endif - @endforeach - -
#{{translate('Date')}}{{translate('Name')}}{{translate('Email')}}{{translate('Amount')}}{{translate('Status')}}{{translate('options')}}
{{ ($key+1) + ($affiliate_withdraw_requests->currentPage() - 1)*$affiliate_withdraw_requests->perPage() }}{{ $affiliate_withdraw_request->created_at}}{{ optional($affiliate_withdraw_request->user)->name}}{{ optional($affiliate_withdraw_request->user)->email}}{{ single_price($affiliate_withdraw_request->amount)}} - @if($status == 1) - {{translate('Approved')}} - @elseif($status == 2) - {{translate('Rejected')}} - @else - {{translate('Pending')}} - @endif - - @if($status == 0) - @can('accept_affiliate_withdraw_requests') - - - - @endcan - @can('reject_affiliate_withdraw_request') - - - - @endcan - @else - {{ translate('No Action Available')}} - @endif -
-
-
- {{ $affiliate_withdraw_requests->links() }} -
-
-
-
-@endsection - -@section('modal') - - - - - -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/configs.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/configs.blade.php deleted file mode 100644 index 8829a9f5..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/configs.blade.php +++ /dev/null @@ -1,192 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
- -
-
-
{{ translate('Affiliate Registration Form')}}
-
-
-
- @csrf -
-
- @foreach (json_decode(\App\Models\AffiliateConfig::where('type', 'verification_form')->first()->value) as $key => $element) - @if ($element->type == 'text' || $element->type == 'file') -
- -
- -
-
- -
-
-
- @elseif ($element->type == 'select' || $element->type == 'multi_select' || $element->type == 'radio') -
- - -
- -
-
- -
- @if (is_array(json_decode($element->options))) - @foreach (json_decode($element->options) as $value) -
-
- -
-
-
- @endforeach - @endif -
- -
-
-
- @endif - @endforeach -
-
- -
    -
  • {{translate('Text Input')}}
  • -
  • {{translate('Select')}}
  • -
  • {{translate('Multiple Select')}}
  • -
  • {{translate('Radio')}}
  • -
  • {{translate('File')}}
  • -
- -
-
-
- -
-
-
-
- -
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/apply_for_affiliate.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/apply_for_affiliate.blade.php deleted file mode 100644 index a7f78886..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/apply_for_affiliate.blade.php +++ /dev/null @@ -1,169 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
-
-

{{ translate('Affiliate Informations') }}

-
- -
-
-
-
- @csrf - @if (!Auth::check()) -
-
-
{{translate('User Info')}}
-
-
-
-
-
-
- - - - -
-
-
-
- -
-
-
-
- - - - -
-
-
-
- -
-
-
-
- - - - -
-
-
-
- -
-
-
-
- - - - -
-
-
-
-
-
- @endif -
-
-
{{translate('Verification info')}}
-
-
- @php - $verification_form = \App\Models\AffiliateConfig::where('type', 'verification_form')->first()->value; - @endphp - @foreach (json_decode($verification_form) as $key => $element) - @if ($element->type == 'text') -
- -
- -
-
- @elseif($element->type == 'file') -
- -
- - -
-
- @elseif ($element->type == 'select' && is_array(json_decode($element->options))) -
- -
-
- -
-
-
- @elseif ($element->type == 'multi_select' && is_array(json_decode($element->options))) -
- -
-
- -
-
-
- @elseif ($element->type == 'radio') -
- -
-
- @foreach (json_decode($element->options) as $value) -
- - -
- @endforeach -
-
-
- @endif - @endforeach -
-
-
- -
-
-
-
-
-
- - -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/index.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/index.blade.php deleted file mode 100644 index fb0f6ba0..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/index.blade.php +++ /dev/null @@ -1,294 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') -
-
-
-
-

{{ translate('Affiliate') }}

-
-
-
-
- -
-
- - - -
-
{{ translate('Affiliate Balance') }}
-
{{ single_price(Auth::user()->affiliate_user->balance) }}
-
-
-
- - - -
-
- - - -
{{ translate('Affiliate Withdraw Request') }}
-
-
-
- - - @if (addon_is_activated('affiliate_system') - && \App\Models\AffiliateOption::where('type', 'user_registration_first_purchase')->first()->status) -
- @php - if(Auth::user()->referral_code == null){ - Auth::user()->referral_code = substr(Auth::user()->id.Str::random(), 0, 10); - Auth::user()->save(); - } - $referral_code = Auth::user()->referral_code; - $referral_code_url = URL::to('/users/registration')."?referral_code=$referral_code"; - @endphp -
-
-
-
-
- -
-
- -
-
-
-
-
-
- @endif - - - -
- - -
-
-
{{translate('Affiliate Earning History')}}
-
-
- - - - - - - - - - - - - - @foreach($affiliate_logs as $key => $affiliate_log) - - - - - - - - - - @endforeach - -
#{{ translate('Referral User')}}{{ translate('Amount')}}{{ translate('Order Id')}}{{ translate('Referral Type') }}{{ translate('Product') }}{{ translate('Date') }}
{{ sprintf('%02d', ($key+1) + ($affiliate_logs->currentPage() - 1)*$affiliate_logs->perPage()) }} - @if($affiliate_log->user_id !== null) - {{ $affiliate_log->user->name }} - @else - {{ translate('Guest').' ('. $affiliate_log->guest_id.')' }} - @endif - {{ single_price($affiliate_log->amount) }} - @if($affiliate_log->order_id != null) - {{ $affiliate_log->order->code }} - @else - {{ $affiliate_log->order_detail->order->code }} - @endif - {{ ucwords(str_replace('_',' ', $affiliate_log->affiliate_type)) }} - @if($affiliate_log->order_detail_id != null) - @php - $url = $affiliate_log->order_detail->product->auction_product == 1 ? route('auction-product', $affiliate_log->order_detail->product->slug) : route('product', $affiliate_log->order_detail->product->slug) - @endphp - - {{ $affiliate_log->order_detail->product->name }} - - @endif - {{ $affiliate_log->created_at->format('d-m-Y') }}
-
- {{ $affiliate_logs->links() }} -
-
-
-
-
-
-
-@endsection - -@section('modal') - - -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/payment_history.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/payment_history.blade.php deleted file mode 100644 index 6ae3a468..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/payment_history.blade.php +++ /dev/null @@ -1,140 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') -
-
-
-
-

{{ translate('Affiliate') }}

-
-
-
- -
- -
-
- - - -
-
{{ translate('Affiliate Balance') }}
-
{{ single_price(Auth::user()->affiliate_user->balance) }}
-
-
-
- -
-
- - - -
{{ translate('Affiliate Withdraw Request') }}
-
-
-
- - -
-
-
{{ translate('Affiliate payment history')}}
-
-
- - - - - - - - - - - @foreach ($affiliate_payments as $key => $affiliate_payment) - - - - - - - @endforeach - - -
#{{ translate('Date') }}{{translate('Amount')}}{{translate('Payment Method')}}
{{ sprintf('%02d', $key+1) }}{{ date('d-m-Y', strtotime($affiliate_payment->created_at)) }}{{ single_price($affiliate_payment->amount) }}{{ ucfirst(str_replace('_', ' ', $affiliate_payment ->payment_method)) }}
-
- {{ $affiliate_payments->links() }} -
-
-
-
-
-
-
-@endsection - -@section('modal') - - -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/payment_settings.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/payment_settings.blade.php deleted file mode 100644 index 7d6e2a3e..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/payment_settings.blade.php +++ /dev/null @@ -1,47 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') - -
-
-
-
-

{{ translate('Affiliate') }}

-
-
-
- -
-
-
{{ translate('Payment Settings')}}
-
-
-
- @csrf -
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
-
-
-
-
-@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/withdraw_request_history.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/withdraw_request_history.blade.php deleted file mode 100644 index 7cd51c2c..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/frontend/withdraw_request_history.blade.php +++ /dev/null @@ -1,125 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') -
-
-
-
-

{{ translate('Affiliate') }}

-
-
-
- -
- -
-
- - - -
-
{{ translate('Affiliate Balance') }}
-
{{ single_price(Auth::user()->affiliate_user->balance) }}
-
-
-
- -
-
- - - -
{{ translate('Affiliate Withdraw Request') }}
-
-
-
- - -
-
-
{{ translate('Affiliate withdraw request history')}}
-
-
- - - - - - - - - - - @foreach ($affiliate_withdraw_requests as $key => $affiliate_withdraw_request) - - - - - - - @endforeach - -
#{{ translate('Date') }}{{ translate('Amount')}}{{ translate('Status')}}
{{ sprintf('%02d', $key+1) }}{{ date('d-m-Y', strtotime($affiliate_withdraw_request->created_at)) }}{{ single_price($affiliate_withdraw_request->amount) }} - @if($affiliate_withdraw_request->status == 1) - {{translate('Approved')}} - @elseif($affiliate_withdraw_request->status == 2) - {{translate('Rejected')}} - @else - {{translate('Pending')}} - @endif -
-
- {{ $affiliate_withdraw_requests->links() }} -
-
-
- -
-
-
-
-@endsection - -@section('modal') - - -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/index.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/index.blade.php deleted file mode 100644 index 1321c064..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/index.blade.php +++ /dev/null @@ -1,236 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{ translate('Basic Affiliate')}}
-
-
-
- @csrf -
- -
- -
-
- @php - if(\App\Models\AffiliateOption::where('type', 'user_registration_first_purchase')->first() != null){ - $percentage = \App\Models\AffiliateOption::where('type', 'user_registration_first_purchase')->first()->percentage; - $status = \App\Models\AffiliateOption::where('type', 'user_registration_first_purchase')->first()->status; - } - else { - $percentage = null; - } - @endphp - -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-

{{ translate('Product Sharing Affiliate')}}

-
-
-
- @csrf -
- - -
- @php - if(\App\Models\AffiliateOption::where('type', 'product_sharing')->first() != null && \App\Models\AffiliateOption::where('type', 'product_sharing')->first()->details != null){ - $commission_product_sharing = json_decode(\App\Models\AffiliateOption::where('type', 'product_sharing')->first()->details)->commission; - $commission_type_product_sharing = json_decode(\App\Models\AffiliateOption::where('type', 'product_sharing')->first()->details)->commission_type; - $status = \App\Models\AffiliateOption::where('type', 'product_sharing')->first()->status; - } - else { - $commission_product_sharing = null; - $commission_type_product_sharing = null; - } - @endphp - -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
-
-

{{ translate('Product Sharing Affiliate (Category Wise)')}}

-
-
-
- @csrf - @php - if(\App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first() != null){ - $category_wise_affiliate_status = \App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first()->status; - } - @endphp -
-
- -
-
- -
-
- @if (\App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first() != null) - - @foreach (\App\Models\Category::all() as $key => $category) - @php - $found = false; - @endphp - @if(\App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first()->details != null) - @foreach (json_decode(\App\Models\AffiliateOption::where('type', 'category_wise_affiliate')->first()->details) as $key => $data) - @if($data->category_id == $category->id) - @php - $found = true; - $value = $data; - @endphp - @endif - @endforeach - @endif - @if ($found) -
-
- - -
-
- -
-
- -
-
- @else -
-
- - -
-
- -
-
- -
-
- @endif - @endforeach - @endif -
- -
-
-
-
-
-
-
-
-
- {{ translate('N:B: You can not enable Single Product Sharing Affiliate and Category Wise Affiliate at a time.') }} -
-
-
-
-
-
-
-

{{ translate('Affiliate Link Validatin Time (Days)')}}

-
-
-
- @csrf - @php - $validation_time_info = \App\Models\AffiliateConfig::where('type', 'validation_time')->first(); - $validation_time = ''; - if($validation_time_info) { - $validation_time = $validation_time_info->value; - } - @endphp -
-
- - -
-
-
- -
- Days -
-
-
-
- -
- -
-
-
-
-
-
-@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/payment_history.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/payment_history.blade.php deleted file mode 100644 index 3d13ca48..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/payment_history.blade.php +++ /dev/null @@ -1,35 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{ translate('Affiliate payments of ').$affiliate_user->user->name }}
-
-
- - - - - - - - - - - @foreach($affiliate_payments as $key => $payment) - - - - - - - @endforeach - -
#{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Payment Method') }}
{{ $key+1 }}{{ $payment->created_at }} - {{ single_price($payment->amount) }} - {{ ucfirst($payment->payment_method) }}
-
-
- -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/payment_modal.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/payment_modal.blade.php deleted file mode 100644 index 3b69440c..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/payment_modal.blade.php +++ /dev/null @@ -1,55 +0,0 @@ -
- @csrf - - - -
diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/refferal_users.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/refferal_users.blade.php deleted file mode 100644 index 122df487..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/refferal_users.blade.php +++ /dev/null @@ -1,43 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
{{ translate('Refferal Users')}}
-
-
- - - - - - - - - - - - @foreach($refferal_users as $key => $refferal_user) - @if ($refferal_user != null) - - - - - - - - @endif - @endforeach - -
#{{ translate('Name')}}{{ translate('Phone')}}{{ translate('Email Address')}}{{ translate('Reffered By')}}
{{ ($key+1) + ($refferal_users->currentPage() - 1)*$refferal_users->perPage() }}{{$refferal_user->name}}{{$refferal_user->phone}}{{$refferal_user->email}} - @if (\App\Models\User::find($refferal_user->referred_by) != null) - {{ \App\Models\User::find($refferal_user->referred_by)->name }} ({{ \App\Models\User::find($refferal_user->referred_by)->email }}) - @endif -
-
- {{ $refferal_users->appends(request()->input())->links() }} -
-
-
- -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/show_verification_request.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/show_verification_request.blade.php deleted file mode 100644 index d0a96319..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/show_verification_request.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{ translate('Affiliate User Verification')}}
-
-
-
-
{{ translate('User Info') }}
-

- {{ translate('Name') }} : - {{ $affiliate_user->user->name }} -

-

- {{translate('Email')}} - {{ $affiliate_user->user->email }} -

-

- {{translate('Address')}} - {{ $affiliate_user->user->address }} -

-

- {{translate('Phone')}} - {{ $affiliate_user->user->phone }} -

-
-
-
{{ translate('Verification Info') }}
- - - @foreach (json_decode($affiliate_user->informations) as $key => $info) - - - @if ($info->type == 'text' || $info->type == 'select' || $info->type == 'radio') - - @elseif ($info->type == 'multi_select') - - @elseif ($info->type == 'file') - - @endif - - @endforeach - -
{{ $info->label }}{{ $info->value }} - {{ implode(json_decode($info->value), ', ') }} - - {{ translate('Click here')}} -
- -
-
-
- -@endsection diff --git a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/users.blade.php b/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/users.blade.php deleted file mode 100644 index 3cd0d168..00000000 --- a/desarrollo/temp/ZUkGbfNE2v/addons/affiliate_system/views/affiliate/users.blade.php +++ /dev/null @@ -1,113 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
{{ translate('Affiliate Users')}}
-
-
- - - - - - - - - - - - - - - @foreach($affiliate_users as $key => $affiliate_user) - @if($affiliate_user->user != null) - - - - - - - - - - - @endif - @endforeach - -
#{{ translate('Name')}}{{ translate('Phone')}}{{ translate('Email Address')}}{{ translate('Verification Info')}}{{ translate('Approval')}}{{ translate('Due Amount') }}{{ translate('Options')}}
{{ ($key+1) + ($affiliate_users->currentPage() - 1)*$affiliate_users->perPage() }}{{$affiliate_user->user->name}}{{$affiliate_user->user->phone}}{{$affiliate_user->user->email}} - @if ($affiliate_user->informations != null) - - {{translate('Show')}} - - @endif - - - - @if ($affiliate_user->balance >= 0) - {{ single_price($affiliate_user->balance) }} - @endif - - @can('pay_to_affiliate_user') - - - - @endcan - @can('affiliate_users_payment_history') - - - - @endcan -
-
- {{ $affiliate_users->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('modals.delete_modal') - - - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/assets/delivery_boy.png b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/assets/delivery_boy.png deleted file mode 100644 index c5877654..00000000 Binary files a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/assets/delivery_boy.png and /dev/null differ diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/config.json b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/config.json deleted file mode 100644 index 6447803e..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/config.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "name" : "delivery_boy", - - "unique_identifier" : "delivery_boy", - - "version" : "3.6", - - "minimum_item_version" : "7.6.0", - - "addon_banner" : "delivery_boy.png", - - "directory" : - [ - { - "name" : [ - "resources/views/delivery_boys", - "resources/views/delivery_boys/inc", - "resources/views/delivery_boys/layouts", - "resources/views/backend/delivery_boys" - ] - } - ], - - "sql_file" : "", - - "files" : - [ - - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/index.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/index.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/create.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/create.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/edit.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/edit.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/delivery_boy_configure.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/delivery_boy_configure.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/delivery_earning_form.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/delivery_earning_form.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/cancel_request_list.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/cancel_request_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/order_collection_form.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/order_collection_form.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/delivery_boys_collection_list.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/delivery_boys_collection_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/delivery_boys_payment_list.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/delivery_boys_payment_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/layouts/app.blade.php", - "update_directory" : "resources/views/delivery_boys/layouts/app.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/inc/delivery_boy_sidenav.blade.php", - "update_directory" : "resources/views/delivery_boys/inc/delivery_boy_sidenav.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/inc/nav.blade.php", - "update_directory" : "resources/views/delivery_boys/inc/nav.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/inc/footer.blade.php", - "update_directory" : "resources/views/delivery_boys/inc/footer.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/assigned_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/assigned_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/cancel_request_list.blade.php", - "update_directory" : "resources/views/delivery_boys/cancel_request_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/cancelled_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/cancelled_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/completed_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/completed_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/dashboard.blade.php", - "update_directory" : "resources/views/delivery_boys/dashboard.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/on_the_way_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/on_the_way_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/pending_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/pending_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/pickup_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/pickup_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/profile.blade.php", - "update_directory" : "resources/views/delivery_boys/profile.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/total_collection_list.blade.php", - "update_directory" : "resources/views/delivery_boys/total_collection_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/total_earning_list.blade.php", - "update_directory" : "resources/views/delivery_boys/total_earning_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/order_detail.blade.php", - "update_directory" : "resources/views/delivery_boys/order_detail.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/cancel_request_modal.blade.php", - "update_directory" : "resources/views/delivery_boys/cancel_request_modal.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/controllers/DeliveryBoyController.php", - "update_directory" : "app/Http/Controllers/DeliveryBoyController.php" - }, - { - "root_directory" : "addons/delivery_boy/assets/delivery_boy.png", - "update_directory" : "public/delivery_boy.png" - } - ] -} diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/controllers/DeliveryBoyController.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/controllers/DeliveryBoyController.php deleted file mode 100644 index 5ba1b154..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/controllers/DeliveryBoyController.php +++ /dev/null @@ -1,557 +0,0 @@ -middleware(['permission:view_all_delivery_boy'])->only('index'); - $this->middleware(['permission:add_delivery_boy'])->only('create'); - $this->middleware(['permission:edit_delivery_boy'])->only('edit'); - $this->middleware(['permission:ban_delivery_boy'])->only('ban'); - $this->middleware(['permission:collect_from_delivery_boy'])->only('order_collection_form'); - $this->middleware(['permission:pay_to_delivery_boy'])->only('delivery_earning_form'); - $this->middleware(['permission:delivery_boy_payment_history'])->only('delivery_boys_payment_histories'); - $this->middleware(['permission:collected_histories_from_delivery_boy'])->only('delivery_boys_collection_histories'); - $this->middleware(['permission:order_cancle_request_by_delivery_boy'])->only('cancel_request_list'); - $this->middleware(['permission:delivery_boy_configuration'])->only('delivery_boy_configure'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index(Request $request) - { - $sort_search = null; - $delivery_boys = DeliveryBoy::orderBy('created_at', 'desc'); - - if ($request->has('search')){ - $sort_search = $request->search; - $user_ids = User::where('user_type', 'delivery_boy')->where(function($user) use ($sort_search){ - $user->where('name', 'like', '%'.$sort_search.'%') - ->orWhere('email', 'like', '%'.$sort_search.'%'); - })->pluck('id')->toArray(); - $delivery_boys = $delivery_boys->where(function($delivery_boy) use ($user_ids){ - $delivery_boy->whereIn('user_id', $user_ids); - }); - } - - $delivery_boys = $delivery_boys->paginate(15); - return view('backend.delivery_boys.index', compact('delivery_boys', 'sort_search')); - } - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function create() - { - $countries = Country::where('status', 1)->get(); - return view('backend.delivery_boys.create', compact('countries')); - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function store(Request $request) - { - $validated = $request->validate([ - 'name' => 'required', - 'email' => 'required|unique:users|max:255', - 'phone' => 'required', - 'country_id' => 'required', - 'state_id' => 'required', - 'city_id' => 'required', - ]); - - $country = Country::where('id', $request->country_id)->first(); - $state = State::where('id', $request->state_id)->first(); - $city = City::where('id', $request->city_id)->first(); - - $user = new User; - $user->user_type = 'delivery_boy'; - $user->name = $request->name; - $user->email = $request->email; - $user->phone = $request->phone; - $user->country = $country->name; - $user->state = $state->name; - $user->city = $city->name; - $user->avatar_original = $request->avatar_original; - $user->address = $request->address; - $user->email_verified_at = date("Y-m-d H:i:s"); - $user->password = Hash::make($request->password); - $user->save(); - - $delivery_boy = new DeliveryBoy; - - $delivery_boy->user_id = $user->id; - $delivery_boy->save(); - - flash(translate('Delivery Boy has been created successfully'))->success(); - return redirect()->route('delivery-boys.index'); - } - - /** - * Display the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function show($id) - { - // - } - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function edit($id) - { - $countries = Country::where('status', 1)->get(); - $states = State::where('status', 1)->get(); - $cities = City::where('status', 1)->get(); - $delivery_boy = User::findOrFail($id); - - return view('backend.delivery_boys.edit', compact('delivery_boy', 'countries', 'states', 'cities')); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function update(Request $request, $id) - { - $delivery_boy = User::findOrFail($id); - - $request->validate([ - 'name' => 'required', - 'email' => 'required|unique:users,email,'.$delivery_boy->id, - 'phone' => 'required', - 'country_id' => 'required', - 'state_id' => 'required', - 'city_id' => 'required', - ]); - - $country = Country::where('id', $request->country_id)->first(); - $state = State::where('id', $request->state_id)->first(); - $city = City::where('id', $request->city_id)->first(); - - $delivery_boy->name = $request->name; - $delivery_boy->email = $request->email; - $delivery_boy->phone = $request->phone; - $delivery_boy->country = $country->name; - $delivery_boy->state = $state->name; - $delivery_boy->city = $city->name; - $delivery_boy->avatar_original = $request->avatar_original; - $delivery_boy->address = $request->address; - - if(strlen($request->password) > 0){ - $delivery_boy->password = Hash::make($request->password); - } - - $delivery_boy->save(); - - flash(translate('Delivery Boy has been updated successfully'))->success(); - return back(); - - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function destroy($id) - { - // - } - - public function ban($id) { - $delivery_boy = User::findOrFail($id); - - if($delivery_boy->banned == 1) { - $delivery_boy->banned = 0; - flash(translate('Delivery Boy UnBanned Successfully'))->success(); - } else { - $delivery_boy->banned = 1; - flash(translate('Delivery Boy Banned Successfully'))->success(); - } - - $delivery_boy->save(); - - return back(); - } - - /** - * Collection form from Delivery boy. - * - * @return \Illuminate\Http\Response - */ - public function order_collection_form(Request $request) { - $delivery_boy_info = DeliveryBoy::with('user') - ->where('user_id', $request->id) - ->first(); - - return view('backend.delivery_boys.order_collection_form', compact('delivery_boy_info')); - } - - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function collection_from_delivery_boy(Request $request) { - $delivery_boy = DeliveryBoy::where('user_id', $request->delivery_boy_id)->first(); - - if($request->payout_amount > $delivery_boy->total_collection){ - flash(translate('Collection Amount Can Not Be Larger Than Collected Amount'))->error(); - return redirect()->route('delivery-boys.index'); - } - - $delivery_boy->total_collection -= $request->payout_amount; - - if($delivery_boy->save()){ - $delivery_boy_collection = new DeliveryBoyCollection; - $delivery_boy_collection->user_id = $request->delivery_boy_id; - $delivery_boy_collection->collection_amount = $request->payout_amount; - - $delivery_boy_collection->save(); - - flash(translate('Collection From Delivery Boy Successfully'))->success(); - } else { - flash(translate('Something went wrong'))->error(); - } - - return redirect()->route('delivery-boys.index'); - } - - /** - * Paid form for Delivery boy. - * - * @return \Illuminate\Http\Response - */ - public function delivery_earning_form(Request $request) { - $delivery_boy_info = DeliveryBoy::with('user') - ->where('user_id', $request->id) - ->first(); - - return view('backend.delivery_boys.delivery_earning_form', compact('delivery_boy_info')); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function paid_to_delivery_boy(Request $request) { - $delivery_boy = DeliveryBoy::where('user_id', $request->delivery_boy_id)->first(); - - if($request->paid_amount > $delivery_boy->total_earning){ - flash(translate('Paid Amount Can Not Be Larger Than Payable Amount'))->error(); - return redirect()->route('delivery-boys.index'); - } - - $delivery_boy->total_earning -= $request->paid_amount; - - if($delivery_boy->save()){ - $delivery_boy_payment = new DeliveryBoyPayment; - $delivery_boy_payment->user_id = $request->delivery_boy_id; - $delivery_boy_payment->payment = $request->paid_amount; - - $delivery_boy_payment->save(); - - flash(translate('Pay To Delivery Boy Successfully'))->success(); - } else { - flash(translate('Something went wrong'))->error(); - } - - return redirect()->route('delivery-boys.index'); - } - - - - // Delivery Boy's Panel Start - public function delivery_boys_payment_histories() { - $delivery_boy_payment_query = DeliveryBoyPayment::query(); - if(Auth::user()->user_type == 'delivery_boy') { - $delivery_boy_payment_query = $delivery_boy_payment_query->where('user_id', Auth::user()->id); - } - $delivery_boy_payment_query = $delivery_boy_payment_query->paginate(10); - - $delivery_boy_payments = $delivery_boy_payment_query; - - return view('backend.delivery_boys.delivery_boys_payment_list', compact('delivery_boy_payments')); - } - - public function delivery_boys_collection_histories() { - $delivery_boy_collection_query = DeliveryBoyCollection::query(); - if(Auth::user()->user_type == 'delivery_boy') { - $delivery_boy_collection_query = $delivery_boy_collection_query->where('user_id', Auth::user()->id); - } - $delivery_boy_collection_query = $delivery_boy_collection_query->paginate(10); - - $delivery_boy_collections = $delivery_boy_collection_query; - - return view('backend.delivery_boys.delivery_boys_collection_list', compact('delivery_boy_collections')); - } - - public function delivery_boys_cancel_request_list() { - $order_query = Order::query(); - if(Auth::user()->user_type == 'delivery_boy') { - $order_query = $order_query->where('assign_delivery_boy', Auth::user()->id); - } - $order_query = $order_query->where('delivery_status', '!=', 'cancelled')->where('cancel_request', 1); - $order_query = $order_query->paginate(10); - - $cancel_requests = $order_query; - return view('delivery_boys.cancel_request_list', compact('cancel_requests')); - } - - public function cancel_request_list() { - $order_query = Order::query(); - if(Auth::user()->user_type == 'delivery_boy') { - $order_query = $order_query->where('assign_delivery_boy', Auth::user()->id); - } - $order_query = $order_query->where('delivery_status', '!=', 'cancelled')->where('cancel_request', 1); - $order_query = $order_query->paginate(10); - - $cancel_requests = $order_query; - return view('backend.delivery_boys.cancel_request_list', compact('cancel_requests')); - } - - /** - * Configuration of delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function delivery_boy_configure() - { - return view('backend.delivery_boys.delivery_boy_configure'); - } - - public function order_detail($id) - { - $order = Order::findOrFail(decrypt($id)); - return view('delivery_boys.order_detail', compact('order')); - } - - /** - * Show the list of assigned delivery by the admin. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function assigned_delivery() - { - $order_query = Order::query(); - $order_query->where('assign_delivery_boy', Auth::user()->id); - $order_query->where(function ($order_query) { - $order_query->where('delivery_status', 'pending') - ->where('cancel_request', '0'); - })->orWhere(function ($order_query) { - $order_query->where('delivery_status', 'confirmed') - ->where('cancel_request', '0'); - }); - - $assigned_deliveries = $order_query->paginate(10); - - return view('delivery_boys.assigned_delivery', compact('assigned_deliveries')); - } - - /** - * Show the list of pickup delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function pickup_delivery() - { - $pickup_deliveries = Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'picked_up') - ->where('cancel_request', '0') - ->paginate(10); - - return view('delivery_boys.pickup_delivery', compact('pickup_deliveries')); - } - - /** - * Show the list of pickup delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function on_the_way_deliveries() - { - $on_the_way_deliveries = Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'on_the_way') - ->where('cancel_request', '0') - ->paginate(10); - - return view('delivery_boys.on_the_way_delivery', compact('on_the_way_deliveries')); - } - - /** - * Show the list of completed delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function completed_delivery() - { - $completed_deliveries = DeliveryHistory::where('delivery_boy_id', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->paginate(10); - - return view('delivery_boys.completed_delivery', compact('completed_deliveries')); - } - - /** - * Show the list of pending delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function pending_delivery() - { - $pending_deliveries = Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', '!=', 'delivered') - ->where('delivery_status', '!=', 'cancelled') - ->where('cancel_request', '0') - ->paginate(10); - - return view('delivery_boys.pending_delivery', compact('pending_deliveries')); - } - - /** - * Show the list of cancelled delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function cancelled_delivery() - { - $cancelled_deliveries = Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'cancelled') - ->paginate(10); - - return view('delivery_boys.cancelled_delivery', compact('cancelled_deliveries')); - } - - /** - * Show the list of total collection by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function total_collection() - { - $today_collections = DeliveryHistory::where('delivery_boy_id', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->where('payment_type', 'cash_on_delivery') - ->paginate(10); - - return view('delivery_boys.total_collection_list', compact('today_collections')); - } - - /** - * Show the list of total earning by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function total_earning() - { - $total_earnings = DeliveryHistory::where('delivery_boy_id', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->paginate(10); - - return view('delivery_boys.total_earning_list', compact('total_earnings')); - } - - public function cancel_request($order_id) { - $order = Order::findOrFail($order_id); - $order->cancel_request = '1'; - $order->cancel_request_at = date("Y-m-d H:i:s"); - $order->save(); - - return back(); - } - - /** - * For only delivery boy while changing delivery status. - * Call from order controller - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function store_delivery_history($order) { - $delivery_history = new DeliveryHistory; - - $delivery_history->order_id = $order->id; - $delivery_history->delivery_boy_id = Auth::user()->id; - $delivery_history->delivery_status = $order->delivery_status; - $delivery_history->payment_type = $order->payment_type; - if($order->delivery_status == 'delivered') { - $delivery_boy = DeliveryBoy::where('user_id', Auth::user()->id)->first(); - - if(get_setting('delivery_boy_payment_type') == 'commission') { - $delivery_history->earning = get_setting('delivery_boy_commission'); - $delivery_boy->total_earning += get_setting('delivery_boy_commission'); - } - if($order->payment_type == 'cash_on_delivery') { - $delivery_history->collection = $order->grand_total; - $delivery_boy->total_collection += $order->grand_total; - - $order->payment_status = 'paid'; - if($order->commission_calculated == 0) { - calculateCommissionAffilationClubPoint($order); - $order->commission_calculated = 1; - } - - } - - $delivery_boy->save(); - - } - $order->delivery_history_date = date("Y-m-d H:i:s"); - - $order->save(); - $delivery_history->save(); - - } - -} diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/routes/delivery_boy.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/routes/delivery_boy.php deleted file mode 100644 index 44853b78..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/routes/delivery_boy.php +++ /dev/null @@ -1,60 +0,0 @@ -'admin', 'middleware' => ['auth', 'admin']], function(){ - //Delivery Boy - Route::resource('delivery-boys', DeliveryBoyController::class); - - Route::controller(DeliveryBoyController::class)->group(function () { - Route::get('/delivery-boy/ban/{id}', 'ban')->name('delivery-boy.ban'); - Route::get('/delivery-boy-configuration', 'delivery_boy_configure')->name('delivery-boy-configuration'); - Route::post('/delivery-boy/order-collection', 'order_collection_form')->name('delivery-boy.order-collection'); - Route::post('/collection-from-delivery-boy', 'collection_from_delivery_boy')->name('collection-from-delivery-boy'); - Route::post('/delivery-boy/delivery-earning', 'delivery_earning_form')->name('delivery-boy.delivery-earning'); - Route::post('/paid-to-delivery-boy', 'paid_to_delivery_boy')->name('paid-to-delivery-boy'); - Route::get('/delivery-boys-payment-histories', 'delivery_boys_payment_histories')->name('delivery-boys-payment-histories'); - Route::get('/delivery-boys-collection-histories', 'delivery_boys_collection_histories')->name('delivery-boys-collection-histories'); - Route::get('/delivery-boy/cancel-request', 'cancel_request_list')->name('delivery-boy.cancel-request'); - - }); -}); - -Route::group(['middleware' => ['user', 'verified', 'unbanned']], function() { - Route::controller(DeliveryBoyController::class)->group(function () { - Route::get('/assigned-deliveries', 'assigned_delivery')->name('assigned-deliveries'); - Route::get('/pickup-deliveries', 'pickup_delivery')->name('pickup-deliveries'); - Route::get('/on-the-way-deliveries', 'on_the_way_deliveries')->name('on-the-way-deliveries'); - Route::get('/completed-deliveries', 'completed_delivery')->name('completed-deliveries'); - Route::get('/pending-deliveries', 'pending_delivery')->name('pending-deliveries'); - Route::get('/cancelled-deliveries', 'cancelled_delivery')->name('cancelled-deliveries'); - Route::get('/total-collections', 'total_collection')->name('total-collection'); - Route::get('/total-earnings', 'total_earning')->name('total-earnings'); - Route::get('/cancel-request/{id}', 'cancel_request')->name('cancel-request'); - Route::get('/cancel-request-list', 'delivery_boys_cancel_request_list')->name('cancel-request-list'); - }); - - Route::controller(OrderController::class)->group(function () { - Route::post('/orders/update_delivery_status', 'update_delivery_status')->name('delivery-boy.orders.update_delivery_status'); - }); - - Route::controller(DeliveryBoyController::class)->group(function () { - Route::get('/delivery-boy/order-detail/{id}', 'order_detail')->name('delivery-boy.order-detail'); - }); - -}); diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.1.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.1.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.2.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.2.sql deleted file mode 100644 index fcff84f7..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.2.sql +++ /dev/null @@ -1,65 +0,0 @@ --- --- Table structure for table `delivery_boy_payments` --- - -CREATE TABLE `delivery_boy_payments` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `payment` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boy_payments` --- -ALTER TABLE `delivery_boy_payments` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boy_payments` --- -ALTER TABLE `delivery_boy_payments` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - --- --- Table structure for table `delivery_boy_collections` --- - -CREATE TABLE `delivery_boy_collections` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `collection_amount` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boy_collections` --- -ALTER TABLE `delivery_boy_collections` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boy_collections` --- -ALTER TABLE `delivery_boy_collections` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.3.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.3.sql deleted file mode 100644 index 7f93ace2..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/1.3.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE `users` ADD `state` VARCHAR(30) NULL DEFAULT NULL AFTER `country`; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.0.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.0.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.0.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.1.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.1.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.2.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.2.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/2.2.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.3.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.3.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.4.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.4.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.4.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.5.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.5.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.5.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.6.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.6.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/3.6.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/update.sql b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/update.sql deleted file mode 100644 index e69a6a5b..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/sql/update.sql +++ /dev/null @@ -1,148 +0,0 @@ --- --- Table structure for table `delivery_boys` --- - -CREATE TABLE `delivery_boys` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `total_collection` double(25,2) NOT NULL DEFAULT 0.00, - `earning` double(25,2) NOT NULL DEFAULT 0.00, - `monthly_salary` double(25,2) DEFAULT NULL, - `order_commission` double(25,2) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boys` --- -ALTER TABLE `delivery_boys` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boys` --- -ALTER TABLE `delivery_boys` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - - - -ALTER TABLE `users` CHANGE `user_type` `user_type` VARCHAR(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'customer'; -ALTER TABLE `orders` ADD COLUMN IF NOT EXISTS `assign_delivery_boy` INT(11) NULL DEFAULT NULL AFTER `seller_id`; - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -START TRANSACTION; -SET time_zone = "+00:00"; - - --- --- Table structure for table `delivery_histories` --- - -CREATE TABLE `delivery_histories` ( - `id` int(11) NOT NULL, - `delivery_boy_id` int(11) NOT NULL, - `order_id` int(11) NOT NULL, - `delivery_status` varchar(255) NOT NULL, - `payment_type` varchar(20) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -ALTER TABLE `delivery_histories` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_histories` --- -ALTER TABLE `delivery_histories` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -ALTER TABLE `delivery_boys` CHANGE `earning` `total_earning` DOUBLE(25,2) NOT NULL DEFAULT '0.00'; - -ALTER TABLE `orders` ADD COLUMN IF NOT EXISTS `cancel_request` TINYINT(1) NOT NULL DEFAULT '0' AFTER `delivery_viewed`; - -ALTER TABLE `orders` ADD COLUMN IF NOT EXISTS `cancel_request_at` TINYINT(1) NOT NULL DEFAULT '0' AFTER `cancel_request`; - -ALTER TABLE `delivery_histories` ADD `earning` DOUBLE(25,2) NOT NULL DEFAULT '0.00' AFTER `payment_type`, ADD `collection` DOUBLE(25,2) NOT NULL DEFAULT '0.00' AFTER `earning`; -ALTER TABLE `delivery_histories` CHANGE `delivery_boy_id` `delivery_boy_id` INT(11) NULL DEFAULT NULL; -ALTER TABLE `orders` ADD COLUMN IF NOT EXISTS `delivery_history_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `commission_calculated`; - - - --- --- Table structure for table `delivery_boy_payments` --- - -CREATE TABLE `delivery_boy_payments` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `payment` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boy_payments` --- -ALTER TABLE `delivery_boy_payments` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boy_payments` --- -ALTER TABLE `delivery_boy_payments` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - --- --- Table structure for table `delivery_boy_collections` --- - -CREATE TABLE `delivery_boy_collections` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `collection_amount` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boy_collections` --- -ALTER TABLE `delivery_boy_collections` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boy_collections` --- -ALTER TABLE `delivery_boy_collections` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/cancel_request_list.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/cancel_request_list.blade.php deleted file mode 100644 index bedb0208..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/cancel_request_list.blade.php +++ /dev/null @@ -1,134 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Cancel Request')}}

-
-
-
- - -
-
-
{{translate('Cancel Requests')}}
-
- -
-
-
- - - - - - - - - - - - @foreach($cancel_requests as $key => $cancel_request) - - - - - - - - - - @endforeach - -
#{{translate('Code')}}{{translate('Request By')}}{{translate('Request At')}}{{translate('Options')}}
{{ ($key+1) + ($cancel_requests->currentPage() - 1) * $cancel_requests->perPage() }} - {{ $cancel_request->code }} - - {{ $cancel_request->delivery_boy->name }} - - {{$cancel_request->cancel_request_at}} - - - - - - -
-
- {{ $cancel_requests->appends(request()->input())->links() }} -
-
-
- - - - - -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/create.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/create.blade.php deleted file mode 100644 index 5291d2cf..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/create.blade.php +++ /dev/null @@ -1,177 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Delivery Boy Information')}}
-
- -
- @csrf -
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
- -
- -
-
-
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boy_configure.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boy_configure.blade.php deleted file mode 100644 index 1172a842..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boy_configure.blade.php +++ /dev/null @@ -1,357 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - - -
-
-
-
-
{{ translate('Payment Configuration') }}
-
-
-
- @csrf -
- - - -
- -
-
- - -
- -
- -
-
- - -
- -
-
-
-
-
- -
-
-
-
{{ translate('Notification Configuration') }}
-
-
-
- @csrf -
- - - -
- -
-
-
- - - -
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{ translate('Pickup Location For Delivery Boy') }}
-
-
-
- @csrf - @if (get_setting('google_map') == 1) -
- -
-
    -
  • Full Address:
  • -
  • Postal Code:
  • -
  • Country:
  • -
  • Latitude:
  • -
  • Longitude:
  • -
-
-
-
- -
-
- - -
-
-
-
- -
-
- - -
-
- @else -
-
- -
-
- - -
-
-
-
- -
-
- - -
-
- @endif -
- -
-
-
-
-
-
-@endsection - -@section('script') - - - @if (get_setting('google_map') == 1) - - - - @endif -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_collection_list.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_collection_list.blade.php deleted file mode 100644 index bcfa8f9d..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_collection_list.blade.php +++ /dev/null @@ -1,61 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Collection List')}}

-
-
-
- - -
-
-
{{translate('Collection List')}}
-
- -
-
-
- - - - - - - - - - - @foreach($delivery_boy_collections as $key => $delivery_boy_collection) - - - - - - - - @endforeach - -
#{{translate('Delivery Boy')}}{{translate('Collected Amount')}}{{translate('Created At')}}
{{ ($key+1) + ($delivery_boy_collections->currentPage() - 1) * $delivery_boy_collections->perPage() }} - {{ $delivery_boy_collection->user->name }} - - {{ $delivery_boy_collection->collection_amount }} - - {{$delivery_boy_collection->created_at}} -
-
- {{ $delivery_boy_collections->appends(request()->input())->links() }} -
-
-
- -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_payment_list.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_payment_list.blade.php deleted file mode 100644 index 6b570e82..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_payment_list.blade.php +++ /dev/null @@ -1,62 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Payment List')}}

-
-
-
- - -
-
-
{{translate('Payment List')}}
-
- -
-
-
- - - - - - - - - - - @foreach($delivery_boy_payments as $key => $delivery_boy_payment) - - - - - - - - @endforeach - -
#{{translate('Delivery Boy')}}{{translate('Payment Amount')}}{{translate('Created At')}}
{{ ($key+1) + ($delivery_boy_payments->currentPage() - 1) * $delivery_boy_payments->perPage() }} - {{ $delivery_boy_payment->user->name }} - - {{ $delivery_boy_payment->payment }} - - {{$delivery_boy_payment->created_at}} -
-
- {{ $delivery_boy_payments->appends(request()->input())->links() }} -
-
-
- -@endsection - diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_earning_form.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_earning_form.blade.php deleted file mode 100644 index c9cc2305..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/delivery_earning_form.blade.php +++ /dev/null @@ -1,57 +0,0 @@ - - - -
- - - -
- - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/edit.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/edit.blade.php deleted file mode 100644 index 3a837190..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/edit.blade.php +++ /dev/null @@ -1,187 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Delivery Boy Information')}}
-
- -
- @csrf - -
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
- -
- -
-
-
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/index.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/index.blade.php deleted file mode 100644 index ba938b71..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/index.blade.php +++ /dev/null @@ -1,212 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Delivery Boys')}}

-
- @can('add_delivery_boy') - - @endcan -
-
- - -
-
-
{{translate('Delivery Boys')}}
-
-
-
-
- -
-
-
-
-
-
- - - - - - - - - - - - - - @foreach($delivery_boys as $key => $delivery_boy) - @if ($delivery_boy->user != null) - - - - - - - - - - @endif - @endforeach - -
#{{translate('Name')}}{{translate('Email Address')}}{{translate('Phone')}}{{translate('Earning')}}{{translate('Collection')}}{{translate('Options')}}
{{ ($key+1) + ($delivery_boys->currentPage() - 1)*$delivery_boys->perPage() }}@if($delivery_boy->user->banned == 1) @endif {{$delivery_boy->user->name}}{{$delivery_boy->user->email}}{{$delivery_boy->user->phone}} - {{ single_price($delivery_boy->total_earning) }} - - {{ single_price($delivery_boy->total_collection) }} - - - -
-
- {{ $delivery_boys->appends(request()->input())->links() }} -
-
-
- - - - - - - - - -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/order_collection_form.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/order_collection_form.blade.php deleted file mode 100644 index 6e832ea2..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/backend/order_collection_form.blade.php +++ /dev/null @@ -1,57 +0,0 @@ - - - -
- - - -
- - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/assigned_delivery.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/assigned_delivery.blade.php deleted file mode 100644 index 440531e4..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/assigned_delivery.blade.php +++ /dev/null @@ -1,122 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Assigned Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($assigned_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As Pickup')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - {{ single_price($delivery->grand_total) }} - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $assigned_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_list.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_list.blade.php deleted file mode 100644 index 7a922a84..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_list.blade.php +++ /dev/null @@ -1,61 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('All Cancel Request') }}
-
-
- - - - - - - - - - - - @foreach($cancel_requests as $key => $cancel_request) - - - - - - - - - - - - - @endforeach - -
#{{translate('Code')}}{{translate('Request By')}}{{translate('Request At')}}{{translate('Options')}}
- {{ ($key+1) + ($cancel_requests->currentPage() - 1) * $cancel_requests->perPage() }} - - {{ $cancel_request->code }} - - {{ $cancel_request->delivery_boy->name }} - - {{ date('d-m-Y h:i A', strtotime($cancel_request->cancel_request_at)) }} - - - - - - - - - - - -
- -
- {{ $cancel_requests->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_modal.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_modal.blade.php deleted file mode 100644 index 01ceb9d7..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_modal.blade.php +++ /dev/null @@ -1,18 +0,0 @@ - \ No newline at end of file diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancelled_delivery.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancelled_delivery.blade.php deleted file mode 100644 index c5936d3e..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/cancelled_delivery.blade.php +++ /dev/null @@ -1,81 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Cancelled Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($cancelled_deliveries as $key => $order) - @if (count($order->orderDetails) > 0) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $order->code }} - - {{ date('d-m-Y', $order->date) }} - - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->orderDetails->first()->delivery_status))) }} - @if($order->delivery_viewed == 0) - * - @endif - - @if ($order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($order->payment_status_viewed == 0) - * - @endif - - - - - - - - - - - - - - -
- -
- {{ $cancelled_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/completed_delivery.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/completed_delivery.blade.php deleted file mode 100644 index 75dc5fb7..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/completed_delivery.blade.php +++ /dev/null @@ -1,75 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Completed Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($completed_deliveries as $key => $delivery) - @if(optional($delivery->order)->code) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $delivery->order->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->created_at)) }} - - {{ single_price($delivery->collection) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - - @if ($delivery->order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - - - - - - - - - - - - - - -
- -
- {{ $completed_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/dashboard.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/dashboard.blade.php deleted file mode 100644 index 9097b330..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/dashboard.blade.php +++ /dev/null @@ -1,252 +0,0 @@ -@extends('delivery_boys.layouts.app') -@section('panel_content') - -@php - $delivery_boy_info = \App\Models\DeliveryBoy::where('user_id', Auth::user()->id)->first(); -@endphp - -
-
-
-

{{ translate('Dashboard') }}

-
-
-

{{ date('d M, Y') }}

- {{ date('l') }} -
-
-
- -
- - - @php - $total_complete_delivery = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->count(); - @endphp -
-
- - - - - - - - - - -
-

{{ translate('Completed Delivery') }}

-

{{ sprintf('%02d', $total_complete_delivery) }}

-
-
-
- - - @php - $total_pending_delivery = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', '!=', 'delivered') - ->where('delivery_status', '!=', 'cancelled') - ->where('cancel_request', '0') - ->count(); - @endphp -
-
- - - - - - - - - -
-

{{ translate('Pending Delivery') }}

-

{{ sprintf('%02d', $total_pending_delivery) }}

-
-
-
- - -
-
- - - - - - - - - - - - - - - - -
-

{{ translate('Total Collected') }}

-

{{ $delivery_boy_info->total_collection }}

-
-
-
- - -
-
- - - - - - - -
-

{{ translate('Earnings') }}

- @if(get_setting('delivery_boy_payment_type') == 'commission') -

- {{ $delivery_boy_info->total_earning }}/ - - {{ translate('order') }} - -

- @endif - @if(get_setting('delivery_boy_payment_type') == 'salary') -

- {{ get_setting('delivery_boy_salary') }} / {{ translate('mo') }} -

- @endif -
-
-
- -
- -
- - - @php - $cancelled_deliveries = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'cancelled') - ->count(); - @endphp -
-
- - - - - - -

{{ translate('Cancelled Delivery') }}

-

- {{ sprintf('%02d', $cancelled_deliveries) }} -

-
-
- - - - -
- - - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/delivery_boy_sidenav.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/delivery_boy_sidenav.blade.php deleted file mode 100644 index 4806de60..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/delivery_boy_sidenav.blade.php +++ /dev/null @@ -1,222 +0,0 @@ - diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/footer.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/footer.blade.php deleted file mode 100644 index 091848d6..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/footer.blade.php +++ /dev/null @@ -1,82 +0,0 @@ - - - - -@if (Auth::check()) - -@endif diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/nav.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/nav.blade.php deleted file mode 100644 index 7bb9ee39..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/inc/nav.blade.php +++ /dev/null @@ -1,118 +0,0 @@ -
- -
-
-
- - - -
- @auth - - @else - - - @endauth -
-
-
- - - -
-
- - - - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/layouts/app.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/layouts/app.blade.php deleted file mode 100644 index 854bfec0..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/layouts/app.blade.php +++ /dev/null @@ -1,243 +0,0 @@ - -@if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - -@else - -@endif - - - - - - - @yield('meta_title', get_setting('website_name').' | '.get_setting('site_motto')) - - - - - - - - @yield('meta') - - @if(!isset($detailedProduct) && !isset($customer_product) && !isset($shop) && !isset($page) && !isset($blog)) - - - - - - - - - - - - - - - - - - - - - - @endif - - - - - - - - - - - - @if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - - @endif - - - - - - - - -@php - echo get_setting('header_script'); -@endphp - - - - -
- - - @include('delivery_boys.inc.nav') - - -
-
-
- @include('delivery_boys.inc.delivery_boy_sidenav') -
- @yield('panel_content') -
-
-
-
- - - @include('delivery_boys.inc.footer') - -
- - @include('frontend.partials.modal') - - - - @yield('modal') - - - - - - - - - - - - @yield('script') - - @php - echo get_setting('footer_script'); - @endphp - - - diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/on_the_way_delivery.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/on_the_way_delivery.blade.php deleted file mode 100644 index 7cb2a1d6..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/on_the_way_delivery.blade.php +++ /dev/null @@ -1,123 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('On The Way Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($on_the_way_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As Delivered')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - - {{ single_price($delivery->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $on_the_way_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/order_detail.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/order_detail.blade.php deleted file mode 100644 index 9602b3fc..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/order_detail.blade.php +++ /dev/null @@ -1,210 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') - -
-
-
-

{{ translate('Order id')}}: {{ $order->code }}

-
-
-
- - - @php - $status = $order->orderDetails->first()->delivery_status; - @endphp - - -
-
- {{ translate('Order Summary') }} -
-
-
-
- - - - - - - - - - - - @if ($order->user_id != null) - - @endif - - - - - -
{{ translate('Order Code')}}:{{ $order->code }}
{{ translate('Customer')}}:{{ json_decode($order->shipping_address)->name }}
{{ translate('Email')}}:{{ $order->user->email }}
{{ translate('Shipping address')}}:{{ json_decode($order->shipping_address)->address }}, {{ json_decode($order->shipping_address)->city }}, {{ json_decode($order->shipping_address)->postal_code }}, {{ json_decode($order->shipping_address)->country }}
-
-
- - - - - - - - - - - - - - - - - - - - - - @if ($order->tracking_code) - - - - - @endif -
{{ translate('Order date')}}:{{ date('d-m-Y H:i A', $order->date) }}
{{ translate('Order status')}}:{{ translate(ucfirst(str_replace('_', ' ', $status))) }}
{{ translate('Total order amount')}}:{{ single_price($order->orderDetails->sum('price') + $order->orderDetails->sum('tax')) }}
{{ translate('Shipping method')}}:{{ translate('Flat shipping rate')}}
{{ translate('Payment method')}}:{{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }}
{{ translate('Tracking code')}}:{{ $order->tracking_code }}
-
-
-
-
- - -
-
-
-
- {{ translate('Order Details') }} -
-
- - - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - - - - - - - - - @endforeach - -
#{{ translate('Product')}}{{ translate('Variation')}}{{ translate('Quantity')}}{{ translate('Delivery Type')}}{{ translate('Price')}}
{{ $key+1 }} - @if ($orderDetail->product != null && $orderDetail->product->auction_product == 0) - {{ $orderDetail->product->getTranslation('name') }} - @elseif($orderDetail->product != null && $orderDetail->product->auction_product == 1) - {{ $orderDetail->product->getTranslation('name') }} - @else - {{ translate('Product Unavailable') }} - @endif - - {{ $orderDetail->variation }} - - {{ $orderDetail->quantity }} - - @if ($order->shipping_type != null && $order->shipping_type == 'home_delivery') - {{ translate('Home Delivery') }} - @elseif ($order->shipping_type == 'pickup_point') - @if ($order->pickup_point != null) - {{ $order->pickup_point->name }} ({{ translate('Pickip Point') }}) - @endif - @endif - {{ single_price($orderDetail->price) }}
-
-
-
- - -
-
-
- {{ translate('Order Ammount') }} -
-
- - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Subtotal')}} - {{ single_price($order->orderDetails->sum('price')) }} -
{{ translate('Shipping')}} - {{ single_price($order->orderDetails->sum('shipping_cost')) }} -
{{ translate('Tax')}} - {{ single_price($order->orderDetails->sum('tax')) }} -
{{ translate('Coupon')}} - {{ single_price($order->coupon_discount) }} -
{{ translate('Total')}} - {{ single_price($order->grand_total) }} -
-
-
- @if ($order->manual_payment && $order->manual_payment_data == null) - - @endif -
-
-@endsection - -@section('modal') - - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/pending_delivery.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/pending_delivery.blade.php deleted file mode 100644 index df345cd0..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/pending_delivery.blade.php +++ /dev/null @@ -1,99 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Pending Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($pending_deliveries as $key => $order) - @if (count($order->orderDetails) > 0) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $order->code }} - - {{ date('d-m-Y', $order->date) }} - - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->delivery_status))) }} - @if($order->delivery_viewed == 0) - * - @endif - - @if ($order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($order->payment_status_viewed == 0) - * - @endif - - - - - - - - - - - - - - - - - -
- -
- {{ $pending_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/pickup_delivery.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/pickup_delivery.blade.php deleted file mode 100644 index 45c2dc56..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/pickup_delivery.blade.php +++ /dev/null @@ -1,123 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Picked Up Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($pickup_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As On The Way')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - - {{ single_price($delivery->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $pickup_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/profile.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/profile.blade.php deleted file mode 100644 index fd7ba0a4..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/profile.blade.php +++ /dev/null @@ -1,140 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
-

{{ translate('Manage Profile') }}

-
-
-
- - -
-
-
{{ translate('Basic Info')}}
-
-
-
- @csrf - -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
- - -
-
-
{{ translate('Change your email')}}
-
-
-
- @csrf -
-
- -
-
- -
- -
- -
-
- -
- -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/total_collection_list.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/total_collection_list.blade.php deleted file mode 100644 index 34dfb295..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/total_collection_list.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Total Collection History') }}
-
-
- - - - - - - - - - - @foreach ($today_collections as $key => $collection) - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Options')}}
- {{ $collection->order->code }} - - {{ date('d-m-Y h:i A', strtotime($collection->created_at)) }} - - {{ single_price($collection->collection) }} - - - - - - - - - - - - - - -
- -
- {{ $today_collections->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/total_earning_list.blade.php b/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/total_earning_list.blade.php deleted file mode 100644 index c8447b8a..00000000 --- a/desarrollo/temp/dnon0ubQij/addons/delivery_boy/views/delivery_boys/frontend/total_earning_list.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Earning History') }}
-
-
- - - - - - - - - - - @foreach ($total_earnings as $key => $earning) - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Options')}}
- {{ $earning->order->code }} - - {{ date('d-m-Y h:i A', strtotime($earning->created_at)) }} - - {{ single_price($earning->earning) }} - - - - - - - - - - - - - - -
- -
- {{ $total_earnings->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/assets/auction.png b/desarrollo/temp/oAkwuD3Ui7/addons/auction/assets/auction.png deleted file mode 100644 index 506825ce..00000000 Binary files a/desarrollo/temp/oAkwuD3Ui7/addons/auction/assets/auction.png and /dev/null differ diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/config.json b/desarrollo/temp/oAkwuD3Ui7/addons/auction/config.json deleted file mode 100644 index 5c530d94..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/config.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "name":"auction", - "unique_identifier":"auction", - "version":"1.5", - "minimum_item_version":"7.0.0", - "addon_banner":"auction.png", - "directory":[ - { - "name":[ - "app/Services", - "resources/views/auction", - "resources/views/auction/auction_products", - "resources/views/auction/frontend", - "resources/views/auction/frontend/seller" - ] - } - ], - "sql_file":"", - "files":[ - { - "root_directory":"addons/auction/assets/auction.png", - "update_directory":"public/auction.png" - }, - { - "root_directory":"addons/auction/controllers/AuctionProductBidController.php", - "update_directory":"app/Http/Controllers/AuctionProductBidController.php" - }, - { - "root_directory":"addons/auction/controllers/AuctionProductController.php", - "update_directory":"app/Http/Controllers/AuctionProductController.php" - }, - { - "root_directory":"addons/auction/services/AuctionService.php", - "update_directory":"app/Services/AuctionService.php" - }, - { - "root_directory":"addons/auction/views/auction/auction_products/bids.blade.php", - "update_directory":"resources/views/auction/auction_products/bids.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/auction_products/create.blade.php", - "update_directory":"resources/views/auction/auction_products/create.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/auction_products/edit.blade.php", - "update_directory":"resources/views/auction/auction_products/edit.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/auction_products/index.blade.php", - "update_directory":"resources/views/auction/auction_products/index.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/seller/auction_product_edit.blade.php", - "update_directory":"resources/views/auction/frontend/seller/auction_product_edit.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/seller/auction_product_list.blade.php", - "update_directory":"resources/views/auction/frontend/seller/auction_product_list.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/seller/auction_product_orders.blade.php", - "update_directory":"resources/views/auction/frontend/seller/auction_product_orders.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/seller/auction_product_upload.blade.php", - "update_directory":"resources/views/auction/frontend/seller/auction_product_upload.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/seller/auction_products_bids.blade.php", - "update_directory":"resources/views/auction/frontend/seller/auction_products_bids.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/addToCartAuction.blade.php", - "update_directory":"resources/views/auction/frontend/addToCartAuction.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/all_auction_products.blade.php", - "update_directory":"resources/views/auction/frontend/all_auction_products.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/auction_product_details.blade.php", - "update_directory":"resources/views/auction/frontend/auction_product_details.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/auction_products_section.blade.php", - "update_directory":"resources/views/auction/frontend/auction_products_section.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/my_bidded_products.blade.php", - "update_directory":"resources/views/auction/frontend/my_bidded_products.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/frontend/purchase_history.blade.php", - "update_directory":"resources/views/auction/frontend/purchase_history.blade.php" - }, - { - "root_directory":"addons/auction/views/auction/auction_product_orders.blade.php", - "update_directory":"resources/views/auction/auction_product_orders.blade.php" - } - ] -} diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/controllers/AuctionProductBidController.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/controllers/AuctionProductBidController.php deleted file mode 100644 index 1e9d480e..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/controllers/AuctionProductBidController.php +++ /dev/null @@ -1,146 +0,0 @@ -middleware(['permission:view_auction_product_bids'])->only('product_bids_admin'); - $this->middleware(['permission:delete_auction_product_bids'])->only('bid_destroy_admin'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index() - { - $bids = DB::table('auction_product_bids') - ->orderBy('id', 'desc') - ->join('products', 'auction_product_bids.product_id', '=', 'products.id') - ->where('auction_product_bids.user_id', Auth::user()->id) - ->select('auction_product_bids.id') - ->distinct() - ->paginate(10); - return view('auction.frontend.my_bidded_products', compact('bids')); - } - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function create() - { - // - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function store(Request $request) - { - $bid = AuctionProductBid::where('product_id', $request->product_id)->where('user_id', Auth::user()->id)->first(); - if ($bid == null) { - $bid = new AuctionProductBid; - $bid->user_id = Auth::user()->id; - } - $bid->product_id = $request->product_id; - $bid->amount = $request->amount; - if ($bid->save()) { - $secound_max_bid = AuctionProductBid::where('product_id', $request->product_id)->orderBy('amount','desc')->skip(1)->first(); - if($secound_max_bid != null){ - if($secound_max_bid->user->email != null){ - $product = Product::where('id',$request->product_id)->first(); - $array['view'] = 'emails.auction_bid'; - $array['subject'] = translate('Auction Bid'); - $array['from'] = env('MAIL_FROM_ADDRESS'); - $array['content'] = 'Hi! A new user bidded more then you for the product, '.$product->name.'. '.'Highest bid amount: '.$bid->amount; - $array['link'] = route('auction-product', $product->slug); - try { - Mail::to($secound_max_bid->user->email)->queue(new AuctionBidMailManager($array)); - } catch (\Exception $e) { - //dd($e->getMessage()); - } - } - } - - flash(translate('Bid Placed Successfully'))->success(); - } else { - flash(translate('Something went wrong!'))->error(); - } - return back(); - } - - - public function product_bids_admin($id) - { - $product = Product::where('id', $id)->first(); - $bids = AuctionProductBid::latest()->where('product_id', $id)->paginate(15); - return view('auction.auction_products.bids', compact('bids', 'product')); - } - - public function product_bids_seller($id) - { - $product = Product::where('id', $id)->first(); - $bids = AuctionProductBid::latest()->where('product_id', $id)->paginate(15); - return view('auction.frontend.seller.auction_products_bids', compact('bids', 'product')); - } - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function edit($id) - { - // - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function update(Request $request, $id) - { - // - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function bid_destroy_admin($id) - { - AuctionProductBid::destroy($id); - flash(translate('Bid deleted successfully'))->success(); - return back(); - } - - public function bid_destroy_seller($id) - { - AuctionProductBid::destroy($id); - flash(translate('Bid deleted successfully'))->success(); - return back(); - } -} diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/controllers/AuctionProductController.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/controllers/AuctionProductController.php deleted file mode 100644 index 002b1609..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/controllers/AuctionProductController.php +++ /dev/null @@ -1,408 +0,0 @@ -middleware(['permission:view_all_auction_products'])->only('all_auction_product_list'); - $this->middleware(['permission:view_inhouse_auction_products'])->only('inhouse_auction_products'); - $this->middleware(['permission:view_seller_auction_products'])->only('seller_auction_products'); - $this->middleware(['permission:add_auction_product'])->only('product_create_admin'); - $this->middleware(['permission:edit_auction_product'])->only('product_edit_admin'); - $this->middleware(['permission:delete_auction_product'])->only('product_destroy_admin'); - $this->middleware(['permission:view_auction_product_orders'])->only('admin_auction_product_orders'); - } - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - - // Auction products list admin panel - public function all_auction_product_list(Request $request) - { - $sort_search = null; - $seller_id = null; - $type = 'all'; - $products = Product::orderBy('created_at', 'desc')->where('auction_product', 1); - - if ($request->has('user_id') && $request->user_id != null) { - $products = $products->where('user_id', $request->user_id); - $seller_id = $request->user_id; - } - if ($request->search != null) { - $products = $products->where('name', 'like', '%' . $request->search . '%'); - $sort_search = $request->search; - } - - $products = $products->paginate(15); - - return view('auction.auction_products.index', compact('products', 'sort_search', 'type', 'seller_id')); - } - - public function inhouse_auction_products(Request $request) - { - $sort_search = null; - $seller_id = null; - $type = 'in_house'; - $products = Product::where('added_by', 'admin')->orderBy('created_at', 'desc')->where('auction_product', 1); - if ($request->search != null) { - $products = $products->where('name', 'like', '%' . $request->search . '%'); - $sort_search = $request->search; - } - - $products = $products->paginate(15); - - return view('auction.auction_products.index', compact('products', 'sort_search', 'type', 'seller_id')); - } - - public function seller_auction_products(Request $request) - { - $sort_search = null; - $seller_id = null; - $type = 'seller'; - $products = Product::where('added_by', 'seller')->orderBy('created_at', 'desc')->where('auction_product', 1); - - if ($request->has('user_id') && $request->user_id != null) { - $products = $products->where('user_id', $request->user_id); - $seller_id = $request->user_id; - } - - if ($request->search != null) { - $products = $products - ->where('name', 'like', '%' . $request->search . '%'); - $sort_search = $request->search; - } - - $products = $products->paginate(15); - - return view('auction.auction_products.index', compact('products', 'sort_search', 'type', 'seller_id')); - } - // Auction products list admin panel end - - // Auction Products list in Seller panel - public function auction_product_list_seller(Request $request) - { - if (get_setting('seller_auction_product') == 0) { - return redirect()->route('home'); - } - - $sort_search = null; - $products = Product::where('auction_product', 1)->where('user_id', Auth::user()->id)->orderBy('created_at', 'desc'); - if ($request->search != null) { - $products = $products - ->where('name', 'like', '%' . $request->search . '%'); - $sort_search = $request->search; - } - - $products = $products->paginate(15); - - return view('auction.frontend.seller.auction_product_list', compact('products', 'sort_search')); - } - - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function product_create_admin() - { - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - - return view('auction.auction_products.create', compact('categories')); - } - - public function product_create_seller() - { - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - - if (get_setting('seller_auction_product') == 1) { - if (addon_is_activated('seller_subscription')) { - if (Auth::user()->shop->seller_package != null && Auth::user()->shop->seller_package->product_upload_limit > Auth::user()->products()->count()) { - return view('auction.frontend.seller.auction_product_upload', compact('categories')); - } else { - flash(translate('Upload limit has been reached. Please upgrade your package.'))->warning(); - return back(); - } - } else { - return view('auction.frontend.seller.auction_product_upload', compact('categories')); - } - } - } - - public function product_store_admin(Request $request) - { - (new AuctionService)->store($request); - return redirect()->route('auction.inhouse_products'); - } - - public function product_store_seller(Request $request) - { - if (addon_is_activated('seller_subscription')) { - if ( - Auth::user()->shop->seller_package == null || - Auth::user()->shop->seller_package->product_upload_limit <= Auth::user()->products()->count() - ) { - flash(translate('Upload limit has been reached. Please upgrade your package.'))->warning(); - return back(); - } - } - - (new AuctionService)->store($request); - return redirect()->route('auction_products.seller.index'); - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function product_destroy_admin($id) - { - (new AuctionService)->destroy($id); - return redirect()->route('auction.inhouse_products'); - } - - public function product_destroy_seller($id) - { - (new AuctionService)->destroy($id); - return redirect()->route('auction_products.seller.index'); - } - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function product_edit_admin(Request $request, $id) - { - $product = Product::findOrFail($id); - $lang = $request->lang; - $tags = json_decode($product->tags); - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - return view('auction.auction_products.edit', compact('product', 'categories', 'tags', 'lang')); - } - - public function product_edit_seller(Request $request, $id) - { - $product = Product::findOrFail($id); - $lang = $request->lang; - $tags = json_decode($product->tags); - $categories = Category::where('parent_id', 0) - ->where('digital', 0) - ->with('childrenCategories') - ->get(); - - return view('auction.frontend.seller.auction_product_edit', compact('product', 'categories', 'tags', 'lang')); - } - - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function product_update_admin(Request $request, $id) - { - (new AuctionService)->update($request, $id); - return back(); - } - - public function product_update_seller(Request $request, $id) - { - (new AuctionService)->update($request, $id); - return back(); - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function destroy($id) - { - (new AuctionService)->destroy($id); - return back(); - } - - public function get_products_by_brand(Request $request) - { - $products = Product::where('brand_id', $request->brand_id)->get(); - return view('partials.product_select', compact('products')); - } - - - public function updatePublished(Request $request) - { - $product = Product::findOrFail($request->id); - $product->published = $request->status; - - if ($product->added_by == 'seller' && addon_is_activated('seller_subscription')) { - $seller = $product->user->shop; - if ($seller->package_invalid_at != null && Carbon::now()->diffInDays(Carbon::parse($seller->package_invalid_at), false) <= 0) { - return 0; - } - } - - $product->save(); - return 1; - } - - public function all_auction_products() - { - $products = Product::latest()->where('published', 1)->where('auction_product', 1); - if (get_setting('seller_auction_product') == 0) { - $products = $products->where('added_by', 'admin'); - } - $products = $products->where('auction_start_date', '<=', strtotime("now"))->where('auction_end_date', '>=', strtotime("now"))->paginate(15); - return view('auction.frontend.all_auction_products', compact('products')); - } - - public function auction_product_details(Request $request, $slug) - { - $detailedProduct = Product::where('slug', $slug)->first(); - $product_queries = ProductQuery::where('product_id', $detailedProduct->id)->where('customer_id', '!=', Auth::id())->latest('id')->paginate(3); - $total_query = ProductQuery::where('product_id', $detailedProduct->id)->count(); - $reviews = $detailedProduct->reviews()->paginate(3); - - // review status - $review_status = 0; - if (Auth::check()) { - $OrderDetail = OrderDetail::with(['order' => function ($q) { - $q->where('user_id', Auth::id()); - }])->where('product_id', $detailedProduct->id)->where('delivery_status', 'delivered')->first(); - $review_status = $OrderDetail ? 1 : 0; - } - - if ($detailedProduct != null) { - return view('frontend.product_details', compact('detailedProduct', 'product_queries', 'total_query', 'reviews', 'review_status')); - } - abort(404); - } - - public function purchase_history_user() - { - $orders = DB::table('orders') - ->orderBy('code', 'desc') - ->join('order_details', 'orders.id', '=', 'order_details.order_id') - ->join('products', 'order_details.product_id', '=', 'products.id') - ->where('orders.user_id', Auth::user()->id) - ->where('products.auction_product', '1') - ->select('order_details.order_id as id') - ->paginate(15); - return view('auction.frontend.purchase_history', compact('orders')); - } - - public function admin_auction_product_orders(Request $request) - { - $payment_status = null; - $delivery_status = null; - $sort_search = null; - $date = $request->date; - $orders = DB::table('orders') - ->orderBy('code', 'desc') - ->join('order_details', 'orders.id', '=', 'order_details.order_id') - ->join('products', 'order_details.product_id', '=', 'products.id') - ->where('products.auction_product', '1') - ->select('orders.id'); - - if ($request->payment_status != null) { - $orders = $orders->where('payment_status', $request->payment_status); - $payment_status = $request->payment_status; - } - if ($request->delivery_status != null) { - $orders = $orders->where('delivery_status', $request->delivery_status); - $delivery_status = $request->delivery_status; - } - if ($request->has('search')) { - $sort_search = $request->search; - $orders = $orders->where('code', 'like', '%' . $sort_search . '%'); - } - if ($date != null) { - $orders = $orders->whereDate('orders.created_at', '>=', date('Y-m-d', strtotime(explode(" to ", $date)[0])))->whereDate('orders.created_at', '<=', date('Y-m-d', strtotime(explode(" to ", $date)[1]))); - } - - $orders = $orders->paginate(15); - - return view('auction.auction_product_orders', compact('orders', 'payment_status', 'delivery_status', 'sort_search', 'date')); - } - - public function auction_orders_show($id) - { - $order = Order::findOrFail(decrypt($id)); - $order_shipping_address = json_decode($order->shipping_address); - $delivery_boys = User::where('city', $order_shipping_address->city) - ->where('user_type', 'delivery_boy') - ->get(); - - $order->viewed = 1; - $order->save(); - - return view('auction.auction_product_order_details', compact('order', 'delivery_boys')); - } - - public function seller_auction_product_orders(Request $request) - { - if (get_setting('seller_auction_product') == 0) { - return redirect()->route('home'); - } - - $payment_status = null; - $delivery_status = null; - $sort_search = null; - $orders = DB::table('orders') - ->orderBy('code', 'desc') - ->where('orders.seller_id', Auth::user()->id) - ->join('order_details', 'orders.id', '=', 'order_details.order_id') - ->join('products', 'order_details.product_id', '=', 'products.id') - ->where('products.auction_product', '1') - ->select('orders.id'); - - - if ($request->payment_status != null) { - $orders = $orders->where('payment_status', $request->payment_status); - $payment_status = $request->payment_status; - } - if ($request->delivery_status != null) { - $orders = $orders->where('delivery_status', $request->delivery_status); - $delivery_status = $request->delivery_status; - } - if ($request->has('search')) { - $sort_search = $request->search; - $orders = $orders->where('code', 'like', '%' . $sort_search . '%'); - } - - $orders = $orders->paginate(15); - return view('auction.frontend.seller.auction_product_orders', compact('orders', 'payment_status', 'delivery_status', 'sort_search')); - } -} diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/documentation/Documentation.pdf b/desarrollo/temp/oAkwuD3Ui7/addons/auction/documentation/Documentation.pdf deleted file mode 100644 index e455846d..00000000 Binary files a/desarrollo/temp/oAkwuD3Ui7/addons/auction/documentation/Documentation.pdf and /dev/null differ diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/services/AuctionService.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/services/AuctionService.php deleted file mode 100644 index 794ca597..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/services/AuctionService.php +++ /dev/null @@ -1,322 +0,0 @@ -name = $request->name; - $product->added_by = $request->added_by; - - if(Auth::user()->user_type == 'seller'){ - $product->user_id = Auth::user()->id; - if(get_setting('product_approve_by_admin') == 1) { - $product->approved = 0; - } - } - else{ - $product->user_id = \App\Models\User::where('user_type', 'admin')->first()->id; - } - - $product->auction_product = 1; - $product->category_id = $request->category_id; - $product->brand_id = $request->brand_id; - $product->barcode = $request->barcode; - $product->starting_bid = $request->starting_bid; - - if (addon_is_activated('refund_request')) { - if ($request->refundable != null) { - $product->refundable = 1; - } - else { - $product->refundable = 0; - } - } - $product->photos = $request->photos; - $product->thumbnail_img = $request->thumbnail_img; - // $product->min_qty = 1; - // $product->stock_visibility_state = ''; - - - $tags = array(); - if($request->tags[0] != null){ - foreach (json_decode($request->tags[0]) as $key => $tag) { - array_push($tags, $tag->value); - } - } - $product->tags = implode(',', $tags); - - $product->description = $request->description; - $product->video_provider = $request->video_provider; - $product->video_link = $request->video_link; - - if ($request->auction_date_range != null) { - $date_var = explode(" to ", $request->auction_date_range); - $product->auction_start_date = strtotime($date_var[0]); - $product->auction_end_date = strtotime($date_var[1]); - } - - $product->shipping_type = $request->shipping_type; - $product->est_shipping_days = $request->est_shipping_days; - - if (addon_is_activated('club_point')) { - if($request->earn_point) { - $product->earn_point = $request->earn_point; - } - } - - if ($request->has('shipping_type')) { - if($request->shipping_type == 'free'){ - $product->shipping_cost = 0; - } - elseif ($request->shipping_type == 'flat_rate') { - $product->shipping_cost = $request->flat_shipping_cost; - } - elseif ($request->shipping_type == 'product_wise') { - $product->shipping_cost = json_encode($request->shipping_cost); - } - } - if ($request->has('is_quantity_multiplied')) { - $product->is_quantity_multiplied = 1; - } - - $product->meta_title = $request->meta_title; - $product->meta_description = $request->meta_description; - - if($request->has('meta_img')){ - $product->meta_img = $request->meta_img; - } else { - $product->meta_img = $product->thumbnail_img; - } - - if($product->meta_title == null) { - $product->meta_title = $product->name; - } - - if($product->meta_description == null) { - $product->meta_description = strip_tags($product->description); - } - - if($product->meta_img == null) { - $product->meta_img = $product->thumbnail_img; - } - - if($request->hasFile('pdf')){ - $product->pdf = $request->pdf->store('uploads/products/pdf'); - } - - $product->slug = preg_replace('/[^A-Za-z0-9\-]/', '', str_replace(' ', '-', $request->name)).'-'.Str::random(5); - - - $product->colors = json_encode(array()); - $product->attributes = json_encode(array()); - $product->choice_options = json_encode(array(), JSON_UNESCAPED_UNICODE); - - if ($request->has('cash_on_delivery')) { - $product->cash_on_delivery = 1; - } - if ($request->has('todays_deal')) { - $product->todays_deal = 1; - } - $product->cash_on_delivery = 0; - if ($request->cash_on_delivery) { - $product->cash_on_delivery = 1; - } - - $product->save(); - - //VAT & Tax - if($request->tax_id) { - foreach ($request->tax_id as $key => $val) { - $product_tax = new ProductTax; - $product_tax->tax_id = $val; - $product_tax->product_id = $product->id; - $product_tax->tax = $request->tax[$key]; - $product_tax->tax_type = $request->tax_type[$key]; - $product_tax->save(); - } - } - - //Generates the combinations of customer choice options - $product_stock = new ProductStock; - $product_stock->product_id = $product->id; - $product_stock->variant = ''; - $product_stock->price = 0; - $product_stock->sku = $request->sku; - $product_stock->qty = 1; - $product_stock->save(); - - //combinations end - - $product->save(); - - // Product Translations - $product_translation = ProductTranslation::firstOrNew(['lang' => env('DEFAULT_LANGUAGE'), 'product_id' => $product->id]); - $product_translation->name = $request->name; - $product_translation->unit = $request->unit; - $product_translation->description = $request->description; - $product_translation->save(); - - flash(translate('Product has been inserted successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - } - - public function update(Request $request , $id){ - $product = Product::findOrFail($id); - $product->category_id = $request->category_id; - $product->brand_id = $request->brand_id; - $product->barcode = $request->barcode; - $product->cash_on_delivery = 0; - $product->is_quantity_multiplied = 0; - - - if (addon_is_activated('refund_request')) { - if ($request->refundable != null) { - $product->refundable = 1; - } - else { - $product->refundable = 0; - } - } - - if($request->lang == env("DEFAULT_LANGUAGE")){ - $product->name = $request->name; - $product->unit = $request->unit; - $product->description = $request->description; - $product->slug = strtolower($request->slug); - } - - $product->photos = $request->photos; - $product->thumbnail_img = $request->thumbnail_img; - - $tags = array(); - if($request->tags[0] != null){ - foreach (json_decode($request->tags[0]) as $key => $tag) { - array_push($tags, $tag->value); - } - } - $product->tags = implode(',', $tags); - - $product->video_provider = $request->video_provider; - $product->video_link = $request->video_link; - $product->starting_bid = $request->starting_bid; - - if ($request->auction_date_range != null) { - $date_var = explode(" to ", $request->auction_date_range); - $product->auction_start_date = strtotime($date_var[0]); - $product->auction_end_date = strtotime( $date_var[1]); - } - - $product->shipping_type = $request->shipping_type; - $product->est_shipping_days = $request->est_shipping_days; - - if (addon_is_activated('club_point')) { - if($request->earn_point) { - $product->earn_point = $request->earn_point; - } - } - - if ($request->has('shipping_type')) { - if($request->shipping_type == 'free'){ - $product->shipping_cost = 0; - } - elseif ($request->shipping_type == 'flat_rate') { - $product->shipping_cost = $request->flat_shipping_cost; - } - elseif ($request->shipping_type == 'product_wise') { - $product->shipping_cost = json_encode($request->shipping_cost); - } - } - - if ($request->has('is_quantity_multiplied')) { - $product->is_quantity_multiplied = 1; - } - if ($request->has('cash_on_delivery')) { - $product->cash_on_delivery = 1; - } - - $product->meta_title = $request->meta_title; - $product->meta_description = $request->meta_description; - $product->meta_img = $request->meta_img; - - if($product->meta_title == null) { - $product->meta_title = $product->name; - } - - if($product->meta_description == null) { - $product->meta_description = strip_tags($product->description); - } - - if($product->meta_img == null) { - $product->meta_img = $product->thumbnail_img; - } - - $product->pdf = $request->pdf; - $product->colors = json_encode(array()); - $product->attributes = json_encode(array()); - $product->choice_options = json_encode(array(), JSON_UNESCAPED_UNICODE); - - $product->save(); - - //VAT & Tax - if($request->tax_id) { - ProductTax::where('product_id', $product->id)->delete(); - foreach ($request->tax_id as $key => $val) { - $product_tax = new ProductTax; - $product_tax->tax_id = $val; - $product_tax->product_id = $product->id; - $product_tax->tax = $request->tax[$key]; - $product_tax->tax_type = $request->tax_type[$key]; - $product_tax->save(); - } - } - - // Product Translations - $product_translation = ProductTranslation::firstOrNew(['lang' => $request->lang, 'product_id' => $product->id]); - $product_translation->name = $request->name; - $product_translation->unit = $request->unit; - $product_translation->description = $request->description; - $product_translation->save(); - - flash(translate('Product has been updated successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - } - - public function destroy($id){ - $product = Product::findOrFail($id); - foreach ($product->product_translations as $key => $product_translations) { - $product_translations->delete(); - } - - foreach ($product->bids as $key => $bid) { - $bid->delete(); - } - - if(Product::destroy($id)){ - Cart::where('product_id', $id)->delete(); - - flash(translate('Product has been deleted successfully'))->success(); - - Artisan::call('view:clear'); - Artisan::call('cache:clear'); - } - else{ - flash(translate('Something went wrong'))->error(); - } - } -} diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.1.sql b/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.1.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.2.sql b/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.2.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.2.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.3.sql b/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.3.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.4.sql b/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.4.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.4.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.5.sql b/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.5.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/1.5.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/update.sql b/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/update.sql deleted file mode 100644 index 478429fc..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/sql/update.sql +++ /dev/null @@ -1,20 +0,0 @@ -CREATE TABLE `auction_product_bids` ( - `id` int(11) NOT NULL, - `product_id` bigint(20) UNSIGNED NOT NULL, - `user_id` bigint(20) UNSIGNED NOT NULL, - `amount` double(8,2) NOT NULL, - `created_at` timestamp NULL DEFAULT current_timestamp(), - `updated_at` timestamp NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - -ALTER TABLE `auction_product_bids` - ADD PRIMARY KEY (`id`); - -ALTER TABLE `auction_product_bids` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -ALTER TABLE `products` ADD `starting_bid` double(20,2) DEFAULT '0.00' AFTER `discount_end_date`; -ALTER TABLE `products` ADD `auction_start_date` INT(11) DEFAULT NULL AFTER `starting_bid`; -ALTER TABLE `products` ADD `auction_end_date` INT(11) DEFAULT NULL AFTER `auction_start_date`; - -COMMIT; diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_product_orders.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_product_orders.blade.php deleted file mode 100644 index 45ba9b12..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_product_orders.blade.php +++ /dev/null @@ -1,163 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
-
-
-
{{ translate('Auction Product Orders') }}
-
-
-
- -
-
-
- -
- -
- -
-
-
- -
-
-
-
- -
-
-
-
- -
- - - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - - @foreach ($orders as $key => $order_id) - @php - $order = \App\Models\Order::find($order_id->id); - @endphp - @if ($order != null) - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - @endif - @endforeach - -
#{{ translate('Order Code') }}{{ translate('Customer') }}{{ translate('Amount') }}{{ translate('Delivery Status') }}{{ translate('Payment Method') }}{{ translate('Payment Status') }}{{ translate('Refund') }}{{ translate('Options') }}
- {{ $key + 1 + ($orders->currentPage() - 1) * $orders->perPage() }} - - {{ $order->code }}@if ($order->viewed == 0) {{ translate('New') }}@endif - - @if ($order->user != null) - {{ $order->user->name }} - @else - Guest ({{ $order->guest_id }}) - @endif - - {{ single_price($order->grand_total) }} - - @php - $status = $order->delivery_status; - @endphp - {{ translate(ucfirst(str_replace('_', ' ', $status))) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }} - - @if ($order->payment_status == 'paid') - {{ translate('Paid') }} - @else - {{ translate('Unpaid') }} - @endif - - @if (count($order->refund_requests) > 0) - {{ count($order->refund_requests) }} {{ translate('Refund') }} - @else - {{ translate('No Refund') }} - @endif - - @can('view_order_details') - - - - @endcan - - - - @can('delete_order') - - - - @endcan -
-
- {{ $orders->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/bids.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/bids.blade.php deleted file mode 100644 index 06f4fc6e..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/bids.blade.php +++ /dev/null @@ -1,64 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('Bids For').$product->name}}

-
-
-
-
- -
-
-
-
{{ translate('All Bids') }}
-
-
- -
- - - - - - - - - - - - - - @foreach($bids as $key => $bid) - - - - - - - - - - @endforeach - -
#{{translate('Customer Name')}}{{translate('Email')}}{{translate('Phone')}}{{translate('Bid Amount')}}{{translate('Date')}}{{translate('Options')}}
{{ ($key+1) + ($bids->currentPage() - 1)*$bids->perPage() }}{{ $bid->user->name ?? translate('User Deleted') }}{{ $bid->user->email ?? '' }}{{ $bid->user->phone ?? '' }}{{ single_price($bid->amount) }}{{ date('d-m-Y', strtotime($bid->created_at)) }} - @can('delete_auction_product_bids') - - - - @endcan -
-
- {{ $bids->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/create.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/create.blade.php deleted file mode 100644 index d9c3cd17..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/create.blade.php +++ /dev/null @@ -1,388 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-
{{translate('Add New Auction Product')}}
-
-
-
-
-
- @csrf - -
-
-
{{translate('Product Information')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{translate('This is used for search. Input those words by which cutomer can find this product.')}} -
-
-
-
-
-
-
{{translate('Product Images')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('These images are visible in product details page gallery. Use 600x600 sizes images.')}} -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{translate('This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.')}} -
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- - {{translate("Use proper link without extra parameter. Don't use short share link/embeded iframe code.")}} -
-
-
-
-
-
-
{{translate('Product Bidding Price + Date Range')}}
-
-
-
- -
- -
-
- -
- -
- -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- - -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
- -
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
- -
- -
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
- -
-
-
-
- -@endsection - -@section('script') - - - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/edit.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/edit.blade.php deleted file mode 100644 index 49732da6..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/edit.blade.php +++ /dev/null @@ -1,424 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') -
-

{{ translate('Edit Auction Product') }}

-
-
-
- - - - @csrf -
-
- -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
-
-
-
{{translate('Product Images')}}
-
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Product Bidding Price + Date Range')}}
-
-
-
- -
- -
-
- - @php - $start_date = date('d-m-Y H:i:s', $product->auction_start_date); - $end_date = date('d-m-Y H:i:s', $product->auction_end_date); - @endphp - -
- -
- -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
-
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
-
-
- -
- -
-
-
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - - @php - $tax_amount = 0; - $tax_type = ''; - foreach($tax->product_taxes as $row) { - if($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
-
- -
-
-
-
-
- -@endsection - -@section('script') - - - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/index.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/index.blade.php deleted file mode 100644 index 7d1fecb2..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/auction_products/index.blade.php +++ /dev/null @@ -1,172 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('Auction products')}}

-
- @can('add_auction_product') - - @endcan -
-
-
- -
-
-
-
-
{{ translate('Auction Product') }}
-
- - @if($type == 'seller') -
- -
- @endif - @if($type == 'all') -
- -
- @endif -
-
- -
-
-
- -
- - - - - - @if($type == 'all' || $type == 'seller') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'seller') - - @endif - - - - - @foreach($products as $key => $product) - - - - @if($type == 'seller' || $type == 'all') - - @endif - - - - - @if(get_setting('product_approve_by_admin') == 1 && $type == 'seller') - - @endif - - - @endforeach - -
#{{translate('Name')}}{{translate('Added By')}}{{translate('Bid Starting Amount')}}{{translate('Auction Start Date')}}{{translate('Auction End Date')}}{{translate('Total Bids')}}{{translate('Approved')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
{{ $product->user->name }}{{ single_price($product->starting_bid) }}{{ date('Y-m-d H:i:s', $product->auction_start_date) }}{{ date('Y-m-d H:i:s', $product->auction_end_date) }}{{ $product->bids->count() }} - - - @if($product->auction_start_date > strtotime("now") && auth()->user()->can('edit_auction_product')) - - - - @endif - - - - - @can('view_auction_product_bids') - - - - @endcan - @can('delete_auction_product') - - - - @endcan -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/addToCartAuction.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/addToCartAuction.blade.php deleted file mode 100644 index a48e9f2a..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/addToCartAuction.blade.php +++ /dev/null @@ -1,97 +0,0 @@ - diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/all_auction_products.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/all_auction_products.blade.php deleted file mode 100644 index 46907c2e..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/all_auction_products.blade.php +++ /dev/null @@ -1,100 +0,0 @@ -@extends('frontend.layouts.app') - -@if (isset($category_id)) - @php - $meta_title = \App\Models\Category::find($category_id)->meta_title; - $meta_description = \App\Models\Category::find($category_id)->meta_description; - @endphp -@elseif (isset($brand_id)) - @php - $meta_title = \App\Models\Brand::find($brand_id)->meta_title; - $meta_description = \App\Models\Brand::find($brand_id)->meta_description; - @endphp -@else - @php - $meta_title = get_setting('meta_title'); - $meta_description = get_setting('meta_description'); - @endphp -@endif - -@section('meta_title'){{ $meta_title }}@stop -@section('meta_description'){{ $meta_description }}@stop - -@section('meta') - - - - - - - - - - - -@endsection - -@section('content') - -
-
-
-
-

{{ translate('All Auction Products') }}

-
-
- -
-
-
-
- - -
-
-
-
- @foreach ($products as $key => $product) -
-
- - {{  $product->getTranslation('name')  }} - -
-
-

- {{ $product->getTranslation('name') }} -

-
- {{ single_price($product->starting_bid) }} -
-
-
- @endforeach -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/auction_product_details.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/auction_product_details.blade.php deleted file mode 100644 index 4c593bd2..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/auction_product_details.blade.php +++ /dev/null @@ -1,574 +0,0 @@ -@extends('frontend.layouts.app') - -@section('meta_title'){{ $detailedProduct->meta_title }}@stop - -@section('meta_description'){{ $detailedProduct->meta_description }}@stop - -@section('meta_keywords'){{ $detailedProduct->tags }}@stop - -@section('meta') - - - - - - - - - - - - - - - - - - - - - - - - - -@endsection - -@section('content') -
-
-
-
-
-
- @php - $photos = explode(',', $detailedProduct->photos); - @endphp -
- -
-
- -
-
-
- -
-
-

- {{ $detailedProduct->getTranslation('name') }} -

- -
- @if ($detailedProduct->est_shipping_days) -
- {{ translate('Estimate Shipping Time')}}: {{ $detailedProduct->est_shipping_days }} {{ translate('Days') }} -
- @endif -
- -
- -
-
- {{ translate('Sold by')}}:
- @if ($detailedProduct->added_by == 'seller' && get_setting('vendor_system_activation') == 1) - {{ $detailedProduct->user->shop->name }} - @else - {{ translate('Inhouse product') }} - @endif -
- @if (get_setting('conversation_system') == 1) -
- -
- @endif - - @if ($detailedProduct->brand != null) -
- - {{ $detailedProduct->brand->getTranslation('name') }} - -
- @endif -
- -
-
-
-
{{ translate('Auction Will End')}}:
-
-
- @if($detailedProduct->auction_end_date > strtotime("now")) -
- @else -

Ended

- @endif - -
-
-
- -
-
-
{{ translate('Starting Bid')}}:
-
-
- - {{ single_price($detailedProduct->starting_bid) }} - - @if($detailedProduct->unit != null) - /{{ $detailedProduct->getTranslation('unit') }} - @endif -
-
-
- - @if(Auth::check() && Auth::user()->product_bids->where('product_id',$detailedProduct->id)->first() != null) -
-
-
{{ translate('My Bidded Amount')}}:
-
-
- - {{ single_price(Auth::user()->product_bids->where('product_id',$detailedProduct->id)->first()->amount) }} - -
-
-
- @endif - - @php $highest_bid = $detailedProduct->bids->max('amount'); @endphp -
-
-
{{ translate('Highest Bid')}}:
-
-
- - @if($highest_bid != null) - {{ single_price($highest_bid) }} - @endif - -
-
-
- @php $min_bid_amount = $highest_bid != null ? $highest_bid+1 : $detailedProduct->starting_bid; @endphp - @if($detailedProduct->auction_end_date >= strtotime("now")) -
- @if(Auth::check() && $detailedProduct->user_id == Auth::user()->id) - {{ translate('Seller Can Not Place Bid to His Own Product') }} - @else - - @endif -
- @endif - -
-
-
{{ translate('Share')}}:
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
- - -
-
-
-
- getTranslation('description'); ?> -
-
-
- -
-
-
- @if ($detailedProduct->video_provider == 'youtube' && isset(explode('=', $detailedProduct->video_link)[1])) - - @elseif ($detailedProduct->video_provider == 'dailymotion' && isset(explode('video/', $detailedProduct->video_link)[1])) - - @elseif ($detailedProduct->video_provider == 'vimeo' && isset(explode('vimeo.com/', $detailedProduct->video_link)[1])) - - @endif -
-
-
- -
-
-
    - @foreach ($detailedProduct->reviews as $key => $review) - @if($review->user != null) -
  • - - user->avatar_original !=null) - data-src="{{ uploaded_asset($review->user->avatar_original) }}" - @else - data-src="{{ static_asset('assets/img/placeholder.jpg') }}" - @endif - > - -
    -
    -

    {{ $review->user->name }}

    - - @for ($i=0; $i < $review->rating; $i++) - - @endfor - @for ($i=0; $i < 5-$review->rating; $i++) - - @endfor - -
    -
    {{ date('d-m-Y', strtotime($review->created_at)) }}
    -

    - {{ $review->comment }} -

    -
    -
  • - @endif - @endforeach -
- - @if(count($detailedProduct->reviews) <= 0) -
- {{ translate('There have been no reviews for this product yet.') }} -
- @endif - - @if(Auth::check()) - @php - $commentable = false; - @endphp - @foreach ($detailedProduct->orderDetails as $key => $orderDetail) - @if($orderDetail->order != null && $orderDetail->order->user_id == Auth::user()->id && - $orderDetail->delivery_status == 'delivered' && - \App\Models\Review::where('user_id', Auth::user()->id)->where('product_id', $detailedProduct->id)->first() == null) - @php - $commentable = true; - @endphp - @endif - @endforeach - @if ($commentable) -
-
-

- {{ translate('Write a review')}} -

-
-
- @csrf - -
-
-
- - -
-
-
-
- - -
-
-
-
- -
- - - - - -
-
- -
- - -
- -
- -
-
-
- @endif - @endif -
-
- -
-
-
-
-
-
- -@endsection - -@section('modal') - - - - - - @if($detailedProduct->auction_product == 1) - {{-- Bid Modal --}} - - @endif -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/auction_products_section.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/auction_products_section.blade.php deleted file mode 100644 index c88900f8..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/auction_products_section.blade.php +++ /dev/null @@ -1,138 +0,0 @@ -
-
- -
- -

- {{ translate('Auction Products') }} -

- - -
- -
-
-
- - {{ env('APP_NAME') }} promo - -
-
- @php - $products = \App\Models\Product::latest()->where('published', 1)->where('auction_product', 1); - if(get_setting('seller_auction_product') == 0){ - $products = $products->where('added_by','admin'); - } - $products = $products->where('auction_start_date','<=', strtotime("now"))->where('auction_end_date','>=', strtotime("now"))->limit(6)->get(); - @endphp -
- -
-
-
-
- - \ No newline at end of file diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/my_bidded_products.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/my_bidded_products.blade.php deleted file mode 100644 index ade7d533..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/my_bidded_products.blade.php +++ /dev/null @@ -1,124 +0,0 @@ -@extends('frontend.layouts.user_panel') - -@section('panel_content') -
-
-
{{ translate('All Bidded Products') }}
-
-
- - - - - - - - - - - - - @foreach ($bids as $key => $bid_id) - @php - $bid = \App\Models\AuctionProductBid::find($bid_id->id); - @endphp - - - - - - - - - @endforeach - -
#{{ translate('Product')}}{{ translate('My Bid')}}{{ translate('Highest Bid')}}{{ translate('End Date')}}{{ translate('Action')}}
{{ sprintf('%02d', ($key+1) + ($bids->currentPage() - 1)*$bids->perPage()) }} - - {{  $bid->product->getTranslation('name')  }} - {{ $bid->product->getTranslation('name') }} - - {{ single_price($bid->amount) }} - @php $highest_bid = $bid->where('product_id',$bid->product_id)->max('amount'); @endphp - - {{ single_price($highest_bid) }} - - - @if($bid->product->auction_end_date < strtotime("now")) - {{ translate('Ended') }} - @else - {{ date('d.m.Y H:i:s', $bid->product->auction_end_date) }} - @endif - - @php - $order = null; - $order_detail = \App\Models\OrderDetail::where('product_id',$bid->product_id)->first(); - if($order_detail != null ){ - $order = \App\Models\Order::where('id',$order_detail->order_id)->where('user_id',Auth::user()->id)->first(); - } - @endphp - @if($bid->product->auction_end_date < strtotime("now") && $bid->amount == $highest_bid && $order == null) - @php - $carts = \App\Models\Cart::where('user_id', Auth::user()->id)->get(); - @endphp - @if(count($carts) > 0 ) - @php - $cart_has_this_product = false; - foreach ($carts as $key => $cart){ - if($cart->product_id == $bid->product_id){ - $cart_has_this_product = true; - break; - } - } - @endphp - @if($cart_has_this_product) - - @else - - @endif - @else - - @endif - @elseif($order != null) - {{ translate('Purchased') }} - @else - N\A - @endif -
-
- {{ $bids->links() }} -
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/purchase_history.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/purchase_history.blade.php deleted file mode 100644 index 33b43aa7..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/purchase_history.blade.php +++ /dev/null @@ -1,108 +0,0 @@ -@extends('frontend.layouts.user_panel') - -@section('panel_content') -
-
-
{{ translate('Purchase History from Auction') }}
-
-
- - - - - - - - - - - - - @foreach ($orders as $key => $order_id) - @php - $order = \App\Models\Order::find($order_id->id); - @endphp - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $order->code }} - {{ date('d-m-Y', $order->date) }} - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->orderDetails->first()->delivery_status))) }} - @if($order->delivery_viewed == 0) - * - @endif - - @if ($order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($order->payment_status_viewed == 0) - * - @endif - - @if ($order->orderDetails->first()->delivery_status == 'pending' && $order->payment_status == 'unpaid') - - - - - - @endif - - - - - - - - - - - - - - - - - - -
-
- {{ $orders->links() }} -
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') - - -@endsection - -@section('script') - - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_edit.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_edit.blade.php deleted file mode 100644 index d088ea8e..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_edit.blade.php +++ /dev/null @@ -1,424 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
-

{{ translate('Edit Auction Product') }}

-
-
-
- - - - @csrf -
-
- -
- -
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
-
-
-
{{translate('Product Images')}}
-
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('Product Videos')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
-
{{translate('Product Bidding Price + Date Range')}}
-
-
-
- -
- -
-
- - @php - $start_date = date('d-m-Y H:i:s', $product->auction_start_date); - $end_date = date('d-m-Y H:i:s', $product->auction_end_date); - @endphp - -
- -
- -
-
-
-
-
-
-
{{translate('Product Description')}}
-
-
-
- -
- -
-
-
-
- -
-
-
{{translate('PDF Specification')}}
-
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{translate('SEO Meta Tags')}}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
-
-
-
- -
- -
-
-
- {{translate('Shipping Configuration')}} -
-
-
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{translate('Shipping Configuration')}} - -

- @endif -
-
- -
-
-
{{translate('Cash On Delivery')}}
-
-
- @if (get_setting('cash_payment') == '1') -
-
-
- -
- -
-
-
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{translate('Cash Payment Activation')}} - -

- @endif -
-
- -
-
-
{{translate('Estimate Shipping Time')}}
-
-
-
- -
- -
- {{translate('Days')}} -
-
-
-
-
- -
-
-
{{translate('VAT & Tax')}}
-
-
- @foreach(\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - - @php - $tax_amount = 0; - $tax_type = ''; - foreach($tax->product_taxes as $row) { - if($product->id == $row->product_id) { - $tax_amount = $row->tax; - $tax_type = $row->tax_type; - } - } - @endphp - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
-
- -
-
-
-
-
- -@endsection - -@section('script') - - - -@endsection \ No newline at end of file diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_list.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_list.blade.php deleted file mode 100644 index aba1a1c7..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_list.blade.php +++ /dev/null @@ -1,135 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
- @if (addon_is_activated('seller_subscription')) -
-
- - - -
-
- {{ Auth::user()->shop->seller_package != null ? Auth::user()->shop->seller_package->product_upload_limit - Auth::user()->products()->count() : 0 }} -
-
{{ translate('Remaining Uploads') }}
-
-
-
- @endif - - - - @if (addon_is_activated('seller_subscription')) - @php - $seller_package = \App\Models\SellerPackage::find(Auth::user()->shop->seller_package_id); - @endphp - - @endif - -
-
-
-
-
-
{{ translate('All Auction Product') }}
-
- -
-
- -
-
-
- -
- - - - - - - - - - - - - - @foreach($products as $key => $product) - - - - - - - - - - @endforeach - -
#{{translate('Name')}}{{translate('Bid Starting Amount')}}{{translate('Auction Start Date')}}{{translate('Auction End Date')}}{{translate('Total Bids')}}{{translate('Options')}}
{{ ($key+1) + ($products->currentPage() - 1)*$products->perPage() }} -
-
- Image -
-
- {{ $product->getTranslation('name') }} -
-
-
{{ single_price($product->starting_bid) }}{{ date('Y-m-d H:i:s', $product->auction_start_date) }}{{ date('Y-m-d H:i:s', $product->auction_end_date) }}{{ $product->bids->count() }} - @if($product->auction_start_date > strtotime("now")) - - - - @endif - - - - - - - - - -
-
- {{ $products->appends(request()->input())->links() }} -
-
-
-
-@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - - -@section('script') - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_orders.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_orders.blade.php deleted file mode 100644 index 7ad79481..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_orders.blade.php +++ /dev/null @@ -1,181 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
-
-
-
-
{{ translate('Inhouse Orders') }}
-
-
- -
- -
- -
-
-
- -
-
-
-
- -
-
-
-
- -
- - - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - - @foreach ($orders as $key => $order_id) - @php - $order = \App\Models\Order::find($order_id->id); - @endphp - @if ($order != null) - - - - - - - - - @if (addon_is_activated('refund_request')) - - @endif - - - - @endif - @endforeach - -
#{{ translate('Order Code') }}{{ translate('Customer') }}{{ translate('Amount') }}{{ translate('Delivery Status') }}{{ translate('Payment Method') }}{{ translate('Payment Status') }}{{ translate('Refund') }}{{ translate('Options') }}
- {{ $key + 1 + ($orders->currentPage() - 1) * $orders->perPage() }} - - {{ $order->code }}@if ($order->viewed == 0) {{ translate('New') }}@endif - - @if ($order->user != null) - {{ $order->user->name }} - @else - Guest ({{ $order->guest_id }}) - @endif - - {{ single_price($order->grand_total) }} - - @php - $status = $order->delivery_status; - @endphp - {{ translate(ucfirst(str_replace('_', ' ', $status))) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }} - - @if ($order->payment_status == 'paid') - {{ translate('Paid') }} - @else - {{ translate('Unpaid') }} - @endif - - @if (count($order->refund_requests) > 0) - {{ count($order->refund_requests) }} {{ translate('Refund') }} - @else - {{ translate('No Refund') }} - @endif - - - - - - - -
-
- {{ $orders->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') - - - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_upload.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_upload.blade.php deleted file mode 100644 index e3c6a86d..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_product_upload.blade.php +++ /dev/null @@ -1,428 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') -
-
{{ translate('Add New Auction Product') }}
-
-
-
-
-
- @csrf - -
-
-
{{ translate('Product Information') }}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- - {{ translate('This is used for search. Input those words by which cutomer can find this product.') }} -
-
-
-
-
-
-
{{ translate('Product Images') }}
-
-
-
- -
-
-
-
{{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{ translate('These images are visible in product details page gallery. Use 600x600 sizes images.') }} -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
- {{ translate('This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.') }} -
-
-
-
-
-
-
{{ translate('Product Videos') }}
-
-
-
- -
- -
-
-
- -
- - {{ translate("Use proper link without extra parameter. Don't use short share link/embeded iframe code.") }} -
-
-
-
-
-
-
{{ translate('Product Bidding Price + Date Range') }}
-
-
-
- -
- -
-
- -
- -
- -
-
-
-
-
-
-
{{ translate('Product Description') }}
-
-
-
- -
- -
-
-
-
- - -
-
-
{{ translate('PDF Specification') }}
-
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
-
-
-
{{ translate('SEO Meta Tags') }}
-
-
-
- -
- -
-
-
- -
- -
-
-
- -
-
-
-
- {{ translate('Browse') }}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
-
- -
- -
- -
-
-
- {{ translate('Shipping Configuration') }} -
-
- -
- @if (get_setting('shipping_type') == 'product_wise_shipping') -
- -
- -
-
- -
- -
- -
-
- - - -
- -
- -
-
- @else -

- {{ translate('Product wise shipping cost is disable. Shipping cost is configured from here') }} - - {{ translate('Shipping Configuration') }} - -

- @endif -
-
- -
-
-
{{ translate('Cash On Delivery') }}
-
-
- @if (get_setting('cash_payment') == '1') -
- -
- -
-
- @else -

- {{ translate('Cash On Delivery option is disabled. Activate this feature from here') }} - - {{ translate('Cash Payment Activation') }} - -

- @endif -
-
- -
-
-
{{ translate('Estimate Shipping Time') }}
-
-
-
- -
- -
- {{ translate('Days') }} -
-
-
-
-
- -
-
-
{{ translate('VAT & Tax') }}
-
-
- @foreach (\App\Models\Tax::where('tax_status', 1)->get() as $tax) - - -
-
- -
-
- -
-
- @endforeach -
-
- -
-
- -
-
-
-
- -@endsection - -@section('script') - - - -@endsection diff --git a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_products_bids.blade.php b/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_products_bids.blade.php deleted file mode 100644 index 214d927d..00000000 --- a/desarrollo/temp/oAkwuD3Ui7/addons/auction/views/auction/frontend/seller/auction_products_bids.blade.php +++ /dev/null @@ -1,62 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') - -
-
-
-

{{translate('Bids For').$product->name}}

-
-
-
-
- -
-
-
-
{{ translate('All Bids') }}
-
-
- -
- - - - - - - - - - - - - - @foreach($bids as $key => $bid) - - - - - - - - - - @endforeach - -
#{{translate('Customer Name')}}{{translate('Email')}}{{translate('Phone')}}{{translate('Bid Amount')}}{{translate('Date')}}{{translate('Options')}}
{{ ($key+1) + ($bids->currentPage() - 1)*$bids->perPage() }}{{ $bid->user->name }}{{ $bid->user->email }}{{ $bid->user->phone }}{{ single_price($bid->amount) }}{{ date('d-m-Y', strtotime($bid->created_at)) }} - - - -
-
- {{ $bids->appends(request()->input())->links() }} -
-
-
- -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/assets/delivery_boy.png b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/assets/delivery_boy.png deleted file mode 100644 index c5877654..00000000 Binary files a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/assets/delivery_boy.png and /dev/null differ diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/config.json b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/config.json deleted file mode 100644 index 6447803e..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/config.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "name" : "delivery_boy", - - "unique_identifier" : "delivery_boy", - - "version" : "3.6", - - "minimum_item_version" : "7.6.0", - - "addon_banner" : "delivery_boy.png", - - "directory" : - [ - { - "name" : [ - "resources/views/delivery_boys", - "resources/views/delivery_boys/inc", - "resources/views/delivery_boys/layouts", - "resources/views/backend/delivery_boys" - ] - } - ], - - "sql_file" : "", - - "files" : - [ - - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/index.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/index.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/create.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/create.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/edit.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/edit.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/delivery_boy_configure.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/delivery_boy_configure.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/delivery_earning_form.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/delivery_earning_form.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/cancel_request_list.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/cancel_request_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/order_collection_form.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/order_collection_form.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/delivery_boys_collection_list.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/delivery_boys_collection_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/backend/delivery_boys_payment_list.blade.php", - "update_directory" : "resources/views/backend/delivery_boys/delivery_boys_payment_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/layouts/app.blade.php", - "update_directory" : "resources/views/delivery_boys/layouts/app.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/inc/delivery_boy_sidenav.blade.php", - "update_directory" : "resources/views/delivery_boys/inc/delivery_boy_sidenav.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/inc/nav.blade.php", - "update_directory" : "resources/views/delivery_boys/inc/nav.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/inc/footer.blade.php", - "update_directory" : "resources/views/delivery_boys/inc/footer.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/assigned_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/assigned_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/cancel_request_list.blade.php", - "update_directory" : "resources/views/delivery_boys/cancel_request_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/cancelled_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/cancelled_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/completed_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/completed_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/dashboard.blade.php", - "update_directory" : "resources/views/delivery_boys/dashboard.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/on_the_way_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/on_the_way_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/pending_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/pending_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/pickup_delivery.blade.php", - "update_directory" : "resources/views/delivery_boys/pickup_delivery.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/profile.blade.php", - "update_directory" : "resources/views/delivery_boys/profile.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/total_collection_list.blade.php", - "update_directory" : "resources/views/delivery_boys/total_collection_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/total_earning_list.blade.php", - "update_directory" : "resources/views/delivery_boys/total_earning_list.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/order_detail.blade.php", - "update_directory" : "resources/views/delivery_boys/order_detail.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/views/delivery_boys/frontend/cancel_request_modal.blade.php", - "update_directory" : "resources/views/delivery_boys/cancel_request_modal.blade.php" - }, - { - "root_directory" : "addons/delivery_boy/controllers/DeliveryBoyController.php", - "update_directory" : "app/Http/Controllers/DeliveryBoyController.php" - }, - { - "root_directory" : "addons/delivery_boy/assets/delivery_boy.png", - "update_directory" : "public/delivery_boy.png" - } - ] -} diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/controllers/DeliveryBoyController.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/controllers/DeliveryBoyController.php deleted file mode 100644 index 5ba1b154..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/controllers/DeliveryBoyController.php +++ /dev/null @@ -1,557 +0,0 @@ -middleware(['permission:view_all_delivery_boy'])->only('index'); - $this->middleware(['permission:add_delivery_boy'])->only('create'); - $this->middleware(['permission:edit_delivery_boy'])->only('edit'); - $this->middleware(['permission:ban_delivery_boy'])->only('ban'); - $this->middleware(['permission:collect_from_delivery_boy'])->only('order_collection_form'); - $this->middleware(['permission:pay_to_delivery_boy'])->only('delivery_earning_form'); - $this->middleware(['permission:delivery_boy_payment_history'])->only('delivery_boys_payment_histories'); - $this->middleware(['permission:collected_histories_from_delivery_boy'])->only('delivery_boys_collection_histories'); - $this->middleware(['permission:order_cancle_request_by_delivery_boy'])->only('cancel_request_list'); - $this->middleware(['permission:delivery_boy_configuration'])->only('delivery_boy_configure'); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index(Request $request) - { - $sort_search = null; - $delivery_boys = DeliveryBoy::orderBy('created_at', 'desc'); - - if ($request->has('search')){ - $sort_search = $request->search; - $user_ids = User::where('user_type', 'delivery_boy')->where(function($user) use ($sort_search){ - $user->where('name', 'like', '%'.$sort_search.'%') - ->orWhere('email', 'like', '%'.$sort_search.'%'); - })->pluck('id')->toArray(); - $delivery_boys = $delivery_boys->where(function($delivery_boy) use ($user_ids){ - $delivery_boy->whereIn('user_id', $user_ids); - }); - } - - $delivery_boys = $delivery_boys->paginate(15); - return view('backend.delivery_boys.index', compact('delivery_boys', 'sort_search')); - } - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function create() - { - $countries = Country::where('status', 1)->get(); - return view('backend.delivery_boys.create', compact('countries')); - } - - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function store(Request $request) - { - $validated = $request->validate([ - 'name' => 'required', - 'email' => 'required|unique:users|max:255', - 'phone' => 'required', - 'country_id' => 'required', - 'state_id' => 'required', - 'city_id' => 'required', - ]); - - $country = Country::where('id', $request->country_id)->first(); - $state = State::where('id', $request->state_id)->first(); - $city = City::where('id', $request->city_id)->first(); - - $user = new User; - $user->user_type = 'delivery_boy'; - $user->name = $request->name; - $user->email = $request->email; - $user->phone = $request->phone; - $user->country = $country->name; - $user->state = $state->name; - $user->city = $city->name; - $user->avatar_original = $request->avatar_original; - $user->address = $request->address; - $user->email_verified_at = date("Y-m-d H:i:s"); - $user->password = Hash::make($request->password); - $user->save(); - - $delivery_boy = new DeliveryBoy; - - $delivery_boy->user_id = $user->id; - $delivery_boy->save(); - - flash(translate('Delivery Boy has been created successfully'))->success(); - return redirect()->route('delivery-boys.index'); - } - - /** - * Display the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function show($id) - { - // - } - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function edit($id) - { - $countries = Country::where('status', 1)->get(); - $states = State::where('status', 1)->get(); - $cities = City::where('status', 1)->get(); - $delivery_boy = User::findOrFail($id); - - return view('backend.delivery_boys.edit', compact('delivery_boy', 'countries', 'states', 'cities')); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function update(Request $request, $id) - { - $delivery_boy = User::findOrFail($id); - - $request->validate([ - 'name' => 'required', - 'email' => 'required|unique:users,email,'.$delivery_boy->id, - 'phone' => 'required', - 'country_id' => 'required', - 'state_id' => 'required', - 'city_id' => 'required', - ]); - - $country = Country::where('id', $request->country_id)->first(); - $state = State::where('id', $request->state_id)->first(); - $city = City::where('id', $request->city_id)->first(); - - $delivery_boy->name = $request->name; - $delivery_boy->email = $request->email; - $delivery_boy->phone = $request->phone; - $delivery_boy->country = $country->name; - $delivery_boy->state = $state->name; - $delivery_boy->city = $city->name; - $delivery_boy->avatar_original = $request->avatar_original; - $delivery_boy->address = $request->address; - - if(strlen($request->password) > 0){ - $delivery_boy->password = Hash::make($request->password); - } - - $delivery_boy->save(); - - flash(translate('Delivery Boy has been updated successfully'))->success(); - return back(); - - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function destroy($id) - { - // - } - - public function ban($id) { - $delivery_boy = User::findOrFail($id); - - if($delivery_boy->banned == 1) { - $delivery_boy->banned = 0; - flash(translate('Delivery Boy UnBanned Successfully'))->success(); - } else { - $delivery_boy->banned = 1; - flash(translate('Delivery Boy Banned Successfully'))->success(); - } - - $delivery_boy->save(); - - return back(); - } - - /** - * Collection form from Delivery boy. - * - * @return \Illuminate\Http\Response - */ - public function order_collection_form(Request $request) { - $delivery_boy_info = DeliveryBoy::with('user') - ->where('user_id', $request->id) - ->first(); - - return view('backend.delivery_boys.order_collection_form', compact('delivery_boy_info')); - } - - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function collection_from_delivery_boy(Request $request) { - $delivery_boy = DeliveryBoy::where('user_id', $request->delivery_boy_id)->first(); - - if($request->payout_amount > $delivery_boy->total_collection){ - flash(translate('Collection Amount Can Not Be Larger Than Collected Amount'))->error(); - return redirect()->route('delivery-boys.index'); - } - - $delivery_boy->total_collection -= $request->payout_amount; - - if($delivery_boy->save()){ - $delivery_boy_collection = new DeliveryBoyCollection; - $delivery_boy_collection->user_id = $request->delivery_boy_id; - $delivery_boy_collection->collection_amount = $request->payout_amount; - - $delivery_boy_collection->save(); - - flash(translate('Collection From Delivery Boy Successfully'))->success(); - } else { - flash(translate('Something went wrong'))->error(); - } - - return redirect()->route('delivery-boys.index'); - } - - /** - * Paid form for Delivery boy. - * - * @return \Illuminate\Http\Response - */ - public function delivery_earning_form(Request $request) { - $delivery_boy_info = DeliveryBoy::with('user') - ->where('user_id', $request->id) - ->first(); - - return view('backend.delivery_boys.delivery_earning_form', compact('delivery_boy_info')); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function paid_to_delivery_boy(Request $request) { - $delivery_boy = DeliveryBoy::where('user_id', $request->delivery_boy_id)->first(); - - if($request->paid_amount > $delivery_boy->total_earning){ - flash(translate('Paid Amount Can Not Be Larger Than Payable Amount'))->error(); - return redirect()->route('delivery-boys.index'); - } - - $delivery_boy->total_earning -= $request->paid_amount; - - if($delivery_boy->save()){ - $delivery_boy_payment = new DeliveryBoyPayment; - $delivery_boy_payment->user_id = $request->delivery_boy_id; - $delivery_boy_payment->payment = $request->paid_amount; - - $delivery_boy_payment->save(); - - flash(translate('Pay To Delivery Boy Successfully'))->success(); - } else { - flash(translate('Something went wrong'))->error(); - } - - return redirect()->route('delivery-boys.index'); - } - - - - // Delivery Boy's Panel Start - public function delivery_boys_payment_histories() { - $delivery_boy_payment_query = DeliveryBoyPayment::query(); - if(Auth::user()->user_type == 'delivery_boy') { - $delivery_boy_payment_query = $delivery_boy_payment_query->where('user_id', Auth::user()->id); - } - $delivery_boy_payment_query = $delivery_boy_payment_query->paginate(10); - - $delivery_boy_payments = $delivery_boy_payment_query; - - return view('backend.delivery_boys.delivery_boys_payment_list', compact('delivery_boy_payments')); - } - - public function delivery_boys_collection_histories() { - $delivery_boy_collection_query = DeliveryBoyCollection::query(); - if(Auth::user()->user_type == 'delivery_boy') { - $delivery_boy_collection_query = $delivery_boy_collection_query->where('user_id', Auth::user()->id); - } - $delivery_boy_collection_query = $delivery_boy_collection_query->paginate(10); - - $delivery_boy_collections = $delivery_boy_collection_query; - - return view('backend.delivery_boys.delivery_boys_collection_list', compact('delivery_boy_collections')); - } - - public function delivery_boys_cancel_request_list() { - $order_query = Order::query(); - if(Auth::user()->user_type == 'delivery_boy') { - $order_query = $order_query->where('assign_delivery_boy', Auth::user()->id); - } - $order_query = $order_query->where('delivery_status', '!=', 'cancelled')->where('cancel_request', 1); - $order_query = $order_query->paginate(10); - - $cancel_requests = $order_query; - return view('delivery_boys.cancel_request_list', compact('cancel_requests')); - } - - public function cancel_request_list() { - $order_query = Order::query(); - if(Auth::user()->user_type == 'delivery_boy') { - $order_query = $order_query->where('assign_delivery_boy', Auth::user()->id); - } - $order_query = $order_query->where('delivery_status', '!=', 'cancelled')->where('cancel_request', 1); - $order_query = $order_query->paginate(10); - - $cancel_requests = $order_query; - return view('backend.delivery_boys.cancel_request_list', compact('cancel_requests')); - } - - /** - * Configuration of delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function delivery_boy_configure() - { - return view('backend.delivery_boys.delivery_boy_configure'); - } - - public function order_detail($id) - { - $order = Order::findOrFail(decrypt($id)); - return view('delivery_boys.order_detail', compact('order')); - } - - /** - * Show the list of assigned delivery by the admin. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function assigned_delivery() - { - $order_query = Order::query(); - $order_query->where('assign_delivery_boy', Auth::user()->id); - $order_query->where(function ($order_query) { - $order_query->where('delivery_status', 'pending') - ->where('cancel_request', '0'); - })->orWhere(function ($order_query) { - $order_query->where('delivery_status', 'confirmed') - ->where('cancel_request', '0'); - }); - - $assigned_deliveries = $order_query->paginate(10); - - return view('delivery_boys.assigned_delivery', compact('assigned_deliveries')); - } - - /** - * Show the list of pickup delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function pickup_delivery() - { - $pickup_deliveries = Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'picked_up') - ->where('cancel_request', '0') - ->paginate(10); - - return view('delivery_boys.pickup_delivery', compact('pickup_deliveries')); - } - - /** - * Show the list of pickup delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function on_the_way_deliveries() - { - $on_the_way_deliveries = Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'on_the_way') - ->where('cancel_request', '0') - ->paginate(10); - - return view('delivery_boys.on_the_way_delivery', compact('on_the_way_deliveries')); - } - - /** - * Show the list of completed delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function completed_delivery() - { - $completed_deliveries = DeliveryHistory::where('delivery_boy_id', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->paginate(10); - - return view('delivery_boys.completed_delivery', compact('completed_deliveries')); - } - - /** - * Show the list of pending delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function pending_delivery() - { - $pending_deliveries = Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', '!=', 'delivered') - ->where('delivery_status', '!=', 'cancelled') - ->where('cancel_request', '0') - ->paginate(10); - - return view('delivery_boys.pending_delivery', compact('pending_deliveries')); - } - - /** - * Show the list of cancelled delivery by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function cancelled_delivery() - { - $cancelled_deliveries = Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'cancelled') - ->paginate(10); - - return view('delivery_boys.cancelled_delivery', compact('cancelled_deliveries')); - } - - /** - * Show the list of total collection by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function total_collection() - { - $today_collections = DeliveryHistory::where('delivery_boy_id', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->where('payment_type', 'cash_on_delivery') - ->paginate(10); - - return view('delivery_boys.total_collection_list', compact('today_collections')); - } - - /** - * Show the list of total earning by the delivery boy. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function total_earning() - { - $total_earnings = DeliveryHistory::where('delivery_boy_id', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->paginate(10); - - return view('delivery_boys.total_earning_list', compact('total_earnings')); - } - - public function cancel_request($order_id) { - $order = Order::findOrFail($order_id); - $order->cancel_request = '1'; - $order->cancel_request_at = date("Y-m-d H:i:s"); - $order->save(); - - return back(); - } - - /** - * For only delivery boy while changing delivery status. - * Call from order controller - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function store_delivery_history($order) { - $delivery_history = new DeliveryHistory; - - $delivery_history->order_id = $order->id; - $delivery_history->delivery_boy_id = Auth::user()->id; - $delivery_history->delivery_status = $order->delivery_status; - $delivery_history->payment_type = $order->payment_type; - if($order->delivery_status == 'delivered') { - $delivery_boy = DeliveryBoy::where('user_id', Auth::user()->id)->first(); - - if(get_setting('delivery_boy_payment_type') == 'commission') { - $delivery_history->earning = get_setting('delivery_boy_commission'); - $delivery_boy->total_earning += get_setting('delivery_boy_commission'); - } - if($order->payment_type == 'cash_on_delivery') { - $delivery_history->collection = $order->grand_total; - $delivery_boy->total_collection += $order->grand_total; - - $order->payment_status = 'paid'; - if($order->commission_calculated == 0) { - calculateCommissionAffilationClubPoint($order); - $order->commission_calculated = 1; - } - - } - - $delivery_boy->save(); - - } - $order->delivery_history_date = date("Y-m-d H:i:s"); - - $order->save(); - $delivery_history->save(); - - } - -} diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/routes/delivery_boy.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/routes/delivery_boy.php deleted file mode 100644 index 44853b78..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/routes/delivery_boy.php +++ /dev/null @@ -1,60 +0,0 @@ -'admin', 'middleware' => ['auth', 'admin']], function(){ - //Delivery Boy - Route::resource('delivery-boys', DeliveryBoyController::class); - - Route::controller(DeliveryBoyController::class)->group(function () { - Route::get('/delivery-boy/ban/{id}', 'ban')->name('delivery-boy.ban'); - Route::get('/delivery-boy-configuration', 'delivery_boy_configure')->name('delivery-boy-configuration'); - Route::post('/delivery-boy/order-collection', 'order_collection_form')->name('delivery-boy.order-collection'); - Route::post('/collection-from-delivery-boy', 'collection_from_delivery_boy')->name('collection-from-delivery-boy'); - Route::post('/delivery-boy/delivery-earning', 'delivery_earning_form')->name('delivery-boy.delivery-earning'); - Route::post('/paid-to-delivery-boy', 'paid_to_delivery_boy')->name('paid-to-delivery-boy'); - Route::get('/delivery-boys-payment-histories', 'delivery_boys_payment_histories')->name('delivery-boys-payment-histories'); - Route::get('/delivery-boys-collection-histories', 'delivery_boys_collection_histories')->name('delivery-boys-collection-histories'); - Route::get('/delivery-boy/cancel-request', 'cancel_request_list')->name('delivery-boy.cancel-request'); - - }); -}); - -Route::group(['middleware' => ['user', 'verified', 'unbanned']], function() { - Route::controller(DeliveryBoyController::class)->group(function () { - Route::get('/assigned-deliveries', 'assigned_delivery')->name('assigned-deliveries'); - Route::get('/pickup-deliveries', 'pickup_delivery')->name('pickup-deliveries'); - Route::get('/on-the-way-deliveries', 'on_the_way_deliveries')->name('on-the-way-deliveries'); - Route::get('/completed-deliveries', 'completed_delivery')->name('completed-deliveries'); - Route::get('/pending-deliveries', 'pending_delivery')->name('pending-deliveries'); - Route::get('/cancelled-deliveries', 'cancelled_delivery')->name('cancelled-deliveries'); - Route::get('/total-collections', 'total_collection')->name('total-collection'); - Route::get('/total-earnings', 'total_earning')->name('total-earnings'); - Route::get('/cancel-request/{id}', 'cancel_request')->name('cancel-request'); - Route::get('/cancel-request-list', 'delivery_boys_cancel_request_list')->name('cancel-request-list'); - }); - - Route::controller(OrderController::class)->group(function () { - Route::post('/orders/update_delivery_status', 'update_delivery_status')->name('delivery-boy.orders.update_delivery_status'); - }); - - Route::controller(DeliveryBoyController::class)->group(function () { - Route::get('/delivery-boy/order-detail/{id}', 'order_detail')->name('delivery-boy.order-detail'); - }); - -}); diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.1.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.1.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.2.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.2.sql deleted file mode 100644 index fcff84f7..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.2.sql +++ /dev/null @@ -1,65 +0,0 @@ --- --- Table structure for table `delivery_boy_payments` --- - -CREATE TABLE `delivery_boy_payments` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `payment` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boy_payments` --- -ALTER TABLE `delivery_boy_payments` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boy_payments` --- -ALTER TABLE `delivery_boy_payments` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - --- --- Table structure for table `delivery_boy_collections` --- - -CREATE TABLE `delivery_boy_collections` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `collection_amount` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boy_collections` --- -ALTER TABLE `delivery_boy_collections` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boy_collections` --- -ALTER TABLE `delivery_boy_collections` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.3.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.3.sql deleted file mode 100644 index 7f93ace2..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/1.3.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE `users` ADD `state` VARCHAR(30) NULL DEFAULT NULL AFTER `country`; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.0.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.0.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.0.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.1.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.1.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.2.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.2.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/2.2.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.3.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.3.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.4.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.4.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.4.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.5.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.5.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.5.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.6.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.6.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/3.6.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/update.sql b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/update.sql deleted file mode 100644 index e69a6a5b..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/sql/update.sql +++ /dev/null @@ -1,148 +0,0 @@ --- --- Table structure for table `delivery_boys` --- - -CREATE TABLE `delivery_boys` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `total_collection` double(25,2) NOT NULL DEFAULT 0.00, - `earning` double(25,2) NOT NULL DEFAULT 0.00, - `monthly_salary` double(25,2) DEFAULT NULL, - `order_commission` double(25,2) DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boys` --- -ALTER TABLE `delivery_boys` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boys` --- -ALTER TABLE `delivery_boys` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - - - -ALTER TABLE `users` CHANGE `user_type` `user_type` VARCHAR(20) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT 'customer'; -ALTER TABLE `orders` ADD COLUMN IF NOT EXISTS `assign_delivery_boy` INT(11) NULL DEFAULT NULL AFTER `seller_id`; - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -START TRANSACTION; -SET time_zone = "+00:00"; - - --- --- Table structure for table `delivery_histories` --- - -CREATE TABLE `delivery_histories` ( - `id` int(11) NOT NULL, - `delivery_boy_id` int(11) NOT NULL, - `order_id` int(11) NOT NULL, - `delivery_status` varchar(255) NOT NULL, - `payment_type` varchar(20) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -ALTER TABLE `delivery_histories` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_histories` --- -ALTER TABLE `delivery_histories` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -ALTER TABLE `delivery_boys` CHANGE `earning` `total_earning` DOUBLE(25,2) NOT NULL DEFAULT '0.00'; - -ALTER TABLE `orders` ADD COLUMN IF NOT EXISTS `cancel_request` TINYINT(1) NOT NULL DEFAULT '0' AFTER `delivery_viewed`; - -ALTER TABLE `orders` ADD COLUMN IF NOT EXISTS `cancel_request_at` TINYINT(1) NOT NULL DEFAULT '0' AFTER `cancel_request`; - -ALTER TABLE `delivery_histories` ADD `earning` DOUBLE(25,2) NOT NULL DEFAULT '0.00' AFTER `payment_type`, ADD `collection` DOUBLE(25,2) NOT NULL DEFAULT '0.00' AFTER `earning`; -ALTER TABLE `delivery_histories` CHANGE `delivery_boy_id` `delivery_boy_id` INT(11) NULL DEFAULT NULL; -ALTER TABLE `orders` ADD COLUMN IF NOT EXISTS `delivery_history_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `commission_calculated`; - - - --- --- Table structure for table `delivery_boy_payments` --- - -CREATE TABLE `delivery_boy_payments` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `payment` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boy_payments` --- -ALTER TABLE `delivery_boy_payments` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boy_payments` --- -ALTER TABLE `delivery_boy_payments` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - --- --- Table structure for table `delivery_boy_collections` --- - -CREATE TABLE `delivery_boy_collections` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `collection_amount` double(25,2) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `delivery_boy_collections` --- -ALTER TABLE `delivery_boy_collections` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `delivery_boy_collections` --- -ALTER TABLE `delivery_boy_collections` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; - -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/cancel_request_list.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/cancel_request_list.blade.php deleted file mode 100644 index bedb0208..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/cancel_request_list.blade.php +++ /dev/null @@ -1,134 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Cancel Request')}}

-
-
-
- - -
-
-
{{translate('Cancel Requests')}}
-
- -
-
-
- - - - - - - - - - - - @foreach($cancel_requests as $key => $cancel_request) - - - - - - - - - - @endforeach - -
#{{translate('Code')}}{{translate('Request By')}}{{translate('Request At')}}{{translate('Options')}}
{{ ($key+1) + ($cancel_requests->currentPage() - 1) * $cancel_requests->perPage() }} - {{ $cancel_request->code }} - - {{ $cancel_request->delivery_boy->name }} - - {{$cancel_request->cancel_request_at}} - - - - - - -
-
- {{ $cancel_requests->appends(request()->input())->links() }} -
-
-
- - - - - -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/create.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/create.blade.php deleted file mode 100644 index 5291d2cf..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/create.blade.php +++ /dev/null @@ -1,177 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Delivery Boy Information')}}
-
- -
- @csrf -
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
- -
- -
-
-
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boy_configure.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boy_configure.blade.php deleted file mode 100644 index 1172a842..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boy_configure.blade.php +++ /dev/null @@ -1,357 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - - -
-
-
-
-
{{ translate('Payment Configuration') }}
-
-
-
- @csrf -
- - - -
- -
-
- - -
- -
- -
-
- - -
- -
-
-
-
-
- -
-
-
-
{{ translate('Notification Configuration') }}
-
-
-
- @csrf -
- - - -
- -
-
-
- - - -
- -
-
-
- -
-
-
-
-
- -
-
-
-
{{ translate('Pickup Location For Delivery Boy') }}
-
-
-
- @csrf - @if (get_setting('google_map') == 1) -
- -
-
    -
  • Full Address:
  • -
  • Postal Code:
  • -
  • Country:
  • -
  • Latitude:
  • -
  • Longitude:
  • -
-
-
-
- -
-
- - -
-
-
-
- -
-
- - -
-
- @else -
-
- -
-
- - -
-
-
-
- -
-
- - -
-
- @endif -
- -
-
-
-
-
-
-@endsection - -@section('script') - - - @if (get_setting('google_map') == 1) - - - - @endif -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_collection_list.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_collection_list.blade.php deleted file mode 100644 index bcfa8f9d..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_collection_list.blade.php +++ /dev/null @@ -1,61 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Collection List')}}

-
-
-
- - -
-
-
{{translate('Collection List')}}
-
- -
-
-
- - - - - - - - - - - @foreach($delivery_boy_collections as $key => $delivery_boy_collection) - - - - - - - - @endforeach - -
#{{translate('Delivery Boy')}}{{translate('Collected Amount')}}{{translate('Created At')}}
{{ ($key+1) + ($delivery_boy_collections->currentPage() - 1) * $delivery_boy_collections->perPage() }} - {{ $delivery_boy_collection->user->name }} - - {{ $delivery_boy_collection->collection_amount }} - - {{$delivery_boy_collection->created_at}} -
-
- {{ $delivery_boy_collections->appends(request()->input())->links() }} -
-
-
- -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_payment_list.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_payment_list.blade.php deleted file mode 100644 index 6b570e82..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_boys_payment_list.blade.php +++ /dev/null @@ -1,62 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Payment List')}}

-
-
-
- - -
-
-
{{translate('Payment List')}}
-
- -
-
-
- - - - - - - - - - - @foreach($delivery_boy_payments as $key => $delivery_boy_payment) - - - - - - - - @endforeach - -
#{{translate('Delivery Boy')}}{{translate('Payment Amount')}}{{translate('Created At')}}
{{ ($key+1) + ($delivery_boy_payments->currentPage() - 1) * $delivery_boy_payments->perPage() }} - {{ $delivery_boy_payment->user->name }} - - {{ $delivery_boy_payment->payment }} - - {{$delivery_boy_payment->created_at}} -
-
- {{ $delivery_boy_payments->appends(request()->input())->links() }} -
-
-
- -@endsection - diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_earning_form.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_earning_form.blade.php deleted file mode 100644 index c9cc2305..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/delivery_earning_form.blade.php +++ /dev/null @@ -1,57 +0,0 @@ - - - -
- - - -
- - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/edit.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/edit.blade.php deleted file mode 100644 index 3a837190..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/edit.blade.php +++ /dev/null @@ -1,187 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
{{translate('Delivery Boy Information')}}
-
- -
- @csrf - -
- - @if ($errors->any()) -
-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif - -
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
-
- -
- -
-
- -
- -
-
-
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/index.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/index.blade.php deleted file mode 100644 index ba938b71..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/index.blade.php +++ /dev/null @@ -1,212 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-

{{translate('All Delivery Boys')}}

-
- @can('add_delivery_boy') - - @endcan -
-
- - -
-
-
{{translate('Delivery Boys')}}
-
-
-
-
- -
-
-
-
-
-
- - - - - - - - - - - - - - @foreach($delivery_boys as $key => $delivery_boy) - @if ($delivery_boy->user != null) - - - - - - - - - - @endif - @endforeach - -
#{{translate('Name')}}{{translate('Email Address')}}{{translate('Phone')}}{{translate('Earning')}}{{translate('Collection')}}{{translate('Options')}}
{{ ($key+1) + ($delivery_boys->currentPage() - 1)*$delivery_boys->perPage() }}@if($delivery_boy->user->banned == 1) @endif {{$delivery_boy->user->name}}{{$delivery_boy->user->email}}{{$delivery_boy->user->phone}} - {{ single_price($delivery_boy->total_earning) }} - - {{ single_price($delivery_boy->total_collection) }} - - - -
-
- {{ $delivery_boys->appends(request()->input())->links() }} -
-
-
- - - - - - - - - -@endsection - -@section('modal') - @include('modals.delete_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/order_collection_form.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/order_collection_form.blade.php deleted file mode 100644 index 6e832ea2..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/backend/order_collection_form.blade.php +++ /dev/null @@ -1,57 +0,0 @@ - - - -
- - - -
- - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/assigned_delivery.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/assigned_delivery.blade.php deleted file mode 100644 index 440531e4..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/assigned_delivery.blade.php +++ /dev/null @@ -1,122 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Assigned Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($assigned_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As Pickup')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - {{ single_price($delivery->grand_total) }} - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $assigned_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_list.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_list.blade.php deleted file mode 100644 index 7a922a84..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_list.blade.php +++ /dev/null @@ -1,61 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('All Cancel Request') }}
-
-
- - - - - - - - - - - - @foreach($cancel_requests as $key => $cancel_request) - - - - - - - - - - - - - @endforeach - -
#{{translate('Code')}}{{translate('Request By')}}{{translate('Request At')}}{{translate('Options')}}
- {{ ($key+1) + ($cancel_requests->currentPage() - 1) * $cancel_requests->perPage() }} - - {{ $cancel_request->code }} - - {{ $cancel_request->delivery_boy->name }} - - {{ date('d-m-Y h:i A', strtotime($cancel_request->cancel_request_at)) }} - - - - - - - - - - - -
- -
- {{ $cancel_requests->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_modal.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_modal.blade.php deleted file mode 100644 index 01ceb9d7..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancel_request_modal.blade.php +++ /dev/null @@ -1,18 +0,0 @@ - \ No newline at end of file diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancelled_delivery.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancelled_delivery.blade.php deleted file mode 100644 index c5936d3e..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/cancelled_delivery.blade.php +++ /dev/null @@ -1,81 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Cancelled Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($cancelled_deliveries as $key => $order) - @if (count($order->orderDetails) > 0) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $order->code }} - - {{ date('d-m-Y', $order->date) }} - - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->orderDetails->first()->delivery_status))) }} - @if($order->delivery_viewed == 0) - * - @endif - - @if ($order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($order->payment_status_viewed == 0) - * - @endif - - - - - - - - - - - - - - -
- -
- {{ $cancelled_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/completed_delivery.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/completed_delivery.blade.php deleted file mode 100644 index 75dc5fb7..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/completed_delivery.blade.php +++ /dev/null @@ -1,75 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Completed Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($completed_deliveries as $key => $delivery) - @if(optional($delivery->order)->code) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $delivery->order->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->created_at)) }} - - {{ single_price($delivery->collection) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - - @if ($delivery->order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - - - - - - - - - - - - - - -
- -
- {{ $completed_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/dashboard.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/dashboard.blade.php deleted file mode 100644 index 9097b330..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/dashboard.blade.php +++ /dev/null @@ -1,252 +0,0 @@ -@extends('delivery_boys.layouts.app') -@section('panel_content') - -@php - $delivery_boy_info = \App\Models\DeliveryBoy::where('user_id', Auth::user()->id)->first(); -@endphp - -
-
-
-

{{ translate('Dashboard') }}

-
-
-

{{ date('d M, Y') }}

- {{ date('l') }} -
-
-
- -
- - - @php - $total_complete_delivery = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'delivered') - ->count(); - @endphp -
-
- - - - - - - - - - -
-

{{ translate('Completed Delivery') }}

-

{{ sprintf('%02d', $total_complete_delivery) }}

-
-
-
- - - @php - $total_pending_delivery = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', '!=', 'delivered') - ->where('delivery_status', '!=', 'cancelled') - ->where('cancel_request', '0') - ->count(); - @endphp -
-
- - - - - - - - - -
-

{{ translate('Pending Delivery') }}

-

{{ sprintf('%02d', $total_pending_delivery) }}

-
-
-
- - -
-
- - - - - - - - - - - - - - - - -
-

{{ translate('Total Collected') }}

-

{{ $delivery_boy_info->total_collection }}

-
-
-
- - -
-
- - - - - - - -
-

{{ translate('Earnings') }}

- @if(get_setting('delivery_boy_payment_type') == 'commission') -

- {{ $delivery_boy_info->total_earning }}/ - - {{ translate('order') }} - -

- @endif - @if(get_setting('delivery_boy_payment_type') == 'salary') -

- {{ get_setting('delivery_boy_salary') }} / {{ translate('mo') }} -

- @endif -
-
-
- -
- -
- - - @php - $cancelled_deliveries = \App\Models\Order::where('assign_delivery_boy', Auth::user()->id) - ->where('delivery_status', 'cancelled') - ->count(); - @endphp -
-
- - - - - - -

{{ translate('Cancelled Delivery') }}

-

- {{ sprintf('%02d', $cancelled_deliveries) }} -

-
-
- - - - -
- - - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/delivery_boy_sidenav.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/delivery_boy_sidenav.blade.php deleted file mode 100644 index 4806de60..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/delivery_boy_sidenav.blade.php +++ /dev/null @@ -1,222 +0,0 @@ - diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/footer.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/footer.blade.php deleted file mode 100644 index 091848d6..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/footer.blade.php +++ /dev/null @@ -1,82 +0,0 @@ - - - - -@if (Auth::check()) - -@endif diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/nav.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/nav.blade.php deleted file mode 100644 index 7bb9ee39..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/inc/nav.blade.php +++ /dev/null @@ -1,118 +0,0 @@ -
- -
-
-
- - - -
- @auth - - @else - - - @endauth -
-
-
- - - -
-
- - - - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/layouts/app.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/layouts/app.blade.php deleted file mode 100644 index 854bfec0..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/layouts/app.blade.php +++ /dev/null @@ -1,243 +0,0 @@ - -@if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - -@else - -@endif - - - - - - - @yield('meta_title', get_setting('website_name').' | '.get_setting('site_motto')) - - - - - - - - @yield('meta') - - @if(!isset($detailedProduct) && !isset($customer_product) && !isset($shop) && !isset($page) && !isset($blog)) - - - - - - - - - - - - - - - - - - - - - - @endif - - - - - - - - - - - - @if(\App\Models\Language::where('code', Session::get('locale', Config::get('app.locale')))->first()->rtl == 1) - - @endif - - - - - - - - -@php - echo get_setting('header_script'); -@endphp - - - - -
- - - @include('delivery_boys.inc.nav') - - -
-
-
- @include('delivery_boys.inc.delivery_boy_sidenav') -
- @yield('panel_content') -
-
-
-
- - - @include('delivery_boys.inc.footer') - -
- - @include('frontend.partials.modal') - - - - @yield('modal') - - - - - - - - - - - - @yield('script') - - @php - echo get_setting('footer_script'); - @endphp - - - diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/on_the_way_delivery.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/on_the_way_delivery.blade.php deleted file mode 100644 index 7cb2a1d6..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/on_the_way_delivery.blade.php +++ /dev/null @@ -1,123 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('On The Way Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($on_the_way_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As Delivered')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - - {{ single_price($delivery->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $on_the_way_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/order_detail.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/order_detail.blade.php deleted file mode 100644 index 9602b3fc..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/order_detail.blade.php +++ /dev/null @@ -1,210 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') - -
-
-
-

{{ translate('Order id')}}: {{ $order->code }}

-
-
-
- - - @php - $status = $order->orderDetails->first()->delivery_status; - @endphp - - -
-
- {{ translate('Order Summary') }} -
-
-
-
- - - - - - - - - - - - @if ($order->user_id != null) - - @endif - - - - - -
{{ translate('Order Code')}}:{{ $order->code }}
{{ translate('Customer')}}:{{ json_decode($order->shipping_address)->name }}
{{ translate('Email')}}:{{ $order->user->email }}
{{ translate('Shipping address')}}:{{ json_decode($order->shipping_address)->address }}, {{ json_decode($order->shipping_address)->city }}, {{ json_decode($order->shipping_address)->postal_code }}, {{ json_decode($order->shipping_address)->country }}
-
-
- - - - - - - - - - - - - - - - - - - - - - @if ($order->tracking_code) - - - - - @endif -
{{ translate('Order date')}}:{{ date('d-m-Y H:i A', $order->date) }}
{{ translate('Order status')}}:{{ translate(ucfirst(str_replace('_', ' ', $status))) }}
{{ translate('Total order amount')}}:{{ single_price($order->orderDetails->sum('price') + $order->orderDetails->sum('tax')) }}
{{ translate('Shipping method')}}:{{ translate('Flat shipping rate')}}
{{ translate('Payment method')}}:{{ translate(ucfirst(str_replace('_', ' ', $order->payment_type))) }}
{{ translate('Tracking code')}}:{{ $order->tracking_code }}
-
-
-
-
- - -
-
-
-
- {{ translate('Order Details') }} -
-
- - - - - - - - - - - - - @foreach ($order->orderDetails as $key => $orderDetail) - - - - - - - - - @endforeach - -
#{{ translate('Product')}}{{ translate('Variation')}}{{ translate('Quantity')}}{{ translate('Delivery Type')}}{{ translate('Price')}}
{{ $key+1 }} - @if ($orderDetail->product != null && $orderDetail->product->auction_product == 0) - {{ $orderDetail->product->getTranslation('name') }} - @elseif($orderDetail->product != null && $orderDetail->product->auction_product == 1) - {{ $orderDetail->product->getTranslation('name') }} - @else - {{ translate('Product Unavailable') }} - @endif - - {{ $orderDetail->variation }} - - {{ $orderDetail->quantity }} - - @if ($order->shipping_type != null && $order->shipping_type == 'home_delivery') - {{ translate('Home Delivery') }} - @elseif ($order->shipping_type == 'pickup_point') - @if ($order->pickup_point != null) - {{ $order->pickup_point->name }} ({{ translate('Pickip Point') }}) - @endif - @endif - {{ single_price($orderDetail->price) }}
-
-
-
- - -
-
-
- {{ translate('Order Ammount') }} -
-
- - - - - - - - - - - - - - - - - - - - - - - -
{{ translate('Subtotal')}} - {{ single_price($order->orderDetails->sum('price')) }} -
{{ translate('Shipping')}} - {{ single_price($order->orderDetails->sum('shipping_cost')) }} -
{{ translate('Tax')}} - {{ single_price($order->orderDetails->sum('tax')) }} -
{{ translate('Coupon')}} - {{ single_price($order->coupon_discount) }} -
{{ translate('Total')}} - {{ single_price($order->grand_total) }} -
-
-
- @if ($order->manual_payment && $order->manual_payment_data == null) - - @endif -
-
-@endsection - -@section('modal') - - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/pending_delivery.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/pending_delivery.blade.php deleted file mode 100644 index df345cd0..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/pending_delivery.blade.php +++ /dev/null @@ -1,99 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Pending Delivery History') }}
-
-
- - - - - - - - - - - - - @foreach ($pending_deliveries as $key => $order) - @if (count($order->orderDetails) > 0) - - - - - - - - - - - - - - - @endif - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Options')}}
- {{ $order->code }} - - {{ date('d-m-Y', $order->date) }} - - {{ single_price($order->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $order->delivery_status))) }} - @if($order->delivery_viewed == 0) - * - @endif - - @if ($order->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($order->payment_status_viewed == 0) - * - @endif - - - - - - - - - - - - - - - - - -
- -
- {{ $pending_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/pickup_delivery.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/pickup_delivery.blade.php deleted file mode 100644 index 45c2dc56..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/pickup_delivery.blade.php +++ /dev/null @@ -1,123 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Picked Up Delivery History') }}
-
-
- - - - - - - - - - - - - - - @foreach ($pickup_deliveries as $key => $delivery) - - - - - - - - - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Delivery Status')}}{{ translate('Payment Status')}}{{ translate('Payment Type')}}{{ translate('Mark As On The Way')}}{{ translate('Options')}}
- {{ $delivery->code }} - - {{ date('d-m-Y h:i A', strtotime($delivery->delivery_history_date)) }} - - {{ single_price($delivery->grand_total) }} - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->delivery_status))) }} - @if($delivery->delivery_viewed == 0) - * - @endif - - @if ($delivery->payment_status == 'paid') - {{translate('Paid')}} - @else - {{translate('Unpaid')}} - @endif - @if($delivery->payment_status_viewed == 0) - * - @endif - - {{ translate(ucfirst(str_replace('_', ' ', $delivery->payment_type))) }} - - - - - - - - - - - - - - - - - - - -
- -
- {{ $pickup_deliveries->appends(request()->input())->links() }} -
-
-
-@endsection - -@section('modal') - - @include('delivery_boys.cancel_request_modal') -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/profile.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/profile.blade.php deleted file mode 100644 index fd7ba0a4..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/profile.blade.php +++ /dev/null @@ -1,140 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
-

{{ translate('Manage Profile') }}

-
-
-
- - -
-
-
{{ translate('Basic Info')}}
-
-
-
- @csrf - -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
-
-
-
- - -
-
-
{{ translate('Change your email')}}
-
-
-
- @csrf -
-
- -
-
- -
- -
- -
-
- -
- -
-
-
-
-
-
- -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/total_collection_list.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/total_collection_list.blade.php deleted file mode 100644 index 34dfb295..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/total_collection_list.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Total Collection History') }}
-
-
- - - - - - - - - - - @foreach ($today_collections as $key => $collection) - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Options')}}
- {{ $collection->order->code }} - - {{ date('d-m-Y h:i A', strtotime($collection->created_at)) }} - - {{ single_price($collection->collection) }} - - - - - - - - - - - - - - -
- -
- {{ $today_collections->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/total_earning_list.blade.php b/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/total_earning_list.blade.php deleted file mode 100644 index c8447b8a..00000000 --- a/desarrollo/temp/s3JYqymhiB/addons/delivery_boy/views/delivery_boys/frontend/total_earning_list.blade.php +++ /dev/null @@ -1,59 +0,0 @@ -@extends('delivery_boys.layouts.app') - -@section('panel_content') -
-
-
{{ translate('Earning History') }}
-
-
- - - - - - - - - - - @foreach ($total_earnings as $key => $earning) - - - - - - - - - - - @endforeach - -
{{ translate('Code')}}{{ translate('Date')}}{{ translate('Amount')}}{{ translate('Options')}}
- {{ $earning->order->code }} - - {{ date('d-m-Y h:i A', strtotime($earning->created_at)) }} - - {{ single_price($earning->earning) }} - - - - - - - - - - - - - - -
- -
- {{ $total_earnings->appends(request()->input())->links() }} -
-
-
-@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/assets/refund_request.png b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/assets/refund_request.png deleted file mode 100644 index 98f5bf84..00000000 Binary files a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/assets/refund_request.png and /dev/null differ diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/config.json b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/config.json deleted file mode 100644 index 7b143363..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/config.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "name":"refund", - "unique_identifier":"refund_request", - "version":"1.6", - "minimum_item_version":"7.0.0", - "addon_banner":"refund_request.png", - "directory":[ - { - "name":[ - "resources/views/refund_request", - "resources/views/refund_request/frontend", - "resources/views/refund_request/frontend/refund_request", - "resources/views/refund_request/frontend/recieved_refund_request" - ] - } - ], - "sql_file":"", - "files":[ - { - "root_directory":"addons/refund_system/views/refund_request/index.blade.php", - "update_directory":"resources/views/refund_request/index.blade.php" - }, - { - "root_directory":"addons/refund_system/views/refund_request/config.blade.php", - "update_directory":"resources/views/refund_request/config.blade.php" - }, - { - "root_directory":"addons/refund_system/views/refund_request/paid_refund.blade.php", - "update_directory":"resources/views/refund_request/paid_refund.blade.php" - }, - { - "root_directory":"addons/refund_system/views/refund_request/reason.blade.php", - "update_directory":"resources/views/refund_request/reason.blade.php" - }, - { - "root_directory":"addons/refund_system/views/refund_request/rejected_refund.blade.php", - "update_directory":"resources/views/refund_request/rejected_refund.blade.php" - }, - { - "root_directory":"addons/refund_system/views/refund_request/frontend/refund_request/index.blade.php", - "update_directory":"resources/views/refund_request/frontend/refund_request/index.blade.php" - }, - { - "root_directory":"addons/refund_system/views/refund_request/frontend/refund_request/create.blade.php", - "update_directory":"resources/views/refund_request/frontend/refund_request/create.blade.php" - }, - { - "root_directory":"addons/refund_system/views/refund_request/frontend/refund_request/reason.blade.php", - "update_directory":"resources/views/refund_request/frontend/refund_request/reason.blade.php" - }, - { - "root_directory":"addons/refund_system/views/refund_request/frontend/recieved_refund_request/index.blade.php", - "update_directory":"resources/views/refund_request/frontend/recieved_refund_request/index.blade.php" - }, - { - "root_directory":"addons/refund_system/controllers/RefundRequestController.php", - "update_directory":"app/Http/Controllers/RefundRequestController.php" - }, - { - "root_directory":"addons/refund_system/assets/refund_request.png", - "update_directory":"public/refund_request.png" - } - ] -} diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/controllers/RefundRequestController.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/controllers/RefundRequestController.php deleted file mode 100644 index b45b7ce2..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/controllers/RefundRequestController.php +++ /dev/null @@ -1,311 +0,0 @@ -middleware(['permission:view_refund_requests'])->only('admin_index'); - $this->middleware(['permission:view_approved_refund_requests'])->only('paid_index'); - $this->middleware(['permission:view_rejected_refund_requests'])->only('rejected_index'); - $this->middleware(['permission:refund_request_configuration'])->only('refund_config'); - } - - /** - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - - //Store Customer Refund Request - public function request_store(Request $request, $id) - { - $order_detail = OrderDetail::where('id', $id)->first(); - $refund = new RefundRequest; - $refund->user_id = Auth::user()->id; - $refund->order_id = $order_detail->order_id; - $refund->order_detail_id = $order_detail->id; - $refund->seller_id = $order_detail->seller_id; - $refund->seller_approval = 0; - $refund->reason = $request->reason; - $refund->admin_approval = 0; - $refund->admin_seen = 0; - $refund->refund_amount = $order_detail->price + $order_detail->tax; - $refund->refund_status = 0; - if ($refund->save()) { - flash( translate("Refund Request has been sent successfully") )->success(); - return redirect()->route('purchase_history.index'); - } - else { - flash( translate("Something went wrong") )->error(); - return back(); - } - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function vendor_index() - { - $refunds = RefundRequest::where('seller_id', Auth::user()->id)->latest()->paginate(10); - - return view('refund_request.frontend.recieved_refund_request.index', compact('refunds')); - - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function customer_index() - { - $refunds = RefundRequest::where('user_id', Auth::user()->id)->latest()->paginate(10); - return view('refund_request.frontend.refund_request.index', compact('refunds')); - } - - //Set the Refund configuration - public function refund_config() - { - return view('refund_request.config'); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function refund_time_update(Request $request) - { - $business_settings = BusinessSetting::where('type', $request->type)->first(); - if ($business_settings != null) { - $business_settings->value = $request->value; - $business_settings->save(); - } - else { - $business_settings = new BusinessSetting; - $business_settings->type = $request->type; - $business_settings->value = $request->value; - $business_settings->save(); - } - Artisan::call('cache:clear'); - flash( translate("Refund Request sending time has been updated successfully") )->success(); - return back(); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function refund_sticker_update(Request $request) - { - $business_settings = BusinessSetting::where('type', $request->type)->first(); - if ($business_settings != null) { - $business_settings->value = $request->logo; - $business_settings->save(); - } - else { - $business_settings = new BusinessSetting; - $business_settings->type = $request->type; - $business_settings->value = $request->logo; - $business_settings->save(); - } - Artisan::call('cache:clear'); - flash( translate("Refund Sticker has been updated successfully"))->success(); - return back(); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function admin_index() - { - $refunds = RefundRequest::where('refund_status', 0)->latest()->paginate(15); - return view('refund_request.index', compact('refunds')); - } - - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function paid_index() - { - $refunds = RefundRequest::where('refund_status', 1)->latest()->paginate(15); - return view('refund_request.paid_refund', compact('refunds')); - } - - public function rejected_index() - { - $refunds = RefundRequest::where('refund_status', 2)->latest()->paginate(15); - return view('refund_request.rejected_refund', compact('refunds')); - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function request_approval_vendor(Request $request) - { - $refund = RefundRequest::findOrFail($request->el); - if (Auth::user()->user_type == 'admin' || Auth::user()->user_type == 'staff') { - $refund->seller_approval = 1; - $refund->admin_approval = 1; - } - else { - $refund->seller_approval = 1; - } - - if ($refund->save()) { - return 1; - } - else { - return 0; - } - } - - /** - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function refund_pay(Request $request) - { - $refund = RefundRequest::findOrFail($request->refund_id); - if ($refund->seller_approval == 1) { - $seller = Shop::where('user_id', $refund->seller_id)->first(); - if ($seller != null) { - $seller->admin_to_pay -= $refund->refund_amount; - } - $seller->save(); - } - - $refund_amount = $refund->refund_amount; - - // Club Point conversion check - if (addon_is_activated('club_point')) { - $club_point = ClubPoint::where('order_id', $refund->order_id)->first(); - if($club_point != null){ - $club_point_details = $club_point->club_point_details->where('product_id',$refund->orderDetail->product->id)->first(); - - if($club_point->convert_status == 1 ){ - $refund_amount -= $club_point_details->converted_amount; - } - else{ - $club_point_details->refunded = 1; - $club_point_details->save(); - } - } - } - - $wallet = new Wallet; - $wallet->user_id = $refund->user_id; - $wallet->amount = $refund_amount; - $wallet->payment_method = 'Refund'; - $wallet->payment_details = 'Product Money Refund'; - $wallet->save(); - $user = User::findOrFail($refund->user_id); - $user->balance += $refund_amount; - $user->save(); - if (Auth::user()->user_type == 'admin' || Auth::user()->user_type == 'staff') { - $refund->admin_approval = 1; - $refund->refund_status = 1; - } - - if ($refund->save()) { - flash(translate('Refund has been sent successfully.'))->success(); - } - else { - flash(translate('Something went wrong.'))->error(); - } - return back(); - } - - public function reject_refund_request(Request $request){ - $refund = RefundRequest::findOrFail($request->refund_id); - if (Auth::user()->user_type == 'admin' || Auth::user()->user_type == 'staff') { - $refund->admin_approval = 2; - $refund->refund_status = 2; - $refund->reject_reason = $request->reject_reason; - } - else{ - $refund->seller_approval = 2; - $refund->reject_reason = $request->reject_reason; - } - - if ($refund->save()) { - flash(translate('Refund request rejected successfully.'))->success(); - return back(); - } - else { - return back(); - } - } - - /** - * Show the form for creating a new resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function refund_request_send_page($id) - { - $order_detail = OrderDetail::findOrFail($id); - if ($order_detail->product != null && $order_detail->product->refundable == 1) { - return view('refund_request.frontend.refund_request.create', compact('order_detail')); - } - else { - return back(); - } - } - - /** - * Show the form for view the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - //Shows the refund reason - public function reason_view($id) - { - $refund = RefundRequest::findOrFail($id); - if (Auth::user()->user_type == 'admin' || Auth::user()->user_type == 'staff') { - if ($refund->orderDetail != null) { - $refund->admin_seen = 1; - $refund->save(); - return view('refund_request.reason', compact('refund')); - } - } - else { - return view('refund_request.frontend.refund_request.reason', compact('refund')); - } - } - - public function reject_reason_view($id) - { - $refund = RefundRequest::findOrFail($id); - return $refund->reject_reason; - } - -} diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/documentation/documentation.pdf b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/documentation/documentation.pdf deleted file mode 100644 index f2a6c425..00000000 Binary files a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/documentation/documentation.pdf and /dev/null differ diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.1.sql b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.1.sql deleted file mode 100644 index 3ed481da..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.1.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; \ No newline at end of file diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.2.sql b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.2.sql deleted file mode 100644 index adba3e37..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.2.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE `refund_requests` ADD `reject_reason` LONGTEXT NULL DEFAULT NULL AFTER `refund_status`; - -COMMIT; diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.3.sql b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.3.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.3.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.4.sql b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.4.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.4.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.5.sql b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.5.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.5.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.6.sql b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.6.sql deleted file mode 100644 index 87ef7674..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/1.6.sql +++ /dev/null @@ -1 +0,0 @@ -COMMIT; diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/update.sql b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/update.sql deleted file mode 100644 index 6fe9e9b9..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/sql/update.sql +++ /dev/null @@ -1,79 +0,0 @@ -INSERT INTO `business_settings` (`type`, `value`, `created_at`, `updated_at`) VALUES ('refund_request_time', '3', '2019-03-12 05:58:23', '2019-03-12 05:58:23'); - - --- phpMyAdmin SQL Dump --- version 4.9.1 --- https://www.phpmyadmin.net/ --- --- Host: 127.0.0.1 --- Generation Time: Mar 15, 2020 at 06:20 AM --- Server version: 10.4.8-MariaDB --- PHP Version: 7.3.11 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `shop` --- - --- -------------------------------------------------------- - --- --- Table structure for table `refund_requests` --- - -CREATE TABLE `refund_requests` ( - `id` int(11) NOT NULL, - `user_id` int(11) NOT NULL, - `order_id` int(11) NOT NULL, - `order_detail_id` int(11) NOT NULL, - `seller_id` int(11) NOT NULL, - `seller_approval` int(1) NOT NULL DEFAULT 0, - `admin_approval` int(1) NOT NULL DEFAULT 0, - `refund_amount` double(8,2) NOT NULL DEFAULT 0.00, - `refund_status` int(1) NOT NULL DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Indexes for dumped tables --- - --- --- Indexes for table `refund_requests` --- -ALTER TABLE `refund_requests` - ADD PRIMARY KEY (`id`); - --- --- AUTO_INCREMENT for dumped tables --- - -ALTER TABLE `refund_requests` ADD `reason` LONGTEXT NULL DEFAULT NULL AFTER `refund_amount`; -ALTER TABLE `refund_requests` ADD `admin_seen` INT NOT NULL AFTER `reason`; - - -ALTER TABLE `products` ADD `refundable` INT(1) NOT NULL DEFAULT '0' AFTER `slug`; -ALTER TABLE `refund_requests` ADD `reject_reason` LONGTEXT NULL DEFAULT NULL AFTER `refund_status`; --- --- AUTO_INCREMENT for table `refund_requests` --- -ALTER TABLE `refund_requests` - MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; - - diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/config.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/config.blade.php deleted file mode 100644 index 10f73dd4..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/config.blade.php +++ /dev/null @@ -1,75 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
-
-
{{translate('Set Refund Time')}}
-
-
- @csrf -
-
- - -
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
{{translate('Set Refund Sticker')}}
-
-
- @csrf -
-
- - -
-
-
-
{{ translate('Browse')}}
-
-
{{ translate('Choose File') }}
- -
-
-
-
-
- - -
- -
-
-
-
-
-
- - - -@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/recieved_refund_request/index.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/recieved_refund_request/index.blade.php deleted file mode 100644 index ceda34ac..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/recieved_refund_request/index.blade.php +++ /dev/null @@ -1,171 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') - -
-
-
-

{{ translate('Refund Requests') }}

-
-
-
- -
-
-
{{ translate('All Refund Request') }}
-
-
- - - - - - - - - - - - - - - - @foreach ($refunds as $key => $refund) - - - - - - - - - - - - @endforeach - -
#{{ translate('Date') }}{{translate('Order id')}}{{translate('Product')}}{{translate('Amount')}}{{translate('Status')}}{{translate('Reason')}}{{translate('Approval')}}{{translate('Reject')}}
{{ $key+1 }}{{ date('d-m-Y', strtotime($refund->created_at)) }} - @if ($refund->order != null) - {{ $refund->order->code }} - @endif - - @if ($refund->orderDetail != null && $refund->orderDetail->product != null) - {{ $refund->orderDetail->product->getTranslation('name') }} - @endif - - @if ($refund->orderDetail != null) - {{single_price($refund->orderDetail->price)}} - @endif - - @if($refund->refund_status == 1) - {{translate('Approved')}} - @elseif($refund->refund_status == 2) - {{translate('Rejected')}} - @else - {{translate('PENDING')}} - @endif - - {{translate('Show')}} - - @if($refund->refund_status != 2 && $refund->seller_approval != 2) - @if ($refund->seller_approval == 1) - - @else - - @endif - @endif - - @if($refund->refund_status == 0 && $refund->seller_approval == 0) - - - - @elseif($refund->seller_approval == 2 || $refund->refund_status == 2) - - - - @endif -
-
- {{ $refunds->links() }} -
-
-
-@endsection - -@section('modal') - - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/create.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/create.blade.php deleted file mode 100644 index 4a53e912..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/create.blade.php +++ /dev/null @@ -1,64 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') - -
-
-
- @include('frontend.inc.user_side_nav') -
-
-
-
{{translate('Send Refund Request')}}
-
-
-
- @csrf -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
-
- -
-
- -
-
-
- -
-
-
-
-
-
-
-
-
-
- -@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/index.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/index.blade.php deleted file mode 100644 index f8e62dde..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/index.blade.php +++ /dev/null @@ -1,103 +0,0 @@ -@extends('frontend.layouts.app') - -@section('content') -
-
-
- @include('frontend.inc.user_side_nav') -
-
-
-
{{ translate('Applied Refund Requests') }}
-
-
- - - - - - - - - - - - - @foreach ($refunds as $key => $refund) - - - - - - - - - @endforeach - -
#{{ translate('Date') }}{{translate('Code')}}{{translate('Product')}}{{translate('Amount')}}{{translate('Status')}}
{{ sprintf('%02d', $key+1) }}{{ date('d-m-Y', strtotime($refund->created_at)) }} - @if ($refund->order != null) - {{ $refund->order->code }} - @endif - - @if ($refund->orderDetail != null && $refund->orderDetail->product != null) - {{ $refund->orderDetail->product->getTranslation('name') }} - @endif - - @if ($refund->orderDetail != null) - {{single_price($refund->orderDetail->price)}} - @endif - - @if ($refund->refund_status == 1) - {{translate('Approved')}} - @elseif ($refund->refund_status == 2) - - - - - - - - - - {{translate('REJECTED')}} - @else - {{translate('PENDING')}} - @endif -
- {{ $refunds->links() }} -
-
-
-
-
-
-@endsection - -@section('modal') - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/reason.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/reason.blade.php deleted file mode 100644 index 0b007d4c..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/frontend/refund_request/reason.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -@extends('seller.layouts.app') - -@section('panel_content') - -
-
-
-

{{ translate('Reason of Refund Request') }}

-
-
-
- -
-
-
- -
-
-
-
{{ translate('Reason of Refund Request') }}
-
-
-
-
- {{ $refund->reason }} -
-
-
-
-
- -
-
-
- -@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/index.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/index.blade.php deleted file mode 100644 index fb836528..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/index.blade.php +++ /dev/null @@ -1,193 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - - - -
-
-
{{translate('Refund Request All')}}
-
-
- - - - - - - - - - - - - - - @foreach($refunds as $key => $refund) - - - - - - - - - - - @endforeach - -
#{{translate('Order Code')}}{{translate('Seller Name')}}{{translate('Product')}}{{translate('Price')}}{{translate('Seller Approval')}}{{translate('Refund Status')}}{{translate('Options')}}
{{ ($key+1) + ($refunds->currentPage() - 1)*$refunds->perPage() }} - @if($refund->order != null) - {{ optional($refund->order)->code }} - @else - {{ translate('Order deleted') }} - @endif - - @if ($refund->seller != null) - {{ $refund->seller->name }} - @endif - - @if ($refund->orderDetail != null && $refund->orderDetail->product != null) - -
-
- Image -
-
-
{{ $refund->orderDetail->product->getTranslation('name') }}
-
-
-
- @endif -
- @if ($refund->orderDetail != null) - {{single_price($refund->orderDetail->price)}} - @endif - - @if ($refund->orderDetail != null && $refund->orderDetail->product != null && $refund->orderDetail->product->added_by == 'admin') - {{translate('Own Product')}} - @else - @if ($refund->seller_approval == 1) - {{translate('Approved')}} - @elseif ($refund->seller_approval == 2) - {{translate('Rejected')}} - @else - {{translate('Pending')}} - @endif - @endif - - @if ($refund->refund_status == 1) - {{translate('Paid')}} - @else - {{translate('Non-Paid')}} - @endif - - @can('accept_refund_request') - - - - @endcan - @can('reject_refund_request') - - - - @endcan - - - -
-
-
- {{ $refunds->appends(request()->input())->links() }} -
-
-
-
-@endsection - -@section('modal') - - - - -@endsection - -@section('script') - -@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/paid_refund.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/paid_refund.blade.php deleted file mode 100644 index dd4c10fa..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/paid_refund.blade.php +++ /dev/null @@ -1,89 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{translate('Approved Request')}}
-
-
- - - - - - - - - - - - - - - @foreach($refunds as $key => $refund) - - - - - - - - - - - @endforeach - -
#{{translate('Order Code')}}{{translate('Seller Name')}}{{translate('Product')}}{{translate('Price')}}{{translate('Seller Approval')}}{{translate('Admin Approval')}}{{translate('Refund Status')}}
{{ ($key+1) + ($refunds->currentPage() - 1)*$refunds->perPage() }} - @if($refund->order != null) - {{ $refund->order->code }} - @else - {{ translate('Order deleted') }} - @endif - - @if ($refund->seller != null) - {{ $refund->seller->name }} - @endif - - @if ($refund->orderDetail != null && $refund->orderDetail->product != null) - -
-
- Image -
-
-
{{ $refund->orderDetail->product->getTranslation('name') }}
-
-
-
- @endif -
- @if ($refund->orderDetail != null) - {{single_price($refund->orderDetail->price)}} - @endif - - @if ($refund->seller_approval == 1) - {{translate('Approved')}} - @else - {{translate('Pending')}} - @endif - - @if ($refund->admin_approval == 1) - {{translate('Approved')}} - @endif - - @if ($refund->refund_status == 1) - {{translate('Paid')}} - @else - {{translate('Non-Paid')}} - @endif -
-
-
- {{ $refunds->appends(request()->input())->links() }} -
-
-
-
- -@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/reason.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/reason.blade.php deleted file mode 100644 index 45560722..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/reason.blade.php +++ /dev/null @@ -1,22 +0,0 @@ -@extends('backend.layouts.app') -@section('content') - -
-
-
-
-
{{translate('Reason For Refund Request')}}
-
-
-
- -
-

{{ $refund->reason }}

-
-
-
-
-
-
- -@endsection diff --git a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/rejected_refund.blade.php b/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/rejected_refund.blade.php deleted file mode 100644 index 2e07a41e..00000000 --- a/desarrollo/temp/vi2oLRRdVN/addons/refund_system/views/refund_request/rejected_refund.blade.php +++ /dev/null @@ -1,115 +0,0 @@ -@extends('backend.layouts.app') - -@section('content') - -
-
-
{{translate('Rejected Request')}}
-
-
- - - - - - - - - - - - - - - @foreach($refunds as $key => $refund) - - - - - - - - - - - @endforeach - -
#{{translate('Order Code')}}{{translate('Seller Name')}}{{translate('Product')}}{{translate('Price')}}{{translate('Seller Approval')}}{{translate('Admin Approval')}}{{translate('Reject Reason')}}
{{ ($key+1) + ($refunds->currentPage() - 1)*$refunds->perPage() }} - @if($refund->order != null) - {{ $refund->order->code }} - @else - {{ translate('Order deleted') }} - @endif - - @if ($refund->seller != null) - {{ $refund->seller->name }} - @endif - - @if ($refund->orderDetail != null && $refund->orderDetail->product != null) - -
-
- Image -
-
-
{{ $refund->orderDetail->product->getTranslation('name') }}
-
-
-
- @endif -
- @if ($refund->orderDetail != null) - {{single_price($refund->orderDetail->price)}} - @endif - - @if ($refund->seller_approval == 1) - {{translate('Approved')}} - @else - {{translate('Pending')}} - @endif - - @if($refund->admin_approval == 2) - {{translate('Rejected')}} - @endif - - - - -
-
-
- {{ $refunds->appends(request()->input())->links() }} -
-
-
-
-@endsection - -@section('modal') - -@endsection - -@section('script') - -@endsection